diff -Nru epiphany-browser-3.18.5/ChangeLog epiphany-browser-3.18.10/ChangeLog --- epiphany-browser-3.18.5/ChangeLog 2016-03-14 23:47:46.000000000 +0000 +++ epiphany-browser-3.18.10/ChangeLog 2016-12-28 00:41:37.000000000 +0000 @@ -1,3 +1,496 @@ +commit 36903a126863e58b2be96bb3c74e7ecfd2352105 +Author: Michael Catanzaro +Date: Tue Dec 27 18:39:30 2016 -0600 + + Prepare 3.18.10 + + NEWS | 7 +++++++ + configure.ac | 2 +- + 2 files changed, 8 insertions(+), 1 deletion(-) + +commit e2682919393143088a4e0475fd33b7618d686a97 +Author: Michael Catanzaro +Date: Sun Dec 18 12:01:35 2016 -0600 + + uri-tester: process patterns synchronously at startup + + Currently the URI tester loads filters and patterns asynchronously, + which is racy as it means ads will sometimes not be blocked when a new + web process is loading its first page. Filter processing must always + complete before the first resource is requested, so do it synchronously. + + This is already fixed in a better way on the master branch, so this + commit is for backports only. + + https://bugzilla.gnome.org/show_bug.cgi?id=775736 + + embed/web-extension/uri-tester.c | 111 ++++++++++++--------------------------- + 1 file changed, 34 insertions(+), 77 deletions(-) + +commit 162fd89e99f7a00fa88a536d33924d3e22245ec5 +Author: Michael Catanzaro +Date: Sun Dec 18 10:56:07 2016 -0600 + + window: fix alt-left/right keyboard shortcuts + + The call to gdk_keymap_translate_keyboard_state doesn't seem to really + do much here, except change the way we have to test for Ctrl+Shift+T by + consuming GDK_SHIFT_MASK. In particular, the keyval returned is already + the keyval in the key event, so that's not really doing anything for us. + But this is what the GDK documentation tells us to do, so why not. The + important change here, as shown in the GDK documentation, is to mask out + all the modifiers except Ctrl/Shift/Mod1 so that we ignore virtual + modifiers like Meta that we really don't want to see. + + This mostly but not completely fixes the bug where the alt-left/right + shortcuts for back/forward stop working. It fixes the regression where + these shortcuts stopped working after I introduced key event filtering. + It *does not* fix the issue that was originally reported, which is that + the shortcuts mysteriously stop working sometimes; it cannot fix that + original bug, because the key event filtering was not added until a + month after that bug was reported. Hence, I am not closing the issue + here. Something seems to be wrong in either GTK+ or in mutter, as + sometimes GTK+ apps stop receiving any input at all; it might or might + not be related. + + https://bugzilla.gnome.org/show_bug.cgi?id=772437 + + src/ephy-window.c | 74 ++++++++++++++++++++++++++++++++++--------------------- + 1 file changed, 46 insertions(+), 28 deletions(-) + +commit 41794b089c1b0fa4d8fc7946efd96df4be8af74f +Author: Michael Catanzaro +Date: Tue Nov 22 18:38:01 2016 -0600 + + window: Fix key event state comparisons + + GDK can set random bits in the state to indicate internal stuff. We have + to use GDK_MODIFIER_MASK to mask out its reserved values before trying + to look at the state. + + https://bugzilla.gnome.org/show_bug.cgi?id=772437 + + src/ephy-window.c | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +commit d43cb5b43f118c8b1f4b4b45b636716b9af83ac5 +Author: Michael Catanzaro +Date: Tue Nov 22 07:53:32 2016 -0600 + + window: Add alt-left/right to key event blacklist + + Seems WebKit always handles these key combinations, breaking our + back/forward shortcuts. + + src/ephy-window.c | 4 ++++ + 1 file changed, 4 insertions(+) + +commit ba06eeb6347675c9bf7bae4a581c0889d2fe1f1b +Author: Michael Catanzaro +Date: Sun Nov 20 20:55:58 2016 -0600 + + Prepare 3.18.9 + + NEWS | 11 +++++++++++ + configure.ac | 2 +- + 2 files changed, 12 insertions(+), 1 deletion(-) + +commit 4766f6698f1878059b4508dcb75ab9a6a223cf1b +Author: Michael Catanzaro +Date: Mon Oct 17 07:21:42 2016 -0500 + + session: Add a safety check + + Never replace a good session file with one that's known to be broken. + + https://bugzilla.gnome.org/show_bug.cgi?id=768250 + + src/ephy-session.c | 35 +++++++++++++++++++++++++++++++++++ + 1 file changed, 35 insertions(+) + +commit 1278d83dbb2832938f997cea976aefe92bb8a968 +Author: Michael Catanzaro +Date: Wed Apr 13 17:05:19 2016 -0500 + + snapshot-service: Always return snapshots immediately if available + + Return a stale snapshot, then schedule creation of a new snapshot. This + way, we show a preexisting snapshot even if snapshot creation fails. The + new snapshot will be used only for future requests. + + https://bugzilla.gnome.org/show_bug.cgi?id=763184 + + lib/ephy-snapshot-service.c | 30 +++++++++++++++++++++++++++--- + 1 file changed, 27 insertions(+), 3 deletions(-) + +commit 799a336266def4bb539f917f68139aaa2950d886 +Author: Michael Catanzaro +Date: Fri Apr 29 09:14:47 2016 -0500 + + Save the correct thumbnail mtime in the history service + + Save the thumbnail mtime when saving thumbnails so it actually reflects + the mtime embedded in the thumbnail, not the time the page was saved in + the history service. This regressed in 0433ac9. It's only noticeable now + due to 9754735, which has resulted in thumbnails regularly disappearing + from the overview. + + https://bugzilla.gnome.org/show_bug.cgi?id=763184 + + embed/ephy-embed-shell.c | 19 +++++++++--- + lib/ephy-snapshot-service.c | 71 ++++++++++++++++++++++++++++++++++++++------- + 2 files changed, 76 insertions(+), 14 deletions(-) + +commit 878a7ddae083ec6efc06068a459b6006f6010247 +Author: Michael Catanzaro +Date: Sun Nov 20 20:21:15 2016 -0600 + + Revert "Revert "snapshot-service: Take new snapshots after a restart"" + + This reverts commit 78bbf3d0645086331c955cec9b9015be1568c5b2. + + embed/ephy-web-view.c | 19 +++---- + lib/ephy-snapshot-service.c | 117 +++++++++++++++++++++++++++++--------------- + 2 files changed, 84 insertions(+), 52 deletions(-) + +commit 78523b00eadde51f158f756d21c8083c4261c667 +Author: Michael Catanzaro +Date: Wed Nov 16 15:11:42 2016 -0600 + + window: add blacklist of events to not deliver to web view + + Certain window and tab management shortcuts are reserved by Epiphany and + will never be delivered to the webpage, even though webpages should in + general be allowed to override Epiphany shortcuts (e.g. Ctrl+B in Google + Docs should embolden text and not open the old bookmarks dialog, Ctrl+I + should italicize text and not open a new incognito window). + + https://bugzilla.gnome.org/show_bug.cgi?id=764653 + + src/ephy-window.c | 27 ++++++++++++++++++++++++++- + 1 file changed, 26 insertions(+), 1 deletion(-) + +commit 92a9b280d973fc4cf4b428e9010397f6a39f80f8 +Author: Michael Catanzaro +Date: Tue Nov 15 20:47:52 2016 -0600 + + window: fix web view receiving events twice + + The current code propagates the event to the web view, then chains up if + the web view doesn't handle the event. But chaining up causes GtkWindow + to propagate the event to the web view yet again. Surely we never want + to do that, so stop doing it. + + I think there must be some other bug here, though, in WebKit, that + causes WebKit to sometimes do something with the event but then + propagate anyway, which is wrong. If I'm right, then WebKit is + unfortunately still broken, but this works around it in Epiphany and is + the right thing to do anyway, since sending the same event to the web + view twice is nonsense regardless of whether the web view propagates it + or not. + + https://bugzilla.gnome.org/show_bug.cgi?id=764653 + + src/ephy-window.c | 85 ++++++++++++------------------------------------------- + 1 file changed, 18 insertions(+), 67 deletions(-) + +commit de9501002bc7bdc301c856ff0d4f8675ce7a9206 +Author: Yosef Or Boczko +Date: Thu May 8 13:58:40 2014 +0300 + + ephy-window: Fix the accelerators for back/forward in RTL + + http://bugzilla.gnome.org/show_bug.cgi?id=729726 + + src/ephy-window.c | 88 +++++++++++++++++++++++++++++++++++++++++-------------- + 1 file changed, 66 insertions(+), 22 deletions(-) + +commit 8e38c53cd3ad8735c2f07bf05ec87e1e1f1a6ddd +Author: Michael Catanzaro +Date: Tue Oct 25 08:35:02 2016 -0500 + + web-extension: adblocker should never block the main resource + + We had a check for this, but it got broken in do not track mode. + + embed/web-extension/ephy-web-extension.c | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +commit 7e8186f33d59474595ec31d805a504c0cca1eced +Author: Мирослав Николић +Date: Fri Nov 18 09:40:40 2016 +0100 + + Updated Serbian translation + + po/sr.po | 163 ++++++++++++++++++++++++++++----------------------------- + po/sr@latin.po | 163 ++++++++++++++++++++++++++++----------------------------- + 2 files changed, 160 insertions(+), 166 deletions(-) + +commit 9938d148ba995aab321a342d1c3cfd05be64fb6c +Author: Mingye Wang +Date: Sat Oct 29 22:21:11 2016 +0800 + + Update zh_CN translation + + po/zh_CN.po | 108 ++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 54 insertions(+), 54 deletions(-) + +commit 0859a1d33900e68853222a8f35b017d8bf1781a7 +Author: Michael Catanzaro +Date: Sun Sep 18 21:22:08 2016 -0500 + + Update appdata file + + data/epiphany.appdata.xml.in | 1 + + 1 file changed, 1 insertion(+) + +commit f0b613db89f27081ee5da9705db8153819c9e6ed +Author: Michael Catanzaro +Date: Sun Sep 18 21:18:39 2016 -0500 + + Prepare 3.18.8 + + NEWS | 12 ++++++++++++ + configure.ac | 2 +- + 2 files changed, 13 insertions(+), 1 deletion(-) + +commit 611ece6ac03caeaad7be1f6c5c1129f80aa2d7f4 +Author: Michael Catanzaro +Date: Sat Sep 10 16:46:40 2016 -0500 + + Update for WebKitGTK+ 2.14 unstable DOM API/ABI break + + There were two API breaks in WebKitDOMDOMTokenList. + + Do not provide compatibility with older versions of WebKit, due to the + several security issues. + + configure.ac | 2 +- + embed/web-extension/ephy-web-overview.c | 6 +----- + 2 files changed, 2 insertions(+), 6 deletions(-) + +commit 2b8ac84b471a872f022a6c383c710f134c240096 +Author: Michael Catanzaro +Date: Sun Aug 7 22:04:19 2016 -0500 + + web-view: limit permission request info bars + + Else a web page can fill the browser window with unlimited notification + permission requests. Limit ourselves to one info bar per permission + request type, same as we already limit ourselves to one password info + bar. + + https://bugzilla.gnome.org/show_bug.cgi?id=764593 + + embed/ephy-web-view.c | 59 +++++++++++++++++++++++++++++++++++++-------------- + 1 file changed, 43 insertions(+), 16 deletions(-) + +commit c259d4924fcee951100c7e82e6041a07f5e8a2f7 +Author: Michael Catanzaro +Date: Sun Aug 7 21:24:17 2016 -0500 + + web-view: properly remove password info bar weak pointer + + embed/ephy-web-view.c | 7 +++++-- + 1 file changed, 5 insertions(+), 2 deletions(-) + +commit bcc8531d62a8e570094a22e96bfbf3f9a3fa0710 +Author: Michael Catanzaro +Date: Mon Aug 29 13:42:14 2016 -0500 + + web-view: remove outdated assert on error types + + Show a proper error page when we receive an unexpected error, instead of + displaying the error as ASCII text + + embed/ephy-web-view.c | 9 +++------ + 1 file changed, 3 insertions(+), 6 deletions(-) + +commit 11933540b9d7a96eb622821d53a5aff445da6812 +Author: Michael Catanzaro +Date: Mon Jun 20 13:53:03 2016 -0500 + + Fix ChangeLog generation for srcdir != builddir + + And limit size of the changelog file + + Makefile.am | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +commit 75e7ab311f9b57ac2427c42e6861b11598bfcf36 +Author: Michael Catanzaro +Date: Tue Sep 6 00:38:17 2016 -0500 + + web-view: set user-content-manager when creating related view + + WebKit does not set the WebKitUserContentManager from the related view + GObject property. The WebKitUserContentManager only gets set + automatically when using the webkit_web_context_new_with_related_view + GObject API. + + This means all our script message handlers (and also user CSS) were + broken in related views (views that share the same web process), e.g. + when using the Add Account feature to switch between multiple Google + accounts on Google pages. + + This is probably also the cause of user complaints that sometimes + bypassing the unacceptable TLS certificate error page doesn't work. + + https://bugzilla.gnome.org/show_bug.cgi?id=769627 + + embed/ephy-web-view.c | 3 +++ + 1 file changed, 3 insertions(+) + +commit cb083c6b6ffb11ebda22c479996f16aa917c8326 +Author: Michael Catanzaro +Date: Tue Jun 14 09:52:48 2016 -0500 + + Revert "title-box: Do not propagate button press events in title mode" + + This reverts commit 8ea4d95748073e8cff6b3cab14492e2469ab9db1. + + src/ephy-title-box.c | 8 +++----- + 1 file changed, 3 insertions(+), 5 deletions(-) + +commit 22099bf1ea23d10c17df7aca8336e9df3bfbb959 +Author: Cédric Valmary +Date: Sat Jun 4 13:15:34 2016 +0000 + + Updated Occitan translation + + po/oc.po | 2246 ++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 1178 insertions(+), 1068 deletions(-) + +commit 3c850730864a93c41c63c50832bf23883c91abc4 +Author: Cédric Valmary +Date: Thu May 12 20:04:49 2016 +0000 + + Updated Occitan translation + + po/oc.po | 9720 +++++++++++++++++++++++++++++++++++++++----------------------- + 1 file changed, 6172 insertions(+), 3548 deletions(-) + +commit 8ea593d0a26679fcb1d94d25be9d0235a0a67668 +Author: Michael Catanzaro +Date: Sat Apr 23 15:45:49 2016 -0500 + + Fix build with WebKit trunk + + embed/web-extension/ephy-web-overview.c | 4 ++++ + 1 file changed, 4 insertions(+) + +commit dd335a635c29be6f3e17d253bee06f4feed9ef02 +Author: Michael Catanzaro +Date: Fri Apr 29 11:10:37 2016 -0500 + + Prepare 3.18.7 + + NEWS | 6 ++++++ + configure.ac | 2 +- + 2 files changed, 7 insertions(+), 1 deletion(-) + +commit 78bbf3d0645086331c955cec9b9015be1568c5b2 +Author: Michael Catanzaro +Date: Fri Apr 29 11:09:27 2016 -0500 + + Revert "snapshot-service: Take new snapshots after a restart" + + This reverts commit 51d8d547b0260271ac342b350cde3c145e66dc5f. + + embed/ephy-web-view.c | 19 ++++--- + lib/ephy-snapshot-service.c | 117 +++++++++++++++----------------------------- + 2 files changed, 52 insertions(+), 84 deletions(-) + +commit 629e5ce24c854dc26498f4d9d6081b9722c7b11b +Author: Cédric Valmary +Date: Tue Apr 19 17:32:52 2016 +0000 + + Updated Occitan translation + + po/oc.po | 5187 +++++++++++++++++++++++++++++++++++++++----------------------- + 1 file changed, 3272 insertions(+), 1915 deletions(-) + +commit c7d1ac2d6a59a01906277e9c25d17fcf896aa22b +Author: Michael Catanzaro +Date: Fri Apr 8 09:19:47 2016 -0500 + + Prepare 3.18.6 + + NEWS | 6 ++++++ + configure.ac | 2 +- + 2 files changed, 7 insertions(+), 1 deletion(-) + +commit 51d8d547b0260271ac342b350cde3c145e66dc5f +Author: Michael Catanzaro +Date: Tue Mar 29 20:59:31 2016 -0500 + + snapshot-service: Take new snapshots after a restart + + The previous commit was correct, but the commit message was not. It + stated that removing the erroneous check would cause snapshots to be + taken if the stored snapshot is too old. In fact, removing the check did + not affect behavior at all -- the check was useless -- and so that did + nothing to fix our stale snapshot issue. + + If the snapshot path is not in memory cache, this is an indication that + the snapshot is relatively stale (older than the current browsing + session) and should be taken again. But we cannot use the existing + snapshot path memory cache as-is, because it is populated not when + snapshots are taken, but when snapshots are looked up. Augment the cache + to remember which paths were snapshotted since Epiphany was last + restarted, and check it to determine whether we're due for a snapshot of + the current page. Also, remove use of the cache from EphyWebView, since + that would prevent snapshots from ever being taken. + + This really fixes the issue. + + https://bugzilla.gnome.org/show_bug.cgi?id=763184 + + embed/ephy-web-view.c | 19 +++---- + lib/ephy-snapshot-service.c | 117 +++++++++++++++++++++++++++++--------------- + 2 files changed, 84 insertions(+), 52 deletions(-) + +commit a7d18ede51470965cd6af2a94d3787af934a4904 +Author: Michael Catanzaro +Date: Tue Mar 29 20:12:09 2016 -0500 + + Revert "snapshot-service: Update snapshots after one week" + + This reverts commit 80ba0ff169d472888389589b143407d56898ea62. + + This code has been broken since it was introduced. There are two cases + where we use the snapshot service: + + * From EphyAboutHandler. Here we pass the a time taken from + EphyHistoryService for the mtime. This check does not seem useful in + this case, because it is only a query: it can never result in a new + snapshot being taken to replace the old snapshot. + + * From EphyWebView itself, when a new page is loaded (or, until + recently, when a favicon was acquired for that page). This is the + only case in which a new snapshot can ever be taken (or updated). In + this case, we pass the current time for mtime, then the comparison + current_time - mtime <= SNAPSHOT_UPDATE_THRESHOLD is the same as + if (0 <= SNAPSHOT_UPDATE_THRESHOLD), and so the snapshots always pass + the check and are never expired. + + Ideally we would reimplement this properly, since one week seems like a + good amount of time for which to persist snapshots. But this is far from + straightforward to do. For now, let's just remove this code, causing + snapshots to be updated at most once per browsing session. + + This mitigates the bug where, until recently, we would take snapshots of + completely white web views, before the pages had rendered; even though + we no longer take white snapshots, broken snapshots that were taken + previously currently persist forever until ~/.cache/thumbnails is + cleared somehow (e.g. by gnome-settings-daemon's housekeeping plugin). + Now they will be cleared much sooner. + + https://bugzilla.gnome.org/show_bug.cgi?id=763184 + + lib/ephy-snapshot-service.c | 9 ++------- + 1 file changed, 2 insertions(+), 7 deletions(-) + commit 59a3fb3de2a49d65e687abb00de8da9a1bebbfbe Author: Michael Catanzaro Date: Mon Mar 14 18:21:57 2016 -0500 @@ -1029,12 +1522,10 @@ https://bugzilla.gnome.org/show_bug.cgi?id=747521 - embed/uri-tester.c | 975 --------------------------------------- - embed/uri-tester.h | 99 ---- - embed/web-extension/Makefile.am | 20 +- - embed/web-extension/uri-tester.c | 975 +++++++++++++++++++++++++++++++++++++++ - embed/web-extension/uri-tester.h | 99 ++++ - 5 files changed, 1077 insertions(+), 1091 deletions(-) + embed/web-extension/Makefile.am | 20 +++----------------- + embed/{ => web-extension}/uri-tester.c | 0 + embed/{ => web-extension}/uri-tester.h | 0 + 3 files changed, 3 insertions(+), 17 deletions(-) commit 67a0888c940ea384ee932c5dea90644d5e2e22b0 Author: ChangSeok Oh @@ -1987,13 +2478,12 @@ No need for the .desktop.in.in with the Bug Buddy stuff removed. - configure.ac | 2 +- - data/Makefile.am | 4 ++-- - data/epiphany.desktop.in | 18 ++++++++++++++++++ - data/epiphany.desktop.in.in | 23 ----------------------- - po/POTFILES.in | 2 +- - po/POTFILES.skip | 1 - - 6 files changed, 22 insertions(+), 28 deletions(-) + configure.ac | 2 +- + data/Makefile.am | 4 ++-- + data/{epiphany.desktop.in.in => epiphany.desktop.in} | 5 ----- + po/POTFILES.in | 2 +- + po/POTFILES.skip | 1 - + 5 files changed, 4 insertions(+), 10 deletions(-) commit b012b48574425c6e17dd692306500fff3da78659 Author: Michael Catanzaro @@ -4084,13 +4574,12 @@ https://bugzilla.gnome.org/show_bug.cgi?id=734379 - po/POTFILES.in | 2 +- - src/Makefile.am | 2 +- - src/ephy-encoding-dialog.c | 2 +- - src/epiphany.gresource.xml | 2 +- - src/resources/encoding-dialog.ui | 169 +++++++++++++++++++++++++++++++++++++++ - src/resources/epiphany.ui | 169 --------------------------------------- - 6 files changed, 173 insertions(+), 173 deletions(-) + po/POTFILES.in | 2 +- + src/Makefile.am | 2 +- + src/ephy-encoding-dialog.c | 2 +- + src/epiphany.gresource.xml | 2 +- + src/resources/{epiphany.ui => encoding-dialog.ui} | 0 + 5 files changed, 4 insertions(+), 4 deletions(-) commit 162e49ca7b215fba50f15b4fdeb21f9541d81633 Author: Michael Catanzaro @@ -5538,173666 +6027,3 @@ src/ephy-session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 42d3a42e3cdb390e6d8606c78c81b31a26c2f976 -Author: Michael Catanzaro -Date: Fri Aug 29 12:01:35 2014 -0500 - - ephy-shell: remove unused variable - - src/ephy-shell.c | 1 - - 1 file changed, 1 deletion(-) - -commit 28ed44fd6f71976ef591b1436d1a03f5c3d7fbdd -Author: Claudio Saavedra -Date: Fri Aug 29 16:13:16 2014 +0300 - - [release] 3.13.90 - - NEWS | 12 ++++++++++++ - configure.ac | 4 ++-- - tests/Makefile.am | 28 +++++++++++++--------------- - 3 files changed, 27 insertions(+), 17 deletions(-) - -commit 371710695b56939ab2178e1679bcfd92d09db15b -Author: Yosef Or Boczko -Date: Fri Aug 29 16:28:27 2014 +0300 - - Updated Hebrew translation - - po/he.po | 40 +++++++++++++++++++++++++++------------- - 1 file changed, 27 insertions(+), 13 deletions(-) - -commit fd9a77f095a1deacdc4e94881b9bd73b0fa25098 -Author: Enrico Nicoletto -Date: Fri Aug 29 13:25:09 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 2855d4cde6ee2548fea4ee788372c3f19f6b0455 -Author: Enrico Nicoletto -Date: Fri Aug 29 13:21:30 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 58 ++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 30 insertions(+), 28 deletions(-) - -commit 454b81915589fd4e7f577c112447daafb5c50695 -Author: Michael Catanzaro -Date: Mon Aug 25 19:53:32 2014 -0500 - - Revert "Always update location entry address if unfocused" - - This reverts commit 64451de8f7c611d50a5200e89278dc1c6c08c4ca. - - https://bugzilla.gnome.org/show_bug.cgi?id=734952 - - src/ephy-location-controller.c | 1 - - 1 file changed, 1 deletion(-) - -commit d718292a65443c862d8ac1985e06f073579f0e09 -Author: Michael Catanzaro -Date: Fri Aug 29 08:08:59 2014 -0500 - - history-dialog: tooltip fixup - - src/resources/history-dialog.ui | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 643021937e1187d036cfd47b1c5c64e0da6f1b9d -Author: Michael Catanzaro -Date: Thu Aug 28 20:14:52 2014 -0500 - - passwords-dialog: add tooltips to buttons - - https://bugzilla.gnome.org/show_bug.cgi?id=735649 - - src/resources/passwords-dialog.ui | 2 ++ - 1 file changed, 2 insertions(+) - -commit ca8ef0d0974cf9f40f3f8985a8708a6af72eb656 -Author: Michael Catanzaro -Date: Thu Aug 28 20:14:20 2014 -0500 - - history-dialog: add tooltips to buttons - - https://bugzilla.gnome.org/show_bug.cgi?id=735649 - - src/resources/history-dialog.ui | 2 ++ - 1 file changed, 2 insertions(+) - -commit 2d1db96b664bc5d40648bd6a180bcf0cc6cbb41d -Author: Michael Catanzaro -Date: Thu Aug 28 20:12:58 2014 -0500 - - cookies-dialog: add tooltip to remove cookie button - - https://bugzilla.gnome.org/show_bug.cgi?id=735649 - - src/resources/cookies-dialog.ui | 1 + - 1 file changed, 1 insertion(+) - -commit 0ce606f78e09f46e8c5b8e1012d14a4f8793c97f -Author: Enrico Nicoletto -Date: Fri Aug 29 13:00:28 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 165 +++++++++++++++++++++++++++++++++++++++++++----------------- - 1 file changed, 120 insertions(+), 45 deletions(-) - -commit e495b74a2accdb6a4e7fad659aebf4b9dd167299 -Author: Maria Mavridou -Date: Thu Aug 28 19:38:41 2014 +0000 - - Updated Greek translation - - po/el.po | 219 ++++++++++++++++++++++++++++++++++++++++++--------------------- - 1 file changed, 146 insertions(+), 73 deletions(-) - -commit 33fb26932842374d49d9816a95dc994b5f7e266d -Author: Daniel Korostil -Date: Thu Aug 28 22:21:26 2014 +0300 - - Updated Ukrainian translation - - po/uk.po | 490 ++++++++++++++++++++++++++++++++++++++++++++------------------- - 1 file changed, 342 insertions(+), 148 deletions(-) - -commit b1c2a766c59a5cb82daa72c39b2c3c5cee884350 -Author: Michael Catanzaro -Date: Tue Aug 26 18:30:14 2014 -0500 - - ephy-web-extension: silence some warnings - - https://bugzilla.gnome.org/show_bug.cgi?id=735491 - - embed/web-extension/ephy-web-extension.c | 11 +++++------ - 1 file changed, 5 insertions(+), 6 deletions(-) - -commit 4209900406ba4df4809f063475c26c9e726aa87b -Author: Michael Catanzaro -Date: Tue Aug 26 18:21:48 2014 -0500 - - Enable warnings when compiling the web extension - - By accident, we don't use any compiler warnings when compiling the web - extension. This is bad. - - We must either add -Wno-missing-prototypes or else declare a useless - prototype for webkit_web_extension_initialize_with_user_data(). - - https://bugzilla.gnome.org/show_bug.cgi?id=735491 - - configure.ac | 2 +- - embed/web-extension/Makefile.am | 1 + - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit a8a36805b2e51987591a3eeb255c5d865f62f89d -Author: Michael Catanzaro -Date: Fri Aug 15 10:08:10 2014 -0500 - - ephy-title-box: allow clicking lock in app mode - - https://bugzilla.gnome.org/show_bug.cgi?id=666808 - - src/ephy-title-box.c | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 5670dc7775c2e76b7f2fd44e3d237884ac5af91a -Author: Nilamdyuti Goswami -Date: Wed Aug 27 11:12:32 2014 +0000 - - Updated Assamese translation - - po/as.po | 196 ++++++++++++++++++++++++++++++++++++++++++--------------------- - 1 file changed, 130 insertions(+), 66 deletions(-) - -commit 5395674fe7742f76248739e7713cc4c7b8f2648e -Author: Yosef Or Boczko -Date: Wed Aug 27 13:32:20 2014 +0300 - - Updated Hebrew translation - - po/he.po | 84 ++++++++++++++++++++++++++++++++++++++++++++++------------------ - 1 file changed, 61 insertions(+), 23 deletions(-) - -commit 4c5b4c9fa65c46377c2cd51ca6790fe3ef77bbc6 -Author: Carlos Garcia Campos -Date: Tue Aug 26 13:44:29 2014 +0200 - - Add context menu entries for media elements - - https://bugzilla.gnome.org/show_bug.cgi?id=735259 - - src/ephy-window.c | 123 +++++++++++++++++++++++++++++++++++++++++++++------ - src/popup-commands.c | 96 ++++++++++++++++++++++++++-------------- - src/popup-commands.h | 12 +++++ - 3 files changed, 184 insertions(+), 47 deletions(-) - -commit 03b9ca0c22ad6754104d363f754272e66fb8a2df -Author: Ting-Wei Lan -Date: Wed Aug 27 01:17:46 2014 +0800 - - Fix "Non-void function should return a value" - - embed/web-extension/ephy-web-extension.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b40b416143c78f099f9bb490aa6526c027772928 -Author: Claudio Saavedra -Date: Tue Aug 26 18:15:34 2014 +0300 - - tests: remove deprecated libsoup API usage - - tests/ephy-download-test.c | 13 ++++++++----- - tests/ephy-snapshot-service-test.c | 8 ++++---- - tests/ephy-web-view-test.c | 5 +++-- - 3 files changed, 15 insertions(+), 11 deletions(-) - -commit d991964811b7d20b7f5b00f21d9eb4f40a37e5de -Author: Yosef Or Boczko -Date: Wed Aug 27 00:53:51 2014 +0300 - - Updated Hebrew translation - - po/he.po | 116 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 63 insertions(+), 53 deletions(-) - -commit 940ec3681bf17e4eb301d18b291fc4996ec2f670 -Author: Michael Catanzaro -Date: Mon Aug 25 12:42:55 2014 -0500 - - Reword some TLS error page messages - - https://bugzilla.gnome.org/show_bug.cgi?id=735350 - - embed/ephy-web-view.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit e347bc3e41a0c138ec9ad37583551a9e5204d031 -Author: Enrico Nicoletto -Date: Tue Aug 26 21:31:38 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 188 ++++++++++-------------------------------------------------- - 1 file changed, 31 insertions(+), 157 deletions(-) - -commit e159c72f55bf3e93a3a39cce52ce895dfec3055a -Author: Daniel Mustieles -Date: Tue Aug 26 19:01:46 2014 +0200 - - Updated Spanish translation - - po/es.po | 91 ++++++++++++++++++++++++++++------------------------------------ - 1 file changed, 40 insertions(+), 51 deletions(-) - -commit f818ca70f0d171c2c9c751755e74524c64c0e816 -Author: Michael Catanzaro -Date: Tue Aug 26 09:44:49 2014 -0500 - - Use a better label on the image context menu - - https://bugzilla.gnome.org/show_bug.cgi?id=735453 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit fb97f9f51c3dc6c94b9e0dbe05a2891175366ef8 -Author: Michael Catanzaro -Date: Sat Aug 23 22:35:13 2014 -0500 - - popup-commands: add include guards - - Also add G_BEGIN_DECLS and G_END_DECLS - - https://bugzilla.gnome.org/show_bug.cgi?id=735259 - - src/popup-commands.h | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit fb1be7f587a10e320d47e58d0c7eec932f7055a3 -Author: Michael Catanzaro -Date: Wed Aug 20 16:57:54 2014 -0500 - - Fix critical warnings when opening context menu - - Opening the context menu causes this critical to print for each menu - item: - - Gtk-CRITICAL **: gtk_accel_label_set_accel_closure: assertion - 'gtk_accel_group_from_accel_closure (accel_closure) != NULL' failed - - https://bugzilla.gnome.org/show_bug.cgi?id=735128 - - src/ephy-window.c | 9 +++++++-- - 1 file changed, 7 insertions(+), 2 deletions(-) - -commit 17e50f7ad936d9847477d861120da0daf75559ac -Author: Michael Catanzaro -Date: Mon Aug 25 09:52:40 2014 -0500 - - Revert "Don't link with X11" - - This reverts commit 74149684d2207be221a71d3d70c1d3d59331046c. - - This is needed in ephy-main.c. I have no idea why I was able to compile - without it when I wrote this commit. :/ - - https://bugzilla.gnome.org/show_bug.cgi?id=735171 - - configure.ac | 1 + - 1 file changed, 1 insertion(+) - -commit 74149684d2207be221a71d3d70c1d3d59331046c -Author: Michael Catanzaro -Date: Fri Aug 22 19:34:29 2014 -0500 - - Don't link with X11 - - https://bugzilla.gnome.org/show_bug.cgi?id=735171 - - configure.ac | 1 - - 1 file changed, 1 deletion(-) - -commit 886e5a05c8cf0044e7d0758c1c651be2e87a97ca -Author: Michael Catanzaro -Date: Thu Aug 21 10:23:39 2014 -0500 - - Don't depend on gmodule - - Since we no longer have a extension system, we don't need this anymore, - right? - - https://bugzilla.gnome.org/show_bug.cgi?id=735171 - - configure.ac | 1 - - 1 file changed, 1 deletion(-) - -commit 1a0ad7b10d443c26a1b9b23526e8699ab649f078 -Author: Michael Catanzaro -Date: Wed Aug 20 13:34:04 2014 -0500 - - ephy-bookmark-properties: close is not an action - - We use a traditional X button for close, we don't spell it out as a - suggested-action. - - This dialog is a bit confusing because it is used for both creating and - viewing bookmarks. When creating bookmarks, it's an action dialog and we - need to use gtk_dialog_add_button() to create our choices (cancel at the - start of the header bar, and suggested Add at the end). But when not - creating a bookmark, it's a presentation dialog and so calling - gtk_dialog_add_button() is wrong. - - https://bugzilla.gnome.org/show_bug.cgi?id=735115 - - src/bookmarks/ephy-bookmark-properties.c | 7 ------- - 1 file changed, 7 deletions(-) - -commit 64451de8f7c611d50a5200e89278dc1c6c08c4ca -Author: Michael Catanzaro -Date: Sun Aug 17 10:35:02 2014 -0500 - - Always update location entry address if unfocused - - ephy-location-controller has some suspect code to lock the location - entry, preventing it from being changed when the current web page - changes. This is contrary to the behavior of Firefox, which immediately - updates the location entry when the page changes. I think Firefox's - behavior is less confusing, since it ensures the correct address is - always displayed, but I guess the intent of Epiphany's behavior is to - not change the address if the user is currently typing one. - - The problem occurs when the location entry is focused while a new page - is loading: then the old address remains in the location entry, while - the title box subtitle gets updated to the new address. Fix this desync - by always updating the location entry address when the location entry is - unfocused. This means the location entry will only have the incorrect - address as long as it is visible, and will be updated to the correct - address when the title box is shown. - - We might additionally want to remove all the locking code so that the - address is always immediately updated. - - https://bugzilla.gnome.org/show_bug.cgi?id=734952 - - src/ephy-location-controller.c | 1 + - 1 file changed, 1 insertion(+) - -commit 8d8b38a5a30b434f13c3160c5628ea7705ca4228 -Author: Fran Diéguez -Date: Mon Aug 25 10:22:58 2014 +0200 - - Updated Galician translations - - po/gl.po | 442 +++++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 291 insertions(+), 151 deletions(-) - -commit 5d286bf9182648710c0751b9286497309eac4699 -Author: Michael Catanzaro -Date: Sat Aug 23 22:49:32 2014 -0500 - - ephy-window: remove some unused actions - - src/ephy-window.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit 6d5b113c9ab11d362b544f96a07d634abca28eef -Author: Kjartan Maraas -Date: Sat Aug 23 11:19:03 2014 +0200 - - Updated Norwegian bokmål translation. - - po/nb.po | 68 +++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 39 insertions(+), 29 deletions(-) - -commit f93e53aa5ea743893a7492d63c7ecd5625182385 -Author: Michael Catanzaro -Date: Fri Aug 22 23:10:13 2014 -0500 - - Fix a couple more uses of HTTP DuckDuckGo - - embed/ephy-embed-utils.c | 2 +- - src/ephy-search-provider.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit b0af36e10e852cc9796ac17fd612a74cac3efed0 -Author: Michael Catanzaro -Date: Fri Aug 22 20:30:44 2014 -0500 - - Distribute ephy-security-levels.h - - Oops. - - lib/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit b6f6c4863763f4339a82aa548b3a592c092f2230 -Author: Enrico Nicoletto -Date: Thu Aug 21 19:21:24 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 58 ++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 32 insertions(+), 26 deletions(-) - -commit 253b206c0c583a7202998f4791a99cffba9fe018 -Author: Michael Catanzaro -Date: Thu Aug 21 10:26:11 2014 -0500 - - Fix typo - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c926be14a3c0f3edc29bcf8916d21a40c3afa5e4 -Author: Jiro Matsuzawa -Date: Thu Aug 21 22:04:18 2014 +0900 - - l10n: Update Japanese translation - - po/ja.po | 1773 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 974 insertions(+), 799 deletions(-) - -commit 17b0e19b281fca5174eae863d7ff814c63981fbc -Author: Yosef Or Boczko -Date: Tue Aug 19 16:02:07 2014 +0300 - - Updated Hebrew translation - - po/he.po | 49 ++++++++++++++++++++++++++----------------------- - 1 file changed, 26 insertions(+), 23 deletions(-) - -commit afc2b53efd564c424eded19805b49f07f355a24f -Author: Chao-Hsiung Liao -Date: Tue Aug 19 20:06:55 2014 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 773 +++++++++++++++++++++-------------------------------------- - po/zh_TW.po | 777 +++++++++++++++++++++--------------------------------------- - 2 files changed, 540 insertions(+), 1010 deletions(-) - -commit 572798fc442fee6d95da875f91de56e7b966f1f6 -Author: Daniel Mustieles -Date: Tue Aug 19 12:59:32 2014 +0200 - - Updated Spanish translation - - po/es.po | 276 ++++++++++++++++++++++++++++++++++++++++++++++++--------------- - 1 file changed, 210 insertions(+), 66 deletions(-) - -commit 7abcaa4dc3c967df2e9b75756c8045cfd9882e40 -Author: ngoswami -Date: Mon Aug 18 11:49:00 2014 +0000 - - Updated Assamese translation - - po/as.po | 83 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 41 insertions(+), 42 deletions(-) - -commit 2078769fc1f342bb267f3e2b1d07f65463021e46 -Author: Christian Kirbach -Date: Sun Aug 17 23:22:18 2014 +0200 - - Updated German help translation - - help/de/de.po | 11 ++++------- - 1 file changed, 4 insertions(+), 7 deletions(-) - -commit 970e63d0fdb93228f3e3a5f02e677fdfa7d2b7db -Author: Christian Kirbach -Date: Sun Aug 17 23:16:54 2014 +0200 - - Updated German help translation and screen-shots - - help/de/de.po | 461 +++++++++++++++++++++++++++++- - help/de/figures/epiphany-3-12.png | Bin 0 -> 351804 bytes - help/de/figures/epiphany-3-8.png | Bin 196098 -> 0 bytes - help/de/figures/private-browsing-3-12.png | Bin 0 -> 334496 bytes - help/de/figures/private-browsing-3-8.png | Bin 192259 -> 0 bytes - 5 files changed, 449 insertions(+), 12 deletions(-) - -commit ab4dccf625879a3351c720a0d0dfb30739b063e1 -Author: Michael Catanzaro -Date: Sun Aug 17 08:05:18 2014 -0500 - - Avoid some more deprecated properties - - src/resources/clear-data-dialog.ui | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit aa121922c83f094468647b214b81e17ff330f82b -Author: Jiro Matsuzawa -Date: Sun Aug 17 13:14:50 2014 +0900 - - Add missing mnemonics in clear-data-dialog.ui - - https://bugzilla.gnome.org/show_bug.cgi?id=734932 - - src/resources/clear-data-dialog.ui | 12 ++++++++---- - 1 file changed, 8 insertions(+), 4 deletions(-) - -commit e6d4c0d1041754d5f338857cd640f0901eaefbc4 -Author: Jiro Matsuzawa -Date: Sun Aug 17 12:04:06 2014 +0900 - - Add missing mnemonics in Preferences dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=734929 - - src/resources/prefs-dialog.ui | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 507a52ecdf64e98f5dd0b9180b53e9dfa6046b1e -Author: Lasse Liehu -Date: Sun Aug 17 14:29:31 2014 +0300 - - Finnish translation update - - po/fi.po | 807 ++++++++++++++++++--------------------------------------------- - 1 file changed, 234 insertions(+), 573 deletions(-) - -commit 12844ee4ece88e3df351a56d12c99fa16abadf22 -Author: Tom Tryfonidis -Date: Sun Aug 17 09:45:38 2014 +0000 - - Updated Greek translation - - po/el.po | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -commit 18ad13ec6c474fd07ef4ab502d276a3e963fb120 -Author: Michael Catanzaro -Date: Sat Aug 16 09:29:41 2014 -0500 - - doap: add - - epiphany.doap | 1 + - 1 file changed, 1 insertion(+) - -commit df46fe39d0f4267820dad161c4eb964db05cf951 -Author: Michael Catanzaro -Date: Sat Aug 16 09:24:42 2014 -0500 - - doap: add - - epiphany.doap | 1 + - 1 file changed, 1 insertion(+) - -commit bf92b38c4c0a404e0dc3323d8a1a36c658a93423 -Author: Michael Catanzaro -Date: Sat Aug 16 09:23:36 2014 -0500 - - doap category core - - epiphany.doap | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e91d30c7817cce68882eedb12d9027d274448616 -Author: Michael Catanzaro -Date: Fri Aug 15 10:57:47 2014 -0500 - - ephy-web-view: do not replace broken lock with mixed content warning - - The mixed content warning is only intended to be displayed on sites with - a secure primary connection. It's not relevant if the site is untrusted. - - https://bugzilla.gnome.org/show_bug.cgi?id=734867 - - embed/ephy-web-view.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 74de31adef954f785dd29f2a341fb5e53722d3ea -Author: Kjartan Maraas -Date: Sat Aug 16 11:59:26 2014 +0200 - - Updated Norwegian bokmål translation. - - po/nb.po | 234 ++++++++++++++++++++++++++++++++++++++++++++++++--------------- - 1 file changed, 178 insertions(+), 56 deletions(-) - -commit 33f5a07c29db6918e28fb3f0ceee82ff389fcc92 -Author: Aurimas Černius -Date: Fri Aug 15 23:22:08 2014 +0300 - - Updated Lithuanian translation - - po/lt.po | 261 ++++++++++++++++++++++++++++++++++++++++++++++++--------------- - 1 file changed, 202 insertions(+), 59 deletions(-) - -commit b8ea8b44c2fd1d69c47901ba901105fc0cdfcab1 -Author: Jiro Matsuzawa -Date: Sat Aug 16 01:00:34 2014 +0900 - - Use HTTPS for Bing search - - https://bugzilla.gnome.org/show_bug.cgi?id=734868 - - src/prefs-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6124fa26d47238b0f01fdcefbd2602130ae760e1 -Author: MarMav -Date: Fri Aug 15 08:57:21 2014 +0000 - - Updated Greek translation - - po/el.po | 329 +++++++++++++++++++++++++++++++++++++++++++++------------------ - 1 file changed, 235 insertions(+), 94 deletions(-) - -commit 217a430dc2abe47033e29e65cc1ed450b8845b2c -Author: ngoswami -Date: Thu Aug 14 15:36:07 2014 +0000 - - Updated Assamese translation - - po/as.po | 801 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 436 insertions(+), 365 deletions(-) - -commit 3b0d8ac653cba919756e3d614c6fa7699720038b -Author: Carlos Garcia Campos -Date: Thu Aug 14 10:11:44 2014 +0200 - - location-entry: Reset the lock icon when security level is EPHY_SECURITY_LEVEL_NO_SECURITY - - We were returning early leaving the existing icon for non HTTPS pages. - We don't need to keep the gicon and resetting it every time a new - security level is set, we can simply use gtk_entry_set_icon_from_icon_name() - with the name we get from ephy_security_level_to_icon_name(). - - lib/widgets/ephy-location-entry.c | 23 +++-------------------- - 1 file changed, 3 insertions(+), 20 deletions(-) - -commit a1350e9286ec77e0397ee341aa20b268254efefc -Author: Michael Catanzaro -Date: Wed Aug 13 11:42:43 2014 -0500 - - Do not show down arrow in title box in app mode - - In application mode, the title box is not clickable, so it's wrong to - show a down arrow next to the web address. (The down arrow is used to - indicate that the user can click on the title box.) - - https://bugzilla.gnome.org/show_bug.cgi?id=734732 - - src/ephy-title-box.c | 18 ++++++++++++------ - 1 file changed, 12 insertions(+), 6 deletions(-) - -commit f2510414ac5f6c85f8da11e709d721f1e537e6b2 -Author: Enrico Nicoletto -Date: Wed Aug 13 14:03:05 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 268 +++++++++++++++++++++++++++++++++++++++++++++++------------- - 1 file changed, 209 insertions(+), 59 deletions(-) - -commit bfbbd7930ddc12e3e79c4dc04a6aa99781cbd0b1 -Author: Yosef Or Boczko -Date: Wed Aug 13 11:47:16 2014 +0300 - - Updated Hebrew translation - - po/he.po | 152 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 87 insertions(+), 65 deletions(-) - -commit 564a6951839a8e6a6c61c6794ca9e62701050e8d -Author: Michael Catanzaro -Date: Fri Aug 8 15:54:20 2014 -0500 - - Open certificate popover if title box lock clicked - - We show two locks in the header bar: the lock in the location entry, and - the lock in the title box. Previously, only the lock in the location - entry was actually functional, but clicking the lock in the title box - ought to work, too, since you should not need to open the location entry - to perform any actions. - - Arguably the lock should be removed from the location entry so that this - functionality only exists in one place, but this patch leaves both locks - intact. - - https://bugzilla.gnome.org/show_bug.cgi?id=666808 - - lib/widgets/ephy-certificate-popover.h | 8 +++---- - po/POTFILES.in | 2 +- - src/ephy-title-box.c | 35 ++++++++++++++++++++++++++- - src/ephy-window.c | 44 +++++++++++++++++++++++++++------- - 4 files changed, 75 insertions(+), 14 deletions(-) - -commit 7c5686d037142d5f834a8ee0a40620a521374102 -Author: Michael Catanzaro -Date: Tue Jul 15 11:43:47 2014 -0500 - - Display security status in a popover - - Instead of bringing up the certificate details dialog when clicking on - the lock icon in the address bar, instead bring up a popover that - displays information about the security status of this site, including a - button to open the certificate dialog. - - https://bugzilla.gnome.org/show_bug.cgi?id=666808 - - lib/ephy-security-levels.c | 36 ++-- - lib/ephy-security-levels.h | 2 +- - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-certificate-popover.c | 360 +++++++++++++++++++++++++++++++++ - lib/widgets/ephy-certificate-popover.h | 68 +++++++ - lib/widgets/ephy-location-entry.c | 2 +- - po/POTFILES.in | 1 + - src/ephy-window.c | 32 +-- - 8 files changed, 470 insertions(+), 33 deletions(-) - -commit 6b59dd4a9663a5c58b752e9bdcf00b1ac5db86e3 -Author: Michael Catanzaro -Date: Thu Jul 10 21:28:28 2014 -0500 - - Display warning icon if mixed content is detected - - Since an attacker can modify some contents of these pages, we should - display a warning icon instead of a secure lock, following the convention - of major browsers. - - https://bugzilla.gnome.org/show_bug.cgi?id=666808 - - embed/ephy-web-view.c | 14 ++++++++++ - lib/Makefile.am | 1 + - lib/ephy-security-levels.c | 55 +++++++++++++++++++++++++++++++++++++++ - lib/ephy-security-levels.h | 3 +++ - lib/widgets/ephy-location-entry.c | 28 ++++++++------------ - src/ephy-title-box.c | 6 ++--- - 6 files changed, 87 insertions(+), 20 deletions(-) - -commit 487ff820a86238fd21efe7b1288c58d60c04a1e0 -Author: Michael Catanzaro -Date: Sun Aug 10 23:12:15 2014 -0500 - - Remove various show_lock properties - - EphyTitleBox and EphyLocationEntry now know to show the lock whenever - the security level is not EPHY_SECURITY_LEVEL_NO_SECURITY. - - https://bugzilla.gnome.org/show_bug.cgi?id=666808 - - lib/widgets/ephy-location-entry.c | 53 ++------------------------------------- - lib/widgets/ephy-location-entry.h | 3 --- - src/ephy-title-box.c | 31 ++--------------------- - src/ephy-title-box.h | 3 --- - src/ephy-window.c | 38 +++------------------------- - 5 files changed, 7 insertions(+), 121 deletions(-) - -commit d8ec235316724ba778e5e4eece2b479ed7da163a -Author: Michael Catanzaro -Date: Thu Jul 10 21:24:05 2014 -0500 - - Merge EphyWebViewSecurityLevel and EphyLocationLockState - - EphyWebViewSecurityLevel has lots of unused members. Once they're - removed, they correspond one-to-one with EphyLocationLockState. Merge - these so we don't have to convert between two identical enums. - - https://bugzilla.gnome.org/show_bug.cgi?id=666808 - - embed/ephy-web-view.c | 25 +++++++++--------- - embed/ephy-web-view.h | 16 +++--------- - lib/Makefile.am | 3 ++- - lib/ephy-security-levels.h | 42 ++++++++++++++++++++++++++++++ - lib/widgets/ephy-location-entry.c | 55 ++++++++++++++++++++------------------- - lib/widgets/ephy-location-entry.h | 13 +++------ - src/ephy-title-box.c | 14 +++++----- - src/ephy-title-box.h | 4 +-- - src/ephy-window.c | 30 +++++++-------------- - 9 files changed, 111 insertions(+), 91 deletions(-) - -commit 7afd509c34ea5da3be94d379e8d1b39fd158daca -Author: Michael Catanzaro -Date: Sun Aug 10 22:59:45 2014 -0500 - - EphyLocationController: remove unused properties - - https://bugzilla.gnome.org/show_bug.cgi?id=666808 - - src/ephy-location-controller.c | 51 ------------------------------------------ - 1 file changed, 51 deletions(-) - -commit 36a3a20e7e12ef99a1cf6a2fad7b8f4df58064c3 -Author: Tom Tryfonidis -Date: Mon Aug 11 12:19:36 2014 +0000 - - Updated Greek translation - - po/el.po | 315 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 160 insertions(+), 155 deletions(-) - -commit 5cff763e5c98fd22acba604557bb730cce7fb88f -Author: Carlos Garcia Campos -Date: Mon Aug 11 12:09:49 2014 +0200 - - Bump WebKitGTK+ requirements to 2.5.2 - - And use the new WebKitNavigationPolicyDecision API to remove a couple of - FIXMEs. - - configure.ac | 2 +- - src/ephy-window.c | 26 ++++++++------------------ - 2 files changed, 9 insertions(+), 19 deletions(-) - -commit d554084604e709b945dc7a09d10a796f0d24940a -Author: Michael Catanzaro -Date: Wed Aug 6 11:33:45 2014 -0500 - - Remove ephy-object-helpers - - Not sure I want to know why this was ever useful. - - https://bugzilla.gnome.org/show_bug.cgi?id=734369 - - lib/Makefile.am | 2 -- - lib/ephy-object-helpers.c | 37 ------------------------------------- - lib/ephy-object-helpers.h | 35 ----------------------------------- - 3 files changed, 74 deletions(-) - -commit a9cac88f27e833bf5d959b49fd2d52b1e0c8131e -Author: Yosef Or Boczko -Date: Sun Aug 10 10:36:41 2014 +0300 - - ephy-window: Move the reload button to the header bar - - From the location entry. - - https://bugzilla.gnome.org/show_bug.cgi?id=729812 - - src/ephy-title-box.c | 31 +------------------------------ - src/ephy-toolbar.c | 29 +++++++++++------------------ - 2 files changed, 12 insertions(+), 48 deletions(-) - -commit b7c278ec8d7743c43ad8e8e9a9cf6a6a51d9534a -Author: Michael Catanzaro -Date: Mon Jul 21 10:31:42 2014 -0500 - - ephy-title-box: Fix crash when closing second window - - The web view can be destroyed out from under us, so we need to use a - weak reference to determine if it is still alive. - - https://bugzilla.gnome.org/show_bug.cgi?id=732784 - - src/ephy-title-box.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit edf4d509f584ac3e7430eb078f40c68da6c78ec8 -Author: Michael Catanzaro -Date: Mon Jul 21 10:23:23 2014 -0500 - - Revert "ephy-title-box: Fix crash when closing second window" - - This reverts commit 005ce536fd94db9fca3906a358ca555a3e557771. - - https://bugzilla.gnome.org/show_bug.cgi?id=732784 - - src/ephy-title-box.c | 48 +++++++----------------------------------------- - 1 file changed, 7 insertions(+), 41 deletions(-) - -commit 0995fe71257746e512159a463c7b95d64ea77925 -Author: Michael Catanzaro -Date: Mon Jul 21 10:23:09 2014 -0500 - - Revert "ephy-title-box: Fix a warning when closing window" - - This reverts commit 7eabfe44e9804717bfb6f0fa10e53f9c4d170e38. - - https://bugzilla.gnome.org/show_bug.cgi?id=732784 - - src/ephy-title-box.c | 12 +++++++----- - 1 file changed, 7 insertions(+), 5 deletions(-) - -commit 806456830def04db0219e32dfd2a6166f69acc9c -Author: Michael Catanzaro -Date: Mon Jul 21 10:22:39 2014 -0500 - - Revert "ephy-title-box: Fix a type" - - This reverts commit 5c8005ec5adb1b9432d3390e73de5213899502cb. - - https://bugzilla.gnome.org/show_bug.cgi?id=732784 - - src/ephy-title-box.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 145fcb779ad72e97ee3a756b62dcb0c98eb1a080 -Author: Yosef Or Boczko -Date: Sun Aug 10 10:29:43 2014 +0300 - - Updated Hebrew translation - - po/he.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 15f08047591dd641b37218d15c2c043057dafe4f -Author: Yosef Or Boczko -Date: Sun Aug 10 10:09:58 2014 +0300 - - encoding-dialog: Align a label correctly - - https://bugzilla.gnome.org/show_bug.cgi?id=730428 - - src/resources/epiphany.ui | 1 + - 1 file changed, 1 insertion(+) - -commit f5406c373b8b8d73905fb92dbbd212a22ae1c202 -Author: Yosef Or Boczko -Date: Tue May 20 12:13:35 2014 +0300 - - prefs-lang-dialog: Add "suggested-action" style class to the add button - - https://bugzilla.gnome.org/show_bug.cgi?id=730428 - - src/resources/prefs-lang-dialog.ui | 1 + - 1 file changed, 1 insertion(+) - -commit 1f2826570f191cfa9908c4aeec08eb6323301e06 -Author: Yosef Or Boczko -Date: Sat Aug 9 21:29:29 2014 +0300 - - Revert "ephy-title-box: Show correctly UTF-8 URL" - - This reverts commit dcc8975f5887ba0c3da6fdfd37a1c7975852bf92. - - src/ephy-title-box.c | 11 +++++------ - 1 file changed, 5 insertions(+), 6 deletions(-) - -commit b8667a9e62527b9abfc892dfe0ad48eff27343c3 -Author: Yosef Or Boczko -Date: Sat Aug 9 21:29:23 2014 +0300 - - Revert "nautilus-floating-bar: Show correctly UTF-8 URL" - - This reverts commit 9488a86d38dd9c6f33cffb0c75a35de1bbeecc8d. - - lib/widgets/nautilus-floating-bar.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6896040b1833a6fd036eda19c6edea3dc6f99c6e -Author: Yosef Or Boczko -Date: Sat Aug 9 21:29:16 2014 +0300 - - Revert "ephy-window: Move the reload button to the header bar" - - This reverts commit 5f23adee1e370e70e1a1983570fca669d9357f6c. - - src/ephy-title-box.c | 32 ++++++++++++++++++++++++++++++-- - src/ephy-toolbar.c | 30 ++++++++++++++++++------------ - 2 files changed, 48 insertions(+), 14 deletions(-) - -commit 1dc8f2bdeca67dd9d21389abb9329119458bf7ad -Author: Yosef Or Boczko -Date: Sat Aug 9 21:29:04 2014 +0300 - - Revert "ephy-window: Fix the accelerators for back/forward in RTL" - - This reverts commit 1ff07bb8fb954d50561164e4060f4b597a5dea4e. - - src/ephy-window.c | 38 +++++--------------------------------- - 1 file changed, 5 insertions(+), 33 deletions(-) - -commit cca9ee899c7f74f0c0ba2fc0ac8a466bd440e64d -Author: Yosef Or Boczko -Date: Sat Aug 9 21:27:24 2014 +0300 - - Updated Hebrew translation - - po/he.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 1ff07bb8fb954d50561164e4060f4b597a5dea4e -Author: Yosef Or Boczko -Date: Thu May 8 13:58:40 2014 +0300 - - ephy-window: Fix the accelerators for back/forward in RTL - - http://bugzilla.gnome.org/show_bug.cgi?id=729726 - - src/ephy-window.c | 38 +++++++++++++++++++++++++++++++++----- - 1 file changed, 33 insertions(+), 5 deletions(-) - -commit 5f23adee1e370e70e1a1983570fca669d9357f6c -Author: Yosef Or Boczko -Date: Tue May 20 12:39:16 2014 +0300 - - ephy-window: Move the reload button to the header bar - - https://bugzilla.gnome.org/show_bug.cgi?id=729812 - - src/ephy-title-box.c | 32 ++------------------------------ - src/ephy-toolbar.c | 30 ++++++++++++------------------ - 2 files changed, 14 insertions(+), 48 deletions(-) - -commit 9488a86d38dd9c6f33cffb0c75a35de1bbeecc8d -Author: Yosef Or Boczko -Date: Fri Feb 28 15:17:41 2014 +0200 - - nautilus-floating-bar: Show correctly UTF-8 URL - - https://bugzilla.gnome.org/show_bug.cgi?id=710004 - - lib/widgets/nautilus-floating-bar.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit dcc8975f5887ba0c3da6fdfd37a1c7975852bf92 -Author: Yosef Or Boczko -Date: Fri Feb 28 12:53:41 2014 +0200 - - ephy-title-box: Show correctly UTF-8 URL - - https://bugzilla.gnome.org/show_bug.cgi?id=710004 - - src/ephy-title-box.c | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit daa5a60c4e8a488dacc14a155ab7c026b9979a6b -Author: Yosef Or Boczko -Date: Fri Aug 8 18:20:05 2014 +0300 - - Updated Hebrew translation - - po/he.po | 173 +++++++++++++++++++++++++++++++++++++++++++++++++-------------- - 1 file changed, 136 insertions(+), 37 deletions(-) - -commit f0e7ab86cc2f137637a8a8e8e987e312e93945f3 -Author: Michael Catanzaro -Date: Wed Jul 16 11:19:25 2014 -0500 - - Do not ignore TLS errors - - Currently, Epiphany loads web pages even though it realizes the - connection may be insecure, displaying a broken lock in the address bar. - By this point, it's too late: the attacker already has your session - cookies. Display an error page instead. Based on groundwork by Brian - Holt. - - https://bugzilla.gnome.org/show_bug.cgi?id=708847 - - embed/ephy-embed-shell.c | 37 ++++++ - embed/ephy-web-extension-proxy.c | 26 +++++ - embed/ephy-web-extension-proxy.h | 2 + - embed/ephy-web-view.c | 195 +++++++++++++++++++++++++++++-- - embed/ephy-web-view.h | 3 +- - embed/web-extension/ephy-web-extension.c | 129 ++++++++++++++++++-- - src/ephy-shell.c | 3 + - src/resources/error.html | 2 +- - 8 files changed, 379 insertions(+), 18 deletions(-) - -commit 0c6b9a2c192552baa67676efe6a039caec256a5c -Author: Daniel Mustieles -Date: Thu Aug 7 13:55:26 2014 +0200 - - Updated Spanish translation - - po/es.po | 45 ++++++++++++++++++++++++++------------------- - 1 file changed, 26 insertions(+), 19 deletions(-) - -commit f4315671a9001cc1b17798ae16bef0025ef28567 -Author: Carlos Garcia Campos -Date: Thu Aug 7 11:22:30 2014 +0200 - - Fix links opened in a new window - - src/ephy-window.c | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -commit 2bd0407191491de72b1b2abb1b7df84ec9bf609b -Author: Michael Catanzaro -Date: Wed Aug 6 16:24:45 2014 -0500 - - Reduce warning spew from deprecated properties - - Mostly this is xalign->halign and margin_start instead of GtkAlignment. - There are still a bunch of warnings, but I think they're coming from WebKit. - - The patch is mostly unreadable due to the GtkAlignment removal, but - there should not be any functional changes. - - embed/ephy-embed-prefs.c | 4 +- - lib/widgets/nautilus-floating-bar.c | 4 +- - src/resources/clear-data-dialog.ui | 14 +- - src/resources/epiphany.ui | 6 +- - src/resources/prefs-dialog.ui | 1098 ++++++++++++++++------------------- - src/resources/prefs-lang-dialog.ui | 2 +- - 6 files changed, 518 insertions(+), 610 deletions(-) - -commit ac785b47b1754ffa63ce343842b1db1620baa2ef -Author: Michael Catanzaro -Date: Wed Aug 6 16:01:31 2014 -0500 - - Set add language window transient for the preferences dialog - - src/prefs-dialog.c | 1 + - 1 file changed, 1 insertion(+) - -commit d92ae7669d9c911739a690618599109fd0349bfa -Author: Michael Catanzaro -Date: Wed Aug 6 13:40:09 2014 -0500 - - ephy-certificate-dialog: add missing periods - - lib/widgets/ephy-certificate-dialog.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit d8e50b380dbad791cf0bfeaba0314ec30d88b82a -Author: Carlos Garcia Campos -Date: Wed Jul 2 09:21:47 2014 +0200 - - Add support for downloads from evince browser plugin - - Enable javascript popups in WebKit by default and block them from - epiphany in the policy checker callback. Evince browser plugin allows to - download the current document only when the user agent contains - Epiphany, by using a special target frame name. When we detect that - target name in the policy checker callback we convert the request into a - download. - - embed/ephy-embed-prefs.c | 5 +---- - src/ephy-window.c | 18 ++++++++++++++++++ - 2 files changed, 19 insertions(+), 4 deletions(-) - -commit 6476f3a5d0f11c3a46a0d19e76862f74304d683f -Author: Michael Catanzaro -Date: Tue Aug 5 14:33:29 2014 -0500 - - Fix floating bar style with GTK+ master - - This has been transparent for a month or two now. I think the fix is - by Lapo Calamandrei. - - https://bugzilla.gnome.org/show_bug.cgi?id=734306 - - src/resources/epiphany.css | 24 +++++++++++++++++++++++- - 1 file changed, 23 insertions(+), 1 deletion(-) - -commit 215cd19e77510218839e258ebf86f9ee9141dbca -Author: Inaki Larranaga Murgoitio -Date: Tue Aug 5 12:39:32 2014 +0200 - - Updated Basque language - - po/eu.po | 204 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 105 insertions(+), 99 deletions(-) - -commit 6303b05c14b40b6d732b85448b22785afba368b5 -Author: Richard Hughes -Date: Mon Aug 4 17:01:38 2014 +0100 - - data: Set and fields in the AppData file - - We want to use different values in the software center search results. - - data/epiphany.appdata.xml.in | 2 ++ - 1 file changed, 2 insertions(+) - -commit 79de0e962605d886c7b8e1ce9d095b2e30068d2f -Author: Michael Catanzaro -Date: Sat Aug 2 15:27:59 2014 -0500 - - Update about dialog copyright year - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2f6cfb0dfb2400cf0b3f49ba83b548ed01864dea -Author: Carlos Garcia Campos -Date: Fri Aug 1 14:23:21 2014 +0200 - - Bump WebKitGTK+ requirements to 2.5.1 - - And remove all ifdefs. - - configure.ac | 4 ++-- - embed/ephy-embed-prefs.c | 31 +------------------------------ - embed/ephy-embed-prefs.h | 2 +- - embed/ephy-embed-shell.c | 12 ++---------- - embed/ephy-embed-shell.h | 4 ++-- - embed/ephy-web-view.c | 8 -------- - embed/web-extension/ephy-web-overview.c | 2 -- - src/ephy-window.c | 2 -- - 8 files changed, 8 insertions(+), 57 deletions(-) - -commit 9e8e34a398788754ce76119b502eb8e458f1aec8 -Author: Carlos Garcia Campos -Date: Thu Jul 31 10:56:15 2014 +0200 - - web-extensions: Release EphyWebExtensionProxy when the web extension is destroyed - - We were leaking all EphyWebExtensionProxy objects because they were - released when the bus named was unwatched, and we were unwatching the - name in the object dispose method. So, now unref the object when the - name is vanished instead. Also added a GCancellable to use in all async - operations. - - embed/ephy-web-extension-proxy.c | 53 ++++++++++++++++++++++++++++++---------- - 1 file changed, 40 insertions(+), 13 deletions(-) - -commit ef5f4dfb87d544c3c3b92ebbfbb73f1fa8ca3cc4 -Author: Carlos Garcia Campos -Date: Tue Jul 29 17:01:27 2014 +0200 - - Make it build with current WebKit master - - WebKitWebViewGroup has been removed . - - embed/ephy-embed-prefs.c | 21 +++++++++++++++++---- - embed/ephy-embed-prefs.h | 2 +- - embed/ephy-embed-shell.c | 2 +- - embed/ephy-web-view.c | 10 ++++++++-- - 4 files changed, 27 insertions(+), 8 deletions(-) - -commit 53865458fb301e6a528b0aef2513b03943d2f127 -Author: Carlos Garcia Campos -Date: Tue Jul 29 11:24:17 2014 +0200 - - Revert "Fix build with WebKit master" - - This reverts commit 23c3de000eddd33b8dfe2988dda10d01099505a7. - - I don't think this is right, webkit_dom_element_get_class_list() is - defined in WebKitDOMElementUnstable.h now in WebKit master - - embed/web-extension/ephy-web-overview.c | 1 + - 1 file changed, 1 insertion(+) - -commit 77952e8d43ddbabaf04dc5fef4d610209d267a9d -Author: Aurimas Černius -Date: Fri Jul 25 23:17:54 2014 +0300 - - Updated Lithuanian translation - - po/lt.po | 247 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 120 insertions(+), 127 deletions(-) - -commit 9b9be55de3cd74a0f0cb05880177db7b46d10923 -Author: Daniel Mustieles -Date: Tue Jul 22 12:28:14 2014 +0200 - - Updated Spanish translation - - po/es.po | 157 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 79 insertions(+), 78 deletions(-) - -commit f0ca055dd2b560b0b14ceb54e74d88223c472680 -Author: Michael Catanzaro -Date: Mon Jul 21 16:35:14 2014 -0500 - - Fix warnings when compiling with WebKit master - - embed/ephy-embed-prefs.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 23c3de000eddd33b8dfe2988dda10d01099505a7 -Author: Michael Catanzaro -Date: Mon Jul 21 13:11:18 2014 -0500 - - Fix build with WebKit master - - embed/web-extension/ephy-web-overview.c | 1 - - 1 file changed, 1 deletion(-) - -commit aece3eb370a6b5b9cdcfffa5c5cf21e9ecd31f07 -Author: Kjartan Maraas -Date: Mon Jul 21 14:56:18 2014 +0200 - - Updated Norwegian bokmål translation. - - po/nb.po | 199 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 99 insertions(+), 100 deletions(-) - -commit 16b0ec9a1ae35af4826f62210436242b1c7c5646 -Author: Enrico Nicoletto -Date: Fri Jul 18 12:44:43 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 117 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 59 insertions(+), 58 deletions(-) - -commit 4156e0c2ea8b560e472f100ca821884fbf528e60 -Author: Yosef Or Boczko -Date: Sun Jul 13 15:39:53 2014 +0300 - - Updated Hebrew translation - - po/he.po | 156 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 78 insertions(+), 78 deletions(-) - -commit deaa6abc787ed1cc477231de75d4902f785c395e -Author: Michael Catanzaro -Date: Thu Jul 10 12:37:20 2014 -0500 - - ephy-certificate-dialog: use better default height - - Reduce the amount of blank space on this dialog when technical details - are not being displayed. It's just too much. This height is still large - enough that users who want to browse through all the details probably - won't want to resize the window. - - https://bugzilla.gnome.org/show_bug.cgi?id=733025 - - lib/widgets/ephy-certificate-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d6988b2da0f52aa79fbc1a0360031c5351d96d76 -Author: Michael Catanzaro -Date: Wed Jul 9 21:42:14 2014 -0500 - - ephy-certificate-dialog: fix position of lock icon - - If the cert is untrusted then the lock icon displays parallel to the - first row of text; it needs to be centered between them. - - https://bugzilla.gnome.org/show_bug.cgi?id=733025 - - lib/widgets/ephy-certificate-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5f50e89e04957a4b74c57cef32c4fcf219c85487 -Author: Michael Catanzaro -Date: Wed Jul 9 19:06:29 2014 -0500 - - ephy-certificate-dialog: remove old code - - We do not use the action area now that we have header bars - - https://bugzilla.gnome.org/show_bug.cgi?id=733025 - - lib/widgets/ephy-certificate-dialog.c | 6 +----- - 1 file changed, 1 insertion(+), 5 deletions(-) - -commit 81960c65cc5bdab367f7d18213f8f62c8ac7c6dc -Author: Michael Catanzaro -Date: Wed Jul 9 19:00:17 2014 -0500 - - ephy-certificate-dialog: reword bad identity error message - - This wording should be a bit less confusing. - - https://bugzilla.gnome.org/show_bug.cgi?id=733025 - - lib/widgets/ephy-certificate-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6d8e4950a379f31e5b0ba78f9d2990f62bbfc54f -Author: Robert Roth -Date: Tue Jul 8 11:35:59 2014 +0300 - - Fixed history window crash on no search results. https://bugzilla.gnome.org/show_bug.cgi?id=732876 - - src/ephy-history-window.c | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit 2bf254cb1791bf922fc8ff6e833d490135f2c925 -Author: Carlos Garcia Campos -Date: Fri Jul 11 14:08:16 2014 +0200 - - Allow to build epiphany with WebKit from current git master - - Update to the latest API changes - - embed/ephy-embed-prefs.c | 15 +++++++++++++++ - embed/ephy-embed-shell.c | 19 +++++++++++++++++++ - embed/ephy-embed-shell.h | 1 + - embed/ephy-web-view.c | 3 +++ - 4 files changed, 38 insertions(+) - -commit 4ebf5e3cbe2a33cbd7a4ddab8d27ab16eacaab77 -Author: Carlos Garcia Campos -Date: Fri Jul 4 08:49:28 2014 +0200 - - Fix the build with WebKit 2.5 - - Update to the API changes in WebKit 2.5 - - embed/web-extension/ephy-web-overview.c | 6 ++++++ - src/ephy-window.c | 3 +++ - 2 files changed, 9 insertions(+) - -commit 9ed3d3a8cd98a2b4fa37018d335fcc860f373435 -Author: Carlos Garcia Campos -Date: Fri Jul 11 12:37:11 2014 +0200 - - configure: Bump WebKitGTK+ requirements to 2.4.4 - - This version allows to use WebKitVersion macros from the web extensions - API. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9c22098211b7cc825f426c64c0926912889eb300 -Author: Michael Catanzaro -Date: Thu Jul 10 12:31:58 2014 -0500 - - Fix a couple doc comments - - embed/ephy-embed-shell.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 6892dd5bb45df1b0339797c68bc5a1079076c53f -Author: Gustavo Noronha Silva -Date: Wed Jul 9 15:03:48 2014 -0300 - - Add sanity check warning for finding extensions - - That will help debugging future issues with extensions not being found. - - https://bugzilla.gnome.org/show_bug.cgi?id=727139 - - embed/ephy-embed-shell.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit c66c1d147ce9f08f3f70a6cf1b81b8ba83ff42ef -Author: Gustavo Noronha Silva -Date: Wed Jul 9 14:48:34 2014 -0300 - - Wait for name acquisition before we register and emit notifications - - The UI side relies on having the name of the owner to find the extension on - its linked list. If we start emiting signals before that has been acquired, - we will miss page created signals. - - https://bugzilla.gnome.org/show_bug.cgi?id=727139 - - embed/web-extension/ephy-web-extension-main.c | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit 50ff678547a8fff7530b170b766530f48ea50f65 -Author: Michael Catanzaro -Date: Wed Jul 9 16:10:08 2014 -0500 - - ephy-web-overview: fix memory leak - - https://bugzilla.gnome.org/show_bug.cgi?id=732966 - - embed/web-extension/ephy-web-overview.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit e7db26478e9824dae6a16700b64e1b2c2deff814 -Author: Balázs Úr -Date: Wed Jul 9 23:30:06 2014 +0000 - - Updated Hungarian translation - - help/hu/hu.po | 453 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 447 insertions(+), 6 deletions(-) - -commit fe0ce24e5b6ab6a74cd66418127c6735b88a1fbe -Author: Yosef Or Boczko -Date: Wed Jul 9 15:08:29 2014 +0300 - - ephy-window: The menu icon name changed to open-menu-symbolic - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c787e70807558eeb6c1346bbd914fb0fc9309b18 -Author: Yosef Or Boczko -Date: Tue Jul 8 15:36:31 2014 +0300 - - ephy-window: Use view-context-menu-symbolic for the gear menu - - This is a new, dedicated icon name for this purpose. - See https://wiki.gnome.org/Initiatives/GnomeGoals/GearIcons - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bda25de084b0b18efe27b483b73b5d626162a691 -Author: Yosef Or Boczko -Date: Fri May 23 00:27:21 2014 +0300 - - ephy-find-toolbar: Use the new support for RTL icons in GtkIconTheme - - https://bugzilla.gnome.org/show_bug.cgi?id=730598 - - embed/ephy-find-toolbar.c | 9 ++------- - 1 file changed, 2 insertions(+), 7 deletions(-) - -commit ce1044f37d9ac14bd76e71a44b2eaec273a6ad06 -Author: Yosef Or Boczko -Date: Fri May 23 00:27:37 2014 +0300 - - ephy-window: Use the new support for RTL icons in GtkIconTheme - - https://bugzilla.gnome.org/show_bug.cgi?id=730598 - - src/ephy-window.c | 13 ++----------- - 1 file changed, 2 insertions(+), 11 deletions(-) - -commit dbb3e369206f205cc0783bd5b1e07cacab7124f8 -Author: Yosef Or Boczko -Date: Fri May 23 00:25:16 2014 +0300 - - build: Bump required GTK+ version - - https://bugzilla.gnome.org/show_bug.cgi?id=730598 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b7e9fc113817bf807d58329c950fa7912a9b2137 -Author: Yosef Or Boczko -Date: Mon Jul 7 15:22:23 2014 +0300 - - ephy-title-box: Remove an unneeded style class - - src/ephy-title-box.c | 1 - - 1 file changed, 1 deletion(-) - -commit faed1d27a3a84fe3922642a1252f47ee45d11793 -Author: Muhammet Kara -Date: Sun Jul 6 14:51:16 2014 +0000 - - Updated Turkish translation - - po/tr.po | 3580 +++++++++++++------------------------------------------------- - 1 file changed, 750 insertions(+), 2830 deletions(-) - -commit 5c8005ec5adb1b9432d3390e73de5213899502cb -Author: Yosef Or Boczko -Date: Sun Jul 6 17:04:26 2014 +0300 - - ephy-title-box: Fix a type - - src/ephy-title-box.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7eabfe44e9804717bfb6f0fa10e53f9c4d170e38 -Author: Yosef Or Boczko -Date: Sun Jul 6 10:10:35 2014 +0300 - - ephy-title-box: Fix a warning when closing window - - From some reason it look like the disconnect by sig_id - plot a warning here, since we can to disconnect by func - it better here. - - https://bugzilla.gnome.org/show_bug.cgi?id=732784 - - src/ephy-title-box.c | 12 +++++------- - 1 file changed, 5 insertions(+), 7 deletions(-) - -commit 005ce536fd94db9fca3906a358ca555a3e557771 -Author: Michael Catanzaro -Date: Sat Jul 5 21:10:25 2014 -0500 - - ephy-title-box: Fix crash when closing second window - - These binding could already have been destroyed. It might be safe to - simply remove the calls to g_clear_object, since they are not needed for - memory management, but then the bindings might not be unbound if a new - web view is set before the old one is destroyed. - - https://bugzilla.gnome.org/show_bug.cgi?id=732784 - - src/ephy-title-box.c | 48 +++++++++++++++++++++++++++++++++++++++++------- - 1 file changed, 41 insertions(+), 7 deletions(-) - -commit 6a387997eddf6f7851024bf50496409ef2e05361 -Author: Carlos Garcia Campos -Date: Fri Jul 4 12:49:32 2014 +0200 - - Revert "Fix the build with WebKit 2.5" - - This reverts commit d88f713fb1b23014adabe3733dcc724f2722417c. - - Unfortunately we can't use WebKitVersion.h from the web extensions API. - - embed/web-extension/ephy-web-overview.c | 6 ------ - src/ephy-window.c | 3 --- - 2 files changed, 9 deletions(-) - -commit 1758d1913bcd50170bf3986ad22eab20c5a103dc -Author: Carlos Garcia Campos -Date: Fri Jul 4 08:50:24 2014 +0200 - - ephy-about-handler: Use ephy settings to check if plugins are enabled - - Code is simpler and WebKitWebViewGroup will be removed soon - - embed/ephy-about-handler.c | 8 +++----- - 1 file changed, 3 insertions(+), 5 deletions(-) - -commit d88f713fb1b23014adabe3733dcc724f2722417c -Author: Carlos Garcia Campos -Date: Fri Jul 4 08:49:28 2014 +0200 - - Fix the build with WebKit 2.5 - - Update to the API changes in WebKit 2.5 - - embed/web-extension/ephy-web-overview.c | 6 ++++++ - src/ephy-window.c | 3 +++ - 2 files changed, 9 insertions(+) - -commit b8cc9f4b74a369129b4dc9f4207e1be766d2ab4b -Author: Daniel Mustieles -Date: Thu Jul 3 13:46:31 2014 +0200 - - Updated Spanish translation - - help/es/es.po | 460 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 452 insertions(+), 8 deletions(-) - -commit 477959e7326acd9d628fef7bb1903c501fc41291 -Author: Dimitris Spingos -Date: Mon Jun 23 09:21:29 2014 +0300 - - Updated Greek translation - - help/el/el.po | 453 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 446 insertions(+), 7 deletions(-) - -commit cc7cc7a619da7a7bc1a4b9a10be664824dee5777 -Author: Carlos Garcia Campos -Date: Wed May 21 12:45:37 2014 +0200 - - uri-tester: Use gio async API to parse the patterns file - - https://bugzilla.gnome.org/show_bug.cgi?id=730129 - - embed/uri-tester.c | 73 +++++++++++++++++++++++++++++++++++++++++------------- - 1 file changed, 56 insertions(+), 17 deletions(-) - -commit dff359de6fd101a8ce0dc07a99e90f8267eb1145 -Author: Carlos Garcia Campos -Date: Thu Jun 12 11:05:33 2014 +0200 - - Remove use of webkit_web_view_set_view_mode() - - Embedded view source mode has been removed from WebKit and the view mode - API has been removed from WebKitGTK+. - - src/window-commands.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit f3791ae5d11847d037222f1eff4604034b569d25 -Author: Robert Roth -Date: Wed Jun 11 16:56:21 2014 +0300 - - Set the history table sortable by any of the columns. - https://bugzilla.gnome.org/show_bug.cgi?id=699519 - - After the history service got support for ordering history results - by various columns, update the history dialog to allow sorting. - * override the column header clicked event to change the sorting - order and/or direction - * reload the data from the history service on column header clicks - - In case the history window contents are resorted, to avoid freezing - the user interface, do the following: - * register a source to process the url list received from the service - multiple urls at a time, (as many as possible before the next frame - drawing) by adding them to the model, and freeing the url - * in case the full list is loaded or another sort is requested, remove - the source, and free the remaining list - * as clearing the liststore while it is set to a treeview emits the - row deleted signal for each row, the liststore is set to null before - clearing, it is cleared, and then set again for the treeview - * as setting the model again resets the sort column and indicator - on the treeview, those attributes must be set again. - - src/ephy-history-window.c | 139 ++++++++++++++++++++++++++++++++++++---- - src/resources/history-dialog.ui | 10 ++- - 2 files changed, 135 insertions(+), 14 deletions(-) - -commit 464cbb124ccc278a1a462b2b190b7c7fc67cec8a -Author: Robert Roth -Date: Wed Jun 11 11:23:19 2014 +0300 - - Implemented sort by title and url in history service. https://bugzilla.gnome.org/show_bug.cgi?id=699519 - - Provided support in libepiphany to query the history ordered by - title or url, ascending or descending. - - lib/history/ephy-history-service-urls-table.c | 12 ++++++++++++ - lib/history/ephy-history-types.h | 6 +++++- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit 7c38eeaeed2c87d94689ef35a38ff1fa874b66fc -Author: Siyu Yang -Date: Thu May 29 00:55:06 2014 +0800 - - Document keyboard shortcuts - - Added a page to list the keyboard shortcuts, according to the code: - https://git.gnome.org/browse/epiphany/tree/src/ephy-window.c#n102 - - The added page is linked to the first section 'Getting started' of - the index page. - - Bugzilla link: https://bugzilla.gnome.org/show_bug.cgi?id=730503 - - help/C/keyboard-shortcut.page | 391 ++++++++++++++++++++++++++++++++++++++++++ - help/Makefile.am | 1 + - 2 files changed, 392 insertions(+) - -commit d6c9da33f96f4398871d7b1585a677822c18a78a -Author: Anders Jonsson -Date: Thu May 29 17:49:38 2014 +0000 - - Updated Swedish translation - - po/sv.po | 4191 +++++++++++++++++++++++++------------------------------------- - 1 file changed, 1702 insertions(+), 2489 deletions(-) - -commit 63bd650009e14e255a74eb1bea1c0cd54ab535d8 -Author: Bastien Nocera -Date: Wed May 21 21:56:57 2014 +0200 - - ephy-uri-helpers: Handle keys without a value - - Fixes a crash with a URI such as: - http://www.test.com/?some&valid&query - - https://bugzilla.gnome.org/show_bug.cgi?id=730464 - - lib/ephy-uri-helpers.c | 15 ++++++++++----- - tests/ephy-uri-helpers-test.c | 3 +++ - 2 files changed, 13 insertions(+), 5 deletions(-) - -commit aa861a7d947bc5b67caf2a5599801e61e1b9e5cc -Author: Bastien Nocera -Date: Wed May 21 13:48:20 2014 +0200 - - ephy-uri-helpers: Don't re-encode parameters ourselves - - Implement Dan Winship's approach to detecting unwanted parameters - by reusing the original key pair values (without decoding/encoding) - when they are wanted, and simply dropping them when not. - - See https://bugzilla.gnome.org/show_bug.cgi?id=724724#c14 - - https://bugzilla.gnome.org/show_bug.cgi?id=730464 - - lib/ephy-uri-helpers.c | 92 +++++++++++++++++++------------------------------- - 1 file changed, 34 insertions(+), 58 deletions(-) - -commit 2aa210c18a30574584605ce8b75eb2261804bf90 -Author: Marco Barisione -Date: Wed May 14 09:35:41 2014 +0100 - - uri-tester: don't pass strings around just to free them later - - https://bugzilla.gnome.org/show_bug.cgi?id=730129 - - embed/uri-tester.c | 58 +++++++++++++++++++++++++----------------------------- - 1 file changed, 27 insertions(+), 31 deletions(-) - -commit c7e6a8e3c1340c72fbf031df5d7f76ca70b14d63 -Author: Marco Barisione -Date: Wed May 14 08:42:39 2014 +0100 - - uri-tester: don't recompile the regexes every time they are used - - https://bugzilla.gnome.org/show_bug.cgi?id=730129 - - embed/uri-tester.c | 41 ++++++++++++++++++++++++++++++++--------- - 1 file changed, 32 insertions(+), 9 deletions(-) - -commit 9cf0065c4526bec2c111315e8ff5a2d930a685e8 -Author: Marco Barisione -Date: Wed May 14 08:25:27 2014 +0100 - - uri-tester: don't use regular expressions for trivial checks - - https://bugzilla.gnome.org/show_bug.cgi?id=730129 - - embed/uri-tester.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit ea6537f38237f4e5cfb424ec793c7f0aee4e6feb -Author: Carlos Garcia Campos -Date: Tue May 20 19:24:51 2014 +0200 - - ephy-uri-helpers: Dot no modify the URI when it doesn't have garbage - - We are currently decoding/encoding the uri query and returning it - unchanged when it doesn't have garbage. We should return NULL instead in - such case. - This fixes the session management issues in some sites like gmail, but - because the URLs processed don't actually have garbage. A URL with - garbage and an underscore will still fail. This patch adds a unit test - cover that particular case. - - https://bugzilla.gnome.org/show_bug.cgi?id=730464 - - lib/ephy-uri-helpers.c | 20 +++++++++++++------- - tests/ephy-uri-helpers-test.c | 4 ++++ - 2 files changed, 17 insertions(+), 7 deletions(-) - -commit 357d9296de6cebb6c07dbef05f8373b84fd98158 -Author: Enrico Nicoletto -Date: Thu May 15 19:21:59 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 268 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 134 insertions(+), 134 deletions(-) - -commit e0f0c5245b67981fa1e432f439b7730b10d126cf -Author: Claudio Saavedra -Date: Mon May 12 16:43:48 2014 +0300 - - [release] 3.12.1 - - NEWS | 10 ++++++++++ - configure.ac | 2 +- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 0c3938f33f0a9eae849425a1dd9876f44c98a229 -Author: Claudio Saavedra -Date: Mon May 12 15:38:40 2014 +0300 - - ephy-web-view: do not clear typed address on first load - - Previously, the first page loaded in a webview would be done with - before the user had any chance to type an address, so it was safe to - assume that any typed address could be cleared during page loads, - as they would always come from previously loaded pages. - - Now that the process of creating a webview is different and - involves spawning a web process that needs to be ready before - the initial page can be loaded, it might be possible for users - to type an address before this is ready. This breaks the previous - assumption and needs to be dealt with, in order to avoid - cleaning up typed text during the initial page load. - - Additionally, it makes sense to make set_address() a no-op if - the given address is the same as the currently loaded. - - https://bugzilla.gnome.org/show_bug.cgi?id=728143 - - embed/ephy-web-view.c | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -commit 404a6eed5146c550d893223232e051b24bb6e2fa -Author: Carles Ferrando -Date: Fri May 9 00:30:48 2014 +0200 - - [l10n] Updated Catalan (Valencian) translation - - po/ca@valencia.po | 1750 ++++++++++++++++++++++++++++------------------------- - 1 file changed, 937 insertions(+), 813 deletions(-) - -commit dba804f3e32bbc6c589d48d2387b6d540e38ffa2 -Author: Yosef Or Boczko -Date: Wed May 7 19:57:19 2014 +0300 - - Revert "ephy-title-box: Show correctly UTF-8 URL" - - This reverts commit 0eeb2c28ea751c6625e42177bf39b6ce0ae4abc7. - - src/ephy-title-box.c | 11 +++++------ - 1 file changed, 5 insertions(+), 6 deletions(-) - -commit 152aa65c7a425b65422ace813701fc3dfc275a82 -Author: Yosef Or Boczko -Date: Wed May 7 19:57:10 2014 +0300 - - Revert "nautilus-floating-bar: Show correctly UTF-8 URL" - - This reverts commit 2881a32296e04f0c6f721317d2c247da31926594. - - lib/widgets/nautilus-floating-bar.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a236fe62d9109cab0b000a5d242c0c2ef9c51ced -Author: Yosef Or Boczko -Date: Wed May 7 19:57:03 2014 +0300 - - Revert "Allow sorting by date, title or url in the history dialog." - - This reverts commit c3c38edbf82a4697078e658c3cda442ff5ac7229. - - lib/history/ephy-history-service-urls-table.c | 12 ----- - lib/history/ephy-history-types.h | 6 +-- - src/ephy-history-window.c | 68 +-------------------------- - src/resources/history-dialog.ui | 10 +--- - 4 files changed, 5 insertions(+), 91 deletions(-) - -commit 3cb7c78008502bafb3e07724fb95f79381ecef30 -Author: Yosef Or Boczko -Date: Wed May 7 19:56:54 2014 +0300 - - Revert "Fill the history window asynchronously when resorted." - - This reverts commit b3f380d41c779643216ac805f6e089cb97802ec6. - - src/ephy-history-window.c | 64 ++++++++--------------------------------------- - 1 file changed, 10 insertions(+), 54 deletions(-) - -commit 56e16902ca8070c5205542a9720347d9fa5a91cb -Author: Yosef Or Boczko -Date: Wed May 7 19:56:42 2014 +0300 - - Revert "ephy-window: Make F6 focus address entry" - - This reverts commit 8b8ad903d686d8e8f5bd31aedb47635778fc4864. - - src/ephy-window.c | 1 - - 1 file changed, 1 deletion(-) - -commit a3058d223a3d141caf275b330cd0998d7c646254 -Author: William Jon McCann -Date: Wed May 7 09:47:28 2014 -0400 - - Make location bar linked - - src/ephy-title-box.c | 1 + - 1 file changed, 1 insertion(+) - -commit 8b8ad903d686d8e8f5bd31aedb47635778fc4864 -Author: Yosef Or Boczko -Date: Sun Apr 27 20:47:53 2014 +0300 - - ephy-window: Make F6 focus address entry - - https://bugzilla.gnome.org/show_bug.cgi?id=729060 - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit b3f380d41c779643216ac805f6e089cb97802ec6 -Author: Robert Roth -Date: Fri Feb 28 16:49:42 2014 +0200 - - Fill the history window asynchronously when resorted. - - https://bugzilla.gnome.org/review?bug=699519 - - In case the history window contents are resorted, to avoid freezing - the user interface, do the following: - * register a source to process the url list received from the service - one url at a time, by adding it to the model, and freeing the url - * in case it is finished or another sort is done, remove the source, - and free the list it was processing - * as clearing the liststore while it is set to a treeview emits the - row deleted signal for each row, the liststore is set to null before - clearing, it is cleared, and then set again for the treeview - * as setting the model again resets the sort column and indicator - on the treeview, those attributes must be set again. - - src/ephy-history-window.c | 64 +++++++++++++++++++++++++++++++++++++++-------- - 1 file changed, 54 insertions(+), 10 deletions(-) - -commit c3c38edbf82a4697078e658c3cda442ff5ac7229 -Author: Robert Roth -Date: Wed Feb 19 15:34:38 2014 +0200 - - Allow sorting by date, title or url in the history dialog. - - https://bugzilla.gnome.org/show_bug.cgi?id=699519 - - Implemented by: - * adding the proper sorting enum values in the history service - * using the order by in query statements based on the enum values - * overriding the column header clicked event to change the sorting - order and/or direction - * reloading the data from the history service on column header clicks - - lib/history/ephy-history-service-urls-table.c | 12 +++++ - lib/history/ephy-history-types.h | 6 ++- - src/ephy-history-window.c | 68 ++++++++++++++++++++++++++- - src/resources/history-dialog.ui | 10 +++- - 4 files changed, 91 insertions(+), 5 deletions(-) - -commit 2881a32296e04f0c6f721317d2c247da31926594 -Author: Yosef Or Boczko -Date: Fri Feb 28 15:17:41 2014 +0200 - - nautilus-floating-bar: Show correctly UTF-8 URL - - https://bugzilla.gnome.org/show_bug.cgi?id=710004 - - lib/widgets/nautilus-floating-bar.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0eeb2c28ea751c6625e42177bf39b6ce0ae4abc7 -Author: Yosef Or Boczko -Date: Fri Feb 28 12:53:41 2014 +0200 - - ephy-title-box: Show correctly UTF-8 URL - - https://bugzilla.gnome.org/show_bug.cgi?id=710004 - - src/ephy-title-box.c | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit 92e22257a1156481705567eafef447cb766aa3e2 -Author: Dirgita -Date: Thu Apr 24 06:16:49 2014 +0000 - - Updated Indonesian translation - - po/id.po | 126 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 64 insertions(+), 62 deletions(-) - -commit 765621f627f7b311683d42a65f43b314aae392c2 -Author: Alexandre Franke -Date: Thu Apr 17 17:36:09 2014 +0200 - - Update French translation - - help/fr/figures/epiphany-3-12.png | Bin 0 -> 181989 bytes - help/fr/figures/private-browsing-3-12.png | Bin 0 -> 88082 bytes - help/fr/fr.po | 5 ++++- - 3 files changed, 4 insertions(+), 1 deletion(-) - -commit fb20c1edd72d99396157f1039a025545c1a30ce8 -Author: Daniel Mustieles -Date: Tue Apr 15 14:16:44 2014 +0200 - - Updated Spanish translation - - po/es.po | 267 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 133 insertions(+), 134 deletions(-) - -commit 13996e35ab795c367ada9256d021605dd03dec1c -Author: Daniel Mustieles -Date: Tue Apr 15 14:16:33 2014 +0200 - - Updated Spanish translation - - help/es/es.po | 62 +++-------------------------------------------------------- - 1 file changed, 3 insertions(+), 59 deletions(-) - -commit 0c050be0a1cd2196c85967be390bfa751d64457a -Author: Bastien Nocera -Date: Mon Apr 14 13:51:10 2014 +0200 - - embed: Fix crash with some password forms - - 31bc1fe6 transformed a simple escape hatch of a comparison into an - assertion. But that assertion keeps getting triggered, so it's clearly - the wrong option for now. - - https://bugzilla.gnome.org/show_bug.cgi?id=723909 - - embed/ephy-web-view.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 283c09ddae2288ddf52bb4ef0c5eaf8314c92727 -Author: Bastien Nocera -Date: Sat Mar 22 15:51:10 2014 +0100 - - embed: Add debug when a web page is blocked - - Should help with fixing bugs in an overzealous AdBlock. - - https://bugzilla.gnome.org/show_bug.cgi?id=726883 - - embed/web-extension/ephy-web-extension.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -commit acf689ffff506cd9d22fc68f4a585f6a8557a32a -Author: maria thukididu -Date: Fri Apr 4 15:11:06 2014 +0300 - - Updated Greek translation - - help/el/el.po | 733 ++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 454 insertions(+), 279 deletions(-) - -commit 81e250648a453249fc34ec4c3acfb07b80f34ef0 -Author: Matej Urbančič -Date: Thu Apr 3 20:07:53 2014 +0200 - - Updated Slovenian translation - - po/sl.po | 45 +++++++++++++++++++-------------------------- - 1 file changed, 19 insertions(+), 26 deletions(-) - -commit a945d01c7ed0474d321076ef476ebab2e12f8a65 -Author: Pau Iranzo -Date: Tue Apr 1 00:13:50 2014 +0200 - - [l10n] Update Catalan translation - - po/ca.po | 1749 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 937 insertions(+), 812 deletions(-) - -commit c0d4819cc5af0db0da5ba12aff57e29a78f16160 -Author: Matej Urbančič -Date: Mon Mar 31 22:30:19 2014 +0200 - - Updated Slovenian translation - - po/sl.po | 45 +++++++++++++++++++++------------------------ - 1 file changed, 21 insertions(+), 24 deletions(-) - -commit 9095d5f8c74985ef56a66531fef5b838a06d80c8 -Author: Matej Urbančič -Date: Mon Mar 31 22:23:54 2014 +0200 - - Updated Slovenian translation - - po/sl.po | 901 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 401 insertions(+), 500 deletions(-) - -commit d424b4b141513b6c46fabe475a190e810751fdf0 -Author: Carlos Garcia Campos -Date: Mon Mar 31 14:49:49 2014 +0200 - - totem-glow-button: Do not add the custom CSS provider for every instance - - Since we are adding a global CSS for the default screen, we don't need - to load and add the CSS for every instance we create. - - lib/widgets/totem-glow-button.c | 22 ++++++++++++++-------- - 1 file changed, 14 insertions(+), 8 deletions(-) - -commit 0af46320de37ef74102a891ab4b4874e7c9e37e6 -Author: Carlos Garcia Campos -Date: Mon Mar 31 14:45:23 2014 +0200 - - totem-glow-button: Fix memory leak - - GtkStyleContext takes a reference of the GtkCssProvider, so release - ours when no longer needed. - - lib/widgets/totem-glow-button.c | 1 + - 1 file changed, 1 insertion(+) - -commit 3b425285ffd6f331c93458bbf6236c474f3e1f4d -Author: Thomas Perl -Date: Mon Mar 31 14:37:23 2014 +0200 - - location-entry: Make CTRL+l work when the completion menu is shown - - When the completion popup menu is shown, it has an active keyboard grab - that prevents the key events from being handled by the window. Handle - the CTRL+l shortcut in the location entry to activate the entry when the - completion popup menu is visible. - - https://bugzilla.gnome.org/show_bug.cgi?id=611435 - - lib/widgets/ephy-location-entry.c | 13 +++++++++++-- - 1 file changed, 11 insertions(+), 2 deletions(-) - -commit 954b1ab6766a3f50172feb6abd0eecce4f6af4f4 -Author: Piotr Drąg -Date: Sun Mar 30 19:10:01 2014 +0200 - - doap: update URLs - - epiphany.doap | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 6fd9b597de083b0028776f8b886097eed2e5abf9 -Author: Yosef Or Boczko -Date: Fri Mar 28 16:27:16 2014 +0300 - - Updated Hebrew translation - - po/he.po | 248 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 124 insertions(+), 124 deletions(-) - -commit 8a9034ec8104c25f2a69a47c0a7376cbbdf292df -Author: maria thukididu -Date: Fri Mar 28 09:46:24 2014 +0200 - - Updated Greek translation - - po/el.po | 1160 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 566 insertions(+), 594 deletions(-) - -commit a4f46cb2fb3eae5aab2825c530ea66974d0d51fd -Author: Claudio Saavedra -Date: Tue Mar 25 11:44:17 2014 +0200 - - [release] 3.12.0 - - NEWS | 19 +++++++++++++++++++ - configure.ac | 4 ++-- - 2 files changed, 21 insertions(+), 2 deletions(-) - -commit 48e78d20f0b246d08c7a8ae5a3055eb7bddac843 -Author: Claudio Saavedra -Date: Tue Mar 25 11:43:54 2014 +0200 - - configure.ac: bump WebKitGTK+ version requirement - - There are important bug fixes in wkgtk 2.4.0, so bump to it. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit cc61b9e6ec092a33ce37287e2cbd342f80acb1e0 -Author: Gábor Kelemen -Date: Mon Mar 24 20:51:01 2014 +0000 - - Updated Hungarian translation - - help/hu/hu.po | 48 ++++++++++++++++++++++-------------------------- - 1 file changed, 22 insertions(+), 26 deletions(-) - -commit 0202c4de1e2c418d35c60a4d6f6ff19c89813482 -Author: Daniel Korostil -Date: Sun Mar 23 13:47:57 2014 +0200 - - Typos fix for uk - - po/uk.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit d4da790c6ef02329a51adb9472efb35ab96a37f3 -Author: Christian Kirbach -Date: Sat Mar 22 18:48:49 2014 +0000 - - Updated German translation - - po/de.po | 1774 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 866 insertions(+), 908 deletions(-) - -commit 13b9a92422b4bb87c64737ce3b55433bc9812588 -Author: Christian Kirbach -Date: Sat Mar 22 18:47:24 2014 +0000 - - Updated German translation - - help/de/de.po | 540 +++++++++++++++++++++++++++++++++++++++------------------- - 1 file changed, 366 insertions(+), 174 deletions(-) - -commit 98e40fce4bac864271eaec11331d6983a32e79f1 -Author: Matej Urbančič -Date: Sat Mar 22 18:51:24 2014 +0100 - - Updated Slovenian translation - - po/sl.po | 37 ++++++++++++------------------------- - 1 file changed, 12 insertions(+), 25 deletions(-) - -commit 2aed0b5a041820188e222d541d81f0290e37bee7 -Author: Inaki Larranaga Murgoitio -Date: Sat Mar 22 16:56:14 2014 +0100 - - Updated Basque language - - po/eu.po | 1774 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 933 insertions(+), 841 deletions(-) - -commit 08f36edfc1da488c0cba76cfae7a6346df176eee -Author: Attila Hammer -Date: Sat Mar 22 02:02:42 2014 +0000 - - Updated Hungarian translation - - help/hu/hu.po | 547 ++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 324 insertions(+), 223 deletions(-) - -commit e9b8c58de58ae09aa9c7d70f719f3b7ce247ac5e -Author: Kenneth Nielsen -Date: Thu Mar 20 21:24:43 2014 +0100 - - Updated Danish translation - - po/da.po | 1789 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 937 insertions(+), 852 deletions(-) - -commit f7c0c0e36c853c3ee3323296dfddb22ac4741cf1 -Author: ChangSeok Oh -Date: Fri Mar 21 01:15:01 2014 +0900 - - Updated Korean translation - - po/ko.po | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit 06a33ad50f1c9c2cbb657341454ccd0d2fbb1ca8 -Author: Duarte Loreto -Date: Wed Mar 19 23:36:40 2014 +0000 - - Updated Portuguese translation - - po/pt.po | 1760 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 936 insertions(+), 824 deletions(-) - -commit 5694d817e3d831aed7474d3411d211880d6aae44 -Author: Carlos Garcia Campos -Date: Wed Mar 19 20:15:16 2014 +0100 - - Switch to one process per web view model by default - - data/org.gnome.epiphany.gschema.xml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit acec1b8deddea89bfe5f9d8e3c502c20fa8fcbd0 -Author: ChangSeok Oh -Date: Thu Mar 20 04:04:43 2014 +0900 - - Updated Korean translation - - po/ko.po | 1641 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 843 insertions(+), 798 deletions(-) - -commit a92506075d4bf1b24e6695e2e222b38825159c7a -Author: Lorenzo Tilve -Date: Wed Mar 19 11:29:39 2014 +0100 - - overview: Center vertically the thumbnails grid - - Adjust the CSS styles of the overview to place the thumbnails grid - centered vertically on the browser window. - - https://bugzilla.gnome.org/show_bug.cgi?id=726701 - - src/resources/overview.html | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit 86877436a55d53af54d324cf75aff20dec3a30b2 -Author: Gianvito Cavasoli -Date: Wed Mar 19 07:37:15 2014 +0000 - - Updated Italian translation - - po/it.po | 1593 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 785 insertions(+), 808 deletions(-) - -commit e3f2d9d8646a5c1cbff63e6d3eb81e2b4cee260f -Author: Claudio Saavedra -Date: Tue Mar 18 16:15:56 2014 +0200 - - [release] 3.11.92 - - NEWS | 11 +++++++++++ - configure.ac | 2 +- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit eab819ee9fef82f28aaec507882645340a00abd5 -Author: Alexandre Franke -Date: Mon Mar 17 12:22:59 2014 +0100 - - Add French translation of help - - help/Makefile.am | 2 +- - help/fr/fr.po | 1534 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 1535 insertions(+), 1 deletion(-) - -commit 64877a204a726f8847d9ca97f3f2732fc36ed7b5 -Author: Ville-Pekka Vainio -Date: Sun Mar 16 20:32:26 2014 +0200 - - Finnish translation update by Jiri Grönroos - - po/fi.po | 1391 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 744 insertions(+), 647 deletions(-) - -commit 70a73a4b862d53012bbb14bf011b6400624424b0 -Author: Мирослав Николић -Date: Sun Mar 16 14:40:33 2014 +0100 - - Updated Serbian translation - - po/sr.po | 1710 +++++++++++++++++++++++++++++--------------------------- - po/sr@latin.po | 1708 ++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1755 insertions(+), 1663 deletions(-) - -commit 1d2856d7a7141a40f417bfd47f75569a2cfc4e10 -Author: naybnet -Date: Sun Mar 16 11:39:56 2014 +0000 - - Updated French translation - - po/fr.po | 390 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 199 insertions(+), 191 deletions(-) - -commit 2ad3111d6848e5cba901c72b669127c2d8cc0a41 -Author: Daniel Korostil -Date: Sat Mar 15 22:35:09 2014 +0200 - - Updated Ukrainian translation - - po/uk.po | 397 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 198 insertions(+), 199 deletions(-) - -commit 64cb0dd095c04ec55f710fcd183558677849ba9c -Author: Carlos Garcia Campos -Date: Tue Mar 11 15:49:19 2014 +0100 - - ephy-snapshot-service: Port to GTask - - https://bugzilla.gnome.org/show_bug.cgi?id=725815 - - lib/ephy-snapshot-service.c | 686 ++++++++++++++++++++++---------------------- - 1 file changed, 336 insertions(+), 350 deletions(-) - -commit 5bcaf829531b585ff0683b1d23ad26b04fe0ca07 -Author: Daniel Mustieles -Date: Wed Mar 12 13:56:27 2014 +0100 - - Updated Spanish translation - - help/es/es.po | 653 ++++++++++++++++++++++++++++++++++++++++++---------------- - 1 file changed, 470 insertions(+), 183 deletions(-) - -commit 6d3a429da9f546e6c339b60d2e280571f3e3a3fe -Author: Marek Černocký -Date: Tue Mar 11 20:58:35 2014 +0100 - - Updated Czech translation - - help/cs/cs.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 4c304cfd7bb15f27d5c7f8108abcf1b604fbce20 -Author: Gábor Kelemen -Date: Tue Mar 11 03:27:22 2014 +0000 - - Updated Hungarian translation - - po/hu.po | 1758 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 940 insertions(+), 818 deletions(-) - -commit 85e61fee089c821d04bde97a961a1a6021fcbb5a -Author: Paweł Żołnowski -Date: Mon Mar 10 15:55:40 2014 +0100 - - Updated Polish translation - - po/pl.po | 1546 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 726 insertions(+), 820 deletions(-) - -commit 25d6326464c76e475c24575240cb2c04243b4618 -Author: Piotr Drąg -Date: Mon Mar 10 14:53:15 2014 +0100 - - Fix tags in Greek help translation - - help/el/el.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit e56724748bc808ed334ee2fde649d552cb198a5c -Author: Yuri Myasoedov -Date: Mon Mar 10 14:53:15 2014 +0400 - - Updated Russian translation - - po/ru.po | 2075 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 1206 insertions(+), 869 deletions(-) - -commit a63336d0b47597f7cac885e30940abfa426d7827 -Author: Carlos Garcia Campos -Date: Mon Mar 10 11:37:17 2014 +0100 - - shell: Fix a crash when opening a new window using the app menu - - Activate the location entry of the newly created window, instead of the - current one that might be NULL. - - https://bugzilla.gnome.org/show_bug.cgi?id=725953 - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 744d022bb450eb65624538dab231decd99490f6e -Author: Carlos Garcia Campos -Date: Tue Mar 4 12:43:13 2014 +0100 - - Add title parameter to ephy_shell_new_tab_full to create tabs with an initial title - - And use it from ephy-session so that when loading the session and not - using delayed requests, you don't see all the tabs initially with "Blank - Page" title. - - https://bugzilla.gnome.org/show_bug.cgi?id=725649 - - embed/ephy-embed.c | 8 ++++++-- - src/ephy-session.c | 15 ++++++++++----- - src/ephy-shell.c | 10 +++++++--- - src/ephy-shell.h | 1 + - src/ephy-window.c | 3 ++- - tests/ephy-shell-test.c | 2 ++ - 6 files changed, 28 insertions(+), 11 deletions(-) - -commit 0d89197cd0d1516d3003eb3e8c6d9ac0118c5712 -Author: Carlos Garcia Campos -Date: Tue Mar 4 12:30:01 2014 +0100 - - ephy-web-view: Move embed-title property to EphyEmbed - - Since it's the embed title what it represents. The web view already has - a title property inherited from WebKitWebView. - - https://bugzilla.gnome.org/show_bug.cgi?id=725649 - - embed/ephy-embed.c | 75 ++++++++++++++++++++++++++++++++++++++- - embed/ephy-embed.h | 1 + - embed/ephy-web-view.c | 79 ++++-------------------------------------- - embed/ephy-web-view.h | 1 - - src/ephy-location-controller.c | 2 +- - src/ephy-notebook.c | 14 +++----- - src/ephy-session.c | 2 +- - src/ephy-window.c | 10 +++--- - src/window-commands.c | 16 ++++----- - 9 files changed, 101 insertions(+), 99 deletions(-) - -commit 0c6c6bcef6d6f0bbd0f20659ea9bec94a59cc658 -Author: Carlos Garcia Campos -Date: Tue Mar 4 11:50:13 2014 +0100 - - ephy-web-view: Move get_title_from_address to ephy-embed-utils - - https://bugzilla.gnome.org/show_bug.cgi?id=725649 - - embed/ephy-embed-utils.c | 13 +++++++++++++ - embed/ephy-embed-utils.h | 1 + - embed/ephy-web-view.c | 18 +++--------------- - 3 files changed, 17 insertions(+), 15 deletions(-) - -commit 97a9202c79f1295397b1c28e4ffbb8d670b1a966 -Author: Carlos Garcia Campos -Date: Tue Mar 4 11:07:44 2014 +0100 - - ephy-web-view: Remove status_message member - - The status message is actually a combination of the loading message and - link message, and both are already members. - - https://bugzilla.gnome.org/show_bug.cgi?id=725649 - - embed/ephy-web-view.c | 24 +++++++++--------------- - 1 file changed, 9 insertions(+), 15 deletions(-) - -commit 1e38e858a809585a62b0a6d116719314d4c68e7a -Author: Carlos Garcia Campos -Date: Tue Mar 4 11:02:30 2014 +0100 - - ephy-web-view: Rename set_loading_title as set_loading_message - - This is no longer used to set a loading title, since it's always called - with a URL or NULL. Also make it static since it's only used by - ephy-web-view.c. Remove the public getter since it's unused too. - - https://bugzilla.gnome.org/show_bug.cgi?id=725649 - - embed/ephy-embed-private.h | 3 -- - embed/ephy-web-view.c | 89 ++++++++++++++++++---------------------------- - embed/ephy-web-view.h | 1 - - 3 files changed, 35 insertions(+), 58 deletions(-) - -commit 97bc1360c944234fa336e7fa36f792e52f3f49c4 -Author: Carlos Garcia Campos -Date: Tue Mar 4 10:23:14 2014 +0100 - - ephy-web-view: Remove ephy_web_view_get_title_composite() - - This is currently only used to set the window title and it's not - actually needed, since we don't show Loading string in title anymore, - only in the status bar. This is consistent with the title box and tabs - title. - - https://bugzilla.gnome.org/show_bug.cgi?id=725649 - - embed/ephy-web-view.c | 35 ----------------------------------- - embed/ephy-web-view.h | 1 - - src/ephy-window.c | 2 +- - 3 files changed, 1 insertion(+), 37 deletions(-) - -commit 7a5a37813e34864a991054a7712e65e15ba9cd99 -Author: Chao-Hsiung Liao -Date: Sun Mar 9 11:33:08 2014 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 349 ++++++++++++++++++++++++++++++------------------------------ - po/zh_TW.po | 349 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 354 insertions(+), 344 deletions(-) - -commit 97ad43d4ac871ad2940bfdb5b77d17937e56701b -Author: Sphinx Jiang -Date: Sat Mar 8 15:21:51 2014 +0000 - - Updated Chinese (China) translation - - po/zh_CN.po | 968 +++++++++++++++++++++++++++++------------------------------- - 1 file changed, 467 insertions(+), 501 deletions(-) - -commit 323ed6554b180f2df701f34eb0220ad2dd8919d6 -Author: Rūdolfs Mazurs -Date: Sat Mar 8 12:50:54 2014 +0200 - - Updated Latvian translation - - po/lv.po | 1877 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1021 insertions(+), 856 deletions(-) - -commit d7d2045ce074d46d1c44890b096b6d2c75f2ee18 -Author: Andika Triwidada -Date: Fri Mar 7 06:50:43 2014 +0000 - - Updated Indonesian translation - - po/id.po | 352 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 178 insertions(+), 174 deletions(-) - -commit 44bbefce039009c10a4935636bda7d059a97bf4b -Author: Christian Kirbach -Date: Thu Mar 6 23:22:26 2014 +0100 - - Updated German help screenshots - - help/de/de.po | 10 +++++----- - help/de/figures/epiphany-3-8.png | Bin 0 -> 196098 bytes - help/de/figures/private-browsing-3-8.png | Bin 0 -> 192259 bytes - 3 files changed, 5 insertions(+), 5 deletions(-) - -commit 285916fabe13ff8e4b74701e5efde46831877fc1 -Author: Claudio Saavedra -Date: Thu Mar 6 14:42:55 2014 +0200 - - ephy-window: move event state and button checks earlier - - Micro-optimization - - https://bugzilla.gnome.org/show_bug.cgi?id=725818 - - src/ephy-window.c | 19 ++++++------------- - 1 file changed, 6 insertions(+), 13 deletions(-) - -commit 6ed9eb95e7d3c1d290bc37e9860aedd5409ceb47 -Author: Claudio Saavedra -Date: Thu Mar 6 14:38:22 2014 +0200 - - Remove redundant comparison - - https://bugzilla.gnome.org/show_bug.cgi?id=725818 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b70985ca461f7bdde0d56fae456d8f16f6a599a8 -Author: Claudio Saavedra -Date: Thu Mar 6 14:35:49 2014 +0200 - - ephy-window: fix shift+click - - The check for the clicked address was inverted so this was not working - at all. - - https://bugzilla.gnome.org/show_bug.cgi?id=725818 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a861848b662d0b0becc9719170b87663fdfabf23 -Author: Lorenzo Tilve -Date: Wed Mar 5 15:25:11 2014 +0100 - - overview: remove unnecessary bottom padding - - Remove the extra bottom padding from the overview grid which - was creating an artificial scroll to an empty area. - - https://bugzilla.gnome.org/show_bug.cgi?id=725190 - - src/resources/overview.html | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit fb84c779f81a02d77426881de6285ee6fb03d732 -Author: Claudio Saavedra -Date: Thu Mar 6 10:11:33 2014 +0200 - - ephy-snapshot-service: disconnect from "load-failed" signal - - Otherwise we have a dangling handler with webviews that are - unrelated to the async result at hand. - - https://bugzilla.gnome.org/show_bug.cgi?id=725749 - - lib/ephy-snapshot-service.c | 1 + - 1 file changed, 1 insertion(+) - -commit b9cac9f5d042e2fedaf6a788b59e07dac444ab12 -Author: Ekaterina Gerasimova -Date: Wed Mar 5 21:19:38 2014 +0000 - - Fix really bad typo in help - - help/C/index.page | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 67ed0146496fd1afacd2657bfb40fcdb1588e6cd -Author: Ekaterina Gerasimova -Date: Wed Mar 5 20:46:26 2014 +0000 - - Use larger icon for help - - help/C/media/web-browser-icon | 1 + - help/C/media/web-browser.png | Bin 1724 -> 4992 bytes - 2 files changed, 1 insertion(+) - -commit 02a90f2a0b2acd3eb66807a664b14d661904221a -Author: Lorenzo Tilve -Date: Sun Feb 23 10:10:28 2014 +0100 - - overview: fix issues on the layout CSS - - - fix regresion that broke CSS animation when removing items - - avoid user agent ul padding to affect grid centering - - https://bugzilla.gnome.org/show_bug.cgi?id=724652 - - embed/ephy-embed-shell.c | 2 +- - src/resources/overview.html | 20 +++++++++++++++----- - 2 files changed, 16 insertions(+), 6 deletions(-) - -commit 1996091988666237c2912c376db73844b8ce9d8a -Author: Kjartan Maraas -Date: Wed Mar 5 07:12:12 2014 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 219 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 110 insertions(+), 109 deletions(-) - -commit 777fdffe125b8f77382c08624a4a45b829fcda42 -Author: Fran Diéguez -Date: Mon Mar 3 21:38:07 2014 +0100 - - Updated Galician translations - - po/gl.po | 615 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 304 insertions(+), 311 deletions(-) - -commit 841889b05e4f2591968d7f2700a95b2242ad4eb2 -Author: Claudio Saavedra -Date: Mon Mar 3 18:19:20 2014 +0200 - - [release] 3.11.91 - - NEWS | 12 ++++++++++++ - configure.ac | 2 +- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit ec156f7addace7bbbc06cc0ac1d1dfe6ad87cf7b -Author: Claudio Saavedra -Date: Mon Mar 3 18:17:13 2014 +0200 - - src/Makefile.am: sort the resource files - - src/Makefile.am | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - -commit 3ded362e39b49df618454302d6546ba2acf42a3a -Author: Claudio Saavedra -Date: Mon Mar 3 18:16:16 2014 +0200 - - src: add missing resource file to Makefile.am - - src/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit f4a4db083cd221f2d4f6db588f496f5accd0b39d -Author: Carlos Garcia Campos -Date: Mon Mar 3 15:21:40 2014 +0100 - - Fix the build with new WebKit - - New WebKit aborts the compilation if webkit2.h and - webkit-web-extension.h headers are included together. We are including - the ephy-web-extension.h header from the UI process only to get the - names of the dbus service, interface and path, so move those defines to - its own file that can be included by both UI and web process files. - - embed/ephy-embed-shell.c | 2 +- - embed/ephy-web-extension-proxy.c | 2 +- - embed/web-extension/Makefile.am | 1 + - embed/web-extension/ephy-web-extension-main.c | 1 + - embed/web-extension/ephy-web-extension-names.h | 30 ++++++++++++++++++++++++++ - embed/web-extension/ephy-web-extension.c | 3 ++- - embed/web-extension/ephy-web-extension.h | 6 +----- - 7 files changed, 37 insertions(+), 8 deletions(-) - -commit 0433ac9dafd91664134ae1c300c6841e86a58d91 -Author: Carlos Garcia Campos -Date: Tue Feb 25 18:50:38 2014 +0100 - - overview: Remove the overview model from the UI process - - Now we query the history and snapshot services directly and the model is - used only in the web process. This fixes a race condition when the - overview page is created before the history query has completed leaving - an empty overview. - - https://bugzilla.gnome.org/show_bug.cgi?id=725393 - - embed/ephy-about-handler.c | 125 ++++--- - embed/ephy-about-handler.h | 1 + - embed/ephy-embed-private.h | 3 - - embed/ephy-embed-shell.c | 99 +++--- - embed/ephy-embed-shell.h | 6 +- - embed/ephy-web-view.c | 131 ++++---- - embed/web-extension/ephy-web-overview.c | 35 +- - lib/ephy-snapshot-service.c | 123 +++---- - lib/ephy-snapshot-service.h | 3 - - lib/widgets/Makefile.am | 4 - - lib/widgets/ephy-frecent-store.c | 431 ------------------------ - lib/widgets/ephy-frecent-store.h | 67 ---- - lib/widgets/ephy-overview-store.c | 566 -------------------------------- - lib/widgets/ephy-overview-store.h | 101 ------ - 14 files changed, 292 insertions(+), 1403 deletions(-) - -commit 85303f08a4f623ce5e4eb26050eb295742cce949 -Author: Carlos Garcia Campos -Date: Fri Feb 28 18:27:34 2014 +0100 - - history-service: Also return the thumbnail time by ephy_history_service_query_urls - - https://bugzilla.gnome.org/show_bug.cgi?id=725393 - - lib/history/ephy-history-service-urls-table.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 7553dcfb5b51673ddf0cf2392713fee5793affd9 -Author: Carlos Garcia Campos -Date: Fri Feb 28 12:18:59 2014 +0100 - - snapshot-service: Add methods to get the snapshot path - - This is useful for the new overview that doesn't need the actual - snapshot, but the path of the snapshot when it has been saved in the - cache. - - https://bugzilla.gnome.org/show_bug.cgi?id=725393 - - lib/ephy-snapshot-service.c | 161 ++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-snapshot-service.h | 19 ++++++ - 2 files changed, 180 insertions(+) - -commit 80ba0ff169d472888389589b143407d56898ea62 -Author: Carlos Garcia Campos -Date: Fri Feb 28 12:17:49 2014 +0100 - - snapshot-service: Update snapshots after one week - - https://bugzilla.gnome.org/show_bug.cgi?id=725393 - - lib/ephy-snapshot-service.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit d6a7f9e214a3e60931367bdcbc010bdb546f41f1 -Author: Carlos Garcia Campos -Date: Fri Feb 28 12:16:09 2014 +0100 - - snapshot-service: Add a memory cache of snapshots paths saved - - And add a method to query that cache. - - https://bugzilla.gnome.org/show_bug.cgi?id=725393 - - lib/ephy-snapshot-service.c | 17 ++++++++++++++++- - lib/ephy-snapshot-service.h | 3 +++ - 2 files changed, 19 insertions(+), 1 deletion(-) - -commit 41e3883b646f0ffed6ca0992123d1db68641b592 -Author: Carlos Garcia Campos -Date: Mon Mar 3 14:58:38 2014 +0100 - - Revert "embed-utils: Invert the logic of condition in ephy_embed_utils_address_has_web_scheme" - - This reverts commit 8f441f2aa17bb2597753a44bb6d20cba24f71308. - - embed/ephy-embed-utils.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit bbfc8866769bc04c36f9476d7c63ec5b5fca84d6 -Author: Carlos Garcia Campos -Date: Mon Feb 24 18:49:07 2014 +0100 - - embed-utils: Move ephy_web_view_normalize_or_autosearch_url to embed-utils - - And use it only for actually typed (or pasted) text. - - https://bugzilla.gnome.org/show_bug.cgi?id=725081 - - embed/ephy-embed-private.h | 3 -- - embed/ephy-embed-utils.c | 26 +++++++++++++ - embed/ephy-embed-utils.h | 1 + - embed/ephy-web-view.c | 87 ++---------------------------------------- - src/ephy-location-controller.c | 31 +++++++++++++-- - src/ephy-notebook.c | 6 ++- - tests/ephy-web-view-test.c | 3 +- - 7 files changed, 65 insertions(+), 92 deletions(-) - -commit c253296e67177277be9174912d6ca8cfe2be223a -Author: Carlos Garcia Campos -Date: Mon Feb 24 18:44:59 2014 +0100 - - embed-utils: do not try to prepend http:// to normalize a URL if it already has a web scheme - - https://bugzilla.gnome.org/show_bug.cgi?id=725081 - - embed/ephy-embed-utils.c | 56 +++++++++++++++++++++--------------------------- - 1 file changed, 24 insertions(+), 32 deletions(-) - -commit 2de9626b1506a2cfa9a2567e733f432805c4b2c4 -Author: Carlos Garcia Campos -Date: Mon Feb 24 15:15:33 2014 +0100 - - embed-utils: Add ephy_embed_utils_address_is_valid - - Helper method used to check if a url is valid to decide whether to load - it or perform a search. It's mostly the same expression used by - EphyWebView, but moved to a helper function. The regular expressions used - in that expression are also moved to embed-utils and they are only - compiled once instead of everytime a web view is created. - - https://bugzilla.gnome.org/show_bug.cgi?id=725081 - - embed/ephy-embed-shell.c | 2 ++ - embed/ephy-embed-utils.c | 91 ++++++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed-utils.h | 2 ++ - embed/ephy-web-view.c | 58 +----------------------------- - 4 files changed, 96 insertions(+), 57 deletions(-) - -commit 8f441f2aa17bb2597753a44bb6d20cba24f71308 -Author: Carlos Garcia Campos -Date: Mon Feb 24 14:08:03 2014 +0100 - - embed-utils: Invert the logic of condition in ephy_embed_utils_address_has_web_scheme - - So that we don't need to do all the string comparisons always. - - https://bugzilla.gnome.org/show_bug.cgi?id=725081 - - embed/ephy-embed-utils.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit 49e09e366b4bad8df2ca0e2368f5e1ad82f45ac4 -Author: Carlos Garcia Campos -Date: Thu Feb 13 15:10:03 2014 +0100 - - Remove flag EPHY_NEW_TAB_PRESENT_WINDOW - - It's simpler to call gtk_window_present by the callers. - - src/ephy-session.c | 13 +++++++------ - src/ephy-shell.c | 9 ++++----- - src/ephy-shell.h | 10 ++++------ - 3 files changed, 15 insertions(+), 17 deletions(-) - -commit 0b9fdf677e37eb508e119bf236ad86aa6e0daf8b -Author: Carlos Garcia Campos -Date: Thu Feb 13 12:59:00 2014 +0100 - - Decouple the page load from the tab creation - - The flags used to decide whether to load the page and how are confusing, - because they are mutually exclusive, which adds more complexity to - ephy_shell_new_tab. Also, ephy_shell_new_tab doesn't always create a new - tab, depending on the parameters and flags, it might reuse an existing - empty tab. All this is easier to handle from the callers if we make - ephy_shell_new_tab always create a new tab that is returned and callers - can decide what to load in the new tab. - - src/bookmarks/ephy-bookmarks-editor.c | 56 ++++++------ - src/ephy-history-window.c | 15 ++-- - src/ephy-navigation-history-action.c | 3 - - src/ephy-session.c | 47 ++++++----- - src/ephy-shell.c | 155 +++++++++++----------------------- - src/ephy-shell.h | 31 ++----- - src/ephy-window.c | 44 ++++++---- - src/popup-commands.c | 32 ++++--- - src/window-commands.c | 10 ++- - tests/ephy-shell-test.c | 26 +++--- - 10 files changed, 181 insertions(+), 238 deletions(-) - -commit b50c6f43e32ba736a4160f18ee50027917170e53 -Author: Carlos Garcia Campos -Date: Wed Feb 12 13:52:30 2014 +0100 - - Remove unused flag EPHY_NEW_TAB_FULLSCREEN_MODE - - src/ephy-shell.c | 4 ---- - src/ephy-shell.h | 13 ++++++------- - src/window-commands.c | 2 +- - 3 files changed, 7 insertions(+), 12 deletions(-) - -commit 722721e1740fae0736d6b3af834c736f3e3a5d5b -Author: Carlos Garcia Campos -Date: Wed Feb 12 13:46:21 2014 +0100 - - Remove the open new/in existing window flags and always create the new tab in the given window - - src/bookmarks/ephy-bookmarks-editor.c | 11 +++---- - src/ephy-history-window.c | 6 ++-- - src/ephy-navigation-history-action.c | 6 ++-- - src/ephy-session.c | 16 +++++----- - src/ephy-shell.c | 39 ++++++++---------------- - src/ephy-shell.h | 9 +----- - src/ephy-window.c | 30 ++++++++---------- - src/popup-commands.c | 9 +++--- - src/window-commands.c | 7 +++-- - tests/ephy-shell-test.c | 57 +++++++++++++++-------------------- - 10 files changed, 75 insertions(+), 115 deletions(-) - -commit 76ac0b28bc4bcb513bf1da6e921ba5a606225c45 -Author: Carlos Garcia Campos -Date: Wed Feb 12 12:40:32 2014 +0100 - - Disable actions that open new windows - - src/bookmarks/ephy-bookmarks-editor.c | 5 ++++- - src/ephy-lockdown.c | 8 ++++++-- - src/ephy-shell.c | 9 ++++----- - src/ephy-window.c | 8 ++++++-- - 4 files changed, 20 insertions(+), 10 deletions(-) - -commit a2d6046ba38fc57766046fbb3dd32f0f1b8ddecc -Author: Stas Solovey -Date: Fri Feb 28 20:51:25 2014 +0400 - - Added Russian help translation - - help/Makefile.am | 2 +- - help/ru/ru.po | 1345 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 1346 insertions(+), 1 deletion(-) - -commit f3f29ee905b423fc23ad0410d427040cf9dad012 -Author: Carlos Garcia Campos -Date: Thu Feb 13 15:22:55 2014 +0100 - - embed: Remove ephy_embed_prefs_init/shutdown methods - - Create the WebKitWebViewGroup object on demand when the first web view - is created. - - embed/ephy-embed-prefs.c | 15 +++++++-------- - embed/ephy-embed-prefs.h | 2 -- - embed/ephy-embed-shell.c | 4 +--- - tests/ephy-completion-model-test.c | 1 - - tests/ephy-download-test.c | 1 - - tests/ephy-encodings-test.c | 1 - - tests/ephy-migration-test.c | 1 - - tests/ephy-session-test.c | 1 - - tests/ephy-shell-test.c | 1 - - tests/ephy-web-app-utils-test.c | 1 - - tests/ephy-web-view-test.c | 1 - - 11 files changed, 8 insertions(+), 21 deletions(-) - -commit 939cf573fe2c77d1d1aaf082edd7957a1db5fc79 -Author: Claudio Saavedra -Date: Fri Feb 28 11:18:15 2014 +0200 - - embed: actually hide the progress bar for about: uris - - If the progressbar was already visible, we'd never really hide it. - Do it now. - - embed/ephy-embed.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit e33810c87e345a6502cbcd4e4134766768fb8be7 -Author: Marek Černocký -Date: Fri Feb 28 06:33:12 2014 +0100 - - Updated Czech translation - - help/cs/cs.po | 460 +++++++++++++++++++++++++++++++++++++--------------------- - 1 file changed, 298 insertions(+), 162 deletions(-) - -commit 3e2506e6c55cf27c049a20304a3cd19aa1ed1fb2 -Author: Marek Černocký -Date: Fri Feb 28 06:17:36 2014 +0100 - - Updated Czech translation - - po/cs.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1cc458bdaf369b8ee4b02e205dd675611e6b9d3d -Author: Ekaterina Gerasimova -Date: Thu Feb 27 21:14:07 2014 +0000 - - Change the text title in help for h.g.o - - help/C/index.page | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 2c3f72bc4d221e90ecc8474c4aa9ad0d3b3e09a6 -Author: Lorenzo Tilve -Date: Wed Feb 26 18:27:27 2014 +0100 - - Override the default background color on about:epiphany - - Use the original background color on about:epiphany - to fill all the page background. - - https://bugzilla.gnome.org/show_bug.cgi?id=725245 - - embed/ephy-about-handler.c | 2 +- - src/resources/about.css | 5 ++++- - 2 files changed, 5 insertions(+), 2 deletions(-) - -commit 9a0aeaf38c3b6375e7579c56df1620fcefb309c3 -Author: Ekaterina Gerasimova -Date: Tue Feb 25 17:38:12 2014 +0000 - - Tidy browser-web help page - - help/C/browse-web.page | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9b21178b2d1159cef8aaaf04c8273cc50926e33a -Author: Lorenzo Tilve -Date: Sun Feb 23 20:52:48 2014 +0100 - - overview: adding a new thumbnail after removing another one - - When the user removes an element, all instances of the overview - query the history service to be updated and insert the next - corresponding item. - - https://bugzilla.gnome.org/show_bug.cgi?id=724697 - - embed/ephy-embed-shell.c | 93 +++++++++++++++++++++++++++++------------------- - 1 file changed, 56 insertions(+), 37 deletions(-) - -commit ede68477762f10d6c2bcd93475a3e01e7e593e19 -Author: Carlos Garcia Campos -Date: Tue Feb 25 15:50:52 2014 +0100 - - ephy-window: Do not set an empty size for popup windows - - src/ephy-window.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit f7f15a8fd64f251fdc18508e4c6bd2eaed26515b -Author: Ekaterina Gerasimova -Date: Tue Feb 25 12:24:05 2014 +0000 - - Update screenshots in help for 3.12 - - help/C/media/epiphany-3-12.png | Bin 134159 -> 179195 bytes - help/C/media/private-browsing-3-12.png | Bin 128816 -> 153374 bytes - 2 files changed, 0 insertions(+), 0 deletions(-) - -commit 3aa513ae706f43a164261ad8b7ffc11d6ee9a87a -Author: Ekaterina Gerasimova -Date: Mon Feb 24 23:07:03 2014 +0000 - - Remove old translated screenshot from help - - The private mode looks completely different now. - - help/pt_BR/media/private-browsing-3-8.png | Bin 146672 -> 0 bytes - 1 file changed, 0 insertions(+), 0 deletions(-) - -commit 26996e9f803ba2b95a9cdcbfff300e45e8ef55e0 -Author: Ekaterina Gerasimova -Date: Mon Feb 24 22:56:40 2014 +0000 - - Update help index and introduction - - Index is now used as the project description on h.g.o/users, so - should contain something of interest to users and "epiphany" because - "web" is a poor search term on the internet. - - Using epiphany will not make the web any more nicer a place. Would be - good to mention something about privacy as it's a moderately big - feature. Can't think of a nice way to fit it in right now. - -

inside are alt text, used to describe the image and double - up as instructions for retaking the screenshot. - - help/C/index.page | 5 ++++- - help/C/introduction.page | 15 +++++++++------ - 2 files changed, 13 insertions(+), 7 deletions(-) - -commit 99cc1aa863d35ee1cc5420da2dab156b6e58e572 -Author: Ekaterina Gerasimova -Date: Mon Feb 24 22:39:33 2014 +0000 - - Review new help pages for 3.12 - - help/C/pref-do-not-track.page | 30 ++++++++++++++--------------- - help/C/prob-restore-closed-page.page | 37 ++++++++++++++++++------------------ - 2 files changed, 33 insertions(+), 34 deletions(-) - -commit 007224204f57a79f23dd9c324d55e72b2017b4a6 -Author: Aurimas Černius -Date: Mon Feb 24 23:38:17 2014 +0200 - - Updated Lithuanian translation - - po/lt.po | 756 ++++++++++++++++++++++++++------------------------------------- - 1 file changed, 312 insertions(+), 444 deletions(-) - -commit 6068f2f23b081a36f3c8522da72fa7952c8e81eb -Author: Carlos Garcia Campos -Date: Mon Feb 24 18:14:41 2014 +0100 - - tests: Test /embed/ephy-web-view/normalize_or_autosearch does nothing - - G_N_ELEMENTS macro is incorrectly used, and tests are not actually - executed. Also the test expectations for google autosearch test used the - wrong url. - - tests/ephy-web-view-test.c | 13 +++++++------ - 1 file changed, 7 insertions(+), 6 deletions(-) - -commit edffbe363015e80c246a05add2541fd1b1d26df3 -Author: Baptiste Mille-Mathias -Date: Mon Feb 24 11:30:00 2014 +0000 - - Remove data landing page from help - - help/C/data-cookies.page | 1 - - help/C/data-passwords.page | 1 - - help/C/data.page | 30 ------------------------------ - help/Makefile.am | 1 - - 4 files changed, 33 deletions(-) - -commit d71a867c8241c171616c64d5b4bfa3aaea9cefe2 -Author: Baptiste Mille-Mathias -Date: Mon Feb 24 11:08:21 2014 +0000 - - Update help for 3.12 UI changes - - help/C/browse-private.page | 7 +++-- - help/C/data-cookies.page | 22 +++++++------- - help/C/data-passwords.page | 42 ++++++++++++++------------ - help/C/index.page | 4 +-- - help/C/introduction.page | 2 +- - help/C/media/epiphany-3-12.png | Bin 0 -> 134159 bytes - help/C/media/epiphany-3-8.png | Bin 119144 -> 0 bytes - help/C/media/private-browsing-3-12.png | Bin 0 -> 128816 bytes - help/C/media/private-browsing-3-8.png | Bin 108824 -> 0 bytes - help/C/pref-cookies.page | 6 ++-- - help/C/pref-do-not-track.page | 52 +++++++++++++++++++++++++++++++++ - help/C/pref-downloads.page | 1 + - help/C/pref-font.page | 1 + - help/C/pref-passwords.page | 7 +++-- - help/C/prob-passwords-show.page | 39 ------------------------- - help/C/prob-restore-closed-page.page | 49 +++++++++++++++++++++++++++++++ - help/Makefile.am | 14 +++++---- - 17 files changed, 160 insertions(+), 86 deletions(-) - -commit 77a7fd4cfdd5d1c02f83f1740f75da34b25fd84c -Author: Frédéric Péters -Date: Thu Feb 20 17:01:49 2014 +0100 - - do not touch query parameter values when removing trackers - - https://bugzilla.gnome.org/show_bug.cgi?id=724724 - - lib/ephy-uri-helpers.c | 6 ++++-- - tests/ephy-uri-helpers-test.c | 3 +++ - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 3780c7dd2a230ff0c53e47d52887c2af2ba12fe3 -Author: Rafael Ferreira -Date: Fri Feb 21 13:14:25 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 265 +++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 135 insertions(+), 130 deletions(-) - -commit a68e556dd0623a70ad96a711a0c370a1c2c49c12 -Author: Carlos Garcia Campos -Date: Fri Feb 21 14:12:22 2014 +0100 - - overview: Remove the default-icon property of EphyOverviewStore - - The default icon is now set in the css of the overview and it doesn't - need to be saved in the store. - - embed/ephy-embed-shell.c | 23 ----------- - lib/widgets/ephy-frecent-store.c | 7 ---- - lib/widgets/ephy-overview-store.c | 84 ++------------------------------------- - lib/widgets/ephy-overview-store.h | 3 -- - 4 files changed, 4 insertions(+), 113 deletions(-) - -commit 90d214766117b290d45bda96dced8b266ff1320d -Author: Carlos Garcia Campos -Date: Fri Feb 21 10:44:40 2014 +0100 - - about-handler: Compile the about css file as a gresource - - And use a link to the resource in the about pages instead of including - the file contents in the about page. - - https://bugzilla.gnome.org/show_bug.cgi?id=724862 - - data/pages/Makefile.am | 1 - - data/pages/about.css | 205 --------------------------------------------- - embed/ephy-about-handler.c | 92 ++++++++------------ - src/epiphany.gresource.xml | 1 + - src/resources/about.css | 205 +++++++++++++++++++++++++++++++++++++++++++++ - 5 files changed, 241 insertions(+), 263 deletions(-) - -commit 7ca58a900c9655270bd24b9ebe79ca49ab3b886c -Author: Carlos Garcia Campos -Date: Fri Feb 21 10:21:04 2014 +0100 - - overview: Compile the missing thumbnail icon as a gresource - - And use it directly form the css using ephy-resource URI. - - https://bugzilla.gnome.org/show_bug.cgi?id=724862 - - data/Makefile.am | 4 ---- - data/missing-thumbnail.png | Bin 1226 -> 0 bytes - embed/web-extension/ephy-web-extension.c | 12 ------------ - src/Makefile.am | 1 + - src/epiphany.gresource.xml | 1 + - src/resources/missing-thumbnail.png | Bin 0 -> 1226 bytes - src/resources/overview.html | 2 +- - 7 files changed, 3 insertions(+), 17 deletions(-) - -commit e6e14af0840fe896a62e3b2a8629c0625895ddd2 -Author: Carlos Garcia Campos -Date: Fri Feb 21 10:06:54 2014 +0100 - - about-handler: Use ephy-resource for the incognito icon in about:incognito - - Instead of decoding the image and send it to the web process. - - https://bugzilla.gnome.org/show_bug.cgi?id=724862 - - embed/ephy-about-handler.c | 18 +----------------- - 1 file changed, 1 insertion(+), 17 deletions(-) - -commit bfdafa8240deb9307078bf09ebbcc9290b1e6528 -Author: Carlos Garcia Campos -Date: Fri Feb 21 10:03:35 2014 +0100 - - Add ephy-resource:// custom URI scheme implementation - - Ideally we could use resource:// URIs since they are supported by both - WebKit and libsoup, but the web process doesn't have access to the - resources compiled in the UI process. And in multiprocess mode, the - network process doesn't have access to the resources either. - ephy-resource:// URIs are like a proxy to load gresources compiled in - the UI process, the data is sent directly to the web process in - single process mode or to the network process in multiprocess mode. - - https://bugzilla.gnome.org/show_bug.cgi?id=724862 - - embed/ephy-embed-shell.c | 30 ++++++++++++++++++++++++++++++ - 1 file changed, 30 insertions(+) - -commit 7393c9a4db71319967b554ea1fdd94c644a573c6 -Author: Carlos Garcia Campos -Date: Fri Feb 21 09:59:19 2014 +0100 - - about-handler: Do not send encoded images to the web process in about:applications - - Pass the app icon filename instead. - - https://bugzilla.gnome.org/show_bug.cgi?id=724862 - - embed/ephy-about-handler.c | 10 ++-------- - 1 file changed, 2 insertions(+), 8 deletions(-) - -commit f9b4d791f8ae3f1e65264198ee7059726850114b -Author: Carlos Garcia Campos -Date: Fri Feb 21 09:59:19 2014 +0100 - - about-handler: Do not send encoded images to the web process in about:web - - Pass the icon filename instead. - - https://bugzilla.gnome.org/show_bug.cgi?id=724862 - - embed/ephy-about-handler.c | 13 ++++--------- - 1 file changed, 4 insertions(+), 9 deletions(-) - -commit 78b0290e501abbf4a3671020fff6a94cedb93edb -Author: Marek Černocký -Date: Fri Feb 21 08:03:58 2014 +0100 - - Updated Czech translation - - po/cs.po | 260 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 132 insertions(+), 128 deletions(-) - -commit c2d5ee16681c08c347601a76c6052cf4f1969bdf -Author: Jakub Steiner -Date: Wed Feb 19 18:53:11 2014 +0100 - - overview: further improve layout - - - center the thumbnails, keeping a decent narrow view - - using table-cells to top align (yuck) - - https://bugzilla.gnome.org/show_bug.cgi?id=723950 - - src/resources/overview.html | 40 ++++++++++++++++++++++------------------ - 1 file changed, 22 insertions(+), 18 deletions(-) - -commit 3d16255c8deb674dbaf749726e83715bda68f397 -Author: Daniel Mustieles -Date: Thu Feb 20 14:23:12 2014 +0100 - - Updated Spanish translation - - po/es.po | 264 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 133 insertions(+), 131 deletions(-) - -commit ac97587982cc9c63629285c87c60dfce9db29ce8 -Author: Yosef Or Boczko -Date: Wed Feb 19 23:49:38 2014 +0200 - - Updated Hebrew translation - - po/he.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 3155b4a185d13c3ee8e2da01f93025516fc487be -Author: Kjartan Maraas -Date: Wed Feb 19 20:36:08 2014 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 824 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 361 insertions(+), 463 deletions(-) - -commit e12fe63478c2dd52b543d76befe5b90fae546933 -Author: Claudio Saavedra -Date: Wed Feb 19 19:38:16 2014 +0200 - - [release] 3.11.90 - - NEWS | 14 ++++++++++++++ - configure.ac | 2 +- - 2 files changed, 15 insertions(+), 1 deletion(-) - -commit d3e03a794fafe6df4c863846bc8272ce41c86a6a -Author: Claudio Saavedra -Date: Wed Feb 19 19:37:38 2014 +0200 - - ephy-embed-shell-test: make sure the mimetype db is available - - tests/ephy-embed-shell-test.c | 18 +++++++++++++----- - 1 file changed, 13 insertions(+), 5 deletions(-) - -commit ccce3f05da3e9a1a496ac7eeb2160c1f549e8c07 -Author: Claudio Saavedra -Date: Wed Feb 19 18:16:02 2014 +0200 - - web-extension: remove unused variables - - embed/web-extension/ephy-web-overview-model.c | 2 -- - embed/web-extension/ephy-web-overview.c | 1 - - 2 files changed, 3 deletions(-) - -commit e020a6da622e3ddbd15b13d0059fbb5da941de0f -Author: Jakub Steiner -Date: Wed Feb 19 15:22:34 2014 +0100 - - overview: set the thumbnmail size correctly - - https://bugzilla.gnome.org/show_bug.cgi?id=723950 - - src/resources/overview.html | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit e7e72ac6a15a0801abd978efc222410e95eb1b1b -Author: Jakub Steiner -Date: Wed Feb 19 13:17:30 2014 +0100 - - overview thumbnails: improve stylesheet - - - replace hard baked frames with css properties - - adjust position of close buttons and reassure action with - specific :hover state for the close button - - avoid using alpha for normal state (feels washed out). Raise - the thumbail on :hover and sunk it for :active - - The thing missing is thumbnails still having the shadow baked in. - For this to work, the web thumnails need to remain flat. - - https://bugzilla.gnome.org/show_bug.cgi?id=723950 - - data/missing-thumbnail.png | Bin 1647 -> 1226 bytes - src/resources/overview.html | 42 ++++++++++++++++++++++++++++++++---------- - 2 files changed, 32 insertions(+), 10 deletions(-) - -commit 91eebf7c0ff872287ef5ffaf702e6e50809e9e88 -Author: Claudio Saavedra -Date: Wed Feb 19 17:24:15 2014 +0200 - - overview: removed hard-wired thumbnail frame - - data/Makefile.am | 3 +- - data/thumbnail-frame.png | Bin 1238 -> 0 bytes - embed/ephy-about-handler.c | 2 +- - embed/ephy-embed-shell.c | 4 -- - embed/web-extension/ephy-web-overview.c | 6 +-- - lib/widgets/ephy-overview-store.c | 81 +++----------------------------- - lib/widgets/ephy-overview-store.h | 3 -- - 7 files changed, 11 insertions(+), 88 deletions(-) - -commit e63f59847eccf36101c81f32c78683b0688e0eb2 -Author: Carlos Garcia Campos -Date: Thu Feb 13 15:27:37 2014 +0100 - - session: lower the priority of the task used to parse the session file - - Use a priority lower than the drawing events to make sure the main - window is shown asap at startup. - - src/ephy-session.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit 5615af3f78856dd87ca971e79d1c006450d5f2b2 -Author: Carlos Garcia Campos -Date: Wed Feb 19 14:45:44 2014 +0100 - - web-extension: Create a EphyWebExtension object and remove all the global variables - - embed/web-extension/Makefile.am | 1 + - embed/web-extension/ephy-web-extension-main.c | 72 ++++++ - embed/web-extension/ephy-web-extension.c | 321 ++++++++++++++++---------- - embed/web-extension/ephy-web-extension.h | 41 ++++ - 4 files changed, 308 insertions(+), 127 deletions(-) - -commit f69ca8f2464cd8a6974c7a7c7702e2b8825919a9 -Author: Carlos Garcia Campos -Date: Wed Feb 19 13:36:02 2014 +0100 - - web-extension: Mark EphyWEbOverview finalize method as static - - embed/web-extension/ephy-web-overview.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 827cfd68681bb20b60d35dd1c6ea3857d367fbb5 -Author: Carlos Garcia Campos -Date: Mon Feb 17 20:11:04 2014 +0100 - - title-box: Make EphyTitleBox honor the location window property - - When the location bar is disabled in the window chrome, use the title - mode unconditionally and don't allow to switch to entry mode. App mode - disables the location in the window chrome by default so the - EphyTitleBox doesn't need to know the embed mode. - - https://bugzilla.gnome.org/show_bug.cgi?id=724170 - - src/ephy-title-box.c | 104 +++++++++++++++++++++++++++++---------------------- - src/ephy-title-box.h | 1 - - src/ephy-window.c | 3 ++ - 3 files changed, 62 insertions(+), 46 deletions(-) - -commit 68b142085515ed5dbeaf233129e75134d746cfd5 -Author: Carlos Garcia Campos -Date: Wed Feb 19 11:05:20 2014 +0100 - - title-box: Add GDK_POINTER_MOTION_MASK to the title box event mask - - That way we always receive motion events and the window can be moved by - dragging in the title box even if the location entry mode is disabled. - - src/ephy-title-box.c | 1 + - 1 file changed, 1 insertion(+) - -commit 24468cade1b54957c8ee9bcdff7345896d9ca38d -Author: Claudio Saavedra -Date: Wed Feb 19 12:03:20 2014 +0200 - - toolbar: move the new tab button to the left - - This is consistent with gedit and more balanced. - - https://bugzilla.gnome.org/show_bug.cgi?id=724664 - - src/ephy-toolbar.c | 27 ++++++++++++++------------- - 1 file changed, 14 insertions(+), 13 deletions(-) - -commit 72ef6401f1d628e4ad3b9e387023c08d39b317c5 -Author: Carlos Garcia Campos -Date: Wed Feb 19 10:42:01 2014 +0100 - - title-box: Make the window property writable only - - It's marked as readwrite but there's no implementation for it in - get_property. - - src/ephy-title-box.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0e478496ee74b6fdbc40c2c92a33cd9fdb18f31d -Author: Frédéric Péters -Date: Sat Jan 18 11:09:23 2014 +0100 - - Make builtin html pages gradient background cover the whole pages - - https://bugzilla.gnome.org/show_bug.cgi?id=722485 - - data/pages/about.css | 2 +- - data/pages/error.css | 2 +- - src/resources/overview.html | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -commit 13dbb8d4ae4c137b68f28d681cd6444d1e0de3ea -Author: Carlos Garcia Campos -Date: Wed Feb 19 09:52:50 2014 +0100 - - window: Fix a crash when closing the window with the downloads bar open - - Do not notify about window chrome changes when the window is closing. - - src/ephy-window.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 8177938cbd606f3ebcd75fed1e26d8e62284f965 -Author: Lorenzo Tilve -Date: Tue Feb 18 16:59:54 2014 +0100 - - overview: Place thumbnails and the close-butons according to ltr/rtl - - Add CSS rules to avoid the wrong manual floating of the thumbnails - and the close button when dir="rtl". - - https://bugzilla.gnome.org/show_bug.cgi?id=724665 - - src/resources/overview.html | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit ef510722dd22c2db268d017485e5c8c2d2b72c6c -Author: Yosef Or Boczko -Date: Tue Feb 18 17:28:46 2014 +0200 - - Updated Hebrew translation - - po/he.po | 263 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 132 insertions(+), 131 deletions(-) - -commit f22d5f64cab2ebc70d7a806fbdf45f65ba52a32e -Author: Yosef Or Boczko -Date: Tue Feb 18 17:28:34 2014 +0200 - - Updated POTFILES.in - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit ccf522fc52f0929937bfcfb48bbb8279c65d3036 -Author: Carlos Garcia Campos -Date: Tue Feb 18 15:43:40 2014 +0100 - - overview: Fix a typo in the overview page title - - Now the title is correctly translated. - - embed/ephy-about-handler.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ee05cfc60c8fecc018eb4c8238f5927e41c82423 -Author: Carlos Garcia Campos -Date: Wed Feb 12 11:03:56 2014 +0100 - - Remove ephy_web_view_copy_back_history() - - It's currently unimplemented, we can bring it back eventually if we can - copy the back history and it's needed. - - embed/ephy-web-view.c | 18 ------------------ - embed/ephy-web-view.h | 2 -- - src/ephy-navigation-history-action.c | 5 ++--- - src/ephy-session.c | 3 +-- - src/ephy-shell.c | 7 ------- - src/ephy-shell.h | 4 ---- - src/ephy-window.c | 2 -- - 7 files changed, 3 insertions(+), 38 deletions(-) - -commit 59bc00280ce31e11b7056ea20dd339327892ff6e -Author: Carlos Garcia Campos -Date: Mon Feb 17 14:32:50 2014 +0100 - - Notify the web extension about history changes to update the overview - - And remove the automatic refresh when an overview item is removed via - javascript. - - embed/ephy-embed-shell.c | 129 ++++++ - embed/ephy-web-extension-proxy.c | 96 +++++ - embed/ephy-web-extension-proxy.h | 13 + - embed/web-extension/Makefile.am | 4 + - embed/web-extension/ephy-web-extension.c | 165 ++++---- - embed/web-extension/ephy-web-overview-model.c | 286 +++++++++++++ - embed/web-extension/ephy-web-overview-model.h | 84 ++++ - embed/web-extension/ephy-web-overview.c | 558 ++++++++++++++++++++++++++ - embed/web-extension/ephy-web-overview.h | 62 +++ - src/resources/overview.html | 2 +- - 10 files changed, 1327 insertions(+), 72 deletions(-) - -commit ad5b34dcfb479922908b3a995a54ee7901ed708f -Author: Carlos Garcia Campos -Date: Mon Feb 17 14:27:49 2014 +0100 - - overview: Do not send decoded snapshots to the web process - - Use the thumbnail path instead so that thumbnails are loaded in the web - process. - - embed/ephy-about-handler.c | 22 ++++++++++------------ - embed/ephy-embed-shell.c | 4 ++++ - embed/web-extension/Makefile.am | 4 ++++ - embed/web-extension/ephy-web-extension.c | 20 ++++++++++++++++++++ - src/resources/overview.html | 1 + - 5 files changed, 39 insertions(+), 12 deletions(-) - -commit 77dcdbc0dd4f303381c1b92a2195e56bbf48982c -Author: Carlos Garcia Campos -Date: Mon Feb 17 14:21:51 2014 +0100 - - Add snapshot path to EphyOverviewStore - - It stores the path were the snapshot has been saved and notifies with a - signal when a new snapshot is saved in the cache. - - embed/ephy-web-view.c | 8 +--- - lib/ephy-snapshot-service.c | 52 +++++++++++++++++------ - lib/ephy-snapshot-service.h | 4 +- - lib/widgets/ephy-overview-store.c | 87 ++++++++++++++++++++++++++++++++------ - lib/widgets/ephy-overview-store.h | 3 +- - tests/ephy-snapshot-service-test.c | 2 +- - 6 files changed, 122 insertions(+), 34 deletions(-) - -commit 05b453413675b765a121d33fd7ab4536851b1695 -Author: Carlos Garcia Campos -Date: Mon Feb 10 20:35:25 2014 +0100 - - Remove the overview widget and use the html based one instead - - embed/Makefile.am | 2 - - embed/ephy-about-handler.c | 2 +- - embed/ephy-embed.c | 88 +-- - embed/ephy-embed.h | 5 - - embed/ephy-overview.c | 169 ------ - embed/ephy-overview.h | 60 --- - embed/ephy-web-view.c | 15 +- - embed/ephy-web-view.h | 1 + - lib/widgets/Makefile.am | 15 - - lib/widgets/ephy-overview-store.c | 6 - - lib/widgets/ephy-overview-store.h | 16 +- - lib/widgets/ephy-removable-pixbuf-renderer.c | 244 --------- - lib/widgets/ephy-removable-pixbuf-renderer.h | 66 --- - lib/widgets/gd-main-icon-view.c | 221 -------- - lib/widgets/gd-main-icon-view.h | 74 --- - lib/widgets/gd-main-list-view.c | 224 -------- - lib/widgets/gd-main-list-view.h | 80 --- - lib/widgets/gd-main-view-generic.c | 176 ------ - lib/widgets/gd-main-view-generic.h | 99 ---- - lib/widgets/gd-main-view.c | 780 --------------------------- - lib/widgets/gd-main-view.h | 108 ---- - lib/widgets/gd-toggle-pixbuf-renderer.c | 198 ------- - lib/widgets/gd-toggle-pixbuf-renderer.h | 75 --- - lib/widgets/gd-two-lines-renderer.c | 528 ------------------ - lib/widgets/gd-two-lines-renderer.h | 75 --- - src/ephy-navigation-history-action.c | 6 - - src/ephy-shell.c | 2 +- - src/ephy-window.c | 128 ++--- - 28 files changed, 67 insertions(+), 3396 deletions(-) - -commit 65a1e4d1d4a46dd5ff781a3d1fa78879e2efbc4c -Author: Lorenzo Tilve -Date: Mon Dec 9 11:58:52 2013 +0100 - - Alternative HTML-based implementation for the overview - - Provides a basic alternative HTML implementation for the - overview, that can be accessed at 'about:html-overview'. - - https://bugzilla.gnome.org/show_bug.cgi?id=723950 - - embed/ephy-about-handler.c | 87 ++++++++++++++++++ - embed/ephy-embed-shell.c | 37 ++++++++ - embed/web-extension/ephy-web-extension.c | 102 ++++++++++++++++++++- - src/Makefile.am | 1 + - src/epiphany.gresource.xml | 1 + - src/resources/overview.html | 151 +++++++++++++++++++++++++++++++ - 6 files changed, 378 insertions(+), 1 deletion(-) - -commit b87b792f0703f5b9c9dfa600468158b3db310c50 -Author: Yosef Or Boczko -Date: Thu Jan 30 15:46:19 2014 +0200 - - ephy-window: Make Ctrl+R reload - - https://bugzilla.gnome.org/show_bug.cgi?id=711408 - - https://bugzilla.gnome.org/show_bug.cgi?id=724567 - - src/ephy-window.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit a9e6505defa9e09f89fee98a524a71677194e30f -Author: Yosef Or Boczko -Date: Mon Feb 17 20:27:58 2014 +0200 - - Replace the location bar with the title of the web page - - From the moment there is a title for the web page, hide - the location bar. Instead, show the title of the web - page as title of the header bar and the url of the web - page as subtitle. - - Clicking on the title (when it is shown) will switch to - the location bar. - - Type Esc when the entry of the location bar is focused, - or focus on the web view will switch to the title. - - Reviewed by Carlos Garcia Campos - and William Jon McCann . - - https://bugzilla.gnome.org/show_bug.cgi?id=711408 - - configure.ac | 4 +- - lib/widgets/ephy-location-entry.c | 2 +- - src/Makefile.am | 2 + - src/ephy-title-box.c | 706 ++++++++++++++++++++++++++++++++++++++ - src/ephy-title-box.h | 82 +++++ - src/ephy-toolbar.c | 91 ++--- - src/ephy-toolbar.h | 3 + - src/ephy-window.c | 16 +- - src/resources/epiphany.css | 3 + - 9 files changed, 835 insertions(+), 74 deletions(-) - -commit fce56ddda509bba9949079261c99ebc94a868386 -Author: Carlos Garcia Campos -Date: Mon Feb 17 17:41:11 2014 +0100 - - Bump WebKitGTK+ requirements to 2.3.90 and remove unneeded ifdefs - - configure.ac | 8 +------- - embed/ephy-embed-shell.c | 4 ---- - src/ephy-shell.c | 5 +---- - 3 files changed, 2 insertions(+), 15 deletions(-) - -commit e3acc16fd5e4ff090ec69a8310cd42761f669646 -Author: Yosef Or Boczko -Date: Thu Feb 13 15:21:35 2014 +0200 - - Center-align the cancel button in the clear data dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=724289 - - src/resources/clear-data-dialog.ui | 4 ++++ - 1 file changed, 4 insertions(+) - -commit bd6d769a4b60ae31bb7aca9be735a75709e9043b -Author: Chao-Hsiung Liao -Date: Sat Feb 15 19:03:37 2014 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 755 ++++++++++++++++++++++++++++------------------------------- - po/zh_TW.po | 758 ++++++++++++++++++++++++++++-------------------------------- - 2 files changed, 703 insertions(+), 810 deletions(-) - -commit 7cad0884ddabe81879f2b9309893d687d03dc239 -Author: Andika Triwidada -Date: Fri Feb 14 11:52:57 2014 +0000 - - Updated Indonesian translation - - po/id.po | 813 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 362 insertions(+), 451 deletions(-) - -commit 709193be3080f3f5067f714f2d6124f90ff6c073 -Author: Claudio Saavedra -Date: Thu Feb 13 14:33:57 2014 +0200 - - profile-utils: do not spawn the profile migrator unnecessarily - - Spare some cycles by not spawning the profile migrator if there - is nothing to migrate. - - lib/ephy-profile-utils.c | 6 ++++++ - src/ephy-main.c | 22 +++++++++++----------- - 2 files changed, 17 insertions(+), 11 deletions(-) - -commit 48ee65cb97e646f2eccadc29338ef13555fc6208 -Author: Claudio Saavedra -Date: Wed Feb 12 21:42:18 2014 +0200 - - ephy-find-toolbar: properly set its webview - - We were setting the webview twice to the find-bar: upon creation and - then everytime the notebook switched to the page containing it. However, - only the second time all the signal handlers related to search - were connected, and not even properly. - - Fix all this mess by using the proper setter() and removing the public - method, after all the webview property is construct only. - - https://bugzilla.gnome.org/show_bug.cgi?id=724230 - - embed/ephy-find-toolbar.c | 15 ++++----------- - embed/ephy-find-toolbar.h | 3 --- - src/ephy-window.c | 3 --- - 3 files changed, 4 insertions(+), 17 deletions(-) - -commit bf241c5b9dc2a6ce61a328dbef8e6c7bdb39c34b -Author: ngoswami -Date: Wed Feb 12 18:55:31 2014 +0000 - - Updated Assamese translation - - po/as.po | 1806 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 978 insertions(+), 828 deletions(-) - -commit d8cd489e43c849c4b3e2c333f5d40218dba85e8f -Author: Carlos Garcia Campos -Date: Mon Feb 10 17:55:27 2014 +0100 - - Fix popup windows in multiprocess mode - - The web views created for popups should share the same web process - than the view opening the popup. For that we use - webkit_web_view_new_with_related_view() to create the popup view. - - https://bugzilla.gnome.org/show_bug.cgi?id=724052 - - embed/ephy-embed.c | 29 ++++++++++++++++++++--------- - embed/ephy-web-view.c | 9 +++++++++ - embed/ephy-web-view.h | 1 + - src/ephy-session.c | 1 + - src/ephy-shell.c | 16 ++++++++++++++-- - src/ephy-shell.h | 1 + - src/ephy-window.c | 2 ++ - tests/ephy-shell-test.c | 2 ++ - 8 files changed, 50 insertions(+), 11 deletions(-) - -commit 236f6ea468bcd2a8f9403227d61dc421746d5650 -Author: Carlos Garcia Campos -Date: Mon Feb 10 17:12:54 2014 +0100 - - Update to WebKit API changes - - The process model enum names have changed. - - configure.ac | 6 ++++++ - embed/ephy-embed-shell.c | 4 ++++ - 2 files changed, 10 insertions(+) - -commit df52fd55dc857c8c02b7f7b5208ff89799c59676 -Author: Alexandre Franke -Date: Tue Feb 11 22:38:32 2014 +0100 - - Update French translation - - po/fr.po | 1675 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 898 insertions(+), 777 deletions(-) - -commit 15011280e09b68cf9c9011cf432f46fd0d0fd471 -Author: Christian Kirbach -Date: Mon Feb 10 20:49:14 2014 +0000 - - Updated German translation - - help/de/de.po | 850 ++++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 564 insertions(+), 286 deletions(-) - -commit 3a5e0b4a3d4c5144f486fdcc10a9675f6bb80f8f -Author: Daniel Mustieles -Date: Mon Feb 10 14:27:27 2014 +0100 - - Updated Spanish translation - - po/es.po | 289 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 138 insertions(+), 151 deletions(-) - -commit 887eb67d5693a350e49d596ae4452b4409745991 -Author: Lorenzo Tilve -Date: Mon Feb 3 13:54:44 2014 +0100 - - Avoid showing inaccurate message when lockdown.disable-fullscreen is set - - On Web start, if fullscreen is locked down, the message "Press F11 to exit - fullscreen" is displayed while that action would not doable. - - Don't show that wrong message when fullscren is locked. - - https://bugzilla.gnome.org/show_bug.cgi?id=708862 - - embed/ephy-embed.c | 16 +++++++++------- - 1 file changed, 9 insertions(+), 7 deletions(-) - -commit 9ed33eddf6eac976af16ab598d862cc62cc61ab6 -Author: Daniel Korostil -Date: Sun Feb 9 22:33:27 2014 +0200 - - Updated Ukranian - - po/uk.po | 1697 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 894 insertions(+), 803 deletions(-) - -commit 88941e54cafd0632b21687a8a2d500a961a9a1df -Author: Yosef Or Boczko -Date: Sat Feb 8 19:41:31 2014 +0200 - - Updated Hebrew translation - - po/he.po | 294 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 142 insertions(+), 152 deletions(-) - -commit 49ca472e30df67d20c2b24b34614dd672a399238 -Author: Enrico Nicoletto -Date: Sat Feb 8 12:50:31 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 289 +++++++++++++++++++++++++++++------------------------------- - 1 file changed, 138 insertions(+), 151 deletions(-) - -commit 9f0937f3f6d9b843ec6638aad694d136e5a8c628 -Author: Marek Černocký -Date: Sat Feb 8 10:36:16 2014 +0100 - - Updated Czech translation - - po/cs.po | 781 +++++++++++++++++++++++++++------------------------------------ - 1 file changed, 332 insertions(+), 449 deletions(-) - -commit bbb6d6a639aa1e41d97349232b5247174b809133 -Author: Claudio Saavedra -Date: Fri Feb 7 23:24:06 2014 +0200 - - EphyWebView: Avoid a dangling signal handler - - We should use g_signal_connect_object() with the page-created - EmbedShell to avoid the callback to be called for the webview - after this is destroyed. - - https://bugzilla.gnome.org/show_bug.cgi?id=723725 - - embed/ephy-web-view.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 0b2777b2ba426c80b23c9721161ae519a0bfda9d -Author: Claudio Saavedra -Date: Fri Feb 7 20:15:42 2014 +0200 - - [release] 3.11.4 - - NEWS | 13 +++++++++++++ - configure.ac | 2 +- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit fba6ae6c1eacf235be1380aba7f62d908fcd2993 -Author: William Jon McCann -Date: Fri Feb 7 12:50:14 2014 -0500 - - Use header bar for add language dialog - - src/resources/prefs-lang-dialog.ui | 76 ++++++++++++++++++++++---------------- - 1 file changed, 44 insertions(+), 32 deletions(-) - -commit 3bd8cd6147cae92e1ff7896d7abb7050aaf88992 -Author: William Jon McCann -Date: Thu Feb 6 17:28:40 2014 -0500 - - Use header bar for bookmark properties dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - src/bookmarks/ephy-bookmark-properties.c | 232 ++----------------------------- - 1 file changed, 10 insertions(+), 222 deletions(-) - -commit f61a785839d2cccfa5ecf0a319acbe7e132127ab -Author: William Jon McCann -Date: Thu Feb 6 16:51:30 2014 -0500 - - Always make message dialogs modal - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - lib/ephy-gui.c | 6 +++--- - src/window-commands.c | 5 +++-- - 2 files changed, 6 insertions(+), 5 deletions(-) - -commit 0b036c01ef37b199de12add9ae17af7ebce93814 -Author: William Jon McCann -Date: Thu Feb 6 16:38:05 2014 -0500 - - Use header bar in certificate dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - lib/widgets/ephy-certificate-dialog.c | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -commit dd285fc1f03ba3341c77e258f4700e202df67007 -Author: William Jon McCann -Date: Thu Feb 6 16:35:08 2014 -0500 - - Use header bar in clear personal data dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - src/prefs-dialog.c | 4 +- - src/resources/clear-data-dialog.ui | 75 +++++++++++++++++++++----------------- - 2 files changed, 44 insertions(+), 35 deletions(-) - -commit ddd5f4af344548e1415928ba99a4f08706040ba9 -Author: William Jon McCann -Date: Thu Feb 6 16:21:20 2014 -0500 - - Use header bar on passwords dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - src/prefs-dialog.c | 4 ++- - src/resources/passwords-dialog.ui | 63 +++++++++++++++++---------------------- - 2 files changed, 31 insertions(+), 36 deletions(-) - -commit a6242a8fc0e90aa13558c5c7655efe7e6f4eb5ce -Author: William Jon McCann -Date: Thu Feb 6 16:14:52 2014 -0500 - - Use header bar on cookies dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - src/prefs-dialog.c | 4 ++- - src/resources/cookies-dialog.ui | 61 ++++++++++++++++++----------------------- - 2 files changed, 30 insertions(+), 35 deletions(-) - -commit 15cb7aa3e1b4a4cb07122760818b75ae2d008b86 -Author: William Jon McCann -Date: Thu Feb 6 16:06:45 2014 -0500 - - Make confirmation dialog modal - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - src/ephy-history-window.c | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -commit bcbc459693e4ea830d6787519dfc92c84ba9acd6 -Author: William Jon McCann -Date: Thu Feb 6 15:59:37 2014 -0500 - - Use header bar on preferences dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - src/ephy-shell.c | 4 +++- - src/resources/prefs-dialog.ui | 34 +++++++++++++--------------------- - 2 files changed, 16 insertions(+), 22 deletions(-) - -commit d3fd1410d937aba49cee77413b7a2e455735e2b0 -Author: William Jon McCann -Date: Thu Feb 6 16:41:37 2014 -0500 - - Use header bar on encodings dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - src/resources/epiphany.ui | 32 ++++++++++---------------------- - 1 file changed, 10 insertions(+), 22 deletions(-) - -commit db9875bf308734f30eba04dbe3b040960cc7cd9d -Author: William Jon McCann -Date: Thu Feb 6 16:40:36 2014 -0500 - - Use header bar on history dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - src/ephy-history-window.c | 1 + - src/resources/history-dialog.ui | 63 ++++++++++++++++++----------------------- - 2 files changed, 29 insertions(+), 35 deletions(-) - -commit 3319d6e5bebf58e0bf20fa120203f7baf54ffb01 -Author: William Jon McCann -Date: Mon Jan 13 09:05:15 2014 -0500 - - Use header bar for create web app dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=723803 - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c2bdc795fe0e1259b66365c4071dd2bc5056ce89 -Author: Claudio Saavedra -Date: Fri Feb 7 19:14:04 2014 +0200 - - history-service: skip schemas when matching urls - - Modify the matching pattern used with sqlite so that the scheme is - skipped. We do this by prepending a '%:' to the LIKE string. - In order to reuse this string with non-url strings (for which the - '%:' is unnecessary, we just skip these two characters. - - https://bugzilla.gnome.org/show_bug.cgi?id=723855 - - lib/ephy-sqlite-statement.c | 2 +- - lib/history/ephy-history-service-hosts-table.c | 3 ++- - lib/history/ephy-history-service-urls-table.c | 2 +- - lib/history/ephy-history-service-visits-table.c | 2 +- - 4 files changed, 5 insertions(+), 4 deletions(-) - -commit dab5c5cab69d31ca2d131ff4a503e45be3abb736 -Author: Claudio Saavedra -Date: Fri Feb 7 16:10:10 2014 +0200 - - src/Makefile.am: add missing resource file - - src/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit 79b48852006b77261c8a762fc47250e9a5070d76 -Author: Claudio Saavedra -Date: Fri Feb 7 15:51:19 2014 +0200 - - history-window: disable treeview sorting - - As it's currently implemented, sorting is very inefficient. Disabling - it makes typeahead search much faster. - - An efficient way to implement this feature is to request the data to - be sorted in the backend. - - src/resources/history-dialog.ui | 6 ------ - 1 file changed, 6 deletions(-) - -commit ce9c8135835f877dd7df4544dc1f90d0bc152cbc -Author: Daniel Mustieles -Date: Fri Feb 7 14:45:54 2014 +0100 - - Updated Spanish translation - - po/es.po | 375 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 173 insertions(+), 202 deletions(-) - -commit cf1e3f636ff0c4df7cd08c121590f02d42403751 -Author: Fran Diéguez -Date: Fri Feb 7 01:24:13 2014 +0100 - - Updated Galician translations - - po/gl.po | 667 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 323 insertions(+), 344 deletions(-) - -commit bf9fc6ca8caca37235ef519627b949006625affa -Author: Enrico Nicoletto -Date: Thu Feb 6 18:57:01 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 323 +++++++++++++++++++++++++++--------------------------------- - 1 file changed, 147 insertions(+), 176 deletions(-) - -commit 5d4238f4d3722c363b3b628f7120a9c76fdbb388 -Author: Yosef Or Boczko -Date: Thu Feb 6 20:12:02 2014 +0200 - - Updated Hebrew translation - - po/he.po | 1350 ++++++++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 909 insertions(+), 441 deletions(-) - -commit 795cca26f33608c4c76eb931b5931270b2f08cff -Author: Piotr Drąg -Date: Thu Feb 6 19:01:20 2014 +0100 - - Updated POTFILES.in - - po/POTFILES.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 397dcf5afde24c42be77b910980ae4f2d1b2f2f9 -Author: Enrico Nicoletto -Date: Thu Feb 6 17:44:08 2014 +0000 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 259 ++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 137 insertions(+), 122 deletions(-) - -commit 865db790651c20293dfb0ccc4a49a80ba51cf74b -Author: William Jon McCann -Date: Fri Jan 3 11:35:57 2014 -0500 - - Redesign the history dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=721415 - - src/Makefile.am | 1 - - src/ephy-history-window.c | 1449 +++++++------------------- - src/ephy-history-window.h | 4 +- - src/ephy-shell.c | 10 +- - src/epiphany.gresource.xml | 2 +- - src/resources/epiphany-history-window-ui.xml | 47 - - src/resources/history-dialog.ui | 356 +++++++ - src/window-commands.c | 4 + - 8 files changed, 768 insertions(+), 1105 deletions(-) - -commit bd6dd7cf2b27c4196f40ef1e3365cc7a1c8113cd -Author: William Jon McCann -Date: Fri Jan 3 12:51:21 2014 -0500 - - Remove unused widgets - - After redesign of history dialog. - - https://bugzilla.gnome.org/show_bug.cgi?id=721415 - - data/org.gnome.epiphany.gschema.xml | 16 --- - lib/ephy-prefs.h | 14 -- - lib/widgets/Makefile.am | 10 -- - lib/widgets/ephy-history-view.c | 200 ----------------------------- - lib/widgets/ephy-history-view.h | 61 --------- - lib/widgets/ephy-hosts-store.c | 248 ------------------------------------ - lib/widgets/ephy-hosts-store.h | 71 ----------- - lib/widgets/ephy-hosts-view.c | 115 ----------------- - lib/widgets/ephy-hosts-view.h | 59 --------- - lib/widgets/ephy-urls-store.c | 95 -------------- - lib/widgets/ephy-urls-store.h | 66 ---------- - lib/widgets/ephy-urls-view.c | 96 -------------- - lib/widgets/ephy-urls-view.h | 56 -------- - po/POTFILES.in | 2 - - 14 files changed, 1109 deletions(-) - -commit 2d77a8e379028d529d34981aa20fde0f0d7c1525 -Author: William Jon McCann -Date: Fri Jan 3 12:42:01 2014 -0500 - - Make bookmark properties dialog modal - - https://bugzilla.gnome.org/show_bug.cgi?id=721415 - - src/bookmarks/ephy-bookmark-properties.c | 1 + - 1 file changed, 1 insertion(+) - -commit 936840d5d00885d3741275321fdb461f7f76f103 -Author: Lorenzo Tilve -Date: Tue Feb 4 18:35:22 2014 +0100 - - Refactor redundant code of the different error pages - - Merges the almost identical process-crash.html, recovery.html and - error.html pages into a single one, allowing any specific style - change to the error pages through passing a custom class to the - resultant generic error template. - - https://bugzilla.gnome.org/show_bug.cgi?id=705180 - - embed/ephy-web-view.c | 20 +++++++----------- - src/Makefile.am | 2 -- - src/epiphany.gresource.xml | 2 -- - src/resources/error.html | 2 +- - src/resources/process-crash.html | 44 --------------------------------------- - src/resources/recovery.html | 45 ---------------------------------------- - 6 files changed, 9 insertions(+), 106 deletions(-) - -commit c83851ee1d4e29ed327e529a75a6e82f37e67e64 -Author: Daniel Mustieles -Date: Thu Feb 6 13:11:38 2014 +0100 - - Updated Spanish translation - - po/es.po | 409 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 203 insertions(+), 206 deletions(-) - -commit 31bc1fe6ccbe53dfd14822d44fc9563a32799316 -Author: Carlos Garcia Campos -Date: Thu Jan 30 17:02:05 2014 +0100 - - Add support for using multiple web processes - - There's now a setting to set the process model. - - https://bugzilla.gnome.org/show_bug.cgi?id=723302 - - data/org.gnome.epiphany.gschema.xml | 5 + - embed/Makefile.am | 4 +- - embed/ephy-embed-shell.c | 237 +++++++++++------- - embed/ephy-embed-shell.h | 1 - - embed/ephy-web-extension-proxy.c | 400 +++++++++++++++++++++++++++++++ - embed/ephy-web-extension-proxy.h | 100 ++++++++ - embed/ephy-web-view.c | 249 +++++++++++++++---- - embed/ephy-web-view.h | 17 ++ - embed/web-extension/ephy-web-extension.c | 64 ++++- - lib/ephy-prefs.h | 7 + - src/window-commands.c | 98 ++------ - 11 files changed, 957 insertions(+), 225 deletions(-) - -commit aaf6422a17c7080f98d2d82d95ff6313ca500c0a -Author: Carlos Garcia Campos -Date: Mon Jan 27 12:07:55 2014 +0100 - - web-extension: Use initialize-web-extensions signal to pass user data to the web extension - - Instead of using environment variables. - - https://bugzilla.gnome.org/show_bug.cgi?id=723087 - - configure.ac | 2 +- - embed/ephy-embed-shell.c | 36 +++++++++++++++----------------- - embed/web-extension/ephy-web-extension.c | 14 +++++++++---- - 3 files changed, 28 insertions(+), 24 deletions(-) - -commit 8430003499d61122c44ebba0dc6d4544d03a884b -Author: Carlos Garcia Campos -Date: Wed Jan 29 15:24:15 2014 +0100 - - Make the location entry non-editable for popups - - src/ephy-window.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit d2ec9ad9588e7f720af6fa119ab63086909afc38 -Author: Carlos Garcia Campos -Date: Wed Jan 29 15:15:52 2014 +0100 - - popup windows should respect the window properties - - Change the windows chrome according to the window properties used when - creating popups. - - https://bugzilla.gnome.org/show_bug.cgi?id=723238 - - src/ephy-toolbar.c | 29 +++++++++++++++++++++++++---- - src/ephy-window.c | 26 +++++++++++++++++++++++--- - src/ephy-window.h | 2 ++ - 3 files changed, 50 insertions(+), 7 deletions(-) - -commit 10e89a12c5c56fccf17344f834b968fb604560fd -Author: Carlos Garcia Campos -Date: Wed Jan 29 12:34:46 2014 +0100 - - Move the UI chrome handling to EphyWindow - - Unify all chrome flags in a single enum used by EphyWindow. - - embed/ephy-embed-container.c | 26 ------- - embed/ephy-embed-container.h | 3 - - embed/ephy-web-view.c | 5 +- - embed/ephy-web-view.h | 8 --- - src/ephy-window.c | 168 ++++++++++++++++++++----------------------- - src/ephy-window.h | 10 +++ - 6 files changed, 89 insertions(+), 131 deletions(-) - -commit 335f5f27a6ccb2dffea4fb8b4aa2203fce8a691c -Author: Carlos Garcia Campos -Date: Wed Jan 29 14:32:44 2014 +0100 - - Make sure the toolbar is always visible - - Now that Epiphany is using a headerbar hiding the toolbar means there's no - way to move or close the window. - - src/ephy-window.c | 55 ++++++------------------------------------------------- - 1 file changed, 6 insertions(+), 49 deletions(-) - -commit dfb05e78f84b9980818039ce031388454bee87d9 -Author: Carlos Garcia Campos -Date: Wed Jan 29 11:12:29 2014 +0100 - - Remove show-toolbars setting - - Epiphany doesn't have toolbars anymore and we don't want to hide the - headerbar. - - data/epiphany.convert | 1 - - data/org.gnome.epiphany.gschema.xml | 4 ---- - lib/ephy-prefs.h | 1 - - src/ephy-window.c | 48 ++----------------------------------- - 4 files changed, 2 insertions(+), 52 deletions(-) - -commit 49277944be5d7dee1eee237ab2c9459900370ba0 -Author: Carlos Garcia Campos -Date: Tue Jan 28 12:36:13 2014 +0100 - - Move the window geometry handling from EphyEmbed to EphyWindow - - EphyEmbed should not change the window geometry. - - embed/ephy-embed.c | 28 ---------------------------- - src/ephy-window.c | 17 +++++++++++++++++ - 2 files changed, 17 insertions(+), 28 deletions(-) - -commit 2f600c1548d93d041ea8a073a6ca510612063138 -Author: Carlos Garcia Campos -Date: Tue Jan 28 12:17:04 2014 +0100 - - Remove chrome and popup parameters from ephy_shell_new_tab_full - - It's always called with chome=ALL and is-popup=FALSE. The window is - configured according to the WebKitWindowProperties of the view after is - created. - - src/ephy-session.c | 2 -- - src/ephy-shell.c | 10 ++-------- - src/ephy-shell.h | 2 -- - src/ephy-window.c | 24 +----------------------- - src/ephy-window.h | 3 --- - tests/ephy-shell-test.c | 4 ---- - 6 files changed, 3 insertions(+), 42 deletions(-) - -commit 4d89990c17c398cda445caf156c0497f962299c3 -Author: Carlos Garcia Campos -Date: Sun Jan 26 16:08:57 2014 +0100 - - Do not open an additional empty window when ephy is launched in private mode with arguments - - When the session is resumed in private mode, a new empty window is - always shown. The shell should reuse that empty window for the first - argument, and open new tabs for the rest of the aguments. - - https://bugzilla.gnome.org/show_bug.cgi?id=723022 - - src/ephy-main.c | 10 +++++++--- - src/ephy-shell.c | 8 ++++++-- - 2 files changed, 13 insertions(+), 5 deletions(-) - -commit b4045491948c376058b203add358a328b7ab90b6 -Author: Claudio Saavedra -Date: Tue Feb 4 21:50:28 2014 +0200 - - ephy-history-service: Let ephy_history_service_find_urls() take a sorting type - - lib/history/ephy-history-service.c | 3 ++- - lib/history/ephy-history-service.h | 2 +- - src/ephy-completion-model.c | 4 +++- - src/ephy-history-window.c | 3 ++- - 4 files changed, 8 insertions(+), 4 deletions(-) - -commit 1223aeb461e2b08b7b6302faee17e37d8ddff05f -Author: Claudio Saavedra -Date: Tue Feb 4 21:48:04 2014 +0200 - - ephy-history-service-urls-table: implement missing sorting modes - - lib/history/ephy-history-service-urls-table.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 4339644c32e7c600d9c5e22212c04d5c2045e88b -Author: Claudio Saavedra -Date: Tue Feb 4 21:46:55 2014 +0200 - - ephy-history-types: make the history sort type enum readable - - lib/history/ephy-history-service-urls-table.c | 4 ++-- - lib/history/ephy-history-service.c | 2 +- - lib/history/ephy-history-types.h | 8 ++++---- - lib/widgets/ephy-frecent-store.c | 2 +- - tests/ephy-history-test.c | 6 +++--- - 5 files changed, 11 insertions(+), 11 deletions(-) - -commit c38729dcba3c40a3a7ca1049e2526874023ce816 -Author: Yaron Shahrabani -Date: Mon Feb 3 16:08:43 2014 +0200 - - Updated Hebrew translation. - - po/he.po | 1005 ++++++++++++++++---------------------------------------------- - 1 file changed, 257 insertions(+), 748 deletions(-) - -commit 5c05542d12d51b4884b2840382bb9dffce9f82ea -Author: Claudio Saavedra -Date: Fri Jan 31 16:59:40 2014 +0200 - - Revert "Updated FSF's address" - - This reverts commit d1a500a86767210ebae8150f0713c602141e2477. - - embed/ephy-embed.c | 97 ++++++++++++++++++++++++++++++++++++- - embed/uri-tester.c | 3 +- - embed/uri-tester.h | 3 +- - lib/egg/eggtreemultidnd.c | 4 +- - lib/egg/eggtreemultidnd.h | 4 +- - lib/widgets/nautilus-floating-bar.c | 4 +- - lib/widgets/nautilus-floating-bar.h | 4 +- - 7 files changed, 112 insertions(+), 7 deletions(-) - -commit d1a500a86767210ebae8150f0713c602141e2477 -Author: Daniel Mustieles -Date: Thu Jan 23 12:51:07 2014 +0100 - - Updated FSF's address - - embed/ephy-embed.c | 97 +------------------------------------ - embed/uri-tester.c | 3 +- - embed/uri-tester.h | 3 +- - lib/egg/eggtreemultidnd.c | 4 +- - lib/egg/eggtreemultidnd.h | 4 +- - lib/widgets/nautilus-floating-bar.c | 4 +- - lib/widgets/nautilus-floating-bar.h | 4 +- - 7 files changed, 7 insertions(+), 112 deletions(-) - -commit 2ac372c0ba757e15ec379fe992ae477ef53e8ebe -Author: Baptiste Mille-Mathias -Date: Tue Jan 28 20:30:08 2014 +0000 - - Rename topic "Nouvelles" en "Actualites" - - https://bugzilla.gnome.org/show_bug.cgi?id=723192 - - po/fr.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 532062b3cb588999d95bb686bfe73087ddc35be0 -Author: William Jon McCann -Date: Wed Jan 29 09:46:54 2014 -0500 - - Make temporary download files "hidden" - - embed/ephy-download.c | 2 +- - src/window-commands.c | 2 +- - tests/ephy-download-test.c | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -commit 66676e1c0009dc3d232f12b88cc7c2bbca583d74 -Author: William Jon McCann -Date: Wed Jan 29 09:46:31 2014 -0500 - - Mark dialogs as modal - - So they can be displayed with the correct style. - - lib/ephy-file-chooser.c | 1 + - lib/widgets/ephy-certificate-dialog.c | 1 + - 2 files changed, 2 insertions(+) - -commit 7b1b582bd343ed34ee0b8398bdd77410c7e279ef -Author: Frédéric Péters -Date: Fri Jan 3 20:29:03 2014 +0100 - - uri-tester: do not block on rules we do not handle - - https://bugzilla.gnome.org/show_bug.cgi?id=711124 - - embed/uri-tester.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 8adf4da93ed23a9c0352d611c158c419c2a4c3f9 -Author: Marek Černocký -Date: Mon Jan 27 09:35:35 2014 +0100 - - Updated Czech translation - - help/cs/cs.po | 690 +++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 419 insertions(+), 271 deletions(-) - -commit 9381141fb3d4fab540cc496ac51a8c082078a669 -Author: Ting-Wei Lan -Date: Sun Jan 19 03:43:00 2014 +0000 - - link to libexecinfo if needed - - https://bugzilla.gnome.org/show_bug.cgi?id=722521 - - configure.ac | 1 + - 1 file changed, 1 insertion(+) - -commit a8867e790931efd7dab758055c45f7a44acb36ae -Author: Kjartan Maraas -Date: Wed Jan 22 00:38:33 2014 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 3f4363a4d7b0b75ffa86be09129b765161be5e35 -Author: Kjartan Maraas -Date: Tue Jan 21 21:22:27 2014 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 1246 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 627 insertions(+), 619 deletions(-) - -commit 2661c2c1312e9b9489de4ae4c1834d5d2444347e -Author: Bastien Nocera -Date: Tue Jan 21 08:20:54 2014 +0100 - - lib: Update tracking blacklist - - From https://bitbucket.org/veg/pureurl/commits/9d309ef643421821a9e6630f84c522b216f9cead - - https://bugzilla.gnome.org/show_bug.cgi?id=722675 - - lib/ephy-uri-helpers.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit d0d43fe1876bdba36228114da65576c820e88460 -Author: Enrico Nicoletto -Date: Sun Jan 19 21:11:48 2014 -0200 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 754 +++++++++++++++++++++--------------------------------------- - 1 file changed, 266 insertions(+), 488 deletions(-) - -commit ad778b400ca7715286724cda884d2cbf73faf861 -Author: Reinout van Schouwen -Date: Mon Jan 20 00:04:31 2014 +0100 - - Updated Dutch translation - - po/nl.po | 765 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 424 insertions(+), 341 deletions(-) - -commit 28ca379205f22d7183ad1dece6a8a209a9be529f -Author: Marek Černocký -Date: Sun Jan 19 09:43:38 2014 +0100 - - Updated Czech translation - - po/cs.po | 1265 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 641 insertions(+), 624 deletions(-) - -commit 25af77c7a97bb5ce8e7eeaf6974286b6176205af -Author: Tong Hui -Date: Sat Jan 18 16:30:06 2014 +0800 - - Update Chinese simplified translation - - po/zh_CN.po | 495 ++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 262 insertions(+), 233 deletions(-) - -commit 77637eebb520226057ce013f5827b349418f0284 -Author: Chao-Hsiung Liao -Date: Thu Jan 16 19:33:05 2014 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 42 +++++++++++++++++++++--------------------- - po/zh_TW.po | 42 +++++++++++++++++++++--------------------- - 2 files changed, 42 insertions(+), 42 deletions(-) - -commit c6e2cc5f55a637c2e9b254e763b2779a01d6dea4 -Author: Manuel Rego Casasnovas -Date: Tue Jan 14 17:12:34 2014 +0100 - - Fix web view document type setting it only for the main resource - - Move document type set after main resource check. Otherwise Epiphany might think - that some pages are images and disable some UI features, when they are actually - regular pages but some images have been loaded a bit later than the HTML. - - https://bugzilla.gnome.org/show_bug.cgi?id=722194 - - embed/ephy-web-view.c | 23 ++++++++++++----------- - 1 file changed, 12 insertions(+), 11 deletions(-) - -commit 4a0e093bb09cac5ba08ad643b390b0eb14014338 -Author: Khaled Hosny -Date: Thu Jan 16 00:43:06 2014 +0200 - - Update Arabic translation - - po/ar.po | 1445 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 788 insertions(+), 657 deletions(-) - -commit 47740045df444495efdbe5149e8550f1e39b23d5 -Author: Jiri Grönroos -Date: Wed Jan 15 15:02:34 2014 +0200 - - Finnish translation update - - po/fi.po | 899 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 484 insertions(+), 415 deletions(-) - -commit 1f0e7468b543ec053a2a3203aea539e80aa25f54 -Author: Chao-Hsiung Liao -Date: Wed Jan 15 19:41:30 2014 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 1375 ++++++++++++++++++++++++++++++++-------------------------- - po/zh_TW.po | 1396 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1543 insertions(+), 1228 deletions(-) - -commit 1df0a59ef15b6b438431335028ac0e4606774fa0 -Author: William Jon McCann -Date: Mon Jan 13 16:53:11 2014 -0500 - - Fix sensitivity of download popup menu - - https://bugzilla.gnome.org/show_bug.cgi?id=722136 - - lib/widgets/ephy-download-widget.c | 25 +++++++++++++++++++------ - 1 file changed, 19 insertions(+), 6 deletions(-) - -commit a3dfd911b7faf7eabc0d8ac45aae4259f5e2de0e -Author: Claudio Saavedra -Date: Tue Jan 14 17:51:24 2014 +0200 - - lib: fix a couple of return values - - lib/ephy-file-helpers.c | 4 +++- - lib/widgets/ephy-download-widget.c | 2 +- - 2 files changed, 4 insertions(+), 2 deletions(-) - -commit 2ff9861151c969f1883593144d69761895c530ea -Author: Claudio Saavedra -Date: Tue Jan 14 00:12:49 2014 +0200 - - [release] 3.11.3 - - NEWS | 17 +++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 18 insertions(+), 1 deletion(-) - -commit 00946fff36aed48fac4645a2587bf9c9ef0b0b00 -Author: Bastien Nocera -Date: Mon Dec 16 11:13:48 2013 +0100 - - Remove analytics from browsed URLs - - When using "Do not track", also remove analytics information - from URLs using the new URI helper. - - https://bugzilla.gnome.org/show_bug.cgi?id=720520 - - embed/web-extension/Makefile.am | 2 ++ - embed/web-extension/ephy-web-extension.c | 13 ++++++++++++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 7f09ee3763add068fc715da677568ffbbd2273df -Author: Bastien Nocera -Date: Mon Dec 16 11:11:21 2013 +0100 - - lib: Add helper to remove tracking from URIs - - This function, based on the PureURL Firefox add-on, will strip - tracking information from URLs, such as analytics information. - - See https://addons.mozilla.org/fr/firefox/addon/pure-url/ - - https://bugzilla.gnome.org/show_bug.cgi?id=720520 - - lib/Makefile.am | 2 + - lib/ephy-uri-helpers.c | 258 ++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-uri-helpers.h | 38 +++++++ - tests/Makefile.am | 4 + - tests/ephy-uri-helpers-test.c | 82 ++++++++++++++ - 5 files changed, 384 insertions(+) - -commit d9bf10fa3c3a65596984c38202d2de49bb694014 -Author: William Jon McCann -Date: Mon Jan 13 11:56:07 2014 -0500 - - Fix process crashed error page - - embed/ephy-web-view.c | 2 +- - src/resources/process-crash.html | 9 +++++++++ - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit c3928d4a4c1e0c69c01d5c62e6d0217d8fe9f7fc -Author: Carlos Garcia Campos -Date: Mon Jan 13 17:44:46 2014 +0100 - - ephy-web-view: Use new API in WebKitResponsePolicyDecision to check if mime type is supported - - To decide whether to start a download or not. This method is a lot more - efficient, because it doesn't require to send a message to the web - process like webkit_web_view_can_show_mime_type() does. - - configure.ac | 2 +- - embed/ephy-web-view.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 1227c9732890da40a14e746080792a784b9131bb -Author: Carlos Garcia Campos -Date: Thu Jan 9 13:30:52 2014 +0100 - - downloads: Use the filename suggested by the server when asking the user - - https://bugzilla.gnome.org/show_bug.cgi?id=674291 - - src/popup-commands.c | 109 +++++++++++++++++++-------------------------------- - 1 file changed, 40 insertions(+), 69 deletions(-) - -commit d7941bf07f72af1778cdcac66652d1e583620844 -Author: Carlos Garcia Campos -Date: Thu Jan 9 13:27:40 2014 +0100 - - downloads: Do not add automatically the downloads to the UI when they are created - - This allows the creator to decide whether to add the download to the UI - or not and when. The downloads are no longer handled by the - EphyEmbedShell making clear who takes the ownership. Downloads are now - explicitly added to a particular Ephywindow, instead of all the windows - be notified by a download and deciding whether such download belongs to - that particular window or not. - - embed/ephy-download.c | 7 ---- - embed/ephy-embed-shell.c | 92 ------------------------------------------------ - embed/ephy-embed-shell.h | 10 ------ - embed/ephy-embed.c | 10 ------ - embed/ephy-embed.h | 2 -- - src/ephy-shell.c | 6 +++- - src/ephy-window.c | 42 ++++++++-------------- - src/ephy-window.h | 4 +++ - src/popup-commands.c | 4 +++ - 9 files changed, 27 insertions(+), 150 deletions(-) - -commit b84a86d5989b16092856ae3a24a3f8ab917840dd -Author: Carlos Garcia Campos -Date: Thu Jan 9 12:57:41 2014 +0100 - - downloads: Simplify save_property_url - - Remove unused action parameter and ask_user, since it's always called - with TRUE value. - - src/popup-commands.c | 60 ++++++++++++++++++++++------------------------------ - 1 file changed, 25 insertions(+), 35 deletions(-) - -commit 96910a007577333b07fddee67f95ae768cc4e5c0 -Author: Carlos Garcia Campos -Date: Thu Jan 9 12:44:42 2014 +0100 - - downloads: Do not duplicate the destination in EphyDownload - - Use the WebKitDownload API instead. It simplifies the code and ensures - we always use the right destination. - - embed/ephy-download.c | 79 +++++++++++---------------------------------------- - 1 file changed, 17 insertions(+), 62 deletions(-) - -commit 1fbe35039f6706c2e10c888859ea392460fc0d8f -Author: Fran Diéguez -Date: Mon Jan 13 01:38:57 2014 +0100 - - Updated Galician translations - - po/gl.po | 382 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 206 insertions(+), 176 deletions(-) - -commit 9a35dc32ec45847e3e2a31f2ef6ec3e7ed1f35bf -Author: Dimitris Spingos -Date: Sun Jan 12 20:13:24 2014 +0200 - - Updated Greek translation - - po/el.po | 390 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 210 insertions(+), 180 deletions(-) - -commit c8e5911606ef056cfbae3daafca633a7fda223e8 -Author: Aurimas Černius -Date: Sun Jan 12 19:43:33 2014 +0200 - - Updated Lithuanian translation - - po/lt.po | 469 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 233 insertions(+), 236 deletions(-) - -commit 884643e2740a29dddb1bf10917efcd4d76258600 -Author: Daniel Mustieles -Date: Fri Jan 10 11:04:30 2014 +0100 - - Updated Spanish translation - - po/es.po | 147 ++++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 93 insertions(+), 54 deletions(-) - -commit d2b9c24175387c9951c362ff052a65061465435c -Author: Yosef Or Boczko -Date: Wed Jan 8 17:15:57 2014 +0200 - - Updated Hebrew translation - - po/he.po | 119 +++++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 77 insertions(+), 42 deletions(-) - -commit 4b80445233471e4fd9f92b59fcf0e213e4d631bf -Author: Michael Catanzaro -Date: Wed Jan 8 08:54:41 2014 -0600 - - Use HTTPS for DDG and Google searches by default - - Change the default bookmarks, the gschema, and the search engine options - in the preferences dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=707694 - - data/default-bookmarks.rdf.in | 12 ++++++------ - data/org.gnome.epiphany.gschema.xml | 2 +- - src/prefs-dialog.c | 4 ++-- - 3 files changed, 9 insertions(+), 9 deletions(-) - -commit f24d612266b4dbf27c4ce91f3807e1f38a139bd9 -Author: William Jon McCann -Date: Sun Dec 22 11:27:11 2013 -0500 - - Use a menu button for the download item - - https://bugzilla.gnome.org/show_bug.cgi?id=720941 - - lib/widgets/ephy-download-widget.c | 73 ++++++++++++++++++++------------------ - 1 file changed, 39 insertions(+), 34 deletions(-) - -commit e0bf4057b44661cb83ee24f9195e817ea0c00cbd -Author: William Jon McCann -Date: Sun Dec 22 10:48:45 2013 -0500 - - Fix download bar close button - - https://bugzilla.gnome.org/show_bug.cgi?id=720941 - - src/ephy-window.c | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -commit a2cb59a934cf33be6731ac6e274d847dc776c92d -Author: William Jon McCann -Date: Sun Dec 22 10:27:01 2013 -0500 - - Make download label smaller - - https://bugzilla.gnome.org/show_bug.cgi?id=720941 - - lib/widgets/ephy-download-widget.c | 12 ++++++++++++ - 1 file changed, 12 insertions(+) - -commit 6b7999b1ea3428d60d6853f0e30d299fec8d4dfd -Author: William Jon McCann -Date: Sun Dec 22 10:07:01 2013 -0500 - - Separate the icon from the label in the download item - - https://bugzilla.gnome.org/show_bug.cgi?id=720941 - - lib/widgets/ephy-download-widget.c | 1 + - 1 file changed, 1 insertion(+) - -commit 08aa34f09eeb4f04bd5c34c355a7c7a474732470 -Author: William Jon McCann -Date: Sun Dec 22 09:23:25 2013 -0500 - - Improve the display of remaining time - - https://bugzilla.gnome.org/show_bug.cgi?id=720941 - - lib/widgets/ephy-download-widget.c | 61 ++++++++++++++++++++++++-------------- - 1 file changed, 39 insertions(+), 22 deletions(-) - -commit b390094c31c704153fb9fab767c43cd134a4288c -Author: William Jon McCann -Date: Tue Jan 7 20:46:33 2014 -0500 - - Refactor download widget to split create and populate - - https://bugzilla.gnome.org/show_bug.cgi?id=720941 - - lib/widgets/ephy-download-widget.c | 218 ++++++++++++++++++++++--------------- - 1 file changed, 132 insertions(+), 86 deletions(-) - -commit b8347fa31225f200cd1f6ae1a0ab48a68e6819d8 -Author: Carlos Garcia Campos -Date: Wed Jan 8 12:46:54 2014 +0100 - - downloads: Prefer the content type returned by the server - - Instead of using the destination file. g_file_query_info() does - synchronous I/O, so use it only as fallback when the server response - doesn't include a content type header. - - https://bugzilla.gnome.org/show_bug.cgi?id=721781 - - embed/ephy-download.c | 55 ++++++++++++++++++++++++--------------------------- - 1 file changed, 26 insertions(+), 29 deletions(-) - -commit 4fc9029ad60b18fe3232c2ffc1b1757a42744bab -Author: Daniel Mustieles -Date: Wed Jan 8 12:42:03 2014 +0100 - - Updated Spanish translation - - po/es.po | 283 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 143 insertions(+), 140 deletions(-) - -commit 2d5c91603bb5a7856ef940a3e3c7429f263cc9b8 -Author: Carlos Garcia Campos -Date: Wed Jan 8 12:28:54 2014 +0100 - - downloads: Rename ephy_download_new_for_download as ephy_download_new - - embed/ephy-download.c | 8 ++++---- - embed/ephy-download.h | 5 ++--- - src/ephy-shell.c | 2 +- - 3 files changed, 7 insertions(+), 8 deletions(-) - -commit e28f8c6f268376899527bf00ccfb8380eeef0cce -Author: Carlos Garcia Campos -Date: Wed Jan 8 12:03:54 2014 +0100 - - downloads: Remove unused EphyDownload:source property - - embed/ephy-download.c | 39 --------------------------------------- - embed/ephy-download.h | 1 - - tests/ephy-download-test.c | 7 +++++-- - 3 files changed, 5 insertions(+), 42 deletions(-) - -commit 227c7f3f2dcc703133a27bf6d7848f4eec6efbb8 -Author: Carlos Garcia Campos -Date: Wed Jan 8 11:56:02 2014 +0100 - - downloads: Remove ephy_download_start() - - This doesn't make sense now in WebKit2, because a WebKitDownload object - represents an already started download. - - embed/ephy-download.c | 21 ++------------------- - embed/ephy-download.h | 1 - - src/popup-commands.c | 4 ---- - tests/ephy-download-test.c | 1 - - 4 files changed, 2 insertions(+), 25 deletions(-) - -commit 064e878a4b1f23539df54b0234b0cb287b0e0c8e -Author: Carlos Garcia Campos -Date: Wed Jan 8 11:49:45 2014 +0100 - - downloads: Remove ephy_download_set_auto_destination() - - It's currently no-op. - - embed/ephy-download.c | 15 --------------- - embed/ephy-download.h | 1 - - embed/ephy-embed.c | 1 - - src/popup-commands.c | 2 -- - 4 files changed, 19 deletions(-) - -commit 792120a5cecb76e0426afc442ae7507432c0692b -Author: Carlos Garcia Campos -Date: Wed Jan 8 11:39:18 2014 +0100 - - downloads: Remove unused method ephy_download_new() - - embed/ephy-download.c | 18 +----------------- - embed/ephy-download.h | 1 - - 2 files changed, 1 insertion(+), 18 deletions(-) - -commit f255b36e3807f9fc8b99893e5394236f7665a01a -Author: Carlos Garcia Campos -Date: Wed Jan 8 11:36:58 2014 +0100 - - downloads: Remove unexistent method ephy_download_pause() - - embed/ephy-download.h | 1 - - 1 file changed, 1 deletion(-) - -commit 8fe41d2fb949b982c4d475b8304745aa534b97e7 -Author: Colin Walters -Date: Tue Jan 7 18:47:36 2014 -0500 - - build: Fix srcdir != builddir from git - - Continuous does srcdir != builddir from git. Now that we're including - generates files from lib/widgets, we need $(builddir). - - embed/Makefile.am | 1 + - src/Makefile.am | 2 ++ - src/bookmarks/Makefile.am | 1 + - tests/Makefile.am | 1 + - 4 files changed, 5 insertions(+) - -commit 8c1d336d106f3419e095361c6935cd1b2e2ed227 -Author: Yosef Or Boczko -Date: Wed Jan 8 01:32:05 2014 +0200 - - Updated Hebrew translation - - po/he.po | 283 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 145 insertions(+), 138 deletions(-) - -commit 6a47dd3f1594cf510d953bd6db2e443eec488da1 -Author: Yosef Or Boczko -Date: Wed Jan 8 01:23:06 2014 +0200 - - Mark a string to translatable - - src/resources/epiphany.ui | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c92b52c38495c79add07bd91bcf181beae80d20f -Author: William Jon McCann -Date: Tue Dec 31 13:31:45 2013 -0500 - - Remove use of stock items in floating status bar - - By syncing widget from nautilus - - https://bugzilla.gnome.org/show_bug.cgi?id=721285 - - embed/ephy-embed.c | 4 +- - lib/widgets/nautilus-floating-bar.c | 134 +++++++++++++++++++++++++++--------- - lib/widgets/nautilus-floating-bar.h | 12 +++- - 3 files changed, 111 insertions(+), 39 deletions(-) - -commit 3dc55cfc1de7029575f0a145f875bdb7ccb6ba00 -Author: William Jon McCann -Date: Tue Dec 31 13:20:40 2013 -0500 - - Don't use stock items and deprecated widgets in lang prefs dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=721285 - - src/resources/prefs-lang-dialog.ui | 15 ++++++--------- - 1 file changed, 6 insertions(+), 9 deletions(-) - -commit 116810b771501f5c40216f6bc792bc83ada627f5 -Author: William Jon McCann -Date: Tue Jan 7 17:17:44 2014 -0500 - - Don't use stock and deprecated widgets in prefs dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=721285 - - src/resources/prefs-dialog.ui | 78 +++++++++++++++++++++++++++---------------- - 1 file changed, 50 insertions(+), 28 deletions(-) - -commit e532c781b15b2dea844bbc65d04bcdd3da32ffb6 -Author: William Jon McCann -Date: Tue Jan 7 17:17:25 2014 -0500 - - Remove help button from prefs dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=721285 - - src/prefs-dialog.c | 6 ------ - src/resources/prefs-dialog.ui | 17 ----------------- - 2 files changed, 23 deletions(-) - -commit d7324a6bfda05fd47fd7579ebc8ff092db70c266 -Author: William Jon McCann -Date: Tue Jan 7 17:15:40 2014 -0500 - - Don't use stock items and deprecated widgets in encoding dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=721285 - - src/resources/epiphany.ui | 79 +++++++++++++++++++++++++++-------------------- - 1 file changed, 45 insertions(+), 34 deletions(-) - -commit 7c53b353cf175e6f9fcef549e9f562980b017cd8 -Author: William Jon McCann -Date: Tue Jan 7 17:15:01 2014 -0500 - - Remove help button from the encoding dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=721285 - - src/ephy-encoding-dialog.c | 6 ------ - src/resources/epiphany.ui | 18 ------------------ - 2 files changed, 24 deletions(-) - -commit 3bf0f7dbb2c8dea3ac7b66d2ca62ed6779e66077 -Author: William Jon McCann -Date: Tue Dec 31 12:17:34 2013 -0500 - - Don't use stock ids for the security state of a page - - Use an enum instead. - - https://bugzilla.gnome.org/show_bug.cgi?id=721285 - - lib/widgets/Makefile.am | 3 ++- - lib/widgets/ephy-location-entry.c | 40 ++++++++++++++++++++------------------- - lib/widgets/ephy-location-entry.h | 13 ++++++++----- - src/ephy-location-controller.c | 36 +++++++++++++++++------------------ - src/ephy-window.c | 14 +++++++------- - 5 files changed, 56 insertions(+), 50 deletions(-) - -commit a61723cf43a978e418afd4bd8c15d79c8dfb4d4d -Author: William Jon McCann -Date: Sat Dec 21 09:11:31 2013 -0500 - - Use a smaller text size for the url line in the completion menu - - https://bugzilla.gnome.org/show_bug.cgi?id=720876 - - lib/widgets/ephy-location-entry.c | 36 +++++++++++++++++++----------------- - 1 file changed, 19 insertions(+), 17 deletions(-) - -commit a5760597d18267659293a5c1d820da82c42c315d -Author: William Jon McCann -Date: Sat Dec 21 08:16:47 2013 -0500 - - Match spacing in current Adwaita - - https://bugzilla.gnome.org/show_bug.cgi?id=720876 - - lib/widgets/ephy-location-entry.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a22a8ae7543ce01316b93ffc3558aa333fd953e8 -Author: William Jon McCann -Date: Sat Dec 21 07:48:42 2013 -0500 - - Increase the row padding in the completion menu - - https://bugzilla.gnome.org/show_bug.cgi?id=720876 - - lib/widgets/ephy-location-entry.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4fc7602943406e19d211221e3a3ff7a90c019b95 -Author: William Jon McCann -Date: Sat Dec 21 07:23:29 2013 -0500 - - Add more padding around the drag surface - - https://bugzilla.gnome.org/show_bug.cgi?id=720876 - - lib/widgets/ephy-location-entry.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 0b1e5e06d043057ae1126f468fd40bf6fb4190b9 -Author: William Jon McCann -Date: Sat Dec 21 07:18:19 2013 -0500 - - Center the favicon vertically on the drag surface - - https://bugzilla.gnome.org/show_bug.cgi?id=720876 - - lib/widgets/ephy-location-entry.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 4f76ca479f52ff23b66109fed641b590a7d249d5 -Author: William Jon McCann -Date: Sat Dec 21 06:51:40 2013 -0500 - - Always use a favicon in the drag surface - - https://bugzilla.gnome.org/show_bug.cgi?id=720876 - - lib/widgets/ephy-location-entry.c | 19 ++++++++++++++----- - 1 file changed, 14 insertions(+), 5 deletions(-) - -commit fb0de41f33913cded3eb0ebc59dd4e7ad85bc520 -Author: William Jon McCann -Date: Sat Dec 21 06:30:49 2013 -0500 - - Don't show null in page title for about:plugins - - If for some reason an about: page doesn't load the next startup - will show one of the error screens. Those screens assume they - can get a hostname for the URL. There is no hostname for about: - schemes. So, in that case just display the entire URL. - - https://bugzilla.gnome.org/show_bug.cgi?id=720876 - - embed/ephy-web-view.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit e504fb8fbc94a467190db0526bbe165ca9b6d250 -Author: William Jon McCann -Date: Sat Dec 21 06:25:35 2013 -0500 - - Don't show ephy-about: in the UI - - https://bugzilla.gnome.org/show_bug.cgi?id=720876 - - lib/widgets/ephy-location-entry.c | 21 +++++++++++++++------ - 1 file changed, 15 insertions(+), 6 deletions(-) - -commit 6219f2b9e624ed32d5514906cb98cd94e3e16b2e -Author: William Jon McCann -Date: Fri Jan 3 13:24:28 2014 -0500 - - Copy all metadata when moving files - - lib/ephy-file-helpers.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 5409a66aaa3ff2178504c6cfaa7adfe03624cba8 -Author: Daniel Wyatt -Date: Sat Nov 30 12:47:11 2013 -0500 - - Add ephy_file_move_uri to ephy-file-helpers - - https://bugzilla.gnome.org/show_bug.cgi?id=674291 - - lib/ephy-file-helpers.c | 35 +++++++++++++++++++++++++++++++++++ - lib/ephy-file-helpers.h | 2 ++ - 2 files changed, 37 insertions(+) - -commit 4897f86d5192049e88c4964411eecd07dd5fe43b -Author: Daniel Wyatt -Date: Sat Nov 30 12:46:43 2013 -0500 - - Add filename-suggested signal to EphyDownload - - https://bugzilla.gnome.org/show_bug.cgi?id=674291 - - embed/ephy-download.c | 17 +++++++++++++++++ - embed/ephy-download.h | 2 ++ - 2 files changed, 19 insertions(+) - -commit 007e6de4deb8d5ccb86290fbe0715dae35aede5c -Author: Yosef Or Boczko -Date: Tue Jan 7 22:58:36 2014 +0200 - - ephy-toolbar: Fix item positions - - Also bump GTK+ dependency to 2.1.4. - - https://bugzilla.gnome.org/show_bug.cgi?id=721713 - - configure.ac | 2 +- - src/ephy-toolbar.c | 18 +++++++++--------- - 2 files changed, 10 insertions(+), 10 deletions(-) - -commit 628dd3dc3994f063a257b5b3349cbf7f65d3076f -Author: Garrett Regier -Date: Tue Jan 7 15:54:27 2014 -0500 - - Set downloads that fail as finished - - Otherwise we will show a dialog when closing the window - about unfinished downloads. - - https://bugzilla.gnome.org/show_bug.cgi?id=703576 - - lib/widgets/ephy-download-widget.c | 1 + - 1 file changed, 1 insertion(+) - -commit 297c522463fb232ca23c6b1657fb3c2dd5aa526c -Author: Garrett Regier -Date: Wed Jul 3 13:46:05 2013 -0700 - - Fix failed downloads to disconnect from the finished handler - - Otherwise the finished signal will be called right after the failed - handler and the download's label will be set to finished instead - of the error message. - - Signed-off-by: Garrett Regier - - https://bugzilla.gnome.org/show_bug.cgi?id=703577 - - lib/widgets/ephy-download-widget.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit d3636181ea83ef14daa47ed21b8f02063e76115e -Author: William Jon McCann -Date: Sat Dec 21 13:39:40 2013 -0500 - - Don't open downloads automatically - - It is a bit strange to have apps open at random times in the future. - - https://bugzilla.gnome.org/show_bug.cgi?id=675854 - - data/org.gnome.epiphany.gschema.xml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6044c959c13f5d2e9950379c2f5620e724d85414 -Author: Bastien Nocera -Date: Thu Dec 19 18:37:11 2013 +0100 - - Revert "ephy-embed-single: also initialize nspluginwrapper plugins in WebKit2" - - The only plugin nspluginwrapper could really handle was Flash. Flash has - had a 64-bit version for a while, and isn't available separately from - Google Chrome any more. So, nspluginwrapper doesn't have anything to - support, ergo, let's remove nspluginwrapper support. - - This reverts commit 09f082567a909bc9369f57a2e14b28846057814e. - - https://bugzilla.gnome.org/show_bug.cgi?id=720758 - - embed/ephy-embed-shell.c | 5 ----- - 1 file changed, 5 deletions(-) - -commit 66160f5f2cd69383b9152a1579d1d92082a8afd1 -Author: William Jon McCann -Date: Thu Dec 19 14:05:29 2013 -0500 - - about: display whether plugins are disabled by preferences - - https://bugzilla.gnome.org/show_bug.cgi?id=720768 - - embed/ephy-about-handler.c | 15 +++++++++++++-- - 1 file changed, 13 insertions(+), 2 deletions(-) - -commit 77a267c05299c29ca9bd17127620a7d90cfb3a67 -Author: Michael Catanzaro -Date: Fri Jan 3 17:04:33 2014 -0600 - - Improve test_ephy_web_view_normalize_or_autosearch - - Run the test using a search engine other than DuckDuckGo, to make sure - changing the search engine works as expected. - - https://bugzilla.gnome.org/show_bug.cgi?id=721348 - - tests/ephy-web-view-test.c | 43 ++++++++++++++++++++++++++++++++----------- - 1 file changed, 32 insertions(+), 11 deletions(-) - -commit 7f5f8cd524f7061cda7b1a439ac891f1e20521bc -Author: Michael Catanzaro -Date: Fri Jan 3 16:12:26 2014 -0600 - - Fix tests if search engine is changed - - test_ephy_web_view_normalize_or_autosearch(): don't assume the default - search engine has never been changed. - - https://bugzilla.gnome.org/show_bug.cgi?id=721348 - - tests/ephy-web-view-test.c | 15 +++++++++++++-- - 1 file changed, 13 insertions(+), 2 deletions(-) - -commit 848f7c1c79ea111c67adfb364f867c6a3aa4d31d -Author: Yosef Or Boczko -Date: Tue Jan 7 15:46:37 2014 +0200 - - ephy-window: Set the icon name as "web-browser" - - For the fallback app-menu in the headerbar. - - https://bugzilla.gnome.org/show_bug.cgi?id=720930 - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 9ba58a92a58d087dcb6b52c1ab727a81938cff4d -Author: Yosef Or Boczko -Date: Mon Jan 6 15:53:27 2014 +0200 - - about-handler: Align correctly the about page of incognito mode in RTL - - https://bugzilla.gnome.org/show_bug.cgi?id=721363 - - embed/ephy-about-handler.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 1ee61ea6100ca526c5fae5552970eeba924279ec -Author: Dimitris Spingos -Date: Sat Jan 4 22:37:57 2014 +0200 - - Updated Greek translation of help - - help/el/el.po | 131 +++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 74 insertions(+), 57 deletions(-) - -commit 0f33d5697a38c8b86266acc118295747c283cf02 -Author: William Jon McCann -Date: Mon Dec 23 07:48:02 2013 -0500 - - Make alt + left/right navigate back/forward - - https://bugzilla.gnome.org/show_bug.cgi?id=720897 - - src/ephy-window.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 4495e1bda293e027d0616b7d4856a5ca3088d67a -Author: William Jon McCann -Date: Sat Dec 21 13:54:38 2013 -0500 - - Reset the language setting when all languages are removed from the UI - - https://bugzilla.gnome.org/show_bug.cgi?id=720896 - - src/prefs-dialog.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 243bbeb5a77410b70aff9f6858b3c6c576b09d47 -Author: Michael Catanzaro -Date: Mon Dec 16 12:35:53 2013 -0600 - - Generate .gitignore with git.mk - - Keeps it up to date. Also, allows cleaning Autotools-generated files - with 'make maintainer-clean' - - https://bugzilla.gnome.org/show_bug.cgi?id=720548 - - .gitignore | 62 -------- - Makefile.am | 7 + - data/Makefile.am | 2 + - data/pages/Makefile.am | 2 + - doc/Makefile.am | 2 + - embed/Makefile.am | 2 + - embed/web-extension/Makefile.am | 2 + - git.mk | 311 ++++++++++++++++++++++++++++++++++++++++ - help/Makefile.am | 2 + - lib/Makefile.am | 2 + - lib/egg/Makefile.am | 2 + - lib/history/Makefile.am | 2 + - lib/widgets/Makefile.am | 2 + - src/Makefile.am | 2 + - src/bookmarks/Makefile.am | 2 + - tests/Makefile.am | 2 + - tests/data/Makefile.am | 2 + - 17 files changed, 346 insertions(+), 62 deletions(-) - -commit d0af7ceec1ee8bf2cb16f1553fc9f4f2879b4886 -Author: William Jon McCann -Date: Thu Jan 2 14:16:18 2014 -0500 - - Use a custom style for incognito mode - - https://bugzilla.gnome.org/show_bug.cgi?id=696078 - - src/Makefile.am | 1 + - src/ephy-main.c | 5 ----- - src/ephy-toolbar.c | 2 ++ - src/ephy-window.c | 5 +++++ - src/epiphany.gresource.xml | 1 + - src/resources/epiphany.css | 26 ++++++++++++++++++++++++++ - src/resources/incognito-tinted.png | Bin 0 -> 8497 bytes - 7 files changed, 35 insertions(+), 5 deletions(-) - -commit 2c5a06f84d64cb640645ed5208577787562753f2 -Author: William Jon McCann -Date: Thu Jan 2 14:39:47 2014 -0500 - - Make incognito image a resource - - https://bugzilla.gnome.org/show_bug.cgi?id=696078 - - data/Makefile.am | 3 +-- - data/incognito.png | Bin 8445 -> 0 bytes - embed/ephy-about-handler.c | 19 +++++++++++-------- - src/Makefile.am | 1 + - src/epiphany.gresource.xml | 1 + - src/resources/incognito.png | Bin 0 -> 8445 bytes - 6 files changed, 14 insertions(+), 10 deletions(-) - -commit 67799d1a3e2370ab327511c223df02aae3379e20 -Author: Andika Triwidada -Date: Fri Jan 3 21:37:29 2014 +0700 - - Updated Indonesian translation - - po/id.po | 1141 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 566 insertions(+), 575 deletions(-) - -commit 768f014f1c40b6be73a200c247d19810ea79f22c -Author: William Jon McCann -Date: Tue Dec 31 14:15:31 2013 -0500 - - Add me and jimmac to about dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=721288 - - data/about.ini | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 138c1b441619d2abbaaec971c62b73236ed3da84 -Author: William Jon McCann -Date: Tue Dec 31 14:13:21 2013 -0500 - - Remove unused old about page - - https://bugzilla.gnome.org/show_bug.cgi?id=721288 - - data/Makefile.am | 3 --- - data/epiphany.xhtml | 64 ----------------------------------------------------- - 2 files changed, 67 deletions(-) - -commit 5476c9c2ab3e832564e4f09cf31c01799366bf45 -Author: William Jon McCann -Date: Tue Dec 31 14:10:48 2013 -0500 - - Clean up some style in about: - - https://bugzilla.gnome.org/show_bug.cgi?id=721288 - - data/pages/about.css | 13 +++++++++++-- - embed/ephy-about-handler.c | 6 +++--- - 2 files changed, 14 insertions(+), 5 deletions(-) - -commit 1d5764e2c12e3e1c8e406705c2daf5a4e50e608f -Author: Colin Walters -Date: Thu Jan 2 08:52:22 2014 -0500 - - build: s/INCLUDES/AM_CPPFLAGS/ to silence Automake warning - - We were already using AM_CPPFLAGS elsewhere, so it has to work. - - tests/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit cb869fae2ea518d3779666f8ee8a1dba9e7d7d92 -Author: Colin Walters -Date: Mon Oct 21 11:00:51 2013 -0400 - - EphyWindow: Avoid passing unquoted uri to /bin/sh - - While in this case we're probably safe because this code path is - for embedding users and thus aren't going to be subject to code - injection attacks, we'll still going to fail if the argument - contains shell metacharacters. - - Fix that by using g_spawn_async() which doesn't go through /bin/sh. - Tested compilation, not at runtime, but should work. - - https://bugzilla.gnome.org/show_bug.cgi?id=710570 - - src/ephy-window.c | 9 ++++----- - 1 file changed, 4 insertions(+), 5 deletions(-) - -commit 37b5dd50d81394270c0089f012ed72301d26e3d2 -Author: María Majadas -Date: Thu Jan 2 09:58:40 2014 +0100 - - Updated Spanish translation - - help/es/es.po | 132 +++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 81 insertions(+), 51 deletions(-) - -commit 3019752776fce3a486013a798f0965c6560b13ff -Author: Rafael Ferreira -Date: Thu Jan 2 05:57:38 2014 -0200 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 1333 +++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 738 insertions(+), 595 deletions(-) - -commit dccd420e255728fc6949c3ebc5628804a6bf4003 -Author: Daniel Mustieles -Date: Mon Dec 30 11:51:04 2013 +0100 - - Updated Spanish translation - - po/es.po | 380 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 206 insertions(+), 174 deletions(-) - -commit c779008e89231f9f7834845cd9a66e0c5ce28b3a -Author: Fran Diéguez -Date: Mon Dec 30 00:00:57 2013 +0100 - - Updated Galician translations - - po/gl.po | 367 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 207 insertions(+), 160 deletions(-) - -commit 5793e9387ac20cc1133a558c95e38463461b7666 -Author: Aurimas Černius -Date: Sun Dec 29 18:01:22 2013 +0200 - - Updated Lithuanian translation - - po/lt.po | 1199 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 622 insertions(+), 577 deletions(-) - -commit ead37a59d08fe8b522bc848bb1c5a1efb9851853 -Author: Sphinx Jiang -Date: Fri Dec 27 22:08:47 2013 +0800 - - Update Chinese simplified translation - - po/zh_CN.po | 1300 +++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 694 insertions(+), 606 deletions(-) - -commit 074437db36f55b5a036fce369bce9d9a35893822 -Author: Dimitris Spingos -Date: Thu Dec 26 18:34:24 2013 +0200 - - Updated Greek translation - - po/el.po | 343 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 196 insertions(+), 147 deletions(-) - -commit ef1ac79e8db8523fe679f9e19ab514ae607c431f -Author: Matej Urbančič -Date: Mon Dec 23 20:10:51 2013 +0100 - - Updated Slovenian translation - - po/sl.po | 1202 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 615 insertions(+), 587 deletions(-) - -commit 090c42731c5949f28ff918db933c4c55388e6f96 -Author: Michael Catanzaro -Date: Sun Dec 22 22:03:06 2013 -0600 - - Fix bookmark importing - - Bookmark importing was broken due to a typo during the stock item - removal. - - https://bugzilla.gnome.org/show_bug.cgi?id=719821 - - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2a072571e6cf9b526043c39ef4fb9434e241d55f -Author: Yosef Or Boczko -Date: Sun Dec 22 19:20:06 2013 +0200 - - Updated Hebrew translation - - po/he.po | 406 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 231 insertions(+), 175 deletions(-) - -commit 438e566d4fb45388dd889435264ffcd027570569 -Author: Michael Catanzaro -Date: Sat Dec 14 18:32:51 2013 -0600 - - Add a preference for setting the search engine - - This combo box allows the user to select from: - - * DuckDuckGo, Google, and Bing, always. - * Any smart bookmarks the user may have added. - * The current value of the gsetting, if the user has manually edited it. - - An improvement would be to provide a better UI for the creation of smart - bookmarks in the preferences dialog. - - https://bugzilla.gnome.org/show_bug.cgi?id=709459 - - src/bookmarks/ephy-bookmarks.h | 5 ++ - src/prefs-dialog.c | 152 +++++++++++++++++++++++++++++++++++++++++ - src/resources/prefs-dialog.ui | 101 ++++++++++++++++++++++++++- - 3 files changed, 255 insertions(+), 3 deletions(-) - -commit c986763df40307ac812902307716abc41bb6b8d4 -Author: Michael Catanzaro -Date: Mon Dec 16 20:19:45 2013 -0600 - - Mark keyword-search-url default for translation - - We allow region parameters in the default "Search the web" smart - bookmark, which probably nobody ever uses, so why not in the default - search engine that people actually DO use? Also needed because the DDG - URL in the preferences dialog will be translatable, and this must match - it to avoid being detected as a separate, custom search engine. - - https://bugzilla.gnome.org/show_bug.cgi?id=709459 - - data/org.gnome.epiphany.gschema.xml | 11 +++++++++-- - 1 file changed, 9 insertions(+), 2 deletions(-) - -commit 6881e68c7b3b0b7e4039a2939c8e20ad791751e7 -Author: Colin Walters -Date: Fri Dec 20 14:12:20 2013 -0500 - - embed: Fix use of g_source_set_name_by_id - - The compiler was warning us about this one. - - https://bugzilla.gnome.org/show_bug.cgi?id=720846 - - embed/ephy-file-monitor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d9c019e16b48586936271dabbc3f8a21b1925f53 -Author: Reinout van Schouwen -Date: Tue Dec 17 23:23:39 2013 +0100 - - Fix translators comment, bug #720639 - - embed/ephy-web-view.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 0ee2956c1850e877e1b8c5642918bcdeb210dfec -Author: Claudio Saavedra -Date: Thu Dec 19 09:21:03 2013 +0200 - - [release] 3.11.2 - - NEWS | 27 +++++++++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 28 insertions(+), 1 deletion(-) - -commit 8e05d489130b725d0fd9774e5643324be3c4f7aa -Author: Claudio Saavedra -Date: Fri Dec 20 17:01:18 2013 +0200 - - tests: add test for read-only history database creation - - tests/ephy-history-test.c | 35 +++++++++++++++++++++++------------ - 1 file changed, 23 insertions(+), 12 deletions(-) - -commit 8415282998dea92b550943321c1f6c5b01f77040 -Author: Claudio Saavedra -Date: Fri Dec 20 16:58:38 2013 +0200 - - ephy-history-service: fix race-condition - - Database shouldn't be accessed from the main thread. - - lib/history/ephy-history-service.c | 15 +++++---------- - 1 file changed, 5 insertions(+), 10 deletions(-) - -commit e9c73349fd2239f696ee236d12961eeb8a138389 -Author: Dimitris Spingos -Date: Fri Dec 20 15:24:37 2013 +0200 - - Updated Greek translation - - po/el.po | 1173 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 609 insertions(+), 564 deletions(-) - -commit 0f3f615c481ff54947d18202aa2a385bfe10469f -Author: Michael Catanzaro -Date: Sun Dec 15 11:41:47 2013 -0600 - - Passwords dialog: fix missing edges of buttons - - The right edge of the remove button was cut off, as was the left edge of - the show passwords button. - - https://bugzilla.gnome.org/show_bug.cgi?id=720499 - - src/passwords-dialog.c | 26 +++++++-------- - src/resources/passwords-dialog.ui | 68 ++++++++++++++++++++++++++++++--------- - 2 files changed, 66 insertions(+), 28 deletions(-) - -commit 87431f32e712ef1c8eeeddd80e26967979d49fc1 -Author: Fran Diéguez -Date: Wed Dec 18 23:19:06 2013 +0100 - - Updated Galician translations - - po/gl.po | 406 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 216 insertions(+), 190 deletions(-) - -commit 46fb88fe8e1ad84da779be69eb42870abb705886 -Author: Claudio Saavedra -Date: Wed Dec 18 21:45:39 2013 +0200 - - Add missing files that should be distributed - - src/Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -commit 43f41b0e190f1082f2defecdbec3385fca7de9d6 -Author: Daniel Mustieles -Date: Wed Dec 18 17:09:27 2013 +0100 - - Updated Spanish translation - - po/es.po | 425 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 235 insertions(+), 190 deletions(-) - -commit 21cd47c21c2f69722c1c9648b7fc7e4e92069e0c -Author: Bastien Nocera -Date: Mon Dec 16 15:20:52 2013 +0100 - - widgets: Fix glow button not working - - By updating it from Totem. It now uses CSS animations to do - the glow, so it works again. - - https://bugzilla.gnome.org/show_bug.cgi?id=720531 - - lib/widgets/totem-glow-button.c | 331 ++++++++-------------------------------- - lib/widgets/totem-glow-button.h | 7 +- - 2 files changed, 65 insertions(+), 273 deletions(-) - -commit a09a8f0a41b0ea55f8229301f95fd915c2644a60 -Author: Bastien Nocera -Date: Thu Oct 24 00:33:07 2013 +0200 - - Add names to all the timeouts - - https://bugzilla.gnome.org/show_bug.cgi?id=710765 - - embed/ephy-embed.c | 7 +++++-- - embed/ephy-file-monitor.c | 1 + - embed/ephy-find-toolbar.c | 1 + - lib/widgets/ephy-location-entry.c | 1 + - lib/widgets/ephy-node-view.c | 1 + - lib/widgets/ephy-overview-store.c | 4 +++- - lib/widgets/totem-glow-button.c | 1 + - src/bookmarks/ephy-bookmark-properties.c | 1 + - src/bookmarks/ephy-bookmarks.c | 1 + - src/ephy-navigation-history-action.c | 1 + - 10 files changed, 16 insertions(+), 3 deletions(-) - -commit e616f8e442e92d9d949a79a56bb8fa4b0434e9fe -Author: Bastien Nocera -Date: Thu Apr 25 18:43:21 2013 +0200 - - Remember mailman passwords - - https://bugzilla.gnome.org/show_bug.cgi?id=698866 - - embed/web-extension/ephy-embed-form-auth.c | 1 - - embed/web-extension/ephy-web-extension.c | 78 +++++++++++++++++++----------- - lib/ephy-form-auth-data.c | 61 +++++++++++++++-------- - lib/ephy-web-dom-utils.c | 18 ++++++- - 4 files changed, 106 insertions(+), 52 deletions(-) - -commit ac9cae2c84ad4e8e7746429ecb9995503468c419 -Author: Gustavo Noronha Silva -Date: Tue Dec 17 13:34:33 2013 -0200 - - Use a flag to decide if a tab is download-only - - There are some cases in which a view may not be able to go back and still be not - just for a download: if the view has been opened by middle clicking somewhere or - by having an URL provided on startup, then the navigation from the overview to - the first page won't have happened. By tracking whether the page has ever - committed a load we can be sure it has been opened just for the download. - - https://bugzilla.gnome.org/show_bug.cgi?id=720609 - - embed/ephy-web-view.c | 11 +++++++---- - 1 file changed, 7 insertions(+), 4 deletions(-) - -commit 49535fb72c8361414af2b2527de87b5a9b9efcb5 -Author: William Jon McCann -Date: Wed Dec 18 08:01:28 2013 -0500 - - data: update screenshot - - data/epiphany.appdata.xml.in | 2 +- - data/resize-window.sh | 6 ++++++ - data/screenshot.png | Bin 0 -> 202287 bytes - 3 files changed, 7 insertions(+), 1 deletion(-) - -commit 6f5b054b2825de6ef301c2b87b6e7805076b84fd -Author: Reinout van Schouwen -Date: Tue Dec 17 23:07:01 2013 +0100 - - Updated Dutch translation - - po/nl.po | 1204 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 629 insertions(+), 575 deletions(-) - -commit 08ce88d642e4157400280bfacd5571d0f419304d -Author: Yosef Or Boczko -Date: Tue Dec 17 18:23:59 2013 +0200 - - Updated Hebrew translation - - Signed-off-by: Yosef Or Boczko - - po/he.po | 353 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 186 insertions(+), 167 deletions(-) - -commit c36eec7a485eab8f4a02502d53b56bf17ac685b5 -Author: William Jon McCann -Date: Sun Dec 15 15:57:17 2013 -0500 - - Improve oops screens - - https://bugzilla.gnome.org/show_bug.cgi?id=692336 - - data/pages/Makefile.am | 3 +- - data/pages/error.css | 49 +++++++++++++++++++++++++++ - embed/ephy-web-view.c | 72 ++++++++++++++++++++-------------------- - src/resources/error.html | 43 +----------------------- - src/resources/process-crash.html | 41 +---------------------- - src/resources/recovery.html | 44 +----------------------- - 6 files changed, 90 insertions(+), 162 deletions(-) - -commit f389331b0e864bc3ff5a92bc3286987351a6c4e1 -Author: William Jon McCann -Date: Sun Dec 15 13:00:44 2013 -0500 - - Add an about: handler - - https://bugzilla.gnome.org/show_bug.cgi?id=665484 - - data/pages/about.css | 37 ++++++++++++++++++++++++++++++++- - embed/Makefile.am | 1 + - embed/ephy-about-handler.c | 52 ++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 89 insertions(+), 1 deletion(-) - -commit 660aabdf48d44cf9b3f1c0b183fd4ba6b93d9f0a -Author: William Jon McCann -Date: Sun Dec 15 11:21:43 2013 -0500 - - Use the suggested filename when saving images - - https://bugzilla.gnome.org/show_bug.cgi?id=572819 - - src/popup-commands.c | 47 +++++++++++++++++++++++++++++++++++++++++------ - 1 file changed, 41 insertions(+), 6 deletions(-) - -commit 9d10f81c4765cb279df6439a11b302767f0a63b1 -Author: William Jon McCann -Date: Sun Dec 15 09:17:42 2013 -0500 - - Cleanup context menus - - https://bugzilla.gnome.org/show_bug.cgi?id=690062 - - src/ephy-lockdown.c | 4 +- - src/ephy-window.c | 61 ++++++++++----------- - src/popup-commands.c | 148 ++++----------------------------------------------- - src/popup-commands.h | 8 +-- - 4 files changed, 38 insertions(+), 183 deletions(-) - -commit 526b5c0bbc52b3530ad0f4a1188d155b9073f284 -Author: William Jon McCann -Date: Sun Dec 15 08:54:50 2013 -0500 - - Remove unused popup menus - - Removed in the port to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=690062 - - src/resources/epiphany-ui.xml | 49 ------------------------------------------- - 1 file changed, 49 deletions(-) - -commit bfc575c4d97d99c425b731aa25e7e04bdf98de6c -Author: Sindhu S -Date: Tue Nov 5 21:43:26 2013 +0530 - - help: correct typos and punctuation - - Also, reflowed paragraphs. - - https://bugzilla.gnome.org/show_bug.cgi?id=711176 - - help/C/bookmark.page | 2 +- - help/C/browse-webapps.page | 10 +++++----- - help/C/introduction.page | 7 +------ - help/C/pref-css.page | 4 ++-- - 4 files changed, 9 insertions(+), 14 deletions(-) - -commit a7d05924bd0131284b897201aa821eaacbdf5250 -Author: Michael Catanzaro -Date: Mon Dec 16 12:29:44 2013 -0600 - - Remove empty help category - - help/C/index.page | 2 ++ - 1 file changed, 2 insertions(+) - -commit 8652749760c62cef64cf598fd08f9bef73878305 -Author: William Jon McCann -Date: Sat Dec 14 18:20:11 2013 -0500 - - certificate dialog: Fix a few alignment issues - - https://bugzilla.gnome.org/show_bug.cgi?id=681552 - - lib/widgets/ephy-certificate-dialog.c | 33 +++++++++++++++++---------------- - 1 file changed, 17 insertions(+), 16 deletions(-) - -commit 3c2e46f3335711e2050dfb887c2273756f7d4c38 -Author: William Jon McCann -Date: Sat Dec 14 18:03:24 2013 -0500 - - certificate dialog: increase default height - - https://bugzilla.gnome.org/show_bug.cgi?id=681552 - - lib/widgets/ephy-certificate-dialog.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 8f5a6efaadaa3d15d410f72bf7d70a8c136b3272 -Author: William Jon McCann -Date: Fri Dec 13 12:09:51 2013 -0500 - - about dialog: use built in GTK GPL license - - https://bugzilla.gnome.org/show_bug.cgi?id=671424 - - src/window-commands.c | 25 ++----------------------- - 1 file changed, 2 insertions(+), 23 deletions(-) - -commit 2f91a8561c8ac98c3b088a14bdd6e6d2ffb5ba59 -Author: William Jon McCann -Date: Fri Dec 13 11:16:21 2013 -0500 - - Make text and URLs dropped in location entry clear entry and load new URL - - https://bugzilla.gnome.org/show_bug.cgi?id=171180 - - lib/widgets/ephy-location-entry.c | 8 +++++- - src/ephy-location-controller.c | 51 +++++++++++++++++++++++++++++++++++++++ - 2 files changed, 58 insertions(+), 1 deletion(-) - -commit adde7359568b35b114aa8591a77193dd81b1943c -Author: María Majadas -Date: Mon Dec 16 12:11:02 2013 +0100 - - Updated Spanish translation - - help/es/es.po | 736 ++++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 483 insertions(+), 253 deletions(-) - -commit 13427bb686cc61e5abff0fbda321861da626c338 -Author: William Jon McCann -Date: Sun Dec 15 17:37:05 2013 -0500 - - Fix sense of enable plugins setting - - src/prefs-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 867dd1ca3f0c35408e558f2d5303a0fd0570fc32 -Author: Fran Diéguez -Date: Sun Dec 15 18:30:56 2013 +0100 - - Updated Galician translations - - po/gl.po | 277 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 153 insertions(+), 124 deletions(-) - -commit 8f799fc9d2af47f270c3abf50dbeaf756ad27324 -Author: Daniel Mustieles -Date: Fri Dec 13 17:27:39 2013 +0100 - - Updated Spanish translation - - po/es.po | 11 +++-------- - 1 file changed, 3 insertions(+), 8 deletions(-) - -commit 160bbc17a7eb7bed87505045b5c00616b446f455 -Author: Daniel Mustieles -Date: Fri Dec 13 17:22:09 2013 +0100 - - Updated Spanish translation - - po/es.po | 54 +++++++++++++++++++++++------------------------------- - 1 file changed, 23 insertions(+), 31 deletions(-) - -commit 5db012d636a3382079c1592014d5ac3c8614cb25 -Author: William Jon McCann -Date: Fri Dec 13 09:59:37 2013 -0500 - - Use the correct application name in the help - - help/C/index.page | 2 +- - help/C/introduction.page | 13 +++++++------ - 2 files changed, 8 insertions(+), 7 deletions(-) - -commit 457a7346c2baf128cbd8d55cd3514f430da9a5be -Author: William Jon McCann -Date: Fri Dec 13 09:47:36 2013 -0500 - - Consistently use the term GNOME - - https://bugzilla.gnome.org/show_bug.cgi?id=686865 - - data/epiphany.appdata.xml.in | 2 +- - data/org.gnome.epiphany.gschema.xml | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit ea6e8edbfb0d2a712133168cc4cea744624129e5 -Author: William Jon McCann -Date: Fri Dec 13 09:37:36 2013 -0500 - - Just default to the general category for bugs - - data/epiphany.desktop.in.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e450a23c722931aa453310466403e262404e369c -Author: Diego Escalante Urrelo -Date: Wed Dec 11 17:01:04 2013 +0100 - - ephy-location-entry: disable icon drag for blank pages - - If the address being set by ephy_location_entry_set_location is NULL or - about:blank, the entry will disable dragging for the - GTK_ENTRY_ICON_PRIMARY icon. - - It is enabled by default on widget construction. - - https://bugzilla.gnome.org/show_bug.cgi?id=669129 - - lib/widgets/ephy-location-entry.c | 29 +++++++++++++++++++++++------ - 1 file changed, 23 insertions(+), 6 deletions(-) - -commit ad221abf777f6d58ef33127cfc4f5bb6dd784c2b -Author: Diego Escalante Urrelo -Date: Fri Feb 3 02:37:33 2012 -0500 - - ephy-location-entry: no need to set icons activatable - - Icons are activatable by default in GtkEntry. No need to reiterate that. - - https://bugzilla.gnome.org/show_bug.cgi?id=669129 - - lib/widgets/ephy-location-entry.c | 7 ------- - 1 file changed, 7 deletions(-) - -commit 3ab447b7d868bfa621b72398859e70eaeaf0c1d6 -Author: Claudio Saavedra -Date: Thu Dec 12 17:49:18 2013 +0100 - - cookies-dialog: remove empty "domain name" column - - WK2 doesn't give us access to this, so let's remove it. - - https://bugzilla.gnome.org/show_bug.cgi?id=703492 - - src/cookies-dialog.c | 9 +++------ - src/resources/cookies-dialog.ui | 21 ++------------------- - 2 files changed, 5 insertions(+), 25 deletions(-) - -commit 34d5cb92ea770ed669e1121ebb4515da475ea692 -Author: Daniel Mustieles -Date: Thu Dec 12 11:15:28 2013 +0100 - - Updated Spanish translation - - po/es.po | 326 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 174 insertions(+), 152 deletions(-) - -commit fce5acfd978a6e4fc8ba914711a789bde891c7cb -Author: Claudio Saavedra -Date: Wed Dec 11 18:08:08 2013 +0100 - - passwords-dialog: refactor copy popup code - - src/passwords-dialog.c | 31 +++++++++++-------------------- - 1 file changed, 11 insertions(+), 20 deletions(-) - -commit ebc4e17b25dc2ea1d6de8dbba5ec21338d8c1c47 -Author: Yosef Or Boczko -Date: Wed Dec 11 16:37:37 2013 +0200 - - Updated Hebrew translation - - po/he.po | 293 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 157 insertions(+), 136 deletions(-) - -commit 6558780923e6926fa95aea0d5d556d22530f1e9e -Author: William Jon McCann -Date: Wed Dec 11 13:45:33 2013 +0100 - - Use a symbolic icon for the default favicon - - lib/widgets/ephy-location-entry.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit b28f61e52ed548788dbf04771f273b505d05a8fa -Author: William Jon McCann -Date: Wed Dec 11 12:21:25 2013 +0100 - - Update project urls - - data/default-bookmarks.rdf.in | 2 +- - data/epiphany.appdata.xml.in | 2 +- - epiphany.doap | 4 ++-- - help/C/introduction.page | 4 +--- - src/bookmarks/ephy-bookmarks-export.c | 2 +- - src/window-commands.c | 6 +----- - 6 files changed, 7 insertions(+), 13 deletions(-) - -commit ec4c072218599ee180231022aece643852ff6a06 -Author: William Jon McCann -Date: Wed Dec 11 11:56:20 2013 +0100 - - Don't show the name Epiphany - - data/default-bookmarks.rdf.in | 2 +- - embed/ephy-about-handler.c | 3 ++- - embed/ephy-embed-shell.c | 2 +- - lib/ephy-nss-glue.c | 2 +- - lib/ephy-profile-migrator.c | 10 +++++----- - src/bookmarks/ephy-bookmarks-editor.c | 4 ++-- - src/bookmarks/ephy-bookmarks-export.c | 2 +- - 7 files changed, 13 insertions(+), 12 deletions(-) - -commit f20f002c3e44006402af5a7d2387e30385d4d578 -Author: William Jon McCann -Date: Wed Dec 11 11:04:51 2013 +0100 - - Improve phrasing of the save password infobar - - https://bugzilla.gnome.org/show_bug.cgi?id=615742 - - embed/ephy-web-view.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit ffc391d4b16ae2e9b4d70570ab3a2952ce77c88f -Author: William Jon McCann -Date: Tue Dec 10 19:14:32 2013 +0100 - - Add a popup menu to copy username and password - - https://bugzilla.gnome.org/show_bug.cgi?id=720239 - - src/passwords-dialog.c | 95 +++++++++++++++++++++++++++++++++++++++ - src/resources/passwords-dialog.ui | 25 ++++++++++- - 2 files changed, 119 insertions(+), 1 deletion(-) - -commit 114f45faef774f32c7090d0e54c168389bd4f0ea -Author: William Jon McCann -Date: Tue Dec 10 15:32:12 2013 +0100 - - Add a new passwords dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=720239 - - po/POTFILES.in | 2 + - src/Makefile.am | 2 + - src/epiphany.gresource.xml | 1 + - src/passwords-dialog.c | 454 ++++++++++++++++++++++++++++++++++++++ - src/passwords-dialog.h | 56 +++++ - src/prefs-dialog.c | 14 ++ - src/resources/passwords-dialog.ui | 266 ++++++++++++++++++++++ - src/resources/prefs-dialog.ui | 49 +++- - 8 files changed, 833 insertions(+), 11 deletions(-) - -commit 0c14b9d1ae62b5de912c5b8831abc0ff4de7a900 -Author: Gustavo Noronha Silva -Date: Wed Dec 11 12:44:57 2013 +0100 - - Change default charset to iso-8859-1 for greater web compatibility - - When servers reply with no explicit charset and the page does not specify a - charset either, the default behaviour on the web has been to consider the - contents to be in the iso-8859-1 encoding. That is why WebKit's default charset - setting defaults to iso-8859-1. By changing that default to UTF-8 we break - some web sites, such as http://www.planalto.gov.br/ccivil_03/leis/lcp/lcp101.htm. - - This change restores web compatibility by using the same default as WebKit. - - https://bugzilla.gnome.org/show_bug.cgi?id=720247 - - data/org.gnome.epiphany.gschema.xml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 480634f1262d6be652746e98e0caaf7d974220bd -Author: Carlos Garcia Campos -Date: Mon Dec 9 21:05:01 2013 +0100 - - Remove the headless mode - - We don't need it anymore now that the search provider is in its own - binary - - src/ephy-main.c | 6 ------ - src/ephy-session.c | 2 +- - src/ephy-shell.c | 30 +++++------------------------- - src/ephy-shell.h | 2 -- - 4 files changed, 6 insertions(+), 34 deletions(-) - -commit 78e8d7f045396cd753a73f9106e19b3bb3fe5d57 -Author: Carlos Garcia Campos -Date: Mon Dec 9 20:16:02 2013 +0100 - - Move the search provider to its own binary - - https://bugzilla.gnome.org/show_bug.cgi?id=711409 - - data/Makefile.am | 2 +- - data/epiphany-search-provider.ini | 4 +- - data/org.gnome.Epiphany.service.in | 4 +- - src/Makefile.am | 30 ++++++++++- - src/ephy-search-provider-main.c | 46 +++++++++++++++++ - src/ephy-search-provider.c | 101 +++++++++++++++++++++++-------------- - src/ephy-search-provider.h | 8 --- - src/ephy-shell.c | 48 ------------------ - 8 files changed, 143 insertions(+), 100 deletions(-) - -commit 83affc44c78a486fa77db47a469a28d17771b64e -Author: Carlos Garcia Campos -Date: Wed Dec 11 10:15:50 2013 +0100 - - Make the history service work even when the database could not be opened - - The history could be used by the search provider even before the ephy - config dir has been created, if epiphany has never been launched. In - such case, the methods will simply fail to get results, and the search - provider will only return the special case for searching in the web. - - lib/history/ephy-history-service.c | 80 +++++++++++++++++++++----------------- - 1 file changed, 44 insertions(+), 36 deletions(-) - -commit 7c7c8fb8432ea04c14d70138a4de12675fa2fa0f -Author: Carlos Garcia Campos -Date: Mon Dec 9 19:46:23 2013 +0100 - - Create the EphyCompletionModel with a history service and bookmarks objects - - Instead of getting them from the global shell. - - src/ephy-completion-model.c | 59 +++++++++++++++++++++++++++++++------- - src/ephy-completion-model.h | 4 ++- - src/ephy-location-controller.c | 6 +++- - src/ephy-search-provider.c | 3 +- - tests/ephy-completion-model-test.c | 6 ++-- - 5 files changed, 62 insertions(+), 16 deletions(-) - -commit d90f134be3b8c19190fd4a2052c92a9003f60023 -Author: Carlos Garcia Campos -Date: Mon Dec 9 19:17:49 2013 +0100 - - Add a way to create a history service in read only mode - - embed/ephy-embed-shell.c | 2 +- - lib/ephy-profile-migrator.c | 2 +- - lib/history/ephy-history-service-private.h | 1 + - lib/history/ephy-history-service.c | 57 +++++++++++++++++++++++++++--- - lib/history/ephy-history-service.h | 2 +- - tests/ephy-history-test.c | 2 +- - 6 files changed, 57 insertions(+), 9 deletions(-) - -commit 81064ab7dc8cf2ba18c9f936e34a9f6e49c2c1ab -Author: Fran Diéguez -Date: Wed Dec 11 10:40:06 2013 +0100 - - Updated Galician translations - - po/gl.po | 751 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 374 insertions(+), 377 deletions(-) - -commit 8471a4953dff8bebc8d7ca1bca6a9d9b48853ecc -Author: Daniel Mustieles -Date: Tue Dec 10 13:01:40 2013 +0100 - - Updated Spanish translation - - po/es.po | 836 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 425 insertions(+), 411 deletions(-) - -commit 228d7e1f2cdf213dac1dd103868a68c1df244082 -Author: Gustavo Noronha Silva -Date: Tue Dec 10 11:10:40 2013 +0100 - - Fix build warning - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 29c990d5a4662467e4708db1ab1cc06c4901fc7f -Author: Gustavo Noronha Silva -Date: Sat Aug 10 22:06:32 2013 -0300 - - If a tab is created only for a download, close it - - If a tab that has just been created ends up being just a download, then - close it down. If it's the only one on the window, then make it show the - overview instead. - - https://bugzilla.gnome.org/show_bug.cgi?id=607233 - - embed/ephy-web-view.c | 27 ++++++++++++++++++++++++--- - src/ephy-window.c | 31 +++++++++++++++++++++++++++++++ - 2 files changed, 55 insertions(+), 3 deletions(-) - -commit cd8d55b2ed35834645c48ae82be496db58c4ad66 -Author: Yosef Or Boczko -Date: Mon Dec 9 23:16:28 2013 +0200 - - Updated Hebrew translation - - po/he.po | 710 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 352 insertions(+), 358 deletions(-) - -commit b7a9225df3be91a454d7ba6b60f5070df6a59b9d -Author: Yosef Or Boczko -Date: Mon Dec 9 23:15:37 2013 +0200 - - Mark more some strings as translatable - - src/resources/clear-data-dialog.ui | 4 ++-- - src/resources/cookies-dialog.ui | 4 ++-- - 2 files changed, 4 insertions(+), 4 deletions(-) - -commit 3582dd8642fdee5869dad8dfeb69fa5930c5938e -Author: Yosef Or Boczko -Date: Mon Dec 9 23:00:41 2013 +0200 - - Updated POTFILES.in - - po/POTFILES.in | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit d84c226b9093befcdfc270640c0f9cb6480062a5 -Author: William Jon McCann -Date: Mon Dec 9 18:25:31 2013 +0100 - - Remove personal data manager - - https://bugzilla.gnome.org/show_bug.cgi?id=720113 - - po/POTFILES.in | 1 - - src/Makefile.am | 2 - - src/ephy-shell.c | 34 - - src/ephy-shell.h | 2 - - src/ephy-window.c | 6 +- - src/pdm-dialog.c | 1428 ---------------------------- - src/pdm-dialog.h | 73 -- - src/resources/epiphany-application-menu.ui | 5 - - src/resources/epiphany-ui.xml | 1 - - src/resources/epiphany.ui | 492 ---------- - src/window-commands.c | 16 - - src/window-commands.h | 2 - - 12 files changed, 1 insertion(+), 2061 deletions(-) - -commit fe3929b956467e05e1fd3d3b7d7d477963fd9c02 -Author: William Jon McCann -Date: Mon Dec 9 17:39:04 2013 +0100 - - Hook up new cookies dialog to prefs dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=720113 - - src/prefs-dialog.c | 15 ++++++++++++ - src/resources/prefs-dialog.ui | 55 +++++++++++++++++++++++++++++++++---------- - 2 files changed, 57 insertions(+), 13 deletions(-) - -commit 017864109e3d47662f72851d6383ffdb16c3ffce -Author: William Jon McCann -Date: Mon Dec 9 17:29:04 2013 +0100 - - Create a new cookies dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=720113 - - po/POTFILES.in | 1 + - src/Makefile.am | 2 + - src/cookies-dialog.c | 398 ++++++++++++++++++++++++++++++++++++++++ - src/cookies-dialog.h | 56 ++++++ - src/epiphany.gresource.xml | 1 + - src/resources/cookies-dialog.ui | 191 +++++++++++++++++++ - 6 files changed, 649 insertions(+) - -commit 0a301e9086cc33364baa9165dfbf8c525fd9697e -Author: William Jon McCann -Date: Mon Dec 9 15:25:37 2013 +0100 - - Create a new clear data dialog - - https://bugzilla.gnome.org/show_bug.cgi?id=720113 - - po/POTFILES.in | 1 + - src/Makefile.am | 3 + - src/clear-data-dialog.c | 215 ++++++++++++++++++++++++++++++++++++ - src/clear-data-dialog.h | 68 ++++++++++++ - src/epiphany.gresource.xml | 1 + - src/prefs-dialog.c | 11 +- - src/resources/clear-data-dialog.ui | 221 +++++++++++++++++++++++++++++++++++++ - 7 files changed, 517 insertions(+), 3 deletions(-) - -commit c591b77da1a6bf2fe7eb07d4de2047b0d865de32 -Author: William Jon McCann -Date: Mon Dec 9 18:56:57 2013 +0100 - - prefs dialog: set dialog type hint - - src/resources/prefs-dialog.ui | 1 + - 1 file changed, 1 insertion(+) - -commit 59b65f3d81812ab5a2eb89bae204fb32b79a41ad -Author: William Jon McCann -Date: Mon Dec 9 19:53:07 2013 +0100 - - Don't try to set the wrong value for cookie policy - - The builder template system wants us to to use underscores for - the widget names but the gsettings values for these widgets - use dashes. So, translate between then in the mapping functions. - - src/prefs-dialog.c | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -commit d31d3ab5b5be55e8f8f679d4c2b9c643b08e8300 -Author: William Jon McCann -Date: Mon Dec 9 03:03:05 2013 +0100 - - prefs: make the dialog modal - - https://bugzilla.gnome.org/show_bug.cgi?id=720098 - - src/resources/prefs-dialog.ui | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e65f35d580b52af7e74a845132d809a5e854719b -Author: William Jon McCann -Date: Mon Dec 9 02:32:00 2013 +0100 - - prefs: use GtkDialog instead of EphyDialog - - https://bugzilla.gnome.org/show_bug.cgi?id=720098 - - src/Makefile.am | 1 + - src/ephy-shell.c | 17 +- - src/epiphany.gresource.xml | 1 + - src/prefs-dialog.c | 535 +++++++++++++++++++++---------------- - src/prefs-dialog.h | 8 +- - src/resources/prefs-dialog.ui | 182 +------------ - src/resources/prefs-lang-dialog.ui | 124 +++++++++ - src/window-commands.c | 12 +- - 8 files changed, 457 insertions(+), 423 deletions(-) - -commit 0751d18998c9713cfb112a1ace6f072e97a22975 -Author: Yosef Or Boczko -Date: Mon Dec 9 13:37:27 2013 +0200 - - ephy-find-toolbar: Remove unused variable - - embed/ephy-find-toolbar.c | 1 - - 1 file changed, 1 deletion(-) - -commit 78b0f5ad9292edeb872bc8f418d6bc24804208fd -Author: Yosef Or Boczko -Date: Mon Dec 9 13:37:04 2013 +0200 - - ephy-find-toolbar: Close the search bar when loading new page in the current tab - - https://bugzilla.gnome.org/show_bug.cgi?id=710542 - - embed/ephy-find-toolbar.c | 15 +++++++++++++++ - 1 file changed, 15 insertions(+) - -commit 610586172fd8492f826adcba0f7685bf14db747e -Author: Yosef Or Boczko -Date: Mon Dec 9 13:32:53 2013 +0200 - - Create a find toolbar to each tab - - https://bugzilla.gnome.org/show_bug.cgi?id=710542 - - embed/Makefile.am | 2 + - embed/ephy-embed.c | 39 +++ - embed/ephy-embed.h | 38 +-- - embed/ephy-find-toolbar.c | 712 +++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-find-toolbar.h | 86 ++++++ - src/Makefile.am | 2 - - src/ephy-find-toolbar.c | 714 ---------------------------------------------- - src/ephy-find-toolbar.h | 87 ------ - src/ephy-private.h | 2 +- - src/ephy-window.c | 35 +-- - src/window-commands.c | 6 +- - 11 files changed, 868 insertions(+), 855 deletions(-) - -commit a35c0f13f73a60beab918830e6ee826c75774e20 -Author: Claudio Saavedra -Date: Sun Dec 8 20:08:49 2013 +0100 - - web-extension: do not pass data uris through the uri tester - - As this is always going to fail. Also it can be pretty slow - for large data. - - embed/web-extension/ephy-web-extension.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 605c7309b5866ceeea55de6c803f3984978bd371 -Author: William Jon McCann -Date: Fri Oct 4 13:25:44 2013 -0400 - - Center and expand tabs - - https://bugzilla.gnome.org/show_bug.cgi?id=709444 - - src/ephy-notebook.c | 44 +++++++++++++++++++++++++++++--------------- - 1 file changed, 29 insertions(+), 15 deletions(-) - -commit 3df6f8c4678f1a0068ed06576180c2e9a4c1629e -Author: Carlos Garcia Campos -Date: Sun Dec 8 12:40:12 2013 +0100 - - Remove all WebKit1 code - - We are using WebKit2 unconditionally already. - - configure.ac | 2 - - embed/ephy-embed-prefs.c | 4 - - embed/ephy-web-view.c | 8 - - lib/ephy-smaps.c | 9 - - lib/ephy-snapshot-service.c | 65 ----- - lib/ephy-snapshot-service.h | 4 - - lib/ephy-web-app-utils.c | 18 -- - lib/ephy-web-app-utils.h | 5 - - lib/widgets/ephy-download-widget.c | 99 ------- - lib/widgets/ephy-hosts-store.c | 79 +---- - lib/widgets/ephy-location-entry.c | 11 - - lib/widgets/ephy-overview-store.h | 4 - - src/Makefile.am | 4 - - src/bookmarks/ephy-bookmark-action.c | 68 +---- - src/bookmarks/ephy-bookmarks-editor.c | 75 ----- - src/bookmarks/ephy-bookmarks.c | 24 -- - src/ephy-completion-model.c | 29 +- - src/ephy-encoding-dialog.c | 35 +-- - src/ephy-encoding-menu.c | 23 +- - src/ephy-find-toolbar.c | 216 +------------- - src/ephy-history-window.c | 6 - - src/ephy-navigation-history-action.c | 171 +---------- - src/ephy-notebook.c | 8 - - src/ephy-session.c | 56 +--- - src/ephy-shell.c | 31 -- - src/ephy-shell.h | 8 - - src/ephy-window.c | 527 ---------------------------------- - src/pdm-dialog.c | 199 ------------- - src/popup-commands.c | 114 -------- - src/popup-commands.h | 6 - - src/resources/epiphany-ui.xml | 11 - - src/window-commands.c | 189 +----------- - tests/ephy-session-test.c | 97 ------- - tests/ephy-shell-test.c | 38 --- - tests/ephy-test-utils.c | 12 - - tests/ephy-web-view-test.c | 78 +---- - 36 files changed, 33 insertions(+), 2300 deletions(-) - -commit 7213d38a3c024a0b189f053655e76a3c976c7dbc -Author: Yosef Or Boczko -Date: Thu Dec 5 18:43:25 2013 +0200 - - Updated Hebrew translation - - po/he.po | 46 +++++++++++++++++++++++----------------------- - 1 file changed, 23 insertions(+), 23 deletions(-) - -commit ed446c6b2acb6438c717515eb02f60dcad2f8b0d -Author: Michael Catanzaro -Date: Sun Dec 1 17:33:01 2013 -0600 - - Fix text encoding dialog - - Same issue and fix as the Seahorse bug below: - - https://bugzilla.gnome.org/show_bug.cgi?id=703825 - - src/resources/epiphany.ui | 1 + - 1 file changed, 1 insertion(+) - -commit 8fb16adc916070b180166db0a599cb297d9ba51a -Author: Andres Gomez -Date: Wed Nov 27 12:48:22 2013 +0200 - - uri-tester: Compile regex in JavaScript compatibility mode - - AddBlock regexes now are compiled in JavaScript compatibility mode to - avoid the errors happening from using the patterns from - https://easylist-downloads.adblockplus.org/easylist.txt . - - https://bugzilla.gnome.org/show_bug.cgi?id=719399 - - embed/uri-tester.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3101ac0913cc763bf0e73bf58fca047619aa9029 -Author: Andres Gomez -Date: Wed Nov 27 12:51:49 2013 +0200 - - uri-tester: Avoid critical when unref-ing NULL regex - - When a regex compilation fails we get an error and NULL. No need to - unref the NULL pointer. - - https://bugzilla.gnome.org/show_bug.cgi?id=719405 - - embed/uri-tester.c | 1 - - 1 file changed, 1 deletion(-) - -commit 42b974c9c0d0a3fbd43f9ffc3b32bcb17df5e0cd -Author: Daniel Wyatt -Date: Tue Nov 26 10:14:00 2013 +0000 - - ephy-history-view: Call parent class on button release handler - - https://bugzilla.gnome.org/show_bug.cgi?id=696653 - - lib/widgets/ephy-history-view.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 957176aa10af684f1dbf2b36381969c4adb01900 -Author: 甘露(Gan Lu) -Date: Sat Nov 23 16:32:45 2013 +0800 - - Update Chinese simplified translation - - po/zh_CN.po | 628 +++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 351 insertions(+), 277 deletions(-) - -commit 05f2af52e39729669e545dc55e78e824a0065fc0 -Author: Dimitris Spingos -Date: Sat Nov 23 00:17:47 2013 +0200 - - Updated Greek translation - - help/el/el.po | 407 ++++++++++++++++++++++++++++------------------------------ - 1 file changed, 197 insertions(+), 210 deletions(-) - -commit d10f7619c584241abb9a5280433e1b4740a21c82 -Author: Armin K -Date: Thu Nov 21 14:14:33 2013 +0100 - - wrap libwnck code so it runs only on X11 - - This is necessary to use Epiphany on Weston, the - Wayland compositor without having to run XWayland. - - https://bugzilla.gnome.org/show_bug.cgi?id=708955 - - src/ephy-shell.c | 4 +++- - src/ephy-window.c | 6 +++++- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 1e232e3dd56431f3eff1550120b7f4ce1ee4f178 -Author: Yosef Or Boczko -Date: Thu Nov 21 14:56:47 2013 +0200 - - configure.ac: Add -Wno-deprecated-declarations flag - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6c1b8a300fbdfca8046d60adb1b72dddd15c5440 -Author: Yosef Or Boczko -Date: Thu Nov 21 14:55:17 2013 +0200 - - Use margin-start/end instead of margin-left/right - - Also bump required GTK+ version for them. - - https://bugzilla.gnome.org/show_bug.cgi?id=712801 - - configure.ac | 2 +- - lib/widgets/nautilus-floating-bar.c | 4 ++-- - src/ephy-toolbar.c | 4 ++-- - 3 files changed, 5 insertions(+), 5 deletions(-) - -commit b0f30bad0c1f6654055cb57cdb47a60902fb505c -Author: Yosef Or Boczko -Date: Thu Nov 21 13:58:02 2013 +0200 - - ephy-toolbar: Port to GtkHeaderBar - - https://bugzilla.gnome.org/show_bug.cgi?id=711668 - - src/ephy-toolbar.c | 86 ++++++++++++------------------------------------------ - src/ephy-toolbar.h | 4 +-- - src/ephy-window.c | 10 +------ - 3 files changed, 22 insertions(+), 78 deletions(-) - -commit feb623f5fc96835ee89be0f31fd4a4c50a0fbd0c -Author: Claudio Saavedra -Date: Tue Nov 19 10:35:18 2013 +0200 - - [release] 3.11.1 - - NEWS | 16 ++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit e3df5031c2508f54fbaa4aac3051b7b9b59347a2 -Author: Yosef Or Boczko -Date: Thu Nov 14 16:49:48 2013 +0200 - - ephy-window: Allow again undo and redo and work again accel Ctrl+Z and Shift+Ctrl+Z - - * Add Undo and Redo to the gear menu - * Add Undo and Redo to the popup menu when context is editable - * Work again Ctrl+Z accel to Undo and Shift+Ctrl+Z accel to Redo - * Bump the WebKitGTK+ requirements to 2.2.2 - - https://bugzilla.gnome.org/show_bug.cgi?id=698703 - - configure.ac | 2 +- - src/ephy-window.c | 6 ++++++ - src/resources/epiphany-ui.xml | 3 +++ - 3 files changed, 10 insertions(+), 1 deletion(-) - -commit 79db933d667fe0208aaf1fc58f8bd84d6a0dc162 -Author: Claudio Saavedra -Date: Thu Nov 14 13:31:51 2013 +0200 - - ephy-web-view: fix a critical warning - - embed/ephy-web-view.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 28c2f9d8e147968cbf864e0d2e46ae95ed4e3e36 -Author: Bastien Nocera -Date: Sat Nov 9 23:48:31 2013 +0100 - - ephy-download: Detect .xz as compressed too - - A fix to a hack to avoid filenames like "filename.tar(1).xz" - - https://bugzilla.gnome.org/show_bug.cgi?id=711750 - - embed/ephy-download.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5acb63a16de53a7b751c5331ffde8fabc84bfb4c -Author: NikoletaPapanastasiou -Date: Sun Nov 10 22:24:58 2013 +0200 - - Added Greek translation - - help/Makefile.am | 5 +- - help/el/el.po | 1483 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 1485 insertions(+), 3 deletions(-) - -commit 46b8f9f5a61fbd7cd1f78d4b3987b3dc0d267cc8 -Author: Yosef Or Boczko -Date: Fri Nov 8 15:53:18 2013 +0200 - - ephy-location-entry: Set default size and allow to reduced the entry - - https://bugzilla.gnome.org/show_bug.cgi?id=708994 - - lib/widgets/ephy-location-entry.c | 14 ++++++++++++++ - src/ephy-toolbar.c | 1 - - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 24b9335b1d0915a68e4f54c82f3f9af378740740 -Author: Gabor Kelemen -Date: Wed Oct 30 22:50:44 2013 +0100 - - Update Hungarian help translation - - help/hu/hu.po | 660 ++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 340 insertions(+), 320 deletions(-) - -commit 4d7c9cb1176b380725f70c4713b6fe4b09f8c403 -Author: Adrian Perez de Castro -Date: Sun Oct 27 16:39:27 2013 +0200 - - Update EasyList filter rules URL for ad blocker - - The previously used URL is a redirect, and the new URL in this patch is - a direct link, which is also the URL given at the AdBlockPlus subscriptions - page (https://adblockplus.org/en/subscriptions). Using a direct URL loads - rules marginally faster, and seems to behave more robustly for fetching - updated rule sets. - - This fixes https://bugzilla.gnome.org/show_bug.cgi?id=710661 - - embed/uri-tester.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 82bac20be8fdecb7e7f07ccf16cd88cbbc2b6451 -Author: Yosef Or Boczko -Date: Mon Oct 28 22:30:37 2013 +0200 - - prefs-dialog: Expand the list of languages - - https://bugzilla.gnome.org/show_bug.cgi?id=710664 - - src/resources/prefs-dialog.ui | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 66c5210b71974e6fd4517efbd8886813a38fe3bb -Author: Ekaterina Gerasimova -Date: Mon Oct 21 16:21:55 2013 -0700 - - help: improve wording for pref-passwords desc - - help/C/pref-passwords.page | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f992a6a337f0a46186781f56990ec2c70906950e -Author: Ekaterina Gerasimova -Date: Mon Oct 21 16:00:01 2013 -0700 - - help: remove empty desc tags - - help/C/data.page | 1 - - help/C/pref.page | 1 - - 2 files changed, 2 deletions(-) - -commit dcdca4c9dfbad1ca3b95874f7438345c5b7c11a4 -Author: Ekaterina Gerasimova -Date: Mon Oct 21 15:58:04 2013 -0700 - - help: correct help for managing passwords - - help/C/data-passwords.page | 15 ++++++++++----- - 1 file changed, 10 insertions(+), 5 deletions(-) - -commit 90330b9134d2d7ef4bb77b2b5ee08db63055a524 -Author: Ekaterina Gerasimova -Date: Mon Oct 21 15:52:46 2013 -0700 - - help: passwords not shown in Personal Data - - help/C/index.page | 4 ++-- - help/C/prob-passwords-show.page | 39 +++++++++++++++++++++++++++++++++++++++ - help/Makefile.am | 3 ++- - 3 files changed, 43 insertions(+), 3 deletions(-) - -commit 6dbd65fcec2aca2f8b357fc882b56d9f626166a1 -Author: Efstathios Iosifidis -Date: Wed Oct 16 11:39:41 2013 +0300 - - Updated Greek translation - - po/el.po | 666 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 369 insertions(+), 297 deletions(-) - -commit e5212825a634437917fa8aff9f748755cdfb56c1 -Author: Claudio Saavedra -Date: Tue Oct 15 15:56:18 2013 +0300 - - [release] 3.10.1 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 23ded8295d25dca40c615f5653ebe0b8c42889b4 -Author: Claudio Saavedra -Date: Tue Oct 15 15:53:15 2013 +0300 - - test-ephy-web-view: fix test cases for autosearch - - The dot doesn't need to be escaped. Add an extra test case for a - string that needs escaping. - - tests/ephy-web-view-test.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit f5b5b8668b1055315a075cc29dfeac1892ad88f8 -Author: Gabor Kelemen -Date: Mon Oct 14 11:03:14 2013 +0200 - - Added hu to HELP_LINGUAS - - help/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3e964c94091ee822e90357b80c81b7288b892200 -Author: Gabor Kelemen -Date: Mon Oct 14 11:02:59 2013 +0200 - - Added initial Hungarian translation - - help/hu/hu.po | 1422 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 1422 insertions(+) - -commit c3fa5a01d6b4ebebe3eef01cfc4158c7b9eba45d -Author: Arash Mousavi -Date: Fri Oct 11 16:11:00 2013 +0330 - - L10N: Updated Persian translations - - po/fa.po | 643 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 361 insertions(+), 282 deletions(-) - -commit 4d26bcbbffeb4bf4654342632be07455460cd2f6 -Author: Xabier Rodriguez Calvar -Date: Thu Oct 10 12:04:14 2013 +0200 - - Corrected galician translation - - po/gl.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit fa1dfe8adee6b86daec9cda11bf64b27c38a4c7f -Author: Carles Ferrando -Date: Sun Oct 6 22:03:38 2013 +0200 - - [l10n] Updated Catalan (Valencian) translation - - po/ca@valencia.po | 3137 ++++++----------------------------------------------- - 1 file changed, 328 insertions(+), 2809 deletions(-) - -commit 1f302c69e1d2d4befb1a7d22165e3b7141190ebd -Author: Victor Ibragimov -Date: Fri Oct 4 14:25:10 2013 +0500 - - Tajik translation updated - - po/tg.po | 692 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 376 insertions(+), 316 deletions(-) - -commit 2565ac672cc65817539a8a3ed2f954dc8f1835bd -Author: Yosef Or Boczko -Date: Tue Oct 1 21:28:17 2013 +0300 - - ephy-find-toolbar: Work again / and ' to activate the find bar - - https://bugzilla.gnome.org/show_bug.cgi?id=708550 - - src/ephy-find-toolbar.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 541b510e00a1bde5ac69fa4957fef5ccd0b6e0bb -Author: Cheng-Chia Tseng -Date: Mon Sep 30 19:22:35 2013 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 18 +++++++++--------- - po/zh_TW.po | 18 +++++++++--------- - 2 files changed, 18 insertions(+), 18 deletions(-) - -commit 15e5fdaee12ba58a278c96359f97650183230491 -Author: Muhammet Kara -Date: Sun Sep 29 21:38:50 2013 +0300 - - [l10n]Updated Turkish translation - - po/tr.po | 592 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 321 insertions(+), 271 deletions(-) - -commit 4fbbb712277c5895f5da958436dd88d36ef4528b -Author: Adam Matoušek -Date: Thu Sep 26 20:38:41 2013 +0200 - - Czech translation - - help/cs/cs.po | 1187 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 1187 insertions(+) - -commit 531bfe49ecc5b72146b94ae685fefae9e848d8cd -Author: Marek Černocký -Date: Thu Sep 26 20:38:06 2013 +0200 - - Updated Czech translation - - po/cs.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 3a815544a7fb956c7350d5ce99a73d37f2a81f75 -Author: Marek Černocký -Date: Thu Sep 26 20:37:50 2013 +0200 - - Added the Czech translation - - help/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 175469e8ab5ec4ebcc333478c5844684db51e0d8 -Author: Claudio Saavedra -Date: Thu Sep 26 20:10:02 2013 +0300 - - ephy-navigation-history-action: fix missing return value - - https://bugzilla.gnome.org/show_bug.cgi?id=708461 - - src/ephy-navigation-history-action.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 58189dc3420e9cf75909e7955a933f08c83ace06 -Author: António Lima -Date: Wed Sep 25 02:39:48 2013 +0100 - - Updated Portuguese translation - - po/pt.po | 3366 +++++++------------------------------------------------------- - 1 file changed, 362 insertions(+), 3004 deletions(-) - -commit dcacab927b401502678519eec8eaef9bc66f583c -Author: Claudio Saavedra -Date: Tue Sep 24 18:53:31 2013 +0300 - - [release] 3.10.0 - - NEWS | 6 ++++++ - configure.ac | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit cdef8dbc9fc3d350240901e2df7df94c3768fdde -Author: David King -Date: Sun Sep 22 17:27:51 2013 +0100 - - Add German help translation to help/Makefile.am - - help/Makefile.am | 2 +- - help/de/de.mo | Bin 30745 -> 0 bytes - 2 files changed, 1 insertion(+), 1 deletion(-) - -commit 78634e238c7ff647b58fc5179260c1a0619ca6dd -Author: Yosef Or Boczko -Date: Sun Sep 22 16:19:11 2013 +0300 - - Updated Hebrew translation - - po/he.po | 26 ++++++++++++++------------ - 1 file changed, 14 insertions(+), 12 deletions(-) - -commit 52ddf81bbaffd4541fd22e01e7e28e9c167b3983 -Author: Josep Sànchez -Date: Sat Sep 21 23:19:42 2013 +0200 - - [l10n] Update Catalan translation - - po/ca.po | 3137 +++++++------------------------------------------------------- - 1 file changed, 328 insertions(+), 2809 deletions(-) - -commit 3f8b6c3934a3b0db6a08763d0fc2f78cea479af0 -Author: Daniel Korostil -Date: Sat Sep 21 21:28:03 2013 +0300 - - Updated Ukrainian - - po/uk.po | 472 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 276 insertions(+), 196 deletions(-) - -commit 72833f748e602f68d6804f3d4593e0ed238de032 -Author: Alexandre Franke -Date: Sat Sep 21 17:23:03 2013 +0200 - - Update French translation - - po/fr.po | 434 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 254 insertions(+), 180 deletions(-) - -commit dc352f511d4f6eb1c23782832ade603147819e32 -Author: Dušan Kazik -Date: Sat Sep 21 14:23:19 2013 +0200 - - Updated slovak translation - - po/sk.po | 15 +++++++-------- - 1 file changed, 7 insertions(+), 8 deletions(-) - -commit e8914054b7c7ee97ed0650ad759cc678c95dcffe -Author: Claudio Saavedra -Date: Fri Sep 20 15:02:13 2013 +0300 - - [release] 3.9.91 - - NEWS | 11 +++++++++++ - configure.ac | 2 +- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 21e99b5c7591046b51495d38372a080da664ad25 -Author: Gustavo Noronha Silva -Date: Sun Sep 8 03:06:20 2013 -0300 - - Add a new startup flag to indicate we are resuming a session - - Web should open a new window if no URIs are passed - it's how GNOME - Shell does its 'new window' magic. However, it should not do so if the - instance that is already running is a headless instance that happens - to be active, and resumes a session when called with or without URIs. - - https://bugzilla.gnome.org/show_bug.cgi?id=707451 - - src/ephy-session.c | 2 +- - src/ephy-shell.c | 13 +++++++++---- - src/ephy-shell.h | 1 + - 3 files changed, 11 insertions(+), 5 deletions(-) - -commit 7f3e5ffdc1d1e5241457de602facbfb07ce01093 -Author: Yosef Or Boczko -Date: Fri Sep 20 12:50:53 2013 +0300 - - ephy-toolbar: Add my name to copyright - - src/ephy-toolbar.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 2f2f242ee682e57b50d08fd031346c1a5504cbc4 -Author: Yosef Or Boczko -Date: Fri Sep 20 10:20:57 2013 +0300 - - ephy-window: Fix the margin of the toolbar - - https://bugzilla.gnome.org/show_bug.cgi?id=708436 - - src/ephy-window.c | 12 ++---------- - 1 file changed, 2 insertions(+), 10 deletions(-) - -commit 9416b4739b4174dce07dfe6d1062ba17dadf833b -Author: Khaled Hosny -Date: Thu Sep 19 22:18:57 2013 +0200 - - Update Arabic translation - - po/ar.po | 437 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 255 insertions(+), 182 deletions(-) - -commit e8b66c6a9c8d44e03e5eec82d92f8440069fe6f3 -Author: Dušan Kazik -Date: Thu Sep 19 20:33:25 2013 +0200 - - Updated slovak translation - - po/sk.po | 781 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 449 insertions(+), 332 deletions(-) - -commit 6deaeae15317b98607ac7e612bc930e052ed46fa -Author: Benjamin Steinwender -Date: Thu Sep 19 18:55:11 2013 +0200 - - Updated German translation - - po/de.po | 735 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 405 insertions(+), 330 deletions(-) - -commit c92d4ac176675f4f520b004a62519d2ca66d6b92 -Author: Enrico Nicoletto -Date: Thu Sep 19 12:14:35 2013 -0300 - - Updated Brazilian Portuguese images for manual - - help/pt_BR/media/epiphany-3-8.png | Bin 0 -> 141865 bytes - help/pt_BR/media/private-browsing-3-8.png | Bin 0 -> 146672 bytes - 2 files changed, 0 insertions(+), 0 deletions(-) - -commit cd359e214d0b7a742efd750052b54ee5442b944f -Author: Reinout van Schouwen -Date: Thu Sep 19 00:19:58 2013 +0200 - - Updated Dutch translation - - po/nl.po | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -commit 602f48db8433e0d15e4878754902b2023905e030 -Author: Reinout van Schouwen -Date: Thu Sep 19 00:17:14 2013 +0200 - - Updated Dutch translation - - po/nl.po | 668 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 382 insertions(+), 286 deletions(-) - -commit 220c8adeab7861b8ca3312b77d8bba797ec13861 -Author: Enrico Nicoletto -Date: Wed Sep 18 20:18:54 2013 -0300 - - Updated Brazilian Portuguese translation - - help/Makefile.am | 2 +- - help/pt_BR/pt_BR.po | 1179 +++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 1180 insertions(+), 1 deletion(-) - -commit 9e053693ff0a93f4d27102803559d5bdfd12b5ff -Author: Inaki Larranaga Murgoitio -Date: Wed Sep 18 18:14:15 2013 +0200 - - Updated Basque language - - po/eu.po | 673 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 392 insertions(+), 281 deletions(-) - -commit e91a8c6f7001bb9e3ee7231e7d160f2f5513900d -Author: Ask H. Larsen -Date: Tue Sep 17 18:38:31 2013 +0200 - - Updated Danish translation - - po/da.po | 634 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 352 insertions(+), 282 deletions(-) - -commit 4f0050acae40685d59373bd92de318595c21955b -Author: Yosef Or Boczko -Date: Mon Sep 16 21:25:36 2013 +0300 - - Updated Hebrew translation - - po/he.po | 445 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 258 insertions(+), 187 deletions(-) - -commit bcfaaf8d55f6ac63c0d031c29d57377c9f9adca6 -Author: Gianvito Cavasoli -Date: Mon Sep 16 14:42:45 2013 +0200 - - [l10n] Added Italian translation. - - po/it.po | 602 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 319 insertions(+), 283 deletions(-) - -commit 9f1f3a253aa505c20996280bac8607ca668184a0 -Author: Changwoo Ryu -Date: Sat Sep 14 17:41:26 2013 +0900 - - Updated Korean translation - - po/ko.po | 719 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 345 insertions(+), 374 deletions(-) - -commit 9df1b914a4751b121851d05f209d17dd535f124a -Author: Nilamdyuti Goswami -Date: Thu Sep 12 15:34:52 2013 +0530 - - Assamese Translation Updated - - po/as.po | 665 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 374 insertions(+), 291 deletions(-) - -commit f968690a1e2b67f1358f62adc39b4ba7d5992bd4 -Author: Rūdolfs Mazurs -Date: Wed Sep 11 22:56:16 2013 +0300 - - Updated Latvian translation - - po/lv.po | 657 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 369 insertions(+), 288 deletions(-) - -commit c711f4a7e195142e517bd4299019f91cda7d4ebf -Author: Jiro Matsuzawa -Date: Wed Sep 11 23:35:10 2013 +0900 - - l10n: Update Japanese translation - - po/ja.po | 430 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 249 insertions(+), 181 deletions(-) - -commit c161b6b901daa40dc5a3042c6de300c977cbb211 -Author: Claudio Saavedra -Date: Tue Sep 10 12:11:30 2013 +0300 - - configure.ac: bump WebKit dependency to 2.1.4 - - Because of webkit_dom_keyboard_event_get_key_identifier() - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 51fb4e8a177dc9320642e04e050cd2cbf9a3f825 -Author: Yuri Myasoedov -Date: Mon Sep 9 16:22:58 2013 +0400 - - Updated Russian translation - - po/ru.po | 833 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 388 insertions(+), 445 deletions(-) - -commit b6602f5c5b2bef6862c103e781a3be6a76749ba3 -Author: Claudio Saavedra -Date: Mon Sep 9 10:23:48 2013 +0300 - - actions: fix return value for button press events that pop up menus - - Otherwise the GTK+ will pop up the menu from the WM actions. - - https://bugzilla.gnome.org/show_bug.cgi?id=707721 - - src/ephy-navigation-history-action.c | 7 ++++--- - src/ephy-page-menu-action.c | 6 ++++-- - 2 files changed, 8 insertions(+), 5 deletions(-) - -commit 030d8569b212e65ad6f93d6f7f09a06972172202 -Author: Kjartan Maraas -Date: Sun Sep 8 19:27:49 2013 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 319 ++++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 191 insertions(+), 128 deletions(-) - -commit a6593615efe15e703a39cf0193cf8605e1d69a85 -Author: Andika Triwidada -Date: Sun Sep 8 19:02:14 2013 +0700 - - Updated Indonesian translation - - po/id.po | 634 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 337 insertions(+), 297 deletions(-) - -commit db4614469e600420208429bc92530587f782f741 -Author: Ihar Hrachyshka -Date: Sun Sep 8 11:51:47 2013 +0300 - - Updated Belarusian translation. - - po/be.po | 630 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 340 insertions(+), 290 deletions(-) - -commit c69d6c8ce1899b9fcf3c36468a8831a3aa3cf4ab -Author: Мирослав Николић -Date: Sun Sep 8 06:46:30 2013 +0200 - - Updated Serbian translation - - po/sr.po | 645 ++++++++++++++++++++++++++++++++------------------------- - po/sr@latin.po | 645 ++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 722 insertions(+), 568 deletions(-) - -commit e98d99b596afc13078dfd0c4cb28d4592c645653 -Author: Ville-Pekka Vainio -Date: Sat Sep 7 20:21:36 2013 +0300 - - Finnish translation update by Jiri Grönroos - - po/fi.po | 654 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 369 insertions(+), 285 deletions(-) - -commit dfa51cde10e09c846359a3aaad5e2aeefbdb7efc -Author: Chao-Hsiung Liao -Date: Fri Sep 6 16:17:19 2013 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 216 ++++++++++++++++++++++++++++++++++++----------------------- - po/zh_TW.po | 218 +++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 268 insertions(+), 166 deletions(-) - -commit b8c8cdc2cb164b6f0f3a01e2729c504bb129a1cc -Author: Marek Černocký -Date: Thu Sep 5 19:03:55 2013 +0200 - - Updated Czech translation - - po/cs.po | 267 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 156 insertions(+), 111 deletions(-) - -commit 03bfac8e64d4b082deca1288edec94397e30b7f0 -Author: Chao-Hsiung Liao -Date: Thu Aug 29 21:44:14 2013 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 235 +++++++++++++++++++++++++++++++++--------------------------- - po/zh_TW.po | 235 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 256 insertions(+), 214 deletions(-) - -commit edea3e1a8b5775fa964720c1a3407e0b6b56f0d5 -Author: Piotr Drąg -Date: Wed Sep 4 02:24:52 2013 +0200 - - Updated Polish translation - - po/pl.po | 163 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 97 insertions(+), 66 deletions(-) - -commit 2a80b0d629fb71f2aa54eb22f0d2fcabdd72163e -Author: Aurimas Černius -Date: Wed Sep 4 00:17:35 2013 +0300 - - Updated Lithuanian translation - - po/lt.po | 159 ++++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 97 insertions(+), 62 deletions(-) - -commit f023fc3d62d5a6329de9fe63de6a46531a6bd16d -Author: Balázs Úr -Date: Tue Sep 3 19:56:49 2013 +0200 - - Updated Hungarian translation - - po/hu.po | 441 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 257 insertions(+), 184 deletions(-) - -commit 73e1b4b303084515f99fd33360ed5183df88e39e -Author: Yosef Or Boczko -Date: Tue Sep 3 17:20:00 2013 +0300 - - ephy-find-toolbar: Set view-wrapped icon according to locale's text direction - - src/ephy-find-toolbar.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit deb2960ee482dd3675df46cc8b18f66a6fb7629b -Author: Daniel Mustieles -Date: Tue Sep 3 16:09:50 2013 +0200 - - Updated Spanish translation - - po/es.po | 161 +++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 99 insertions(+), 62 deletions(-) - -commit 62921d430cdaf988c795c43ef61f1706cec46b74 -Author: Claudio Saavedra -Date: Tue Sep 3 10:21:04 2013 +0300 - - ephy-bookmark-properties: icon name should not be marked for translation - - https://bugzilla.gnome.org/show_bug.cgi?id=707341 - - src/bookmarks/ephy-bookmark-properties.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 19748ef0dfd3127bb67c147b7d7530904e4f6079 -Author: Seán de Búrca -Date: Mon Sep 2 21:47:21 2013 -0600 - - Updated Irish translation - - po/ga.po | 3018 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1343 insertions(+), 1675 deletions(-) - -commit 84879907ec937d5a9aa625c8985b588f99457bd9 -Author: Rafael Ferreira -Date: Mon Sep 2 21:00:06 2013 -0300 - - Update Brazilian Portuguese translation, proofread by Enrico Nicoletto - - po/pt_BR.po | 175 ++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 112 insertions(+), 63 deletions(-) - -commit 8f4310660a3edfb838f00ff3d7d0efadf48bbb8b -Author: Matej Urbančič -Date: Mon Sep 2 23:00:56 2013 +0200 - - Updated Slovenian translation - - po/sl.po | 166 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 99 insertions(+), 67 deletions(-) - -commit 95bb9e0c6199fd290a53d6cb60951f5f68214b3e -Author: Claudio Saavedra -Date: Thu Aug 29 23:21:09 2013 +0300 - - [release] 3.9.90 - - NEWS | 16 ++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit d785a8a3020b83622ec527331a8c8c96f2c45af9 -Author: Claudio Saavedra -Date: Mon Sep 2 22:59:26 2013 +0300 - - tests: skip tests that are breaking distcheck - - These broken tests are reported in bugzilla and are blocking a - release so I'll skip them for now. - - tests/ephy-session-test.c | 6 +++++- - tests/ephy-shell-test.c | 5 +++++ - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit c09a526afab31d4f195f6ae416e22584b7874c14 -Author: Claudio Saavedra -Date: Mon Sep 2 21:47:41 2013 +0300 - - ephy-web-view: fix the search url when settings unavailable - - Another hardcoded google instance. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a0dde60d1b0d4ab580c7b68236cc8533f7b0ecda -Author: Claudio Saavedra -Date: Mon Sep 2 21:38:49 2013 +0300 - - data: fix distcheck again - - data/Makefile.am | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 2cd60b6e3a469d35863180c716e897faa6b8e1aa -Author: Daniel Mustieles -Date: Mon Sep 2 18:05:18 2013 +0200 - - Updated Spanish translation - - po/es.po | 293 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 165 insertions(+), 128 deletions(-) - -commit 6d9799a62331bc9d965b57c04649886dca0af795 -Author: Fran Diéguez -Date: Mon Sep 2 17:03:44 2013 +0200 - - Updated Galician translations - - po/gl.po | 159 +++++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 104 insertions(+), 55 deletions(-) - -commit da5629f13ef69aa9faf9d065fd147f61bef507e3 -Author: Yosef Or Boczko -Date: Mon Sep 2 17:52:59 2013 +0300 - - Drop GtkStock - - https://bugzilla.gnome.org/show_bug.cgi?id=707021 - - embed/ephy-web-view.c | 2 +- - lib/ephy-file-chooser.c | 8 ++++---- - lib/widgets/ephy-certificate-dialog.c | 2 +- - lib/widgets/ephy-location-entry.c | 12 +++--------- - src/bookmarks/ephy-bookmark-properties.c | 21 +++++++++------------ - src/bookmarks/ephy-bookmarks-editor.c | 4 ++-- - src/ephy-history-window.c | 5 +---- - src/pdm-dialog.c | 8 +++----- - src/window-commands.c | 2 +- - 9 files changed, 25 insertions(+), 39 deletions(-) - -commit 7c5b4005450fc59ac287b351c1158f29c36f96a7 -Author: Yosef Or Boczko -Date: Mon Sep 2 16:40:07 2013 +0300 - - ephy-find-toolbar: Remove cast macros from places where it's not needed - - https://bugzilla.gnome.org/show_bug.cgi?id=707086 - - src/ephy-find-toolbar.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 91ee871fceccb61e084f15b1b2b8846d0861ee9b -Author: Yosef Or Boczko -Date: Mon Sep 2 16:39:38 2013 +0300 - - ephy-find-toolbar: Port to GtkSearchBar - - Also fix the appearance of the prev/next buttons. - - https://bugzilla.gnome.org/show_bug.cgi?id=707086 - - src/ephy-find-toolbar.c | 126 ++++++++++++------------------------------------ - src/ephy-find-toolbar.h | 4 +- - 2 files changed, 33 insertions(+), 97 deletions(-) - -commit db42abbd1bc665d428787816b58aa49928454aff -Author: Adam Dingle -Date: Mon Sep 2 04:00:58 2013 -0400 - - Require GTK 3.9.12 - - We now use gtk_button_new_from_icon_name, first found in GTK 3.9.12. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c7fd65d7534b600cc135a5b680973b4ea80eb09d -Author: Yosef Or Boczko -Date: Mon Sep 2 01:37:39 2013 +0300 - - ephy-toolbar: Do not hardcode title style of a web-app - - Let the css theme define the title style. - - https://bugzilla.gnome.org/show_bug.cgi?id=707246 - - src/ephy-toolbar.c | 20 ++++---------------- - 1 file changed, 4 insertions(+), 16 deletions(-) - -commit 8b9bfed919c6e105d40e5cd730469fa550281e5e -Author: Claudio Saavedra -Date: Mon Sep 2 00:44:33 2013 +0300 - - test-ephy-embed-shell: Do not assume XDG_DATA_DIRS is set - - Otherwise the test will fail in systens where this is unset. - - tests/ephy-embed-shell-test.c | 8 +++++--- - 1 file changed, 5 insertions(+), 3 deletions(-) - -commit 205ae3a6b5a6da8c873023ae5a9afbcee004271e -Author: Matej Urbančič -Date: Sun Sep 1 21:04:54 2013 +0200 - - Updated Slovenian translation - - po/sl.po | 13 +++++++++++-- - 1 file changed, 11 insertions(+), 2 deletions(-) - -commit 5d367b00f01d8aa81d3a1512115718df22fd8d8b -Author: Aurimas Černius -Date: Sun Sep 1 21:36:40 2013 +0300 - - Updated Lithuanian translation - - po/lt.po | 115 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 64 insertions(+), 51 deletions(-) - -commit a35ad7a894b55ba1043108d0a7aaa21a1442f4e6 -Author: Piotr Drąg -Date: Sun Sep 1 20:28:06 2013 +0200 - - Updated Polish translation - - po/pl.po | 14 ++++++++++++-- - 1 file changed, 12 insertions(+), 2 deletions(-) - -commit 6c8168bc555eea7e440d358bbe53c69cfdf5382f -Author: Piotr Drąg -Date: Sun Sep 1 20:25:22 2013 +0200 - - Updated POTFILES.in and POTFILES.skip - - po/POTFILES.in | 2 +- - po/POTFILES.skip | 1 + - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit 34afe1abf5cf55bac45cfcbbc544d8b41e8d8343 -Author: Claudio Saavedra -Date: Sun Sep 1 18:21:48 2013 +0300 - - test-ephy-web-view: change search url to DDG - - This is hardcoded here and necessary for the test to pass. - - tests/ephy-web-view-test.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 8f84cb58571f369e83f969acd668438a89cdb62a -Author: Claudio Saavedra -Date: Fri Aug 30 17:52:42 2013 +0300 - - data: add appdata file for web - - data/Makefile.am | 5 +++++ - data/epiphany.appdata.xml.in | 17 +++++++++++++++++ - po/POTFILES.in | 1 + - 3 files changed, 23 insertions(+) - -commit 9790726e8d0da3b16581957922e2ab8449815a59 -Author: Cosimo Cecchi -Date: Sat Aug 31 19:03:54 2013 -0700 - - search-provider: fix string comparison - - Otherwise the provider won't update the string in the shell search - overview. - - https://bugzilla.gnome.org/show_bug.cgi?id=707204 - - src/ephy-search-provider.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ab49d2c7b370d7a2d2089404d436551d0e851ff3 -Author: Piotr Drąg -Date: Sat Aug 31 23:01:37 2013 +0200 - - Updated Polish translation - - po/pl.po | 159 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 91 insertions(+), 68 deletions(-) - -commit 36bf88b3bc6f3670807f10de2d2cefc781b57992 -Author: Yosef Or Boczko -Date: Sat Aug 31 20:41:10 2013 +0300 - - ephy-window: Fix the margin of the toolbar - - https://bugzilla.gnome.org/show_bug.cgi?id=707091 - - src/ephy-window.c | 14 +++++++++++--- - 1 file changed, 11 insertions(+), 3 deletions(-) - -commit c22bf5b758a617ece45985b98e33de6dbbdac6d6 -Author: Yosef Or Boczko -Date: Sat Aug 31 20:40:23 2013 +0300 - - ephy-toolbar: Fix the margin on the left side of the separator - - https://bugzilla.gnome.org/show_bug.cgi?id=707091 - - src/ephy-toolbar.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 6102aa2f2cc43cef06cd31a04a973bb618740855 -Author: Enrico Nicoletto -Date: Fri Aug 30 11:18:50 2013 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 103 +++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 56 insertions(+), 47 deletions(-) - -commit b7f9c69f9ea6fcf65c66451e13a80a72257b879a -Author: Fran Diéguez -Date: Fri Aug 30 00:55:30 2013 +0200 - - Updated Galician translations - - po/gl.po | 97 +++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 53 insertions(+), 44 deletions(-) - -commit 60e3d891e95b961456b2b803053ac47d072a3242 -Author: Claudio Saavedra -Date: Thu Aug 29 22:26:37 2013 +0300 - - ephy-encodings-test.c: shutdown the helper files at the end - - Now that the shell holds a reference to the bookmark files it - is not possible to shutdown the helper files before shell has - been disposed. Actually, that never made sense. - - tests/ephy-encodings-test.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 154a5443ec857d9cca0ccc34ac34692f87330691 -Author: Matej Urbančič -Date: Thu Aug 29 18:22:57 2013 +0200 - - Updated Slovenian translation - - po/sl.po | 169 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 94 insertions(+), 75 deletions(-) - -commit 35432d8999700bcf39d4c398299335d1b67b891a -Author: Claudio Saavedra -Date: Thu Aug 29 19:16:56 2013 +0300 - - ephy-download-test.c: initialize the file_helpers earlier - - The shell needs these to be ready, otherwise the test will break. - - tests/ephy-download-test.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 3254beb59a670250142c3dae1337a991944c379e -Author: Claudio Saavedra -Date: Thu Aug 29 19:04:39 2013 +0300 - - POTFILES.in: add search provider file - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit f8f38cb1bbf42e91e5ce5ad4b50caea70d6a08e3 -Author: Giovanni Campagna -Date: Sun Aug 18 15:59:49 2013 +0200 - - Add a shell search provider - - The search provider offers the same results as the inline completion - in the location bar, gathering results from the history and from - bookmarks. Also, it provides a special "Search the web" item, that - continues search with the configured search engine (Google by default) - - https://bugzilla.gnome.org/show_bug.cgi?id=694943 - - data/Makefile.am | 3 + - data/epiphany-search-provider.ini | 5 + - src/Makefile.am | 19 ++ - src/ephy-search-provider.c | 422 +++++++++++++++++++++++++++++++++ - src/ephy-search-provider.h | 55 +++++ - src/ephy-shell.c | 43 ++++ - src/org.gnome.ShellSearchProvider2.xml | 87 +++++++ - 7 files changed, 634 insertions(+) - -commit 77df45f51f70243aaad5ec88b816c881cfdb2dbe -Author: Giovanni Campagna -Date: Sun Aug 18 15:17:23 2013 +0200 - - EphyShell: add support for starting without windows - - To launch epiphany as a DBus service, we need to be able to launch - without opening windows, and then use the GApplication inactivity - timeout to manage our lifetime. - - https://bugzilla.gnome.org/show_bug.cgi?id=694943 - - data/org.gnome.Epiphany.service.in | 2 +- - src/ephy-main.c | 6 ++++++ - src/ephy-shell.c | 25 ++++++++++++++++++++++--- - src/ephy-shell.h | 1 + - 4 files changed, 30 insertions(+), 4 deletions(-) - -commit fa9ed211b6457537492162d71d552ad5fee9c835 -Author: Yosef Or Boczko -Date: Thu Aug 29 14:02:54 2013 +0300 - - ephy-window: Use GtkFrame instead of GtkEventBox in the window title - - src/ephy-window.c | 11 +++++------ - 1 file changed, 5 insertions(+), 6 deletions(-) - -commit 003ee0667564d8a3587f9ba60f2d088446943ef3 -Author: Claudio Saavedra -Date: Thu Aug 29 11:44:42 2013 +0300 - - ephy-window.c: explicitly show the event box - - Otherwise sometimes the bar is initially hidden - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 67bbe86ab6b15b7d3552d2d6d4d9519ba3136b65 -Author: Yosef Or Boczko -Date: Fri Aug 30 12:08:00 2013 +0300 - - ephy-toolbar: Add close button - - https://bugzilla.gnome.org/show_bug.cgi?id=706050 - - src/ephy-toolbar.c | 114 ++++++++++++++++++++++++++++++++++++++++++++++------- - 1 file changed, 99 insertions(+), 15 deletions(-) - -commit d42ace6d967556cef7675de7414fb16938530497 -Author: Yosef Or Boczko -Date: Fri Aug 30 12:07:35 2013 +0300 - - ephy-window: Always show the top bar in app mode and show/hide title according mode window - - * In normal mode: show address bar and - hide title and reload/stop buttons. - - * In web application mode: hidde the address bar - and show instead the page title and the reload/stop button. - - https://bugzilla.gnome.org/show_bug.cgi?id=706050 - - src/ephy-window.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -commit d2b81dfca703ba9d6f0dc34a89884ca66c4aad74 -Author: Yosef Or Boczko -Date: Fri Aug 30 12:07:12 2013 +0300 - - ephy-window: Fix the margins in the top bar - - https://bugzilla.gnome.org/show_bug.cgi?id=706050 - - src/ephy-window.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit a93f0f4947ace896ab040d6ae7c54216786fa4c4 -Author: Yosef Or Boczko -Date: Fri Aug 30 12:06:49 2013 +0300 - - ephy-window: Use the top bar GtkBox as titlebar - - The GtkEventBox is to ensure opacity (see - bug #706045). - - https://bugzilla.gnome.org/show_bug.cgi?id=706050 - - src/ephy-window.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 2f7bc20a4d95406df0bd1a1e4fd6cd98ba18d253 -Author: Yosef Or Boczko -Date: Fri Aug 30 12:06:30 2013 +0300 - - ephy-toolbar: Use GtkBox instead GtkToolbar - - The padding is according the comments of the team design. - - https://bugzilla.gnome.org/show_bug.cgi?id=706050 - - src/ephy-toolbar.c | 124 ++++++++++++++++++++++++----------------------------- - src/ephy-toolbar.h | 4 +- - 2 files changed, 57 insertions(+), 71 deletions(-) - -commit afec346c79336f176a458880b2b302aebefa1640 -Author: Giovanni Campagna -Date: Tue Aug 27 11:35:22 2013 +0200 - - build: don't use GTK_DISABLE_DEPRECATION - - It breaks the build when Gtk deprecates API, and buys nothing - over -Wdeprecated-declarations. - - https://bugzilla.gnome.org/show_bug.cgi?id=706871 - - configure.ac | 8 -------- - 1 file changed, 8 deletions(-) - -commit 91464eef94f05c139aa60fc8bebcc3e7fad62281 -Author: Claudio Saavedra -Date: Wed Aug 28 22:23:07 2013 +0300 - - ephy-window: Simplify ephy_window_close() - - Simply use one if block, also put the boolean variable check first. - - https://bugzilla.gnome.org/show_bug.cgi?id=695642 - - src/ephy-window.c | 16 +++++++--------- - 1 file changed, 7 insertions(+), 9 deletions(-) - -commit b5754ac85db00de0183dbd13004917d5eb9c06a6 -Author: Carlos Garcia Campos -Date: Thu Mar 21 14:00:18 2013 +0100 - - Make ephy_web_view_has_modified_forms() asynchronous - - https://bugzilla.gnome.org/show_bug.cgi?id=695642 - - embed/ephy-web-view.c | 73 +++++++++++++------ - embed/ephy-web-view.h | 8 ++- - src/ephy-window.c | 192 +++++++++++++++++++++++++++++++++++++------------- - 3 files changed, 203 insertions(+), 70 deletions(-) - -commit 1d9f2c94024756ee68abba6eaff1078a52c6e57b -Author: Christian Kirbach -Date: Wed Aug 28 20:19:54 2013 +0200 - - Updated German help translation - - help/de/de.mo | Bin 0 -> 30745 bytes - help/de/de.po | 1179 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 1179 insertions(+) - -commit fb992dad026330016eafa88e0075b39eb3cccf8f -Author: Christian Kirbach -Date: Wed Aug 28 20:10:31 2013 +0200 - - Revert "Updated German translation" - - This reverts commit 0b7f0e20c5456d878bd53fd1600e699d7a736455. - - po/de.po | 3513 +++++++++++++++++++++++++++++++++++++++++++++----------------- - 1 file changed, 2572 insertions(+), 941 deletions(-) - -commit 0b7f0e20c5456d878bd53fd1600e699d7a736455 -Author: Christian Kirbach -Date: Wed Aug 28 20:07:41 2013 +0200 - - Updated German translation - - po/de.po | 3513 +++++++++++++++++--------------------------------------------- - 1 file changed, 941 insertions(+), 2572 deletions(-) - -commit 311e8cb1b410437150040ec22ebb3e609d2b4fc6 -Author: Claudio Saavedra -Date: Wed Aug 28 19:50:57 2013 +0300 - - Fix translation comment for default search engine - - I mistakenly gave as an example a wrong URL in the translation - comment. Fix it now and also the two translations that picked - it up. - - data/default-bookmarks.rdf.in | 4 ++-- - po/cs.po | 4 ++-- - po/gl.po | 4 ++-- - 3 files changed, 6 insertions(+), 6 deletions(-) - -commit 3e486d67fa72ae697004b415cbacf5c31c352d90 -Author: Marek Černocký -Date: Wed Aug 28 11:43:46 2013 +0200 - - Updated Czech translation - - po/cs.po | 233 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 127 insertions(+), 106 deletions(-) - -commit 6315bb73dbfd13a592a7324c4866938f8a1c751c -Author: Claudio Saavedra -Date: Wed Aug 28 10:53:17 2013 +0300 - - ephy-web-extension: remove unused variable - - embed/web-extension/ephy-web-extension.c | 1 - - 1 file changed, 1 deletion(-) - -commit 437db6fc400114894d28139928a73b64d311c0b6 -Author: Rafael Ferreira -Date: Tue Aug 27 20:58:29 2013 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 82 +++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 52 insertions(+), 30 deletions(-) - -commit 1d8b0fec9dd1e0aa14baa66745617892ed3cd976 -Author: Gustavo Noronha Silva -Date: Sun Jun 9 19:43:54 2013 -0300 - - Show a box with a list of available users for a login form - - If the login input is clicked, or focused the list of available - users is shown, and one can be chosen by clicking or using the - arrow keys. - - https://bugzilla.gnome.org/show_bug.cgi?id=675060 - - embed/web-extension/ephy-web-extension.c | 466 +++++++++++++++++++++++++++++++ - lib/ephy-web-dom-utils.c | 62 ++++ - lib/ephy-web-dom-utils.h | 7 + - 3 files changed, 535 insertions(+) - -commit 87c3c84bc9803944a75bbd20391b82b677df52f5 -Author: Fran Diéguez -Date: Wed Aug 28 00:44:52 2013 +0200 - - Updated Galician translations - - po/gl.po | 233 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 127 insertions(+), 106 deletions(-) - -commit 24ee341daba6b9888d01b74a9a166280f6c8a207 -Author: Aurimas Černius -Date: Tue Aug 27 23:01:00 2013 +0300 - - Updated Lithuanian translation - - po/lt.po | 512 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 259 insertions(+), 253 deletions(-) - -commit 26bd9ea586b59ff6be37de5db4499d435922afac -Author: Claudio Saavedra -Date: Tue Aug 27 22:20:30 2013 +0300 - - Switch the default search engine to DuckDuckGo - - data/default-bookmarks.rdf.in | 34 ++++++++++++++++++++++++---------- - data/org.gnome.epiphany.gschema.xml | 2 +- - 2 files changed, 25 insertions(+), 11 deletions(-) - -commit 11d4399936b7d280490594a70a188115e8acb1d0 -Author: Balázs Úr -Date: Sun Aug 25 10:20:45 2013 +0200 - - Updated Hungarian translation - - po/hu.po | 471 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 236 insertions(+), 235 deletions(-) - -commit 94724ed94b617a443c1a87f51ff772d808846b67 -Author: Alexandre Franke -Date: Fri Aug 23 13:47:01 2013 +0200 - - Update French translation - - po/fr.po | 436 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 216 insertions(+), 220 deletions(-) - -commit 328b7139da58ec115e6ef3295fa417eded4e9dc0 -Author: Claudio Saavedra -Date: Thu Aug 22 11:45:19 2013 +0300 - - overview: add favicon to page thumbnails - - embed/ephy-web-view.c | 3 ++- - lib/ephy-snapshot-service.c | 21 +++++++++++++++++++-- - lib/ephy-snapshot-service.h | 3 ++- - lib/widgets/ephy-overview-store.c | 5 +++-- - lib/widgets/ephy-overview-store.h | 3 ++- - 5 files changed, 28 insertions(+), 7 deletions(-) - -commit e5d3e6bc678fdd588bafae9fa41bfb88e8e1d8d3 -Author: Piotr Drąg -Date: Tue Aug 20 22:39:56 2013 +0200 - - Updated Polish translation - - po/pl.po | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit 4586e997fc92c73554e3094ea534f63ba6d2fea7 -Author: Piotr Drąg -Date: Sun Aug 18 22:30:37 2013 +0200 - - Updated Polish translation - - po/pl.po | 448 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 216 insertions(+), 232 deletions(-) - -commit 3cdd3e6e1bfd3f64a2a25724fb683f1ac25675ad -Author: Matej Urbančič -Date: Sun Aug 18 01:56:09 2013 +0200 - - Updated Slovenian translation - - po/sl.po | 249 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 125 insertions(+), 124 deletions(-) - -commit 3b5c00ab4f4ee6eecca866cd35a5d05916d2bbfb -Author: Gustavo Noronha Silva -Date: Thu Aug 15 18:03:04 2013 -0300 - - Condition calling gdk_x11 API with build and runtime checks - - lib/ephy-gui.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit c1390040cedd28446f8fbe46bb6f373950a491ce -Author: Claudio Saavedra -Date: Wed Aug 14 23:19:34 2013 +0300 - - [Release] 3.9.3 - - NEWS | 13 +++++++++++++ - configure.ac | 2 +- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit f8eac2e1802f90fe9bc160d83d86a9887066a0e6 -Author: Kjartan Maraas -Date: Wed Aug 14 15:00:20 2013 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 165 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 84 insertions(+), 81 deletions(-) - -commit b99f082db53c71fc71080cd2283df2b95116b043 -Author: Gustavo Noronha Silva -Date: Fri May 3 09:56:43 2013 -0700 - - Pre-fill password field when the username field loses focus - - This change makes Web pass the username as a query attribute when querying - the secrets service when the username field loses focus, and pre-fills the - password field with the one that was stored for the username the user - typed in the username field. - - https://bugzilla.gnome.org/show_bug.cgi?id=699606 - - embed/web-extension/ephy-embed-form-auth.c | 11 ++++++- - embed/web-extension/ephy-embed-form-auth.h | 4 ++- - embed/web-extension/ephy-web-extension.c | 46 +++++++++++++++++++++++++++--- - lib/ephy-form-auth-data.c | 7 +++-- - lib/ephy-form-auth-data.h | 1 + - 5 files changed, 61 insertions(+), 8 deletions(-) - -commit 3db87856199943b40dd756b381d56b35bd506686 -Author: Gustavo Noronha Silva -Date: Sun Aug 11 22:55:26 2013 -0300 - - Force an update on WNCK's knowledge of windows and workspaces - - We need to poke WNCK, otherwise our first call to ephy_window_is_on_current_workspace - will be a false-positive. - - https://bugzilla.gnome.org/show_bug.cgi?id=705811 - - src/ephy-shell.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit efc506ba29d5dd1fd931e0447bc4f63875cb0bc3 -Author: María Majadas -Date: Tue Aug 13 11:25:13 2013 +0200 - - Updated Spanish translation - - help/es/es.po | 923 ++++++++++++++++++++++++++-------------------------------- - 1 file changed, 420 insertions(+), 503 deletions(-) - -commit a05e77450ba9c937dba6d1cc98828a349fd60e84 -Author: Marek Černocký -Date: Sun Aug 11 07:15:35 2013 +0200 - - Updated Czech translation - - po/cs.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 544a004aec67c67ffd74dcd0ca6b2e18b1fb824f -Author: Rafael Ferreira -Date: Mon Aug 5 23:26:01 2013 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 477 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 237 insertions(+), 240 deletions(-) - -commit 83336b0c08a8d236e6051fb4b1ffc285aad4c77e -Author: María Majadas -Date: Sun Aug 4 18:25:05 2013 +0200 - - Updated Spanish translation - - help/es/es.po | 776 +++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 409 insertions(+), 367 deletions(-) - -commit d8373ce2759a8e790e658d511111017bb609bbdc -Author: Ekaterina Gerasimova -Date: Sun Jul 7 11:29:57 2013 +0100 - - Add help buttons to the pdm and pref dialogs - - src/pdm-dialog.c | 2 +- - src/resources/epiphany.ui | 16 +++++++++++++++- - src/resources/prefs-dialog.ui | 16 +++++++++++++++- - 3 files changed, 31 insertions(+), 3 deletions(-) - -commit 1feec7d16afd3c0396e3dde422001d95bea15bf7 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 22:54:56 2013 +0100 - - Update links to help, add app menuitem - - Update ephy_gui_help to link to pages, not sections. Update links to - pages in the new help. Add an app menu Help item. Change the link from - the preference dialog to link to the pref.page because one page per tab - is not compatible with the help style… - - lib/ephy-gui.c | 12 ++++++------ - lib/ephy-gui.h | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-shell.c | 13 +++++++++++++ - src/ephy-window.c | 3 +++ - src/pdm-dialog.c | 4 ++-- - src/prefs-dialog.c | 26 +------------------------- - src/resources/epiphany-application-menu.ui | 4 ++++ - src/resources/epiphany-bookmark-editor-ui.xml | 1 + - src/resources/epiphany-history-window-ui.xml | 1 + - src/resources/epiphany-ui.xml | 1 + - src/window-commands.c | 7 +++++++ - src/window-commands.h | 2 ++ - 16 files changed, 46 insertions(+), 38 deletions(-) - -commit 3959996638d390e27eb4e1e78c62cd04eb6b8071 -Author: Ekaterina Gerasimova -Date: Sun Aug 4 13:39:14 2013 +0200 - - Remove duplicate GtkBuilder property - - src/resources/prefs-dialog.ui | 1 - - 1 file changed, 1 deletion(-) - -commit 55748e48c7aefd6115fe8ebace1b935218475275 -Author: Ekaterina Gerasimova -Date: Sun Aug 4 11:27:31 2013 +0200 - - Add es to the help/Makefile.am - - help/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5c4c05225c72958e92e130fe857dc64b6f8fea13 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 21:55:30 2013 +0100 - - Set up build system for user help - - Makefile.am | 2 +- - configure.ac | 7 +++++++ - help/Makefile.am | 37 +++++++++++++++++++++++++++++++++++++ - 3 files changed, 45 insertions(+), 1 deletion(-) - -commit 1dd24ef4a29108db0ebeeac78e6d85e5e0348525 -Author: Yuri Myasoedov -Date: Sun Aug 4 10:02:31 2013 +0400 - - Updated Russian translation - - po/ru.po | 513 +++++++++++++++++++++++++-------------------------------------- - 1 file changed, 202 insertions(+), 311 deletions(-) - -commit 69c050631efb2950e4d73136e9af907f8e1b2dfb -Author: Claudio Saavedra -Date: Sat Aug 3 14:34:27 2013 +0200 - - ephy-window: disable new window creation in application mode - - Also incognito windows. - - https://bugzilla.gnome.org/show_bug.cgi?id=703929 - - src/ephy-window.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 96591accb86ef759181707d92b44391651294de7 -Author: Young-ho Cha -Date: Sat Aug 3 13:07:47 2013 +0200 - - ephy-about-handler: add content charset - - embed/ephy-about-handler.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 54429945ac209b637d142d467d9287861c06579a -Author: Diego Escalante Urrelo -Date: Mon Dec 10 05:17:18 2012 -0500 - - e-window: hide unsensitive actions in webapp mode - - https://bugzilla.gnome.org/show_bug.cgi?id=685216 - - src/ephy-window.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 819b2fba4c3788926a743a571cfb999588b47799 -Author: Fran Diéguez -Date: Fri Aug 2 13:02:57 2013 +0200 - - Updated Galician translations - - po/gl.po | 32 ++++++++++++++++---------------- - 1 file changed, 16 insertions(+), 16 deletions(-) - -commit 0ea7a5ef505250307f9fbac71a132f766c615b98 -Author: Chao-Hsiung Liao -Date: Fri Aug 2 10:44:22 2013 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 603 +++++++++++++++++++++++++++++++---------------------------- - po/zh_TW.po | 607 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 650 insertions(+), 560 deletions(-) - -commit 4e0702948781cf04c0d2f26a0e662a782118015d -Author: Diego Escalante Urrelo -Date: Thu Aug 1 15:19:35 2013 +0200 - - e-window: hide and disable more actions in webapp mode - - This disables and hides: ViewPageSource, ContextBookmarkPage, - InspectElement. - - https://bugzilla.gnome.org/show_bug.cgi?id=672910 - - src/ephy-window.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit 3c0c15b061d7f1a9981baa75dc768e7ee00f86b2 -Author: Claudio Saavedra -Date: Thu Aug 1 14:56:09 2013 +0200 - - ephy-window: update comment - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f6c366739882a6f41fe4fb3beefc8150d02a2936 -Author: Daniel Mustieles -Date: Wed Jul 31 18:26:31 2013 +0200 - - Updated Spanish translation - - help/es/es.po | 1135 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 1135 insertions(+) - -commit 3d06d5dfe73b035e60f4597e65e6c2589273fe6d -Author: Yaron Shahrabani -Date: Wed Jul 31 09:14:40 2013 +0300 - - Updated Hebrew translation. - - po/he.po | 898 ++++++++++++++++++++++++++++++++++++++++++++++++++------------- - 1 file changed, 711 insertions(+), 187 deletions(-) - -commit d7b861c43b6bbb052f85252dd027999c0ac72f3c -Author: Kjartan Maraas -Date: Thu Jul 18 13:49:30 2013 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 145 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 75 insertions(+), 70 deletions(-) - -commit 65dbb76859759c45de6317696fad8be9d815bf19 -Author: Jiro Matsuzawa -Date: Sat Jul 13 22:05:53 2013 +0900 - - l10n: Update Japanese translation - - po/ja.po | 420 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 208 insertions(+), 212 deletions(-) - -commit 442fba3349081b17f317de2c1d702c6fe6496e2a -Author: Bastien Nocera -Date: Mon Jul 8 11:33:02 2013 +0200 - - ephy-string: Avoid poking at remote websites - - Epiphany tries to query the existence of remote sites before loading - their page. This causes problems when the remote site is not available - and loading it requires the query to timeout (epiphany would look like - it's not loading the site for up to 60 seconds) or for one-time URLs - (where it might invalidate the query, such as for password resets, or - confirmation e-mails). - - We'll now only check whether the file exists so that incomplete URLs - ("epiphany foo.com/bar.html") still loads the bar.html file if it exists - locally, but the remote website if not. - - https://bugzilla.gnome.org/show_bug.cgi?id=703772 - - lib/ephy-string.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 18d58e526c4f53176ef66d2e42df35ec2c8bab29 -Author: Daniel Mustieles -Date: Mon Jul 8 13:36:12 2013 +0200 - - Updated Spanish translation - - po/es.po | 125 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 63 insertions(+), 62 deletions(-) - -commit 20a7f681d5120fab88e5e51ccb74541c856290f0 -Author: Ekaterina Gerasimova -Date: Sun Jul 7 16:03:23 2013 +0100 - - Work around the UI for the user help - - help/C/bookmark-add.page | 4 ++-- - help/C/browse-local.page | 4 ++-- - help/C/browse-web.page | 4 ++-- - help/C/browse-webapps.page | 4 ++-- - 4 files changed, 8 insertions(+), 8 deletions(-) - -commit 3b671a44b355412dafdf286aa80ef4bbf56e75da -Author: Ekaterina Gerasimova -Date: Sun Jul 7 12:21:30 2013 +0100 - - Tidy index and pref help pages - - help/C/index.page | 6 +++--- - help/C/pref.page | 8 +++----- - 2 files changed, 6 insertions(+), 8 deletions(-) - -commit 1d32187b789c5d6fb619082acf74bc2cf3c290bf -Author: Marek Černocký -Date: Sun Jul 7 00:05:48 2013 +0200 - - Updated Czech translation - - po/cs.po | 34 +++++++++++++++++----------------- - 1 file changed, 17 insertions(+), 17 deletions(-) - -commit 397c1383e2a4c918e10320bef7670fe5c77bb72d -Author: Ekaterina Gerasimova -Date: Sat Jul 6 21:51:01 2013 +0100 - - Rename the figures help directory to media - - …as that makes more sense as it may have other media in it in the future. - - help/C/browse-private.page | 2 +- - help/C/figures/epiphany-3-8.png | Bin 119144 -> 0 bytes - help/C/figures/private-browsing-3-8.png | Bin 108824 -> 0 bytes - help/C/figures/web-browser.png | Bin 1724 -> 0 bytes - help/C/index.page | 2 +- - help/C/introduction.page | 2 +- - help/C/media/epiphany-3-8.png | Bin 0 -> 119144 bytes - help/C/media/private-browsing-3-8.png | Bin 0 -> 108824 bytes - help/C/media/web-browser.png | Bin 0 -> 1724 bytes - 9 files changed, 3 insertions(+), 3 deletions(-) - -commit 89ff904158a1b5a186a56c54847a4f1e77d66905 -Author: Michael Catanzaro -Date: Sat Jul 6 15:18:06 2013 -0500 - - Fix typo in a message - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0dab26facb5a328140b39936f21c7f9ab7137759 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 21:19:39 2013 +0100 - - Stub out the problem section in the help index - - help/C/index.page | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 824eabb01add255bd11f0c38f51513eb690e6495 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 21:15:36 2013 +0100 - - Stub the view source help page - - help/C/source.page | 30 ------------------------------ - help/C/source.page.stub | 32 ++++++++++++++++++++++++++++++++ - 2 files changed, 32 insertions(+), 30 deletions(-) - -commit f82332d3301ca35b52710ff795a0dbc9fbf6d1c3 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 21:13:59 2013 +0100 - - Add help about Web Applications - - help/C/browse-webapps.page | 30 ++++++++++++++++++++++++++---- - 1 file changed, 26 insertions(+), 4 deletions(-) - -commit d8cb318ca7167a0b9fb06a7f016f622d528ab9d1 -Author: Aruna Sankaranarayanan -Date: Sat Jul 6 23:30:06 2013 +0530 - - help: More content in data-passwords.page - - Added content on updating stored passwords in Web. - - help/C/data-passwords.page | 28 ++++++++++++++++++++++++++++ - 1 file changed, 28 insertions(+) - -commit 47e3a4dcdc0f10bd08f51281f76556ec5e9c45d9 -Author: Michael Hill -Date: Sat Jul 6 13:57:18 2013 -0400 - - Review pref-css, pref-font pages - - help/C/pref-css.page | 4 ++-- - help/C/pref-font.page | 6 +++--- - 2 files changed, 5 insertions(+), 5 deletions(-) - -commit 613f56dee0534b621352eebd6000b2045129ddb3 -Author: Michael Hill -Date: Sat Jul 6 12:50:40 2013 -0400 - - Review bookmark-smart, browse-private - - help/C/bookmark-smart.page | 2 +- - help/C/browse-private.page | 17 ++++++++--------- - 2 files changed, 9 insertions(+), 10 deletions(-) - -commit 4407a314c1d57e4737c3dcc3b78fa98fe7d954b8 -Author: Michael Hill -Date: Sat Jul 6 12:26:13 2013 -0400 - - Review data-cookies - - help/C/data-cookies.page | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9bc5c0f788d815109647e4fe78caa0b082b5c7ce -Author: Michael Hill -Date: Sat Jul 6 12:22:10 2013 -0400 - - Review bookmark-delete - - help/C/bookmark-delete.page | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 6ebd82d7a9adb206b42f72e39f4c04947bc0e899 -Author: Michael Hill -Date: Sat Jul 6 11:33:05 2013 -0400 - - Review bookmark edit - - help/C/bookmark-edit.page | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 128bb0cea35972f2c12998a26c2e6ea8b049c80e -Author: Michael Hill -Date: Sat Jul 6 11:10:35 2013 -0400 - - Review cookies.xml, pref-cookies page - - help/C/cookies.xml | 4 ++-- - help/C/pref-cookies.page | 17 +++++++++-------- - 2 files changed, 11 insertions(+), 10 deletions(-) - -commit 2a6e922fda866b7eb9eb7e904a17d6d265af559d -Author: Ekaterina Gerasimova -Date: Sat Jul 6 15:23:32 2013 +0100 - - Fix typo on the history help page - - help/C/history.page | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c1fc9ef85daf0b59eed5639bc3f871fdc9913a62 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 15:16:42 2013 +0100 - - Start writing language help page - - help/C/pref-language.page | 42 ------------------------------------- - help/C/pref-language.page.stub | 47 ++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 47 insertions(+), 42 deletions(-) - -commit 511fe14ab2f960b4561011daf1cc2ba4b6c5abcb -Author: Michael Hill -Date: Sat Jul 6 09:50:18 2013 -0400 - - Review of introduction, history and history-delete - - help/C/history-delete.page | 5 +++-- - help/C/history.page | 10 +++++----- - help/C/introduction.page | 11 ++++++----- - 3 files changed, 14 insertions(+), 12 deletions(-) - -commit 09c9dc9bc17a2d4b03e8e0c5f7aaa0b530b784d2 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 14:37:41 2013 +0100 - - Add help page for download preferences - - help/C/pref-downloads.page | 32 +++++++++++++++++++++----------- - 1 file changed, 21 insertions(+), 11 deletions(-) - -commit 5b65f2900e873b534becb6180df7ab2a9351f9ec -Author: Ekaterina Gerasimova -Date: Sat Jul 6 13:45:39 2013 +0100 - - Split the passwords page for help buttons - - help/C/data-passwords.page | 29 ++++----------------------- - help/C/pref-passwords.page | 49 ++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 53 insertions(+), 25 deletions(-) - -commit 2272f08ccf04268e2d3ac1e03d4083a64c560756 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 13:15:59 2013 +0100 - - Reorder instructions in pref-css - - The instructions only seem to work if followed in a specific order, where the CCS is created before being enabled. - - help/C/pref-css.page | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -commit 647195b9347b4087840d926180c7ee3e00019297 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 13:03:28 2013 +0100 - - Review font preference help page - - help/C/pref-font.page | 34 ++++++++++++++++++++++------------ - 1 file changed, 22 insertions(+), 12 deletions(-) - -commit 0c6b4fed37cfa4b5c44391c4bac5036ab19d4f28 -Author: Ekaterina Gerasimova -Date: Sat Jul 6 10:42:20 2013 +0100 - - Review custom CSS help page - - help/C/pref-css.page | 38 ++++++++++++++++++++++++++------------ - 1 file changed, 26 insertions(+), 12 deletions(-) - -commit 2042b95fa31806c8977d2855c478a2727aa899bd -Author: Ekaterina Gerasimova -Date: Fri Jul 5 23:55:17 2013 +0100 - - Review password help page - - help/C/data-passwords.page | 82 +++++++++++++++++++--------------------------- - 1 file changed, 34 insertions(+), 48 deletions(-) - -commit 970198924eecb7595d71992ca4da322e60205c7d -Author: Ekaterina Gerasimova -Date: Fri Jul 5 23:38:58 2013 +0100 - - Stub the privacy help page - - help/C/pref-privacy.page | 42 ------------------------------------ - help/C/pref-privacy.page.stub | 50 +++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 50 insertions(+), 42 deletions(-) - -commit b28b1ce3bdf40b916459950dbab9441cce4d6f10 -Author: Ekaterina Gerasimova -Date: Fri Jul 5 23:35:10 2013 +0100 - - Write help page about bookmark topics - - help/C/bookmark-topic.page | 37 ++++++++++++++++++++++++++++++------- - 1 file changed, 30 insertions(+), 7 deletions(-) - -commit fad1b969a0a0e9e99289824b3f97ceb7af5406f0 -Author: Ekaterina Gerasimova -Date: Fri Jul 5 22:43:16 2013 +0100 - - Stub help pages for webapps and viewing source - - help/C/browse-webapps.page | 31 +++++++++++++++++++++++++++++++ - help/C/source.page | 30 ++++++++++++++++++++++++++++++ - 2 files changed, 61 insertions(+) - -commit a8b1de542ba2e092708cc78df3e0eff88a58b19c -Author: Gord Hill -Date: Tue Jul 2 19:45:13 2013 -0400 - - Fonts and user CSS pages filled out. - - help/C/pref-css.page | 27 ++++++++++++++++++--------- - help/C/pref-font.page | 21 ++++++++++++--------- - 2 files changed, 30 insertions(+), 18 deletions(-) - -commit aa3cbe8cbc0447079033cca68ff786fe7a53fb47 -Author: Daniel Mustieles -Date: Thu Jul 4 18:23:17 2013 +0200 - - Fixed typo in author's name - - help/C/cookies.xml | 2 +- - help/C/data-cookies.page | 2 +- - help/C/pref-cookies.page | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -commit 02023f89867643b844342824bb4b616500006de6 -Author: Ekaterina Gerasimova -Date: Tue Jul 2 23:55:57 2013 +0100 - - Update the help index structure - - help/C/browse-local.page | 2 +- - help/C/browse-private.page | 2 +- - help/C/index.page | 6 +++++- - help/C/pref-css.page | 2 +- - help/C/pref-downloads.page | 2 +- - help/C/pref-font.page | 2 +- - help/C/pref-language.page | 2 +- - 7 files changed, 11 insertions(+), 7 deletions(-) - -commit 01695befb8baff3504898c2695ac586c178ad440 -Author: Ekaterina Gerasimova -Date: Tue Jul 2 23:50:57 2013 +0100 - - Add stub for bookmark topic help - - help/C/bookmark-topic.page | 31 +++++++++++++++++++++++++++++++ - 1 file changed, 31 insertions(+) - -commit 45adc3c20315a12f67243be4eebb5194f7ad8daf -Author: Ekaterina Gerasimova -Date: Tue Jul 2 23:47:26 2013 +0100 - - Add help page about smart bookmarks - - help/C/bookmark-smart.page | 60 ++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 60 insertions(+) - -commit 5d01bd63984c09d5d707b486c638543148948726 -Author: Ekaterina Gerasimova -Date: Tue Jul 2 23:21:49 2013 +0100 - - Link bookmark help pages to the guide - - help/C/bookmark-add.page | 1 + - help/C/bookmark-delete.page | 1 + - help/C/bookmark-edit.page | 1 + - 3 files changed, 3 insertions(+) - -commit bf867a6f022f5593e309927571fe0f05b89eb27f -Author: Ekaterina Gerasimova -Date: Tue Jul 2 23:20:34 2013 +0100 - - Finish the help guide for the bookmarks dialog - - help/C/bookmark.page | 23 +++++++++++++---------- - 1 file changed, 13 insertions(+), 10 deletions(-) - -commit 4eb738320c2a3e62867b16d44604672ed664cb3a -Author: Ekaterina Gerasimova -Date: Tue Jul 2 23:18:49 2013 +0100 - - Add help for cookie pref and data - - help/C/cookies.xml | 35 ++++++++++++++++++++++++++++ - help/C/data-cookies.page | 35 ++++++++++++++-------------- - help/C/pref-cookies.page | 60 ++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 113 insertions(+), 17 deletions(-) - -commit d953073e4bd29de15336d7a1a9498bf7e9e8177a -Author: Ekaterina Gerasimova -Date: Mon Jul 1 23:23:10 2013 +0100 - - Update help index - - Split off a privacy section - - help/C/data-cookies.page | 2 +- - help/C/history-delete.page | 2 +- - help/C/index.page | 10 +++++++--- - help/C/pref-privacy.page | 2 +- - 4 files changed, 10 insertions(+), 6 deletions(-) - -commit 13e6f423ecae4738efd38b527d08dda23655d036 -Author: Ekaterina Gerasimova -Date: Mon Jul 1 23:20:40 2013 +0100 - - Review help about bookmarks - - help/C/bookmark-delete.page | 29 +++++++++++++++-------------- - help/C/bookmark-edit.page | 40 +++++++++++++++++++--------------------- - 2 files changed, 34 insertions(+), 35 deletions(-) - -commit c4f3cbbe4a6f2fbbdb570b04a51772f68b29e9ed -Author: Ekaterina Gerasimova -Date: Sun Jun 30 23:22:10 2013 +0100 - - Review adding bookmarks page - - See bug 703365 - - help/C/bookmark-add.page | 49 +++++++++++++++++++----------------------------- - 1 file changed, 19 insertions(+), 30 deletions(-) - -commit 0a21f8df707d42eb9babf5e7a5c0a928e2b429d1 -Author: Ekaterina Gerasimova -Date: Sun Jun 30 22:37:05 2013 +0100 - - Reorder the help index - - help/C/bookmark-add.page | 5 ++--- - help/C/bookmark-delete.page | 3 +-- - help/C/bookmark-edit.page | 3 +-- - help/C/browse-web.page | 1 + - help/C/index.page | 8 ++++++++ - help/C/pref-css.page | 2 +- - help/C/pref-downloads.page | 2 +- - help/C/pref-font.page | 2 +- - help/C/pref-language.page | 2 +- - 9 files changed, 17 insertions(+), 11 deletions(-) - -commit 36b960b30e8555963d250c50d61eeebee7ec6c1b -Author: Ekaterina Gerasimova -Date: Sun Jun 30 22:25:53 2013 +0100 - - Fix validation error in browse-private help page - - help/C/browse-private.page | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit af1ab943d0cc1c722dadc91646d56aa7e9d44ffb -Author: Ekaterina Gerasimova -Date: Sun Jun 30 22:25:33 2013 +0100 - - Add help for browsing local files - - help/C/browse-local.page | 32 +++++++++++++++++++++----------- - 1 file changed, 21 insertions(+), 11 deletions(-) - -commit d74dc5aaa10aa7bf602dfee95d4f52ed7d88536f -Author: Ekaterina Gerasimova -Date: Sun Jun 30 21:47:29 2013 +0100 - - Add help about private browsing - - help/C/browse-private.page | 54 ++++++++++++++++++++++++++------ - help/C/figures/private-browsing-3-8.png | Bin 0 -> 108824 bytes - 2 files changed, 44 insertions(+), 10 deletions(-) - -commit 762831981b42db37d1e0a2cc14b7d2517abc6d3a -Author: Ekaterina Gerasimova -Date: Sun Jun 30 18:48:52 2013 +0100 - - Add help for first run of using "Web" - - help/C/browse-web.page | 44 +++++++++++++++++++++++++++++++++----------- - 1 file changed, 33 insertions(+), 11 deletions(-) - -commit b0117d196fea36d7318b2927f5d287d3fccf68a9 -Author: Ekaterina Gerasimova -Date: Sun Jun 30 18:40:38 2013 +0100 - - Add help about browser history - - help/C/history-delete.page | 51 ++++++++++++++++++++++++++++++++++++++++++++++ - help/C/history.page | 23 +++++++++++++-------- - 2 files changed, 65 insertions(+), 9 deletions(-) - -commit ba20ad22a1225e2236a67dcc67ff993227a393d8 -Author: Ekaterina Gerasimova -Date: Sun Jun 30 18:40:06 2013 +0100 - - Add the screenshot for the help introduction - - help/C/figures/epiphany-3-8.png | Bin 0 -> 119144 bytes - 1 file changed, 0 insertions(+), 0 deletions(-) - -commit b70795754fa551ed6eb152f3558086bb836ead73 -Author: Ekaterina Gerasimova -Date: Sun Jun 30 14:06:56 2013 +0100 - - Finish the introduction to the help - - help/C/introduction.page | 27 +++++++++++++++++---------- - 1 file changed, 17 insertions(+), 10 deletions(-) - -commit d8dbe5c067401094bc2dddd0f95d7881cfb71cd7 -Author: Federico Mena Quintero -Date: Fri Jun 21 19:28:44 2013 -0500 - - prefs: Use the correct signal to monitor GtkFileChooserButton's selection changes - - The correct signal is 'selection-changed', as in all file choosers. - - The signal that was being used, 'current-folder-changed', only means that the current - directory being shown in the file chooser dialog has changed - not that the selection - has changed. - - See https://bugzilla.gnome.org/show_bug.cgi?id=696498#c8 - although that comment - suggests the use of the 'file-set' signal, which I don't think is very useful. It's - just a historical remnant. - - src/prefs-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e7132d317edd5acd610ba4f12a98bffd404dd5d3 -Author: Sergio Villar Senin -Date: Mon Jun 17 11:36:06 2013 +0200 - - uri-tester: fixed a G_CRITICAL when regexp was NULL - - Do not unconditionally unref the regexp in case of error because it could be - NULL. - - embed/uri-tester.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5bf71aaa68f405240e43e8365d6ec31df4e216f8 -Author: Gustavo Noronha Silva -Date: Sun Jun 9 19:40:01 2013 -0300 - - Move profile directory check to after checking for application mode - - Since application mode also has a profile directory, we will enter the - non-app-mode profile shell mode instead. - - src/ephy-main.c | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit c2fbc7f80a13c6aac0ee998050eb78dae3f5ff0f -Author: Khaled Hosny -Date: Sat Jun 8 20:34:29 2013 +0200 - - Update Arabic translation - - po/ar.po | 361 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 182 insertions(+), 179 deletions(-) - -commit a2a46a8da9c22fa9a60118b69fecc24e48bfd2b3 -Author: tuhaihe -Date: Thu Jun 6 12:34:18 2013 +0800 - - update Simplified Chinese (zh_CN) translation - - po/zh_CN.po | 1126 +++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 595 insertions(+), 531 deletions(-) - -commit aea075e28c916714ce6f6a9425e316a2a5647ce1 -Author: Piotr Drąg -Date: Tue Jun 4 18:53:38 2013 +0200 - - Updated POTFILES.in - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit 9bea3575b17b3c717d9947337b46a9b8c40e50a1 -Author: Carlos Garcia Campos -Date: Wed Mar 27 19:49:04 2013 +0100 - - Make about:applications handler asynchrounous - - https://bugzilla.gnome.org/show_bug.cgi?id=696728 - - embed/ephy-about-handler.c | 34 ++++++++++++++++++++++++++++++---- - 1 file changed, 30 insertions(+), 4 deletions(-) - -commit 030cc2e27a3bbad68d8aa40cc39e8b4778070d26 -Author: Carlos Garcia Campos -Date: Wed Mar 27 19:29:04 2013 +0100 - - Make about:memory handler asynchronous - - https://bugzilla.gnome.org/show_bug.cgi?id=696728 - - embed/ephy-about-handler.c | 37 ++++++++++++++++++++++++++++++++----- - 1 file changed, 32 insertions(+), 5 deletions(-) - -commit 4e3ff1b24118a1913a77285efc33ca38685a3ea5 -Author: Carlos Garcia Campos -Date: Wed Mar 27 17:58:32 2013 +0100 - - Make ephy-about-handler a GObject and handle all request using the same API - - about:plugins was handled differently because it's asynchrounous, now - all handlers can be implemented asynchronously too. - - https://bugzilla.gnome.org/show_bug.cgi?id=696728 - - embed/ephy-about-handler.c | 287 +++++++++++++++++++++++++++++++++------------ - embed/ephy-about-handler.h | 35 +++++- - embed/ephy-embed-shell.c | 56 +-------- - 3 files changed, 250 insertions(+), 128 deletions(-) - -commit 9701366af8864044864c1f3016945bbeed51876c -Author: Carlos Garcia Campos -Date: Wed Mar 27 17:53:07 2013 +0100 - - Remove ephy-request-about - - It's not used in WebKit2. - - https://bugzilla.gnome.org/show_bug.cgi?id=696728 - - embed/Makefile.am | 4 +- - embed/ephy-embed-shell.c | 1 - - embed/ephy-request-about.c | 91 ---------------------------------------------- - embed/ephy-request-about.h | 34 ----------------- - 4 files changed, 1 insertion(+), 129 deletions(-) - -commit 1dce50da0d55e0814b444f1922d2e263ce9aeda4 -Author: Marek Černocký -Date: Tue Jun 4 11:45:44 2013 +0200 - - Updated Czeach translation - - po/cs.po | 110 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 58 insertions(+), 52 deletions(-) - -commit 0ede1f441c3de22aeba2998c5bae14da82e38762 -Author: Fran Diéguez -Date: Sat Jun 1 23:04:35 2013 +0200 - - Updated Galician translations - - po/gl.po | 466 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 231 insertions(+), 235 deletions(-) - -commit f54b91d3e3ada71fe8b50b771610fac771cb2ca0 -Author: Alberto Garcia -Date: Fri May 31 18:15:28 2013 +0200 - - configure.ac: require automake 1.11 - - The dist-xz option is not present in earlier versions - - autogen.sh | 2 +- - configure.ac | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit d54a6f68f9de5f851fe53d0e2f87915e28069b01 -Author: Jiro Matsuzawa -Date: Fri May 31 22:40:36 2013 +0900 - - l10n: Update Japanese translation - - po/ja.po | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit e46183eea9849f59e2d34c2b8a8aecf169155641 -Author: Carlos Garcia Campos -Date: Thu May 30 15:31:15 2013 +0200 - - ephy-web-view: Do not use an idle to show crashed error page - - This was a workaround for a WebKit bug that has already been fixed in - WebKitGTK+ 2.1.1 - - embed/ephy-web-view.c | 30 +++++------------------------- - 1 file changed, 5 insertions(+), 25 deletions(-) - -commit cc881aacfd48a3a283398bc2824a4a7e21aa7593 -Author: Xan Lopez -Date: Thu May 30 13:07:36 2013 +0200 - - [release] 3.9.2 - - NEWS | 13 +++++++++++++ - configure.ac | 4 ++-- - 2 files changed, 15 insertions(+), 2 deletions(-) - -commit 991a54e34e5572cc87a3e25e852ac12b3ff00d98 -Author: Alberto Garcia -Date: Fri May 24 18:46:11 2013 +0300 - - gd-main-icon-view: include config.h - - The files included from here (in particular ephy-overview-store.h) - rely on the definition of HAVE_WEBKIT2 in order to include the correct - WebKit header. - - lib/widgets/gd-main-icon-view.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 853db3d57ee4b024c09fc2f765946a94be6345f4 -Author: Yaron Shahrabani -Date: Fri May 24 11:44:14 2013 +0300 - - Updated Hebrew translation. - - po/he.po | 108 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 57 insertions(+), 51 deletions(-) - -commit abd95b68ee4aff500452ea605f6e00ad51557478 -Author: Bastien Nocera -Date: Thu May 23 20:07:49 2013 +0200 - - ephy-find-toolbar: Correct the parent class used - - The instance is a GtkBox child, so the class should be a - GtkBoxClass child, not GtkToolbarClass. - - https://bugzilla.gnome.org/show_bug.cgi?id=700910 - - src/ephy-find-toolbar.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit abf19158a76fe9e6f944493b76d8a869d5e566b1 -Author: Claudio Saavedra -Date: Tue May 21 01:25:06 2013 +0300 - - ephy-web-view: do not load the crash page for pages that have not been loaded yet - - https://bugzilla.gnome.org/show_bug.cgi?id=699211 - - embed/ephy-web-view.c | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - -commit 001b082f9d8afb3703aa0117c469bfa6e850c326 -Author: Claudio Saavedra -Date: Mon May 20 19:06:01 2013 +0300 - - ephy-web-view: don't store page title in history when it's frozen - - Otherwise we end up saving titles for error pages. - - embed/ephy-web-view.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit 92a0c59e302f75d46160a1f00bebdd48ebaa5372 -Author: Claudio Saavedra -Date: Mon May 20 18:30:33 2013 +0300 - - ephy-web-view: thaw history when load is finished - - Otherwise we end up creating snapshots for error pages. - - embed/ephy-web-view.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 26621c7d9a8fbdb854857d08e0a0970169f0bb95 -Author: Claudio Saavedra -Date: Mon May 20 18:27:54 2013 +0300 - - ephy-main: actually add the FIXME that goes with the previous wayland fix - - src/ephy-main.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit d5ddd68f50bafcbdc45870ef7f8f92f57e516587 -Author: Iago Toral Quiroga -Date: Mon May 20 09:07:10 2013 +0200 - - Make sure we only rely on X11 to obtain timestamps when we are running in a X session - - This avoids a startup crash when running on Wayland. - - https://bugzilla.gnome.org/show_bug.cgi?id=700691 - - src/ephy-main.c | 18 +++++++++++++++--- - 1 file changed, 15 insertions(+), 3 deletions(-) - -commit 3e5dd0736a1119f5099bcec7b8323c9fb093d926 -Author: Kjartan Maraas -Date: Thu May 16 13:37:23 2013 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 472 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 247 insertions(+), 225 deletions(-) - -commit 683b39442f464473c9054a8bdd945e20176cace9 -Author: Muhammet Kara -Date: Mon May 13 01:12:42 2013 +0300 - - [l10n] Updated Turkish translation - - po/tr.po | 2472 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 1423 insertions(+), 1049 deletions(-) - -commit b5984338f81aeaedb089b8b470838b95f6f9beb7 -Author: Aruna Sankaranarayanan -Date: Thu May 9 20:19:38 2013 +0530 - - Updated help: Changes to bookmark pages - - Added content to data-passwords.page. - Changed bookmark-delete.page, bookmark-edit.page and - bookmark.page to drafts, instead of stubs. - Reflowed content to make pages 80 characters compliant. - - help/C/bookmark-delete.page | 2 +- - help/C/bookmark-edit.page | 2 +- - help/C/bookmark.page | 2 +- - help/C/data-passwords.page | 80 ++++++++++++++++++++++++++++++++++++++++----- - 4 files changed, 74 insertions(+), 12 deletions(-) - -commit ee6bce05ea186a9d7d022f7d416f7f934ad70387 -Author: Aruna Sankaranarayanan -Date: Tue May 7 20:54:08 2013 +0530 - - Updated help: Added content to bookmark pages - - Added content to bookmark-edit.page and made general edits to - the other bookmark pages. - - help/C/bookmark-add.page | 28 ++++++++++++++++------------ - help/C/bookmark-delete.page | 8 ++++---- - help/C/bookmark-edit.page | 37 ++++++++++++++++++++++++++++--------- - help/C/bookmark.page | 2 +- - 4 files changed, 49 insertions(+), 26 deletions(-) - -commit 9a5f72ae619346ee086c860cbe1074cce056168e -Author: Aruna Sankaranarayanan -Date: Sun May 5 21:25:47 2013 +0530 - - Updated help: Edited pages to sort bookmarks. - - Added content to bookmark-add.page, bookmark-delete.page, - bookmark.page. - - help/C/bookmark-add.page | 23 ++++++++++------------- - help/C/bookmark-delete.page | 24 ++++++++++++++++-------- - help/C/bookmark.page | 11 +++++++---- - 3 files changed, 33 insertions(+), 25 deletions(-) - -commit 1d47636841cb8ef99337d4047c9e9dc3c8d5a467 -Author: Matej Urbančič -Date: Sat May 4 21:32:56 2013 +0200 - - Updated Slovenian translation - - po/sl.po | 852 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 483 insertions(+), 369 deletions(-) - -commit 5ee94f4954f6e4b49eabeafd6a9bd6ee925f395d -Author: Gustavo Noronha Silva -Date: Fri May 3 09:37:11 2013 -0700 - - Allow running a regular standalone instance with a different profile - - Adds a new standalone shell mode and removes restrictions on using --profile - in a non-private, non-incognito instance of the browser. Useful for debugging - or improving features that rely on being in a regular session, such as password - and session saving/restoring. - - https://bugzilla.gnome.org/show_bug.cgi?id=699602 - - embed/ephy-embed-shell.h | 1 + - lib/ephy-file-helpers.c | 2 +- - src/ephy-main.c | 13 +++++++------ - 3 files changed, 9 insertions(+), 7 deletions(-) - -commit 1f6c4b033e5ff7a21a96abde2e804585e4f234f9 -Author: Daniel Mustieles -Date: Fri May 3 18:15:17 2013 +0200 - - Updated Spanish translation - - po/es.po | 466 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 232 insertions(+), 234 deletions(-) - -commit ee4c83ba5d92e737daca696b31812bf9b5e1ed77 -Author: Aruna Sankaranarayanan -Date: Fri May 3 19:27:04 2013 +0530 - - Updating help:New topic bookmark-add - - Topic explains how to add a bookmark to Epiphany. - - help/C/bookmark-add.page | 48 ++++++++++++++++++++++++++++++++++++++++-------- - 1 file changed, 40 insertions(+), 8 deletions(-) - -commit 201fe07e7c185c7be5cb09bb1a2a50f69ea7704e -Author: Adam Dingle -Date: Fri Apr 5 05:07:26 2013 -0400 - - Added missing mnemonics in application menu. - - https://bugzilla.gnome.org/show_bug.cgi?id=696894 - - src/ephy-window.c | 4 ++-- - src/resources/epiphany-application-menu.ui | 4 ++-- - 2 files changed, 4 insertions(+), 4 deletions(-) - -commit e7272a72ef2a9a1bb48ae311283d7a14b54dc865 -Author: Claudio Saavedra -Date: Mon Apr 29 18:57:29 2013 +0300 - - ephy-embed: do not expand the top_widgets_vbox - - Otherwise they end up using half the screen. - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ba3427ea23fe1123abdffe66ce38adc46ad20f93 -Author: Praveen Arimbrathodiyil -Date: Fri Apr 26 19:36:30 2013 +0530 - - update Malayalam translation - - po/ml.po | 2550 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 1465 insertions(+), 1085 deletions(-) - -commit 8c82434912141d59ed0254be02e7966773330a0d -Author: Xan Lopez -Date: Tue Apr 16 19:28:29 2013 +0200 - - configure.ac: depend on libsoup 2.42.1 - - Fixes a giant memory leak. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2fc98994f0acb46a5bb0429991883eed4cd9aacf -Author: Jiro Matsuzawa -Date: Sun Apr 14 02:07:19 2013 +0900 - - l10n: Update Japanese translation - - po/ja.po | 42 +++++++++++++++++++++--------------------- - 1 file changed, 21 insertions(+), 21 deletions(-) - -commit dbb87b0a5b3c450aaa3b4cafc56f06ee44d18e92 -Author: Ekaterina Gerasimova -Date: Fri Apr 12 23:26:26 2013 +0100 - - Add structure for new Mallard help, bug 668110 - - Create stubs, and interlink all the pages. - - Intentionally do not add Makefile.am until the help is complete so that - the build cannot be broken accidentally. - - help/C/bookmark-add.page | 42 ++++++++++++++++++++++++++++++++++ - help/C/bookmark-delete.page | 42 ++++++++++++++++++++++++++++++++++ - help/C/bookmark-edit.page | 42 ++++++++++++++++++++++++++++++++++ - help/C/bookmark.page | 31 +++++++++++++++++++++++++ - help/C/browse-local.page | 34 ++++++++++++++++++++++++++++ - help/C/browse-private.page | 41 +++++++++++++++++++++++++++++++++ - help/C/browse-web.page | 32 ++++++++++++++++++++++++++ - help/C/data-cookies.page | 50 +++++++++++++++++++++++++++++++++++++++++ - help/C/data-passwords.page | 42 ++++++++++++++++++++++++++++++++++ - help/C/data.page | 31 +++++++++++++++++++++++++ - help/C/figures/web-browser.png | Bin 0 -> 1724 bytes - help/C/history.page | 32 ++++++++++++++++++++++++++ - help/C/index.page | 29 ++++++++++++++++++++++++ - help/C/introduction.page | 33 +++++++++++++++++++++++++++ - help/C/legal.xml | 8 +++++++ - help/C/pref-css.page | 42 ++++++++++++++++++++++++++++++++++ - help/C/pref-downloads.page | 42 ++++++++++++++++++++++++++++++++++ - help/C/pref-font.page | 42 ++++++++++++++++++++++++++++++++++ - help/C/pref-language.page | 42 ++++++++++++++++++++++++++++++++++ - help/C/pref-privacy.page | 42 ++++++++++++++++++++++++++++++++++ - help/C/pref.page | 31 +++++++++++++++++++++++++ - 21 files changed, 730 insertions(+) - -commit 64d5cc0be9f2f778f39c64c14268a33a01cdbddd -Author: Hajime Taira -Date: Thu Apr 11 21:16:16 2013 +0900 - - l10n: Update Japanese translation - - po/ja.po | 40 +++++++++++----------------------------- - 1 file changed, 11 insertions(+), 29 deletions(-) - -commit 3428518a6fa70ba72fe50a90f60109a080a8ba17 -Author: Jiro Matsuzawa -Date: Thu Apr 11 21:09:39 2013 +0900 - - l10n: Update Japanese translation - - Merge the latest pot. - - po/ja.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit f69582b4117a9729ad4ab7b5722404917cfb35a2 -Author: Sebastian Keller -Date: Wed Apr 10 05:32:28 2013 +0200 - - uri-tester: Overwrite existing filters on update - - embed/uri-tester.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b1ca53b6a8683d445905baefcacdbc9dc4f96b95 -Author: Yuri Myasoedov -Date: Mon Apr 8 08:56:22 2013 +0400 - - Updated Russian translation - - po/ru.po | 1140 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 614 insertions(+), 526 deletions(-) - -commit 33acbbebe1bbf13d26551d66a8daf037e6626e26 -Author: Bruce Cowan -Date: Sat Apr 6 17:23:52 2013 +0100 - - Updated British English translation - - po/en_GB.po | 1152 +++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 609 insertions(+), 543 deletions(-) - -commit 5ee8725507606f342bbb4863f49e6af859648af4 -Author: Carlos Garcia Campos -Date: Thu Apr 4 18:37:25 2013 +0200 - - Only connect to the FormAuthDataSaveConfirmationRequired signal of the instance web extension - - To make sure we are only notified when our web extension requires to - ask the user to store credentials. Otherwise when a web extension emits - the signal all epiphany instances show the info bar asking the user - whether to store credentials or not. - - https://bugzilla.gnome.org/show_bug.cgi?id=697255 - - embed/ephy-embed-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a2181b928e5a0f6d27487859fe86a276c1eed25c -Author: Carlos Garcia Campos -Date: Thu Mar 28 17:06:47 2013 +0100 - - Compile template pages as GResources - - 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 - - data/pages/Makefile.am | 8 +--- - data/pages/error.html | 87 ---------------------------------------- - data/pages/process_crash.html | 74 ---------------------------------- - data/pages/recovery.html | 87 ---------------------------------------- - embed/ephy-web-view.c | 24 +++++------ - src/Makefile.am | 11 +++-- - src/epiphany.gresource.xml | 3 ++ - src/resources/error.html | 87 ++++++++++++++++++++++++++++++++++++++++ - src/resources/process-crash.html | 74 ++++++++++++++++++++++++++++++++++ - src/resources/recovery.html | 87 ++++++++++++++++++++++++++++++++++++++++ - tests/Makefile.am | 1 + - 11 files changed, 271 insertions(+), 272 deletions(-) - -commit efccc1eac4ac4e15fd4f5695d27a85c7d25c3cc6 -Author: Carlos Garcia Campos -Date: Thu Mar 28 15:56:23 2013 +0100 - - Unify all web context setup in EphyEmbedShell on primary instance startup - - Cookies, web extension and custom URI handlers were initialized in - ephy_embed_shell_init(), so they were always called even for secondary - instances. All other initializations were in ephy_shell_startup so that - it only happens for the primary instance. Move all the code to - ephy_embed_shell_startup to make sure everything happens at the same - time and only for the primary instance. - - https://bugzilla.gnome.org/show_bug.cgi?id=696020 - - embed/Makefile.am | 1 + - embed/ephy-embed-shell.c | 169 +++++++++++++++++++++++++++++++---------------- - src/Makefile.am | 1 - - src/ephy-shell.c | 46 ------------- - 4 files changed, 112 insertions(+), 105 deletions(-) - -commit 921cc71d8092e41f5d8cec0c652d14059c9fb6a8 -Author: Alexandre Franke -Date: Tue Apr 2 20:05:05 2013 +0200 - - Update French translation - - po/fr.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 09f9b5f9865aa7e58dd912a4ac0f328b5de48ad4 -Author: Carlos Garcia Campos -Date: Thu Mar 28 16:16:02 2013 +0100 - - Do not schedule a DNS prefetch for invalid URIs or without a hostname - - It produces a runtime critical warning when trying to use - webkit_web_context_prefetch_dns() with a NULL hostname. - - https://bugzilla.gnome.org/show_bug.cgi?id=696787 - - lib/widgets/ephy-location-entry.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit 627800228d6d745a231707d707f5f7bda9403059 -Author: Marek Černocký -Date: Sat Mar 30 01:22:46 2013 +0100 - - Updated Czech translation - - po/cs.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit de2b2ebbf613f8be9ef1ada130d56f158d13045e -Author: Yaron Shahrabani -Date: Thu Mar 28 14:25:23 2013 +0200 - - Updated Hebrew translation. - - po/he.po | 480 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 247 insertions(+), 233 deletions(-) - -commit dbf10c73ca6a84461031306a3e62408154f5dfb8 -Author: Xan Lopez -Date: Tue Mar 26 13:38:11 2013 +0100 - - ephy-encoding-dialog: use the right signal to track load status - - There's no notify::load-status in WebKit2 - - src/ephy-encoding-dialog.c | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -commit 37b29d47edee994487e0216f8b1e76705cee899c -Author: Daniel Korostil -Date: Tue Mar 26 14:39:29 2013 +0200 - - Update uk translation - - po/uk.po | 1850 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 956 insertions(+), 894 deletions(-) - -commit eb7b512e0375c159334f58f984b712654acdeff6 -Author: Xan Lopez -Date: Mon Mar 25 23:41:15 2013 +0100 - - ephy-web-view: restore zoom level on load started - - This seems to work much better, although it makes the zoom level be - wrong when *leaving pages* in some cases. Still, an improvement, so - let's do this for now. - - https://bugzilla.gnome.org/show_bug.cgi?id=693951 - - embed/ephy-web-view.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 944b0072761ba5d6338ac1044ae8280fd8b142bc -Author: Xan Lopez -Date: Mon Mar 25 22:53:36 2013 +0100 - - ephy-notebook: fix memory leak - - gtk_style_context_get does return a copy of the requested properties, - free our pango font description. - - src/ephy-notebook.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit a48ed2ac052a60885a005bda9323002c87340972 -Author: Xan Lopez -Date: Mon Mar 25 15:52:46 2013 +0100 - - ephy-encoding-dialog: make this work again - - We were not resetting correctly the internal state when getting a NULL - encoding from WebKit, so the dialog would stop working after that. - - https://bugzilla.gnome.org/show_bug.cgi?id=696548 - - src/ephy-encoding-dialog.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit bdb76c96362a6d87d1e069c4d2815592e7add89c -Author: OKANO Takayoshi -Date: Mon Mar 25 22:02:55 2013 +0900 - - l10n: Update Japanese translation - - po/ja.po | 1110 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 588 insertions(+), 522 deletions(-) - -commit 0c04e966882e6fdff138cce7b200891594e570a8 -Author: Marek Černocký -Date: Mon Mar 25 00:04:04 2013 +0100 - - Updated Czech translation - - po/cs.po | 463 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 241 insertions(+), 222 deletions(-) - -commit 086c8325352a1406d4f52e3b5018948e0840d5c9 -Author: Adam Matoušek -Date: Sun Mar 24 23:47:04 2013 +0100 - - Updated Czech translation - - po/cs.po | 970 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 464 insertions(+), 506 deletions(-) - -commit 7c94c14d1d3998d0af95b9ade4c84649434b3c58 -Author: Chandan Kumar -Date: Mon Mar 25 00:26:58 2013 +0530 - - updating Hindi Translation - - po/hi.po | 1376 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 722 insertions(+), 654 deletions(-) - -commit 261baaa3f4b183b186298536458e635679eb68ab -Author: Piotr Drąg -Date: Sun Mar 24 19:10:31 2013 +0100 - - Fix translations of keywords in .desktop files - - po/el.po | 2 +- - po/nl.po | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 91bbdb017a6af1576b72f020ebce57afbd0bc5b2 -Author: Piotr Drąg -Date: Sun Mar 24 19:09:03 2013 +0100 - - Updated POTFILES.in - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit 40766798f3b0b2fefe5d3f122c4ebb92b48f481d -Author: Xan Lopez -Date: Sun Mar 24 13:33:06 2013 +0100 - - ephy-bookmarks-import: sort headers - - src/bookmarks/ephy-bookmarks-import.c | 15 +++++++-------- - 1 file changed, 7 insertions(+), 8 deletions(-) - -commit d7cc95002a3ea0e6e33117677b0c64f4457f367e -Author: Xan Lopez -Date: Sun Mar 24 11:12:33 2013 +0100 - - ephy-embed-shell: unref downloads in dispose - - This is potentially needed to break ref cycles, so just do the right thing. - - embed/ephy-embed-shell.c | 14 ++++---------- - 1 file changed, 4 insertions(+), 10 deletions(-) - -commit 85da033343489a78d08cfcc9138f040960bfe4f6 -Author: Xan Lopez -Date: Sun Mar 24 11:07:14 2013 +0100 - - ephy-embed-shell: use g_list_free_full - - embed/ephy-embed-shell.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit a06498057762d695d044584d76fb388650a10e12 -Author: Xan Lopez -Date: Sat Mar 23 20:57:31 2013 +0100 - - Get rid of EphyEmbedSingle - - Move the remaining initialization code to EphyEmbedShell - - https://bugzilla.gnome.org/show_bug.cgi?id=693703 - - embed/Makefile.am | 2 - - embed/ephy-embed-shell.c | 147 ++++++++++++++++++++++++---------------- - embed/ephy-embed-shell.h | 4 -- - embed/ephy-embed-single.c | 149 ----------------------------------------- - embed/ephy-embed-single.h | 58 ---------------- - embed/ephy-web-view.c | 1 - - src/ephy-shell.c | 1 - - src/ephy-window.c | 1 - - src/pdm-dialog.c | 6 -- - src/prefs-dialog.c | 1 - - src/window-commands.c | 1 - - tests/Makefile.am | 4 -- - tests/ephy-embed-single-test.c | 115 ------------------------------- - 13 files changed, 88 insertions(+), 402 deletions(-) - -commit 35b2a8970c28e322bad1ee2c67ee1ba7a4824e95 -Author: Xan Lopez -Date: Sat Mar 23 20:48:25 2013 +0100 - - Remove dummy work offline code - - We are doing nothing with this these days. - - src/ephy-window.c | 5 ----- - src/window-commands.c | 15 --------------- - src/window-commands.h | 2 -- - 3 files changed, 22 deletions(-) - -commit 6bbf9b85650ea4fa3b0d4b6ce97f4a8a3389ce82 -Author: Xan Lopez -Date: Sat Mar 23 20:46:35 2013 +0100 - - ephy-window: do not track network-status - - The signal was removed from EphyEmbedSingle since it was a no-op. - - src/ephy-window.c | 33 --------------------------------- - 1 file changed, 33 deletions(-) - -commit c93cff37d2d64fac2e510aa32e7549444d74f366 -Author: Khaled Hosny -Date: Sat Mar 23 21:50:58 2013 +0200 - - Update Arabic translation - - po/ar.po | 300 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 155 insertions(+), 145 deletions(-) - -commit 2529f160fc254fb59043a34d76c5ad82cb86abc5 -Author: Xan Lopez -Date: Sat Mar 23 20:41:16 2013 +0100 - - configure.ac: do not define EPIPHANY_UA_VERSION - - It's unused. - - configure.ac | 4 ---- - 1 file changed, 4 deletions(-) - -commit d0d370b396bb2bfa6475b238756cc12c1c191f0e -Author: Ville-Pekka Vainio -Date: Sat Mar 23 19:33:33 2013 +0200 - - Finnish translation update by Jiri Grönroos - - po/fi.po | 236 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 120 insertions(+), 116 deletions(-) - -commit 0cc062c2ecf9b4efb69e7660529aa5925b4d1f93 -Author: Xan Lopez -Date: Fri Mar 22 11:14:50 2013 +0100 - - ephy-web-view-test: disconnect signals after test is over - - Otherwise it will carry over to the next tests. - - tests/ephy-web-view-test.c | 1 + - 1 file changed, 1 insertion(+) - -commit d97136a5d1e7c9dd6d051ecc4d8bad2180925bfd -Author: Xan Lopez -Date: Fri Mar 22 10:22:47 2013 +0100 - - uri-tester: define ad check types here - - And get rid of ad-block.[c,h], which we only used for the enum. - - embed/ephy-adblock.c | 96 ---------------------------------------------------- - embed/ephy-adblock.h | 92 ------------------------------------------------- - embed/uri-tester.h | 31 +++++++++++++++-- - 3 files changed, 29 insertions(+), 190 deletions(-) - -commit d8c75ce33c67370cde9d279be758485722a40bf1 -Author: Xan Lopez -Date: Fri Mar 22 10:14:29 2013 +0100 - - ephy-adblock-manager: remove, this is unused now - - embed/ephy-adblock-manager.c | 127 ------------------------------------------- - embed/ephy-adblock-manager.h | 72 ------------------------ - 2 files changed, 199 deletions(-) - -commit 317359dbd35bdc07a7e33f9abb642df5ff9e0a17 -Author: Xan Lopez -Date: Fri Mar 22 10:13:09 2013 +0100 - - ephy-shell: remove non-WebKit2 bits for adblock manager - - This does not exist anymore. - - src/ephy-shell.c | 8 -------- - 1 file changed, 8 deletions(-) - -commit 2de4e6202cfb6323e6ac364408d2b839dc1fe402 -Author: Xan Lopez -Date: Fri Mar 22 10:11:00 2013 +0100 - - Makefile.am: remove WebKit2 conditional build bits from embed/ - - embed/Makefile.am | 16 ---------------- - 1 file changed, 16 deletions(-) - -commit 43d7cd8c02b212aa6644677e1e4fc46aec55ffd4 -Author: Xan Lopez -Date: Fri Mar 22 10:09:16 2013 +0100 - - ephy-web-view: remove some remaining non WebKit2 bits - - embed/ephy-web-view.c | 361 -------------------------------------------------- - 1 file changed, 361 deletions(-) - -commit f6075f88d51f37c8b433d383d2d6b8d02ff77414 -Author: Xan Lopez -Date: Fri Mar 22 10:08:18 2013 +0100 - - ephy-embed-utils: remove non WebKit2 bits - - embed/ephy-embed-utils.h | 5 ----- - 1 file changed, 5 deletions(-) - -commit 390f0f09f535f40d426b8a4a88f80ea348a8aed9 -Author: Xan Lopez -Date: Fri Mar 22 10:07:40 2013 +0100 - - ephy-embed-event: remove non WebKit2 bits - - embed/ephy-embed-event.h | 6 ------ - 1 file changed, 6 deletions(-) - -commit 1f39c8de59c2119627bbf29a864b06259d287e4d -Author: Xan Lopez -Date: Fri Mar 22 09:56:39 2013 +0100 - - ephy-embed-prefs: remove non WebKit2 bits - - embed/ephy-embed-prefs.c | 226 ----------------------------------------------- - embed/ephy-embed-prefs.h | 15 ---- - 2 files changed, 241 deletions(-) - -commit b98b20d754e55188a65507ea7e046eb1a8d80321 -Author: Xan Lopez -Date: Fri Mar 22 09:46:05 2013 +0100 - - ephy-download: remove non WebKit2 bits - - embed/ephy-download.c | 118 +------------------------------------------------- - embed/ephy-download.h | 4 -- - 2 files changed, 1 insertion(+), 121 deletions(-) - -commit 739c65404072de313e6cdb39e6b6caa4f276804d -Author: Xan Lopez -Date: Fri Mar 22 09:43:03 2013 +0100 - - ephy-about-handler: add license, G_{BEGIN,END}_DECLS, etc - - embed/ephy-about-handler.h | 27 ++++++++++++++++++++++----- - 1 file changed, 22 insertions(+), 5 deletions(-) - -commit 7f0df03c524f362a5774e0832048f57d760fbf3f -Author: Xan Lopez -Date: Fri Mar 22 09:39:19 2013 +0100 - - ephy-about-handler: remove non WebKit2 bits - - embed/ephy-about-handler.c | 51 ---------------------------------------------- - 1 file changed, 51 deletions(-) - -commit 0074916b66dd6436f98c8576d25f8ab68906bb36 -Author: Xan Lopez -Date: Fri Mar 22 09:34:07 2013 +0100 - - configure.ac: bump version to 3.9.0 - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 20d54bffa239726ef9b41b106425e493f0cb754e -Author: Xan Lopez -Date: Thu Mar 21 16:58:05 2013 +0100 - - ephy-window: connect the reload/stop button the load status - - We were not doing it at all in WebKit2. - - https://bugzilla.gnome.org/show_bug.cgi?id=696301 - - src/ephy-window.c | 20 ++++++++++++++++++++ - 1 file changed, 20 insertions(+) - -commit 061ae41638cf20778ba988ac9e128afcc3252545 -Author: Xan Lopez -Date: Thu Mar 21 13:40:51 2013 +0100 - - ephy-embed: remove non WebKit2 bits - - embed/ephy-embed.c | 383 ----------------------------------------------------- - embed/ephy-embed.h | 4 - - 2 files changed, 387 deletions(-) - -commit 98202699e523cb7a8f7ed3fd90b2320ac2dac295 -Author: Xan Lopez -Date: Thu Mar 21 13:35:08 2013 +0100 - - ephy-embed-shell: remove non WebKit2 bits - - embed/ephy-embed-shell.c | 52 ------------------------------------------------ - embed/ephy-embed-shell.h | 4 ---- - 2 files changed, 56 deletions(-) - -commit 6f0c6b15e006dc4ad85b2ea5e3b688164d335de1 -Author: Xan Lopez -Date: Thu Mar 21 13:31:03 2013 +0100 - - Move the clear cache method to EphyEmbedShell - - EphyEmbedSingle is almost dead! - - embed/ephy-embed-shell.c | 12 ++++++++++++ - embed/ephy-embed-shell.h | 2 ++ - embed/ephy-embed-single.c | 11 ----------- - embed/ephy-embed-single.h | 2 -- - src/pdm-dialog.c | 7 ++----- - 5 files changed, 16 insertions(+), 18 deletions(-) - -commit 67eff917589e8b6e7add001e7b3e910e3ea25cce -Author: Xan Lopez -Date: Thu Mar 21 10:15:55 2013 +0100 - - ephy-web-view: remove non WebKit2 bits - - A couple of TODO features have been left guarded by #if 0 blocks. - - embed/ephy-web-view.c | 862 +------------------------------------------------- - embed/ephy-web-view.h | 9 - - 2 files changed, 4 insertions(+), 867 deletions(-) - -commit 88b08cad6a446fae4b78dc61c81c742b79da2e08 -Author: Xan Lopez -Date: Thu Mar 21 10:06:25 2013 +0100 - - ephy-embed-single: remove non WebKit2 bits - - embed/ephy-embed-single.c | 205 ---------------------------------------------- - embed/ephy-embed-single.h | 13 --- - 2 files changed, 218 deletions(-) - -commit 637a9b64bcc61bb07b30e030056b1e6756ecea8c -Author: Xan Lopez -Date: Thu Mar 21 09:59:05 2013 +0100 - - configure.ac: remove WebKit2 config stuff - - The post 3.8 world is WebKit2 only. - - configure.ac | 14 +++----------- - 1 file changed, 3 insertions(+), 11 deletions(-) - -commit 6573f558aaef09dde64ec4e820492ef95df5c2c0 -Author: Dr.T.Vasudevan -Date: Thu Mar 21 11:57:03 2013 +0530 - - Updated Tamil translation - - po/ta.po | 1778 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 1049 insertions(+), 729 deletions(-) - -commit 2d3e06355029283e7f8a8243ad137f0b3a78d570 -Author: Arash Mousavi -Date: Wed Mar 20 22:57:25 2013 +0330 - - L10N: Updated Persian Translation - - po/fa.po | 569 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 297 insertions(+), 272 deletions(-) - -commit cc9e3710001886f6e78c655f237784f4b7bf4ce1 -Author: Xan Lopez -Date: Tue Mar 19 17:04:18 2013 +0100 - - [release] 3.7.92 - - NEWS | 11 +++++++++++ - configure.ac | 2 +- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 8a8c666da4e43027eed87d93e5c4154fb7b0ff8b -Author: Xan Lopez -Date: Wed Mar 20 19:28:53 2013 +0100 - - ephy-embed-shell-test: unskip web created test - - It should work now. - - https://bugzilla.gnome.org/show_bug.cgi?id=695620 - - tests/ephy-embed-shell-test.c | 6 ------ - 1 file changed, 6 deletions(-) - -commit f32c375e9b113d5b9668af6ec5379e4e743d01fe -Author: Xan Lopez -Date: Wed Mar 20 19:28:02 2013 +0100 - - ephy-embed-shell-test: try harder to find the schemas dir - - Need to do this since we override XDG_DATA_DIRS. - - https://bugzilla.gnome.org/show_bug.cgi?id=695620 - - tests/ephy-embed-shell-test.c | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -commit f65b0e0ef8322139d230c0b5ba60e569ee1f390c -Author: Carlos Garcia Campos -Date: Tue Mar 19 19:02:12 2013 +0100 - - Move code to initialize preferences from ephy-main to ephy-shell - - As well as the code the prepare the environment for the wen process and - web context initialization. This allows to only run that initializations - only for the primary instance. It fixes a crash in web process when the - ui process finishes too early and makes secondary instances to run - faster, since they don't spawn a web process anymore. - - https://bugzilla.gnome.org/show_bug.cgi?id=696020 - - src/Makefile.am | 2 +- - src/ephy-main.c | 28 ---------------------------- - src/ephy-shell.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 47 insertions(+), 29 deletions(-) - -commit 8ffda1baa20998c9a1b8be29a3900f5941fb2601 -Author: Xan Lopez -Date: Wed Mar 20 15:03:24 2013 +0100 - - ephy-web-view: disable modified forms check in WebKit2 - - This code is causing some problems because the check happens in a sync - call right before a WebView is destroyed. There seems to be a race - condition and some times the method call will hang for seconds waiting - for a dead process on the other side. - - We'll figure it out for 3.8.1, but for now disable it since it's - causing more harm than good. - - embed/ephy-web-view.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 694f942afc5c1a2e237921372259b835c98b3122 -Author: Gianvito Cavasoli -Date: Tue Mar 19 22:47:49 2013 +0100 - - [l10n] Updated Italian translation. - - po/it.po | 1106 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 554 insertions(+), 552 deletions(-) - -commit 4cbafc06c8ba6cc5533a8a9e0d23181c5b9165a0 -Author: Victor Ibragimov -Date: Tue Mar 19 20:48:08 2013 +0100 - - [l10n] Added Tadjik translation - - po/LINGUAS | 1 + - po/tg.po | 2614 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2615 insertions(+) - -commit fd1ce00c45ee40ff22e715f3f45ec49d317c71b1 -Author: Bastien Nocera -Date: Tue Mar 19 19:40:55 2013 +0100 - - ephy-profile-migrator: Check for errors correctly - - This guards against error paths that might not return errors. - It'll crash in the error path instead :) - - lib/ephy-profile-migrator.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 7eaba5831d5e339ee0ed114ff7478d50f1c255b4 -Author: Bastien Nocera -Date: Thu Mar 14 10:11:27 2013 +0100 - - ephy-profile-migrator: Stop spinning when porting form passwords - - Use atomic operations to manipulate the counter that tracks the number - of operations we need to achieve, to ensure coherency when the results - are received from different threads. - - Also use our own main loop rather than spinning on g_main_context_iteration() - to avoid CPU burning when waiting for completion. - - Finally, fix the migrator never returning as the number of operations - was not decreased on the ephy_form_auth_data_store() error path. - - https://bugzilla.gnome.org/show_bug.cgi?id=695828 - - lib/ephy-profile-migrator.c | 19 +++++++++++++------ - 1 file changed, 13 insertions(+), 6 deletions(-) - -commit 10f300b27a14c450c9a20b12c23f4e542942655c -Author: Gustavo Noronha Silva -Date: Fri Mar 15 23:58:09 2013 -0300 - - Load back item when back is clicked with control held/middle clicked, for wk2 - - In WebKit2 the back/forward list is not copiable, so that assumption - doesn't hold, and the current code path fails. With this change we - tell EphyShell to not copy the list and load the URL held by the back - item of the existing WebView in the new WebView instead, for WebKit2. - - https://bugzilla.gnome.org/show_bug.cgi?id=695951 - - src/ephy-navigation-history-action.c | 25 +++++++++++++++++++++++++ - 1 file changed, 25 insertions(+) - -commit 62c163a3a9d84ea993d24cc0dbfd1324066f6e3c -Author: Alexandre Franke -Date: Tue Mar 19 10:42:05 2013 +0100 - - Update French translation - - po/fr.po | 1055 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 518 insertions(+), 537 deletions(-) - -commit 0bfdcd1e9c9378d8e0be2255270d90cb109a1764 -Author: Xan Lopez -Date: Tue Mar 19 10:34:22 2013 +0100 - - ephy-web-view: actually move signal handler disconnects to dispose - - embed/ephy-web-view.c | 60 +++++++++++++++++++++++++-------------------------- - 1 file changed, 30 insertions(+), 30 deletions(-) - -commit 6e1e6675b4ea682640020c2615d59a07e4a6d408 -Author: Xan Lopez -Date: Tue Mar 19 10:30:58 2013 +0100 - - ephy-web-view: disconnect form auth signal handler or dispose - - The signal can (somewhat easily) be emitted on the shell after the web - view dies. - - embed/ephy-web-view.c | 92 ++++++++++++++++++++++++++------------------------- - 1 file changed, 47 insertions(+), 45 deletions(-) - -commit 1068d46a3455abc13bfe0a4edaf64cea9f714b0a -Author: Xan Lopez -Date: Tue Mar 19 09:34:34 2013 +0100 - - ephy-window: disable a few more actions in application mode - - Do not allow to launch bookmarks, history, preferences and personal - data editors through keyboard shortcuts in app mode. - - https://bugzilla.gnome.org/show_bug.cgi?id=690191 - - src/ephy-window.c | 12 ++++++++---- - 1 file changed, 8 insertions(+), 4 deletions(-) - -commit c0d29768abbf6c740c243a464167df7366243590 -Author: Xan Lopez -Date: Mon Mar 18 20:02:50 2013 +0100 - - ephy-embed-single-test: skip form auth test in WebKit2 - - This is done differently for WebKit2, so this test won't work. - - tests/ephy-embed-single-test.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 6d1a0db3cd7fa5c41995af67d7ae271e28710d1d -Author: Carlos Garcia Campos -Date: Sun Mar 17 16:53:43 2013 +0100 - - ephy-embed-prefs: Implement user style sheet setting in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=679372 - - embed/ephy-embed-prefs.c | 66 +++++++++++++++++++++++++++++++++++++++++++----- - 1 file changed, 60 insertions(+), 6 deletions(-) - -commit fca6216c67cea8ac074c6af912526066aa6dd098 -Author: Carlos Garcia Campos -Date: Sun Mar 17 16:22:34 2013 +0100 - - embed: Use a custom WebKitWebViewGroup for all ephy web views - - Create all ephy web views with the global group that shares all the - global settings. - - embed/ephy-embed-prefs.c | 35 ++++++++++++++++++++++++----------- - embed/ephy-embed-prefs.h | 20 +++++++++++++------- - embed/ephy-embed.c | 2 ++ - embed/ephy-web-view.c | 6 +++++- - 4 files changed, 44 insertions(+), 19 deletions(-) - -commit d54c82c4f07888c6aa7f7aa104e0e253ec770b86 -Author: Hajime Taira -Date: Mon Mar 18 01:27:16 2013 +0900 - - [l10n] Update Japanese translation - - po/ja.po | 21 +++++++++++---------- - 1 file changed, 11 insertions(+), 10 deletions(-) - -commit e0f6f4ecd459dad461818e3542d501fbad6f7a2f -Author: Ihar Hrachyshka -Date: Sun Mar 17 16:35:55 2013 +0300 - - Updated Belarusian translation. - - po/be.po | 140 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 77 insertions(+), 63 deletions(-) - -commit 1d38f302f7cf2a0f96017ec726e5c04f6fefdb4f -Author: Carlos Garcia Campos -Date: Sun Mar 17 12:56:37 2013 +0100 - - ephy-embed: Remove TODO comments about missing send-request signal - - It's already implemented and used in the web extension to implement - ad-blocker and Do Not Track. - - embed/ephy-embed.c | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -commit 11b0e09ba08eb1771725184d090e6a22ca113802 -Author: Carlos Garcia Campos -Date: Sun Mar 17 12:53:40 2013 +0100 - - web-extension: Do not use C++ comments - - Forgot to fix this before landing the prefilled forms patch. - - embed/web-extension/ephy-web-extension.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 26435511e0a9579257ff97abc9af2e08a14c8103 -Author: Carlos Garcia Campos -Date: Sat Mar 16 11:50:59 2013 +0100 - - Add spelling suggestion to the context menu in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=695904 - - src/ephy-window.c | 60 ++++++++++++++++++++++++++++++++++++++++++++++++---- - src/popup-commands.c | 4 +--- - 2 files changed, 57 insertions(+), 7 deletions(-) - -commit d091063aaf74153d37b50cb82e2b4b14d1a0fcb0 -Author: Rūdolfs Mazurs -Date: Sun Mar 17 11:34:49 2013 +0200 - - Updated Latvian translation - - po/lv.po | 10546 +++++++++++++++---------------------------------------------- - 1 file changed, 2634 insertions(+), 7912 deletions(-) - -commit 5b3473af2d884162af4d1cff3af218a6c09cb052 -Author: Rūdolfs Mazurs -Date: Sun Mar 17 11:32:33 2013 +0200 - - Updated Latvian translation - - po/lv.po | 10610 +++++++++++++++++++++++++++++++++++++++++++++---------------- - 1 file changed, 7948 insertions(+), 2662 deletions(-) - -commit f304bbf8f6016afca82e54055350a3f52cd638d7 -Author: Balázs Úr -Date: Sun Mar 17 10:16:22 2013 +0100 - - Updated Hungarian translation - - po/hu.po | 413 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 244 insertions(+), 169 deletions(-) - -commit dff14936ff03c5ff609a6b692306f2d9a012c514 -Author: Xan Lopez -Date: Sun Mar 17 09:31:33 2013 +0100 - - ephy-session: fix memory leak - - We were not freeing the save data struct itself. - - https://bugzilla.gnome.org/show_bug.cgi?id=695963 - - src/ephy-session.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit a0ce000e62a5b595ed7132aa061adf5270e81967 -Author: Gheyret Kenji -Date: Sun Mar 17 13:42:39 2013 +0900 - - Updated Uyghur translation - - Signed-off-by: Gheyret Kenji - - po/ug.po | 141 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 78 insertions(+), 63 deletions(-) - -commit de6661e5e2b9781ead869988d723001fcf6e3743 -Author: Changwoo Ryu -Date: Sun Mar 17 02:10:44 2013 +0900 - - Updated Korean translation - - po/ko.po | 1175 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 638 insertions(+), 537 deletions(-) - -commit 36439dc4f20957f006bc8c5898b6be9f1bbc2414 -Author: Xan Lopez -Date: Sat Mar 16 14:40:37 2013 +0100 - - ephy-find-toolbar: freaking tabs - - src/ephy-find-toolbar.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8d57b89b5eb71b3ad8de4c429a1f961caccdcbde -Author: Xan Lopez -Date: Sat Mar 16 14:38:40 2013 +0100 - - ephy-find-toolbar: fix memory leak - - The size group initial reference can be dropped after adding all the - widgets. - - src/ephy-find-toolbar.c | 1 + - 1 file changed, 1 insertion(+) - -commit 962c16cddee4b246c434ffed44913f192ad1ba79 -Author: Xan Lopez -Date: Sat Mar 16 14:23:44 2013 +0100 - - Revert "Add spelling suggestion to the context menu in WebKit2" - - This reverts commit 45e86f4c6f6922fb0b554c738967b9403bd70ecc. - - Pushed this by mistake. - - src/ephy-window.c | 51 ++++----------------------------------------------- - 1 file changed, 4 insertions(+), 47 deletions(-) - -commit 0a5d0060f7fb508da30040b09d1035aa3f40b2e3 -Author: Xan Lopez -Date: Sat Mar 16 14:21:01 2013 +0100 - - ephy-session: fix GTask leak - - g_task_run_in_thread already refs the task, so we have to unref it - ourselves after calling it. - - https://bugzilla.gnome.org/show_bug.cgi?id=695905 - - src/ephy-session.c | 1 + - 1 file changed, 1 insertion(+) - -commit 45e86f4c6f6922fb0b554c738967b9403bd70ecc -Author: Carlos Garcia Campos -Date: Sat Mar 16 11:50:59 2013 +0100 - - Add spelling suggestion to the context menu in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=695904 - - src/ephy-window.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++---- - 1 file changed, 47 insertions(+), 4 deletions(-) - -commit fa0f0441530eb12efa92c3dc4c21afdb2a472de6 -Author: Xan Lopez -Date: Fri Mar 15 13:02:59 2013 +0100 - - ephy-bookmarks-export: fix memory leak - - src/bookmarks/ephy-bookmarks-export.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 603dc8aa51166a7ea6814ca46e3fe8d612f62129 -Author: Aurimas Černius -Date: Fri Mar 15 23:17:05 2013 +0200 - - Updated Lithuanian translation - - po/lt.po | 71 ++++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 44 insertions(+), 27 deletions(-) - -commit 37fd79769124bd3cd4830d9d158a89cc02912cf1 -Author: Sergio Villar Senin -Date: Fri Mar 15 10:39:46 2013 +0100 - - configure.ac: added a missing ')' - - Fixes the configuration phase broken by previous commit. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ea54e438f4724e8a5e516ccee818dfb7a6f6c1ab -Author: Xan Lopez -Date: Fri Mar 15 09:46:50 2013 +0100 - - configure.ac: drop the EPIPHANY_API_VERSION variable - - We do not use this anymore. - - configure.ac | 4 ---- - 1 file changed, 4 deletions(-) - -commit 0f09bf360418bd2a66add2f1f852d0fd4044aa97 -Author: Xan Lopez -Date: Fri Mar 15 09:33:43 2013 +0100 - - configure.ac: require WebKitGTK+ 1.11.92 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 66a1c1ee56e46adcf8a8f7b482115e64919922c6 -Author: Carles Ferrando -Date: Fri Mar 15 00:20:18 2013 +0100 - - [l10n] Updated Catalan (Valencian) translation - - po/ca@valencia.po | 1224 ++++++++++++++++++++++++++++------------------------- - 1 file changed, 644 insertions(+), 580 deletions(-) - -commit 72079e13228a64f9224f044c524d29d71309cdd5 -Author: Gil Forcada -Date: Fri Mar 15 00:20:13 2013 +0100 - - [l10n] Updated Catalan translation - - po/ca.po | 1200 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 632 insertions(+), 568 deletions(-) - -commit 4098b662823c0f002d14bf4418b7f4397369fb64 -Author: Martin Srebotnjak -Date: Thu Mar 14 23:14:58 2013 +0100 - - Updated Slovenian translation - - po/sl.po | 518 +++++++++++++++++++++++++-------------------------------------- - 1 file changed, 206 insertions(+), 312 deletions(-) - -commit 06e40d778446420f776f3f2d404198e0f24b2bf7 -Author: Carlos Garcia Campos -Date: Wed Mar 13 17:29:35 2013 +0100 - - web-extension: Implement Do Not Track in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=695343 - - embed/ephy-web-view.c | 8 ++------ - embed/web-extension/ephy-web-extension.c | 14 +++++++++++--- - 2 files changed, 13 insertions(+), 9 deletions(-) - -commit 3b5a81725a5fea3f90c028e6d1f831584baaa586 -Author: Carlos Garcia Campos -Date: Thu Mar 14 09:48:26 2013 +0100 - - web-extension: Implement pre-filled forms in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=684439 - - configure.ac | 5 +- - embed/ephy-embed-shell.c | 67 ++++- - embed/ephy-web-view.c | 66 ++++- - embed/web-extension/Makefile.am | 6 + - embed/web-extension/ephy-embed-form-auth.c | 104 ++++++++ - embed/web-extension/ephy-embed-form-auth.h | 61 +++++ - embed/web-extension/ephy-web-extension.c | 416 ++++++++++++++++++++++++++--- - src/ephy-main.c | 2 + - 8 files changed, 675 insertions(+), 52 deletions(-) - -commit 070338dcd6fc15990326a9e74087a2c0fa1bc1c4 -Author: Carlos Garcia Campos -Date: Wed Mar 13 17:41:08 2013 +0100 - - Move the code to crate the remember passwords info bar widget to its own function - - This will allow to use it for WebKit2 when pre-filled forms are - implemented. - - embed/ephy-web-view.c | 93 ++++++++++++++++++++++++++++++--------------------- - 1 file changed, 54 insertions(+), 39 deletions(-) - -commit ba9b4ec9e6f4772eab5b9c8aba555ff6c03096af -Author: Carlos Garcia Campos -Date: Wed Mar 13 17:35:08 2013 +0100 - - Do not use ephy-auth-data in ephy-embed-single for WebKit2 - - It will be used by the web extension to implement the pre-filled forms. - - embed/ephy-embed-single.c | 25 +++++++++++++++++++------ - 1 file changed, 19 insertions(+), 6 deletions(-) - -commit d85a1f2822a750027342af1b5779f324b95b2f4a -Author: Xan Lopez -Date: Thu Mar 14 11:01:56 2013 +0100 - - ephy-bookmarks-editor: fix compiler warnings - - src/bookmarks/ephy-bookmarks-editor.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit f890beb4d225a92f6abe6d06b43949c7b81b8534 -Author: Xan Lopez -Date: Wed Mar 13 21:06:57 2013 +0100 - - window-commands: do not show favicon.ico downloads in the UI - - These are internal to the web app creation process, the user should - not see them. - - https://bugzilla.gnome.org/show_bug.cgi?id=695793 - - src/window-commands.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 71bb5c11d290d5762d14a705aee825b6411e669c -Author: Xan Lopez -Date: Wed Mar 13 19:39:46 2013 +0100 - - ephy-download-test: do nothing when the download is finished - - We don't want the default action to run, which in this case is to fire - GEdit with the dummy file we are downloading. - - https://bugzilla.gnome.org/show_bug.cgi?id=695782 - - tests/ephy-download-test.c | 1 + - 1 file changed, 1 insertion(+) - -commit 09f082567a909bc9369f57a2e14b28846057814e -Author: Xan Lopez -Date: Wed Mar 13 15:51:30 2013 +0100 - - ephy-embed-single: also initialize nspluginwrapper plugins in WebKit2 - - Should not be as important as in WebKit1, but no reason to not do it. - - embed/ephy-embed-single.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 20bee459a4fdbffae3688c25abacfec28895e8b3 -Author: Manuel Rego Casasnovas -Date: Wed Mar 13 14:54:11 2013 +0100 - - Fix provisional_load_failure_updates_back_forward_list test in WK2 - - The EphyWebView test provisional_load_failure_updates_back_forward_list was - failing in WK2 for a similar issue than other tests. We were not waiting for the - "changed" signal in WebKitBackForwardList, so the list was not ready when - checking it. - - https://bugzilla.gnome.org/show_bug.cgi?id=695649 - - tests/ephy-web-view-test.c | 61 ++++++++++++++++++++++++++++++++++++++++------ - 1 file changed, 53 insertions(+), 8 deletions(-) - -commit b9006782f55d4472eecdfa4f4f46c7f6c7b67e60 -Author: Duarte Loreto -Date: Wed Mar 13 00:25:22 2013 +0000 - - Updated Portuguese translation and converted to New Spelling (Novo AO) - - po/pt.po | 1485 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 775 insertions(+), 710 deletions(-) - -commit ae25b8cd43931d2670650bc5e4508d34c258fefb -Author: KennethNielsen -Date: Tue Mar 12 23:39:06 2013 +0100 - - Updated Danish translation - - po/da.po | 1128 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 601 insertions(+), 527 deletions(-) - -commit a31dfcff3a86bc6ab702cfb3dd0602707515d1b2 -Author: Xan Lopez -Date: Tue Mar 12 22:53:39 2013 +0100 - - ephy-shell-test: fix compiler warnings - - tests/ephy-shell-test.c | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 3b57ce56fc185b59d2c7c8b320d54250c0cd9199 -Author: Xan Lopez -Date: Tue Mar 12 21:14:41 2013 +0100 - - configure.ac: remove --with-webkit2 flag - - Otherwise it's likely some people will start to ship WebKit1 versions - of Epiphany 3.8 with our without knowing what they are doing. For - those that *really* want to use the WebKit1 backend, just set the - 'with_webkit2' variable to 'no'. - - configure.ac | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 2541eed4d1dfda432e6663fdaab48081c9fef38c -Author: Manuel Rego Casasnovas -Date: Tue Mar 12 14:18:43 2013 +0100 - - Fix EphyShell tests in WK2 waiting until views are loaded - - /src/ephy-shell/tab_load and /src/ephy-shell/tab_from_external tests were - failing because of the same issue than session tests. We were not waiting till - the views reach the committed load status in order to check the address. - - https://bugzilla.gnome.org/show_bug.cgi?id=695646 - - tests/Makefile.am | 4 +++- - tests/ephy-shell-test.c | 59 +++++++++++++++++++++++++++++-------------------- - tests/ephy-test-utils.c | 30 +++++++++++++++++++++++++ - tests/ephy-test-utils.h | 8 +++++++ - 4 files changed, 76 insertions(+), 25 deletions(-) - -commit 207ed7842e6f7d9be1bed66c3e630aa4bcaf7df8 -Author: Manuel Rego Casasnovas -Date: Tue Mar 12 13:50:44 2013 +0100 - - Move methods related to view load from ephy-session-test to ephy-test-utils - - In ephy-session-tests we added some methods in order to know if the EphyWebViews - have been loaded or not before checking their addresses. These methods are going - to be needed in more tests so they are moved to a utilities file. - - https://bugzilla.gnome.org/show_bug.cgi?id=695646 - - tests/Makefile.am | 2 + - tests/ephy-session-test.c | 111 +++++++++------------------------------------- - tests/ephy-test-utils.c | 107 ++++++++++++++++++++++++++++++++++++++++++++ - tests/ephy-test-utils.h | 44 ++++++++++++++++++ - 4 files changed, 173 insertions(+), 91 deletions(-) - -commit e0e7b8004b874294d887c99b2421bd3a1e618b38 -Author: Xan Lopez -Date: Tue Mar 12 20:49:35 2013 +0100 - - ephy-embed-shell: set bus watch id to zero - - Since dispose can run multiple times. - - Patch by Carlos García Campos - - embed/ephy-embed-shell.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 57725fd30f7bc6d4f5e050cfb21db41d6397872a -Author: Xan Lopez -Date: Tue Mar 12 20:03:13 2013 +0100 - - ephy-web-extension: fix coding style - - Patch by Carlos García Campos - - embed/web-extension/ephy-web-extension.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 61ae374aa94759a98b7b6f22909207269ea57486 -Author: Xan Lopez -Date: Tue Mar 12 19:57:59 2013 +0100 - - ephy-form-auth-data: remove query section from URIs - - We do not want the query to be relevant when loading/storing auth - data. - - Patch by Carlos García Campos - - lib/ephy-form-auth-data.c | 1 + - 1 file changed, 1 insertion(+) - -commit fb1168182e81dfc295fd9927805f1e5038d8b49c -Author: Carlos Garcia Campos -Date: Tue Mar 12 14:27:38 2013 +0100 - - Set the disk cache directory depending on the ephy mode in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=695345 - - embed/ephy-embed-single.c | 1 - - src/ephy-main.c | 9 +++++++++ - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 7c634f7c171250525eb63b3024e289bbea270458 -Author: Xan Lopez -Date: Tue Mar 12 19:23:54 2013 +0100 - - ephy-web-view: cast object to the right type - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3e7587c89c40f8031d64f126aec0c53bf47f0634 -Author: Manuel Rego Casasnovas -Date: Tue Mar 12 17:41:27 2013 +0100 - - Fix download tests in WK2 - - Modify ephy_download_dispose to disconnect WebKitDownload from all the handlers. - - https://bugzilla.gnome.org/show_bug.cgi?id=694579 - - embed/ephy-download.c | 1 + - tests/ephy-download-test.c | 4 ---- - 2 files changed, 1 insertion(+), 4 deletions(-) - -commit 6de928f0da88649212af2ea0c5d809053d454f84 -Author: Piotr Drąg -Date: Tue Mar 12 19:03:06 2013 +0100 - - Updated Polish translation - - po/pl.po | 165 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 91 insertions(+), 74 deletions(-) - -commit 603aa576b22a1855b5f533f6d5878f7651d2f65b -Author: Andika Triwidada -Date: Tue Mar 12 19:38:50 2013 +0700 - - Updated Indonesian translation - - po/id.po | 922 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 459 insertions(+), 463 deletions(-) - -commit d065c8c4efa672e2b0d704155f4078857a7beaa3 -Author: Nilamdyuti Goswami -Date: Tue Mar 12 15:28:39 2013 +0530 - - Assamese translation updated for gnome 3.8 - - po/as.po | 146 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 78 insertions(+), 68 deletions(-) - -commit d973101a1efc06579b110c4de89360919280da2e -Author: Carlos Garcia Campos -Date: Sat Mar 9 16:10:36 2013 +0100 - - Add EphyFormAuthDataCache to ephy-form-auth-data - - And use it in EphyEmbedSingle to cache the form auth data. - - embed/ephy-embed-single.c | 131 +++------------------------------------- - embed/ephy-embed-single.h | 6 -- - embed/ephy-web-view.c | 2 +- - lib/ephy-form-auth-data.c | 148 ++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-form-auth-data.h | 18 ++++++ - 5 files changed, 176 insertions(+), 129 deletions(-) - -commit 2499031072e275e68ad8dc1cb9bd0a53397a5e5a -Author: Carlos Garcia Campos -Date: Sat Mar 9 13:57:09 2013 +0100 - - lib: Move auth data query/store methods from ephy-profile-utils to a new file - - Move to ephy-form-auth-data and renamed accordingly. - - embed/ephy-embed-single.c | 2 +- - embed/ephy-web-view.c | 38 +++---- - lib/Makefile.am | 2 + - lib/ephy-form-auth-data.c | 251 ++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-form-auth-data.h | 59 +++++++++++ - lib/ephy-profile-migrator.c | 29 ++--- - lib/ephy-profile-utils.c | 232 ---------------------------------------- - lib/ephy-profile-utils.h | 33 ------ - po/POTFILES.in | 2 +- - 9 files changed, 348 insertions(+), 300 deletions(-) - -commit 78b70aa84bb94f5097d40ffbb461aefcbbaeb979 -Author: Carlos Garcia Campos -Date: Sat Mar 9 13:04:02 2013 +0100 - - Move find_username_and_password_elements to ephy-web-dom-utils - - Renamed as ephy_web_dom_utils_find_form_auth_elements(). Also fixed - possible memory leaks in case of multiple auth input fields found. It - now returns a boolean indicating whther form auth elements were found. - - embed/ephy-web-view.c | 70 +++------------------------------------------- - lib/ephy-web-dom-utils.c | 72 ++++++++++++++++++++++++++++++++++++++++++++---- - lib/ephy-web-dom-utils.h | 11 ++++---- - 3 files changed, 75 insertions(+), 78 deletions(-) - -commit cc3fa5ae4c8edac523c3800fbebff37b5eac33bf -Author: Rafael Ferreira -Date: Mon Mar 11 19:57:19 2013 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 135 ++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 76 insertions(+), 59 deletions(-) - -commit 4a19d5cfddc4c2e73eb1c76e01051c8c23c6b6d5 -Author: Ville-Pekka Vainio -Date: Mon Mar 11 23:35:38 2013 +0200 - - Finnish translation update by Jiri Grönroos - - po/fi.po | 1125 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 597 insertions(+), 528 deletions(-) - -commit 628831d4ca65188f268ed933e3129ceca28702da -Author: Claudio Saavedra -Date: Sun Dec 16 20:22:41 2012 +0100 - - Port to wk2 webview's snapshotting API - - https://bugzilla.gnome.org/show_bug.cgi?id=695347 - - embed/ephy-web-view.c | 54 +++++++++++++++++++++++++++++++++++++++-- - lib/ephy-snapshot-service.c | 59 ++++++++++++++++++++++++++++++++++++--------- - 2 files changed, 100 insertions(+), 13 deletions(-) - -commit a17d73e85e385a7168463ab2d10b73194708f081 -Author: Fran Diéguez -Date: Mon Mar 11 21:52:20 2013 +0100 - - Updated Galician translations - - po/gl.po | 71 ++++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 44 insertions(+), 27 deletions(-) - -commit 26aa9ccc05c610607d4bc5c286e15291a3a8fcf8 -Author: Xan Lopez -Date: Mon Mar 11 19:36:15 2013 +0100 - - ephy-web-view-test: skip another failing test - - See https://bugzilla.gnome.org/show_bug.cgi?id=695649 - - tests/ephy-web-view-test.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 175c06dd9aa080775c752c5e8be61eb4c6da94dc -Author: Xan Lopez -Date: Mon Mar 11 19:32:54 2013 +0100 - - ephy-shell-test: skip a couple of failing tests in WK2 - - See https://bugzilla.gnome.org/show_bug.cgi?id=695646 - - tests/ephy-shell-test.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 412c09da3b24d54ffc2afeef4ccab64a455f86c2 -Author: Manuel Rego Casasnovas -Date: Sat Mar 9 19:41:27 2013 +0100 - - Using webkit_web_view_load_request() after webkit_uri_request_set_uri() in WK2 - - As now we are able to modify the request with webkit_uri_request_set_uri() it - is better to use webkit_web_view_load_request() than webkit_web_view_load_uri(). - This will allow to call ephy_web_view_load_request() with a modified request. - - https://bugzilla.gnome.org/show_bug.cgi?id=695446 - - embed/ephy-web-view.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit edf2a97a36e032b422bed88371e598356908b699 -Author: Xan Lopez -Date: Mon Mar 11 19:26:43 2013 +0100 - - ephy-download-test: comment out this test for now, since it's broken - - We'll fix it soon but I want to be able to run make check. - - tests/ephy-download-test.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 094af6305e6248eb62ddfb1f05ee7920e5f17ee5 -Author: Xan Lopez -Date: Fri Mar 8 13:15:44 2013 +0100 - - ephy-session-test: make session tests work more reliably - - Based on a patch by Manuel Rego. - - Ensure the WebViews created during the session load are fully loaded - before we check their URIs. This was working more or less by pure - chance in WK1, and was failing in WK2 because of the process - separation. - - The restore tab test is skipped in WK2 for now, since it's crashing. - - The patch excludes some asserts in WK2 while bug #695437 is not fixed. - - https://bugzilla.gnome.org/show_bug.cgi?id=695300 - - tests/ephy-session-test.c | 139 +++++++++++++++++++++++++++++++++++++++++++--- - 1 file changed, 131 insertions(+), 8 deletions(-) - -commit 3e97755d7ef4b19dff5e192673e4440aecd6c571 -Author: Mario Blättermann -Date: Mon Mar 11 18:11:35 2013 +0100 - - [l10n] Updated German translation - - po/de.po | 136 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 75 insertions(+), 61 deletions(-) - -commit 46dd3ad26f3a9d9b0e850b0178bd6bf49338a835 -Author: Daniel Mustieles -Date: Mon Mar 11 18:08:24 2013 +0100 - - Updated Spanish translation - - po/es.po | 133 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 75 insertions(+), 58 deletions(-) - -commit d854ec991ce8735260404f4992917a714ee3c6dd -Author: Dimitris Spingos -Date: Mon Mar 11 17:22:01 2013 +0200 - - Updated Greek translation - - po/el.po | 133 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 75 insertions(+), 58 deletions(-) - -commit e4f5d0ae40d90a911b58d6c34daf394098b993b2 -Author: Xan Lopez -Date: Mon Mar 11 11:56:20 2013 +0100 - - configure.ac: second try for WebKit2 by default - - configure.ac | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 5c348a15f9f635626811d2b70460f68f2fa8bc93 -Author: Xan Lopez -Date: Mon Mar 11 10:11:24 2013 +0100 - - ephy-navigation-history-action: fix compiler warnings - - src/ephy-navigation-history-action.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 4369ae9aa3cd7abeb03e156abb994616b4c11441 -Author: Xan Lopez -Date: Sat Feb 23 19:55:56 2013 +0100 - - Show an error page when the WebProcess crashes - - https://bugzilla.gnome.org/show_bug.cgi?id=693832 - - data/pages/Makefile.am | 1 + - data/pages/process_crash.html | 74 +++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-web-view.c | 46 +++++++++++++++++++++++++++ - embed/ephy-web-view.h | 3 +- - 4 files changed, 123 insertions(+), 1 deletion(-) - -commit 6da63a35ffe4254084c80d5abb568f9e9906be5a -Author: Xan Lopez -Date: Sat Mar 9 21:18:28 2013 +0100 - - ephy-embed-shell: add a ::web-view-created signal - - Emitted every time we create an EphyWebView anywhere. This will be - useful in our tests. - - https://bugzilla.gnome.org/show_bug.cgi?id=695300 - - embed/ephy-embed-shell.c | 19 +++++++++++++++++++ - embed/ephy-web-view.c | 3 ++- - tests/ephy-embed-shell-test.c | 32 ++++++++++++++++++++++++++++++++ - 3 files changed, 53 insertions(+), 1 deletion(-) - -commit bc16d2a4d7c0dc06f5c36ca3c75c7eb40f5c3676 -Author: Мирослав Николић -Date: Mon Mar 11 11:12:29 2013 +0100 - - Updated Serbian translation - - po/sr.po | 197 ++++++++++++++++++++++++++++++++------------------------- - po/sr@latin.po | 197 ++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 220 insertions(+), 174 deletions(-) - -commit 59eba1253ed77cc144a52004dc64977b89483f46 -Author: Tobias Endrigkeit -Date: Sun Mar 10 16:10:05 2013 +0100 - - [l10n] Updated German translation - - po/de.po | 274 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 149 insertions(+), 125 deletions(-) - -commit 83c1f8a38e4da5dc8d87ae373123b6d6d7eeebd5 -Author: Rūdolfs Mazurs -Date: Sun Mar 10 15:38:25 2013 +0200 - - Updated Latvian translation - - po/lv.po | 1231 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 630 insertions(+), 601 deletions(-) - -commit 0f617d3cc2ea6358e5877a5d62ae890196cbe77e -Author: Khaled Hosny -Date: Sat Mar 9 19:32:26 2013 +0200 - - Update Arabic translation - - po/ar.po | 1097 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 573 insertions(+), 524 deletions(-) - -commit 4d02bff55055a6e8fb7cd423ccfa9933a25f1d38 -Author: Aurimas Černius -Date: Sat Mar 9 16:20:35 2013 +0200 - - Updated Lithuanian translation - - po/lt.po | 197 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 110 insertions(+), 87 deletions(-) - -commit 24297d7942797bf653bbfa610e447877a3948f07 -Author: Xan Lopez -Date: Sat Mar 9 10:58:40 2013 +0100 - - pdm-dialog: remove compiler warnings - - src/pdm-dialog.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 63f279e0398daee90c2946d080b134d16cca00f2 -Author: Manuel Rego Casasnovas -Date: Fri Mar 8 16:39:23 2013 +0100 - - Fix missing call to webkit_uri_request_set_uri in WK2 - - https://bugzilla.gnome.org/show_bug.cgi?id=695446 - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6af8bdac17f111dd048a05d94b5ce90d299e9046 -Author: Hajime Taira -Date: Sat Mar 9 01:07:52 2013 +0900 - - [l10n] Update Japanese translation - - po/ja.po | 859 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 437 insertions(+), 422 deletions(-) - -commit 92deca94a4fd6b20746e8ba204ba4eeda2646983 -Author: Xan Lopez -Date: Fri Mar 8 14:57:26 2013 +0100 - - Makefile.am: remove gtk-doc flag from distcheck - - Should not be needed anymore. - - Makefile.am | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 26f036459b6c3c1cac7f923155fd9974c5212de0 -Author: Xan Lopez -Date: Fri Mar 8 10:49:56 2013 +0100 - - [release] 3.7.91 - - In the end we are still going with WebKit1 by default for this - release, since a few unit tests are failing and it's already pretty - late. Next chance in .92. - - NEWS | 12 ++++++++++++ - configure.ac | 6 +++--- - 2 files changed, 15 insertions(+), 3 deletions(-) - -commit 06fd8305198eb4c10fa70df9a4a0070d31744587 -Author: Dimitris Spingos -Date: Fri Mar 8 10:07:33 2013 +0200 - - Updated Greek translation - - po/el.po | 199 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 111 insertions(+), 88 deletions(-) - -commit 273f0c39d5e175018b4c0a72f1931b75967e1a60 -Author: Matej Urbančič -Date: Thu Mar 7 21:07:49 2013 +0100 - - Updated Slovenian translation - - po/sl.po | 197 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 110 insertions(+), 87 deletions(-) - -commit 5e372ef0e21f51bc384e3389535a1951529d4a3f -Author: Ihar Hrachyshka -Date: Thu Mar 7 18:05:48 2013 +0300 - - Updated Belarusian translation. - - po/be.po | 1021 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 499 insertions(+), 522 deletions(-) - -commit d55b06fef3182d45887d672b2f458f64616a0f32 -Author: Gheyret Kenji -Date: Thu Mar 7 21:00:11 2013 +0900 - - Updated Uyghur translation - - Signed-off-by: Gheyret Kenji - - po/ug.po | 324 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 178 insertions(+), 146 deletions(-) - -commit 68822ff5aba8929f68c8d91da2dfd3d7b6fb7c36 -Author: Fran Diéguez -Date: Thu Mar 7 11:54:56 2013 +0100 - - Updated Galician translations - - po/gl.po | 197 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 110 insertions(+), 87 deletions(-) - -commit d9d8e23885d51a120c4e4c1c2ffd2d57921d0a78 -Author: Carlos Garcia Campos -Date: Mon Mar 4 20:27:25 2013 +0100 - - web-extension: Implement adblocker in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=695307 - - embed/web-extension/Makefile.am | 13 ++++++--- - embed/web-extension/ephy-web-extension.c | 48 ++++++++++++++++++++++++++++++++ - src/ephy-main.c | 1 + - 3 files changed, 58 insertions(+), 4 deletions(-) - -commit e4884cdab61ed2ddc0c69b51175d41f11cc1ded6 -Author: Carlos Garcia Campos -Date: Wed Mar 6 17:57:17 2013 +0100 - - Do not build adblock files in libephyembed for WebKit2 - - The required files will be built in the web extension. - - embed/Makefile.am | 18 +++++++++++------- - embed/ephy-embed-shell.c | 12 +++++++++++- - embed/ephy-embed.c | 6 ++++++ - src/ephy-shell.c | 6 +++++- - 4 files changed, 33 insertions(+), 9 deletions(-) - -commit 80ea62552d2e08dc2e990c5820678a06157ae416 -Author: Xan Lopez -Date: Wed Mar 6 19:58:19 2013 +0100 - - ephy-shell: fix opening new pages from the command line - - We were not re-using the active EphyEmbed, which causes opening one - extra empty tab. - - https://bugzilla.gnome.org/show_bug.cgi?id=694966 - - src/ephy-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b3351b02000d5ab223202b1ac083b73b418160b2 -Author: Carlos Garcia Campos -Date: Wed Feb 20 14:20:30 2013 +0100 - - Add support for DNS prefetching when using WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=684445 - - embed/ephy-embed-prefs.c | 1 + - lib/widgets/ephy-location-entry.c | 10 +++++++++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 9601637c22d53cfedbbe157640a8c0edb13f4dfc -Author: Xan Lopez -Date: Wed Mar 6 13:20:59 2013 +0100 - - ephy-window: fix compiler warnings - - src/ephy-window.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit c450d2e819340175b6db5804208154f0382fc0fc -Author: Carlos Garcia Campos -Date: Tue Mar 5 12:58:04 2013 +0100 - - uri-tester: Receive the base data dir as construct property instead of using ephy_dot_dir() - - This removes the dependency of ephy-file-helpers from uri-tester, that - will make easier to use it from a WebKit2 web extension - - https://bugzilla.gnome.org/show_bug.cgi?id=695205 - - embed/ephy-adblock.c | 2 +- - embed/uri-tester.c | 66 +++++++++++++++++++++++++++++++--------------------- - embed/uri-tester.h | 2 +- - 3 files changed, 41 insertions(+), 29 deletions(-) - -commit 1000c061d19a4d25cd9891655356ab17b80c0ed2 -Author: Carlos Garcia Campos -Date: Tue Mar 5 11:35:39 2013 +0100 - - uri-tester: Use GFile intead of WebKitDownload to retrieve the filters - - It removes the WebKit dependency from uri-tester that will allow us to - use it also from a WebKit2 web extension. - - https://bugzilla.gnome.org/show_bug.cgi?id=695198 - - embed/uri-tester.c | 62 +++++++++++++++++++++++++++++------------------------- - 1 file changed, 33 insertions(+), 29 deletions(-) - -commit fe0eceee0f75e3f2189e27e0222a2c8119ed9d1d -Author: Xan Lopez -Date: Wed Mar 6 11:50:23 2013 +0100 - - configure.ac: use WebKit2 by default - - We are almost certainly going to switch to WebKit2 by default for 3.8, - so change the flag here. There's very few regressions left and we have - patches for them, but if we can always change the flag back right - before release. Meanwhile, give this some wider exposure in the RC. - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 4f1ba706e79fddede7756360fbc1a1d2fcfce93a -Author: Xan Lopez -Date: Wed Mar 6 11:47:13 2013 +0100 - - ephy-web-view: fix compiler warnings - - embed/ephy-web-view.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 8f685a9466b0cf46010a143af0c27bb5f6531822 -Author: Xan Lopez -Date: Wed Mar 6 11:40:24 2013 +0100 - - ephy-embed-single: fix compiler warning - - embed/ephy-embed-single.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f296357b33972af85e80de6ec42ff135197e3cb1 -Author: Manuel Rego Casasnovas -Date: Mon Feb 25 17:11:06 2013 +0100 - - Implement get best web app icon in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=694091 - - embed/web-extension/ephy-web-extension.c | 86 ++++++++++++++++++++---- - src/window-commands.c | 110 +++++++++++++++++++++---------- - 2 files changed, 149 insertions(+), 47 deletions(-) - -commit ccb6b7caea1dd7a37691a57d3eeae968f100bc4e -Author: Nilamdyuti Goswami -Date: Wed Mar 6 13:29:05 2013 +0530 - - Assamese translation updated for gnome 3.8 - - po/as.po | 1257 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 681 insertions(+), 576 deletions(-) - -commit b3ff0fe174f273a1fef7a03506505c283d806267 -Author: Reinout van Schouwen -Date: Tue Mar 5 23:00:04 2013 +0100 - - Updated Dutch translation by Reinout van Schouwen - - po/nl.po | 344 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 192 insertions(+), 152 deletions(-) - -commit b7ff28fccd28c6f688377d6e0baa16ab30d79732 -Author: Piotr Drąg -Date: Tue Mar 5 19:08:51 2013 +0100 - - Updated Polish translation - - po/pl.po | 185 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 104 insertions(+), 81 deletions(-) - -commit 87bf3559f999970e7d73ffcde000387aa6bd0a27 -Author: Daniel Mustieles -Date: Tue Mar 5 17:22:57 2013 +0100 - - Updated Spanish translation - - po/es.po | 185 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 104 insertions(+), 81 deletions(-) - -commit b49f80231f49d5febf075ba4bc0482f255230921 -Author: Enrico Nicoletto -Date: Tue Mar 5 10:48:56 2013 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 149 +++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 87 insertions(+), 62 deletions(-) - -commit bd8a755e7ed57790da2b54d8ee81250a416f20f9 -Author: Claudio Saavedra -Date: Tue Mar 5 11:26:43 2013 +0200 - - POTFILES.in: add missing file - - https://bugzilla.gnome.org/show_bug.cgi?id=695192 - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit 0b67bd0b7c0d391441b60da38a1720f4d840d920 -Author: Claudio Saavedra -Date: Tue Feb 19 20:28:05 2013 +0200 - - incognito: show about:incognito instead of the overview - - The overview shouldn't be shown in an incognito window as it reveals - information about the browsing activity of the user. Also, a welcome - page indicating the scope of the incognito window is better. - - https://bugzilla.gnome.org/show_bug.cgi?id=694200 - - embed/ephy-embed.c | 21 ++++++++++++--------- - embed/ephy-web-view.c | 6 +++++- - src/ephy-window.c | 24 ++++++++++++++++-------- - 3 files changed, 33 insertions(+), 18 deletions(-) - -commit 4e23859050fd1410820312c16a21b3716d9f08e9 -Author: Claudio Saavedra -Date: Tue Feb 19 20:26:21 2013 +0200 - - ephy-about-handler: add a about:incognito handler - - This shows a welcome message for incognito windows. - Artwork by Jakub Steiner. - - https://bugzilla.gnome.org/show_bug.cgi?id=694200 - - data/Makefile.am | 3 ++- - data/incognito.png | Bin 0 -> 8445 bytes - data/pages/about.css | 26 ++++++++++++++++++++++++++ - embed/ephy-about-handler.c | 42 ++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed-utils.c | 1 + - 5 files changed, 71 insertions(+), 1 deletion(-) - -commit bce597e87f3e3d27da65732b0625e383e73d4f03 -Author: Claudio Saavedra -Date: Tue Feb 19 13:36:33 2013 +0200 - - ephy-password-info: remove as it is unused now - - https://bugzilla.gnome.org/show_bug.cgi?id=679918 - - src/Makefile.am | 2 -- - src/ephy-password-info.c | 51 ------------------------------------------------ - src/ephy-password-info.h | 49 ---------------------------------------------- - src/pdm-dialog.c | 1 - - 4 files changed, 103 deletions(-) - -commit 3d0bd8a2e3c1f1d5212a03c2ab82599b4c6e41cb -Author: Claudio Saavedra -Date: Tue Feb 19 13:36:00 2013 +0200 - - ephy-profile-migrator: migrate form passwords to new schema - - This completes the migration, by moving all passwords previously - stored as network passwords to the epiphany form passwords specific - schema. It must be noted that some of these passwords were not - properly stored as network passwords but as generic passwords, so a - throghout search was necessary in order to find all of them. - - https://bugzilla.gnome.org/show_bug.cgi?id=679918 - - lib/ephy-profile-migrator.c | 133 ++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-profile-utils.h | 2 +- - 2 files changed, 134 insertions(+), 1 deletion(-) - -commit e6f502ec76f1f51360338e56962f489744375bd3 -Author: Claudio Saavedra -Date: Tue Feb 19 13:31:24 2013 +0200 - - ephy-profile-migrator: migrate to libsecret - - Use libsecret to store http-authentication data in one - of the early migrators. - - https://bugzilla.gnome.org/show_bug.cgi?id=679918 - - configure.ac | 2 -- - lib/ephy-profile-migrator.c | 23 +++++++++++------------ - 2 files changed, 11 insertions(+), 14 deletions(-) - -commit 44bece7cc9da469292c6565e7e33d5be6eed0be2 -Author: Claudio Saavedra -Date: Tue Feb 19 13:28:32 2013 +0200 - - ephy-embed-single: cache form data using libsecret - - Not only migrate this to libsecret, but also cache the data from the - EPHY_FORM_PASSWORD_SCHEMA schema instead of using the - GKR-compatibility one. Since we haven't migrated yet the passwords - from GKR secrets to the new EPHY_FORM_PASSWORD_SCHEMA schema, - the cache will be empty for now. - - https://bugzilla.gnome.org/show_bug.cgi?id=679918 - - embed/ephy-embed-single.c | 96 ++++++++++++++++++----------------------------- - 1 file changed, 36 insertions(+), 60 deletions(-) - -commit 63952a6fdfc4759188baabe82962bbbf9519c141 -Author: Claudio Saavedra -Date: Tue Feb 19 13:25:04 2013 +0200 - - pdm-dialog: migrate to libsecret - - This is a one-to-one migration from the gkm implementation to - libsecret. The existing gkm-powered dialog showed both network - authentication and form authentication data. Since we are moving all - form authentication data to a Epiphany specific schema, this will not - be shown here anymore. - - https://bugzilla.gnome.org/show_bug.cgi?id=679918 - - src/pdm-dialog.c | 258 ++++++++++++++++++------------------------------------- - 1 file changed, 84 insertions(+), 174 deletions(-) - -commit 1f50ff47f0ea156e43d8b0ef4977f0b5a2e6ce48 -Author: Claudio Saavedra -Date: Tue Feb 19 13:16:55 2013 +0200 - - ephy-profile-utils: migrate ephy_profile_utils_store/query_form_auth_data() to libsecret - - We add a new SecretSchema that is specific to epiphany and intended - solely to store passwords for webforms. This is a better approach than - hacking the server url in order to store the names of the forms in it. - - These methods are only used by EphyWebView to store the passwords and - to retrieve the password when there is a cache match and by one of the - early stages of password migration in the profile-migrator. If only this - patch is applied, it is likely that only newly saved patchs will work - properly, but others will remain intact. - - https://bugzilla.gnome.org/show_bug.cgi?id=679918 - - configure.ac | 2 + - embed/ephy-web-view.c | 44 ++++----- - lib/ephy-profile-migrator.c | 9 +- - lib/ephy-profile-utils.c | 211 ++++++++++++++++++++++++++++++++++---------- - lib/ephy-profile-utils.h | 39 +++++--- - 5 files changed, 216 insertions(+), 89 deletions(-) - -commit e9a3741f4039cfdb9b05ac2caf7cc642fa69b608 -Author: Rafael Ferreira -Date: Mon Mar 4 20:11:38 2013 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 1209 ++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 625 insertions(+), 584 deletions(-) - -commit eee0a49daa0985dcd545b1b6df20f3256167147b -Author: Inaki Larranaga Murgoitio -Date: Mon Mar 4 22:33:54 2013 +0100 - - Updated Basque language - - po/eu.po | 259 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 139 insertions(+), 120 deletions(-) - -commit fc8c660ff8650ceb02d958fc22da7b1e7fb5c262 -Author: Kjartan Maraas -Date: Mon Mar 4 14:19:10 2013 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 264 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 140 insertions(+), 124 deletions(-) - -commit 9493a5fafad6226501ab29a1623290763afd8c2d -Author: Mario Blättermann -Date: Sun Mar 3 19:14:49 2013 +0100 - - [l10n] Updated German translation - - po/de.po | 258 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 136 insertions(+), 122 deletions(-) - -commit 9a885e9a397c06ce255d993c3f3211c5243a9462 -Author: Yaron Shahrabani -Date: Sat Mar 2 23:59:07 2013 +0200 - - Updated Hebrew translation. - - po/he.po | 226 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 117 insertions(+), 109 deletions(-) - -commit 4581f536abd91d6b33729722d4e51086bf0377c8 -Author: Xan Lopez -Date: Sat Mar 2 15:37:36 2013 +0100 - - window-commands: fix WebKit2 build after 8a00f5c726c9 - - src/window-commands.c | 1 + - 1 file changed, 1 insertion(+) - -commit 3852359c303eef0be57b4a5997af14ed9f4b5835 -Author: Xan Lopez -Date: Sat Mar 2 15:35:17 2013 +0100 - - ephy-web-view: remove unused method - - embed/ephy-embed-private.h | 6 ------ - embed/ephy-web-view.c | 38 -------------------------------------- - 2 files changed, 44 deletions(-) - -commit b5b4d3a8680ac4b7c7358af782cc823213b412bc -Author: Manuel Rego Casasnovas -Date: Mon Feb 25 14:17:11 2013 +0100 - - Move code to get application icon from DOM to ephy-dom-utils - - https://bugzilla.gnome.org/show_bug.cgi?id=694091 - - lib/ephy-web-app-utils.c | 230 ----------------------------------------------- - lib/ephy-web-app-utils.h | 4 - - lib/ephy-web-dom-utils.c | 223 +++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-web-dom-utils.h | 5 ++ - src/window-commands.c | 33 ++++++- - 5 files changed, 258 insertions(+), 237 deletions(-) - -commit 8a00f5c726c9b1fbe3dbe346957d0d2dbaee008b -Author: William Jon McCann -Date: Mon Feb 25 16:03:08 2013 -0500 - - Fallback to favicon instead of page snapshot - - https://bugzilla.gnome.org/show_bug.cgi?id=694703 - - src/window-commands.c | 43 +++++++++++++++++++++++++++++-------------- - 1 file changed, 29 insertions(+), 14 deletions(-) - -commit 81cbba2fe0acce1de3d78749415fe6eb2374fd71 -Author: Manuel Rego Casasnovas -Date: Mon Feb 25 13:22:30 2013 +0100 - - Implement get web app title in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=694144 - - embed/web-extension/ephy-web-extension.c | 9 +++++ - src/window-commands.c | 65 ++++++++++++++++++++++++++------ - 2 files changed, 62 insertions(+), 12 deletions(-) - -commit 4b8da0f21ae7ea5a47dbf4a0afce79b1437c3bf2 -Author: Manuel Rego Casasnovas -Date: Mon Feb 25 13:13:59 2013 +0100 - - Move code to get application title from DOM to ephy-dom-utils - - https://bugzilla.gnome.org/show_bug.cgi?id=694144 - - lib/ephy-web-dom-utils.c | 35 +++++++++++++++++++++++++++++++++++ - lib/ephy-web-dom-utils.h | 2 ++ - src/window-commands.c | 27 +++------------------------ - 3 files changed, 40 insertions(+), 24 deletions(-) - -commit c69239cebfe7d95a5863e9d2f3762ceb2e6c91a3 -Author: Мирослав Николић -Date: Fri Mar 1 10:59:21 2013 +0100 - - Updated Serbian translation - - po/sr.po | 222 +++++++++++++++++++++++++++++++-------------------------- - po/sr@latin.po | 222 +++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 238 insertions(+), 206 deletions(-) - -commit 55bf511b92858a82d1ae8d1b32d38efdb80f463f -Author: William Jon McCann -Date: Mon Feb 25 15:21:49 2013 -0500 - - Try more shortcut icon names - - https://bugzilla.gnome.org/show_bug.cgi?id=694704 - - lib/ephy-web-app-utils.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 65ecb1073482e223e3126c8e4330b98b05ee73d3 -Author: Manuel Rego Casasnovas -Date: Thu Feb 28 16:31:59 2013 +0100 - - Rename ephy_web_dom_has_modified_forms to ephy_web_dom_utils_has_modified_forms - - https://bugzilla.gnome.org/show_bug.cgi?id=694659 - - embed/ephy-web-view.c | 2 +- - embed/web-extension/ephy-web-extension.c | 2 +- - lib/ephy-web-dom-utils.c | 4 ++-- - lib/ephy-web-dom-utils.h | 2 +- - 4 files changed, 5 insertions(+), 5 deletions(-) - -commit 236494702aa8dab1af7992e8f82e1420372fff15 -Author: Manuel Rego Casasnovas -Date: Mon Feb 25 11:58:40 2013 +0100 - - Create ephy-web-dom-utils for sharing DOM bindings code between WK1 and WK2 - - https://bugzilla.gnome.org/show_bug.cgi?id=694659 - - embed/ephy-web-view.c | 62 +++----------------- - embed/web-extension/Makefile.am | 7 ++- - embed/web-extension/ephy-web-extension.c | 65 +-------------------- - lib/Makefile.am | 2 + - lib/ephy-web-dom-utils.c | 98 ++++++++++++++++++++++++++++++++ - lib/ephy-web-dom-utils.h | 40 +++++++++++++ - 6 files changed, 157 insertions(+), 117 deletions(-) - -commit 6753ea9b24f5a46f3b96132dc43c89fdfa281e03 -Author: Aurimas Černius -Date: Tue Feb 26 23:06:48 2013 +0200 - - Updated Lithuanian translation - - po/lt.po | 222 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 117 insertions(+), 105 deletions(-) - -commit e1aefdc750fefa0acf4515d56cb6aae3ff4ccc0d -Author: Dimitris Spingos -Date: Tue Feb 26 08:25:28 2013 +0200 - - Updated Greek translation - - po/el.po | 564 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 289 insertions(+), 275 deletions(-) - -commit 17c0a9b2a836098f2f51a75059101272257213ef -Author: Fran Diéguez -Date: Tue Feb 26 00:19:25 2013 +0100 - - Updated Galician translations - - po/gl.po | 224 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 120 insertions(+), 104 deletions(-) - -commit 95b05a8a60ec069fe5516b5d13f16bcf4b115ef9 -Author: Daniel Mustieles -Date: Mon Feb 25 13:38:47 2013 +0100 - - Updated Spanish translation - - po/es.po | 222 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 119 insertions(+), 103 deletions(-) - -commit e930a67a5de05f979439b85ab52dca22f4227c8f -Author: Matej Urbančič -Date: Sun Feb 24 21:37:12 2013 +0100 - - Updated Slovenian translation - - po/sl.po | 139 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 78 insertions(+), 61 deletions(-) - -commit f9d2a327df3f6e343fdfeec9c947def777608c22 -Author: Carlos Garcia Campos -Date: Sun Feb 24 11:35:36 2013 +0100 - - ephy-session: Port to GTask - - https://bugzilla.gnome.org/show_bug.cgi?id=694580 - - src/ephy-session.c | 157 +++++++++++++++++++++++------------------------------ - 1 file changed, 69 insertions(+), 88 deletions(-) - -commit d6fd5dc5520b413d404e469dab262d87690a36e7 -Author: Piotr Drąg -Date: Sun Feb 24 02:01:21 2013 +0100 - - Updated Polish translation - - po/pl.po | 188 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 102 insertions(+), 86 deletions(-) - -commit b45047739e9ebc02200267a52295f24adf4ca668 -Author: Gustavo Noronha Silva -Date: Fri Feb 22 15:38:01 2013 -0300 - - Add setting for delayed tab loading, and use it to fix the session tests - - 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 - - data/org.gnome.epiphany.gschema.xml | 5 +++++ - lib/ephy-prefs.h | 1 + - src/ephy-session.c | 21 +++++++++++++++--- - tests/ephy-session-test.c | 43 ++++++++++++++++++++++++++++++++++--- - 4 files changed, 64 insertions(+), 6 deletions(-) - -commit 1bf2e792d47a41ee9117ffae1c699419d211644a -Author: Gustavo Noronha Silva -Date: Sat Feb 23 16:57:52 2013 -0300 - - Fix WebKit1 build - - embed/ephy-embed-shell.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 12458bb74b5179d029a3fd2444183a67cc749af8 -Author: Carlos Garcia Campos -Date: Sat Feb 23 13:19:13 2013 +0100 - - web-extensions: Create the web extension proxy asynchronously - - And watch the web extension also to clear the proxy if the extension - vanishes, normally due to a web process crash, and create the proxy - again when the web process is re-spawned. - - https://bugzilla.gnome.org/show_bug.cgi?id=694519 - - embed/ephy-embed-shell.c | 82 +++++++++++++++++++++++++++++++++++++----------- - embed/ephy-web-view.c | 8 +++-- - 2 files changed, 69 insertions(+), 21 deletions(-) - -commit f145f37d22e4080b14a6e3b8aa95fef6739436c8 -Author: Matej Urbančič -Date: Fri Feb 22 22:28:01 2013 +0100 - - Updated Slovenian translation - - po/sl.po | 303 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 132 insertions(+), 171 deletions(-) - -commit 1895c2084857baca6bbc5a04b82a7763328ac59c -Author: Xan Lopez -Date: Fri Feb 22 10:25:09 2013 +0100 - - ephy-embed-prefs: fix a couple of warnings - - embed/ephy-embed-prefs.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit e0a97734593860c46630863bf647bcb78766fecf -Author: Xan Lopez -Date: Fri Feb 22 10:18:01 2013 +0100 - - ephy-web-view: do not use deprecated GtkInfo methods - - configure.ac | 2 +- - embed/ephy-web-view.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 5ec0cc55d468e8ef0487049da81570634d828a4c -Author: Xan Lopez -Date: Fri Feb 22 01:53:02 2013 +0100 - - [release] 3.7.90 - - NEWS | 16 ++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit 91670cdfdead14e203a59bdf27139bd3fbaa99af -Author: Xan Lopez -Date: Fri Feb 22 02:07:46 2013 +0100 - - ephy-web-view: get rid of a compiler warning - - embed/ephy-web-view.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 75da5fff3f4489dacf4ded6f012daa06af306709 -Author: Xan Lopez -Date: Fri Feb 22 02:04:54 2013 +0100 - - ephy-session-test: make tests pass - - We delay session loads until tab map now, which won't happen in the - tests. So take that into account for about: URIs, which are changed to - ephy-about: only during the actual load process. - - We should make this work properly before 3.8 - - tests/ephy-session-test.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit e5856473bd6d0455d054514555871b20a47fb3c5 -Author: Xan Lopez -Date: Fri Feb 22 02:03:27 2013 +0100 - - ephy-main: get rid of a compiler warning - - src/ephy-main.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 12fd29dfe5552d2ddcbacce47e242733deec07c7 -Author: Xan Lopez -Date: Thu Feb 21 17:53:33 2013 +0100 - - ephy-embed: use g_strcmp0 instead of checking manually for null strings - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7986cb099459a96f99ea88ef8cf5c465a9f31cdf -Author: Yaron Shahrabani -Date: Thu Feb 21 19:53:09 2013 +0200 - - Updated Hebrew translation. - - po/he.po | 458 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 232 insertions(+), 226 deletions(-) - -commit 8ec71c6a3b9f2ab3f10b1eef201f758bdb44e21f -Author: Carlos Garcia Campos -Date: Tue Feb 19 17:13:51 2013 +0100 - - web-extension: Use a different service name for every web process extension - - embed/ephy-embed-shell.c | 6 +++++- - embed/web-extension/ephy-web-extension.c | 6 +++++- - src/ephy-main.c | 5 +++++ - 3 files changed, 15 insertions(+), 2 deletions(-) - -commit 892b1d2649776dac118622a59cf827c7f1b51811 -Author: Carlos Garcia Campos -Date: Wed Feb 20 18:02:26 2013 +0100 - - Fix a crash when deciding whether to switch to overview mode - - It seems that URI might be NULL in some cases. - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 10163f64235b535f49647a6ad0cfa5e3b0f179a9 -Author: Carlos Garcia Campos -Date: Wed Feb 20 15:04:44 2013 +0100 - - Fix loading HTTP auth protected pages from the overview - - The switch between overview and normal web page happens when the page - load is committed, in case of HTTP auth protected pages we never switch - to web page mode because authentication happens before the load is - committed. In WebKit2 the auth dialog is attached to the web view, so we - need to show the web view before the load is committed to show the auth - dialog. - - https://bugzilla.gnome.org/show_bug.cgi?id=694268 - - embed/ephy-embed.c | 15 +++++++++++---- - 1 file changed, 11 insertions(+), 4 deletions(-) - -commit 3512e9f5bc93e6518a7a61baab0cd5b6f5ecb260 -Author: Dušan Kazik -Date: Tue Feb 19 22:28:36 2013 +0100 - - Updated slovak translation - - po/sk.po | 429 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 205 insertions(+), 224 deletions(-) - -commit 9b30a61181bf2c009e14941fd14ad551ca26f61e -Author: Carlos Garcia Campos -Date: Tue Feb 19 18:44:20 2013 +0100 - - ephy-web-view: Update to the latest WebKit2 API changes - - Use webkit_web_view_get_tls_info() instead of - webkit_uri_response_get_https_status() that has been recently removed - from the WebKit2 GTK+ API. - - embed/ephy-web-view.c | 6 +----- - 1 file changed, 1 insertion(+), 5 deletions(-) - -commit 86615e3298fa53736a6a2b722be7d45ecffd36db -Author: Carlos Garcia Campos -Date: Fri Dec 28 17:39:40 2012 +0100 - - embed: Implement unsubmitted modified forms warning in WebKit2 - - Installing a web extension to access the DOM. - - https://bugzilla.gnome.org/show_bug.cgi?id=684437 - - configure.ac | 7 +- - embed/Makefile.am | 15 ++- - embed/ephy-embed-shell.c | 33 ++++++ - embed/ephy-embed-shell.h | 3 + - embed/ephy-web-view.c | 20 +++- - embed/web-extension/Makefile.am | 20 ++++ - embed/web-extension/ephy-web-extension.c | 169 +++++++++++++++++++++++++++++++ - embed/web-extension/ephy-web-extension.h | 26 +++++ - src/Makefile.am | 1 + - src/ephy-main.c | 6 ++ - 10 files changed, 292 insertions(+), 8 deletions(-) - -commit 8acf5ae0ecaf38ce2b0e1529d88a8fde9803b7e4 -Author: Xan Lopez -Date: Mon Feb 18 12:24:09 2013 +0100 - - Remove epiphany.pc leftovers - - https://bugzilla.gnome.org/show_bug.cgi?id=694076 - - data/Makefile.am | 5 ----- - 1 file changed, 5 deletions(-) - -commit 416703f3e26974add39b4f1857adfaaa0bc977fb -Author: Мирослав Николић -Date: Mon Feb 18 11:51:36 2013 +0100 - - Updated Serbian translation - - po/sr.po | 85 +++++++++++++++++++++++++++------------------------------- - po/sr@latin.po | 85 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 80 insertions(+), 90 deletions(-) - -commit 227fa4a100af87f3bed1b674baf739f371d43899 -Author: Cheng-Chia Tseng -Date: Mon Feb 18 18:34:17 2013 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 130 +++++++++++++++++++++++++++++++----------------------------- - po/zh_TW.po | 130 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 134 insertions(+), 126 deletions(-) - -commit 5544d966f5bae2b479f59375d5b48c2a3e07a319 -Author: Carlos Garcia Campos -Date: Wed Jul 4 12:24:19 2012 +0200 - - popup-commands: Postpone the creation of the download object until destination is known - - In WebKit2 downloads automatically start when an uri is requested to be - downloaded. Instead of creating a download that is cancelled if the - destination dialog is cancelled, we can simply create the download when - the destination dialog has been accepted. - - https://bugzilla.gnome.org/show_bug.cgi?id=685950 - - src/popup-commands.c | 36 +++++++++++++++++++++++++----------- - 1 file changed, 25 insertions(+), 11 deletions(-) - -commit 99dfb8567ee8a04b7c65e46b02a8417fd66e2fdd -Author: Piotr Drąg -Date: Sun Feb 17 14:48:31 2013 +0100 - - Updated Polish translation - - po/pl.po | 134 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 69 insertions(+), 65 deletions(-) - -commit 3a2efc7ddf00d05e78a7e4e09e3cfb03609cbfbe -Author: Mario Blättermann -Date: Sat Feb 16 21:42:32 2013 +0100 - - [l10n] Updated German translation - - po/de.po | 209 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 106 insertions(+), 103 deletions(-) - -commit 9a2a47c447c031730110db5a5d1f24c177b371a0 -Author: Xan Lopez -Date: Sat Feb 16 13:34:04 2013 +0100 - - ephy-toolbar: make the margins for the New Tab button RTL friendly - - src/ephy-toolbar.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit 9f21e02cf7a3cf2b4d68f8b051defed5457327aa -Author: Xan Lopez -Date: Sat Feb 16 13:31:13 2013 +0100 - - Add a New Tab button in the toolbar - - Useful in general, and in particular in touch-based devices. - - https://bugzilla.gnome.org/show_bug.cgi?id=684616 - - src/ephy-toolbar.c | 17 +++++++++++++++++ - src/ephy-window.c | 1 + - 2 files changed, 18 insertions(+) - -commit 829a5ce9beccd54958eade05ae71c7f5ed238cf3 -Author: Gheyret Kenji -Date: Sat Feb 16 12:40:13 2013 +0900 - - Updated Uyghur translation - - Signed-off-by: Gheyret Kenji - - po/ug.po | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - -commit ca9bed5e363d9ef53e14461a55ef4df0edf15c5b -Author: Xan Lopez -Date: Thu Feb 14 21:31:36 2013 +0100 - - Get rid of epiphany.pc - - Also not needed. - - configure.ac | 1 - - data/epiphany.pc.in | 16 ---------------- - 2 files changed, 17 deletions(-) - -commit ff9c01c07f003de688245877a829b2ae98078d2d -Author: Xan Lopez -Date: Thu Feb 14 21:30:30 2013 +0100 - - Get rid of epiphany.h - - It is also not needed anymore. - - configure.ac | 1 - - src/Makefile.am | 1 - - src/epiphany.h.in | 63 ------------------------------------------------------- - 3 files changed, 65 deletions(-) - -commit a5499cd5750f67baf109f26e7a4daf36b79c8e9d -Author: Xan Lopez -Date: Thu Feb 14 21:29:08 2013 +0100 - - Do not install headers - - Since there are no extensions, we don't need to do this anymore. - - embed/Makefile.am | 5 ----- - lib/Makefile.am | 5 ----- - src/Makefile.am | 5 ----- - src/bookmarks/Makefile.am | 5 ----- - 4 files changed, 20 deletions(-) - -commit c410e9d9683b3b7b8da7f92adcaf8332e900caad -Author: Xan Lopez -Date: Thu Feb 14 18:55:15 2013 +0100 - - Remove EphyPermissionManager - - This was also a no-op. The only thing the popup code is doing is - checking the GSetting, so just do that. - - embed/Makefile.am | 2 - - embed/ephy-embed-single.c | 55 +------- - embed/ephy-permission-manager.c | 284 ---------------------------------------- - embed/ephy-permission-manager.h | 132 ------------------- - embed/ephy-web-view.c | 47 +------ - src/epiphany.h.in | 1 - - 6 files changed, 3 insertions(+), 518 deletions(-) - -commit d3cf3f551911c51f6bd488cdbf49bfa8d1dcdfe8 -Author: Nuno Araujo -Date: Mon Feb 11 15:00:05 2013 +0100 - - support notification filtering - - This gives gnome-shell a change to apply notification filtering on - this app. - - https://bugzilla.gnome.org/show_bug.cgi?id=690996 - - data/epiphany.desktop.in.in | 1 + - src/window-commands.c | 1 + - 2 files changed, 2 insertions(+) - -commit 238e2ec8a279c5f58e80a198fcfd315aa0a8dbb1 -Author: Xan Lopez -Date: Thu Feb 14 13:19:50 2013 +0100 - - ephy-shell: remove some leftovers from the new-window removal - - src/ephy-shell.c | 63 -------------------------------------------------------- - 1 file changed, 63 deletions(-) - -commit 1aa183817b46cb7ab130e8d8803cf4e7ca3713f3 -Author: Xan Lopez -Date: Wed Feb 13 20:56:01 2013 +0100 - - ephy-embed-single: remove open_window method - - It's also been a no-op for a long time. The problem of allowing the - popup manager to create windows from embed/ is still left to be - solved. - - embed/ephy-embed-single.c | 49 ----------------------------------------------- - embed/ephy-embed-single.h | 12 ------------ - embed/ephy-web-view.c | 8 +++----- - 3 files changed, 3 insertions(+), 66 deletions(-) - -commit 05b55f9385cd803b7d7a41876722c7a899eee6f0 -Author: Xan Lopez -Date: Wed Feb 13 15:09:05 2013 +0100 - - ephy-embed-single: remove ::handle-content signal - - It was meant for extensions, which we don't have anymore. - - embed/ephy-embed-single.c | 24 ------------------------ - embed/ephy-embed-single.h | 4 ---- - embed/ephy-web-view.c | 21 ++------------------- - 3 files changed, 2 insertions(+), 47 deletions(-) - -commit d261d88d925ba7f15952cf4696bea5989faf50d2 -Author: Xan Lopez -Date: Wed Feb 13 15:02:08 2013 +0100 - - ephy-embed-single: remove clear http auth cache method - - It's been unimplemented for ages. - - embed/ephy-embed-single.c | 19 ------------------- - embed/ephy-embed-single.h | 2 -- - 2 files changed, 21 deletions(-) - -commit d6a8e187aff66abbcbc2db38a59581d2e656199d -Author: Xan Lopez -Date: Wed Feb 13 00:39:17 2013 +0100 - - ephy-web-view: remove dead declarations - - GCC, you need to warn me about these. - - embed/ephy-web-view.h | 3 --- - 1 file changed, 3 deletions(-) - -commit af1b92ab347b134e63e406a98a373d9b409e3516 -Author: Xan Lopez -Date: Wed Feb 13 00:32:25 2013 +0100 - - Remove EphyWebView::visibility - - This once was likely used to toggle the visibility of popups, but it's - now a no-op. When we re-introduce that feature we can do something - similar again. - - embed/ephy-web-view.c | 59 --------------------------------------------------- - src/ephy-window.c | 20 ----------------- - 2 files changed, 79 deletions(-) - -commit 7e0161351339d96b49e3c504ab5a0c0834a259b7 -Author: Xan Lopez -Date: Wed Feb 13 00:23:11 2013 +0100 - - ephy-web-view: a few more type checks for public methods - - embed/ephy-web-view.c | 27 +++++++++++++++++++++++++-- - 1 file changed, 25 insertions(+), 2 deletions(-) - -commit d80f4d4074c9f7fe402d9c4757f1042a2106dc90 -Author: Xan Lopez -Date: Tue Feb 12 18:19:00 2013 +0100 - - ephy-web-view: only extract title from address if address is not NULL - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4c73c88d7742563dc16fd303f903f34ee0d8dde1 -Author: Xan Lopez -Date: Tue Feb 12 18:18:44 2013 +0100 - - ephy-embed-utils: protect against NULL address in method - - embed/ephy-embed-utils.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 2dbd0a472b1a83fc2b84f3789f457819a326e60f -Author: Carlos Garcia Campos -Date: Tue Feb 12 18:11:31 2013 +0100 - - Fix the build with WebKit2 - - embed/ephy-embed.c | 13 +++++++++++++ - embed/ephy-embed.h | 4 ++++ - 2 files changed, 17 insertions(+) - -commit ce7ab1e34804d9f7529bed13267f4619c37e32d9 -Author: Gustavo Noronha Silva -Date: Sat Feb 9 16:43:02 2013 -0200 - - Only load pages when their tab is switched to upon session restore - - Firefox has led the way implementing this behaviour to improve the experience - of restoring a session with lots of tabs. By delaying the loading of pages to - when the user shows interest in them, the time it takes for the browser to - become usable is diminished, and less pages are loaded in parallel, which - improves load time for the first pages the user sees. - - It also has the advante of displaying less HTTP Basic Auth dialogs, when the - user has many tabs pointed to the same server. - - https://bugzilla.gnome.org/show_bug.cgi?id=675302 - - embed/ephy-embed-shell.c | 24 +++++++++++ - embed/ephy-embed-shell.h | 3 ++ - embed/ephy-embed.c | 101 ++++++++++++++++++++++++++++++++++++++++++++--- - embed/ephy-embed.h | 3 ++ - embed/ephy-web-view.c | 38 ++++++++++++++++++ - embed/ephy-web-view.h | 4 ++ - src/ephy-notebook.c | 4 +- - src/ephy-session.c | 23 ++++++++--- - src/ephy-shell.c | 9 +++-- - src/ephy-shell.h | 3 ++ - 10 files changed, 197 insertions(+), 15 deletions(-) - -commit 551eb0cec6469ece8e826411d65bf806ec043142 -Author: Claudio Saavedra -Date: Mon Feb 11 22:04:15 2013 +0200 - - ephy-web-view: fix the docs for a couple of signals - - embed/ephy-web-view.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit fc2c0a42360580311ca401362da5be1e883ba305 -Author: Xan Lopez -Date: Mon Feb 11 15:07:49 2013 +0100 - - window-commands: update copyright year - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bdc698a41a33930e5161c26feb3cb6bb4f02da3e -Author: Daniel Mustieles -Date: Mon Feb 11 14:36:27 2013 +0100 - - Updated Spanish translation - - po/es.po | 471 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 236 insertions(+), 235 deletions(-) - -commit 96c4554ef5c51d8607870125d26f46feca21e850 -Author: Fran Diéguez -Date: Sun Feb 10 13:39:12 2013 +0100 - - Updated Galician translations - - po/gl.po | 74 ++++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 39 insertions(+), 35 deletions(-) - -commit 3103efe82b93e2b9dc0b063f77e9bd5d245cffbc -Author: Xan Lopez -Date: Sun Feb 10 11:51:08 2013 +0100 - - ephy-notebook: remove two useless forward declarations - - src/ephy-notebook.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 04a5b8dc505f3663a4ae298b257c523a986ca6fb -Author: Xan Lopez -Date: Sun Feb 10 11:32:36 2013 +0100 - - Remove API doc generation - - We don't have extensions anymore, so this serves no purpose. If we - ever add a new (hopefully much smaller!) API set for next-generation - extensions we'll resurrect the docs for it. - - configure.ac | 7 - - doc/Makefile.am | 2 - - doc/reference-howto.txt | 28 --- - doc/reference/Makefile.am | 264 ---------------------------- - doc/reference/epiphany-docs.sgml | 32 ---- - doc/reference/epiphany-overrides.txt | 0 - doc/reference/epiphany-sections.txt | 222 ----------------------- - doc/reference/epiphany.types | 22 --- - doc/reference/tmpl/ephy-location-entry.sgml | 209 ---------------------- - doc/reference/tmpl/ephy-search-entry.sgml | 51 ------ - doc/reference/tmpl/ephy-window.sgml | 107 ----------- - doc/reference/tmpl/epiphany-unused.sgml | 0 - 12 files changed, 944 deletions(-) - -commit e692c1d39e13182df34c56d09889141840c50c89 -Author: Aurimas Černius -Date: Sat Feb 9 22:47:43 2013 +0200 - - Updated Lithuanian translation - - po/lt.po | 914 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 509 insertions(+), 405 deletions(-) - -commit a9ccd883923117f88b257be1b3f8aa15eb751f24 -Author: Xan Lopez -Date: Sat Feb 9 18:52:09 2013 +0100 - - ephy-session: port to GTask - - https://bugzilla.gnome.org/show_bug.cgi?id=691439 - - src/ephy-session.c | 42 ++++++++++++++++++++---------------------- - 1 file changed, 20 insertions(+), 22 deletions(-) - -commit 21c195f175176781065124e676c5e6654825ee76 -Author: Xan Lopez -Date: Sat Feb 9 18:11:22 2013 +0100 - - ephy-shell: add g_return_val_if_fails to ephy_shell_new_tab_full - - src/ephy-shell.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit ae27048386eec40d288100c83df6905b9c259d1a -Author: Xan Lopez -Date: Sat Feb 9 18:03:57 2013 +0100 - - ephy-shell: avoid useless call to ephy_embed_shell_get_default - - There's only one shell, which we already get in the first - parameter. No need to ask for the shell again. - - src/ephy-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit dc593512ec224f24a6b7a3b1f67812498f4e7db2 -Author: Wouter Bolsterlee -Date: Sat Feb 9 17:22:13 2013 +0100 - - Updated Dutch translation - - po/nl.po | 422 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 212 insertions(+), 210 deletions(-) - -commit 126a47acb0bb687b957806698dc9996c468aafb3 -Author: Gheyret Kenji -Date: Sat Feb 9 09:57:25 2013 +0900 - - Updated Uyghur translation - - Signed-off-by: Gheyret Kenji - - po/ug.po | 203 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 104 insertions(+), 99 deletions(-) - -commit b23b0b805fd475246018b0d7441fe3a9a5cd2303 -Author: Xan Lopez -Date: Fri Feb 8 17:14:02 2013 +0100 - - Use GtkApplication method to get the list of windows - - We have one in EphyShell, but should be redundant (since we stopped - tracking non-EphyWindow windows some time ago). - - src/ephy-session.c | 8 +++--- - src/ephy-shell.c | 73 ++++------------------------------------------- - src/ephy-shell.h | 2 -- - tests/ephy-session-test.c | 25 ++++++++-------- - 4 files changed, 23 insertions(+), 85 deletions(-) - -commit 0d728a011be9ff6f96c5296f5fe3b33564114a81 -Author: Claudio Saavedra -Date: Thu Feb 7 10:24:25 2013 +0200 - - ephy-session-test: add tests for tab restoring API - - https://bugzilla.gnome.org/show_bug.cgi?id=128184 - - tests/ephy-session-test.c | 69 +++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 69 insertions(+) - -commit 0129db9503f61333eb12a785c1b4d073aef83cce -Author: Claudio Saavedra -Date: Thu Feb 7 10:23:53 2013 +0200 - - ephy-session-test: add test for ephy_session_clear() - - https://bugzilla.gnome.org/show_bug.cgi?id=693297 - - tests/ephy-session-test.c | 63 +++++++++++++++++++++++++++-------------------- - 1 file changed, 36 insertions(+), 27 deletions(-) - -commit 65f5514fc4df4d6d7c88319d08b12820546e4d1b -Author: Claudio Saavedra -Date: Thu Feb 7 10:23:17 2013 +0200 - - ephy-session.c: add ephy_session_clear() - - https://bugzilla.gnome.org/show_bug.cgi?id=693297 - - src/ephy-private.h | 5 +++++ - src/ephy-session.c | 20 ++++++++++++++++++++ - 2 files changed, 25 insertions(+) - -commit be7b9d45477bd6762979f2046f41b713b2eefffe -Author: Claudio Saavedra -Date: Mon Jan 28 13:18:41 2013 +0200 - - ephy-shell: add application menu item for reopening closed tabs - - https://bugzilla.gnome.org/show_bug.cgi?id=128184 - - src/ephy-shell.c | 24 ++++++++++++++++++++++++ - src/resources/epiphany-application-menu.ui | 5 +++++ - src/window-commands.c | 7 +++++++ - src/window-commands.h | 2 ++ - 4 files changed, 38 insertions(+) - -commit 180ad78567be78007ac26fe5b73b0a2a28c0eb1f -Author: Claudio Saavedra -Date: Mon Jan 28 22:05:00 2013 +0200 - - ephy-embed-shell: add EPHY_EMBED_SHELL_MODE_INCOGNITO - - Since we need to differenciate between incognito and private mode in - order to enable restoring closed tabs only for the latter case. - - Add a macro for the cases in which either mode should behave in the - same way to simplify the change. - - https://bugzilla.gnome.org/show_bug.cgi?id=128184 - - embed/ephy-embed-shell.h | 4 ++++ - embed/ephy-embed-single.c | 2 +- - embed/ephy-web-view.c | 4 ++-- - src/ephy-main.c | 3 +-- - src/ephy-shell.c | 2 +- - src/pdm-dialog.c | 5 ++--- - 6 files changed, 11 insertions(+), 9 deletions(-) - -commit 946292f704d24d3e82761a97bc4666df3458bc5b -Author: Claudio Saavedra -Date: Mon Jan 28 13:18:02 2013 +0200 - - ephy-session: add can-undo-tab-closed boolean property - - https://bugzilla.gnome.org/show_bug.cgi?id=128184 - - src/ephy-session.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-session.h | 2 ++ - 2 files changed, 65 insertions(+) - -commit f0907d8fe648b6b8d345ca6434ddbe2cf90f1fc5 -Author: Claudio Saavedra -Date: Mon Jan 28 12:55:31 2013 +0200 - - ephy-session: add API to restore closed tabs - - We add a queue of closed tabs to EphySession, which is later used to - restore them through ephy_session_undo_close_tab(). - - Based on a patch by Diego Escalante Urrelo - - https://bugzilla.gnome.org/show_bug.cgi?id=128184 - - src/ephy-session.c | 249 +++++++++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-session.h | 2 + - 2 files changed, 251 insertions(+) - -commit f3eef3662c3a0fad0df94f35023b73869519675d -Author: Claudio Saavedra -Date: Sat Jan 26 12:30:12 2013 +0200 - - ephy-shell: Make it possible to prepend a tab in a window - - We need this in order to open a tab in the first position of a window - when undoing a tab closure. - - https://bugzilla.gnome.org/show_bug.cgi?id=128184 - - src/ephy-shell.c | 3 +++ - src/ephy-shell.h | 15 ++++++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit 370d8d7a79ee3b4270f67fe4664875b288a6f89a -Author: Xan Lopez -Date: Thu Feb 7 21:00:06 2013 +0100 - - ephy-shell: return the proper types for EphySession and GNetworkMonitor - - src/ephy-shell.c | 14 +++++++------- - src/ephy-shell.h | 21 +++++++++++---------- - src/ephy-window.c | 4 ++-- - tests/ephy-session-test.c | 8 ++++---- - 4 files changed, 24 insertions(+), 23 deletions(-) - -commit b0fff802887880765e36bbfb8ff56c91ecc4666e -Author: Xan Lopez -Date: Thu Feb 7 20:59:22 2013 +0100 - - Move ephy_session_open_uris to EphyShell - - There's no reason at all for this method to be in EphySession, it - neither writes nor reads the state of the browser. - - src/ephy-session.c | 158 +--------------------------------------------- - src/ephy-session.h | 5 -- - src/ephy-shell.c | 138 +++++++++++++++++++++++++++++++++++++++- - src/ephy-shell.h | 4 ++ - tests/ephy-session-test.c | 2 +- - 5 files changed, 142 insertions(+), 165 deletions(-) - -commit 8b911efb1c32d5424a7a4f7a2934b4c80ae0e158 -Author: Gustavo Noronha Silva -Date: Tue Feb 5 00:34:42 2013 -0200 - - The inspector has moved to starting attached, so follow the change - - https://bugzilla.gnome.org/show_bug.cgi?id=693177 - - embed/ephy-embed.c | 19 ++++++++++--------- - 1 file changed, 10 insertions(+), 9 deletions(-) - -commit 5ab785702de658ba883de336ed4295631ff54b92 -Author: Fran Diéguez -Date: Thu Feb 7 01:38:25 2013 +0100 - - Updated Galician translations - - po/gl.po | 168 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 83 insertions(+), 85 deletions(-) - -commit 5883499dcafcc6aa8c12b58881b640ef9ef6df41 -Author: Xan Lopez -Date: Wed Feb 6 18:53:03 2013 +0100 - - [release] 3.7.5 - - NEWS | 17 +++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 18 insertions(+), 1 deletion(-) - -commit 8b63fec4044035369c3552c7324b5b42ca112686 -Author: Giovanni Campagna -Date: Fri Feb 1 20:11:33 2013 +0100 - - Don't ask Xlib to skip ARGB visuals - - WebKit uses GLX windows internally, which will have alpha. If any - of those windows receives an event, Gtk will attempt to create a - foreign GdkWindow wrapping them, and will crash because XGetWindowAttributes - will return a NULL visual. - - https://bugzilla.gnome.org/show_bug.cgi?id=693030 - - src/ephy-main.c | 3 --- - 1 file changed, 3 deletions(-) - -commit 05bf9a53c2e0ef8c0ce13450fc853e7b4d247ae4 -Author: Xan Lopez -Date: Tue Feb 5 18:58:35 2013 +0100 - - configure.ac: depend on glib 2.35.6 - - A few important fixes in there that we'd rather have to avoid lots of - bug reports. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 68b8b6c71285308722cabd1616cc1a8eafde304b -Author: Chao-Hsiung Liao -Date: Mon Feb 4 06:44:22 2013 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 1038 ++++++++++++++++++++++++++++++----------------------------- - po/zh_TW.po | 1038 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1056 insertions(+), 1020 deletions(-) - -commit d47a2715b7067873599a3a06c3fbaa3832174fe4 -Author: Gheyret Kenji -Date: Sat Feb 2 11:52:58 2013 +0900 - - Updated Uyghur translation - - Signed-off-by: Gheyret Kenji - - po/ug.po | 163 +++++++++++++++++---------------------------------------------- - 1 file changed, 43 insertions(+), 120 deletions(-) - -commit 798ac3a993db2214a95420800e1568ae47ba7403 -Author: Piotr Drąg -Date: Thu Jan 31 20:08:38 2013 +0100 - - Updated Polish translation - - po/pl.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 5e0d02a61fe1dec214639b818a2c6d32b2a00493 -Author: Piotr Drąg -Date: Thu Jan 31 20:05:48 2013 +0100 - - Updated Polish translation - - po/pl.po | 503 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 244 insertions(+), 259 deletions(-) - -commit dc9b975eec07f2e322af20ef2eb3cc0b5480ca80 -Author: Inaki Larranaga Murgoitio -Date: Thu Jan 31 16:08:09 2013 +0100 - - Updated Basque language - - po/eu.po | 2305 +++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 1375 insertions(+), 930 deletions(-) - -commit 90cc36c69be4e11102a4f34dbac00f5d39687c10 -Author: Gustavo Noronha Silva -Date: Tue Jan 29 00:42:21 2013 -0200 - - ephy-node-db: build fix; log node db saving to where filename is available - - lib/ephy-node-db.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 9483e9e52af9b36ad41215063b616e960928d78a -Author: Claudio Saavedra -Date: Sun Jan 27 18:02:53 2013 +0200 - - ephy-file-helpers: remove ephy_file_switch_temp_file() - - It is racy and it is unnecessary as we've replaced all its instances - with g_file_set_contents(). - - doc/reference/epiphany-sections.txt | 1 - - lib/ephy-file-helpers.c | 109 ------------------------------------ - lib/ephy-file-helpers.h | 2 - - tests/ephy-file-helpers-test.c | 73 ------------------------ - 4 files changed, 185 deletions(-) - -commit 213b032a24ac9286af1f5ab3a4087d64eef12f52 -Author: Claudio Saavedra -Date: Wed Jan 23 13:54:47 2013 +0200 - - ephy-bookmarks-export: use g_file_set_contents() when saving to RDF - - https://bugzilla.gnome.org/show_bug.cgi?id=691794 - - src/bookmarks/ephy-bookmarks-export.c | 30 +++++++++++++++--------------- - 1 file changed, 15 insertions(+), 15 deletions(-) - -commit fdf27e6538f0aefb1f5d1f7fcc72d6e3668b8749 -Author: Claudio Saavedra -Date: Wed Jan 23 13:54:21 2013 +0200 - - ephy-node-db: use g_file_set_contents() when saving to disk - - Since g_file_set_contents() is atomic and already takes care of saving - first to a temporary file, we don't need to use - ephy_file_switch_temp_file(). - - https://bugzilla.gnome.org/show_bug.cgi?id=691794 - - lib/ephy-node-db.c | 27 ++++++++++++--------------- - 1 file changed, 12 insertions(+), 15 deletions(-) - -commit 76de6c62ecf84b26e703ebe8eefa8fb55eec807e -Author: Gabor Kelemen -Date: Thu Jan 24 15:23:59 2013 +0100 - - Updated Hungarian translation - - po/hu.po | 965 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 451 insertions(+), 514 deletions(-) - -commit dd549d1fbf78ea1c49b2e57ac8f59aa54da41fea -Author: Kjartan Maraas -Date: Wed Jan 23 13:09:04 2013 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 339 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 162 insertions(+), 177 deletions(-) - -commit 6f5a2ad3c592e9c04664716ec63f4f311d34add8 -Author: David King -Date: Tue Jan 22 19:49:58 2013 +0000 - - Set a document basename when printing to a file - - Bump GTK+ dependency to 3.5.4, where the new print-to-file support was - added to GtkPrintSettings. - - https://bugzilla.gnome.org/show_bug.cgi?id=692337 - - configure.ac | 2 +- - embed/ephy-web-view.c | 15 +++++++++++++++ - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit d6ebacf7c2f5a5955e31b91dc09999d3e8dbbcca -Author: Tobias Endrigkeit -Date: Mon Jan 21 20:02:04 2013 +0100 - - [l10n] Updated German translation - - po/de.po | 1605 +++++++++++++++++++------------------------------------------- - 1 file changed, 489 insertions(+), 1116 deletions(-) - -commit a0588944139bfc72f2a68d352b11b74db47a940d -Author: Gheyret Kenji -Date: Sat Jan 19 11:01:28 2013 +0900 - - Updated Uyghur translation - - Signed-off-by: Gheyret Kenji - - po/ug.po | 3524 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1909 insertions(+), 1615 deletions(-) - -commit c0a35fb104bb71984526b2ac00b9b50c5403ab13 -Author: Мирослав Николић -Date: Fri Jan 18 10:52:55 2013 +0100 - - Updated Serbian translation - - po/sr.po | 980 +++++++++++++++++++++++++++------------------------------ - po/sr@latin.po | 980 +++++++++++++++++++++++++++------------------------------ - 2 files changed, 924 insertions(+), 1036 deletions(-) - -commit d844231d3ff566547bb400140af55da4b8a8c476 -Author: Xan Lopez -Date: Thu Jan 17 23:55:07 2013 +0100 - - Remove ability to open URIs in the clipboard through middle click - - This is disabled by default, pretty obscure, and problematic to port - properly to WebKit2. So just drop the code. - - data/epiphany.convert | 1 - - data/org.gnome.epiphany.gschema.xml | 5 --- - lib/ephy-prefs.h | 1 - - src/ephy-window.c | 78 ------------------------------------- - 4 files changed, 85 deletions(-) - -commit 41333ff1b7e365e48d185361a09f267736febe5b -Author: Fran Diéguez -Date: Sun Jan 13 18:01:17 2013 +0100 - - Updated Galician translations - - po/gl.po | 301 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 151 insertions(+), 150 deletions(-) - -commit b61426e296555fec1aa6211a5d9dc6c8e341462c -Author: Matej Urbančič -Date: Sat Jan 12 23:03:03 2013 +0100 - - Updated Slovenian translation - - po/sl.po | 490 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 251 insertions(+), 239 deletions(-) - -commit 2c9fc0f3af7a51f1fead38c65706604022663b5f -Author: Giovanni Campagna -Date: Sun Oct 7 19:19:54 2012 +0200 - - EphyWindow: don't connect to scroll-event on the web view - - Doing so prevents the correct delivery of scroll DOM events, - and at time causes the wrong part of the page to scroll (or - none at all). - - https://bugzilla.gnome.org/show_bug.cgi?id=684243 - - src/ephy-window.c | 31 +------------------------------ - 1 file changed, 1 insertion(+), 30 deletions(-) - -commit a5ae9c3e3ade32d7dafbb4ec841eb9197b911e0d -Author: Carlos Garcia Campos -Date: Fri Jan 11 12:57:00 2013 +0100 - - ephy-enbed: Check URI is ephy-about:overview instead of about:overview - - To set the overview mode or not because ephy_web_view_get_address() - returns the internal URI, not the one exposed to the UI. - - embed/ephy-embed.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit e0024b7841b206eb5fa6bdb553ffe7b8e56cf133 -Author: Carlos Garcia Campos -Date: Fri Jan 11 12:55:42 2013 +0100 - - ephy-web-view: Do not convert ephy-about URIs in ephy_web_view_location_changed() - - We handle ephy-about URIs intetnally, they are converted to about: when - needed. - - embed/ephy-web-view.c | 18 +++++++----------- - 1 file changed, 7 insertions(+), 11 deletions(-) - -commit ebe9853a9973d1bf07526089014ae4cabd17628d -Author: Carlos Garcia Campos -Date: Fri Sep 21 18:44:51 2012 +0200 - - Port delete web application to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=684448 - - src/ephy-window.c | 96 +++++++++++++++++++++++++++++++------------------------ - 1 file changed, 55 insertions(+), 41 deletions(-) - -commit f256d7fc2dac4f1a3abbcc594be51f62b6f13496 -Author: Carlos Garcia Campos -Date: Fri Sep 21 18:42:12 2012 +0200 - - Don't use DOM bindings to delete a web application from about:applications - - Use a different form for every web application with a hidden value - containing the application id. Then use the policy client to ignore any form - submission from about:applications and delete the application instead, - reloading the about:applications page. This solution will work for - WebKit2 too. - - embed/ephy-about-handler.c | 15 +++++--- - embed/ephy-web-view.c | 89 ++-------------------------------------------- - src/ephy-window.c | 32 +++++++++++++++++ - 3 files changed, 44 insertions(+), 92 deletions(-) - -commit 148238b49a703b0b3c971a3ae7d430d44a20693a -Author: Carlos Garcia Campos -Date: Wed Jan 9 14:54:24 2013 +0100 - - ephy-web-view: Strip the query from the URL for about:applications - - When a web application is deleted from about:applications, the form - submitted reloads the page adding hidden fields to the URI. - - https://bugzilla.gnome.org/show_bug.cgi?id=691417 - - embed/ephy-web-view.c | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -commit be49b7a2e25a6e6f6941240d9f9a5542c34ffd95 -Author: Carlos Garcia Campos -Date: Wed Jan 9 14:52:24 2013 +0100 - - ephy-web-view: Do not update the URL when changed during committed state - - Similar to what we do in WebKit2, do not update the URL when view uri - changes while loading, because we already update the URL manually when - the load is committed. - - embed/ephy-web-view.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit c4c0f51735760c465b4c7273681800d97f861885 -Author: Carlos Garcia Campos -Date: Fri Jan 11 09:15:46 2013 +0100 - - ephy-web-view: Remove special case for plugins in get_title_from_address() - - The title is already set by the plugins HTML in the about handler. - - embed/ephy-web-view.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 3d5f2529cb79344cce1ab87eaf3ec99bd0d31196 -Author: Carlos Garcia Campos -Date: Fri Jan 11 09:14:04 2013 +0100 - - ephy-web-view: Don't change is_blank property depending on the title - - In WebKit1 the notify::title signal is emitted twice for every load, - first with NULL to reset the title and then with the actual title. A - NULL title doesn't necessarily means the page is about:blank, and the - property is updated already by ephy_web_view_set_address. - - https://bugzilla.gnome.org/show_bug.cgi?id=691416 - - embed/ephy-web-view.c | 9 ++------- - 1 file changed, 2 insertions(+), 7 deletions(-) - -commit 11d8b3ed3849e4ed18e9741af5ce316c4ccb29b8 -Author: Carlos Garcia Campos -Date: Fri Jan 11 09:11:11 2013 +0100 - - ephy-string: Handle about: and ephy-about: as special cases in ephy_string_get_host_name() - - And return NULL like for file:// URIs. - - https://bugzilla.gnome.org/show_bug.cgi?id=691416 - - lib/ephy-string.c | 6 +++++- - tests/ephy-string-test.c | 2 ++ - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 23525a8bc71de569ade7dd809d2473eacbcee77c -Author: Carlos Garcia Campos -Date: Wed Sep 5 11:11:56 2012 +0200 - - ephy-session: Use a XML memory writer and save the contents with g_file_replace_contents() - - The code is simpler and g_file_replace_contents() can be cancelled. - - src/ephy-session.c | 31 +++++++++++++++++-------------- - 1 file changed, 17 insertions(+), 14 deletions(-) - -commit 0de940e6085f904c3ae31a80c79fdc9bec1d6e03 -Author: Carlos Garcia Campos -Date: Mon Oct 8 11:54:19 2012 +0200 - - ephy-session: save session in a thread to avoid blocking the UI - - https://bugzilla.gnome.org/show_bug.cgi?id=681832 - - src/ephy-session.c | 333 +++++++++++++++++++++++++++++++++++++---------------- - src/ephy-session.h | 3 +- - 2 files changed, 236 insertions(+), 100 deletions(-) - -commit 187b79ff05ca2e8bb99932bb075304b0905accf6 -Author: Alexander Shopov -Date: Wed Jan 9 06:29:51 2013 +0200 - - Updated Bulgarian translation - - po/bg.po | 770 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 361 insertions(+), 409 deletions(-) - -commit 2b7d0c23b5370e3c002b57156520c5b52f321e65 -Author: Dušan Kazik -Date: Tue Jan 8 21:21:52 2013 +0100 - - Updated slovak translation - - po/sk.po | 780 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 366 insertions(+), 414 deletions(-) - -commit baabd8e2185a38113a945cff07a4ccd7ae42b048 -Author: Carlos Garcia Campos -Date: Tue Jan 8 11:33:59 2013 +0100 - - ephy-session: Remove ephy_session_queue_command() API - - This is unused now. - - https://bugzilla.gnome.org/show_bug.cgi?id=641739 - - src/ephy-session.c | 146 ----------------------------------------------------- - src/ephy-session.h | 7 --- - 2 files changed, 153 deletions(-) - -commit aff7854dd623643a1d76676508dbb9265a4c3bc1 -Author: Carlos Garcia Campos -Date: Tue Jan 8 11:30:38 2013 +0100 - - ephy-session: Remove EPHY_SESSION_CMD_OPEN_URIS - - Add ephy_session_open_uris() instead and use it from EphyShell instead - of scheduling a command. - - https://bugzilla.gnome.org/show_bug.cgi?id=641739 - - src/ephy-session.c | 172 ++++++++++++++++++++++++++++++---------------- - src/ephy-session.h | 8 ++- - src/ephy-shell.c | 26 ++----- - tests/ephy-session-test.c | 7 +- - 4 files changed, 124 insertions(+), 89 deletions(-) - -commit 5a570470ebdd1f3ed5aa2977a40bb85623b336e6 -Author: Carlos Garcia Campos -Date: Mon Aug 13 20:41:31 2012 +0200 - - ephy-session: Remove EPHY_SESSION_CMD_MAYBE_OPEN_WINDOW_RESTORE - - It's currently unused. - - src/ephy-session.h | 2 -- - 1 file changed, 2 deletions(-) - -commit bfec1c2ce916b0a0054ccfdf5491132478e907f5 -Author: Carlos Garcia Campos -Date: Mon Oct 8 11:44:06 2012 +0200 - - ephy-session: Remove EPHY_SESSION_CMD_MAYBE_OPEN_WINDOW - - https://bugzilla.gnome.org/show_bug.cgi?id=641739 - - src/ephy-session.c | 43 ++++++++++++++++++++++--------------------- - src/ephy-session.h | 1 - - 2 files changed, 22 insertions(+), 22 deletions(-) - -commit 59b0526207799db5e5e3039963e1cb0d08cc7642 -Author: Carlos Garcia Campos -Date: Mon Oct 8 11:39:31 2012 +0200 - - ephy-session: Add ephy_session_resume() and use it instead of queueing a resume command - - https://bugzilla.gnome.org/show_bug.cgi?id=641739 - - src/ephy-session.c | 171 +++++++++++++++++++++++++--------------------- - src/ephy-session.h | 10 ++- - src/ephy-shell.c | 34 ++++++--- - tests/ephy-session-test.c | 7 +- - 4 files changed, 130 insertions(+), 92 deletions(-) - -commit b18992cb830ce129ba6b9b1132f0921414554bb8 -Author: Carlos Garcia Campos -Date: Mon Aug 13 19:33:00 2012 +0200 - - ephy-session: Use ephy_session_load() directly instead of queueing a load session command - - https://bugzilla.gnome.org/show_bug.cgi?id=641739 - - src/ephy-session.c | 11 ++--------- - src/ephy-session.h | 1 - - src/ephy-shell.c | 6 ++---- - 3 files changed, 4 insertions(+), 14 deletions(-) - -commit 12415ad405dc6a9bcc42bd693d22c9b857e9bab3 -Author: Carlos Garcia Campos -Date: Mon Oct 8 11:19:01 2012 +0200 - - ephy-session: Load the session asynchronously - - Make ephy_session_load() asynchronous and add - ephy_session_load_from_stream() to replace - ephy_session_load_from_string(). Use a xml sax parser now that is fed - from a GInputStream. - - https://bugzilla.gnome.org/show_bug.cgi?id=681782 - - src/ephy-session.c | 689 +++++++++++++++++++++++++++++++++------------- - src/ephy-session.h | 54 ++-- - tests/ephy-session-test.c | 37 ++- - 3 files changed, 558 insertions(+), 222 deletions(-) - -commit d7e638c985039dc4521273846bbbac7295564b87 -Author: Daniel Mustieles -Date: Tue Jan 8 14:42:24 2013 +0100 - - Updated Spanish translation - - po/es.po | 178 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 87 insertions(+), 91 deletions(-) - -commit ef858aacef74424d56cab5f9065e33c5768794c8 -Author: Javier Jardón -Date: Mon Jan 7 13:00:22 2013 +0000 - - configure.ac:Update autotools - - AC_ISC_POSIX, AM_PROG_CC_STDC, AC_HEADER_STDC are obsolete macros - Replace AC_HELP_STRING for AS_HELP_STRING - - configure.ac | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -commit e85ceeb0f171ea7028c528804b0d7a41535d2ace -Author: Kjartan Maraas -Date: Mon Jan 7 11:36:20 2013 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 209 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 107 insertions(+), 102 deletions(-) - -commit 2c71587b386dbaf3d314937fec2c734a76512109 -Author: Reinout van Schouwen -Date: Sun Jan 6 22:46:40 2013 +0100 - - Updated Dutch translation by Reinout van Schouwen - - po/nl.po | 850 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 427 insertions(+), 423 deletions(-) - -commit 09152b62fc6569720b583d4b9e97877dcfecfe24 -Author: Xan Lopez -Date: Sat Jan 5 13:57:32 2013 +0100 - - ephy-window: fix compiler warning - - src/ephy-window.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit c343bec1eb2925d80e5f398a1d5ee1bfc1f75664 -Author: Yaron Shahrabani -Date: Sat Jan 5 11:05:48 2013 +0200 - - Updated Hebrew translation. - - po/he.po | 159 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 80 insertions(+), 79 deletions(-) - -commit 5032d8a8a6505c4f9966589d6b6bb812b2d9c0c0 -Author: Diego Escalante Urrelo -Date: Sun Dec 9 15:06:17 2012 -0500 - - e-embed: hide progress for about and ephy-about - - The progressbar should only react to pages, not special locations. - - https://bugzilla.gnome.org/show_bug.cgi?id=685747 - - embed/ephy-embed.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 2a5f1034f247b69ddfd8be6b9f312c5bea1d0c86 -Author: Diego Escalante Urrelo -Date: Sun Dec 9 12:48:44 2012 -0500 - - e-embed: only add one statusbar timeout at a time - - Otherwise the statusbar can disappear even if it has a valid message - being displayed. - - https://bugzilla.gnome.org/show_bug.cgi?id=685747 - - embed/ephy-embed.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 1777a519d705c6ddece3f30cd9235f27b4284c28 -Author: Diego Escalante Urrelo -Date: Sun Dec 9 11:28:20 2012 -0500 - - e-embed: use an overlay for the overview - - This permits reusing elements of EphyEmbed more easily. - - https://bugzilla.gnome.org/show_bug.cgi?id=685747 - - embed/ephy-embed.c | 26 ++++++++++---------------- - 1 file changed, 10 insertions(+), 16 deletions(-) - -commit 3ed38ea942fa2f2c4e5dddcd2b59a4f3687deb12 -Author: Diego Escalante Urrelo -Date: Tue Dec 11 11:40:23 2012 -0500 - - prefs-dialog: remove some vertical size - - Move Web Content from Privacy to General. - - https://bugzilla.gnome.org/show_bug.cgi?id=690053 - - src/resources/prefs-dialog.ui | 223 +++++++++++++++++++++++------------------- - 1 file changed, 124 insertions(+), 99 deletions(-) - -commit 7e764ea74f16e8294d5c412bbc0a8128e85e62fb -Author: Diego Escalante Urrelo -Date: Fri Dec 14 08:32:26 2012 -0500 - - e-embed-prefs: remove spaces in Accept-Language - - Some servers, like Babel, do not correctly sanitize the string in this - header. They expect strings without spaces, even though the RFC includes - them. - - Chrome and Firefox do not use spaces, presumably because many more - websites break when using them. - - https://bugzilla.gnome.org/show_bug.cgi?id=671652 - - embed/ephy-embed-prefs.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 997b046b63c66566561402cfafc6d0a25322a02b -Author: Diego Escalante Urrelo -Date: Mon Dec 10 09:21:19 2012 -0500 - - e-window: add a smarter CopyEmailAddress action - - It omits the mailto: in mail links and has a different string in the - context menu, to make this clear. - - https://bugzilla.gnome.org/show_bug.cgi?id=688166 - - src/ephy-window.c | 24 ++++++++++++++++++++++-- - src/popup-commands.c | 4 ++++ - src/resources/epiphany-ui.xml | 1 + - 3 files changed, 27 insertions(+), 2 deletions(-) - -commit 6f0ffa44c1bca2927e3e1a337fa1ce7349bd0e66 -Author: Carlos Garcia Campos -Date: Fri Jan 4 14:50:37 2013 +0100 - - ephy-shell: There can be two widgets for the same download in WebKit2 - - In WebKit2 WebKitWebContext::download-started signal is always emitted, - even for downloads started manually. We only want to create a new - download when the download operation has been started by WebKit. - - https://bugzilla.gnome.org/show_bug.cgi?id=678993 - - embed/ephy-download.c | 1 + - src/ephy-shell.c | 14 +++++++++++--- - 2 files changed, 12 insertions(+), 3 deletions(-) - -commit 5fd8c27e1de6ddccf9ef14811df865f129cbc461 -Author: Carlos Garcia Campos -Date: Mon Dec 31 15:07:30 2012 +0100 - - Implement embedded view source mode in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=684440 - - src/window-commands.c | 9 +++------ - 1 file changed, 3 insertions(+), 6 deletions(-) - -commit cf825ce1926ffb3890ebfd4f0094a97b2158f314 -Author: Carlos Garcia Campos -Date: Thu Oct 25 17:47:17 2012 +0200 - - downloads: Create the download with the window of the web view that initiated the download - - Using webkit_download_get_web_view() and falling back to the active - window if the download was not initiated by a web view. - - https://bugzilla.gnome.org/show_bug.cgi?id=686467 - - src/ephy-shell.c | 19 ++++++++++++++++--- - 1 file changed, 16 insertions(+), 3 deletions(-) - -commit 8ed26c6a506feec75e37cf285450a23ac7c8a689 -Author: Carlos Garcia Campos -Date: Fri Jan 4 10:54:26 2013 +0100 - - ephy-download: Make EphyDownload:window a construct only property - - It's always set right after the download object is created and it - doesn't have any effect when it's set after the download has been added - to the embed shell. This way we can make sure that when the download is - added to the embed shell the parent window has already been set if - there's any. - - embed/ephy-download.c | 57 ++++++++++++++++------------------------------ - embed/ephy-download.h | 12 +++++----- - embed/ephy-embed.c | 12 ++++++---- - src/ephy-shell.c | 4 +--- - src/popup-commands.c | 8 +++---- - tests/ephy-download-test.c | 2 +- - 6 files changed, 37 insertions(+), 58 deletions(-) - -commit 8245a9b3fd56b10684498e9d1be3c71de5543456 -Author: Aurimas Černius -Date: Tue Jan 1 18:42:18 2013 +0200 - - Updated Lithuanian translation - - po/lt.po | 902 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 431 insertions(+), 471 deletions(-) - -commit 998881bbc04641df248168812064360f79659ab4 -Author: Khaled Hosny -Date: Fri Dec 28 20:31:19 2012 +0200 - - Typo - - po/ar.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 18b3f7a07c043b7d60d1d61cf67afc5fa952c80a -Author: Arash Mousavi -Date: Fri Dec 28 13:16:54 2012 +0330 - - l10n: Updated Persian translation - - po/fa.po | 2784 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1374 insertions(+), 1410 deletions(-) - -commit c061f01c67e627cc1d9df9a834ab2437ccb0c87b -Author: Fran Diéguez -Date: Mon Dec 24 21:57:11 2012 +0100 - - Updated Galician translations - - po/gl.po | 123 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 61 insertions(+), 62 deletions(-) - -commit 3f87e068583cc01edf8742eb11b4ecccb13ddf16 -Author: Dimitris Spingos -Date: Sun Dec 23 19:26:44 2012 +0200 - - Updated Greek translation - - po/el.po | 979 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 500 insertions(+), 479 deletions(-) - -commit e9f2149366ffecc5b7fad0b768a0225000986155 -Author: Yaron Shahrabani -Date: Thu Dec 20 13:32:09 2012 +0200 - - Updated Hebrew translation. - - po/he.po | 392 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 200 insertions(+), 192 deletions(-) - -commit 7402b5085c5bd167e6ff6d0ab5dfab5b12a18db4 -Author: Carlos Garcia Campos -Date: Thu Dec 20 12:02:20 2012 +0100 - - Fix build with WebKit2 - - embed/ephy-embed-single.c | 1 + - embed/ephy-web-view.c | 1 + - lib/ephy-profile-migrator.c | 1 + - lib/ephy-web-app-utils.c | 3 ++- - 4 files changed, 5 insertions(+), 1 deletion(-) - -commit 010f155d3d56bdf5f6009e2ef7235347c671c351 -Author: Kjartan Maraas -Date: Wed Dec 19 15:23:13 2012 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 900 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 433 insertions(+), 467 deletions(-) - -commit f12d45e9159d51da46c234526b582d9b3f4fb614 -Author: Xan Lopez -Date: Wed Dec 19 13:45:12 2012 +0100 - - [release] 3.7.3 - - NEWS | 22 ++++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 23 insertions(+), 1 deletion(-) - -commit 4441ac86a00e4e01f96153e4af6e86310eac2394 -Author: Xan Lopez -Date: Wed Dec 19 13:36:10 2012 +0100 - - Revert "ephy-toolbar: set url entry's box style class to .linked" - - This reverts commit 6626beaf15f04824066af937d3fa277e8bd46aa6. - - We won't get the theming right in time for the release, so revert for now. - - src/ephy-toolbar.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6e16272c9bbe3f91ceb0d5656a6f913a59a0d29a -Author: Xan Lopez -Date: Wed Dec 19 13:28:07 2012 +0100 - - Use new libsoup APIs - - Drops dependency on libsoup-gnome, we now depend on libsoup 2.41.3 - - configure.ac | 4 ++-- - embed/ephy-embed-single.c | 18 +++--------------- - embed/ephy-web-view.c | 1 - - lib/ephy-profile-migrator.c | 3 +-- - lib/ephy-web-app-utils.c | 3 +-- - 5 files changed, 7 insertions(+), 22 deletions(-) - -commit b25c7f4f929ceca2724bce7dd7fd60e0146842f3 -Author: Daniel Mustieles -Date: Wed Dec 19 13:25:32 2012 +0100 - - Updated Spanish translation - - po/es.po | 802 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 408 insertions(+), 394 deletions(-) - -commit 2e710ab607b2ab2b18125574bf9fbcd44abd74b4 -Author: Cosimo Cecchi -Date: Mon Dec 17 13:09:46 2012 +0100 - - embed: move the OSD style class to the progressbar - - cosimoc: ok, sure, go ahead - - Fixes black scrollbars showing up. - - embed/ephy-embed.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit ebd44a6544f3d6aafb1477c63b3107c36fbf2e7c -Author: Xan Lopez -Date: Sun Dec 16 10:45:21 2012 +0100 - - ephy-initial-state: document 'ephy_initial_state_add_window' - - lib/ephy-initial-state.c | 17 +++++++++++++++++ - 1 file changed, 17 insertions(+) - -commit 3b0dc557ca0fe21d59fba8bf7cd653c63b32ea48 -Author: Xan Lopez -Date: Sun Dec 16 10:31:16 2012 +0100 - - ephy-state: rename to 'ephy-initial-state' - - The purpose of EphyState is to track the sizes and positions of - windows, paned or expanders in order to remember what is the preferred - *initial* and *default* state of those UI elements. So for example we - merge the tracking of the size/positions of all main windows in one - record, because we only need an initial value which we'll use as - default for newly created EphyWindows. - - Since this is a very specific task, different to the actual tracking - of all sizes and positions in EphySession in order to restore them at - startup, rename the class to EphyInitialState to avoid confusions. - - lib/Makefile.am | 10 +- - lib/ephy-dialog.c | 18 +- - lib/ephy-file-chooser.c | 1 - - lib/ephy-initial-state.c | 462 +++++++++++++++++++++++++++++++ - lib/ephy-initial-state.h | 57 ++++ - lib/ephy-state.c | 462 ------------------------------- - lib/ephy-state.h | 57 ---- - src/bookmarks/ephy-bookmark-properties.c | 14 +- - src/bookmarks/ephy-bookmarks-editor.c | 16 +- - src/ephy-history-window.c | 16 +- - src/ephy-main.c | 4 +- - src/ephy-window.c | 8 +- - src/pdm-dialog.c | 1 - - src/window-commands.c | 1 - - 14 files changed, 562 insertions(+), 565 deletions(-) - -commit 13dd37b49c84e15470a8cba37f08f34a2d9c87d3 -Author: Xan Lopez -Date: Sun Dec 16 09:12:40 2012 +0100 - - ephy-state: use new coding style - - lib/ephy-state.c | 642 ++++++++++++++++++++++++++----------------------------- - lib/ephy-state.h | 36 ++-- - 2 files changed, 326 insertions(+), 352 deletions(-) - -commit c51b5079f189c060a1d3a68f5730025aa73a89f0 -Author: Piotr Drąg -Date: Sun Dec 16 04:32:15 2012 +0100 - - Updated Polish translation - - po/pl.po | 860 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 404 insertions(+), 456 deletions(-) - -commit e65adc629711ac61ed2bd35112cf7d8b78583983 -Author: Claudio Saavedra -Date: Sat Dec 15 14:44:14 2012 +0100 - - ephy-window: align the toolbar margins with the shell ones - - https://bugzilla.gnome.org/show_bug.cgi?id=679348 - - src/ephy-window.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit c83458d2b065ba4056163dff6db1bc0779e0b8fd -Author: Claudio Saavedra -Date: Fri Dec 14 21:26:58 2012 +0100 - - ephy-toolbar: fix the toolbar in RTL environments - - https://bugzilla.gnome.org/show_bug.cgi?id=684366 - - src/ephy-toolbar.c | 11 +++++++++-- - src/ephy-window.c | 13 +++++++++++-- - 2 files changed, 20 insertions(+), 4 deletions(-) - -commit 9dc80533f94749c0e765e4508e2fb8cb9c6cb5b1 -Author: Fran Diéguez -Date: Sat Dec 15 00:28:09 2012 +0100 - - Updated Galician translations - - po/gl.po | 772 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 387 insertions(+), 385 deletions(-) - -commit 05eab03df512dc093183e36dd408a5ab173ec4b8 -Author: Alberto Garcia -Date: Fri Dec 14 19:55:45 2012 +0100 - - ephy-removable-pixbuf-renderer: don't crash if no close icon is found - - https://bugzilla.gnome.org/show_bug.cgi?id=690216 - - lib/widgets/ephy-removable-pixbuf-renderer.c | 10 +++++++++- - 1 file changed, 9 insertions(+), 1 deletion(-) - -commit d4efef1d15b6196df51f1e618cab23084835cf17 -Author: Xan Lopez -Date: Thu Dec 13 20:16:57 2012 +0100 - - ephy-window: remove some code that's been dead for ages - - src/ephy-window.c | 26 +++++--------------------- - 1 file changed, 5 insertions(+), 21 deletions(-) - -commit ad212021766f1e64d6ccdd7a51434d0e4dcda489 -Author: William Jon McCann -Date: Mon Dec 10 17:46:07 2012 +0100 - - Update the save web app dialog to be more like the mockup - - https://bugzilla.gnome.org/show_bug.cgi?id=690007 - - src/window-commands.c | 49 ++++++++++++++++++++++++++++++++++++++++++++----- - 1 file changed, 44 insertions(+), 5 deletions(-) - -commit 787d591681df40c8b10c450273d1c827b6eb818b -Author: William Jon McCann -Date: Mon Dec 10 12:31:12 2012 +0100 - - Use better icons for webapps - - https://bugzilla.gnome.org/show_bug.cgi?id=657755 - - lib/ephy-web-app-utils.c | 228 +++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-web-app-utils.h | 10 +++ - src/window-commands.c | 196 +++++++++++++++++++++++++++++++++------- - 3 files changed, 402 insertions(+), 32 deletions(-) - -commit aa5172e0beb0cd583e96feeeafac06fddb857fe6 -Author: William Jon McCann -Date: Mon Dec 10 11:29:52 2012 +0100 - - Use better application names for web apps - - https://bugzilla.gnome.org/show_bug.cgi?id=657755 - - src/window-commands.c | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 89 insertions(+), 1 deletion(-) - -commit 6626beaf15f04824066af937d3fa277e8bd46aa6 -Author: Xan Lopez -Date: Wed Dec 12 20:06:16 2012 +0100 - - ephy-toolbar: set url entry's box style class to .linked - - Lapo wants it. - - src/ephy-toolbar.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c4bceab97ac344861b3055795ab92f0e13bd0d47 -Author: Claudio Saavedra -Date: Wed Dec 12 20:04:04 2012 +0100 - - ephy-find-toolbar: fix a warning - - src/ephy-find-toolbar.c | 1 + - 1 file changed, 1 insertion(+) - -commit 688f1eb848219bc477a2ecaea7a647ff9d9b7f72 -Author: Claudio Saavedra -Date: Wed Dec 12 19:56:55 2012 +0100 - - ephy-find-toolbar: fix build in wk2 - - src/ephy-find-toolbar.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 4984c226696d94769014ae33ec635c9d42fd7287 -Author: Claudio Saavedra -Date: Wed Dec 12 19:56:41 2012 +0100 - - ephy-find-toolbar: silly consistency fix - - src/ephy-find-toolbar.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 24dd0aed3984e069c75dbf484a0d589cb98606f0 -Author: Xan Lopez -Date: Wed Dec 12 19:20:48 2012 +0100 - - ephy-window: compiler warnings - - src/ephy-window.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 1e584013e5f23a1b25dcc59a58897cfdca66b32d -Author: Xan Lopez -Date: Wed Dec 12 18:53:44 2012 +0100 - - ephy-window: we can actually zoom images now, so allow that - - src/ephy-window.c | 28 ++++++---------------------- - 1 file changed, 6 insertions(+), 22 deletions(-) - -commit 7b9cae2a19210d191270ad9386a45a0dfe77216d -Author: William Jon McCann -Date: Sun Dec 9 11:19:42 2012 +0100 - - New design for find bar - - To be more consistent with other GNOME 3 apps we should move - the in page find toolbar to the top of the page. - - https://bugzilla.gnome.org/show_bug.cgi?id=689929 - - src/ephy-find-toolbar.c | 454 ++++++++++++++++++++++-------------------------- - src/ephy-find-toolbar.h | 2 +- - src/ephy-window.c | 14 +- - 3 files changed, 212 insertions(+), 258 deletions(-) - -commit 18088a89fc9140c4b5e3643d923a553c89c68924 -Author: Xan Lopez -Date: Wed Dec 12 15:46:29 2012 +0100 - - ephy-main: remove debug leftovers that were broken now - - (15:45:30) descalante: come on - (15:45:46) descalante: what is this, KDE? - - src/ephy-main.c | 9 --------- - 1 file changed, 9 deletions(-) - -commit 3f19ba757b83611573177f96f0ca11169278f9e2 -Author: Xan Lopez -Date: Wed Dec 12 15:41:51 2012 +0100 - - ephy-main: remove some dead code - - src/ephy-main.c | 7 +------ - 1 file changed, 1 insertion(+), 6 deletions(-) - -commit 28367302f0d83424dc6855930b02592e2510c46b -Author: Xan Lopez -Date: Wed Dec 12 15:34:19 2012 +0100 - - ephy-main: remove unused option - - src/ephy-main.c | 15 ++------------- - 1 file changed, 2 insertions(+), 13 deletions(-) - -commit 60034d36b29a86a67ef5c38211125264d6d4e9b1 -Author: Xan Lopez -Date: Wed Dec 12 15:31:08 2012 +0100 - - ephy-main: delete profile on exit in incognito mode - - src/ephy-main.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a73a06802fa50f4eba0ba452304294f39cfb08f4 -Author: Claudio Saavedra -Date: Wed Dec 12 13:34:33 2012 +0100 - - ephy-shell: fix the incognito app menu item - - src/ephy-shell.c | 2 +- - src/resources/epiphany-application-menu.ui | 8 ++++---- - 2 files changed, 5 insertions(+), 5 deletions(-) - -commit e55ddccbb2897a6133a4a0292d61fa2865facb08 -Author: Xan Lopez -Date: Wed Dec 12 13:11:02 2012 +0100 - - ephy-bookmarks-test: use G_N_ELEMENTS properly - - tests/ephy-bookmarks-test.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ceab3ce08927ec45bb880371b7f31041a5192851 -Author: Xan Lopez -Date: Wed Dec 12 13:09:39 2012 +0100 - - Define the names of the history and bookmarks files in just one place - - embed/ephy-embed-shell.c | 3 ++- - lib/ephy-file-helpers.c | 2 +- - lib/ephy-profile-migrator.c | 6 +++--- - lib/ephy-profile-utils.h | 4 ++++ - src/bookmarks/ephy-bookmarks.c | 5 +++-- - tests/ephy-bookmarks-test.c | 3 ++- - 6 files changed, 15 insertions(+), 8 deletions(-) - -commit 5660617413c37eb397a50361b6ca5bdd250b5be5 -Author: Xan Lopez -Date: Wed Dec 12 10:58:06 2012 +0100 - - First iteration for 'Incognito mode' - - For now this is just a private mode but with the following two twists: - - - We use the dark theme. - - - We steal our history and bookmarks from the main profile. This is - done in 'read-only' mode though, so any changes made in this session - will be lost. - - Add command line options and a UI item to launch the browser in this - mode. - - https://bugzilla.gnome.org/show_bug.cgi?id=676914 - - lib/ephy-file-helpers.c | 49 ++++++++- - lib/ephy-file-helpers.h | 1 + - src/ephy-main.c | 33 ++++-- - src/ephy-shell.c | 9 ++ - src/ephy-window.c | 3 + - src/resources/epiphany-application-menu.ui | 5 + - src/resources/epiphany-ui.xml | 1 + - src/window-commands.c | 9 ++ - src/window-commands.h | 166 +++++++++++++++-------------- - 9 files changed, 184 insertions(+), 92 deletions(-) - -commit 8b97d6e32fbe2e56a7012d731b5e864a86720504 -Author: Xan Lopez -Date: Tue Dec 11 17:43:10 2012 +0100 - - Remove UUID hacks to prevent self-launch - - Now we can get rid of them. - - https://bugzilla.gnome.org/show_bug.cgi?id=690050 - - lib/ephy-file-helpers.c | 17 ----------------- - lib/ephy-file-helpers.h | 2 -- - lib/ephy-profile-utils.c | 2 -- - src/ephy-window.c | 10 ++-------- - src/window-commands.c | 5 +---- - 5 files changed, 3 insertions(+), 33 deletions(-) - -commit 6ede0c3ebcbc129ea1112ee9f43427231ab50e07 -Author: Xan Lopez -Date: Tue Dec 11 17:29:19 2012 +0100 - - Handle a bit more gracefully the self-launch detection - - Check whether the app that will launch a given download is actually - the browser itself, and do nothing *before* going ahead. Seems better - than actually launching and then aborting on startup through UUID - hacks. - - embed/ephy-download.c | 3 +- - embed/ephy-embed-shell.c | 44 ++++++++++++++++++ - embed/ephy-embed-shell.h | 4 ++ - lib/ephy-file-helpers.c | 52 +++++++++++++-------- - lib/ephy-file-helpers.h | 82 +++++++++++++++++---------------- - tests/Makefile.am | 12 ++++- - tests/applications/defaults.list | 5 ++ - tests/applications/epiphany.desktop | 8 ++++ - tests/data/test.html | 1 + - tests/ephy-embed-shell-test.c | 91 +++++++++++++++++++++++++++++++++++++ - 10 files changed, 240 insertions(+), 62 deletions(-) - -commit 7f6211d2901f70d571f18106bf97ff636712a712 -Author: Yaron Shahrabani -Date: Wed Dec 12 10:22:33 2012 +0200 - - Updated Hebrew translation. - - po/he.po | 763 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 379 insertions(+), 384 deletions(-) - -commit 832c4941b7d889f9280c27b8803c0ec6b165ece0 -Author: Matej Urbančič -Date: Wed Dec 12 08:34:14 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 593 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 275 insertions(+), 318 deletions(-) - -commit 8c53252b99184e5ebbbd871cef90ac77b64a28c9 -Author: Diego Escalante Urrelo -Date: Tue Dec 11 13:27:45 2012 -0500 - - e-web-view: enable back/forward mouse buttons - - Based on nautilus' (nautilus-window.c) button numbers and the bugzilla - reports by users. - - Thank you Vincas Dargis and Joe Barnett for the previous patches. - - https://bugzilla.gnome.org/show_bug.cgi?id=337852 - - embed/ephy-web-view.c | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -commit 3cdb5f74351503dbab7b5db82764a2eba80a3a19 -Author: Dan Winship -Date: Tue Dec 11 17:51:33 2012 +0100 - - ephy-embed: Remove references to SoupPasswordManager - - Epiphany gets its http-authentication-password-saving support via - WebKit now, so remove the old SoupPasswordManager stuff (which is a - no-op in libsoup master anyway). - - embed/ephy-embed-single.c | 10 ---------- - 1 file changed, 10 deletions(-) - -commit d0f63175cd63c2b118b4b9718ad35dc8aa5c36a4 -Author: Dan Winship -Date: Tue Dec 11 15:26:36 2012 +0100 - - ephy-embed: fix registration of EphyRequestAbout - - The way it was before is supposed to still work (and so needs to be - fixed in libsoup), but this way is more right anyway. - - embed/ephy-embed-single.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a35ce8bc1a1483d95e957e3c4be245884d4f879a -Author: Diego Escalante Urrelo -Date: Tue Dec 11 09:12:38 2012 -0500 - - e-shell: fix compiler warning - - src/ephy-shell.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit b7f88ee85c61fee4f8059e7fc2456c3ca83ccb64 -Author: Gustavo Noronha Silva -Date: Mon Dec 10 18:13:27 2012 +0100 - - Open new windows when called with no URIs to open - - GNOME Shell tries to open new windows by calling the application with no - parameters. This strategy is also used by the 'Launch web browser' keybinding, - that can be interpreted as the user requesting a new window, so open a new - window when called with no URIs, unless --new-tag is given explicitly. - - Partially fixes https://bugzilla.gnome.org/show_bug.cgi?id=685976 - - src/ephy-session.c | 10 +++++++++- - tests/ephy-session-test.c | 28 +++++++++++++++++++++++++--- - 2 files changed, 34 insertions(+), 4 deletions(-) - -commit c968c68cabc319896ad4d2096940c9a34d4c13cd -Author: Gustavo Noronha Silva -Date: Sun Dec 9 15:25:37 2012 +0100 - - Append new tab on the window with most tabs in the current workspace - - This change uses a different heuristic to decide on what the best window to add - a new tab is from the last window which has been interacted with, which might - even be in a different workspace, to the window with the most tabs in the - current workspace. If no window exists on the current workspace one will be - created. - - Partial fix for https://bugzilla.gnome.org/show_bug.cgi?id=685976 - - configure.ac | 1 + - src/ephy-session.c | 2 +- - src/ephy-shell.c | 38 ++++++++++++++++++++++++++++++++++++++ - src/ephy-shell.h | 2 ++ - src/ephy-window.c | 39 +++++++++++++++++++++++++++++++++++++++ - src/ephy-window.h | 2 ++ - 6 files changed, 83 insertions(+), 1 deletion(-) - -commit 3573116d0473da1ca51d1766d412a97185addb9d -Author: Diego Escalante Urrelo -Date: Mon Dec 10 14:06:10 2012 -0500 - - e-embed: document ::overview-mode - - embed/ephy-embed.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit afea41b81dc90902c37e9b6b46c5ba84071aa851 -Author: Diego Escalante Urrelo -Date: Mon Dec 10 14:57:27 2012 -0500 - - e-embed-shell: fix spacing in a comment - - embed/ephy-embed-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1fa40b0f771c6fef774812bb517671d2250b6746 -Author: Diego Escalante Urrelo -Date: Mon Dec 10 13:34:39 2012 -0500 - - e-download: remove useless include - - embed/ephy-download.h | 2 -- - 1 file changed, 2 deletions(-) - -commit 90274a4fca5c6907f0903a991871f5fd38a621ee -Author: Mario Sanchez Prada -Date: Mon Dec 10 17:38:13 2012 +0100 - - Add missing NULL-check when getting the WebView's URI - - We need to check the URI is valid before asking the WebKitFaviconDatabase - for the associated icon, since it must happen that it's NULL even if - priv->address is not (e.g. after a load error has occurred). - - embed/ephy-web-view.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit 533c34899f09a1fa0e80aa198bd72ec2a90b1689 -Author: Diego Escalante Urrelo -Date: Mon Dec 10 11:48:36 2012 -0500 - - ephy-shell: remove the ephy_shell global - - https://bugzilla.gnome.org/show_bug.cgi?id=683614 - - src/bookmarks/ephy-bookmark-action-group.c | 2 +- - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 17 +++++++++++------ - src/bookmarks/ephy-bookmarks-menu.c | 2 +- - src/bookmarks/ephy-bookmarks-ui.c | 4 ++-- - src/ephy-completion-model.c | 2 +- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-encoding-menu.c | 2 +- - src/ephy-history-window.c | 17 +++++++++++------ - src/ephy-location-controller.c | 2 +- - src/ephy-main.c | 2 ++ - src/ephy-session.c | 6 ++++-- - src/ephy-shell.h | 2 -- - src/ephy-window.c | 12 ++++++------ - src/popup-commands.c | 9 ++++++--- - src/prefs-dialog.c | 2 +- - src/window-commands.c | 16 +++++++++------- - tests/ephy-download-test.c | 2 +- - tests/ephy-embed-single-test.c | 2 +- - tests/ephy-encodings-test.c | 4 ++-- - tests/ephy-session-test.c | 26 +++++++++++++------------- - tests/ephy-shell-test.c | 17 +++++++++++++++-- - tests/ephy-web-view-test.c | 2 +- - 23 files changed, 92 insertions(+), 62 deletions(-) - -commit e65754da16f9af433cd90279b60855705855253a -Author: Diego Escalante Urrelo -Date: Mon Dec 10 11:24:45 2012 -0500 - - e-embed-shell: remove the embed_shell global - - https://bugzilla.gnome.org/show_bug.cgi?id=683614 - - embed/ephy-download.c | 10 +++++----- - embed/ephy-embed-shell.h | 2 -- - embed/ephy-embed.c | 2 +- - embed/ephy-web-view.c | 20 +++++++++++--------- - src/ephy-completion-model.c | 2 +- - src/ephy-navigation-history-action.c | 2 +- - src/ephy-session.c | 4 ++-- - src/ephy-shell.c | 6 ++++++ - src/ephy-window.c | 21 +++++++++++---------- - src/pdm-dialog.c | 4 ++-- - src/window-commands.c | 2 +- - tests/ephy-embed-single-test.c | 1 + - tests/ephy-encodings-test.c | 1 + - tests/ephy-web-view-test.c | 1 + - 14 files changed, 44 insertions(+), 34 deletions(-) - -commit 43587a75794e27225c71d485620f875b12338ac1 -Author: Gustavo Noronha Silva -Date: Mon Dec 10 17:34:18 2012 +0100 - - test-ephy-session: shutdown file helpers only after destroying the shell - - tests/ephy-session-test.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 04848e06477d3b99a78fe150957e94ab8566927b -Author: Xan Lopez -Date: Mon Dec 10 15:40:27 2012 +0100 - - ephy-session: use a better variable name for session recovery - - We always recover the session now, so 'has_session_state' makes more - sense than 'crashed_session'. - - src/ephy-session.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit e4df14ad36b61871fa55be8f5ede2998af3598d9 -Author: Gustavo Noronha Silva -Date: Mon Dec 10 16:58:07 2012 +0100 - - Do not present the window when running in test mode - - src/ephy-shell.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 6a9b89629bce29293b9461c5098b803b61b84ea7 -Author: Diego Escalante Urrelo -Date: Mon Dec 10 06:50:19 2012 -0500 - - e-location-entry: use new soup_session_prefetch_dns API - - https://bugzilla.gnome.org/show_bug.cgi?id=689970 - - lib/widgets/ephy-location-entry.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit bf1c437d6d91bafd35fd156eff0265c45bd7dbc0 -Author: Diego Escalante Urrelo -Date: Mon Dec 10 06:42:03 2012 -0500 - - widgets: do not use deprecated GtkStyleContext API - - https://bugzilla.gnome.org/show_bug.cgi?id=689968 - - lib/widgets/ephy-location-entry.c | 5 ++++- - lib/widgets/gd-main-view.c | 2 +- - lib/widgets/gd-two-lines-renderer.c | 2 +- - src/ephy-notebook.c | 5 ++++- - 4 files changed, 10 insertions(+), 4 deletions(-) - -commit e213a76fd1a58ba4cd162e3769f4db2a864ea1f7 -Author: Gustavo Noronha Silva -Date: Mon Dec 10 15:52:14 2012 +0100 - - Add test to ensure a session resume won't create windows if windows exist - - When called to open URIs, the shell will still queue a resume session command, - this test ensures that command is not loading the session and creating windows. - - tests/ephy-session-test.c | 81 +++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 81 insertions(+) - -commit a867cce00a52b298d19179008bf0420b9ae268c6 -Author: Xan Lopez -Date: Mon Dec 10 13:10:27 2012 +0100 - - ephy-session: fixup session autoresume - - This code was confusing, but what we actually wanted to do here was to - only autoresume the session if there were no windows opened, otherwise - it means we are launching a new instance after the first one. - - Make this explicit in the code instead of relying on side-effects of - early returns. - - src/ephy-session.c | 13 +++++++------ - 1 file changed, 7 insertions(+), 6 deletions(-) - -commit 769f6686195c9cf7fbdbff583462624fe70d756a -Author: Mario Sanchez Prada -Date: Mon Dec 10 12:20:53 2012 +0100 - - Move async_get_favicon_pixbuf_callback() to a WK2-only region - - src/bookmarks/ephy-bookmark-action.c | 57 +++++++++++++++++------------------- - 1 file changed, 27 insertions(+), 30 deletions(-) - -commit 3f3006086e5e0322e7e1b05fc2cdc23df8cf0002 -Author: Xan Lopez -Date: Mon Dec 10 12:07:15 2012 +0100 - - ephy-session: remove unused header - - src/ephy-session.c | 1 - - 1 file changed, 1 deletion(-) - -commit c6252fe89f3c12604f8e71c2cb748e03a5d458fc -Author: Xan Lopez -Date: Mon Dec 10 12:06:14 2012 +0100 - - Remove option to launch Web as the bookmarks editor - - That thing is on its way out. - - src/ephy-main.c | 10 ---------- - src/ephy-session.c | 16 ---------------- - src/ephy-session.h | 1 - - src/ephy-shell.c | 6 +----- - src/ephy-shell.h | 1 - - 5 files changed, 1 insertion(+), 33 deletions(-) - -commit fe170e228b9d8198a78a19acf21dd9ac3cb8416a -Author: Xan Lopez -Date: Mon Dec 10 11:58:39 2012 +0100 - - ephy-session: remove useless condition in if - - If there's already windows opened we'll never do anything in the - MAYBE_OPEN_WINDOW command, so this check is redundant. - - src/ephy-session.c | 6 +----- - 1 file changed, 1 insertion(+), 5 deletions(-) - -commit 7cd659322afabb3bffcfdc2e666f5e8ff3ffc6c6 -Author: Xan Lopez -Date: Mon Dec 10 11:52:49 2012 +0100 - - ephy-session: remove the code that handles the 'resume window' - - The 'resume window' does not exist anymore, so this is useless and - never executed. - - src/ephy-session.c | 88 ++++++++---------------------------------------------- - 1 file changed, 12 insertions(+), 76 deletions(-) - -commit f181b76b33dc8841e89b3b3adac32cf3f459e058 -Author: Xan Lopez -Date: Mon Dec 10 10:41:33 2012 +0100 - - Add the zoom controls to the gear menu - - There was no way of zooming in or out from the UI. - - https://bugzilla.gnome.org/show_bug.cgi?id=683625 - - src/ephy-window.c | 4 ++-- - src/resources/epiphany-ui.xml | 3 +++ - 2 files changed, 5 insertions(+), 2 deletions(-) - -commit 56d6c08c3f1a71296d1d9ed03add8c5fd44cdf6c -Author: William Jon McCann -Date: Sun Dec 9 11:15:59 2012 +0100 - - Remove redundant search labels - - https://bugzilla.gnome.org/show_bug.cgi?id=687744 - - src/bookmarks/ephy-bookmarks-editor.c | 12 ------------ - src/ephy-history-window.c | 12 +----------- - 2 files changed, 1 insertion(+), 23 deletions(-) - -commit 4666852818b260e239b33092678fcad78a1f031c -Author: Bastien Nocera -Date: Tue Nov 6 12:19:59 2012 +0100 - - lib: Remove unused EphySearchEntry widget - - https://bugzilla.gnome.org/show_bug.cgi?id=687744 - - .gitignore | 1 - - doc/reference/epiphany-docs.sgml | 1 - - doc/reference/epiphany-sections.txt | 8 -- - doc/reference/epiphany.types | 2 - - lib/widgets/Makefile.am | 2 - - lib/widgets/ephy-search-entry.c | 211 ------------------------------------ - lib/widgets/ephy-search-entry.h | 65 ----------- - po/POTFILES.in | 1 - - tests/Makefile.am | 4 - - tests/ephy-search-entry-test.c | 75 ------------- - 10 files changed, 370 deletions(-) - -commit 52b87722689ed8a124b6cafcf51f7309b7c7104c -Author: Bastien Nocera -Date: Tue Nov 6 12:19:00 2012 +0100 - - Use GtkSeachEntry instead of EphySearchEntry - - Does pretty the same thing, without the cut'n'paste. - - https://bugzilla.gnome.org/show_bug.cgi?id=687744 - - src/bookmarks/ephy-bookmarks-editor.c | 14 ++++++++------ - src/ephy-history-window.c | 12 +++++------- - 2 files changed, 13 insertions(+), 13 deletions(-) - -commit d7760e521f4fe12b04a667bd50cf8fc2dcd87157 -Author: William Jon McCann -Date: Sun Dec 9 16:41:01 2012 +0100 - - Don't perform empty searches when toggling case matches - - https://bugzilla.gnome.org/show_bug.cgi?id=684023 - - src/ephy-find-toolbar.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 772c4b8100400dc436c2556ade0dfe578b26d668 -Author: Diego Escalante Urrelo -Date: Sun Dec 9 10:11:14 2012 -0500 - - e-web-view: remove unused var - - ephy-web-view.c: In function '_ephy_web_view_update_icon': - ephy-web-view.c:1088:12: warning: unused variable 'object' - [-Wunused-variable] - - https://bugzilla.gnome.org/show_bug.cgi?id=689932 - - embed/ephy-web-view.c | 1 - - 1 file changed, 1 deletion(-) - -commit ee88c32cb70898dfb99df1dfe455cdf240a8df98 -Author: Diego Escalante Urrelo -Date: Thu Dec 6 11:04:13 2012 -0500 - - resources: tidy up application menu order - - Copy the sort order of other GNOME3 applications. - - https://bugzilla.gnome.org/show_bug.cgi?id=678962 - - src/resources/epiphany-application-menu.ui | 12 +++++------- - 1 file changed, 5 insertions(+), 7 deletions(-) - -commit ac8c9be65f62915b8d4e140b90094fa39aae20cc -Author: Carlos Garcia Campos -Date: Thu Dec 6 10:34:22 2012 +0100 - - bookmarks: Use the current favicons API - - And bump WebKitGTK+ requirements to make sure we don't use any previous - version of the favicons API that was broken. - - https://bugzilla.gnome.org/show_bug.cgi?id=689762 - - configure.ac | 2 +- - src/bookmarks/ephy-bookmark-action.c | 23 ++++++++++++++++++++++- - src/bookmarks/ephy-bookmarks.c | 13 ++++++++++++- - 3 files changed, 35 insertions(+), 3 deletions(-) - -commit 32a1b250643709abf1c5c598a9d1cf231ffce709 -Author: Daniel Mustieles -Date: Wed Dec 5 20:06:24 2012 +0100 - - Updated Spanish translation - - po/es.po | 154 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 73 insertions(+), 81 deletions(-) - -commit 935553e70b8dcdb7891d10aebaa59c1fb40d7049 -Author: Matej Urbančič -Date: Wed Dec 5 10:24:46 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 590 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 349 insertions(+), 241 deletions(-) - -commit 811fbd419357d3cb54ada96feed4777933e4ad39 -Author: Mario Sanchez Prada -Date: Tue Dec 4 13:32:22 2012 +0100 - - Port PdmDialog to WebKit2GTK+ favicons API. - - https://bugzilla.gnome.org/show_bug.cgi?id=679370 - - src/pdm-dialog.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit 3e7bda7198ccdd9677cc412b7f3c3aec7a747959 -Author: Mario Sanchez Prada -Date: Tue Dec 4 13:32:17 2012 +0100 - - Port EphyNavigationHistoryAction to WebKit2GTK+ favicons API. - - https://bugzilla.gnome.org/show_bug.cgi?id=679370 - - src/ephy-navigation-history-action.c | 33 +++++++++++++++++++++------------ - 1 file changed, 21 insertions(+), 12 deletions(-) - -commit 5162cc396cb35293bf10dad3ba9e193f4bc43ec7 -Author: Mario Sanchez Prada -Date: Tue Dec 4 13:32:12 2012 +0100 - - Port EphyCompletionModel to WebKit2GTK+ favicons API. - - https://bugzilla.gnome.org/show_bug.cgi?id=679370 - - src/ephy-completion-model.c | 44 ++++++++++++++++++++++++++++---------------- - 1 file changed, 28 insertions(+), 16 deletions(-) - -commit 24ec29a91bf161c84270ec2b3ad66dfaa3731738 -Author: Mario Sanchez Prada -Date: Tue Dec 4 13:32:07 2012 +0100 - - Port EphyBookmarks and EphyBookmarkAction to WebKit2GTK+ favicons API. - - https://bugzilla.gnome.org/show_bug.cgi?id=679370 - - src/bookmarks/ephy-bookmark-action.c | 135 +++++++++++++++++++++++------------ - src/bookmarks/ephy-bookmarks.c | 20 ++---- - 2 files changed, 98 insertions(+), 57 deletions(-) - -commit 7fbf27f3685dab40270b9ed697c6c15b6b120fe4 -Author: Mario Sanchez Prada -Date: Tue Dec 4 13:32:02 2012 +0100 - - Port EphyHostsStore to WebKit2GTK+ favicons API. - - lib/widgets/ephy-hosts-store.c | 175 +++++++++++++++++++++++++---------------- - 1 file changed, 108 insertions(+), 67 deletions(-) - -commit f32e3b06d7ee05d6673950793dab5315b9878161 -Author: Mario Sanchez Prada -Date: Tue Dec 4 13:31:57 2012 +0100 - - Port EphyWebView to WebKit2GTK+ favicons API. - - https://bugzilla.gnome.org/show_bug.cgi?id=679370 - - embed/ephy-web-view.c | 128 ++++++++++++++++++++++++++------------------------ - 1 file changed, 66 insertions(+), 62 deletions(-) - -commit ab48808effad3a4d5e58be8877108071d8685a8a -Author: Mario Sanchez Prada -Date: Tue Dec 4 13:31:52 2012 +0100 - - Add new helper functions WebKit2GTK+'s favicons API. - - At the moment, just add one function to obtain a GdkPixbuf* with - specific dimensions from a cairo_surface_t*. - - https://bugzilla.gnome.org/show_bug.cgi?id=679370 - - lib/Makefile.am | 2 ++ - lib/ephy-favicon-helpers.c | 49 ++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-favicon-helpers.h | 36 ++++++++++++++++++++++++++++++++++ - 3 files changed, 87 insertions(+) - -commit 922083024453e10d90cc9819bd0bc6896636e780 -Author: Mario Sanchez Prada -Date: Tue Dec 4 13:31:47 2012 +0100 - - Initialize the favicon database from WebKit2GTK+ as soon as possible. - - https://bugzilla.gnome.org/show_bug.cgi?id=679370 - - embed/ephy-embed-single.c | 2 +- - src/ephy-shell.c | 19 ++++++++++++++++++- - 2 files changed, 19 insertions(+), 2 deletions(-) - -commit 2de3c05a1976ca1c34a356a9416c674212313108 -Author: Xan Lopez -Date: Sat Dec 1 11:44:15 2012 +0100 - - Fix a couple of compiler warnings spotted by the latest gnome-common flags - - src/ephy-session.c | 2 +- - src/ephy-shell.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 2630b32fbb9b707f765f3496e13e7967437fe2e2 -Author: Yaron Shahrabani -Date: Fri Nov 30 10:58:30 2012 +0200 - - Updated Hebrew translation. - - po/he.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 2b969ed9645786761b5be337994d411f3d22d19c -Author: Yaron Shahrabani -Date: Fri Nov 30 10:57:59 2012 +0200 - - Updated Hebrew translation. - - po/he.po | 64 +++++++++++++++++++++++++++------------------------------------- - 1 file changed, 27 insertions(+), 37 deletions(-) - -commit 1e20854099aa4d8c20c403520ae81eb4f6cbcd1f -Author: Matthias Clasen -Date: Fri Oct 26 21:16:55 2012 -0400 - - Add keywords to the desktop files - - This makes the gnome-shell search more pleasant and useful. - - data/epiphany.desktop.in.in | 1 + - 1 file changed, 1 insertion(+) - -commit a27463f714633a852ee2e8d9e2c6401c0be10916 -Author: Xan Lopez -Date: Sun Nov 25 20:07:10 2012 +0100 - - Remove EggDesktopFile, it's unused - - lib/egg/Makefile.am | 2 - - lib/egg/eggdesktopfile.c | 1479 ---------------------------------------------- - lib/egg/eggdesktopfile.h | 159 ----- - po/POTFILES.in | 1 - - 4 files changed, 1641 deletions(-) - -commit a60eb7cad58e17985e8a7908d5e90bab5fff6186 -Author: Xan Lopez -Date: Sun Nov 25 20:04:24 2012 +0100 - - Use gtk_application_get_active_window instead of rolling our own - - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-session.c | 2 +- - src/ephy-session.h | 2 -- - src/ephy-shell.c | 21 ++------------------- - src/ephy-shell.h | 2 -- - 6 files changed, 5 insertions(+), 26 deletions(-) - -commit 445102fa0e84e3521d59d314a6bac204ba1af641 -Author: Fran Diéguez -Date: Thu Nov 22 17:57:20 2012 +0100 - - Updated Galician translations - - po/gl.po | 564 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 289 insertions(+), 275 deletions(-) - -commit 3270f2cbae50ee1ae33e5e7b8b894e597a96624a -Author: Wouter Bolsterlee -Date: Thu Nov 22 12:39:13 2012 +0100 - - Updated Dutch translation - - po/nl.po | 1215 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 656 insertions(+), 559 deletions(-) - -commit 4b76def82fa53323d1e30bcd3d44c6a8fd1ce7d3 -Author: Daniel Mustieles -Date: Tue Nov 20 15:49:51 2012 +0100 - - Updated Spanish translation - - po/es.po | 151 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 75 insertions(+), 76 deletions(-) - -commit b3c4a7b27e1ba0c31e051b1d4e4b9507d95d83d0 -Author: Yaron Shahrabani -Date: Wed Nov 14 07:44:17 2012 +0200 - - Updated Hebrew translation. - - po/he.po | 564 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 290 insertions(+), 274 deletions(-) - -commit 9cec4586a74d26f4c9a01fb8294e4c830abce465 -Author: Dušan Kazik -Date: Mon Nov 5 21:39:13 2012 +0100 - - Updated slovak translation - - po/sk.po | 120 +++++++++++++++++++++++++++------------------------------------ - 1 file changed, 52 insertions(+), 68 deletions(-) - -commit 1fd2fe9efbdc3bb26786b8efecf5f8b60e430ac6 -Author: Xan Lopez -Date: Mon Nov 5 11:28:27 2012 +0100 - - Fix a ton of 'warning: function declaration isn’t a prototype' - - New warning flags have been added to gnome-common recently, and we - were getting this a lot. Turns out in C 'foo ()' is not the same than - 'foo (void)'; the first just means that no information is given about - the number of arguments, the second means the function has exactly - zero arguments, so add the 'void' thing all over the place when - needed. - - embed/ephy-about-handler.c | 2 +- - embed/uri-tester.c | 2 +- - lib/ephy-profile-migrator.c | 20 ++++++++++---------- - lib/ephy-sqlite-connection.c | 2 +- - lib/ephy-web-app-utils.c | 4 ++-- - src/pdm-dialog.c | 6 +++--- - tests/ephy-bookmarks-test.c | 8 ++++---- - tests/ephy-completion-model-test.c | 4 ++-- - tests/ephy-embed-single-test.c | 6 +++--- - tests/ephy-encodings-test.c | 4 ++-- - tests/ephy-file-helpers-test.c | 14 +++++++------- - tests/ephy-history-test.c | 4 ++-- - tests/ephy-session-test.c | 6 +++--- - tests/ephy-shell-test.c | 12 ++++++------ - tests/ephy-string-test.c | 2 +- - tests/ephy-web-app-utils-test.c | 2 +- - tests/ephy-web-view-test.c | 10 +++++----- - 17 files changed, 54 insertions(+), 54 deletions(-) - -commit 303bf9e2b4b68b84c1a79c3c04b810682f34c7f3 -Author: Dušan Kazik -Date: Thu Nov 1 23:35:46 2012 +0100 - - Updated slovak translation - - po/sk.po | 5403 ++++++++++++++++++++++++++------------------------------------ - 1 file changed, 2257 insertions(+), 3146 deletions(-) - -commit 1f239011d181541cbe5a07e619d9a02c218cc920 -Author: Matej Urbančič -Date: Mon Oct 29 22:31:44 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 98 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 49 insertions(+), 49 deletions(-) - -commit e06c4aecfe6c697d7bf5fab44dd2c090320b4252 -Author: Diego Escalante Urrelo -Date: Sun Oct 28 20:56:14 2012 +0100 - - Fixed bug #686711 - - src/resources/prefs-dialog.ui | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1053ac4f509f396e104bbb474210493fc752c218 -Author: Andika Triwidada -Date: Sat Oct 27 15:20:23 2012 +0700 - - Updated Indonesian translation - - po/id.po | 554 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 280 insertions(+), 274 deletions(-) - -commit 1541cf5d49dfe093d2c1b318c8907c7f5f99ab9f -Author: Xan Lopez -Date: Wed Oct 24 11:24:26 2012 +0200 - - [release] 3.7.1 - - NEWS | 25 +++++++++++++++++++++++++ - configure.ac | 8 ++++---- - 2 files changed, 29 insertions(+), 4 deletions(-) - -commit 5f8520e28a0e3c9cef9a95b4d933d65c66daf76a -Author: Xan Lopez -Date: Fri Oct 19 14:22:33 2012 +0200 - - g_type_init is no longer mandatory in GObject - - configure.ac | 2 +- - doc/reference/Makefile.am | 5 +---- - lib/ephy-profile-migrator.c | 2 -- - 3 files changed, 2 insertions(+), 7 deletions(-) - -commit d99134cf4b53261275132370c5ad1b0cc5606291 -Author: Daniel Mustieles -Date: Wed Oct 17 18:26:51 2012 +0200 - - Updated Spanish translation - - po/es.po | 539 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 277 insertions(+), 262 deletions(-) - -commit 0d93733e6da0f05b6cd42a928c3e07a7161a7ff2 -Author: Carlos Garcia Campos -Date: Tue Oct 16 17:42:16 2012 +0200 - - ephy-window: Uuref the existing hit test result instead of the new one - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ab70a535e07932ff8d2cd168a22bfbf58458a245 -Author: Carlos Garcia Campos -Date: Tue Oct 16 13:07:46 2012 +0200 - - ephy-web-view: do not automatically download embedded objects in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=683635 - - embed/ephy-web-view.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit 49d4cecc2e29313f527939cc09d6c7d3a72e2df7 -Author: Xan Lopez -Date: Mon Oct 15 23:48:30 2012 +0200 - - ephy-web-view: add FIXME for WebKit2 - - embed/ephy-web-view.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 4bd35f5349e30b79689238afdfb4bb9585ff884e -Author: Xan Lopez -Date: Mon Oct 15 20:24:24 2012 +0200 - - ephy-web-view: do not automatically download embedded objects - - Only download mime types we cannot handle when they belong to the main - resource. Prevents us from downloading garbage present in - files, among other things. - - https://bugzilla.gnome.org/show_bug.cgi?id=683635 - - embed/ephy-web-view.c | 20 ++++++++++++++++++++ - 1 file changed, 20 insertions(+) - -commit 79d61564bd8e122dfd5ee80ce37672f6d437efff -Author: Xan Lopez -Date: Mon Oct 15 20:23:49 2012 +0200 - - ephy-web-view: remove handling of Content-Disposition 'attachment' - - WebKit already does exactly the same thing automatically, no need to - handle it here. - - embed/ephy-web-view.c | 25 ------------------------- - 1 file changed, 25 deletions(-) - -commit b4c01beb8149e74226affdc0c01999e61ab04664 -Author: Alexander Shopov -Date: Sun Oct 14 20:27:29 2012 +0300 - - Updated Bulgarian translation - - po/bg.po | 736 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 382 insertions(+), 354 deletions(-) - -commit 357d3270fa5dc65e99cda695752939996e998534 -Author: Carlos Garcia Campos -Date: Wed Jul 4 15:43:05 2012 +0200 - - ephy-window: Port button press actions to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=679395 - - src/ephy-window.c | 47 ++++++++++++++++++++++++++++++++++++++--------- - 1 file changed, 38 insertions(+), 9 deletions(-) - -commit 45cadd35c88699e4483f7934aaad7b2ddc0aa3c8 -Author: Carlos Garcia Campos -Date: Wed Jul 4 14:42:34 2012 +0200 - - ephy-window: Simplify ephy_window_dom_mouse_click_cb - - Factor out every button press handler into its own function. - - https://bugzilla.gnome.org/show_bug.cgi?id=679394 - - src/ephy-window.c | 199 +++++++++++++++++++++++++++--------------------------- - 1 file changed, 101 insertions(+), 98 deletions(-) - -commit b9a8bb2e69f67085a524733c8a73cf127bfd9dc6 -Author: Carlos Garcia Campos -Date: Wed Jul 4 12:31:22 2012 +0200 - - Port context menu to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=679366 - - src/ephy-window.c | 219 +++++++++++++++++++++++++++++++++++++++++++++++++-- - src/popup-commands.c | 26 +++++- - 2 files changed, 235 insertions(+), 10 deletions(-) - -commit 7946860578c2e1c80b87f3f9493e54c7763dfc06 -Author: Mario Sanchez Prada -Date: Tue Oct 9 18:01:18 2012 +0200 - - Avoid a crash in EphyBookmarksEditor when using WebKit2. - - Still need to figure out a way to port this to the new WebKit2GTK+ favicons API. - - https://bugzilla.gnome.org/show_bug.cgi?id=679370 - - src/bookmarks/ephy-bookmarks-editor.c | 9 ++++----- - 1 file changed, 4 insertions(+), 5 deletions(-) - -commit 0a18bf3d03cd78172dbcd87cb8755aeb395edce7 -Author: Carlos Garcia Campos -Date: Mon Oct 8 18:13:03 2012 +0200 - - ephy-embed-prefs: Honor smooth scrolling setting - - https://bugzilla.gnome.org/show_bug.cgi?id=679048 - - embed/ephy-embed-prefs.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 37103656fb3382e6bd47fa18b10224edbd73182f -Author: Matej Urbančič -Date: Tue Oct 9 08:19:43 2012 +0200 - - Updated Slovenian translation - - po/sl.po | 487 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 248 insertions(+), 239 deletions(-) - -commit 91672fe780f5a103dc6ff5103f2f8a15d5cd78e9 -Author: Xan Lopez -Date: Mon Oct 8 12:02:36 2012 -0400 - - ephy-main: remove ancient commented code - - src/ephy-main.c | 1 - - 1 file changed, 1 deletion(-) - -commit 3ee22bbfc7953fe5912f516a647244a56505a252 -Author: Xan Lopez -Date: Mon Oct 8 11:58:48 2012 -0400 - - ephy-zoom: use new coding style - - lib/ephy-zoom.c | 31 +++++++++++++++---------------- - lib/ephy-zoom.h | 42 +++++++++++++++++++++--------------------- - 2 files changed, 36 insertions(+), 37 deletions(-) - -commit e628032b0988ddb8cd3c922943c53e6ee65ec824 -Author: Xan Lopez -Date: Mon Oct 8 10:57:11 2012 -0400 - - ephy-loader: remove, this is unused now - - lib/Makefile.am | 2 -- - lib/ephy-loader.c | 68 ------------------------------------------------------ - lib/ephy-loader.h | 69 ------------------------------------------------------- - src/epiphany.h.in | 1 - - 4 files changed, 140 deletions(-) - -commit 3834a5ed9e2dacfed1c716460ddcde2677e7c5bf -Author: Xan Lopez -Date: Mon Oct 8 10:51:15 2012 -0400 - - Run all tests in test mode - - That's what it's for! - - tests/ephy-completion-model-test.c | 2 +- - tests/ephy-download-test.c | 2 +- - tests/ephy-embed-single-test.c | 2 +- - tests/ephy-shell-test.c | 2 +- - tests/ephy-web-view-test.c | 2 +- - 5 files changed, 5 insertions(+), 5 deletions(-) - -commit 46eafefa8d3e02e634edb287dfe9763398954626 -Author: Xan Lopez -Date: Mon Oct 8 10:50:54 2012 -0400 - - ephy-shell: do not configure adblock in test mode - - Workaround while we figure out how to make it behave nicely. - - src/ephy-shell.c | 32 +++++++++++++++++--------------- - 1 file changed, 17 insertions(+), 15 deletions(-) - -commit d60c1783ef90e944060be6c3876b95b0545d3538 -Author: Xan Lopez -Date: Mon Oct 8 10:17:03 2012 -0400 - - doc: remove some obsolete files in the ignore list - - doc/reference/Makefile.am | 5 ----- - 1 file changed, 5 deletions(-) - -commit 3beb3efa30181600fb756ca108f0b799b851871f -Author: Xan Lopez -Date: Mon Oct 8 09:57:57 2012 -0400 - - Remove extensions support - - 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 - - configure.ac | 20 - - data/Makefile.am | 4 - - data/epiphany.convert | 1 - - data/epiphany.m4 | 75 --- - data/epiphany.pc.in | 1 - - data/org.gnome.epiphany.gschema.xml | 5 - - doc/reference/Makefile.am | 1 - - lib/Makefile.am | 5 - - lib/ephy-module.c | 222 ------- - lib/ephy-module.h | 52 -- - lib/ephy-prefs.h | 1 - - lib/ephy-shlib-loader.c | 245 -------- - lib/ephy-shlib-loader.h | 60 -- - m4/introspection.m4 | 94 --- - src/Makefile.am | 114 ---- - src/ephy-extension.c | 91 --- - src/ephy-extension.h | 79 --- - src/ephy-extensions-manager.c | 1159 ----------------------------------- - src/ephy-extensions-manager.h | 92 --- - src/ephy-main.c | 8 - - src/ephy-session.c | 1 - - src/ephy-shell.c | 64 +- - src/ephy-shell.h | 2 - - src/ephy-window.c | 21 - - src/epiphany.h.in | 2 - - src/resources/epiphany-ui.xml | 1 - - 26 files changed, 15 insertions(+), 2405 deletions(-) - -commit be3e52e1c22a05b655c3b322045d1f5c6fd76c7f -Author: Carlos Garcia Campos -Date: Mon Aug 13 10:00:52 2012 +0200 - - Move windows handling code from EphySession to EphyShell - - EphyShell is now a GtkApplication that already does window handling, - however we want to maintain only the of browser windows. Instead of - keeping the window lists in ephy-session, it's easier to override - window_added and window_removed virtual methods of GtkApplication and - update the browser window lists. Most of the cases where this API was - used, had to get the session object from the shell first, now we save - this step keeping the code simpler. - - https://bugzilla.gnome.org/show_bug.cgi?id=641734 - - src/bookmarks/ephy-bookmarks-editor.c | 6 +- - src/ephy-history-window.c | 5 +- - src/ephy-session.c | 255 +++++++--------------------------- - src/ephy-session.h | 4 - - src/ephy-shell.c | 131 +++++++++++++++-- - src/ephy-shell.h | 8 ++ - src/ephy-window.c | 13 +- - src/window-commands.c | 2 +- - tests/ephy-session-test.c | 6 +- - 9 files changed, 180 insertions(+), 250 deletions(-) - -commit 7512839e6add584e184805d3781f9976831a2188 -Author: Carlos Garcia Campos -Date: Mon Sep 24 12:32:22 2012 +0200 - - ephy-embed-prefs: Port user agent to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=684443 - - embed/ephy-embed-prefs.c | 65 +++++++++++++++++++++++++++++++++++++++++------- - 1 file changed, 56 insertions(+), 9 deletions(-) - -commit 96e1a8a78c9a943a912e315b2900b49563b06947 -Author: Xan Lopez -Date: Sun Oct 7 14:59:19 2012 -0400 - - ephy-shell: use g_clear_{object, pointer} in dispose - - src/ephy-shell.c | 68 ++++++++++---------------------------------------------- - 1 file changed, 12 insertions(+), 56 deletions(-) - -commit 21caa3e6826f50e36ec3088c147e843dd34eedbb -Author: Xan Lopez -Date: Sun Oct 7 14:29:22 2012 -0400 - - Add 'History' item to the gear menu when not in the Shell - - src/ephy-window.c | 4 ++-- - src/resources/epiphany-ui.xml | 1 + - 2 files changed, 3 insertions(+), 2 deletions(-) - -commit 07e358c8487b6424cf5b10613584421b141b8fae -Author: Xan Lopez -Date: Sun Oct 7 10:44:51 2012 -0400 - - ephy-window: add F10 accel for super menu - - Same as Files. - - https://bugzilla.gnome.org/show_bug.cgi?id=673878 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 899960fd491389cb3b4bdcbd52837c55061453e2 -Author: Xan Lopez -Date: Sun Oct 7 10:37:57 2012 -0400 - - Merge the app menu into the gear menu when we are not in the Shell - - Gets rid of the ugly menubar with a single menu. - - https://bugzilla.gnome.org/show_bug.cgi?id=673054 - - src/ephy-shell.c | 32 +++++----------------- - src/ephy-window.c | 63 +++++++++++++++++++++++++++++++++++++++++++ - src/resources/epiphany-ui.xml | 7 ++++- - src/window-commands.c | 63 +++++++++++++++++++++++++++++++++++++++++++ - src/window-commands.h | 12 +++++++++ - 5 files changed, 150 insertions(+), 27 deletions(-) - -commit 771f05be192dac3d9f393219191192345165589e -Author: Xan Lopez -Date: Sun Oct 7 08:16:37 2012 -0400 - - ephy-lockdown: fix typos - - src/ephy-lockdown.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit cff4a9f4db331f8ba8bf2967fc1435a94ee6c84e -Author: Xan Lopez -Date: Sun Oct 7 08:06:16 2012 -0400 - - ephy-lockdown: use new coding style - - src/ephy-lockdown.c | 305 ++++++++++++++++++++++++++-------------------------- - src/ephy-lockdown.h | 29 ++--- - 2 files changed, 165 insertions(+), 169 deletions(-) - -commit 6151ca0e28342d80007e89eded95bbc81d82c871 -Author: Xan Lopez -Date: Sun Oct 7 07:59:16 2012 -0400 - - ephy-lockdown: use glib strcmp methods - - src/ephy-lockdown.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit b6707ebdfd970548177789562234cbf3cfa4dfc7 -Author: Xan Lopez -Date: Sun Oct 7 07:53:59 2012 -0400 - - ephy-lockdown: de-extensionify - - Simply connect to 'window-added' in EphyShell instead of making this - an extension. - - https://bugzilla.gnome.org/show_bug.cgi?id=685631 - - src/ephy-lockdown.c | 37 ++++++++++++++++++------------------- - src/ephy-shell.c | 10 +--------- - 2 files changed, 19 insertions(+), 28 deletions(-) - -commit ce3a1488aea557ab95584ea46f715ce72e577da2 -Author: Matej Urbančič -Date: Sat Oct 6 12:57:59 2012 +0200 - - Updated Slovenian translation - - po/sl.po | 118 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 64 insertions(+), 54 deletions(-) - -commit e466d4c1defa019fa741de5dbe1df8a029587351 -Author: Alexandre Franke -Date: Thu Oct 4 11:31:26 2012 +0200 - - Update French translation - - po/fr.po | 122 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 68 insertions(+), 54 deletions(-) - -commit 91238d8269a87a449989b6d3326c2606123ef301 -Author: Xan Lopez -Date: Wed Oct 3 17:51:49 2012 +0200 - - prefs-dialog: remove JavaScript preference from the UI - - https://bugzilla.gnome.org/show_bug.cgi?id=685393 - - src/prefs-dialog.c | 3 --- - src/resources/prefs-dialog.ui | 17 ----------------- - 2 files changed, 20 deletions(-) - -commit c502c1efc7ab014eaef8e69449cbda4002b91aab -Author: Xan Lopez -Date: Wed Oct 3 14:59:14 2012 +0200 - - ephy-overview: very minor style fixes - - embed/ephy-overview.c | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -commit aab3e81550ac57ffa13ae3f37cbb475f953fe4a4 -Author: Xan Lopez -Date: Wed Oct 3 12:50:08 2012 +0200 - - ephy-overview: also set shadow style as IN here - - embed/ephy-overview.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit edaf2784e030d48c77a336575ce97de67af58121 -Author: Xan Lopez -Date: Wed Oct 3 12:06:38 2012 +0200 - - ephy-embed: set shadow type IN for scrolled window - - As requested by the GNOME designers. - - embed/ephy-embed.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit c188d4754da2764f9c98a0c5508fd801e263712b -Author: Xan Lopez -Date: Wed Oct 3 11:27:05 2012 +0200 - - ephy-embed: small cleanup - - We access the priv struct a bunch of times here, create a variable for it. - - embed/ephy-embed.c | 18 ++++++++++-------- - 1 file changed, 10 insertions(+), 8 deletions(-) - -commit c1b4e7e87652b57797c4e7e56f9c94983c5d38e7 -Author: Xan Lopez -Date: Wed Oct 3 10:05:51 2012 +0200 - - uri-tester: make it compile wth WebKit2 - - Still won't work, though, needs to be ported. - - embed/uri-tester.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 9c54a252230ceaf38a3accd5504b3e4bd5959c48 -Author: Xan Lopez -Date: Tue Oct 2 22:00:09 2012 +0200 - - adblock: get rid of AdBlock interface - - No need for this now, just make EphyAdBlock a concrete class - implementing the adblock functionality. - - https://bugzilla.gnome.org/show_bug.cgi?id=681657 - - embed/Makefile.am | 2 - - embed/ephy-adblock-extension.c | 119 ----------------------------------------- - embed/ephy-adblock-extension.h | 55 ------------------- - embed/ephy-adblock.c | 106 +++++++++++++++++++++++------------- - embed/ephy-adblock.h | 109 +++++++++++++++++++------------------ - embed/ephy-embed-shell.c | 14 +++-- - src/ephy-shell.c | 8 --- - 7 files changed, 135 insertions(+), 278 deletions(-) - -commit 7b72dcabf03b0d989da6cb42f4b5adccba54aa33 -Author: Xan Lopez -Date: Tue Oct 2 21:38:13 2012 +0200 - - adblock: we don't use the edit rules stuff anymore, remove it - - https://bugzilla.gnome.org/show_bug.cgi?id=681657 - - embed/ephy-adblock-extension.c | 8 -------- - embed/ephy-adblock-manager.c | 23 ----------------------- - embed/ephy-adblock-manager.h | 3 --- - embed/ephy-adblock.c | 12 ------------ - embed/ephy-adblock.h | 8 -------- - 5 files changed, 54 deletions(-) - -commit 530ef74c3ca2b8fcb3b54947cc111397b943b417 -Author: Xan Lopez -Date: Tue Oct 2 21:31:10 2012 +0200 - - Move adblock extension to embed/ - - No reason for it to be in src/ now. - - https://bugzilla.gnome.org/show_bug.cgi?id=681657 - - embed/Makefile.am | 6 +- - embed/ephy-adblock-extension.c | 127 ++++++ - embed/ephy-adblock-extension.h | 55 +++ - embed/uri-tester.c | 895 +++++++++++++++++++++++++++++++++++++++++ - embed/uri-tester.h | 72 ++++ - src/Makefile.am | 4 - - src/ephy-adblock-extension.c | 127 ------ - src/ephy-adblock-extension.h | 55 --- - src/uri-tester.c | 895 ----------------------------------------- - src/uri-tester.h | 72 ---- - 10 files changed, 1154 insertions(+), 1154 deletions(-) - -commit 59934f569070b08e57444d0f650cb6e9bd6a036e -Author: Xan Lopez -Date: Tue Oct 2 21:24:32 2012 +0200 - - Remove UI code from adblock, un-extensionify it - - We are not using this code for now, easy enough to re-add somehow if - we want to provide a UI to edit the adblock rules. With that gone, - it's now trivial to drop the extension code too, so now the adblocker - is just a GObject implementing the Adblock interface. - - https://bugzilla.gnome.org/show_bug.cgi?id=681657 - - src/Makefile.am | 3 - - src/adblock-ui.c | 390 ------------------------------------------- - src/adblock-ui.h | 62 ------- - src/ephy-adblock-extension.c | 172 +------------------ - src/epiphany.gresource.xml | 1 - - src/resources/adblock.ui | 198 ---------------------- - 6 files changed, 1 insertion(+), 825 deletions(-) - -commit bbf60892b4392af2dac4ec533932a8f40c26fe8d -Author: Xan Lopez -Date: Tue Oct 2 21:09:43 2012 +0200 - - ephy-adblock-manager: use new coding style - - https://bugzilla.gnome.org/show_bug.cgi?id=681657 - - embed/ephy-adblock-manager.c | 98 +++++++++++++++++++++++--------------------- - embed/ephy-adblock-manager.h | 39 ++++++++---------- - 2 files changed, 70 insertions(+), 67 deletions(-) - -commit 1ceb8519aca45aa866e9c40d47a58f93f8b59ca3 -Author: Xan Lopez -Date: Mon Oct 1 21:02:29 2012 +0200 - - prefs-dialog: add a checkbox to enable/disable the adblock functionality - - https://bugzilla.gnome.org/show_bug.cgi?id=681657 - - src/prefs-dialog.c | 3 ++ - src/resources/prefs-dialog.ui | 100 ++++++++++++++++++++++-------------------- - 2 files changed, 56 insertions(+), 47 deletions(-) - -commit f21e2f3c54879885d6472d181bbf9be7caeb1c0a -Author: Xan Lopez -Date: Mon Oct 1 20:50:16 2012 +0200 - - uri-tester: do not store the adblock data in the 'extensions' dir - - We are on our way to stop being an extension. - - https://bugzilla.gnome.org/show_bug.cgi?id=681657 - - src/uri-tester.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a5121fa4a435b4cee404ed8280b14debc174996e -Author: Xan Lopez -Date: Mon Oct 1 20:48:59 2012 +0200 - - Add adblock GSetting, use it - - org.gnome.epiphany.web.enable-adblock, controls whether adblock is - enabled (globally). - - https://bugzilla.gnome.org/show_bug.cgi?id=681657 - - data/org.gnome.epiphany.gschema.xml | 5 +++++ - embed/ephy-embed.c | 34 +++++++++++++++++++++++++++++++++- - lib/ephy-prefs.h | 1 + - 3 files changed, 39 insertions(+), 1 deletion(-) - -commit 253ce5aa8e437687f329d3d51469fdabda3ee8d7 -Author: Xan Lopez -Date: Sat Sep 29 10:10:37 2012 +0200 - - Import adblock extension into the source tree - - This commit imports the adblock extension from 'epiphany-extensions' - with as few modifications as possible. Further modifications and - simplifications are possible, but for now we just load it - unconditionally, enabled. - - We have it in the src/ directory because it depends on some high-level - objects in Epiphany (EphyExtension, EphyWindow), but in the future - we'll probably move it to embed/, transforming it from an extension - into just the specific implementation of our EphyAdblockManager - object. - - https://bugzilla.gnome.org/show_bug.cgi?id=681657 - - src/Makefile.am | 7 + - src/adblock-ui.c | 390 +++++++++++++++++++ - src/adblock-ui.h | 62 +++ - src/ephy-adblock-extension.c | 297 ++++++++++++++ - src/ephy-adblock-extension.h | 55 +++ - src/ephy-shell.c | 9 + - src/epiphany.gresource.xml | 1 + - src/resources/adblock.ui | 198 ++++++++++ - src/uri-tester.c | 895 +++++++++++++++++++++++++++++++++++++++++++ - src/uri-tester.h | 72 ++++ - 10 files changed, 1986 insertions(+) - -commit 892cab7e083e801b5fb5e7047b6305cfe9acd7b6 -Author: Stefano Facchini -Date: Thu Sep 6 23:15:08 2012 +0200 - - ephy-profile-utils: don't replace environment when spwaning ephy-profile-migrator - - Instead, just append the new variable to the existing environment. - - https://bugzilla.gnome.org/show_bug.cgi?id=683538 - - lib/ephy-profile-utils.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit 90d1b0d14f4bb7b4c4fc8043cad954e5e4372c79 -Author: Abhay Kadam -Date: Fri Sep 28 09:58:40 2012 +0530 - - Updated Marathi Translations - - po/mr.po | 3564 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1954 insertions(+), 1610 deletions(-) - -commit 490b4d0f533fbd1a353b3baa7e288de1f777692a -Author: Bastien Nocera -Date: Thu May 17 15:03:34 2012 +0100 - - pdm-dialog: Add type-ahead search to personal data - - The password treeview is unusable to find old passwords or cookies, - as some are prefixed by "http://", and others will have different - vhost names. - - The search function will look first for sub-string matches in the - URIs, then in the usernames (or cookie names). - - https://bugzilla.gnome.org/show_bug.cgi?id=676240 - - src/pdm-dialog.c | 32 ++++++++++++++++++++++++++++++++ - 1 file changed, 32 insertions(+) - -commit 7f170008834107468882edfd29c872310506d9fd -Author: Carlos Garcia Campos -Date: Wed Sep 26 08:28:50 2012 +0200 - - ephy-web-view: Use webkit_web_view_is_loading() in WebKit2 - - embed/ephy-web-view.c | 14 ++++++-------- - 1 file changed, 6 insertions(+), 8 deletions(-) - -commit 3ad970f76f2ede63152cdfd3b5c882aa80aad3cc -Author: Carlos Garcia Campos -Date: Thu Sep 27 10:15:15 2012 +0200 - - Make sure windows are properly closed when quitting from the shell menu - - https://bugzilla.gnome.org/show_bug.cgi?id=679844 - - doc/reference/epiphany-sections.txt | 1 + - src/ephy-session.c | 37 ++++++++++ - src/ephy-session.h | 2 + - src/ephy-shell.c | 5 +- - src/ephy-window.c | 140 ++++++++++++++++++++---------------- - src/ephy-window.h | 2 + - 6 files changed, 122 insertions(+), 65 deletions(-) - -commit ed5d02e80aab0297b04b31939a83bc13e75baf45 -Author: Claudio Saavedra -Date: Tue Sep 25 11:05:51 2012 +0300 - - [release] 3.6.0 - - NEWS | 8 ++++++++ - configure.ac | 8 ++++---- - 2 files changed, 12 insertions(+), 4 deletions(-) - -commit ea14c4a2372fe028d8006c20c575fc805a112f07 -Author: Claudio Saavedra -Date: Tue Sep 25 10:57:44 2012 +0300 - - epiphany.doap: Add myself as co-maintainer - - epiphany.doap | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 996c20e867946bc42bce501ec9c995b371f42a59 -Author: Petr Kovar -Date: Mon Sep 24 16:08:21 2012 +0200 - - Update Czech translation by Adam Matousek - - Review by Lucas Lommer. - - po/cs.po | 1700 ++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 1045 insertions(+), 655 deletions(-) - -commit 0d34b71e8702089e362d2453adad8724fbbfd310 -Author: Anita Reitere -Date: Mon Sep 24 15:41:05 2012 +0300 - - Updated Latvian translation - - po/lv.po | 6633 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 3373 insertions(+), 3260 deletions(-) - -commit 5708598319cd1ec75053dd38e0c8cffe58e96379 -Author: Timo Jyrinki -Date: Mon Sep 24 09:28:08 2012 +0300 - - Finnish translation update by Jiri Grönroos - - po/fi.po | 94 +++++++++++++++++++++++----------------------------------------- - 1 file changed, 33 insertions(+), 61 deletions(-) - -commit 369a48e3867d3b43edf49847daf085118591d116 -Author: Carles Ferrando -Date: Sun Sep 23 01:03:18 2012 +0200 - - [l10n]Updated Catalan (Valencian) translation - - po/ca@valencia.po | 1663 +++++++++++++++++++++++++++++------------------------ - 1 file changed, 907 insertions(+), 756 deletions(-) - -commit 890561c951b41cc4e5093ffdd2ddf82dce168a63 -Author: Gil Forcada -Date: Sun Sep 23 01:03:13 2012 +0200 - - [l10n] Added Catalan translation - - po/ca.po | 2211 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 1244 insertions(+), 967 deletions(-) - -commit ab53d234de686e6e2f3d660f4a97c48b52b825a3 -Author: YunQiang Su -Date: Sun Sep 23 03:21:52 2012 +0800 - - update Simplified Chinese (zh_CN) translation - - po/zh_CN.po | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit 2610cf566f21843bc4865634f2a72803a7a1d92a -Author: Rajesh Ranjan -Date: Sat Sep 22 15:42:35 2012 +0530 - - hindi update - - po/hi.po | 5002 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 2642 insertions(+), 2360 deletions(-) - -commit d5f6e99bd9a861eff941485d8e6354cefc974f3e -Author: Yuri Myasoedov -Date: Sat Sep 22 13:00:00 2012 +0400 - - Updated Russian translation - - po/ru.po | 237 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 113 insertions(+), 124 deletions(-) - -commit 89b4a2dc2ae0922c4ef3240342a4e0e43192494c -Author: Shankar Prasad -Date: Fri Sep 21 23:48:20 2012 +0530 - - Updated kn translation - - po/kn.po | 5736 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 3030 insertions(+), 2706 deletions(-) - -commit 1e112e7b3c8be7720cd6f2063d0c17a6cae2906b -Author: Theppitak Karoonboonyanan -Date: Fri Sep 21 11:45:55 2012 +0700 - - Updated Thai translation - - po/th.po | 3979 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1898 insertions(+), 2081 deletions(-) - -commit 25bafb902584f3e43d39c085e271eedbc1edf996 -Author: Krishnababu Krothapalli -Date: Thu Sep 20 16:12:01 2012 +0530 - - Updated Telugu Translations - - po/te.po | 2194 +++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 1325 insertions(+), 869 deletions(-) - -commit e9d7aa52d1daa99e65735e432f18458c4d0661a0 -Author: Martin Srebotnjak -Date: Thu Sep 20 10:08:18 2012 +0200 - - Updated Slovenian translation - - po/sl.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit f8769689a2c3aaf3e435c458131ab95339265500 -Author: Martin Srebotnjak -Date: Thu Sep 20 10:06:02 2012 +0200 - - Updated Slovenian translation - - po/sl.po | 158 ++++++++++++++++++++++++--------------------------------------- - 1 file changed, 59 insertions(+), 99 deletions(-) - -commit 951cba19c557c41df3553cef3c06856c0b556370 -Author: Alexandre Franke -Date: Thu Sep 20 08:58:49 2012 +0200 - - Update French translation - - po/fr.po | 1666 ++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 1037 insertions(+), 629 deletions(-) - -commit 0439aa30da1d45c60489f59dabbeedb2c0911a8a -Author: Khaled Hosny -Date: Thu Sep 20 08:28:19 2012 +0200 - - Updated Arabic translation - - po/ar.po | 115 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 58 insertions(+), 57 deletions(-) - -commit c0a5e4d794a87bd0d51d6a1e14ac405d25afe05f -Author: Khaled Hosny -Date: Mon Sep 3 12:29:48 2012 +0200 - - Updated Arabic translation - - po/ar.po | 193 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 99 insertions(+), 94 deletions(-) - -commit cbe3f66168c78b8d9370acd7b7ee21ecb1fd23c3 -Author: Dr.T.Vasudevan -Date: Thu Sep 20 11:05:09 2012 +0530 - - updated Tamil translation - - po/ta.po | 68 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 34 insertions(+), 34 deletions(-) - -commit ac6b6da6aef34054f56d342813bcd5e128a34ac3 -Author: Gianvito Cavasoli -Date: Wed Sep 19 13:41:53 2012 +0200 - - [l10n] Updated Italian translation. - - po/it.po | 1691 ++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 1036 insertions(+), 655 deletions(-) - -commit 647da40333d9df33ca81a1bd6659d82fcd7dc5d3 -Author: Dr.T.Vasudevan -Date: Wed Sep 19 16:50:27 2012 +0530 - - updated Tamil translation - - po/ta.po | 22 +++++++++++++--------- - 1 file changed, 13 insertions(+), 9 deletions(-) - -commit e9d8321a4e2d1cb64d7090d536776bff92b07edb -Author: Matej Urbančič -Date: Wed Sep 19 11:11:05 2012 +0200 - - Updated Slovenian translation - - po/sl.po | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - -commit 070600fd0d0a32bd9fe8c9bb59d14b4ca6ebc9fb -Author: Piotr Drąg -Date: Tue Sep 18 16:51:34 2012 +0200 - - Updated Polish translation - - po/pl.po | 82 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 41 insertions(+), 41 deletions(-) - -commit 926090e04dfab58fedc91210a98ca672c7581309 -Author: Og B. Maciel -Date: Mon Sep 17 22:58:04 2012 -0400 - - Updated Brazilian Portuguese translations. - - po/pt_BR.po | 2287 +++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1056 insertions(+), 1231 deletions(-) - -commit e6ab262ab0ce5393443f8492d0202e7d1b1931fe -Author: Claudio Saavedra -Date: Mon Sep 17 19:16:34 2012 +0300 - - [release] 3.5.92 - - NEWS | 13 +++++++++++++ - configure.ac | 2 +- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 0b1ef3312f6804c934d2a210ba208e9e82180329 -Author: Claudio Saavedra -Date: Mon Sep 17 18:47:43 2012 +0300 - - ephy-web-view: remove ephy_web_view_is_loading_homepage() - - It's unused and its usage is redundant with the - ephy_web_view_is_history_frozen() - - https://bugzilla.gnome.org/show_bug.cgi?id=683796 - - embed/ephy-embed-private.h | 1 - - embed/ephy-web-view.c | 13 ------------- - 2 files changed, 14 deletions(-) - -commit 009c7766067fb710ef87a82701ccc2c7125bf2c2 -Author: Claudio Saavedra -Date: Mon Sep 17 15:48:08 2012 +0300 - - ephy-web-view: freeze history on homepage load - - And remove redundant check. - - https://bugzilla.gnome.org/show_bug.cgi?id=683796 - - embed/ephy-web-view.c | 44 ++++++++++++++++++++++---------------------- - 1 file changed, 22 insertions(+), 22 deletions(-) - -commit 9d8795a0919ed771bf380630a4a034e0e6d37164 -Author: Claudio Saavedra -Date: Thu Sep 13 18:32:33 2012 +0300 - - ephy-web-view: do not save history visits for no-show-addresses - - We don't show these addresses in the location entry because they are - very special to epiphany. There is no reason to store them in the - history. - - https://bugzilla.gnome.org/show_bug.cgi?id=683796 - - embed/ephy-web-view.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit fcb0f328cfb8977dd5ba4a15dc1ed239af8267a2 -Author: Claudio Saavedra -Date: Thu Sep 13 18:31:14 2012 +0300 - - ephy-embed-utils: add ephy_embed_utils_is_no_show_address() - - https://bugzilla.gnome.org/show_bug.cgi?id=683796 - - embed/ephy-embed-utils.c | 18 ++++++++++++++++++ - embed/ephy-embed-utils.h | 1 + - src/ephy-window.c | 19 +------------------ - 3 files changed, 20 insertions(+), 18 deletions(-) - -commit fbb13119bc205c8a01a538e2db1ab2711371651d -Author: Matej Urbančič -Date: Mon Sep 17 10:17:36 2012 +0200 - - Updated Slovenian translation - - po/sl.po | 101 +++++++++++++++++++++++++++------------------------------------ - 1 file changed, 43 insertions(+), 58 deletions(-) - -commit d27948fba0408d915cd4134403293c052e61524a -Author: Pavel Vasin -Date: Thu Sep 13 12:23:55 2012 +0400 - - ephy-dialog: fix GtkBuilder leak - - https://bugzilla.gnome.org/show_bug.cgi?id=683929 - - lib/ephy-dialog.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit a23119894a24081989f1b081f6e6a0b2d3897acc -Author: Pavel Vasin -Date: Thu Sep 13 11:27:10 2012 +0400 - - ephy-session: fix xmlChar* leak - - https://bugzilla.gnome.org/show_bug.cgi?id=683929 - - src/ephy-session.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit ce03b41e127d730479d124091e305e99e4fd7e17 -Author: Pavel Vasin -Date: Thu Sep 13 11:19:18 2012 +0400 - - ephy_web_view_load_error_page: fix GtkIconInfo leak - - https://bugzilla.gnome.org/show_bug.cgi?id=683929 - - embed/ephy-web-view.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit d403986bea0d772bf25f629a366a4934ba70f12c -Author: Kenneth Nielsen -Date: Sun Sep 16 14:51:12 2012 +0200 - - Updated Danish translation - - po/da.po | 2064 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 1165 insertions(+), 899 deletions(-) - -commit 26679f9de8c21204a82286e65e310b9d56d35105 -Author: Ivaylo Valkov -Date: Sat Sep 15 09:41:32 2012 +0300 - - Updated Bulgarian translation - - po/bg.po | 1639 ++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 1006 insertions(+), 633 deletions(-) - -commit 9a838981e7da6411e0f6b9c77f8bd1ddcbb43e75 -Author: tuhaihe -Date: Sat Sep 15 10:11:50 2012 +0800 - - update Simplified Chinese (zh_CN) translation - - po/zh_CN.po | 950 ++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 510 insertions(+), 440 deletions(-) - -commit e940c92f80d4a188bc687c03fa0239ed2a6b8863 -Author: Xan Lopez -Date: Thu Sep 13 18:16:50 2012 +0200 - - ephy-find-toolbar: no need to cast return value here - - src/ephy-find-toolbar.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit eff14b2ff36db6d5f5e81fe47234278951677432 -Author: Xan Lopez -Date: Thu Sep 13 18:11:24 2012 +0200 - - ephy-find-toolbar: add a close button - - There was no way to close the toolbar from the UI itself. - - https://bugzilla.gnome.org/show_bug.cgi?id=683967 - - src/ephy-find-toolbar.c | 16 +++++++++++++++- - 1 file changed, 15 insertions(+), 1 deletion(-) - -commit ede0d69c6922376cbbebe26bb99673208d38ff55 -Author: Xan Lopez -Date: Thu Sep 13 17:37:39 2012 +0200 - - ephy-window: use symbolic icon for downloads box close button - - https://bugzilla.gnome.org/show_bug.cgi?id=683966 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b9668af23735f210a09d83e717f6850b84de662e -Author: Daniel Korostil -Date: Wed Sep 12 20:41:47 2012 +0300 - - uk update - - po/uk.po | 2625 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1447 insertions(+), 1178 deletions(-) - -commit 90501400ad4d1901cca48c1f4435f1e50f6b851b -Author: Xan Lopez -Date: Wed Sep 12 18:06:39 2012 +0200 - - Focus windows when opening new links in tabs - - If someone requests a link to be opened by ephy in an already running - instance, and that link is opened in a new tab (either because of our - settings or because -n/--new-tab was passed), the window where this - happened will not be presented, so it might go unnoticed. - - Fix this by presenting the windows where new tabs are opened through - the open_uris mechanism in EphySession. - - https://bugzilla.gnome.org/show_bug.cgi?id=641949 - - src/ephy-session.c | 3 ++- - src/ephy-shell.c | 3 +++ - src/ephy-shell.h | 2 ++ - 3 files changed, 7 insertions(+), 1 deletion(-) - -commit 032378d9bb8539d070896b4cc1f16b8c15c8a8fc -Author: Timo Jyrinki -Date: Wed Sep 12 18:47:32 2012 +0300 - - Finnish translation update by Jiri Grönroos - - po/fi.po | 1780 +++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 1118 insertions(+), 662 deletions(-) - -commit 94a4eb78395ca79af3a1024d6c82d00c8ecb1b09 -Author: Xan Lopez -Date: Wed Sep 12 17:13:43 2012 +0200 - - ephy-session: respect 'new-windows-in-tabs' setting when opening links - - Right now invoking 'epiphany ' when there's already a browser - instance running would always open a new window, unless a new tab was - explictly requested with -n/--new-tab. We should honor the - 'new-windows-in-tabs' setting (which is TRUE by default), and open the - link in a new tab in the last active window if no special conditions - were specified. - - https://bugzilla.gnome.org/show_bug.cgi?id=641949 - - src/ephy-session.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -commit c193a5df3dc970de22c8b0eb773e41a9dc98d877 -Author: Claudio Saavedra -Date: Wed Sep 12 11:12:26 2012 +0300 - - ephy-embed: show the overview when using wk2 - - This was neglected before, fix. - - embed/ephy-embed.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -commit b73d44ae204df099a53f91ec23b067752858ac3f -Author: Claudio Saavedra -Date: Wed Sep 12 10:02:45 2012 +0300 - - ephy-web-view: fix the wk2 build - - WK2 doesn't have yet a snapshotting API, so ifdef this out for the - time being. - - embed/ephy-web-view.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 7a68d6f10ed819d0bfd25c2f9e7c3a3e980ddc75 -Author: Nilamdyuti Goswami -Date: Tue Sep 11 20:11:38 2012 +0530 - - Assamese translation updated - - po/as.po | 245 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 128 insertions(+), 117 deletions(-) - -commit b475e302f7d96c6d7c49ffc3e5a2e34f1e970bad -Author: Carlos Garcia Campos -Date: Mon Sep 10 17:33:44 2012 +0200 - - tests: Add test for ephy_sanitize_filename() - - tests/ephy-file-helpers-test.c | 36 ++++++++++++++++++++++++++++++++++++ - 1 file changed, 36 insertions(+) - -commit 528eff9588298315490d173a40ad865f461d4e29 -Author: Carlos Garcia Campos -Date: Mon Sep 10 13:17:02 2012 +0200 - - Use ephy_sanitize_filename() for filenames suggested by the server - - Because the suggested filename returned by the server might contain - directory separators. - - https://bugzilla.gnome.org/show_bug.cgi?id=683711 - - embed/ephy-download.c | 2 +- - src/window-commands.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 6e6df39c03355307484b81c73a6812eb1ba28bc7 -Author: Carlos Garcia Campos -Date: Mon Sep 10 13:06:38 2012 +0200 - - ephy-file-helpers: Add ephy_sanitize_filename() - - To convert any possible directory separator into an underscore. - - https://bugzilla.gnome.org/show_bug.cgi?id=683711 - - doc/reference/epiphany-sections.txt | 1 + - lib/ephy-file-helpers.c | 21 +++++++++++++++++++++ - lib/ephy-file-helpers.h | 1 + - 3 files changed, 23 insertions(+) - -commit 91b17b84738f666579fbfd7aa722680b9a90a1d6 -Author: Matej Urbančič -Date: Mon Sep 10 15:50:49 2012 +0200 - - Updated Slovenian translation - - po/sl.po | 1011 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 541 insertions(+), 470 deletions(-) - -commit 03534d5b3019cf7db9dfc8ac957c7190543cfb6f -Author: Duarte Loreto -Date: Mon Sep 10 07:54:24 2012 +0100 - - Updated Portuguese translation - - po/pt.po | 154 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 84 insertions(+), 70 deletions(-) - -commit c81e0a41799e891ae7cd73fb074af1956af6d9e0 -Author: Claudio Saavedra -Date: Fri Sep 7 10:17:08 2012 +0300 - - Use the new EphyHistoryService::urls-visited signal - - Since both the frecent store and the history window don't need to be - updated immediately after a url is visited, we can use ::urls-visited - instead. The advantage of this is that we reduce considerably the load - when updating both models when loading many pages at the time, - specially during startup. - - https://bugzilla.gnome.org/show_bug.cgi?id=683550 - - lib/widgets/ephy-frecent-store.c | 10 ++++------ - src/ephy-history-window.c | 8 +++----- - 2 files changed, 7 insertions(+), 11 deletions(-) - -commit 399c91bc8724e0ca26370d7552b841c0669be87d -Author: Claudio Saavedra -Date: Fri Sep 7 10:13:24 2012 +0300 - - ephy-history-service: add urls-visited signal - - This signal is emitted in bulks and is intended for clients that are - not interested in every single URL that is visited but only to know - that visits have happened. - - https://bugzilla.gnome.org/show_bug.cgi?id=683550 - - lib/history/ephy-history-service-private.h | 1 + - lib/history/ephy-history-service.c | 53 ++++++++++++++++++++++++++++++ - 2 files changed, 54 insertions(+) - -commit a3361d48035eb48c49aff443dff634105a6bb6c7 -Author: Ihar Hrachyshka -Date: Sun Sep 9 14:25:09 2012 +0300 - - Updated Belarusian translation. - - po/be.po | 769 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 422 insertions(+), 347 deletions(-) - -commit dfe26aa77df3f7f11c72f7f27f9c7eb7edf170fb -Author: Changwoo Ryu -Date: Sun Sep 9 20:05:15 2012 +0900 - - Updated Korean translation - - po/ko.po | 2371 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1097 insertions(+), 1274 deletions(-) - -commit 0389439bd109d2a428d04b4cd8bfa65845bd1687 -Author: Xan Lopez -Date: Sat Sep 8 19:57:51 2012 +0200 - - ephy-file-helpers: style fix - - lib/ephy-file-helpers.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 067eb39b28cd5ce3ba813a4f93045446fa15ca0d -Author: Xan Lopez -Date: Sat Sep 8 19:47:58 2012 +0200 - - ephy-file-helpers: update comment - - The default dot dir is now in ~/.config, not ~/.gnome2. - - lib/ephy-file-helpers.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 530a7c8059cd679af9e89bfdbfa948664770869d -Author: Xan Lopez -Date: Sat Sep 8 19:37:26 2012 +0200 - - .gitignore: a few more obsolete things here - - .gitignore | 3 --- - 1 file changed, 3 deletions(-) - -commit c85bd085dd89e189152a0e0924aa87ca62e4b35d -Author: Xan Lopez -Date: Sat Sep 8 19:36:11 2012 +0200 - - Remove obsolete reference to ephy-marshal.[c,h] - - .gitignore | 1 - - doc/reference/Makefile.am | 1 - - 2 files changed, 2 deletions(-) - -commit 1602aad19091e3173522599d3781ecc9218b8244 -Author: Xan Lopez -Date: Sat Sep 8 17:12:37 2012 +0200 - - ephy-web-view: fix memory leak - - embed/ephy-web-view.c | 1 + - 1 file changed, 1 insertion(+) - -commit f7e2d5b280c441d03243506446cc85145f23ed48 -Author: Xan Lopez -Date: Sat Sep 8 16:44:36 2012 +0200 - - tests: remove debug output from snapshot service tests - - tests/ephy-snapshot-service-test.c | 3 --- - 1 file changed, 3 deletions(-) - -commit a786a06a292ac82127d6fa4cfa0d75de9fa9ee10 -Author: Xan Lopez -Date: Sat Sep 8 15:29:50 2012 +0200 - - embed-shell: drop a couple of unneeded includes - - embed/ephy-embed-shell.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 4d5c72ea2a6792cceadd4e2da91a7ea2b6ebe896 -Author: Xan Lopez -Date: Sat Sep 8 15:28:58 2012 +0200 - - ephy-embed-shell: another style fix - - embed/ephy-embed-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5d9f1aa0aaba692cf1ed5622b0eb04972af87964 -Author: Xan Lopez -Date: Sat Sep 8 15:27:38 2012 +0200 - - embed-shell: remove stale define - - embed/ephy-embed-shell.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 41840e57e609ed225609ae7eac7530f60bf10528 -Author: Xan Lopez -Date: Sat Sep 8 15:24:24 2012 +0200 - - embed-shell: should be safe to drop the legacy print setup code now - - doc/reference/Makefile.am | 1 - - embed/ephy-embed-shell.c | 20 ---- - lib/Makefile.am | 2 - - lib/ephy-print-utils.c | 269 ---------------------------------------------- - lib/ephy-print-utils.h | 48 --------- - 5 files changed, 340 deletions(-) - -commit 8f25e193643306b9faf15f0c1b84014d8352ca4c -Author: Xan Lopez -Date: Sat Sep 8 14:25:22 2012 +0200 - - ephy-embed-shell: minor style fixes - - embed/ephy-embed-shell.c | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit cc0119023a33ea35fb0dee2c7f0f41f56b700978 -Author: Tom Tryfonidis -Date: Sat Sep 8 14:02:08 2012 +0300 - - Updated Greek translation - - po/el.po | 124 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 68 insertions(+), 56 deletions(-) - -commit e882b5de8be76fe1bb645f133151290a7057e379 -Author: Xan Lopez -Date: Sat Sep 8 12:43:10 2012 +0200 - - tests: basic tests for EphyCompletionModel - - tests/Makefile.am | 4 ++ - tests/ephy-completion-model-test.c | 102 +++++++++++++++++++++++++++++++++++++ - 2 files changed, 106 insertions(+) - -commit edbe1a014af2331b587d4a84f91d0f87fe17f5c8 -Author: Xan Lopez -Date: Sat Sep 8 12:18:24 2012 +0200 - - ephy-embed-shell: use now coding style - - embed/ephy-embed-shell.c | 583 ++++++++++++++++++++++------------------------- - embed/ephy-embed-shell.h | 99 ++++---- - 2 files changed, 317 insertions(+), 365 deletions(-) - -commit 87b95b1006581e71ffbb80c45005108e81392596 -Author: Xan Lopez -Date: Sat Sep 8 12:11:44 2012 +0200 - - ephy-embed-shell: small cleanups - - embed/ephy-embed-shell.c | 16 ++++++---------- - 1 file changed, 6 insertions(+), 10 deletions(-) - -commit 1ba7ab5e529d93f8913b4b89f13f9f24fd715761 -Author: Xan Lopez -Date: Sat Sep 8 12:08:22 2012 +0200 - - ephy-embed-shell: cleanup dispose & finalize - - Unref objects in dispose, not finalize. Use g_clear_object correctly - (no need to check whether the pointer is NULL). - - embed/ephy-embed-shell.c | 47 +++++++---------------------------------------- - 1 file changed, 7 insertions(+), 40 deletions(-) - -commit 8257cf80b4f63b44b995fa090a66e361dc35629d -Author: Xan Lopez -Date: Sat Sep 8 00:02:42 2012 +0200 - - tests: test ephy_bookmarks_set_address - - tests/ephy-bookmarks-test.c | 23 +++++++++++++++++++++++ - 1 file changed, 23 insertions(+) - -commit e64f49f4080cff57af67eefd147e94d4223f2be1 -Author: Xan Lopez -Date: Sat Sep 8 00:01:13 2012 +0200 - - tests: clear bookmark files after each test - - tests/ephy-bookmarks-test.c | 25 +++++++++++++++++++++++++ - 1 file changed, 25 insertions(+) - -commit 983ce8ba32b59167d9436200696e1fd12a2d780c -Author: Xan Lopez -Date: Fri Sep 7 23:37:53 2012 +0200 - - ephy-bookmarks: remove useless include - - src/bookmarks/ephy-bookmarks.h | 1 - - 1 file changed, 1 deletion(-) - -commit dfb243b5951298d745bb1b670205f8d9a186758d -Author: Xan Lopez -Date: Fri Sep 7 23:34:49 2012 +0200 - - tests: some simple EphyBookmarks tests - - tests/Makefile.am | 4 +++ - tests/ephy-bookmarks-test.c | 78 +++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 82 insertions(+) - -commit 8c793b0359e216cfd96b1d0a3f46e6d2a5f6fda3 -Author: Xan Lopez -Date: Fri Sep 7 23:31:19 2012 +0200 - - Revert "ephy-profile-utils: don't replace environment when spwaning ephy-profile-migrator" - - This reverts commit adfecc2bb03ed280543dc5ad4ba6fa350ff00d8c. - - This breaks the migrator tests. - - lib/ephy-profile-utils.c | 7 +------ - 1 file changed, 1 insertion(+), 6 deletions(-) - -commit 73fbd13b0f415a354d0c3b47aea367f84de007cf -Author: Aurimas Černius -Date: Fri Sep 7 20:19:16 2012 +0300 - - Updated Lithuanian translation - - po/lt.po | 43 ++++++++++++++++++++++++------------------- - 1 file changed, 24 insertions(+), 19 deletions(-) - -commit ea26ff4adf40cbc198e2631dc0b33f28152c4e4d -Author: Yaron Shahrabani -Date: Fri Sep 7 16:02:51 2012 +0300 - - Updated Hebrew translation. - - po/he.po | 213 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 111 insertions(+), 102 deletions(-) - -commit adfecc2bb03ed280543dc5ad4ba6fa350ff00d8c -Author: Stefano Facchini -Date: Thu Sep 6 23:15:08 2012 +0200 - - ephy-profile-utils: don't replace environment when spwaning ephy-profile-migrator - - Instead, just append the new variable to the existing environment. - - https://bugzilla.gnome.org/show_bug.cgi?id=683538 - - lib/ephy-profile-utils.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -commit 1a1b5a9c0360e7dce2f3aa8c56cfa6a9795a1f31 -Author: Tobias Endrigkeit -Date: Fri Sep 7 09:57:40 2012 +0200 - - Updated German translation - - po/de.po | 127 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 68 insertions(+), 59 deletions(-) - -commit 8431cabd4d8f72dfaadbe64adf9f8dc89a26ae62 -Author: Giovanni Campagna -Date: Thu Sep 6 17:40:51 2012 +0200 - - EphyOverviewStore: don't register the snapshot mtime as long - - All code paths use int, and this breaks on architechtures where - long is not the same as int (such as x86_64). - - https://bugzilla.gnome.org/show_bug.cgi?id=683029 - - [Do the same for the visit time column] - Signed-off-by: Claudio Saavedra - - lib/widgets/ephy-overview-store.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit dddc036986d7fc8da4ce735ffdccf91c2315f6be -Author: Claudio Saavedra -Date: Thu Sep 6 13:08:47 2012 +0300 - - ephy-history-service: remove some dangerous g_object_unref() calls - - If there is an error building a statement, the returned value is - always NULL. Calling g_object_unref() on them will lead to trouble. - - https://bugzilla.gnome.org/show_bug.cgi?id=683475 - - lib/history/ephy-history-service-hosts-table.c | 2 -- - lib/history/ephy-history-service-urls-table.c | 2 -- - lib/history/ephy-history-service-visits-table.c | 2 +- - 3 files changed, 1 insertion(+), 5 deletions(-) - -commit c514bd1ee01d6982424e4d5eefb545fc5254a59b -Author: Claudio Saavedra -Date: Thu Sep 6 13:07:44 2012 +0300 - - ephy-history-service: fix a few leaks - - If there is an error processing the statement, then unref it before - returning. - - https://bugzilla.gnome.org/show_bug.cgi?id=683475 - - lib/history/ephy-history-service-hosts-table.c | 5 ++++- - lib/history/ephy-history-service-urls-table.c | 2 ++ - lib/history/ephy-history-service-visits-table.c | 1 + - 3 files changed, 7 insertions(+), 1 deletion(-) - -commit 697dfbede122fb3e5c1847c77a7f24bc6b1bf3c5 -Author: Daniel Mustieles -Date: Thu Sep 6 18:24:51 2012 +0200 - - Updated Spanish translation - - po/es.po | 46 ++++++++++++++++++++++++---------------------- - 1 file changed, 24 insertions(+), 22 deletions(-) - -commit a7dc87295d14d9f63e2093b15a53b535cfefa04c -Author: Xan Lopez -Date: Thu Sep 6 16:52:20 2012 +0200 - - ephy-overview: add missing include - - embed/ephy-overview.c | 1 + - 1 file changed, 1 insertion(+) - -commit 8f3fe1347ba5145ef95573ea2e6b6276d8a3b39a -Author: Claudio Saavedra -Date: Thu Sep 6 12:40:43 2012 +0300 - - ephy-snapshot-service: don't leak the async result - - lib/ephy-snapshot-service.c | 1 + - 1 file changed, 1 insertion(+) - -commit b70fe20a489b0a89e4f8779551e87698434485a5 -Author: Carlos Garcia Campos -Date: Tue Sep 4 14:48:26 2012 +0200 - - ephy-snapshot-service: Split ephy_snapshot_service_get_snapshot_async() - - ephy_snapshot_service_get_snapshot_async() receives an option web view - parameter, that it's only used in case the snapshot is not the in the - thumbnails cache. We can split the method into - ephy_snapshot_service_get_snapshot_async() to get a snapshot from a web - view and ephy_snapshot_service_get_snapshot_for_url_async() to get a - snapshot from the cache. The former uses the latter to try first if the - web view URI is in the cache. - - Patch includes other cleanups and fixes: - - - Add missing ephy_snapshot_service_save_snapshot_finish() - - Add EphySnapshotServiceError to handle errors - - Use GSimpleAsyncResult API instead of using GIOScheduler directly - - Use different async data structs for every async operation - - https://bugzilla.gnome.org/show_bug.cgi?id=683327 - - lib/ephy-snapshot-service.c | 511 ++++++++++++++++++++++++------------- - lib/ephy-snapshot-service.h | 76 ++++-- - lib/widgets/ephy-overview-store.c | 87 ++++--- - tests/ephy-snapshot-service-test.c | 8 - - 4 files changed, 443 insertions(+), 239 deletions(-) - -commit 8712d1d951319e69dabae819d80700023cd920b8 -Author: Dirgita -Date: Thu Sep 6 00:37:22 2012 +0700 - - Updated Indonesian translation - - po/id.po | 117 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 66 insertions(+), 51 deletions(-) - -commit bbac1c512b0a18c2a71781868d209cc6b9750357 -Author: Dr.T.Vasudevan -Date: Wed Sep 5 21:20:58 2012 +0530 - - updated Tamil translation - - po/ta.po | 1379 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 724 insertions(+), 655 deletions(-) - -commit 84b46686c5af2e95fec56eae6aef38c871d14459 -Author: Claudio Saavedra -Date: Wed Sep 5 16:13:58 2012 +0300 - - configure.ac: Remove duplicate version definitions - - https://bugzilla.gnome.org/show_bug.cgi?id=683418 - - configure.ac | 2 -- - 1 file changed, 2 deletions(-) - -commit c419b4c3ea47dce5d1cd3c3f89b7c68c782e6679 -Author: Claudio Saavedra -Date: Wed Sep 5 15:13:40 2012 +0300 - - [release] 3.5.91.1 - - NEWS | 8 ++++++++ - configure.ac | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 94c0c500943c8e851ea8a6845ea9a9e2418c625b -Author: Claudio Saavedra -Date: Wed Sep 5 14:46:19 2012 +0300 - - [release] 3.5.91 - - NEWS | 15 +++++++++++++++ - configure.ac | 2 +- - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit c6fa1c2dbbb7f81c1ee8a2df2a868289ff033397 -Author: Sergio Villar Senin -Date: Wed Sep 5 13:56:36 2012 +0200 - - ephy-embed-shell: ephy_embed_shell_get_frecent_store() should not be public - - Removed ephy_embed_shell_get_frecent_store() from EphyEmbedShell public - interface. - - embed/ephy-embed-private.h | 4 ++++ - embed/ephy-embed-shell.c | 1 + - embed/ephy-embed-shell.h | 3 --- - 3 files changed, 5 insertions(+), 3 deletions(-) - -commit 091ecde186285d89df1da89daf07ee2d694db6aa -Author: Chao-Hsiung Liao -Date: Wed Sep 5 19:38:39 2012 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 172 ++++++++++++++++++++++++++++++++---------------------------- - po/zh_TW.po | 172 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 184 insertions(+), 160 deletions(-) - -commit b376cec3e7c7803387d1c7afc386baf883cc0024 -Author: Мирослав Николић -Date: Wed Sep 5 11:59:26 2012 +0200 - - Updated Serbian translation - - po/sr.po | 210 +++++++++++++++++++++++++++++++-------------------------- - po/sr@latin.po | 210 +++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 226 insertions(+), 194 deletions(-) - -commit 6b55dd2301ca222f87210085901a1ddd9d3849e6 -Author: Gabor Kelemen -Date: Wed Sep 5 11:17:44 2012 +0200 - - Updated Hungarian translation - - po/hu.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b512f37049ee3af26e8b70c33fe314dc1ab3c21e -Author: Gabor Kelemen -Date: Wed Sep 5 11:02:50 2012 +0200 - - Updated Hungarian translation - - po/hu.po | 2284 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1047 insertions(+), 1237 deletions(-) - -commit f92b2f22a68bbae4baf2e10936bf4b4b9d5ae6ba -Author: Fran Diéguez -Date: Wed Sep 5 10:34:37 2012 +0200 - - Updated Galician translations - - po/gl.po | 84 +++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 43 insertions(+), 41 deletions(-) - -commit 74d8f312cb8f7fd79cf9ddf4f4f8958d3b04e666 -Author: Claudio Saavedra -Date: Wed Sep 5 08:58:56 2012 +0300 - - ephy-overview: Use hand cursor when hovering items - - For improved visual feedback. - - embed/ephy-overview.c | 23 +++++++++++++++++++++++ - 1 file changed, 23 insertions(+) - -commit a8cb263c1b5f5e35e71af7e2cbabe6194fcb404a -Author: Claudio Saavedra -Date: Wed Sep 5 08:57:48 2012 +0300 - - gd-main-view: don't use ctrl+click for selection-mode-request - - We need this to actually activate the current item, in order to - support ctrl+click to open in a new tab. - - lib/widgets/gd-main-view.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit f5bf150a91bec3f25f37f567a2d4b7927b3c7a21 -Author: Xan Lopez -Date: Tue Sep 4 15:41:50 2012 +0200 - - tests: test ephy_embed_utils_url_is_empty - - tests/ephy-embed-utils-test.c | 35 +++++++++++++++++++++++++++++++++++ - 1 file changed, 35 insertions(+) - -commit c11081599dd7f6b9f2c1fd627afa8af93d99fa0e -Author: Xan Lopez -Date: Tue Sep 4 15:32:55 2012 +0200 - - embed-utils: remove extra indentation level in method - - The whole method is inside an if block, just do an early return. - - embed/ephy-embed-utils.c | 51 +++++++++++++++++++++++------------------------- - 1 file changed, 24 insertions(+), 27 deletions(-) - -commit 18b87ec8068c5bf98aed9f507d43cba451dab665 -Author: Xan Lopez -Date: Mon Sep 3 23:11:11 2012 +0200 - - Add code coverage support - - Needs a fairly recent gnome-common. To use do: - - - Run configure with --enable-code-coverage - - Type 'make check-code-coverage' - - Open the HTML results - - https://bugzilla.gnome.org/show_bug.cgi?id=683297 - - Makefile.am | 2 ++ - configure.ac | 19 +++++++++++-------- - doc/reference/Makefile.am | 2 ++ - embed/Makefile.am | 1 + - lib/Makefile.am | 5 ++++- - lib/egg/Makefile.am | 1 + - lib/history/Makefile.am | 1 + - lib/widgets/Makefile.am | 1 + - src/Makefile.am | 2 ++ - src/bookmarks/Makefile.am | 1 + - tests/Makefile.am | 2 ++ - 11 files changed, 28 insertions(+), 9 deletions(-) - -commit 0aff80b0d783422d0db25f59c434198205d4bed7 -Author: Bruce Cowan -Date: Tue Sep 4 11:56:42 2012 +0100 - - Updated British English translation - - po/en_GB.po | 2020 +++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 1140 insertions(+), 880 deletions(-) - -commit d829f324c2c9741e06d7e8e9cd8088c185389031 -Author: Claudio Saavedra -Date: Tue Sep 4 11:52:56 2012 +0300 - - ephy-file-helpers: plug a leak - - recursive delete function is leaking a reference. - - lib/ephy-file-helpers.c | 1 + - 1 file changed, 1 insertion(+) - -commit 58d7029067c993bb10350953fa9a05723fd50459 -Author: Claudio Saavedra -Date: Tue Sep 4 11:47:09 2012 +0300 - - ephy-window: disconnect overview-mode callback from the right object - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3e7c36a33f512e47b9bc293db93112c109caaf0b -Author: Claudio Saavedra -Date: Tue Sep 4 11:46:49 2012 +0300 - - ephy-web-view: don't leak the snapsoht cairo surface - - embed/ephy-web-view.c | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -commit aea0c271af64fef12c887c04cc2f760aca8391f8 -Author: Claudio Saavedra -Date: Mon Sep 3 22:51:24 2012 +0300 - - ephy-overview-store: hide the close button while animating a removed item - - To do this, add the render policy as a column to the model and use it - as a cellrenderer attribute. The default value is already PRELIT. When - removing the cell, flip it to NEVER. - - lib/widgets/ephy-overview-store.c | 13 +++++++++++++ - lib/widgets/ephy-overview-store.h | 1 + - lib/widgets/gd-main-icon-view.c | 3 +++ - 3 files changed, 17 insertions(+) - -commit 04b01c5b1c969978a825087be1e0d3c91598a890 -Author: Claudio Saavedra -Date: Mon Sep 3 22:48:48 2012 +0300 - - ephy-removable-pixbuf-renderer: reorder policy enum - - This way the default item is PRELIT. This will be useful when using - this type as a cell renderer attribute later on. - - lib/widgets/ephy-removable-pixbuf-renderer.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 51864e36d205e10752753605ca0592f39f000606 -Author: Claudio Saavedra -Date: Mon Sep 3 22:32:04 2012 +0300 - - ephy-removable-pixbuf-renderer: do not emit delete on click if policy is NEVER - - It makes no sense to emit the delete signal if the delete button is - not rendered at all. - - lib/widgets/ephy-removable-pixbuf-renderer.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit deb576b24db205cf13651c5ab04b9b3696fbfb99 -Author: Piotr Drąg -Date: Mon Sep 3 21:30:16 2012 +0200 - - Updated Polish translation - - po/pl.po | 42 +++++++++++++++++++++++------------------- - 1 file changed, 23 insertions(+), 19 deletions(-) - -commit 4757133c25efa9c7fe5c726f1f2d5681f345a5cb -Author: Claudio Saavedra -Date: Mon Sep 3 17:42:10 2012 +0300 - - ephy-main: run the migration for any instance that is not a temporary private one - - https://bugzilla.gnome.org/show_bug.cgi?id=681679 - - src/ephy-main.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 95eb18e603accc3dd23c32c9dfbdf79b1723d391 -Author: Claudio Saavedra -Date: Mon Sep 3 17:41:25 2012 +0300 - - ephy-profile-utils: add a profile_dir parameter to ephy_profile_utils_do_migration() - - This is passed further on to the migrator process. Right now this is - unused. - - https://bugzilla.gnome.org/show_bug.cgi?id=681679 - - lib/ephy-profile-utils.c | 7 ++++++- - lib/ephy-profile-utils.h | 2 +- - src/ephy-main.c | 2 +- - tests/ephy-migration-test.c | 4 ++-- - 4 files changed, 10 insertions(+), 5 deletions(-) - -commit 1afb0171665b4234ceb57f073a0834b6dc3e005d -Author: Claudio Saavedra -Date: Mon Sep 3 17:33:47 2012 +0300 - - ephy-profile-migrator: allow running migration in non-default profile directories - - This is necessary since we add new columns to the history database in - step 8 of migration. However, non-default profile directories don't - have a .migrated file right now but, since up to step 7 it was - possible to use these profiles without migration, it is safe to assume - that a non-default profile without a .migrated file can be migrated - starting from step 8. - - https://bugzilla.gnome.org/show_bug.cgi?id=681679 - - lib/ephy-profile-migrator.c | 10 +++++++++- - lib/ephy-profile-utils.c | 8 ++++++++ - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit 55ffe5b0442e58a42a5812c749359a3f22a489d1 -Author: Claudio Saavedra -Date: Mon Sep 3 17:01:13 2012 +0300 - - ephy-file-helpers: add ephy_dot_dir_is_default() - - This method will let us know when the current dot directory is the - default one and not a user-specified one nor a web application one. - - https://bugzilla.gnome.org/show_bug.cgi?id=681679 - - lib/ephy-file-helpers.c | 16 ++++++++++++++++ - lib/ephy-file-helpers.h | 1 + - 2 files changed, 17 insertions(+) - -commit dbac4d6d897d15769ec6101b7ff7aed30272b3e9 -Author: Daniel Mustieles -Date: Mon Sep 3 15:56:26 2012 +0200 - - Updated Spanish translation - - po/es.po | 209 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 108 insertions(+), 101 deletions(-) - -commit c3fa918bdcd9f68efbc4caf6c727da0554fe0642 -Author: Claudio Saavedra -Date: Mon Sep 3 15:42:31 2012 +0300 - - ephy-profile-utils: use an index variable instead of manually setting it - - This allows us to extend this further cleanly. - - lib/ephy-profile-utils.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit cccd1f10983fb10278ca3612a1b20b04f0913b38 -Author: Claudio Saavedra -Date: Mon Sep 3 15:35:37 2012 +0300 - - ephy-profile-utils: fix array length - - lib/ephy-profile-utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 97d0929cf1691bc029db792e941870948a5e13e5 -Author: Claudio Saavedra -Date: Mon Sep 3 14:54:50 2012 +0300 - - ephy-file-helpers: rename KEEP_TEMP_DIR to KEEP_DIR - - Since this is also used for persistency of temporary directories, but - also for --profile. - - lib/ephy-file-helpers.c | 6 +++--- - lib/ephy-file-helpers.h | 2 +- - src/ephy-main.c | 2 +- - tests/ephy-file-helpers-test.c | 18 +++++++++--------- - 4 files changed, 14 insertions(+), 14 deletions(-) - -commit 51a379f461d8bd435054caafe265f102fb05399e -Author: Carlos Garcia Campos -Date: Mon Sep 3 12:58:44 2012 +0200 - - ephy-frecent-store: Fix the build with WebKit2 - - lib/widgets/ephy-frecent-store.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 9ecd70bae96a0c08bca380c97bdf0b2b9e724d95 -Author: Carlos Garcia Campos -Date: Mon Sep 3 12:50:36 2012 +0200 - - ephy-snapshot-service: Fix memory leak - - lib/ephy-snapshot-service.c | 1 + - 1 file changed, 1 insertion(+) - -commit b0c5be1011f5fed19c6979b63e9d12475fd381d3 -Author: Sergio Villar Senin -Date: Fri Aug 24 12:14:05 2012 +0200 - - ephy-bookmarks-editor: repaint the favicon on "icon-loaded" - - Fixes a crash when epy is started with the bookmarks window open. The old - code was trying to set the favicon in an already released GValue. Instead of - doing that, we now force a repaint of the row once we get the favicon. - - https://bugzilla.gnome.org/show_bug.cgi?id=673795 - - lib/widgets/ephy-node-view.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 42 ++++++++++++++++++++++++++++------- - 2 files changed, 35 insertions(+), 9 deletions(-) - -commit c077cdea4bcdb95b58b7fff0b9dc7cce3aaa2982 -Author: Sergio Villar Senin -Date: Fri Aug 24 12:13:34 2012 +0200 - - ephy-node-view: added ephy_node_view_get_iter_for_node() - - The EphyNodeView is based on the following stack of models: - - Sort model -> Filter model -> EphyTreeModelNode - - This function returns a GtkTreeIter pointing to a row in the sort model from - a EphyNode that belongs to the EphyTreeModelNode. - - https://bugzilla.gnome.org/show_bug.cgi?id=673795 - - lib/widgets/ephy-node-view.c | 19 +++++++++++++++++++ - lib/widgets/ephy-node-view.h | 4 ++++ - 2 files changed, 23 insertions(+) - -commit 0fc791e776d61d83d67c2984a003a2f42bd769d1 -Author: Claudio Saavedra -Date: Mon Sep 3 13:06:28 2012 +0300 - - ephy-window: handle key modifiers on overview::item-activate - - So that middle-click, for instance, opens a new tab. Notice that - control-click will still not work, as the GdMainView widget is handling - the event to emit its selection-mode-request signal. - - https://bugzilla.gnome.org/show_bug.cgi?id=683187 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 15f5d26043fa4b9d8f83aaa0d13347b5a3218ec5 -Author: Claudio Saavedra -Date: Mon Sep 3 11:31:01 2012 +0300 - - ephy-overview-store: fix the setter for the default icon - - lib/widgets/ephy-overview-store.c | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -commit c40d5bef446fe85438fd42cc9042a9b8fa95e277 -Author: Xan Lopez -Date: Sun Sep 2 23:25:28 2012 +0200 - - tests: fix last shell test - - Unfortunately the state propagation of the overview loading needs the - mainloop to run, since we use the load status signals from WebKit. Do - so and update things for about:blank -> about:overview. - - tests/ephy-shell-test.c | 17 ++++++++++++----- - 1 file changed, 12 insertions(+), 5 deletions(-) - -commit eedef109f733889645ec93317629d795fdfa55dd -Author: Xan Lopez -Date: Sun Sep 2 23:24:46 2012 +0200 - - ephy-shell: consider the overview as a blank page - - We were only considering about:blank, but about:overview should be - assumed to be "blank" as far as replacing it with actual pages is - concerned. - - src/ephy-shell.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 1a7cc74fffb2631b8bee4192cfac4ecf1b37830f -Author: Xan Lopez -Date: Sun Sep 2 23:01:15 2012 +0200 - - tests: homepage is overview now - - This fixes one test, there's another one broken in this file. - - tests/ephy-shell-test.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4c45d09f5bc585147ef8013ac6570b12bbb372e0 -Author: Xan Lopez -Date: Sun Sep 2 22:53:00 2012 +0200 - - ephy-embed-shell: make the shell find uninstalled icons - - This is needed for distcheck, which runs tests before installing. - - embed/Makefile.am | 1 - - embed/ephy-embed-shell.c | 5 ++--- - lib/ephy-file-helpers.c | 2 ++ - 3 files changed, 4 insertions(+), 4 deletions(-) - -commit 8a90676ef1a46d040c4d334b9c1f7522167814a7 -Author: Xan Lopez -Date: Sun Sep 2 22:42:06 2012 +0200 - - tests: the new homepage is about:overview, not about:blank - - tests/ephy-session-test.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a66dcf2c036c9760e9b6daddccd55077be0b052b -Author: Xan Lopez -Date: Sun Sep 2 22:40:57 2012 +0200 - - tests: register the application explicitly - - This usually happens in _run, it seems, but the tests don't do that, - so we need to call this manually. Otherwise the test will fail with: - - (/home/xan/git/epiphany/build/tests/test-ephy-session:9865): GLib-GIO-CRITICAL - **: g_application_list_actions: assertion `application->priv->is_registered' - failed - - No idea why this has started happening only now. - - https://bugzilla.gnome.org/show_bug.cgi?id=682653 - - tests/ephy-session-test.c | 2 ++ - tests/ephy-shell-test.c | 5 +++-- - 2 files changed, 5 insertions(+), 2 deletions(-) - -commit 47f9f712bc8f8123bd50a1d54ea11abb6c823b01 -Author: Piotr Drąg -Date: Sun Sep 2 22:15:03 2012 +0200 - - Updated Polish translation - - po/pl.po | 20 +++++++++++++++++--- - 1 file changed, 17 insertions(+), 3 deletions(-) - -commit e23377fe113b76b82baa2eb8622f8d5ba6f02d70 -Author: Aurimas Černius -Date: Sun Sep 2 15:44:36 2012 +0300 - - Updated Lithuanian translation - - po/lt.po | 212 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 110 insertions(+), 102 deletions(-) - -commit 815e51df8f3c080aaab113257f6eabb8392f9684 -Author: Carlos Garcia Campos -Date: Thu Aug 23 12:09:04 2012 +0200 - - ephy-embed-prefs: Port preferred languages to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=679685 - - embed/ephy-embed-prefs.c | 22 +++++++++++++--------- - 1 file changed, 13 insertions(+), 9 deletions(-) - -commit 4f81935681945df5883f59a218bfb7ea3b29a1d8 -Author: Xan Lopez -Date: Sun Sep 2 01:45:24 2012 +0200 - - ephy-session: do not restore tool windows - - These windows will lose relevance and disappear gradually, and it does - not really make that much sense to restore them with the session now - that this happens automatically. - - https://bugzilla.gnome.org/show_bug.cgi?id=682966 - - src/ephy-session.c | 127 +++-------------------------------------------------- - src/ephy-session.h | 6 --- - src/ephy-shell.c | 26 ----------- - 3 files changed, 5 insertions(+), 154 deletions(-) - -commit 101f994eaf982cf39ab2f66aa72f4725e38732f1 -Author: Fran Diéguez -Date: Sat Sep 1 02:21:16 2012 +0200 - - Updated Galician translations - - po/gl.po | 18 +++++++++++------- - 1 file changed, 11 insertions(+), 7 deletions(-) - -commit 092e4c9b5340ae39d1bc855221b2dba28efb45cd -Author: Piotr Drąg -Date: Fri Aug 31 22:16:10 2012 +0200 - - Updated Polish translation - - po/pl.po | 18 +++++++++++------- - 1 file changed, 11 insertions(+), 7 deletions(-) - -commit ba80bf28b56ebcdc42e2ba75bcee7f3b838f58fe -Author: Xan Lopez -Date: Fri Aug 31 21:44:57 2012 +0200 - - ephy-profile-utils: pass the required version to the migrator - - This should help catch the mistake of not installing the new migrator - when the profile version changes. - - https://bugzilla.gnome.org/show_bug.cgi?id=683134 - - lib/ephy-profile-utils.c | 15 +++++++++------ - 1 file changed, 9 insertions(+), 6 deletions(-) - -commit d08cadfb28daad3cc5560d2aaf0815aaeb5bf21a -Author: Xan Lopez -Date: Fri Aug 31 21:26:40 2012 +0200 - - ephy-profile-migrator: add a "requested version" option to the migrator - - This will allow us to catch mismatches between browser and migrator binary. - - lib/ephy-profile-migrator.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit a915ad73f64171934f1b7381237d8593b6a12460 -Author: Piotr Drąg -Date: Fri Aug 31 21:23:24 2012 +0200 - - Updated Polish translation - - po/pl.po | 100 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 54 insertions(+), 46 deletions(-) - -commit ddcb9d7bc71f4b1bb0a758248ac0d94de6bcade9 -Author: Fran Diéguez -Date: Fri Aug 31 20:52:27 2012 +0200 - - Updated Galician translations - - po/gl.po | 167 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 85 insertions(+), 82 deletions(-) - -commit ddd81d9874a7ca9970cab5cbb3be1c192053a73a -Author: Xan Lopez -Date: Fri Aug 31 20:44:07 2012 +0200 - - ephy-notebook: fix compiler warning - - src/ephy-notebook.c | 3 --- - 1 file changed, 3 deletions(-) - -commit 195bb27b6c0f710f1d7faff452de71dbb07a9604 -Author: Xan Lopez -Date: Fri Aug 31 20:41:22 2012 +0200 - - ephy-main: do not run the browser if the migrator fails - - Lot's of nasty things could potentially happen. - - src/ephy-main.c | 9 +++++++-- - 1 file changed, 7 insertions(+), 2 deletions(-) - -commit f930456a362922ea87f0c86344546707847682d2 -Author: Claudio Saavedra -Date: Fri Aug 31 20:00:40 2012 +0300 - - ephy-frecent-store: set default icon in new rows - - Otherwise they look empty until the icon is loaded. This is specially - annoying when opening the overview and all the icons are scheduled for load. - - lib/widgets/ephy-frecent-store.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit b6a62382cb0b9029052f81151a578d8ce572c703 -Author: Claudio Saavedra -Date: Fri Aug 31 19:28:11 2012 +0300 - - ephy-history-service: Do not emit signals from the history service thread - - We were naively emitting a few signals from the history service thread - while doing this is not thread safe. Add a few helper methods to run - this in a main loop idle. - - https://bugzilla.gnome.org/show_bug.cgi?id=683040 - - lib/history/ephy-history-service.c | 88 ++++++++++++++++++++++++++++++++++++-- - 1 file changed, 85 insertions(+), 3 deletions(-) - -commit 67736b8c9a8917c522e7432bda74379f768ec501 -Author: Claudio Saavedra -Date: Thu Aug 30 16:22:42 2012 +0300 - - ephy-frecent-store: animate hiding of store items - - Add a ephy_overview_store_animated_remove() that shrinks the thumbnail - in a timeout until it's small enough and then removes it from the - model. - - lib/widgets/ephy-frecent-store.c | 36 +++++++++++++++++--- - lib/widgets/ephy-overview-store.c | 70 +++++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-overview-store.h | 12 +++++++ - 3 files changed, 113 insertions(+), 5 deletions(-) - -commit 02542c5fd0fde31161b6fe64128e8bf0a029b028 -Author: Claudio Saavedra -Date: Fri Aug 31 13:45:52 2012 +0300 - - ephy-overview-store: fix history service reference handling - - lib/widgets/ephy-overview-store.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0a4c3767f6e8bc5b1e7c9ec6faad124e54dff24b -Author: Claudio Saavedra -Date: Fri Aug 31 13:45:22 2012 +0300 - - ephy-frecent-store: plug string leak - - lib/widgets/ephy-frecent-store.c | 1 + - 1 file changed, 1 insertion(+) - -commit 7ca9e06178c842f4624b090f2e0dbf068a9f708f -Author: Claudio Saavedra -Date: Fri Aug 31 12:56:04 2012 +0300 - - ephy-embed-shell: load the new thumbnail frame and use it in the overview store - - embed/ephy-embed-shell.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 8d96fd1b5631dab7783e860338f6f547626babf7 -Author: Claudio Saavedra -Date: Fri Aug 31 12:54:56 2012 +0300 - - ephy-overview-store: add icon-frame property - - Instead of using a hardcoded cairo frame, add a property to define the - frame around thumbnails. Also rework the code around the - default-thumbnail property to make it possible to use this there as - well. - - lib/widgets/ephy-overview-store.c | 178 +++++++++++++------------------------- - lib/widgets/ephy-overview-store.h | 3 + - 2 files changed, 62 insertions(+), 119 deletions(-) - -commit d3df6091ffbf0f60f1468fd75afdc6939419d60d -Author: Claudio Saavedra -Date: Fri Aug 31 12:51:52 2012 +0300 - - ephy-overview-store: add missing dispose implementation - - lib/widgets/ephy-overview-store.c | 14 ++++++++++++++ - 1 file changed, 14 insertions(+) - -commit 8750a9c38420ec0fda448f715d974580a023f7a3 -Author: Claudio Saavedra -Date: Fri Aug 31 12:50:29 2012 +0300 - - ephy-embed-shell: use the new artwork for the overview's default thumbnail - - embed/ephy-embed-shell.c | 16 ++++++---------- - 1 file changed, 6 insertions(+), 10 deletions(-) - -commit 6200708d6bc6d37aedf3e7f7199ab4d87cd0cf3c -Author: Claudio Saavedra -Date: Fri Aug 31 12:48:28 2012 +0300 - - data: add artwork for the overview - - Thumbnail for missing snapshots and thumbnail frame by Jakub Steiner. - - data/Makefile.am | 5 +++++ - data/missing-thumbnail.png | Bin 0 -> 1647 bytes - data/thumbnail-frame.png | Bin 0 -> 1238 bytes - embed/Makefile.am | 1 + - 4 files changed, 6 insertions(+) - -commit 2f7c4405bd300e90e7c46454473208bd486a69ab -Author: Claudio Saavedra -Date: Thu Aug 30 11:21:08 2012 +0300 - - ephy-removable-pixbuf-renderer: use the pixbuf size to determine the position of the close x - - lib/widgets/ephy-removable-pixbuf-renderer.c | 20 ++++++++++++++++---- - 1 file changed, 16 insertions(+), 4 deletions(-) - -commit 7263dad918cab2464f332cabfb7047bb5efc34a1 -Author: Claudio Saavedra -Date: Wed Aug 29 18:57:54 2012 +0300 - - ephy-session: don't check loading status for the overview page - - Since this is a special page, there's no need for this. - - src/ephy-session.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 3a558c289b0dd42b18f12aeb1ef5d5de0e82b47e -Author: Claudio Saavedra -Date: Wed Aug 29 18:24:25 2012 +0300 - - ephy-snapshot-service: change the size of the thumbnails - - Squared snapshots are not that great, so use a 4:3 aspect ratio. - - lib/ephy-snapshot-service.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 24a912ed20ef0166222112a7327662e71be9a9c5 -Author: Claudio Saavedra -Date: Wed Aug 29 18:23:26 2012 +0300 - - ephy-web-view: store the source tag for the snapshot idle - - To avoid warnings if the view dissapears before the source function is - called. - - embed/ephy-web-view.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit a23f1d8e71f93ae1b28697039c71578a4d239a30 -Author: Claudio Saavedra -Date: Wed Aug 29 18:22:30 2012 +0300 - - ephy-web-view: use is_history_frozen() to avoid snapshotting error pages - - Since this is used to freeze the history when an error page is being - loaded, we can rely on it. Since the snapshots are taken in the - FINISHED state, move the call to thaw after that. - - embed/ephy-web-view.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit ea9fb4c74223c01a278e6e414c72cc4fdc089c30 -Author: Claudio Saavedra -Date: Wed Aug 29 17:42:11 2012 +0300 - - ephy-overview-store: set the default snapshot only when failing to retrieve one - - This way there's no flashing of thumbnails between the query and the reply. - - lib/widgets/ephy-overview-store.c | 17 ++++++++--------- - 1 file changed, 8 insertions(+), 9 deletions(-) - -commit a24c76b3eadb61b1964d6a7e1164c6a9bcf247e2 -Author: Claudio Saavedra -Date: Wed Aug 29 17:40:23 2012 +0300 - - ephy-overview-store: add internal helper for setting the default icon - - Just to spare some code repetition. - - lib/widgets/ephy-overview-store.c | 25 +++++++++++++++++-------- - 1 file changed, 17 insertions(+), 8 deletions(-) - -commit ad274ecde055542fb8b867f7ff4247f5f2188c16 -Author: Claudio Saavedra -Date: Wed Aug 29 16:45:44 2012 +0300 - - ephy-web-view: Lower the priority of the snapshotting task - - This makes it more likely that all rendering in the page has already - happenend, specially under heavy page load. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2418032b1618e0a2c142fe8ec8149f851d8eaae9 -Author: Claudio Saavedra -Date: Wed Aug 29 14:16:16 2012 +0300 - - ephy-overview: define the overview title string here - - Instead of duplicating the string everywhere. - - embed/ephy-overview.h | 2 ++ - embed/ephy-web-view.c | 3 ++- - po/POTFILES.in | 1 + - src/ephy-navigation-history-action.c | 3 ++- - 4 files changed, 7 insertions(+), 2 deletions(-) - -commit b3d879a1b505f9dec034b1ec4f5568c0226bb6f4 -Author: Claudio Saavedra -Date: Wed Aug 29 13:53:01 2012 +0300 - - ephy-overview-store: remove spurious warning - - lib/widgets/ephy-overview-store.c | 1 - - 1 file changed, 1 deletion(-) - -commit c02832ac1f68cbdcf3fe97348983a64455137d8e -Author: Claudio Saavedra -Date: Wed Aug 29 13:43:45 2012 +0300 - - ephy-overview-store: use the age of a thumbnail only to decide when update is needed - - Currently, we were not retrieving thumbnails from the service if they - were outdated. This would cause some pages in the overview not to - display a thumbnail at all even if one is available (but old). - - Fix this by always retrieving a thumbnail but storing its mtime in the - model, and making ephy_snapshot_store_needs_snapshot() check the age - of snapshots when deciding whether a snapshot update is needed or not. - - lib/widgets/ephy-overview-store.c | 27 +++++++++++++++++---------- - lib/widgets/ephy-overview-store.h | 1 + - 2 files changed, 18 insertions(+), 10 deletions(-) - -commit 4e9047e324c443b666f07cc356f38a21702c9268 -Author: Xan Lopez -Date: Wed Aug 29 02:26:26 2012 +0200 - - ephy-navigation-history-action: fix overview title - - The overview is not an actual web page, so it won't have a title as - far as WebKit is concerned. Hardcode "Most Visited" as its title. - - src/ephy-navigation-history-action.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit d8ae12d7144c26575e7c6ed167fcfe13fa8cdd96 -Author: Claudio Saavedra -Date: Wed Apr 4 17:13:52 2012 +0300 - - ephy-window: show the overview on alt+home - - src/ephy-window.c | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -commit bab19d14a7714bc7929cc7d51699e59127fa921e -Author: Claudio Saavedra -Date: Tue Aug 28 18:52:20 2012 +0300 - - ephy-home-action: don't assume this will only be used for "NewTab" - - If the action name is not "NewTab", just open the home page. - - src/ephy-home-action.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit dadd9beeff69b082e81f9c4833b06c842cb54927 -Author: Claudio Saavedra -Date: Tue Aug 28 18:51:11 2012 +0300 - - ephy-window: don't assume going to the homepage means opening a new tab - - This is already explicitly set by EphyHomeAction in the new tab - special case. - - src/ephy-window.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit cd363f052824a52e5ff32cd969076c42c54ab7bb -Author: Claudio Saavedra -Date: Tue Aug 28 17:13:20 2012 +0300 - - ephy-window: disable default actions when the active embed is showing an overview - - src/ephy-window.c | 19 +++++++++++++++++++ - 1 file changed, 19 insertions(+) - -commit 68c462736befcc1a84929a48b1ccfb09de8655ba -Author: Claudio Saavedra -Date: Mon Aug 27 17:25:51 2012 +0300 - - ephy-web-view: define the special-cased title for the overview - - embed/ephy-web-view.c | 27 +++++++++++++++++++-------- - 1 file changed, 19 insertions(+), 8 deletions(-) - -commit c1fbb17c2337941973386c1c06dc3ab414d73062 -Author: Claudio Saavedra -Date: Mon Aug 27 17:05:48 2012 +0300 - - ephy-window: add ephy-about:overview to the list of hidden urls - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 61db344355c403fe70e00f7d350d74f25bc563aa -Author: Claudio Saavedra -Date: Mon Aug 27 16:51:03 2012 +0300 - - ephy-overview: improve layouting of items in the overview - - Make the iconview centered in the overview, while expanding this one - and enabling scrollbars in both directions. This allows the window - to be resized at will. - - embed/ephy-overview.c | 18 +++++++++++------- - 1 file changed, 11 insertions(+), 7 deletions(-) - -commit 1f15a7797eb2dc25b13ee4e3835734b7ac42e92d -Author: Claudio Saavedra -Date: Mon Aug 27 11:45:32 2012 +0300 - - ephy-overview-store: use the thumbnail saving time to decide whether an update is needed - - lib/widgets/ephy-overview-store.c | 60 +++++++++++++++++++++++---------------- - 1 file changed, 36 insertions(+), 24 deletions(-) - -commit affeb74c66da52079ff49f148f4220ad8b52515f -Author: Claudio Saavedra -Date: Mon Aug 27 11:33:43 2012 +0300 - - ephy-history-service: add API to store a url's thumbnail update time - - lib/history/ephy-history-service.c | 43 ++++++++++++++++++++++++++++++++++++++ - lib/history/ephy-history-service.h | 1 + - 2 files changed, 44 insertions(+) - -commit 54edad24dc20d71b9c4e3056533dd8ee6a10e03e -Author: Claudio Saavedra -Date: Mon Aug 27 11:26:20 2012 +0300 - - ephy-history-service: extend to support URL thumbnail time - - lib/history/ephy-history-service-urls-table.c | 10 ++++++---- - lib/history/ephy-history-types.c | 2 ++ - lib/history/ephy-history-types.h | 1 + - 3 files changed, 9 insertions(+), 4 deletions(-) - -commit 3005b30e3f657618f506eac9320cf54b86b9c0ed -Author: Claudio Saavedra -Date: Thu Aug 23 18:51:45 2012 +0300 - - Add about:overview to actually go to overview mode - - embed/ephy-embed.c | 6 +++++- - embed/ephy-web-view.c | 4 ++-- - src/ephy-home-action.c | 2 +- - 3 files changed, 8 insertions(+), 4 deletions(-) - -commit 09b60aea4d1ad8349e18b17cfb3f7ca5d68498cf -Author: Claudio Saavedra -Date: Mon Aug 20 19:05:18 2012 +0300 - - ephy-web-view: take a snapshot if needed when the page load finishes - - embed/ephy-web-view.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit 9fe45e52bb0629bc28f50a62d3d9995f5a6a8e52 -Author: Claudio Saavedra -Date: Mon Aug 20 19:00:45 2012 +0300 - - ephy-window: handle open-link for the overview in the active tab - - src/ephy-window.c | 20 ++++++++++++++++++++ - 1 file changed, 20 insertions(+) - -commit 38b410011b97e995ee7feb1c448e903d2f323098 -Author: Claudio Saavedra -Date: Mon Aug 20 13:54:32 2012 +0300 - - ephy-embed: add the overview and a overview-mode property - - Toggling this property will toggle visibility of the overview and the - paned with the normal embed contents. - - embed/ephy-embed.c | 113 +++++++++++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed.h | 5 +++ - src/Makefile.am | 2 + - 3 files changed, 120 insertions(+) - -commit 7e8d47c21673696915cf7770e4f48a71aaf06e98 -Author: Claudio Saavedra -Date: Thu Apr 5 16:18:24 2012 +0300 - - Add EphyOverview widget - - This widget entails two GdMainViews, one for the frecency model and - one for the active model. - - https://bugzilla.gnome.org/show_bug.cgi?id=455173 - - embed/Makefile.am | 2 + - embed/ephy-overview.c | 143 ++++++++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-overview.h | 58 ++++++++++++++++++++ - 3 files changed, 203 insertions(+) - -commit 935122ff3e1e3bbfceaade8914e407ffaec5aaac -Author: Claudio Saavedra -Date: Wed Aug 22 18:41:34 2012 +0300 - - ephy-embed-shell: set the default icon for the frecent store - - Add a helper method for this. - - embed/ephy-embed-shell.c | 29 +++++++++++++++++++++++++++++ - 1 file changed, 29 insertions(+) - -commit 42f980437991a70c387ca5e81b97805dbfa2d85d -Author: Claudio Saavedra -Date: Mon Aug 20 13:21:53 2012 +0300 - - ephy-embed-shell: add a frecent store to the shell - - Since we will use the overview in each tab and these should share - the underlying model. - - embed/ephy-embed-shell.c | 31 +++++++++++++++++++++++++++++++ - embed/ephy-embed-shell.h | 3 +++ - src/Makefile.am | 4 ++++ - 3 files changed, 38 insertions(+) - -commit 224d74346147e3810069dc33367a49f4b3a6091c -Author: Claudio Saavedra -Date: Wed Apr 4 16:36:59 2012 +0300 - - Add EphyFrecentStore class files - - This subclass of EphyOverviewStore displays the most frecently visited - pages. - - https://bugzilla.gnome.org/show_bug.cgi?id=455173 - - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-frecent-store.c | 404 +++++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-frecent-store.h | 67 +++++++ - 3 files changed, 473 insertions(+) - -commit 8d260a1a0af94d01e5b90db70746a83bf5ea71de -Author: Claudio Saavedra -Date: Sun Aug 12 19:41:21 2012 +0300 - - ephy-history-service: add a method to set/unset a row hidden - - lib/history/ephy-history-service.c | 45 ++++++++++++++++++++++++++++++++++++++ - lib/history/ephy-history-service.h | 1 + - 2 files changed, 46 insertions(+) - -commit 7c07f1031fea5582d2068bcc813cfa54afef10b7 -Author: Claudio Saavedra -Date: Sun Aug 12 19:40:07 2012 +0300 - - ephy-history-service: add backend bits to support the new hidden column - - lib/history/ephy-history-service-urls-table.c | 17 ++++++++++++----- - lib/history/ephy-history-types.c | 2 ++ - lib/history/ephy-history-types.h | 2 ++ - 3 files changed, 16 insertions(+), 5 deletions(-) - -commit 03c2cd35009afd4f572130c44ca4018f425a9def -Author: Claudio Saavedra -Date: Sun Aug 12 19:01:33 2012 +0300 - - ephy-history-service-urls-table: add new rows to the table - - These rows store information relevant to the overview: the update time - of the url's thumbnail and wheter the url should be hidden from the - overview's frecent view. - - lib/history/ephy-history-service-urls-table.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit f2036c2967cc0366f466f44dab3fb722cfe2897f -Author: Claudio Saavedra -Date: Fri Aug 10 20:47:17 2012 +0300 - - ephy-history-service: add "host-deleted" signal - - lib/history/ephy-history-service.c | 12 ++++++++++++ - 1 file changed, 12 insertions(+) - -commit a6ddbcdc007ac04fc191abd6ad829eaa0c12e54e -Author: Claudio Saavedra -Date: Fri Aug 10 20:45:12 2012 +0300 - - ephy-history-service: add "url-deleted" signal - - lib/history/ephy-history-service.c | 12 ++++++++++++ - 1 file changed, 12 insertions(+) - -commit 7bcd81c6a23bd6693816124639628a4547169726 -Author: Claudio Saavedra -Date: Thu Aug 9 16:57:18 2012 +0300 - - ephy-history-service: add "url-title-changed" signal - - lib/history/ephy-history-service.c | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -commit 2c6125c8768c138897d1d2b91b711520d61c0eee -Author: Claudio Saavedra -Date: Sun Aug 12 18:59:45 2012 +0300 - - ephy-profile-migrator: New migrator for history backend changes - - This adds a couple of new required columns to the urls table. - - lib/ephy-profile-migrator.c | 47 ++++++++++++++++++++++++++++++++++++++++++++- - lib/ephy-profile-utils.h | 2 +- - 2 files changed, 47 insertions(+), 2 deletions(-) - -commit 54810099280f6086b79f92db0a2722b434c01657 -Author: Claudio Saavedra -Date: Wed Jan 25 18:23:00 2012 +0200 - - Add the base EphyOverviewStore model - - This should be subclassed by the models for the history and/or - currently open views. - - https://bugzilla.gnome.org/show_bug.cgi?id=455173 - - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-overview-store.c | 557 ++++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-overview-store.h | 94 +++++++ - 3 files changed, 653 insertions(+) - -commit 8ddda2707becfbf0fa90159c99f5c7a89a961b79 -Author: Claudio Saavedra -Date: Fri May 25 11:05:02 2012 +0200 - - gd-main-view: add a "item-deleted" signal to handle user-triggered item deletions - - GdMainView connects to GdMainViewGeneric:delete-item-clicked and emits - its :item-deleted signal which, if unhandled, simply removes the item - in question from the underlying model. - - Users of GdMainView can handle this signal and stop the default - handler from being invoked, thus avoiding removal of the item. - - lib/widgets/gd-main-view.c | 56 ++++++++++++++++++++++++++++++++++++++++++++++ - lib/widgets/gd-main-view.h | 5 +++++ - 2 files changed, 61 insertions(+) - -commit 9eb6bdb143a1dc91f36d92899fa68358e2b47fe4 -Author: Claudio Saavedra -Date: Fri May 25 10:54:16 2012 +0200 - - gd-main-icon-view: use the new renderer to add a close button to items - - Also, emit the GdMainViewGeneric:delete-item-clicked when the button - is clicked. The signal is still unhandled, so clicking in the button - will not make any difference yet. - - lib/widgets/gd-main-icon-view.c | 14 +++++++++++++- - 1 file changed, 13 insertions(+), 1 deletion(-) - -commit 86808938842a9998ea0aa801cb1759739d751a18 -Author: Claudio Saavedra -Date: Fri May 25 10:48:54 2012 +0200 - - gd-main-view-generic: add "delete-element-clicked" signal to the interface - - Implementors of this interface may connect emit this signal to notify - the GdMainView when a user is requesting to delete one item from the - view. - - lib/widgets/gd-main-view-generic.c | 23 ++++++++++++++++++++++- - lib/widgets/gd-main-view-generic.h | 2 ++ - 2 files changed, 24 insertions(+), 1 deletion(-) - -commit e0e656f9a0f6924f2c20195b80e87e102f9f950d -Author: Claudio Saavedra -Date: Tue May 22 16:44:00 2012 +0300 - - ephy-removable-pixbuf-renderer: new renderer for the overview - - This is a renderer that draws a "close" button on top of its contents - and that emits a signal when the button is activated. - - lib/widgets/Makefile.am | 64 ++++++++ - lib/widgets/ephy-removable-pixbuf-renderer.c | 221 +++++++++++++++++++++++++++ - lib/widgets/ephy-removable-pixbuf-renderer.h | 66 ++++++++ - 3 files changed, 351 insertions(+) - -commit 5793ceba3440c18f43cd0deb281db7ed9b7bc53b -Author: Claudio Saavedra -Date: Tue Jan 24 19:21:24 2012 +0200 - - Add GdMainView for use in the overview - - This widget courtesy of gnome-documents - - https://bugzilla.gnome.org/show_bug.cgi?id=455173 - - lib/widgets/Makefile.am | 12 + - lib/widgets/gd-main-icon-view.c | 204 +++++++++ - lib/widgets/gd-main-icon-view.h | 74 ++++ - lib/widgets/gd-main-list-view.c | 224 ++++++++++ - lib/widgets/gd-main-list-view.h | 80 ++++ - lib/widgets/gd-main-view-generic.c | 155 +++++++ - lib/widgets/gd-main-view-generic.h | 97 +++++ - lib/widgets/gd-main-view.c | 725 ++++++++++++++++++++++++++++++++ - lib/widgets/gd-main-view.h | 103 +++++ - lib/widgets/gd-toggle-pixbuf-renderer.c | 198 +++++++++ - lib/widgets/gd-toggle-pixbuf-renderer.h | 75 ++++ - lib/widgets/gd-two-lines-renderer.c | 528 +++++++++++++++++++++++ - lib/widgets/gd-two-lines-renderer.h | 75 ++++ - 13 files changed, 2550 insertions(+) - -commit b447f3c0080796b087386e013c75a3613f79d86b -Author: Claudio Saavedra -Date: Tue Jan 24 16:07:39 2012 +0200 - - Add basic tests for EphySnapshotService - - https://bugzilla.gnome.org/show_bug.cgi?id=668578 - - tests/Makefile.am | 4 + - tests/ephy-snapshot-service-test.c | 266 +++++++++++++++++++++++++++++++++++++ - 2 files changed, 270 insertions(+) - -commit fb5f322406068fb9e514d204f9ba999bc40e2c55 -Author: Claudio Saavedra -Date: Tue Jan 24 14:25:29 2012 +0200 - - Add a service for snapshotting webpages - - This service provides pixbufs for URLs while caching these locally as - thumbnails. gnome-desktop-thumbnail is used to handle caching. - - https://bugzilla.gnome.org/show_bug.cgi?id=668578 - - configure.ac | 4 + - lib/Makefile.am | 2 + - lib/ephy-snapshot-service.c | 456 ++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-snapshot-service.h | 94 +++++++++ - 4 files changed, 556 insertions(+) - -commit 95b305ef37cacc0d1e96ae07cd24f39f040fbc27 -Author: Xan Lopez -Date: Fri Aug 31 19:43:19 2012 +0200 - - ephy-profile-utils: reorder includes - - lib/ephy-profile-utils.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit c9644b2636ccd87a116f303fd0373c89950629ae -Author: Xan Lopez -Date: Fri Aug 31 17:43:50 2012 +0200 - - ephy-history-service: fix CLEAR signal emission - - We were only emitting it if we happened to have a callback method - associated with the history message, that does not make sense. - - lib/history/ephy-history-service.c | 8 +++++--- - 1 file changed, 5 insertions(+), 3 deletions(-) - -commit 185dab41758fee4ee291d714ae8dc237316752e3 -Author: Xan Lopez -Date: Fri Aug 31 16:52:40 2012 +0200 - - ephy-notebook: be more careful with event coordinates on right click - - The code assumed clicks would happen in the tab label area, but this - is not always the case (for instance when our child forwards an event - to us). So always check the button press is actually within the tab - allocation rectangle before acting on it. - - src/ephy-notebook.c | 10 +--------- - 1 file changed, 1 insertion(+), 9 deletions(-) - -commit aa5581ab2171dfcb83e8fa4bed0e96dfa7d45423 -Author: Xan Lopez -Date: Fri Aug 31 14:46:02 2012 +0200 - - ephy-session: remove some now useless headers - - src/ephy-session.c | 3 --- - 1 file changed, 3 deletions(-) - -commit 293e537064e497f2e54ffa74d1d969d651e804e1 -Author: Xan Lopez -Date: Fri Aug 31 14:44:50 2012 +0200 - - ephy-session: use ephy_string_to_int instead of reimplementing it - - EphySession had a private, almost-identical copy. Just use the - function in lib/ephy-string.[ch] - - src/ephy-session.c | 38 ++++++++------------------------------ - 1 file changed, 8 insertions(+), 30 deletions(-) - -commit 91b9b4b6aa199d3feac08f8ae8f8398064ab0d44 -Author: Xan Lopez -Date: Wed Aug 29 21:58:43 2012 +0200 - - ephy-session: another micro-fix - - While we are at it, the fact that 'url' is not NULL is checked before - the if block, so this is also redundant. - - src/ephy-session.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit cea214617f12ce725dcead5071b6b50831bd2488 -Author: Duarte Loreto -Date: Wed Aug 29 20:12:13 2012 +0100 - - Updated Portuguese translation - - po/pt.po | 2179 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1207 insertions(+), 972 deletions(-) - -commit 0591aad88596e01287e44f89186afca198c7b639 -Author: Claudio Saavedra -Date: Wed Aug 29 18:56:07 2012 +0300 - - ephy-session: remove redundant string comparison - - The previous clause already ensures this won't be TRUE. - - src/ephy-session.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 33c6eb2bbc1e66092919ae253c120a7c6dce3204 -Author: Xan Lopez -Date: Wed Aug 29 16:18:40 2012 +0200 - - ephy-file-helpers: sort includes - - lib/ephy-file-helpers.c | 18 +++++++----------- - 1 file changed, 7 insertions(+), 11 deletions(-) - -commit db0ec5890ede6b6eefced0b181b3996077d76f3c -Author: Xan Lopez -Date: Wed Aug 29 16:16:51 2012 +0200 - - ephy-profile-migrator: do nothing if there's no profile dir - - If there's no profile dir there should not be anything to do for the - profile migrator (since in theory epiphany has never been - executed). This might backfire for people that manually mess with - their profile dir (removing it), but those people hopefully know what - they are doing. - - lib/ephy-profile-migrator.c | 12 ++++++++++++ - 1 file changed, 12 insertions(+) - -commit af52bd9179d34a6273e8279fb23ed50eea9c42b8 -Author: Xan Lopez -Date: Wed Aug 29 16:16:12 2012 +0200 - - ephy-file-helpers: add '.migrated' file to newly created profile dirs - - Otherwise we'll try to migrate old data in new ephy installs, which - does not make sense. - - lib/ephy-file-helpers.c | 29 +++++++++++++++++++++-------- - 1 file changed, 21 insertions(+), 8 deletions(-) - -commit fc20573cd201f12bf13316be050736a9e4a098be -Author: Aurimas Černius -Date: Tue Aug 28 23:22:00 2012 +0300 - - Updated Lithuanian translation - - po/lt.po | 673 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 350 insertions(+), 323 deletions(-) - -commit 5c91f8c247c97eb5a0fc247e22af902b7bfece76 -Author: Nilamdyuti Goswami -Date: Mon Aug 27 23:12:20 2012 +0530 - - Implemented FUEL entries to Assamese translation - - po/as.po | 86 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 43 insertions(+), 43 deletions(-) - -commit e38f7e781bed543e06123166587a315e7309e583 -Author: Yuri Myasoedov -Date: Mon Aug 27 17:21:10 2012 +0400 - - Updated Russian translation - - po/ru.po | 2299 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1185 insertions(+), 1114 deletions(-) - -commit c466adfc145166458675062bfaa335ca1186109c -Author: Tom Tryfonidis -Date: Sun Aug 26 23:01:47 2012 +0300 - - Updated Greek translation - - po/el.po | 783 ++++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 479 insertions(+), 304 deletions(-) - -commit 575ff3bfc8c95e1fcb70b5aedf2809ad2f563afc -Author: Xan Lopez -Date: Sun Aug 26 14:50:41 2012 +0200 - - ephy-embed-prefs: tiny cosmetic fixes - - embed/ephy-embed-prefs.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 5b9ba4eaa1f6b20b7283028f0371d3bf776399f8 -Author: Xan Lopez -Date: Sun Aug 26 03:15:31 2012 +0200 - - ephy-web-view: do not allocate variables before they are needed - - Fixes a potential leak in WebKit2 mode. - - embed/ephy-web-view.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 5aa6d52df9f24a3bfae876f3ac10b29b7b930dc1 -Author: Xan Lopez -Date: Sat Aug 25 18:59:09 2012 +0200 - - ephy-web-view: avoid getting a 'Blank page' title for non titled pages - - In WebKit2 we'll get no notify::title for pages without title, so - check this case and reset the title to NULL, which for non-blank pages - will use the address as title. - - This also removes the last notify::embed-title calls outside of - ephy_web_view_set_title. - - Cherry-picked from a patch by Carlos Garcia. - - https://bugzilla.gnome.org/show_bug.cgi?id=682354 - - embed/ephy-web-view.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 933d7b788afb9b64e0a75cc060dc3ec09adc04f3 -Author: Xan Lopez -Date: Sat Aug 25 00:47:19 2012 +0200 - - ephy-web-view: drop superflous notify - - I don't think notifying 'embed-title' here makes much sense. If it - does it's wrong, so if something breaks we'll fix it accordingly. - - embed/ephy-web-view.c | 2 -- - 1 file changed, 2 deletions(-) - -commit b83dafd3b76238d2d2104364c8b188de3bd8e0a1 -Author: Xan Lopez -Date: Fri Aug 24 17:00:48 2012 +0200 - - ephy-web-view: remove more "invisible URI" logic - - EphyWindow takes care of this now, so don't change the EphyWebView - address to NULL when we load about:blank. - - embed/ephy-web-view.c | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -commit 2d13b6f05db1f5982b790769001549254b2480f9 -Author: Xan Lopez -Date: Fri Aug 24 15:58:15 2012 +0200 - - ephy-window: centralize the logic about invisible URIs in one place - - Let's make EphyWindow the one in charge of deciding whether a URI is - actually shown or not in the location entry. This allows to remove - some code to that effect in EphyLocationController (and perhaps some - more in EphyWebView in the future), and makes this feature more - extensible for the future. - - lib/widgets/ephy-location-entry.c | 2 +- - src/ephy-window.c | 34 +++++++++++++++++++++++++++++++++- - 2 files changed, 34 insertions(+), 2 deletions(-) - -commit 0a97a46d1b273810c1fa46b4d573594d399f4ab4 -Author: Piotr Drąg -Date: Fri Aug 24 00:44:43 2012 +0200 - - Updated Polish translation - - po/pl.po | 1677 ++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 1028 insertions(+), 649 deletions(-) - -commit 3a0329364ee7a67a75a82d86cc76603ecdc6a3dc -Author: Claudio Saavedra -Date: Thu Aug 23 23:17:47 2012 +0300 - - [release] 3.5.90 - - NEWS | 18 ++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 19 insertions(+), 1 deletion(-) - -commit 021e81e89dc34e0769c6263ddf18a1415af407ae -Author: Tobias Endrigkeit -Date: Thu Aug 23 19:14:28 2012 +0200 - - Updated German translation - - po/de.po | 626 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 335 insertions(+), 291 deletions(-) - -commit 89cea2719b229ff64cf5b59e110839ee8c3ca12e -Author: Carlos Garcia Campos -Date: Thu Aug 23 11:38:15 2012 +0200 - - window-commands: Get the suggested filename from the response in WebKit2 too - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b09ae523dc5d2dda70661233f66df2c9683cb7a9 -Author: Carlos Garcia Campos -Date: Wed Aug 22 17:45:14 2012 +0200 - - ephy-embed-prefs: Pass an array of languages to spellchecker in WebKit2 - - The API has changed to receive a char ** instead of a string containing - a comma-separated list of languages. - - embed/ephy-embed-prefs.c | 36 ++++++++++++++++++++++++------------ - 1 file changed, 24 insertions(+), 12 deletions(-) - -commit 4bd8690c2a13b3cb1566297c6b6167ee17d78118 -Author: Kjartan Maraas -Date: Wed Aug 22 10:55:19 2012 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 573 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 308 insertions(+), 265 deletions(-) - -commit 7b67da4dc2d4eb2364be6db6239504155ea3edf3 -Author: Carlos Garcia Campos -Date: Tue Aug 21 17:23:00 2012 +0200 - - ephy-embed-single: Pass NULL as destroy notify to webkit_web_context_register_uri_scheme() - - A GDestroyNotify paramater has been recently added. - - embed/ephy-embed-single.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit cb6d7aa9349f7b7fbe6456cc49009152a812530b -Author: Carlos Garcia Campos -Date: Tue Aug 21 17:21:57 2012 +0200 - - ephy-web-view: Use webkit_web_view_load_alternate_html() for error pages in WebKit2 - - webkit_web_view_replace_content() has been removed - - embed/ephy-web-view.c | 18 ++++++++---------- - 1 file changed, 8 insertions(+), 10 deletions(-) - -commit eab8da2259d5a79d5e892cda83a28cdaef762471 -Author: Carlos Garcia Campos -Date: Tue Aug 21 14:34:15 2012 +0200 - - ephy-web-view: Take a reference of the certificate returned by the response - - embed/ephy-web-view.c | 1 + - 1 file changed, 1 insertion(+) - -commit 375b5377bb923f35cb422b9b560ccc0afb338550 -Author: Dirgita -Date: Tue Aug 21 15:11:29 2012 +0700 - - Updated Indonesian translation - - po/id.po | 1098 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 615 insertions(+), 483 deletions(-) - -commit 8700fcbf2ed3b201d8ce58cf7f388799579cc9a4 -Author: Gustavo Noronha Silva -Date: Mon Aug 20 16:16:25 2012 -0300 - - ephy-embed-single.c: move unstable API defines to be the very first thing in the file - - It may happen that config.h or ephy-embed-single.h end up including soup.h, - which would cause the soup-password-manager.h header file to be included - without the defines. - - https://bugzilla.gnome.org/show_bug.cgi?id=682289 - - embed/ephy-embed-single.c | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -commit 45ff98169957a690d0dc93ad4f05f31605409ae2 -Author: Gustavo Noronha Silva -Date: Mon Aug 20 15:45:39 2012 -0300 - - ephy-embed-single: check for SOUP_TYPE_PASSWORD_MANAGER_GNOME - - That is the type we actually use. - - https://bugzilla.gnome.org/show_bug.cgi?id=682289 - - embed/ephy-embed-single.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c4617cd71281139749e5103c0b7fbf38eec93b81 -Author: Xan Lopez -Date: Fri Aug 17 17:32:55 2012 +0200 - - ephy-string: use new coding style - - lib/ephy-string.c | 745 ++++++++++++++++++++++++++---------------------------- - 1 file changed, 361 insertions(+), 384 deletions(-) - -commit d4253831bba6bfa2268c07c42e82d8d6272a4f0e -Author: Xan Lopez -Date: Fri Aug 17 17:25:25 2012 +0200 - - ephy-web-view: use ephy_string_get_host_name - - Saves some code duplication. - - embed/ephy-web-view.c | 24 +++++++++--------------- - 1 file changed, 9 insertions(+), 15 deletions(-) - -commit 70b9a089b39208856f73e26d533d4912bb37050d -Author: Xan Lopez -Date: Fri Aug 17 17:24:36 2012 +0200 - - ephy-string: improve a bit ephy_string_get_host_name - - And add unit tests for it. - - lib/ephy-string.c | 9 +++++++ - tests/Makefile.am | 4 +++ - tests/ephy-string-test.c | 70 ++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 83 insertions(+) - -commit cf9c1a366b1424ee55e621302c5cba02803832a8 -Author: Carlos Garcia Campos -Date: Thu Aug 16 10:46:42 2012 +0200 - - Port save as to WebKit2 - - Use webkit_web_view_save() API for HTML pages that saves the web page - into a MHTML file. For any other MIME types supported by the web view, - save the main resource data to a file. - - https://bugzilla.gnome.org/show_bug.cgi?id=679368 - - embed/ephy-web-view.c | 73 +++++++++++++++++++++++++++++++++++++++++++++---- - lib/ephy-file-chooser.c | 2 ++ - src/window-commands.c | 6 +++- - 3 files changed, 75 insertions(+), 6 deletions(-) - -commit 12b8cab14f3cb4c09e5ee8afb9b438113b5bd72e -Author: Мирослав Николић -Date: Fri Aug 17 13:18:18 2012 +0200 - - Updated Serbian translation - - po/sr.po | 209 +++++++++++++++++++++++++++++++++------------------------ - po/sr@latin.po | 209 +++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 244 insertions(+), 174 deletions(-) - -commit 5ef84649db632c2514355706a5d33b79099d0095 -Author: Fran Diéguez -Date: Fri Aug 17 00:22:45 2012 +0200 - - Updated Galician translations - - po/gl.po | 135 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 69 insertions(+), 66 deletions(-) - -commit 3823127dab02c6d0108182edaeb4ecd8bd693d8d -Author: Chao-Hsiung Liao -Date: Wed Aug 15 15:08:28 2012 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 242 ++++++++++++++++++++++++++++++++++-------------------------- - po/zh_TW.po | 242 ++++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 278 insertions(+), 206 deletions(-) - -commit 2801de37638347280be76be5c7e34b1237236b7d -Author: Xan Lopez -Date: Tue Aug 14 18:09:08 2012 +0200 - - ephy-web-view: ignore paths when deciding whether a URI has a TLD - - SoupTLD is not happy if we give it something like ".com/blah/blah". - - Add a unit test for this case too. - - embed/ephy-web-view.c | 31 +++++++++++++++++++++++-------- - tests/ephy-web-view-test.c | 1 + - 2 files changed, 24 insertions(+), 8 deletions(-) - -commit 33f9683837f7f1130851c3f234dec00a6c1ae505 -Author: Xan Lopez -Date: Tue Aug 14 16:41:24 2012 +0200 - - ephy-embed-event: some cosmetic fixes - - embed/ephy-embed-event.c | 14 +++----------- - 1 file changed, 3 insertions(+), 11 deletions(-) - -commit e3bacf063d583c69dbbd7a83e58bca777b8fcfde -Author: Carlos Garcia Campos -Date: Wed Jul 11 20:32:21 2012 +0200 - - Show information about web and plugin processes in about:memory - - https://bugzilla.gnome.org/show_bug.cgi?id=679764 - - lib/ephy-smaps.c | 187 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- - 1 file changed, 177 insertions(+), 10 deletions(-) - -commit ad4b199dc292bc14935a5bfe9bd4fcae23e84465 -Author: Xan Lopez -Date: Tue Aug 14 11:37:20 2012 +0200 - - ephy-web-view: do not store error pages in history - - Otherwise we end up with dummy URIs in the history, overwritten titles - ("Oops, could not load..."), etc. - - Add a unit test to make sure we do not regress. - - https://bugzilla.gnome.org/show_bug.cgi?id=655619 - - embed/ephy-web-view.c | 32 +++++++++++++++++++++++++++++- - tests/ephy-web-view-test.c | 49 ++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 80 insertions(+), 1 deletion(-) - -commit 4fb2d11028bb659fe4b6f85cdfe5f79f702c8434 -Author: Carlos Garcia Campos -Date: Wed Jul 4 12:30:42 2012 +0200 - - ephy-window: Add update_link_actions_sensitivity() - - Helper function that will be shared with the WebKit2 implementation. - - src/ephy-window.c | 27 +++++++++++++++++---------- - 1 file changed, 17 insertions(+), 10 deletions(-) - -commit 588a7e744ab54b907e9c22b0c0ee0a3151d20608 -Author: Yaron Shahrabani -Date: Mon Aug 13 23:18:10 2012 +0300 - - Updated Hebrew translation. - - po/he.po | 589 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 317 insertions(+), 272 deletions(-) - -commit 1a2bf54a1f7a949491a8cb5b7beff27eb550100d -Author: Martin Robinson -Date: Mon Aug 13 18:44:17 2012 +0200 - - Use webkit_web_frame_load_alternate_string to load error pages - - webkit_web_view_load_string, which was used previously, does not add - the error page to the back forward list. This means that when you - go back from an error page (n) you will skip directly to an older page - (n-2) or not be able to go back if the error page was the first loaded. - - embed/ephy-web-view.c | 4 +-- - tests/ephy-web-view-test.c | 73 ++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 75 insertions(+), 2 deletions(-) - -commit 7316adc19cc50bde288bbb8a4007dc0d6a9bd078 -Author: Fran Diéguez -Date: Mon Aug 13 14:58:36 2012 +0200 - - Updated Galician translations - - po/gl.po | 749 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 399 insertions(+), 350 deletions(-) - -commit 3a93b3a1e4f9e5422f2d4ed79069cf8d3360af48 -Author: Khaled Hosny -Date: Sun Aug 12 13:31:23 2012 +0200 - - Updated Arabic translation - - po/ar.po | 1940 +++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 1173 insertions(+), 767 deletions(-) - -commit 8806468639d0658092dda1d505b127e4ea47fa1f -Author: Xan Lopez -Date: Sat Aug 11 18:30:24 2012 +0200 - - configure.ac: drop 'ice' and 'sm' dependencies - - Does not seem like we use them anymore. - - configure.ac | 2 -- - 1 file changed, 2 deletions(-) - -commit 46e95c2d48f9a1fb6786655ffc2aca88b252beca -Author: Xan Lopez -Date: Sat Aug 11 18:24:26 2012 +0200 - - autogen.sh: s/SVN/git/ - - autogen.sh | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c85811def92df6c0f406f9eeb7634d4f260b09ab -Author: Daniel Mustieles -Date: Fri Aug 10 11:14:19 2012 +0200 - - Updated Spanish translation - - po/es.po | 290 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 159 insertions(+), 131 deletions(-) - -commit f4f8f56cf418afe0d5f5203d5d240970d37233df -Author: Xan Lopez -Date: Thu Aug 9 23:31:37 2012 +0200 - - Makefile.am: remove obsolete distcheck flags - - Makefile.am | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -commit 95f5095199ea70eb5e0305e2e56a73a61058d015 -Author: Xan Lopez -Date: Thu Aug 9 23:01:09 2012 +0200 - - Mave avahi a hard dependency - - It's listed as a OS core dependency in jhbuild, so let's reduce the - number of moving pieces on our side. - - configure.ac | 41 ++++------------------------------- - src/bookmarks/Makefile.am | 7 ------ - src/bookmarks/ephy-bookmarks.c | 49 +++++------------------------------------- - 3 files changed, 9 insertions(+), 88 deletions(-) - -commit d83176ba808aa06b3ef52fa6f500c74d8b3449e0 -Author: Xan Lopez -Date: Thu Aug 9 20:07:23 2012 +0200 - - ephy-embed-single: style cleanups - - embed/ephy-embed-single.c | 34 ++++++++++++++++------------------ - 1 file changed, 16 insertions(+), 18 deletions(-) - -commit 7aaaacd15ca1934ccbcf9d9f343f25460ed00b5d -Author: Javier Jardón -Date: Fri Aug 10 02:56:46 2012 +0900 - - configure.ac: epiphnay doesnt depend on gnome-doc-utils - - There is no help files - - configure.ac | 1 - - 1 file changed, 1 deletion(-) - -commit f5a70c9a7c7fe5470b30cf556fe0f3938c4eb1e6 -Author: Xan Lopez -Date: Thu Aug 9 18:29:11 2012 +0200 - - ephy-embed-single: make the http disk cache respect private mode - - By storing its data in the temporary profile instead of the user cache - dir. - - https://bugzilla.gnome.org/show_bug.cgi?id=681147 - - embed/ephy-embed-single.c | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - -commit 692a7e79e8d92dca2d26a3e68fc7177e1afe5021 -Author: Nilamdyuti Goswami -Date: Thu Aug 9 21:31:40 2012 +0530 - - Assamese translation updated - - po/as.po | 246 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 137 insertions(+), 109 deletions(-) - -commit 2baca54cfea1c4b12d2b363d744c72f24f7f71c3 -Author: Carlos Garcia Campos -Date: Thu Aug 9 12:22:32 2012 +0200 - - Show information about the SSL errors when clicking on lock icon - - If libgcr is available it's used to show the information about the TLS - certificate in the dialog too. - - https://bugzilla.gnome.org/show_bug.cgi?id=681506 - - configure.ac | 2 + - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-certificate-dialog.c | 330 ++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-certificate-dialog.h | 65 +++++++ - po/POTFILES.in | 1 + - src/ephy-window.c | 27 +++ - 6 files changed, 427 insertions(+) - -commit 833d2ba2b1f1c08c73f47c0bb3ef843fa94c7055 -Author: Carlos Garcia Campos -Date: Wed Aug 8 13:34:42 2012 +0200 - - ephy-web-view: Return the certificate and TLS errors in ephy_web_view_get_security_level - - Remove the unused description parameter an return the TLS certificte and - errors instead. - - embed/ephy-web-view.c | 79 ++++++++++++++++++++++++++------------------------- - embed/ephy-web-view.h | 3 +- - src/ephy-window.c | 3 +- - 3 files changed, 43 insertions(+), 42 deletions(-) - -commit 216d0ceabf0c1e74f0d6f55fcf7bc67e82b7844e -Author: Nilamdyuti Goswami -Date: Thu Aug 9 15:07:15 2012 +0530 - - Assamese translation updated - - po/as.po | 168 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 93 insertions(+), 75 deletions(-) - -commit 8fdfc5cefbf363c1ff145f8b2b9959776b3d159d -Author: Мирослав Николић -Date: Thu Aug 9 08:19:35 2012 +0200 - - Updated Serbian translation - - po/sr.po | 5028 +++++++++++++------------------------------------------ - po/sr@latin.po | 5030 +++++++++++++------------------------------------------- - 2 files changed, 2235 insertions(+), 7823 deletions(-) - -commit 26c6298e4f383c64e64b6886721865542b318067 -Author: Nilamdyuti Goswami -Date: Wed Aug 8 22:21:01 2012 +0530 - - Assamese translation updated - - po/as.po | 1757 +++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 1055 insertions(+), 702 deletions(-) - -commit 64041c39754c38ba7321ad380de687f4d3923d98 -Author: Daniel Mustieles -Date: Tue Aug 7 20:57:05 2012 +0200 - - Updated Spanish translation - - po/es.po | 786 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 404 insertions(+), 382 deletions(-) - -commit 9aa2374013f74fc1a33b3c7d99e74905adbabe1e -Author: Xan Lopez -Date: Tue Aug 7 20:32:48 2012 +0200 - - tests: a couple more 'normalize or autosearch' tests - - tests/ephy-web-view-test.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 8d01e1f1e0ba7c73a4a8c5c15918efb1bb05c464 -Author: Xan Lopez -Date: Tue Aug 7 18:29:54 2012 +0200 - - ephy-web-view: small style cleanups - - embed/ephy-web-view.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit fcf23c9130758199c6519dbc4e59d49254f4681f -Author: Xan Lopez -Date: Tue Aug 7 17:34:50 2012 +0200 - - ephy-web-view: fix URI normalization - - Give SoupTLD nothing but the TLD when trying to figure out whether a - URI actually has a TLD, otherwise it won't be happy. In particular: - - '.gnome.org' -> Not OK - '.org' -> OK - - Add a test for this case. - - embed/ephy-web-view.c | 2 +- - tests/ephy-web-view-test.c | 3 ++- - 2 files changed, 3 insertions(+), 2 deletions(-) - -commit ec5afea3366a6aed8ba8941fc863d004006eb7d7 -Author: Xan Lopez -Date: Tue Aug 7 16:11:30 2012 +0200 - - ephy-location-entry: small cleanups - - lib/widgets/ephy-location-entry.c | 15 ++++++--------- - 1 file changed, 6 insertions(+), 9 deletions(-) - -commit cfc53d5031ec5232f834281882afa0758e09e567 -Author: Xan Lopez -Date: Tue Aug 7 15:40:17 2012 +0200 - - Require latest libsoup for SoupTLD fixes - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 57b873b72f880e85fc0abd7ae26d627e1578a028 -Author: Xan Lopez -Date: Tue Aug 7 15:28:21 2012 +0200 - - ephy-web-view: do autosearch foo.bar strings where bar is not a TLD - - Using the new SoupTLD methods. Had to split the non-search regexp in - two so that we can reuse its 'is this a domain?' bits. Ugly as hell, - but not worse than before... At least we have unit tests to catch - regressions. - - https://bugzilla.gnome.org/show_bug.cgi?id=681022 - - embed/ephy-embed-private.h | 7 ++++--- - embed/ephy-web-view.c | 33 +++++++++++++++++++++++++++++++-- - tests/ephy-web-view-test.c | 24 +++++++++++++++++------- - 3 files changed, 52 insertions(+), 12 deletions(-) - -commit eea17ad5975842ba9a6c3e5ff0df08592ea2f5ee -Author: Xan Lopez -Date: Tue Aug 7 14:31:35 2012 +0200 - - ephy-web-view: no need to cast g_object_new results - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 393d8167c8f10578044d4245a1927ab2d9416578 -Author: Xan Lopez -Date: Tue Aug 7 14:24:48 2012 +0200 - - ephy-web-view: export the 'normalize or autosearch' method - - We are going to modify it a bit, and we really want to test it. Add - some initial tests for the existing functionality. - - embed/ephy-embed-private.h | 3 +++ - embed/ephy-web-view.c | 29 ++++++++++++++++++----------- - tests/ephy-web-view-test.c | 41 +++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 62 insertions(+), 11 deletions(-) - -commit fa8fc3a78c404d29bb1d3d7a010acca1bd001c53 -Author: Xan Lopez -Date: Tue Aug 7 10:39:28 2012 +0200 - - [release] 3.5.5 - - NEWS | 21 +++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 22 insertions(+), 1 deletion(-) - -commit 20261c398cb634a16755943148ae7f7688dc396a -Author: Mario Sanchez Prada -Date: Tue Jul 24 15:58:41 2012 +0200 - - Port spell checking to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=680368 - - embed/ephy-embed-prefs.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -commit 40fbf156acaf8b42238ba2d10d9a620affce7b90 -Author: Chao-Hsiung Liao -Date: Tue Aug 7 15:06:45 2012 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 404 +++++++++++++++++++++++++++++++----------------------------- - po/zh_TW.po | 404 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 418 insertions(+), 390 deletions(-) - -commit b3726f8d88208ae3d63005ad2da1579a5330c40d -Author: Xan Lopez -Date: Mon Aug 6 20:30:40 2012 +0200 - - configure.ac: we require WebKitGTK+ 1.9.6 to build now - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f3786761dc4595b0f1c59648034971dd905369a6 -Author: Tom Tryfonidis -Date: Mon Aug 6 20:08:56 2012 +0300 - - Updated Greek translation - - po/el.po | 679 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 354 insertions(+), 325 deletions(-) - -commit 7a2e6cfbf8402ac882fde15bb2f13ee72ed9b632 -Author: Xan Lopez -Date: Sat Aug 4 09:07:08 2012 +0200 - - ephy-session: remove some unneeded declarations, reorder headers - - src/ephy-session.c | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -commit ae3cd166d4f937f7c6417ca9f6620e21a3b22bbe -Author: Diego Escalante Urrelo -Date: Thu Aug 2 17:44:36 2012 +0200 - - e-web-view: use GtkLabel API when possible - - https://bugzilla.gnome.org/show_bug.cgi?id=681080 - - embed/ephy-web-view.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit f62663bb9495088717cac6aa8ca6ca46330773b3 -Author: Diego Escalante Urrelo -Date: Thu Aug 2 17:09:47 2012 +0200 - - e-web-view: use GtkOrientable API for info bars - - Instead of creating a custom GtkButtonBox, use GtkOrientable API - implemented by the default action_area widget (a GtkBox) of GtkInfoBar. - - https://bugzilla.gnome.org/show_bug.cgi?id=681078 - - embed/ephy-web-view.c | 55 ++++++++++----------------------------------------- - 1 file changed, 10 insertions(+), 45 deletions(-) - -commit bfc43c1adad33c68f5b5aede0c67eb0eade102f4 -Author: Carlos Garcia Campos -Date: Mon Jul 9 12:19:15 2012 +0200 - - ephy-embed: Port inspector to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=679616 - - embed/ephy-embed.c | 47 +++++++++++++++++++++++++++++------------------ - 1 file changed, 29 insertions(+), 18 deletions(-) - -commit 3551c6b1b8a44189e718126996dc6de65d1a9765 -Author: Carlos Garcia Campos -Date: Tue Jul 10 18:39:17 2012 +0200 - - ephy-embed-single: Port disk cache to Webit2 - - From the API point of view, we only need to use WebKit2 to clear the - cache. - - https://bugzilla.gnome.org/show_bug.cgi?id=679684 - - embed/ephy-embed-single.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 80177fba115c1d9c4833d108094b6c90aaaf879d -Author: Xan Lopez -Date: Thu Aug 2 15:42:12 2012 +0200 - - window-commands: fix WebKit2 build - - Haters gonna hate. - - src/window-commands.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 18720165e359b9d127fd378214910b544121be7d -Author: Xan Lopez -Date: Thu Aug 2 12:36:51 2012 +0200 - - window-commands: fallback correctly when Content-Disposition is not available - - The suggested filename the network response gives us can be - NULL. Fallback to the old method in that case. - - src/window-commands.c | 17 +++++++++++++++-- - 1 file changed, 15 insertions(+), 2 deletions(-) - -commit 85ae7a5cbb8e0ea22e149041b278bf8d031dabe9 -Author: Philippe Normand -Date: Thu Aug 2 12:37:02 2012 +0200 - - Settings: add a enable-webaudio setting. - - 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. - - data/org.gnome.epiphany.gschema.xml | 5 +++++ - embed/ephy-embed-prefs.c | 4 ++++ - lib/ephy-prefs.h | 1 + - 3 files changed, 10 insertions(+) - -commit 8a38c7a9ba0238092edc4e398ca7635bb4392c5f -Author: Xan Lopez -Date: Thu Aug 2 12:04:28 2012 +0200 - - window-commands: suggest the right name in 'Save As' - - Use the info in the Content-Disposition header instead of the base - name of the resource. - - https://bugzilla.gnome.org/show_bug.cgi?id=674291 - - src/window-commands.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 55b5a767c59f5a3010522dfcee89a773510ab8c6 -Author: Claudio Saavedra -Date: Thu Aug 2 10:11:29 2012 +0200 - - popup-commands: don't cancel a download that hasn't even been started - - Cancelling the "save link as" dialog is calling ephy_download_cancel() - even when ephy_download_start() has not been called. This causes a - critical warning in webkit. - - https://bugzilla.gnome.org/show_bug.cgi?id=681010 - - src/popup-commands.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit 9c257893c9a93ea8732cf360c5d452365e60317f -Author: Xan Lopez -Date: Wed Aug 1 23:43:19 2012 +0200 - - ephy-embed-utils: use new coding style - - embed/ephy-embed-utils.c | 225 +++++++++++++++++++++++------------------------ - embed/ephy-embed-utils.h | 3 +- - 2 files changed, 111 insertions(+), 117 deletions(-) - -commit 92b4ae00d0870fa8b4614fd72c1b246cbaf264b4 -Author: Jiro Matsuzawa -Date: Thu Aug 2 12:45:56 2012 +0900 - - [l10n] Update Japanese translation - - Modify the About label - - po/ja.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bf64be0779c1e2a134216db94f571ebc7733da7e -Author: Claudio Saavedra -Date: Wed Aug 1 09:23:30 2012 +0200 - - ephy-history-service: prevent double call to execute_quit() - - execute_quit() is called already when the QUIT message is received, - there is no need to call it after the thread loop quits. - - https://bugzilla.gnome.org/show_bug.cgi?id=680529 - - lib/history/ephy-history-service.c | 1 - - 1 file changed, 1 deletion(-) - -commit 68faad97d0b8d8b4a6ca24583cce654c775ec87a -Author: Xan Lopez -Date: Wed Aug 1 17:03:31 2012 +0200 - - ephy-home-action: remove useless headers - - src/ephy-home-action.c | 3 --- - 1 file changed, 3 deletions(-) - -commit f5b82def7c14945d21e1ceb606e09a7ae6806779 -Author: Xan Lopez -Date: Wed Aug 1 16:59:27 2012 +0200 - - ephy-window: do not copy history for new empty tabs - - Do not copy the tab history when doing Ctrl+T/New Tab to open an empty - tab. - - https://bugzilla.gnome.org/show_bug.cgi?id=651918 - - Signed-off-by: Xan Lopez - - src/ephy-window.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit ca2a07b004ac4462867512892bfa0d772f3abc77 -Author: Zan Dobersek -Date: Wed Aug 1 16:58:36 2012 +0200 - - ephy-home-action: add implicit NEW_TAB flag - - The NewTab action is always used to new an empty tab now, so just - acknowledge the fact. - - Signed-off-by: Xan Lopez - - src/ephy-home-action.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9d70148b27ab6bae331961664ce4e1d5b47c1f32 -Author: Xan Lopez -Date: Wed Aug 1 16:04:37 2012 +0200 - - ephy-home-action: drop DnD functionality - - The home action can only be accessed from the super menu now, so the - DnD feature is not useful anymore. - - src/ephy-home-action.c | 66 +++----------------------------------------------- - 1 file changed, 4 insertions(+), 62 deletions(-) - -commit 27a5272d09d5623f480258bfee593384d26956ee -Author: Diego Escalante Urrelo -Date: Fri Jul 29 23:28:32 2011 -0500 - - e-file-chooser: remove persist-key - - GTK+ has changed the UX of the GtkFileChooser. This has (pragmatically) - deprecated "last save dir" stored by applications themselves. - - For Epiphany this means we no longer need a "persist-key" in our file - chooser, and that we have to clean up some GtkFileChooser API use in - followup patches. - - This commit removes the property and uses of it. - - Bug #655508 - - lib/ephy-file-chooser.c | 172 ---------------------------------- - lib/ephy-file-chooser.h | 10 -- - src/bookmarks/ephy-bookmarks-editor.c | 3 +- - src/popup-commands.c | 1 - - src/prefs-dialog.c | 2 +- - src/window-commands.c | 2 - - 6 files changed, 2 insertions(+), 188 deletions(-) - -commit 38e02f6d3aeac853cf14e6edcc84d9e588207d94 -Author: Xan Lopez -Date: Tue Jul 31 18:09:00 2012 +0200 - - ephy-session: spawn the default window if the session state file is broken - - https://bugzilla.gnome.org/show_bug.cgi?id=680590 - - src/ephy-session.c | 6 ++++++ - tests/ephy-session-test.c | 45 +++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 51 insertions(+) - -commit ee276bcbe7ce834b0e20bf9141a1155c3f472d6b -Author: Michael Biebl -Date: Tue Jul 31 17:24:00 2012 +0200 - - Use $(pkglibdir) instead of $(libdir)/epiphany - - to avoid hard coding the package name. - - https://bugzilla.gnome.org/show_bug.cgi?id=672023 - - lib/Makefile.am | 2 +- - src/Makefile.am | 4 ++-- - 2 files changed, 3 insertions(+), 3 deletions(-) - -commit e6f6e2a0ce6497c69e3ebdd28b86f3437d8d3266 -Author: Michael Biebl -Date: Tue Mar 13 23:40:11 2012 +0100 - - epiphany.pc.in: Use @PACKAGE@ instead of epiphany - - to avoid hard coding the package name. - - https://bugzilla.gnome.org/show_bug.cgi?id=672023 - - data/epiphany.pc.in | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 7efd2ff6498f3a4f11b63f3aa65b1377c09f4976 -Author: Diego Escalante Urrelo -Date: Thu Jan 19 18:57:35 2012 -0500 - - window-commands: update About dialog tagline - - https://bugzilla.gnome.org/show_bug.cgi?id=668115 - - src/window-commands.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 590cedd057220a9647dbaf26204a766fe2a06866 -Author: Diego Escalante Urrelo -Date: Fri Mar 30 21:04:12 2012 -0500 - - ephy-sqlite-statement: remove get_property - - All the properties are write-construct-only. - - https://bugzilla.gnome.org/show_bug.cgi?id=671595 - - lib/ephy-sqlite-statement.c | 19 ------------------- - 1 file changed, 19 deletions(-) - -commit 860eeba788d7556af2cc2b4e9ae1fa0167f2a950 -Author: Diego Escalante Urrelo -Date: Tue Jul 31 16:29:07 2012 +0200 - - e-dialog: handle old uses of ephy_dialog_construct - - This is a hack. One that we should remove when we decide what to do with - extensions. - - https://bugzilla.gnome.org/show_bug.cgi?id=680907 - - lib/ephy-dialog.c | 14 +++++++++++++- - 1 file changed, 13 insertions(+), 1 deletion(-) - -commit e1944188455f159dfa9c9fcc45b0e3887c88ad53 -Author: Diego Escalante Urrelo -Date: Tue Jul 31 16:09:17 2012 +0200 - - extensions: remove seed support - - https://bugzilla.gnome.org/show_bug.cgi?id=680905 - - configure.ac | 26 ---- - doc/reference/Makefile.am | 5 - - src/Makefile.am | 18 --- - src/ephy-extensions-manager.c | 21 +--- - src/ephy-seed-extension.c | 276 ------------------------------------------ - src/ephy-seed-extension.h | 61 ---------- - src/ephy-seed-loader.c | 107 ---------------- - src/ephy-seed-loader.h | 61 ---------- - tests/Makefile.am | 7 -- - 9 files changed, 2 insertions(+), 580 deletions(-) - -commit d46dbdabfb2f3b1885b0eb30bde4cc7652475292 -Author: Xan Lopez -Date: Tue Jul 31 15:34:28 2012 +0200 - - ephy-encoding: auto-calculate 'title-elided' and 'collation-key' - - They are derived from 'title', no need to pass them as parameters. - - embed/ephy-encoding.c | 50 +++++++++++++++++++++++++++++++++++++++++---- - embed/ephy-encoding.h | 2 -- - embed/ephy-encodings.c | 40 +----------------------------------- - tests/ephy-encodings-test.c | 5 ++--- - 4 files changed, 49 insertions(+), 48 deletions(-) - -commit a9b77ec4948dd2db2b3aef808e29c97aaa782589 -Author: Xan Lopez -Date: Tue Jul 31 15:26:50 2012 +0200 - - tests: test the creation of a EphyEncoding object - - We should make the test-elided and collation-key properties be - computed automatically from the other parameters. - - tests/ephy-encodings-test.c | 21 +++++++++++++++++++++ - 1 file changed, 21 insertions(+) - -commit 174d04e8e9d530d8b19eb47af23e1fcfb8f26a5c -Author: Xan Lopez -Date: Tue Jul 31 15:15:41 2012 +0200 - - tests: add a simple test for EphyEncodings - - tests/Makefile.am | 4 +++ - tests/ephy-encodings-test.c | 86 +++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 90 insertions(+) - -commit c5765d9eb4ffcc6bcf28e1daf27f56c2881676e8 -Author: Xan Lopez -Date: Tue Jul 31 15:09:33 2012 +0200 - - ephy-encoding: fix extra blank line - - embed/ephy-encoding.h | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 074d885ee09f2b2e04bd6f6d9040f236db899dc8 -Author: Xan Lopez -Date: Tue Jul 31 15:06:08 2012 +0200 - - ephy-embed-shell: sort headers properly! - - embed/ephy-embed-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ff525b9f0d82cda962ded2d77e1f6d9ba9fca2c3 -Author: Xan Lopez -Date: Tue Jul 31 15:03:45 2012 +0200 - - ephy-embed-shell: add missing header - - Dropping useless headers elsewhere uncovered a missing header - (stdlib.h) here. Also sort headers while at it. - - embed/ephy-embed-shell.c | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit c783fe5461c4ebaef6f1e672125c632c042826cd -Author: Xan Lopez -Date: Tue Jul 31 15:01:35 2012 +0200 - - ephy-encodings: remove dead code - - embed/ephy-encodings.h | 10 ---------- - 1 file changed, 10 deletions(-) - -commit 0be50f8a215ffe758b9915da7c5c4e1b9cf37285 -Author: Xan Lopez -Date: Tue Jul 31 15:00:28 2012 +0200 - - ephy-encodings: use new coding style - - embed/ephy-encodings.c | 598 ++++++++++++++++++++++++------------------------- - embed/ephy-encodings.h | 66 +++--- - 2 files changed, 324 insertions(+), 340 deletions(-) - -commit 929fd55adb9116d358404aa8103a1854e7fd12d6 -Author: Xan Lopez -Date: Tue Jul 31 14:53:16 2012 +0200 - - ephy-encoding: fix indentation - - embed/ephy-encoding.h | 46 +++++++++++++++++++++++----------------------- - 1 file changed, 23 insertions(+), 23 deletions(-) - -commit 3ffcaee1656e55de26030f9c9a0c14518cfce048 -Author: Xan Lopez -Date: Tue Jul 31 13:02:54 2012 +0200 - - ephy-encodings: rewrite to drop usage of EphyNode - - We have a new 'EphyEncoding' object holding the encoding data, and the - EphyEncodings object is now just a hash table holding a bunch of - these. - - Change all the UI code to use the new APIs. - - https://bugzilla.gnome.org/show_bug.cgi?id=680735 - - embed/Makefile.am | 2 + - embed/ephy-encoding.c | 233 +++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-encoding.h | 99 +++++++++++++++++++ - embed/ephy-encodings.c | 223 +++++++++++++++++++++---------------------- - embed/ephy-encodings.h | 33 +------ - src/ephy-encoding-dialog.c | 171 ++++++++++++++++++++++++--------- - src/ephy-encoding-menu.c | 74 +++++++------- - src/prefs-dialog.c | 66 +++++++------ - 8 files changed, 642 insertions(+), 259 deletions(-) - -commit c4824507c2216c665dab58fce03afd67e9e9ec7d -Author: Sweta Kothari -Date: Mon Jul 30 11:37:48 2012 +0530 - - Updated gujarati file - - po/gu.po | 3176 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1690 insertions(+), 1486 deletions(-) - -commit 4e5b45ab4f8e9429c6075c548d71f4bad79399cf -Author: Xan Lopez -Date: Sat Jul 28 10:21:55 2012 +0200 - - ephy-web-view: fix gtk-doc warning - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1640c70ea008fcf0b4332d1219fcdbf02e5174d1 -Author: Xan Lopez -Date: Sat Jul 28 10:21:32 2012 +0200 - - ephy-encodings: drop some useless code - - embed/ephy-encodings.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit ad344520e48041081ee4b46230c5bc0d8075ccd7 -Author: Xan Lopez -Date: Sat Jul 28 10:03:58 2012 +0200 - - ephy-extensions-manager: don't include EphyNode, it's not used here - - src/ephy-extensions-manager.c | 12 ++++-------- - src/ephy-extensions-manager.h | 1 - - 2 files changed, 4 insertions(+), 9 deletions(-) - -commit 1392ed84c4340f153d281c6baaf294af77fc6597 -Author: Ihar Hrachyshka -Date: Thu Jul 19 22:41:12 2012 +0300 - - Updated Belarusian translation. - - po/be.po | 1395 ++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 861 insertions(+), 534 deletions(-) - -commit 0d2bf5c588b97ae99ea38bb876f9f80249611821 -Author: Xan Lopez -Date: Wed Jul 18 20:25:16 2012 +0200 - - ephy-web-view: get rid of gtk-doc warning - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 10f4eef8321f857a6d305d1368877fcd0112e12c -Author: Xan Lopez -Date: Wed Jul 18 20:24:18 2012 +0200 - - Use G_DEFINE_BOXED_TYPE to define boxed types - - EphyNode is missing, but trying to migrate it gives some obscure error - I need to figure out. - - embed/ephy-permission-manager.c | 18 +++--------------- - src/ephy-password-info.c | 17 ++--------------- - 2 files changed, 5 insertions(+), 30 deletions(-) - -commit 028b27e0d152fa439ee84d9f3b26e4a09ff5ea27 -Author: Xan Lopez -Date: Tue Jul 17 18:35:32 2012 +0200 - - [release] 3.5.4 - - NEWS | 17 +++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 18 insertions(+), 1 deletion(-) - -commit 03605573bc0fc6636212d34c8c9c88b54e1d9f1c -Author: Chao-Hsiung Liao -Date: Tue Jul 17 14:55:07 2012 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 198 ++++++++++++++++++++++++++++-------------------------------- - po/zh_TW.po | 198 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 191 insertions(+), 205 deletions(-) - -commit 6dd85238f0a8428567af1b5bf13ea356064d1f43 -Author: Aurimas Černius -Date: Tue Jul 17 00:05:04 2012 +0300 - - Updated Lithuanian translation - - po/lt.po | 1491 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 872 insertions(+), 619 deletions(-) - -commit dfb8d5003f3d581470142fc255e06a1b48dd134d -Author: Jiro Matsuzawa -Date: Sun Jul 15 13:28:12 2012 +0900 - - [l10n] Update Japanese translation - - po/ja.po | 1406 +++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 877 insertions(+), 529 deletions(-) - -commit 86d659967dac6e46d639729ce8a3571d87591310 -Author: Carlos Garcia Campos -Date: Thu Jul 12 11:35:28 2012 +0200 - - Port persistent cookies to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=679369 - - embed/ephy-embed-single.c | 15 ++++++++++++--- - lib/ephy-web-app-utils.c | 44 +++++++++++++++++++++++++++++++++----------- - 2 files changed, 45 insertions(+), 14 deletions(-) - -commit eeeba03717a64d0750ccccdecae756f61260e087 -Author: Carlos Garcia Campos -Date: Fri Jul 13 09:46:58 2012 +0200 - - ephy-web-view: Port security level to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=679371 - - embed/ephy-web-view.c | 24 +++++++++--------------- - 1 file changed, 9 insertions(+), 15 deletions(-) - -commit ff1131c9b138b6218bf94f2bcaf6f721bc94a1b1 -Author: Carlos Garcia Campos -Date: Thu Jul 12 10:17:28 2012 +0200 - - ephy-web-app-utils: Fix memory leak - - lib/ephy-web-app-utils.c | 1 + - 1 file changed, 1 insertion(+) - -commit 19dca7b70c9477c72880b2983275883205dbed98 -Author: Carlos Garcia Campos -Date: Thu Jul 12 10:02:26 2012 +0200 - - ephy-web-app-utils: Use soup_cookie_domain_matches to check the cookie domain - - This fixes the cases where sites like www.foo.com save cookies for - domain .foo.com, so that when an app is created for www.foo.com, cookies - in the current jar for the domain .foo.com are not copied to the app - cookie jar. - - lib/ephy-web-app-utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7bd968f56a52e30d09998fee20fdd20d476e3a4a -Author: Yaron Shahrabani -Date: Tue Jul 10 22:50:44 2012 +0300 - - Updated Hebrew translation. - - po/he.po | 611 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 315 insertions(+), 296 deletions(-) - -commit 3fdc68f551f2fdcafd8d7d2cd0cf3045dcc1f253 -Author: Carlos Garcia Campos -Date: Wed Jul 4 17:49:58 2012 +0200 - - window-commands: Port WebKit version information in about dialog to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=679403 - - src/window-commands.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit 62de5a84128ed37e1b6a125c9d50d0243207bffb -Author: Carlos Garcia Campos -Date: Mon Jul 9 13:15:04 2012 +0200 - - ephy-embed-prefs: Remove TODO comment about page-cache setting - - In WebKit2 page cache is enabled by default. - - embed/ephy-embed-prefs.c | 1 - - 1 file changed, 1 deletion(-) - -commit ea04be7b86a8c0fe37d1dab4dd9211f04f751731 -Author: Carlos Garcia Campos -Date: Fri Jul 6 18:19:46 2012 +0200 - - ephy-embed-prefs: Enable site specific quirks in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=679499 - - embed/ephy-embed-prefs.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 8c0d6f6b8722c7976f90c71dbbdd6035473b113a -Author: Kjartan Maraas -Date: Mon Jul 9 09:38:59 2012 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 562 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 285 insertions(+), 277 deletions(-) - -commit dcb11d1f5517bd4df39fc0d0228fd02214ad903d -Author: Carlos Garcia Campos -Date: Fri Jun 8 10:50:30 2012 +0200 - - Port cookies to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678626 - - embed/ephy-embed-prefs.c | 34 ++++++++++++- - embed/ephy-embed-prefs.h | 19 +++++-- - embed/ephy-embed-single.c | 14 +++++- - src/pdm-dialog.c | 124 +++++++++++++++++++++++++++++++++++++++++++--- - 4 files changed, 178 insertions(+), 13 deletions(-) - -commit 74ff5812f0cc1c2f94c64cc00bc99e8bc887793f -Author: Cheng-Chia Tseng -Date: Sat Jun 30 22:59:16 2012 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 1399 +++++++++++++++++++++++++++++++++++++---------------------- - po/zh_TW.po | 1399 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 1782 insertions(+), 1016 deletions(-) - -commit f0dbb1fbd548724dbce3ded8b3c3f8a695d5533e -Author: Xan Lopez -Date: Thu Jun 28 13:46:08 2012 +0200 - - ephy-web-view: unref objects in dispose, not finalize - - embed/ephy-web-view.c | 7 ++----- - 1 file changed, 2 insertions(+), 5 deletions(-) - -commit 1a61db4aa5839d921f96727c3c464f6b026221c4 -Author: Xan Lopez -Date: Thu Jun 28 13:44:22 2012 +0200 - - ephy-web-view: set_title can also be made private to its file - - embed/ephy-web-view.c | 87 +++++++++++++++++++++++---------------------------- - embed/ephy-web-view.h | 2 -- - 2 files changed, 40 insertions(+), 49 deletions(-) - -commit e3f51b0a10803b2c555a7416f63e2376302e991c -Author: Xan Lopez -Date: Thu Jun 28 13:38:13 2012 +0200 - - ephy-web-view: get rid of redundant calls to set_title - - Just trust the title-updated signal for the most part. Seems to work - just fine in WK1, and fixes missing updates to the title in WK2. - - https://bugzilla.gnome.org/show_bug.cgi?id=679046 - - embed/ephy-web-view.c | 13 ++----------- - 1 file changed, 2 insertions(+), 11 deletions(-) - -commit e28f57bde15eebfc46e238de768298134653fde3 -Author: Xan Lopez -Date: Thu Jun 28 13:30:35 2012 +0200 - - ephy-web-view: make set_address completely private - - It's not used outside its own class either, so we can make it private - to the file. - - embed/ephy-embed-private.h | 2 -- - embed/ephy-web-view.c | 78 ++++++++++++++++++++++------------------------ - 2 files changed, 37 insertions(+), 43 deletions(-) - -commit b4d5a8daa7fede8dc03d6765c2ac55ea71d0a385 -Author: Xan Lopez -Date: Thu Jun 28 13:27:25 2012 +0200 - - ephy-web-view: move private methods to the private header - - embed/ephy-embed-private.h | 24 +++++++++++++++++++++--- - embed/ephy-web-view.h | 20 -------------------- - 2 files changed, 21 insertions(+), 23 deletions(-) - -commit 26b13c310b1cb6e7239d8c34197da005aa0edcff -Author: Xan Lopez -Date: Thu Jun 28 13:13:03 2012 +0200 - - ephy-web-view: ephy_web_view_location_changed is private to its class - - Do not make it public. - - doc/reference/epiphany-sections.txt | 1 - - embed/ephy-web-view.c | 94 +++++++++++++++++-------------------- - embed/ephy-web-view.h | 2 - - 3 files changed, 43 insertions(+), 54 deletions(-) - -commit d4bef7810d2bf37c0e8c9eea9eaa65c59aece922 -Author: Claudio Saavedra -Date: Tue Jun 26 11:32:12 2012 +0300 - - Port fullscreen popup to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678840 - - embed/ephy-embed.c | 12 +++++++++--- - 1 file changed, 9 insertions(+), 3 deletions(-) - -commit c32e0e789aaf7b6d08f04a368e4322ca8214c891 -Author: Xan Lopez -Date: Thu Jun 28 12:48:23 2012 +0200 - - window-commands: initialize string variables to NULL - - This makes the about dialog not crash in WebKit2, since they are not - set to any value (yet) but are freed anyway. - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b5a7d97b68324304eb7f3edeafbe29733dcc2d6d -Author: Xan Lopez -Date: Thu Jun 28 12:40:46 2012 +0200 - - ephy-web-view: fix think-o in ephy_web_view_location_changed - - Do not re-set the address we already have, use the location we get as - a parameter, which comes from the same place (WebKit layer) than - ephy_web_view_get_location used to get it from. - - embed/ephy-web-view.c | 9 +++------ - 1 file changed, 3 insertions(+), 6 deletions(-) - -commit 9d3ed63884831f2db8956fe9a5d9d02a7291493f -Author: Xan Lopez -Date: Thu Jun 28 12:20:10 2012 +0200 - - ephy-web-view: get rid of 'ephy_web_view_get_location' - - Nowhere in epiphany were we using the "get the non-toplevel location" - feature (which was broken anyway), so I think we should be able to - just use get_address everywhere. - - doc/reference/epiphany-sections.txt | 1 - - embed/ephy-web-view.c | 59 ++++++++----------------------------- - embed/ephy-web-view.h | 2 -- - src/ephy-lockdown.c | 5 ++-- - 4 files changed, 14 insertions(+), 53 deletions(-) - -commit d4dfee4e39e3b4d7cebb6072b5eb478191eedc93 -Author: Xan Lopez -Date: Thu Jun 28 12:02:15 2012 +0200 - - ephy-web-view: and more type checks - - embed/ephy-web-view.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 680535623ace29e60a51728e0b33993b6d8cfc25 -Author: Xan Lopez -Date: Thu Jun 28 12:00:55 2012 +0200 - - ephy-web-view: add type checks for the set_typed_address method parameters - - embed/ephy-web-view.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit c8d755a095494d91e23e5764623ea53c72190e69 -Author: Xan Lopez -Date: Thu Jun 28 11:58:06 2012 +0200 - - ephy-web-view: do not duplicate the setter code for typed-address - - embed/ephy-web-view.c | 9 ++------- - 1 file changed, 2 insertions(+), 7 deletions(-) - -commit 8797404133cf7c578c29de82ccf37040348170df -Author: Xan Lopez -Date: Thu Jun 28 11:55:14 2012 +0200 - - ephy-web-view: try to simplify a bit the typed-address logic - - I think we can do without the "expire_address_now" boolean, and just - rely on whether typed-address itself is NULL or not. If it is not, we - want to always show it in the location entry and never overwrite it, - since it reflects what the user has typed. The only case when we want - to go ahead and set it to NULL is when the load actually starts (ie, - when the user wants to transform what he has typed into a new - load). Try to document things better reflecting this logic. - - embed/ephy-web-view.c | 40 +++++++++++++++++----------------------- - 1 file changed, 17 insertions(+), 23 deletions(-) - -commit de2aeeb64480a4dab6ef907dc581f7770672bf2e -Author: Xan Lopez -Date: Wed Jun 27 19:13:52 2012 +0200 - - ephy-web-view: remove useless forward declarations - - embed/ephy-web-view.c | 3 --- - 1 file changed, 3 deletions(-) - -commit 282b4ea9696090e4e0a37449b692e03ad396f74d -Author: Xan Lopez -Date: Wed Jun 27 15:46:59 2012 +0200 - - ephy-web-view: remove unneeded headers, and sort them - - embed/ephy-web-view.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 55bb59b2fdde8776832f23073ac3eeadd3c8cb7c -Author: Andika Triwidada -Date: Thu Jun 28 07:42:17 2012 +0700 - - Updated Indonesian translation - - po/id.po | 2764 +++++++++++++++++++++++++++----------------------------------- - 1 file changed, 1180 insertions(+), 1584 deletions(-) - -commit a6fa2ac39873fc55483de776d57060fca4ebf56a -Author: Tobias Endrigkeit -Date: Thu Jun 28 00:13:42 2012 +0200 - - Updated German translation - - po/de.po | 1537 +++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 971 insertions(+), 566 deletions(-) - -commit 66b1b5bd21814e6acd2399a2ef347da1cd42896e -Author: Carlos Garcia Campos -Date: Fri Jun 8 15:31:05 2012 +0200 - - Port find to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678628 - - src/ephy-find-toolbar.c | 104 +++++++++++++++++++++++++++++++++++++++++++----- - 1 file changed, 95 insertions(+), 9 deletions(-) - -commit 7e1964acdacd4bdf4e23e85ec733fe9e92688ca6 -Author: Carlos Garcia Campos -Date: Fri Jun 22 11:03:36 2012 +0200 - - Port downloads to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678612 - - embed/ephy-download.c | 186 ++++++++++++++++++++++++++++--------- - embed/ephy-embed.c | 4 +- - embed/ephy-web-view.c | 34 +++---- - lib/widgets/ephy-download-widget.c | 112 +++++++++++++++++----- - src/ephy-shell.c | 31 +++++++ - src/window-commands.c | 41 +++++++- - 6 files changed, 320 insertions(+), 88 deletions(-) - -commit 39931fc51a3a668d04f938fa555bdf9a4abf3056 -Author: Xan Lopez -Date: Wed Jun 27 13:16:16 2012 +0200 - - ephy-web-view: fix anchor links' URI update - - Use again notify::uri, but do nothing if we receive it when the page - is not loading (ie, before STARTED was reached). This fixes the - difference in semantincs between WK1 and WK2. - - embed/ephy-web-view.c | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -commit 8118e5fb00fc3514940ce629ca6e1a7aeb5a3b1d -Author: Xan Lopez -Date: Wed Jun 27 12:47:18 2012 +0200 - - ephy-web-view: move the file monitoring code to its own class, EphyFileMonitor. - - Since the vast majority of the code was really independent from - EphyWebView. - - embed/Makefile.am | 2 + - embed/ephy-file-monitor.c | 301 ++++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-file-monitor.h | 64 ++++++++++ - embed/ephy-web-view.c | 192 ++--------------------------- - 4 files changed, 376 insertions(+), 183 deletions(-) - -commit 46f5f85b4a6bccfd8260935142660b4b324e94c7 -Author: Carlos Garcia Campos -Date: Fri Jun 8 12:56:55 2012 +0200 - - Port resources to WebKit2 - - http://bugzilla-attachments.gnome.org/attachment.cgi?id=217022 - - src/window-commands.c | 66 +++++++++++++++++++++++++++++++++++++++++---------- - 1 file changed, 54 insertions(+), 12 deletions(-) - -commit e41411e1077d18b0ba1c0abda97298cf1f9b8304 -Author: Xan Lopez -Date: Tue Jun 26 19:36:26 2012 +0200 - - ephy-web-view: stop using notify::uri in WebKit2 - - In WebKit2 notify::uri will come with the requested URI even - before/during the STARTED status, so we cannot use it in the same way - as we were using it in WebKit1, where the semantincs were different. - - embed/ephy-web-view.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 7b1568bac6362d79a5afaab1da90c46d0b36afd2 -Author: Xan Lopez -Date: Tue Jun 26 19:12:06 2012 +0200 - - ephy-web-view: small style and indentation fixes - - embed/ephy-web-view.c | 34 +++++++++++++++++----------------- - 1 file changed, 17 insertions(+), 17 deletions(-) - -commit 7a3968058dcdb1838e8d4e817fc56be217f9a6ca -Author: Xan Lopez -Date: Tue Jun 26 12:19:24 2012 +0200 - - [release] 3.5.3 - - NEWS | 25 +++++++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 26 insertions(+), 1 deletion(-) - -commit f43a0d1c1fe3e156d49dd11b55715d1ac7215677 -Author: Xan Lopez -Date: Tue Jun 26 17:36:04 2012 +0200 - - ephy-notebook: do not assume the type of the child widget in 'remove' - - Since commit 325cf071d1 in GTK+ the 'remove' method will be called - also with the tab label widget, so do not assert when the type is not - EphyEmbed, just do nothing. - - src/ephy-notebook.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit e12d0362236c12feb2a972629a982b5e8b799822 -Author: Xan Lopez -Date: Tue Jun 26 17:03:03 2012 +0200 - - POTFILES.in: add missing file - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit bab68f12adaed81397aa34cbfe760eafc51c993f -Author: Carlos Garcia Campos -Date: Wed Jun 6 18:03:57 2012 +0200 - - Port geolocation permission request to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678614 - - embed/ephy-web-view.c | 47 ++++++++++++++++++++++++++++++++++++++++------- - 1 file changed, 40 insertions(+), 7 deletions(-) - -commit 990ee247b9613724f764b1bca2ff721e5688fcd8 -Author: Carlos Garcia Campos -Date: Fri Jun 8 10:24:05 2012 +0200 - - Port plugins about handler to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678625 - - embed/ephy-about-handler.c | 58 +++++++++++++++++++++++++++++++++++++++++++--- - embed/ephy-about-handler.h | 3 +++ - embed/ephy-embed-single.c | 55 ++++++++++++++++++++++++++++++++++++------- - 3 files changed, 105 insertions(+), 11 deletions(-) - -commit d434d5dde2cb2cd239d8d38b3a369466677e84a4 -Author: Carlos Garcia Campos -Date: Fri Jun 22 11:23:55 2012 +0200 - - Port about handlers to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678616 - - embed/ephy-embed-single.c | 22 ++++++++++++++++++++++ - 1 file changed, 22 insertions(+) - -commit 63ff2e3dc786c97d74c7c2e6ee96a26f826abca8 -Author: Carlos Garcia Campos -Date: Fri Jun 22 11:17:20 2012 +0200 - - embed: Move about handlers to a new file - - Leaving in ephy-request-about only the code specific to the soup feature - implementation. - - embed/Makefile.am | 2 + - embed/ephy-about-handler.c | 204 ++++++++++++++++++++++++++++++++++++++ - embed/ephy-about-handler.h | 16 +++ - embed/ephy-embed-utils.c | 2 +- - embed/ephy-request-about.c | 160 +----------------------------- - embed/ephy-request-about.h | 3 - - embed/ephy-web-view.c | 2 +- - lib/widgets/ephy-location-entry.c | 2 +- - src/ephy-session.c | 2 +- - 9 files changed, 229 insertions(+), 164 deletions(-) - -commit 213a7c80120f416b7082e54157904a638296c5cd -Author: Carlos Garcia Campos -Date: Fri Jun 22 11:00:12 2012 +0200 - - ephy-download-widget: add get_destination_basename_from_download() helper function - - lib/widgets/ephy-download-widget.c | 37 ++++++++++++++++++++++++++----------- - 1 file changed, 26 insertions(+), 11 deletions(-) - -commit fb062ec392862e2f14ca3b6466e200a31dee2737 -Author: Carlos Garcia Campos -Date: Fri Jun 22 10:48:45 2012 +0200 - - ephy-download-widget: add ephy_download_widget_download_finished() - - It makes easier to check whether download finished, and it's compatible - with WebKit2. - - lib/widgets/ephy-download-widget.c | 48 ++++++++++++++++++++++---------------- - lib/widgets/ephy-download-widget.h | 8 ++++--- - src/ephy-window.c | 24 ++----------------- - 3 files changed, 35 insertions(+), 45 deletions(-) - -commit 5e3aa77ad8a6293f31f548366c87a7cd50c861fb -Author: Carlos Garcia Campos -Date: Fri Jun 22 10:28:09 2012 +0200 - - ephy-download: remove _ephy_download_new() internal function - - It makes the code a bit more complex. Since we always need a - WebKitDownload we can just create a WebKitDownload in - ephy_download_new_for_uri() can then use - ephy_download_new_for_download() to create the EphyDownload. - - embed/ephy-download.c | 66 +++++++++++++++++++++++++-------------------------- - 1 file changed, 33 insertions(+), 33 deletions(-) - -commit 188de2119d0375ac7c27252917778038200210b8 -Author: Carlos Garcia Campos -Date: Fri Jun 22 09:53:30 2012 +0200 - - ephy-download: Pass suggested filename to define_destination_uri() - - Instead of getting it from the download to make define_destination_uri() - function compatible with WebKit2. - - embed/ephy-download.c | 16 +++++++--------- - 1 file changed, 7 insertions(+), 9 deletions(-) - -commit b7f905eb4738760f4c1cde4ae2d4154cf7af57ba -Author: Carlos Garcia Campos -Date: Wed May 30 17:25:54 2012 +0200 - - Por run javascript to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678601 - - embed/ephy-web-view.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 94e9d47168cce812b5265507d97da157a5dcf77b -Author: Carlos Garcia Campos -Date: Fri Jun 22 09:37:31 2012 +0200 - - Port printing to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678600 - - embed/ephy-web-view.c | 41 ++++++++++++++++++++++++++++++++++++++--- - 1 file changed, 38 insertions(+), 3 deletions(-) - -commit d1ffe68fe73afa424ee86834ad3ec7be7cb245a2 -Author: Carlos Garcia Campos -Date: Fri Jun 22 09:36:28 2012 +0200 - - ephy-web-view: add ephy_web_view_print_failed() - - Helper function to show an error messaage in the info bar when the print - operation failed. - - embed/ephy-web-view.c | 38 ++++++++++++++++++++++---------------- - 1 file changed, 22 insertions(+), 16 deletions(-) - -commit d87fd5e750f7c5eafd7512ba0e9e15363a00be6f -Author: Carlos Garcia Campos -Date: Fri Jun 22 09:28:31 2012 +0200 - - Port hovering over link to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678599 - - embed/ephy-embed.c | 5 ----- - embed/ephy-web-view.c | 18 ++++++++++++++++-- - 2 files changed, 16 insertions(+), 7 deletions(-) - -commit 80a2f896948ce6debf1b215127cce14b16786f8f -Author: Carlos Garcia Campos -Date: Fri Jun 22 09:28:00 2012 +0200 - - ephy-navigation-history-action: Don't leak link-message - - src/ephy-navigation-history-action.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 74ab4a3a9802006edd99e21e85e688593bce93be -Author: Carlos Garcia Campos -Date: Fri Jun 22 09:26:52 2012 +0200 - - ephy-web-view: status message should be const - - In both ephy_web_view_set_link_message() and - ephy_embed_utils_link_message_parse(). - - embed/ephy-embed-utils.c | 4 ++-- - embed/ephy-embed-utils.h | 2 +- - embed/ephy-web-view.c | 2 +- - embed/ephy-web-view.h | 2 +- - 4 files changed, 5 insertions(+), 5 deletions(-) - -commit 00ed0403c66295790677fa5a67af8d625da35ab2 -Author: Carlos Garcia Campos -Date: Fri Jun 22 08:47:53 2012 +0200 - - Port editing commands to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678596 - - src/ephy-window.c | 81 +++++++++++++++++++++++++++++++++++++++++++++++++-- - src/window-commands.c | 12 ++++---- - 2 files changed, 84 insertions(+), 9 deletions(-) - -commit ca3d3d87e4bef29988b77fa978fe0771da087e72 -Author: Carlos Garcia Campos -Date: Fri Jun 22 08:47:02 2012 +0200 - - ephy-window: Add helper function to update action sensitivity - - src/ephy-window.c | 34 +++++++++++++++------------------- - 1 file changed, 15 insertions(+), 19 deletions(-) - -commit af4b7f86164391b8d54b058fa7d5de53b7331788 -Author: Carlos Garcia Campos -Date: Fri Jun 22 08:38:45 2012 +0200 - - Port history to WebKit2 - - In WebKit2 the back forward list is a read-only object, so the code were - the back forward list is modified hasn't been ported. - - https://bugzilla.gnome.org/show_bug.cgi?id=678594 - - embed/ephy-web-view.c | 2 +- - src/ephy-navigation-history-action.c | 67 ++++++++++++++++++++++++++++-------- - 2 files changed, 53 insertions(+), 16 deletions(-) - -commit 5804d8437b26f838fbad66dd7b6ac58bd04c1118 -Author: Carlos Garcia Campos -Date: Fri Jun 22 08:37:18 2012 +0200 - - ephy-navigation-history-action: Rename webkit_construct_history_list - - As construct_webkit_history_list since the webkit_ prefix makes the - function look like WebKit API even if it's a private method. - - src/ephy-navigation-history-action.c | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -commit bd89147c9cf4df8fdc1cd2757a86f03f197a1862 -Author: Carlos Garcia Campos -Date: Wed May 30 13:02:33 2012 +0200 - - Add support for new windows in WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678593 - - embed/ephy-embed.c | 35 +++++++++++++-- - embed/ephy-web-view.c | 14 ++++-- - src/ephy-window.c | 118 ++++++++++++++++++++++++++++++++++---------------- - 3 files changed, 124 insertions(+), 43 deletions(-) - -commit 85a2991c85929be430cc9252adce98185e33c5be -Author: Carlos Garcia Campos -Date: Wed May 30 12:09:56 2012 +0200 - - Port web settings to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678592 - - embed/ephy-embed-prefs.c | 98 ++++++++++++++++++++++++++++++++---------------- - 1 file changed, 65 insertions(+), 33 deletions(-) - -commit 6f24b1f37b9f53907a848b4531ac90a7b830a206 -Author: Carlos Garcia Campos -Date: Tue May 29 19:11:56 2012 +0200 - - Port policy client to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678591 - - embed/ephy-web-view.c | 62 +++++++++++++++++++- - src/ephy-window.c | 152 +++++++++++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 209 insertions(+), 5 deletions(-) - -commit d5a3f08cb80d85dd9924d7d3a2cb828ad481c2e2 -Author: Fran Diéguez -Date: Sun Jun 24 23:30:39 2012 +0200 - - Updated Galician translations - - po/gl.po | 494 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 251 insertions(+), 243 deletions(-) - -commit 6652006561a09e58a50b8f9003bc2c1baf7c8a4c -Author: Carlos Garcia Campos -Date: Thu Jun 21 17:27:10 2012 +0200 - - Port web view loading progress and feedback to WebKit2 - - https://bugzilla.gnome.org/show_bug.cgi?id=678532 - - embed/ephy-embed.c | 25 ++++-- - embed/ephy-web-view.c | 198 ++++++++++++++++++++++++++++++++++++++++++--- - src/ephy-notebook.c | 13 +++ - src/ephy-session.c | 16 +++- - tests/ephy-web-view-test.c | 24 +++++- - 5 files changed, 253 insertions(+), 23 deletions(-) - -commit ccc2a6f6a9cfea8a06dd7b8968c3ad59597950e9 -Author: Carlos Garcia Campos -Date: Thu Jun 21 17:17:18 2012 +0200 - - ephy-web-view: Add ephy_web_view_load_failed() - - To check whether the load operation in the web view failed. - - doc/reference/epiphany-sections.txt | 1 + - embed/ephy-web-view.c | 18 ++++++++++++++++++ - embed/ephy-web-view.h | 1 + - 3 files changed, 20 insertions(+) - -commit 64bc15de3f1dcbd68243f0544d0514ef341534b4 -Author: Diego Escalante Urrelo -Date: Thu May 24 12:37:02 2012 -0500 - - popup-commands: use EPHY_DOWNLOAD_ACTION_DO_NOTHING - - Stop downloaded backgrounds from popping an image viewer instance. - - https://bugzilla.gnome.org/show_bug.cgi?id=676128 - - src/popup-commands.c | 1 + - 1 file changed, 1 insertion(+) - -commit 43a4f898f770c95987becfa2e96a270b756a059e -Author: Diego Escalante Urrelo -Date: Thu May 31 21:41:49 2012 -0500 - - ephy-download: add EPHY_DOWNLOAD_ACTION_DO_NOTHING - - Add a new action instead of abusing NONE. NONE means nothing has been - set, this will trigger AUTO when auto-downloads preference is TRUE. - - DO_NOTHING explicitely asks for no action to be taken. - - https://bugzilla.gnome.org/show_bug.cgi?id=676128 - - embed/ephy-download.c | 9 +++++++-- - embed/ephy-download.h | 3 ++- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit b274c83f91a2f267ddfedd11656f1b0a328f227f -Author: Ioannis Zampoukas -Date: Fri Jun 22 23:36:30 2012 +0300 - - Updated Greek translation - - po/el.po | 440 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 221 insertions(+), 219 deletions(-) - -commit 8ad5869a0457dfb3454472abaff2b123d4f865e0 -Author: Xan Lopez -Date: Thu Jun 21 14:56:42 2012 +0200 - - docs: do not use g_thread_init in the doc scanner - - doc/reference/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 97c91b2fc2059b1e358bb19896203afaa44bfd33 -Author: Carlos Garcia Campos -Date: Sun May 6 16:47:19 2012 +0200 - - Initial WebKit2 port - - It builds and basic functionality works. - - configure.ac | 25 ++++- - embed/Makefile.am | 4 + - embed/ephy-download.c | 34 ++++++- - embed/ephy-download.h | 4 + - embed/ephy-embed-event.h | 4 + - embed/ephy-embed-prefs.c | 64 ++++++++++++- - embed/ephy-embed-single.c | 9 +- - embed/ephy-embed-utils.h | 5 + - embed/ephy-embed.c | 74 +++++++++++++++ - embed/ephy-request-about.c | 8 ++ - embed/ephy-web-view.c | 167 +++++++++++++++++++++++++++++++++- - embed/ephy-web-view.h | 8 ++ - lib/ephy-web-app-utils.c | 8 ++ - lib/widgets/ephy-download-widget.c | 34 +++++++ - lib/widgets/ephy-hosts-store.c | 32 +++++++ - lib/widgets/ephy-location-entry.c | 4 + - src/Makefile.am | 8 ++ - src/bookmarks/ephy-bookmark-action.c | 12 +++ - src/bookmarks/ephy-bookmarks-editor.c | 8 ++ - src/bookmarks/ephy-bookmarks.c | 17 +++- - src/ephy-completion-model.c | 12 +++ - src/ephy-encoding-dialog.c | 17 ++++ - src/ephy-encoding-menu.c | 17 ++++ - src/ephy-find-toolbar.c | 26 +++++- - src/ephy-history-window.c | 4 + - src/ephy-navigation-history-action.c | 43 ++++++++- - src/ephy-session.c | 20 ++++ - src/ephy-shell.c | 12 +++ - src/ephy-shell.h | 8 ++ - src/ephy-window.c | 53 +++++++++++ - src/pdm-dialog.c | 13 +++ - src/popup-commands.c | 16 ++++ - src/window-commands.c | 66 +++++++++++++- - tests/ephy-shell-test.c | 4 + - tests/ephy-web-view-test.c | 8 ++ - 35 files changed, 824 insertions(+), 24 deletions(-) - -commit a8767266443074689200fff9ca43531d88d65aed -Author: Carlos Garcia Campos -Date: Thu Jun 21 12:30:16 2012 +0200 - - ephy-web-view: Use webkit_web_view_load_uri() instead of webkit_web_view_open() - - webkit_web_view_open() is deprecated in WebKit1 and - webkit_web_view_load_uri() is compatible with WebKit2. - - embed/ephy-web-view.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 32c03a55b26a95bebfbde11a167c4f563070d024 -Author: Carlos Garcia Campos -Date: Thu Jun 21 12:24:15 2012 +0200 - - Use WebKitWebView API to get/set the zoom level instead of g_object_get/set - - Also use always double instead of float so that it will be compatible - with WebKit2 API. - - embed/ephy-web-view.c | 12 ++++-------- - src/ephy-window.c | 12 +++++------- - 2 files changed, 9 insertions(+), 15 deletions(-) - -commit 4d265094c5d28e7192dec077ea56c2a6c199cb4a -Author: Carlos Garcia Campos -Date: Thu Jun 21 12:15:33 2012 +0200 - - Include libsoup header explicitly when required - - Instead of relying on webkit header to include it. - - embed/ephy-embed-prefs.h | 2 ++ - embed/ephy-embed-utils.c | 1 + - embed/ephy-embed-utils.h | 2 -- - embed/ephy-web-view.c | 1 - - src/ephy-window.c | 1 + - tests/ephy-download-test.c | 1 + - tests/ephy-web-view-test.c | 1 + - 7 files changed, 6 insertions(+), 3 deletions(-) - -commit 994dffde1f3189ed628d4c211a9a2ea5ecdbd15e -Author: Daniel Mustieles -Date: Thu Jun 21 12:29:11 2012 +0200 - - Updated Spanish translation - - po/es.po | 397 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 203 insertions(+), 194 deletions(-) - -commit 9efc674ea58909962378cfdcfe8202aff59b1cb6 -Author: Piotr Drąg -Date: Wed Jun 20 18:57:48 2012 +0200 - - Updated POTFILES.in - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit 88198c2707d57b346bf6fcbb028dfd9aac4e0fae -Author: Claudio Saavedra -Date: Mon Jun 11 13:10:26 2012 +0300 - - ephy-embed: show a message popup when entering fullscreen mode - - The message is different depending on whether we are entering HTML5 fullscreen - mode or application fullscreen, since the keys used to leave either mode are - different. - - https://bugzilla.gnome.org/show_bug.cgi?id=671195 - - embed/ephy-embed.c | 89 ++++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed.h | 3 ++ - src/ephy-window.c | 2 ++ - src/resources/epiphany.css | 7 ++++ - 4 files changed, 101 insertions(+) - -commit ec940554678b2776ef7e76e33ba1756cee0d3519 -Author: Claudio Saavedra -Date: Mon Jun 11 13:07:25 2012 +0300 - - ephy-window: hide all chrome when entering fullscreen mode - - We keep track of the state of the chrome before entering fullscreen - mode in order to restore it afterwards. Also, set tabs-allowed to - FALSE in the EphyNotebook when in fullscreen mode. - - When leaving fullscreen mode, restore to the previous state. - - https://bugzilla.gnome.org/show_bug.cgi?id=671195 - - src/ephy-window.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit 6c69d491e6275aead0bdfcfa4f2d436d093aadff -Author: Claudio Saavedra -Date: Mon Jun 11 13:04:29 2012 +0300 - - ephy-window: keep track of whether the downloads box is shown - - We add it to EphyWebViewChrome and track it there. - - https://bugzilla.gnome.org/show_bug.cgi?id=671195 - - embed/ephy-web-view.h | 1 + - src/ephy-window.c | 19 ++++++++++++++----- - 2 files changed, 15 insertions(+), 5 deletions(-) - -commit 8f4b964c570b0159126af073606039b711abc917 -Author: Claudio Saavedra -Date: Thu Jun 14 16:54:52 2012 +0300 - - ephy-window: remove ephy-fullscreen-popup - - We're no longer using it - - https://bugzilla.gnome.org/show_bug.cgi?id=671195 - - doc/reference/Makefile.am | 1 - - src/Makefile.am | 2 - - src/ephy-fullscreen-popup.c | 384 -------------------------------------------- - src/ephy-fullscreen-popup.h | 74 --------- - src/ephy-window.c | 90 ----------- - 5 files changed, 551 deletions(-) - -commit bc1be9707ed517b0af62ed7bb1fb926bd08bd66d -Author: Claudio Saavedra -Date: Wed Jun 20 14:03:06 2012 +0300 - - ephy-notebook: fix the property enabling tabs visibility - - Replace the redundant and unused "show-tabs" with "tabs-allowed", and - allow its use to ultimately hide the tabs, regardless of the policy, - whenever the application UI deems necessary. - - https://bugzilla.gnome.org/show_bug.cgi?id=678468 - - src/ephy-notebook.c | 31 +++++++++++++++++-------------- - src/ephy-notebook.h | 4 ++-- - src/ephy-window.c | 2 +- - 3 files changed, 20 insertions(+), 17 deletions(-) - -commit 12de056786b7c643058939ade4cadb6ee5d60e27 -Author: Claudio Saavedra -Date: Wed Jun 20 10:01:41 2012 +0300 - - ephy-location-controller: add missing get_property bits for "show-icon" - - src/ephy-location-controller.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 373899ffdddc869f3852b04e058ac82c9deac2ba -Author: Claudio Saavedra -Date: Wed May 9 19:06:18 2012 +0300 - - ephy-window: add a method to toggle visibility of default actions - - Where default actions are the ones that should be disabled when we - display a blank page or anything that is not a webpage. - - https://bugzilla.gnome.org/show_bug.cgi?id=678405 - - src/ephy-window.c | 30 +++++++++++++++++++----------- - 1 file changed, 19 insertions(+), 11 deletions(-) - -commit f676e68517dd300f6537ee15bd747665d6f05163 -Author: Claudio Saavedra -Date: Wed May 9 18:22:40 2012 +0300 - - ephy-location-controller: add a boolean "show-icon" property - - https://bugzilla.gnome.org/show_bug.cgi?id=678405 - - src/ephy-location-controller.c | 22 ++++++++++++++++++++++ - 1 file changed, 22 insertions(+) - -commit 3916712fac2b29e3825058288954f771a7fb3709 -Author: Claudio Saavedra -Date: Wed May 9 18:21:40 2012 +0300 - - ephy-location-entry: make it possible to hide the favicon - - https://bugzilla.gnome.org/show_bug.cgi?id=678405 - - lib/widgets/ephy-location-entry.c | 42 ++++++++++++++++++++++++++++++++++++--- - lib/widgets/ephy-location-entry.h | 3 +++ - 2 files changed, 42 insertions(+), 3 deletions(-) - -commit 3b335fc1688be727c7a9a72d4aa2d8282911712a -Author: Claudio Saavedra -Date: Tue May 8 21:35:34 2012 +0300 - - ephy-window: split ephy_window_set_active_tab() into smaller methods - - Which we will also reuse later on. - - https://bugzilla.gnome.org/show_bug.cgi?id=678405 - - src/ephy-window.c | 340 ++++++++++++++++++++++++++++-------------------------- - 1 file changed, 175 insertions(+), 165 deletions(-) - -commit 51e62b6cd9c8f4f0101660a8ff9b4e43aaae3411 -Author: Claudio Saavedra -Date: Tue May 8 21:34:06 2012 +0300 - - ephy-window: add _ephy_window_set_navigation_flags() - - We'll share this code later. - - https://bugzilla.gnome.org/show_bug.cgi?id=678405 - - src/ephy-window.c | 24 ++++++++++++++---------- - 1 file changed, 14 insertions(+), 10 deletions(-) - -commit 0485d051951c4d26e335d6415bf2b9eaebd9a797 -Author: Tom Tryfonidis -Date: Tue Jun 19 16:48:56 2012 +0300 - - Updated Greek translation - - po/el.po | 1530 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 788 insertions(+), 742 deletions(-) - -commit 8ba8c3e49734ff1214e28e47729cd018e7d29557 -Author: Diego Escalante Urrelo -Date: Thu Jun 14 18:46:09 2012 -0500 - - ephy-shell: EPHY_EMBED_SHELL_MODE_TEST means no realize - - https://bugzilla.gnome.org/show_bug.cgi?id=678134 - - src/ephy-shell.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 6594295a337008aed3495adf7dade4c2d54c783e -Author: Xan Lopez -Date: Fri Jun 15 09:09:17 2012 +0200 - - ephy-session-test: test recovering a multiple-window session - - tests/ephy-session-test.c | 51 ++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 50 insertions(+), 1 deletion(-) - -commit 57e1bece15f78b6372e57f51937ab42e9f77fe07 -Author: Xan Lopez -Date: Fri Jun 15 08:49:35 2012 +0200 - - ephy-shell: move variable to the only scope where it's used - - src/ephy-shell.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit a279d7c8316c3a21d4000c45b38e25f55b339b43 -Author: Xan Lopez -Date: Fri Jun 15 08:41:17 2012 +0200 - - ephy-shell: initialize jump_to variable to FALSE - - Otherwise commit ccf3836d601c makes us use that variable with a - garbage value most of the time, since it won't be initialized - unconditionally anymore. - - src/ephy-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d2d47f45c2eac3ea3c6626df0143482aa0179878 -Author: Diego Escalante Urrelo -Date: Thu May 31 21:39:37 2012 -0500 - - popup-commands: use g_get_user_special_dir API - - "Pictures" was hardcoded as the destination folder, use - G_USER_DIRECTORY_PICTURES instead. - - https://bugzilla.gnome.org/show_bug.cgi?id=677240 - - src/popup-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 820a1e5c39b562e393ce7de031cd17b819460829 -Author: Diego Escalante Urrelo -Date: Sat Apr 7 02:47:50 2012 -0500 - - tests: add ephy-shell-test - - https://bugzilla.gnome.org/show_bug.cgi?id=673683 - - tests/Makefile.am | 6 + - tests/ephy-shell-test.c | 362 ++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 368 insertions(+) - -commit b33364807ef23cdca508ce2f430cd6f59203d3dc -Author: Diego Escalante Urrelo -Date: Sat Apr 7 02:52:00 2012 -0500 - - ephy-shell: document EphyNewTabFlags - - https://bugzilla.gnome.org/show_bug.cgi?id=673683 - - src/ephy-shell.h | 27 +++++++++++++++++++++++++++ - 1 file changed, 27 insertions(+) - -commit 27a4bdbc192302b7424d4400ceecc1f1a0cca432 -Author: Diego Escalante Urrelo -Date: Sat May 26 19:18:32 2012 -0500 - - e-history-service: print db file when open fails - - lib/history/ephy-history-service.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b6cdb8bec9d26947eaa89a7e74b4bd5a5cbb2677 -Author: Diego Escalante Urrelo -Date: Sat Mar 31 19:39:44 2012 -0500 - - tests: add ephy-web-app-utils-test - - Tests create, exists, delete, list API. - No network access required. - - https://bugzilla.gnome.org/show_bug.cgi?id=673271 - - tests/Makefile.am | 4 ++ - tests/ephy-web-app-utils-test.c | 153 ++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 157 insertions(+) - -commit 3de7945065fc0d039c9270b5c97fc4a0731c98ed -Author: Diego Escalante Urrelo -Date: Sat May 26 16:59:08 2012 -0500 - - e-web-app-utils: warn when app dir already exists - - https://bugzilla.gnome.org/show_bug.cgi?id=673271 - - lib/ephy-web-app-utils.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit ccf3836d601c18eadab44a2f4a2f6c1b3605f304 -Author: Diego Escalante Urrelo -Date: Sat Apr 7 01:08:08 2012 -0500 - - ephy-shell: imitate other flag checks for jump_to - - https://bugzilla.gnome.org/show_bug.cgi?id=676905 - - src/ephy-shell.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit e32345ae0752c2b292b7ce84c342700339fd0d25 -Author: Diego Escalante Urrelo -Date: Sat Apr 7 01:04:53 2012 -0500 - - ephy-shell: handy gboolean fullscreen_lockdown - - https://bugzilla.gnome.org/show_bug.cgi?id=676905 - - src/ephy-shell.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 5abbb836ea12907dfa8deff8efcd3ca9f971e226 -Author: Diego Escalante Urrelo -Date: Sat Apr 7 00:59:31 2012 -0500 - - ephy-shell: fix braces - - https://bugzilla.gnome.org/show_bug.cgi?id=676905 - - src/ephy-shell.c | 8 +++----- - 1 file changed, 3 insertions(+), 5 deletions(-) - -commit bab0d69b121a3693295e3f7a71ba9367cb65445b -Author: Diego Escalante Urrelo -Date: Sat Apr 7 00:58:43 2012 -0500 - - ephy-web-view: remove unused EphyWebViewChrome elements - - https://bugzilla.gnome.org/show_bug.cgi?id=676904 - - embed/ephy-web-view.c | 4 +--- - embed/ephy-web-view.h | 10 ++-------- - src/ephy-shell.c | 5 ++--- - 3 files changed, 5 insertions(+), 14 deletions(-) - -commit 9954541fdc25579033d396554717b4e4c30c8cfb -Author: Carlos Garcia Campos -Date: Thu Jun 14 19:35:58 2012 +0200 - - Fix memory leak - - src/window-commands.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit c222791900a8fac54bf5e76a19639f893fdafd1c -Author: Xan Lopez -Date: Thu Jun 14 17:41:33 2012 +0200 - - epiphany-sections: remove some dead stuff - - doc/reference/epiphany-sections.txt | 8 -------- - 1 file changed, 8 deletions(-) - -commit e489f023a35648fde793b5bafe71d65dc815a39b -Author: Xan Lopez -Date: Thu Jun 14 17:35:58 2012 +0200 - - Also remove the po/ old ChangeLog - - Makefile.am | 1 - - po/ChangeLog.pre-2-23 | 8270 ------------------------------------------------- - 2 files changed, 8271 deletions(-) - -commit 0f0b3bec125bc43c45b069a8cfbfd20b194f5922 -Author: Xan Lopez -Date: Thu Jun 14 16:10:20 2012 +0200 - - Makefile.am: the old ChangeLogs are gone - - Makefile.am | 5 ----- - 1 file changed, 5 deletions(-) - -commit 0acc9702a2c25cb121d5e7e9d731d3b3ea26ecfa -Author: Claudio Saavedra -Date: Thu Jun 14 16:03:04 2012 +0300 - - windows-commands: remove dead code - - The toolbar-editor is gone, so this code should be gone too. - - src/window-commands.c | 15 --------------- - 1 file changed, 15 deletions(-) - -commit 25c4b47c0630b758fd97a86d9c9b3944d193fe1d -Author: Carlos Garcia Campos -Date: Tue Jun 5 09:15:03 2012 +0200 - - ephy-download: Simplify decide_action_from_mime - - Remove unused variables and fix memory leaks - - https://bugzilla.gnome.org/show_bug.cgi?id=676484 - - embed/ephy-download.c | 45 ++++++++++++++++----------------------------- - 1 file changed, 16 insertions(+), 29 deletions(-) - -commit 2b5cfe828cef29dd20225540fdd2bf5fcbf6b8fc -Author: Carlos Garcia Campos -Date: Tue May 29 14:30:49 2012 +0200 - - e-file-helpers: Add ephy_file_create_data_uri_for_filename() - - It creates a data URI for the given filename. Use the new function when - building error and applications pages. - - https://bugzilla.gnome.org/show_bug.cgi?id=677025 - - doc/reference/epiphany-sections.txt | 1 + - embed/ephy-request-about.c | 16 +++++------- - embed/ephy-web-view.c | 33 +----------------------- - lib/ephy-file-helpers.c | 51 +++++++++++++++++++++++++++++++++++++ - lib/ephy-file-helpers.h | 2 ++ - 5 files changed, 62 insertions(+), 41 deletions(-) - -commit 8e096384a3e15ba1b68235045c6148a8af29cedb -Author: Xan Lopez -Date: Thu Jun 14 13:25:58 2012 +0200 - - Remove old ChangeLogs - - These are huge and if anyone is really interested in the old history - she can always use the git history to figure out things. - - ChangeLog-20030925 | 11717 --------------------------------------------------- - ChangeLog-20040912 | 10997 ----------------------------------------------- - ChangeLog-20050828 | 7360 -------------------------------- - ChangeLog-20061106 | 6219 --------------------------- - ChangeLog-20070912 | 2251 ---------- - 5 files changed, 38544 deletions(-) - -commit d888437f3edd95b6505bb998294e1b129576917a -Author: Xan Lopez -Date: Thu Jun 14 08:40:10 2012 +0200 - - ephy-bookmarks-import: missing return after if - - This was making the file-check test never run unless we were in - lock-down mode. - - src/bookmarks/ephy-bookmarks-import.c | 1 + - 1 file changed, 1 insertion(+) - -commit 979434a28ef2025f66655ceb83c7fbfd9fb48d7f -Author: Xan Lopez -Date: Thu Jun 14 07:33:35 2012 +0200 - - tests: add the beginnings of ephy-session unit testing - - For now a simple test that verifies that loading a session works. - - We need to link with the resource files, which is unfortunate, but I'm - not sure there's a way around it since this test will actually spawn a - full EphyWindow (ie, it's not only testing the session or shell code - but the entire browser as a side effect). - - tests/Makefile.am | 6 +++ - tests/ephy-session-test.c | 98 +++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 104 insertions(+) - -commit 4873a591b6e90a6df99e7d0965c93b74bf4fec85 -Author: Xan Lopez -Date: Thu Jun 14 07:32:26 2012 +0200 - - Add a new mode for shell testing, EPHY_EMBED_SHELL_MODE_TEST - - For now the only difference is that no top-level window will be shown - in this mode, but in the future it can be extended to behave in a - manner appropriate for testing. - - embed/ephy-embed-shell.h | 3 ++- - src/ephy-session.c | 9 ++++++--- - src/ephy-shell.c | 3 ++- - 3 files changed, 10 insertions(+), 5 deletions(-) - -commit 600192397f1a70f56f8c592353e40fe213aa3157 -Author: Xan Lopez -Date: Wed Jun 13 21:47:07 2012 +0200 - - ephy-session: add a method to load a session from a string - - And re-write the ephy_session_load method on top of it. We'll use this - in our unit tests. - - src/ephy-session.c | 92 ++++++++++++++++++++++++++++++++++++++++++------------ - src/ephy-session.h | 5 +++ - 2 files changed, 77 insertions(+), 20 deletions(-) - -commit 6c219a58f4126138eb7ff31614b5101272fc6a30 -Author: Carlos Garcia Campos -Date: Tue Jun 5 13:27:31 2012 +0200 - - ephy-download-widget: Show bytes downloaded when the total size is unknown - - lib/widgets/ephy-download-widget.c | 74 +++++++++++++++++++++++++++----------- - 1 file changed, 54 insertions(+), 20 deletions(-) - -commit 14e79589e2990577107406fa9d91cdf3cc62c0cd -Author: Claudio Saavedra -Date: Wed Mar 14 16:44:34 2012 +0200 - - ephy-completion-model: use a cancellable with the history service - - For two things: first, cancel pending operations if a new search term - is given before this is complete and, second, to cancel any operation - remaining during the model disposal. - - https://bugzilla.gnome.org/show_bug.cgi?id=672073 - - src/ephy-completion-model.c | 15 ++++++++++++++- - 1 file changed, 14 insertions(+), 1 deletion(-) - -commit 59c27f399380abedc9fc39ea18238448bf2b9230 -Author: Claudio Saavedra -Date: Wed Mar 14 16:44:34 2012 +0200 - - ephy-history-window: cancel history operations during dispose - - To avoid surprises if the history-window happens to be destroyed. - - https://bugzilla.gnome.org/show_bug.cgi?id=672073 - - src/ephy-history-window.c | 16 ++++++++++++---- - 1 file changed, 12 insertions(+), 4 deletions(-) - -commit e83e965f4d59773d3f54fdfd85f1c862c45d6111 -Author: Carlos Garcia Campos -Date: Tue Jun 5 18:10:33 2012 +0200 - - ephy-download-widget: Check the icon has changed before updating the image - - lib/widgets/ephy-download-widget.c | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -commit 774148787a7061f82413d409cfbe18658c4597d5 -Author: Carlos Garcia Campos -Date: Tue Jun 5 18:10:05 2012 +0200 - - ephy-download-widget: Don't leak the GIcon - - lib/widgets/ephy-download-widget.c | 22 +++++++++++++++++----- - 1 file changed, 17 insertions(+), 5 deletions(-) - -commit 4c23170684f95f4209c5245c1a4663ebc894f676 -Author: Pavel Vasin -Date: Mon Jun 11 20:06:38 2012 +0400 - - ephy-session: fix memory leak in write_tab() - - https://bugzilla.gnome.org/show_bug.cgi?id=677720 - - src/ephy-session.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit a05676a3259e266aa9da842e1059d5df0b177619 -Author: Pavel Vasin -Date: Mon Jun 11 12:54:19 2012 +0400 - - ephy-bookmarks-editor: fix GList leaks - - https://bugzilla.gnome.org/show_bug.cgi?id=677720 - - src/bookmarks/ephy-bookmarks-editor.c | 6 ++---- - 1 file changed, 2 insertions(+), 4 deletions(-) - -commit 2af68d193ad50ad25e204da88858c8329a2a59aa -Author: Pavel Vasin -Date: Mon Jun 11 12:28:12 2012 +0400 - - ephy-bookmarks-editor: fix memory leak - - webkit_favicon_database_get_favicon_uri returns newly allocated string - - https://bugzilla.gnome.org/show_bug.cgi?id=677720 - - src/bookmarks/ephy-bookmarks-editor.c | 15 ++++++++++++++- - 1 file changed, 14 insertions(+), 1 deletion(-) - -commit 19ccfbca0a09fe5d5728791bd1f90345b5ba77fa -Author: Pavel Vasin -Date: Fri Jun 8 21:11:07 2012 +0400 - - ephy-completion-model: fix GList of EphyHistoryURL leak - - https://bugzilla.gnome.org/show_bug.cgi?id=677720 - - src/ephy-completion-model.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ed9b5563be8ad98d683513eef0db5931f674890e -Author: Pavel Vasin -Date: Fri Jun 8 18:19:21 2012 +0400 - - ephy-web-view: fix GList leak - - https://bugzilla.gnome.org/show_bug.cgi?id=677720 - - embed/ephy-web-view.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit d79b58f0d628d4c23859309724acd649c19d8ffc -Author: Pavel Vasin -Date: Fri Jun 8 14:50:54 2012 +0400 - - ephy-bookmarks: fix memory leaks - - webkit_favicon_database_get_favicon_uri returns newly allocated string - - https://bugzilla.gnome.org/show_bug.cgi?id=677720 - - src/bookmarks/ephy-bookmarks.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit 13af6864b16d2291d16efb49a6f3d3a4f44fbaf2 -Author: Pavel Vasin -Date: Fri Jun 8 14:40:18 2012 +0400 - - ephy-bookmark-action: fix memory leak - - webkit_favicon_database_get_favicon_uri returns newly allocated string - - https://bugzilla.gnome.org/show_bug.cgi?id=677720 - - src/bookmarks/ephy-bookmark-action.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 236fcd2eaf94c0011156e92ebf8814ead3915d87 -Author: Pavel Vasin -Date: Fri Jun 8 13:58:10 2012 +0400 - - ephy-profile-utils: fix memory leak - - https://bugzilla.gnome.org/show_bug.cgi?id=677720 - - lib/ephy-profile-utils.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit c11e8f1c77127a75a842ba3d9a75ade1b6ba9d2b -Author: Dan Williams -Date: Fri Jun 8 17:09:36 2012 -0500 - - ephy-web-view: fix use-after-free in get_file_content_as_base64() - - image_type is owned by file_info, so we can't free file_info until - after we're done with image_type. Fixes crash when error page - is displayed. Valgrind trace: - - ==1916== Invalid read of size 1 - ==1916== at 0x38CBA7B328: _IO_default_xsputn (in /lib64/libc-2.14.90.so) - ==1916== by 0x38CBA4B3A7: vfprintf (in /lib64/libc-2.14.90.so) - ==1916== by 0x38CBB084B0: __vasprintf_chk (in /lib64/libc-2.14.90.so) - ==1916== by 0x38CDA8A44A: g_vasprintf (stdio2.h:199) - ==1916== by 0x38CDA69B0C: g_strdup_vprintf (gstrfuncs.c:509) - ==1916== by 0x38CDA69BAB: g_strdup_printf (gstrfuncs.c:535) - ==1916== by 0x47EA57: ephy_web_view_load_error_page (ephy-web-view.c:1978) - ==1916== by 0x47F6B2: load_error_cb (ephy-web-view.c:2119) - ==1916== by 0x38E8E7753F: webkit_marshal_BOOLEAN__OBJECT_STRING_POINTER (in /usr/lib64/libwebkitgtk-3.0.so.0.11.0) - ==1916== by 0x38CEA11381: g_closure_invoke (gclosure.c:777) - ==1916== by 0x38CEA23132: signal_emit_unlocked_R (gsignal.c:3547) - ==1916== by 0x38CEA2AEE1: g_signal_emit_valist (gsignal.c:3306) - ==1916== Address 0x4f02040 is 0 bytes inside a block of size 10 free'd - ==1916== at 0x4A0662E: free (vg_replace_malloc.c:366) - ==1916== by 0x38CDA5513E: g_free (gmem.c:252) - ==1916== by 0x38D1255908: _g_file_attribute_value_clear (gfileattribute.c:245) - ==1916== by 0x38D125A078: g_file_info_finalize (gfileinfo.c:324) - ==1916== by 0x38CEA1670F: g_object_unref (gobject.c:3018) - ==1916== by 0x47EA05: ephy_web_view_load_error_page (ephy-web-view.c:1974) - ==1916== by 0x47F6B2: load_error_cb (ephy-web-view.c:2119) - ==1916== by 0x38E8E7753F: webkit_marshal_BOOLEAN__OBJECT_STRING_POINTER (in /usr/lib64/libwebkitgtk-3.0.so.0.11.0) - ==1916== by 0x38CEA11381: g_closure_invoke (gclosure.c:777) - ==1916== by 0x38CEA23132: signal_emit_unlocked_R (gsignal.c:3547) - ==1916== by 0x38CEA2AEE1: g_signal_emit_valist (gsignal.c:3306) - ==1916== by 0x38CEA2BE83: g_signal_emit_by_name (gsignal.c:3389) - - https://bugzilla.gnome.org/show_bug.cgi?id=677736 - - embed/ephy-web-view.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 5098053fc257b3ce58302a441663b7b4eca676f2 -Author: Claudio Saavedra -Date: Mon Jun 11 12:13:12 2012 +0300 - - ephy-embed: fix a comment typo - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4abc9f5279b680d50627b9d7f884d3c8aa080e7f -Author: Claudio Saavedra -Date: Mon Jun 11 12:12:08 2012 +0300 - - ephy-window: simplify window_state_event() chain-up - - src/ephy-window.c | 6 ++---- - 1 file changed, 2 insertions(+), 4 deletions(-) - -commit c4e887a6f01546a054b95ec78e407e326fd45c1a -Author: Claudio Saavedra -Date: Thu May 10 15:26:34 2012 +0300 - - ephy-location-controller: add missing default case in set/get_property methods - - https://bugzilla.gnome.org/show_bug.cgi?id=675804 - - src/ephy-location-controller.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit db67dc8da8f07af861e6383c2e1f032343eedae7 -Author: Claudio Saavedra -Date: Thu May 10 15:11:38 2012 +0300 - - ephy-location-controller: use GBinding to sync properties with the entry - - https://bugzilla.gnome.org/show_bug.cgi?id=675804 - - src/ephy-location-controller.c | 70 +++++++++--------------------------------- - 1 file changed, 15 insertions(+), 55 deletions(-) - -commit ad00117319033a3fe51d739cabc482e7217cd248 -Author: Claudio Saavedra -Date: Thu May 10 14:06:35 2012 +0300 - - ephy-location-entry: make parameters actual properties - - So that they are bindable. - - https://bugzilla.gnome.org/show_bug.cgi?id=675804 - - lib/widgets/ephy-location-entry.c | 112 ++++++++++++++++++++++++++++++++++++++ - 1 file changed, 112 insertions(+) - -commit e4a612165350d8d1868b75745f8ffb273f38e8e0 -Author: Carlos Garcia Campos -Date: Tue May 29 14:44:25 2012 +0200 - - ephy-web-view: chain up to the parent constructed virtual method - - To make sure constructed is called in WebKitWebView if present. - - embed/ephy-web-view.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 30148599ed33d7581878ccc0cd4f637b604f744a -Author: Fran Diéguez -Date: Sun Jun 3 03:09:55 2012 +0200 - - Updated Galician translations - - po/gl.po | 115 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 68 insertions(+), 47 deletions(-) - -commit 3eaf35e534915414429ac68aad338eb3ed77e8da -Author: Kjartan Maraas -Date: Wed May 30 13:17:27 2012 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 129 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 73 insertions(+), 56 deletions(-) - -commit ac56e3bf5567d5caa6c24c5f57fd9f12bbc97d82 -Author: Matej Urbančič -Date: Tue May 29 09:16:52 2012 +0200 - - Updated Slovenian translation - - po/sl.po | 1318 ++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 801 insertions(+), 517 deletions(-) - -commit 474d8dd8137e402efbec3011813f1ba6735080ba -Author: Xan Lopez -Date: Fri May 25 20:12:53 2012 +0900 - - ephy-session: simplify code to handle session resume - - There's no need to tell the parse_embed method whether the window it - gets is the resume window or not, it can figure it out by itself. - - src/ephy-session.c | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit 2fdcf51451a143730ba1287d2d802e1d36977073 -Author: Xan Lopez -Date: Fri May 25 20:08:17 2012 +0900 - - ephy-session: format comments a bit better - - src/ephy-session.c | 19 ++++++++----------- - 1 file changed, 8 insertions(+), 11 deletions(-) - -commit 4b695e451f1714b640ff1adae903702399f38b01 -Author: Xan Lopez -Date: Fri May 25 20:05:48 2012 +0900 - - ephy-session: missing space before '(' - - src/ephy-session.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 735e2addb6e090c6e0bc99c59eecb85e5f55e366 -Author: Xan Lopez -Date: Fri May 25 19:55:32 2012 +0900 - - ephy-session: remove a couple of redundant includes - - src/ephy-session.c | 2 -- - 1 file changed, 2 deletions(-) - -commit b65ce5ba954e1f4a8f5411997e5312894f7e618b -Author: Diego Escalante Urrelo -Date: Sat May 26 18:46:46 2012 -0500 - - ephy-shell: fix a comment typo - - src/ephy-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 737dfa943e12cd8588f4897c31ba0800f6d322ab -Author: Diego Escalante Urrelo -Date: Sat Mar 31 19:22:36 2012 -0500 - - e-web-app-utils: warn when cookies are unavailable - - https://bugzilla.gnome.org/show_bug.cgi?id=673270 - - lib/ephy-web-app-utils.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 1b942ad48a848dedcb632895a1ac198c13993380 -Author: Diego Escalante Urrelo -Date: Sat May 26 16:53:07 2012 -0500 - - e-download: document get_content_type - - embed/ephy-download.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit f09209d1b359efeeebe7a2e5e5477be773723e2c -Author: Wylmer Wang -Date: Fri May 25 20:43:22 2012 +0800 - - update Simplified Chinese (zh_CN) translation - - po/zh_CN.po | 1125 ++++++++++++++++++++++++++++++++++++++--------------------- - 1 file changed, 737 insertions(+), 388 deletions(-) - -commit edbf2d1dcb8064d48cf462054e391cedc077112a -Author: Yaron Shahrabani -Date: Fri May 25 10:45:53 2012 +0300 - - Updated Hebrew translation. - - po/he.po | 166 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 99 insertions(+), 67 deletions(-) - -commit fdfa24b51c1cd6dd08cc17fde30f2ec14088fc8e -Author: Xan Lopez -Date: Fri May 25 11:52:29 2012 +0900 - - popup-commands: committed this by mistake - - src/popup-commands.c | 1 - - 1 file changed, 1 deletion(-) - -commit 49bb0ce0babf12de78673278c1a9fd7abd21f608 -Author: Xan Lopez -Date: Fri May 25 11:39:28 2012 +0900 - - configure.ac: require GTK+ 3.5.2 for OSD style class - - https://bugzilla.gnome.org/show_bug.cgi?id=676784 - - configure.ac | 2 +- - src/popup-commands.c | 1 + - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit d877fa5f1e7dc917095b0dc0565ec0f1ef3cec94 -Author: Diego Escalante Urrelo -Date: Thu May 24 00:35:16 2012 -0500 - - tests: include tests/data/ in dist - - Otherwise tests using its contents will fail on distcheck. - - configure.ac | 1 + - tests/Makefile.am | 2 ++ - tests/data/Makefile.am | 1 + - 3 files changed, 4 insertions(+) - -commit 848eda70900d77f2acb49c8a5558f01d5720623d -Author: Diego Escalante Urrelo -Date: Wed May 23 22:21:27 2012 -0500 - - tests: add ephy-file-helpers-test - - Test API for file switch, tmp file creation, downloads, desktop - directories. - - Take two of this test. Updated for ephy-file-helpers API changes. - Previously reverted on 185ab751c20a825f832efd89a7cfbd75fa09e20c. - - https://bugzilla.gnome.org/show_bug.cgi?id=673337 - - tests/Makefile.am | 7 + - tests/data/user-dirs.dirs | 2 + - tests/ephy-file-helpers-test.c | 401 +++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 410 insertions(+) - -commit b3804abc15d4cc0aa927a5295d6552d4eb5e0626 -Author: Diego Escalante Urrelo -Date: Sun Apr 1 20:48:52 2012 -0500 - - e-file-helpers: simplify ephy_file_get_downloads_dir - - Better explain the logic of the function and reorder the conditions. - This makes ~/Downloads the fallback instead of ~/Desktop. - - https://bugzilla.gnome.org/show_bug.cgi?id=673337 - - lib/ephy-file-helpers.c | 21 ++++++++++++++------- - 1 file changed, 14 insertions(+), 7 deletions(-) - -commit 02e9b253ea8d127c766172f029379073cddb8f91 -Author: Cosimo Cecchi -Date: Wed May 23 12:16:38 2012 -0400 - - embed: remove custom CSS styling for the overlay progressbar - - Now that the overlay progressbar is styled by the theme, we can just - set the OSD style class on the overlay to get the same effect. - - https://bugzilla.gnome.org/show_bug.cgi?id=676660 - - embed/ephy-embed.c | 4 ++-- - src/resources/epiphany.css | 29 ----------------------------- - 2 files changed, 2 insertions(+), 31 deletions(-) - -commit b6b0b34a2b74c55738cf1c8c62485eb3bf48512a -Author: Daniel Mustieles -Date: Mon May 21 13:56:42 2012 +0200 - - Updated Spanish translation - - po/es.po | 104 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 62 insertions(+), 42 deletions(-) - -commit 8b22ab4c219c08b1d4d46f59cf1b60316d5b2392 -Author: Lubomír Sedlář -Date: Sat May 12 15:41:55 2012 +0200 - - Fix memory leak in ephy_web_view_set_popups_allowed - - If ephy_embed_shell_get_embed_single () does not return a correct - manager, a location string is leaked. - - https://bugzilla.gnome.org/show_bug.cgi?id=675888 - - embed/ephy-web-view.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit c60cec78bfb5622e0c5b472078f5952606a0cee4 -Author: Lubomír Sedlář -Date: Mon May 14 15:08:36 2012 +0200 - - Always close bookmarks file - - During error handling it was possible to return from function without - closing bookmarks file and freeing two string, causing memory and - descriptor leaks. - - https://bugzilla.gnome.org/show_bug.cgi?id=675888 - - src/bookmarks/ephy-bookmarks-import.c | 18 +++++++++++------- - 1 file changed, 11 insertions(+), 7 deletions(-) - -commit deb8f250c145e4cdc52a4618c2a15dfcd6276e5d -Author: Lubomír Sedlář -Date: Mon May 14 15:10:15 2012 +0200 - - Prevent use of unitialized memory - - Initialize the variable to NULL, so that even without another assignment - it is safe to read it. - - https://bugzilla.gnome.org/show_bug.cgi?id=675888 - - src/popup-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit de2c7c273388467c91aec7c338cff287e3819ae1 -Author: Lubomír Sedlář -Date: Mon May 14 15:04:06 2012 +0200 - - Remove check for negative unsigned ints - - Unsigned integer can not be negative, therefore it is redundant to - check whether it is greater than or equal to zero. - - https://bugzilla.gnome.org/show_bug.cgi?id=675888 - - lib/ephy-node.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 9497d29693af5c553d7793729e705ebe61248f93 -Author: Xan Lopez -Date: Sat May 19 22:07:30 2012 +0900 - - preferences: fix 'Add language' dialog layout - - https://bugzilla.gnome.org/show_bug.cgi?id=676043 - - src/resources/prefs-dialog.ui | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 526519d14d82e3bf863ba59f3f0ad466e937250d -Author: Xan Lopez -Date: Sat May 19 20:36:59 2012 +0900 - - prefs: expose the Do Not Track setting in the preferences UI - - src/prefs-dialog.c | 3 ++ - src/resources/prefs-dialog.ui | 79 +++++++++++++++++++++++++++++-------------- - 2 files changed, 57 insertions(+), 25 deletions(-) - -commit f7a3fca8a8e03a5362d14e55613ac6d4103978fb -Author: Xan Lopez -Date: Sat May 19 20:23:44 2012 +0900 - - Add support for 'Do Not Track' - - 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. - - data/org.gnome.epiphany.gschema.xml | 5 ++++ - embed/ephy-web-view.c | 46 +++++++++++++++++++++++++++++++++++++ - lib/ephy-prefs.h | 1 + - 3 files changed, 52 insertions(+) - -commit 11badefa0ecef3884972cbc6ee773ee3ea1be6ec -Author: Xan Lopez -Date: Sat May 19 19:42:57 2012 +0900 - - ephy-main: fix typo in message - - src/ephy-main.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 211ec29e9c12f506df372268e5c05050878a4b7c -Author: Peteris Krisjanis -Date: Thu May 17 22:23:22 2012 +0300 - - Change of the title for Installed plugins page. - - po/lv.po | 6289 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 3260 insertions(+), 3029 deletions(-) - -commit 54a3122d8626f78338033a704d5849738f6dd2e6 -Author: Xan Lopez -Date: Wed May 16 18:21:21 2012 +0900 - - ephy-profile-utils: use absolute path for build dir - - That way we can run the tests from any directory in debug mode. - - lib/Makefile.am | 12 ++++++------ - lib/ephy-profile-utils.c | 2 +- - 2 files changed, 7 insertions(+), 7 deletions(-) - -commit 0f356e2c1eb200fd286b468bf0c7adc4b232d9a0 -Author: Xan Lopez -Date: Wed May 16 14:32:57 2012 +0900 - - ephy-profile-utils: tweak migrator location code - - The path to the just built migrator is known at compile time, so no - need to create strings at runtime. Also, share the name of the binary - itself to avoid silly bugs like last time. - - lib/ephy-profile-utils.c | 13 ++++++------- - 1 file changed, 6 insertions(+), 7 deletions(-) - -commit af721d7cb557611ad2e4d3a6694c9d849495ff03 -Author: Kjartan Maraas -Date: Tue May 15 16:21:56 2012 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 64 +++++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 41 insertions(+), 23 deletions(-) - -commit 58db4cddfda8d8ffa80e07c0b2b685d1507468f4 -Author: Reinout van Schouwen -Date: Sat May 12 00:59:20 2012 +0200 - - Updated Dutch translation by Rachid BM. Reviewed by Reinout van - Schouwen. - - po/nl.po | 1702 ++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 1033 insertions(+), 669 deletions(-) - -commit b661e586d391c10f9c78e07550ef46396e65cfa7 -Author: Fran Diéguez -Date: Fri May 11 11:26:30 2012 +0200 - - Updated Galician translations - - po/gl.po | 20 ++++++++++++++++---- - 1 file changed, 16 insertions(+), 4 deletions(-) - -commit 5b4d9bb2bea81adda9b90b7fa1fe70c4c3199634 -Author: Xan Lopez -Date: Thu May 10 16:54:55 2012 +0200 - - ephy-profile-utils: fix migrator binary name - - Mistakenly changed it to use underscores. - - lib/ephy-profile-utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b33944e8788011066aa546ad175335c077d2d31a -Author: Daniel Mustieles -Date: Thu May 10 11:59:33 2012 +0200 - - Updated Spanish translation - - po/es.po | 21 +++++++++++++++++---- - 1 file changed, 17 insertions(+), 4 deletions(-) - -commit fc39029f70921157329689bf25cbac53114caa2c -Author: Xan Lopez -Date: Thu May 10 11:02:44 2012 +0200 - - Remove a few more egg leftovers - - doc/reference/Makefile.am | 9 --------- - lib/Makefile.am | 1 - - lib/egg/Makefile.am | 1 - - src/Makefile.am | 1 - - 4 files changed, 12 deletions(-) - -commit 6c611eade581a8668e48270b39dc757830ce23ad -Author: Xan Lopez -Date: Wed May 9 23:35:12 2012 +0200 - - tests: test that trying to run an invalid migration step fails - - lib/Makefile.am | 13 +++++++------ - lib/ephy-profile-utils.c | 28 +++++++++++++++++++++++++--- - lib/ephy-profile-utils.h | 2 +- - src/ephy-main.c | 2 +- - tests/ephy-migration-test.c | 13 ++++++++++++- - 5 files changed, 46 insertions(+), 12 deletions(-) - -commit d30b9aed33f491a430a79b36409655d2d45afa8d -Author: Xan Lopez -Date: Wed May 9 23:34:38 2012 +0200 - - ephy-profile-migrator: allow to run just one migration step - - Use --do-step/-d and an index. - - lib/ephy-profile-migrator.c | 60 +++++++++++++++++++++++++++++++++++++++------ - 1 file changed, 53 insertions(+), 7 deletions(-) - -commit 709640d00c38c91f3ec41f09b0497520caea1fb3 -Author: Xan Lopez -Date: Wed May 9 22:44:30 2012 +0200 - - ephy-window: no need to cast the return value of g_object_new - - src/ephy-window.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit 3a759d2daf17ee1152bc3cfc6b1e7eb198177e76 -Author: Xan Lopez -Date: Wed May 9 18:10:33 2012 +0200 - - tests: start tests for the migration code - - Trivial first test, we just check the migration binary runs and does - not catastrophically. - - tests/Makefile.am | 4 +++ - tests/ephy-migration-test.c | 62 +++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 66 insertions(+) - -commit cc55649fb5923e1ba1c89c3c8aa25b1cb9401cda -Author: Xan Lopez -Date: Wed May 9 17:59:04 2012 +0200 - - ephy-profile-utils: make ephy_profile_utils_do_migration more verbose on failure - - So we can properly test it. - - lib/ephy-profile-utils.c | 11 +++++++---- - lib/ephy-profile-utils.h | 2 +- - 2 files changed, 8 insertions(+), 5 deletions(-) - -commit 001bb8c1a001d3ab2b3f8f704609e04042ef767d -Author: Xan Lopez -Date: Wed May 9 16:59:05 2012 +0200 - - Remove ephy-marshal.list, we don't use it anymore - - lib/ephy-marshal.list | 20 -------------------- - 1 file changed, 20 deletions(-) - -commit ac77612cc82296dd7883bfbc3c8d0c262e8b71b6 -Author: Fran Diéguez -Date: Wed May 9 13:27:07 2012 +0200 - - Updated Galician translations - - po/gl.po | 56 ++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 32 insertions(+), 24 deletions(-) - -commit f493e1e059e95b75aef79e46226f47a2608a79f2 -Author: Xan Lopez -Date: Wed May 9 13:25:49 2012 +0200 - - ephy-web-app-utils: remove unused variable - - lib/ephy-web-app-utils.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit 5a9e27209319069f50baa8a8ada31ee661358449 -Author: Xan Lopez -Date: Wed May 9 13:23:42 2012 +0200 - - lib/egg: type builtins are not used either - - lib/egg/Makefile.am | 67 +---------------------------------------------------- - 1 file changed, 1 insertion(+), 66 deletions(-) - -commit db44be25ec9de222f9a2af112e5bc623465473b0 -Author: Xan Lopez -Date: Wed May 9 12:53:05 2012 +0200 - - lib/egg: remove some leftovers - - lib/egg/Makefile.am | 21 ++----------------- - lib/egg/eggmarshalers.list | 1 - - lib/egg/update-from-egg.sh | 51 ---------------------------------------------- - 3 files changed, 2 insertions(+), 71 deletions(-) - -commit a025e7d7a50df9f7ebea6aaf9c86ca40ef03440e -Author: Xan Lopez -Date: Wed May 9 12:27:02 2012 +0200 - - ephy-web-app-utils: remove dummy toolbar XML file - - We don't use XML files to create our toolbars anymore, so this is not - needed. - - lib/ephy-web-app-utils.c | 17 ----------------- - 1 file changed, 17 deletions(-) - -commit dd510ece07f5e01debec5cd1605913cf7dec568d -Author: Xan Lopez -Date: Wed May 9 12:24:06 2012 +0200 - - ephy-profile-migrator: migrate Web Applications to new profile location - - We need to update their desktop files (they had references to the - profile directory) and the symlink of the .desktop file in the Shell - applications directory. - - It would be much easier to just delete and re-add the applications, - but unfortunately that would wipe out the existing profile data in the - apps (like cookies). - - lib/ephy-profile-migrator.c | 87 ++++++++++++++++++++++++++++++++++++++++++++- - lib/ephy-profile-utils.h | 2 +- - 2 files changed, 87 insertions(+), 2 deletions(-) - -commit f3a7c0fe44514d52f5a475e93470afea80390895 -Author: Xan Lopez -Date: Wed May 9 12:23:16 2012 +0200 - - ephy-web-app-utils: add the desktop file name to EphyWebApplication - - It's quite cumbersome to re-construct from its name and URL, so just - add it here. We'll use it to migrate the profile data. - - lib/ephy-web-app-utils.c | 3 +++ - lib/ephy-web-app-utils.h | 1 + - 2 files changed, 4 insertions(+) - -commit 6b7c59939699ce94931009f1086e92f773306a1e -Author: Xan Lopez -Date: Wed May 9 12:22:00 2012 +0200 - - Move ephy-web-app-utils to lib/ - - We are going to use it in the profile migrator, so it needs to be - there. Besides, this code just deals with plain data in the profile - and application dir, so it makes sense for it to be here. - - embed/Makefile.am | 4 +- - embed/ephy-web-app-utils.c | 498 --------------------------------------------- - embed/ephy-web-app-utils.h | 57 ------ - lib/Makefile.am | 2 + - lib/ephy-web-app-utils.c | 498 +++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-web-app-utils.h | 57 ++++++ - 6 files changed, 558 insertions(+), 558 deletions(-) - -commit 38fd1803464eb2e4b84298fe323fac47f4af9ab0 -Author: Xan Lopez -Date: Tue May 8 18:35:45 2012 +0200 - - ephy-profile-migrator: better safe than sorry in history migration - - Do nothing if the destination history file already exists. - - lib/ephy-profile-migrator.c | 20 +++++++++----------- - 1 file changed, 9 insertions(+), 11 deletions(-) - -commit 871693a8ea637bb8b5ed4d77fbb7698264a3876e -Author: Xan Lopez -Date: Tue May 8 18:06:42 2012 +0200 - - ephy-profile-migrator: migrate the profile dir location before anything else - - Otherwise we'll read the .migrated file *before* we move the old - profile. Not OK, it will make us start from scratch all the migration - - lib/ephy-profile-migrator.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 616fe15f7781921ec5d71fdcda76476137058a0f -Author: Xan Lopez -Date: Tue May 8 13:20:33 2012 +0200 - - Ensure private profile dirs actually do exist. - - Perhaps PRIVATE_PROFILE should implicitly add ENSURE_EXISTS, seems - logical. Do this for new. - - tests/ephy-download-test.c | 4 +++- - tests/ephy-embed-single-test.c | 4 +++- - tests/ephy-web-view-test.c | 4 +++- - 3 files changed, 9 insertions(+), 3 deletions(-) - -commit 6800fb02791cf40681e91a5824e6fde586e5604f -Author: Claudio Saavedra -Date: Tue May 8 13:27:25 2012 +0300 - - ephy-history: remove spurious castings - - lib/history/ephy-history-service-hosts-table.c | 2 +- - lib/history/ephy-history-service-urls-table.c | 2 +- - lib/history/ephy-history-service-visits-table.c | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -commit 936e759536705b22218afaceff4d81d348021402 -Author: Claudio Saavedra -Date: Fri Apr 27 16:11:00 2012 +0300 - - ephy-history-service: trim query strings to avoid reaching sqlite limit - - Sqlite limits the length of a LIKE pattern to 50000 bytes, therefore - we need to make sure that longer strings are not used as queries. - - https://bugzilla.gnome.org/show_bug.cgi?id=674848 - - lib/ephy-sqlite-statement.c | 12 ++++++++++++ - lib/ephy-sqlite-statement.h | 2 ++ - lib/ephy-sqlite.h | 2 ++ - lib/history/ephy-history-service-hosts-table.c | 2 +- - lib/history/ephy-history-service-urls-table.c | 2 +- - lib/history/ephy-history-service-visits-table.c | 2 +- - 6 files changed, 19 insertions(+), 3 deletions(-) - -commit bb10c338f3acb2dbdfe7405e7305f928df636f42 -Author: Daniel Mustieles -Date: Tue May 8 11:48:19 2012 +0200 - - Updated Spanish translation - - po/es.po | 56 ++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 32 insertions(+), 24 deletions(-) - -commit 850104ef1d0b44a92fcda554d0691ed40a902c15 -Author: Xan Lopez -Date: Wed Apr 25 23:33:53 2012 -0400 - - Based on a patch by Jon McCann. - - Migrate profile directory to XDG config dir - - https://bugzilla.gnome.org/show_bug.cgi?id=522810 - - lib/ephy-file-helpers.c | 5 ++-- - lib/ephy-file-helpers.h | 3 --- - lib/ephy-profile-migrator.c | 63 +++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 65 insertions(+), 6 deletions(-) - -commit 3847db0803addac9f0b90dc86767d8f65768d4ad -Author: Xan Lopez -Date: Mon May 7 20:27:33 2012 +0200 - - Allow for more fine-grained file helpers init - - Since we are about to migrate our profile dir, allow file helpers init - to not ensure the profile dir exists (it was hardcoded until now). For - this we get rid of the ugly boolean parameters and add a flags - parameter, which preserves the old behaviors and allows for this new - option. - - We update all the callers in the tree. - - lib/ephy-file-helpers.c | 17 ++++++++++------- - lib/ephy-file-helpers.h | 11 +++++++++-- - lib/ephy-profile-migrator.c | 2 +- - src/ephy-main.c | 13 ++++++++++--- - tests/ephy-download-test.c | 2 +- - tests/ephy-embed-single-test.c | 2 +- - tests/ephy-web-view-test.c | 2 +- - 7 files changed, 33 insertions(+), 16 deletions(-) - -commit 8c65eb746306499465f23057dbd4dea484c953aa -Author: Xan Lopez -Date: Mon May 7 20:27:05 2012 +0200 - - ephy-profile-utils: split profile migration from EphyShell - - Call it directly from main, since we want it to happen before the file - helpers initialization. - - lib/ephy-profile-utils.c | 17 +++++++++++++++++ - lib/ephy-profile-utils.h | 2 ++ - src/ephy-main.c | 4 ++++ - src/ephy-shell.c | 20 -------------------- - 4 files changed, 23 insertions(+), 20 deletions(-) - -commit 60a504dd7ad9f4b621181994c672344fd694fbde -Author: William Jon McCann -Date: Wed Apr 25 23:19:16 2012 -0400 - - Drop the use of GTK accel maps - - https://bugzilla.gnome.org/show_bug.cgi?id=674870 - - lib/ephy-file-helpers.c | 37 ------------------------------------- - lib/ephy-file-helpers.h | 2 -- - src/ephy-main.c | 3 --- - 3 files changed, 42 deletions(-) - -commit 495f7fc6dc01184920266f6e0c7d8a7f16fc5db4 -Author: Tom Tryfonidis -Date: Thu May 3 11:04:16 2012 +0300 - - Updated Greek translation - - po/el.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 58c64161dd25f71b0d67c5fa9afb08dd1c39207f -Author: Tom Tryfonidis -Date: Wed May 2 12:51:58 2012 +0300 - - Updated Greek translation - - po/el.po | 2889 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1409 insertions(+), 1480 deletions(-) - -commit 290160c8f1d293a7fca8a2e3f78c7203c205db4a -Author: Xan Lopez -Date: Tue May 1 23:11:43 2012 +0200 - - [release] 3.5.1 - - NEWS | 27 +++++++++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 28 insertions(+), 1 deletion(-) - -commit 185ab751c20a825f832efd89a7cfbd75fa09e20c -Author: Xan Lopez -Date: Tue May 1 23:07:30 2012 +0200 - - Revert "tests: add ephy-file-helpers-test" - - This reverts commit d1ba46b3f4a4e2afbffe5a0ab2543462caea0bbe. - - Does not pass distcheck and I need to release. - - tests/Makefile.am | 7 - - tests/data/user-dirs.dirs | 2 - - tests/ephy-file-helpers-test.c | 392 ----------------------------------------- - 3 files changed, 401 deletions(-) - -commit a166462bcaf8211416c3e19a421c0ae5279e1b9f -Author: Diego Escalante Urrelo -Date: Wed Mar 7 18:04:43 2012 -0500 - - ephy-navigation-history-action: restore menus - - In ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc back/forward drop-downs were - removed. This commit brings them back, using the removed code with minor - updates. - - https://bugzilla.gnome.org/show_bug.cgi?id=671609 - - src/ephy-navigation-history-action.c | 396 +++++++++++++++++++++++++++++++++++ - 1 file changed, 396 insertions(+) - -commit afc5412ee87d1bf9bae16ff1c2b6ea7e3043d1e2 -Author: William Ting -Date: Tue Apr 3 22:42:56 2012 +0900 - - epiphany-bookmarks-html.xsl: prioritize smart link URIs over regular links - - 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 - - data/epiphany-bookmarks-html.xsl | 25 +++++++++++++++++++++---- - 1 file changed, 21 insertions(+), 4 deletions(-) - -commit 43c56077a25778deaa9d96e19633d3482cd70c0d -Author: Kjartan Maraas -Date: Mon Apr 30 14:31:46 2012 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit d1ba46b3f4a4e2afbffe5a0ab2543462caea0bbe -Author: Diego Escalante Urrelo -Date: Sun Apr 1 19:27:09 2012 -0500 - - tests: add ephy-file-helpers-test - - Test API for file switch, tmp file creation, downloads, desktop - directories. - - https://bugzilla.gnome.org/show_bug.cgi?id=673337 - - tests/Makefile.am | 7 + - tests/data/user-dirs.dirs | 2 + - tests/ephy-file-helpers-test.c | 392 +++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 401 insertions(+) - -commit cebb6d5f7baf01520e02d2434612c57fe878acea -Author: Diego Escalante Urrelo -Date: Sun Apr 1 19:24:39 2012 -0500 - - e-file-helpers: unset EPHY_UUID_ENVVAR on shutdown - - https://bugzilla.gnome.org/show_bug.cgi?id=673337 - - lib/ephy-file-helpers.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 9571561ecfea075e3443e5d7344be8f1ffa9e49e -Author: Martin Robinson -Date: Fri Apr 20 10:30:32 2012 -0700 - - Replace "system" with system languages when setting spelling dictionaries - - The string "system" is used as a placeholder for the default system - languages in the preference listing of spelling dictionaries. Before - sending this to WebKit to set the spelling dictionaries, we should - fill in the actual default system languages. - - embed/ephy-embed-prefs.c | 19 +++++++++++++++++++ - 1 file changed, 19 insertions(+) - -commit 055a0f01e8ffcb857c1187d13450972dab05cca8 -Author: Takayuki KUSANO -Date: Wed Apr 25 12:18:44 2012 +0900 - - [l10n] Update Japanese translation - - po/ja.po | 665 +++++++++++++++++++++++++++------------------------------------ - 1 file changed, 282 insertions(+), 383 deletions(-) - -commit 49998e766854b57d889fe3ed22221f3d81000806 -Author: Gabor Kelemen -Date: Sun Apr 22 15:45:10 2012 +0200 - - Updated Hungarian translation - - po/hu.po | 560 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 282 insertions(+), 278 deletions(-) - -commit ed4624fcd8ec557f4df74d47cb7e277c0165aa1c -Author: Yaron Shahrabani -Date: Sun Apr 22 11:26:31 2012 +0300 - - Updated Hebrew translation. - - po/he.po | 1139 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 642 insertions(+), 497 deletions(-) - -commit a101be10c2bcdbd5ca8d5d22b1315237d54f54f4 -Author: Diego Escalante Urrelo -Date: Fri Apr 6 12:09:49 2012 -0500 - - e-file-helpers: improve ephy_file_tmp_filename comment - - https://bugzilla.gnome.org/show_bug.cgi?id=673337 - - lib/ephy-file-helpers.c | 13 ++++++++----- - 1 file changed, 8 insertions(+), 5 deletions(-) - -commit 7a114f5c90af9fecad7054cd00badcc27511b469 -Author: Diego Escalante Urrelo -Date: Sat Mar 31 19:20:49 2012 -0500 - - e-web-app-utils: use LOG and g_warning instead of g_print - - https://bugzilla.gnome.org/show_bug.cgi?id=673348 - - embed/ephy-web-app-utils.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit b072cc742dea761846fc0d445851a53dff3ed829 -Author: Diego Escalante Urrelo -Date: Sat Apr 7 03:03:24 2012 -0500 - - ephy-shell: EPHY_NEW_TAB_DONT_SHOW_WINDOW means no realize - - 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 - - src/ephy-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f9e00946d51a745f392ba88bf879e77bb157e663 -Author: Gustavo Noronha Silva -Date: Mon Apr 9 00:10:51 2012 -0300 - - Also consider email inputs when looking for user/password forms - - 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 - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4435b6197650a8ce8e9ade06f8835e9ef140b425 -Author: Daniel Mustieles -Date: Fri Apr 20 17:31:45 2012 +0200 - - Updated Spanish translation - - po/es.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 3fb954ee7b3f63ab8a1e9ceaf5419a94521bd519 -Author: Fran Diéguez -Date: Thu Apr 19 18:53:47 2012 +0200 - - Updated Galician translations - - po/gl.po | 1628 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 897 insertions(+), 731 deletions(-) - -commit 9f8a7e6587d9e65ed824c282a2ee11dc292c3a7d -Author: Kjartan Maraas -Date: Wed Apr 18 20:09:48 2012 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 1190 +++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 718 insertions(+), 472 deletions(-) - -commit e58b47e186389775b4ef6d134ac80dea6f932446 -Author: Sebastian Keller -Date: Tue Apr 17 13:03:55 2012 +0200 - - ephy-window: remove additional spacing in the downloads bar - - It was added to accomodate the window resize grip, which does not - exist anymore in Adwaita. - - src/ephy-window.c | 2 -- - 1 file changed, 2 deletions(-) - -commit dc12025406c88968b2da872fd505ee9bf57190a4 -Author: Daniel Mustieles -Date: Mon Apr 16 16:41:25 2012 +0200 - - Updated Spanish translation - - po/es.po | 743 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 386 insertions(+), 357 deletions(-) - -commit 1bdd16af2c55c6131eeefa0808afa7e96fe5ef22 -Author: Xan Lopez -Date: Mon Apr 16 15:51:21 2012 +0200 - - ephy-notebook: disconnect settings signal handler on finalize - - Otherwise we'll try to update dead notebooks if the setting changes. - - src/ephy-notebook.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 7b666dcffb61a417ebe43ab9f10ca0450a288ea8 -Author: Xan Lopez -Date: Mon Apr 16 14:03:49 2012 +0200 - - Add an option to never show the tabs bar - - We'll use this when we land the Overview. - - data/org.gnome.epiphany.gschema.xml | 2 +- - lib/ephy-prefs.h | 3 ++- - src/ephy-notebook.c | 12 ++++++------ - 3 files changed, 9 insertions(+), 8 deletions(-) - -commit 6e45bec38cc6696c2cc789403082368fcdbcd68f -Author: Xan Lopez -Date: Mon Apr 16 14:03:19 2012 +0200 - - window-commands: switch pages using the EphyNotebook API - - 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. - - src/ephy-notebook.c | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++- - src/ephy-notebook.h | 4 ++++ - src/window-commands.c | 14 +++++------ - 3 files changed, 73 insertions(+), 9 deletions(-) - -commit 954fd17d06fe9453c355223d66207b23f359665b -Author: Xan Lopez -Date: Mon Apr 16 13:41:52 2012 +0200 - - Create a new 'tabs-bar-visibility-policy' setting - - 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. - - data/org.gnome.epiphany.gschema.xml | 9 +++++++-- - lib/ephy-prefs.h | 17 ++++++++++++----- - lib/ephy-profile-migrator.c | 18 +++++++++++++++++- - lib/ephy-profile-utils.h | 2 +- - src/ephy-notebook.c | 9 ++++++--- - 5 files changed, 43 insertions(+), 12 deletions(-) - -commit 6ca351051cee2d7528a4c03a5ffb50a230be5327 -Author: Xan Lopez -Date: Mon Apr 16 12:34:34 2012 +0200 - - Move resources to its own directory inside src/ - - po/POTFILES.in | 6 +- - src/Makefile.am | 18 +- - src/epiphany-application-menu.ui | 49 - - src/epiphany-bookmark-editor-ui.xml | 57 -- - src/epiphany-history-window-ui.xml | 46 - - src/epiphany-ui.xml | 102 -- - src/epiphany.css | 49 - - src/epiphany.ui | 664 ------------ - src/prefs-dialog.ui | 1361 ------------------------- - src/resources/epiphany-application-menu.ui | 49 + - src/resources/epiphany-bookmark-editor-ui.xml | 57 ++ - src/resources/epiphany-history-window-ui.xml | 46 + - src/resources/epiphany-ui.xml | 102 ++ - src/resources/epiphany.css | 49 + - src/resources/epiphany.ui | 664 ++++++++++++ - src/resources/prefs-dialog.ui | 1361 +++++++++++++++++++++++++ - 16 files changed, 2340 insertions(+), 2340 deletions(-) - -commit 0d0d1afa437f8ac25d85e090e318075dbdf0539d -Author: Xan Lopez -Date: Sat Apr 14 11:57:30 2012 +0200 - - ephy-embed-single: introspection fixes - - embed/ephy-embed-single.c | 2 +- - lib/ephy-node.c | 4 ++-- - 2 files changed, 3 insertions(+), 3 deletions(-) - -commit a6dbbf283bf3ebc233e5552d68020dee2549ca9c -Author: Xan Lopez -Date: Sat Apr 14 11:55:48 2012 +0200 - - ephy-embed-event: introspection fixes - - embed/ephy-embed-event.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 84fc611d406797fcb0727d84c1954d566f4f3059 -Author: Xan Lopez -Date: Sat Apr 14 11:52:43 2012 +0200 - - ephy-permission-manager: introspection fixes - - embed/ephy-permission-manager.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit d69a5a41a93b26a84fe00dc77709d9af3b21215b -Author: Xan Lopez -Date: Sat Apr 14 11:45:30 2012 +0200 - - ephy-embed-event: fix introspection warning - - embed/ephy-embed-event.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit dad79f566e60f303a1d7b3078bf07e3491fd1fd0 -Author: Xan Lopez -Date: Sat Apr 14 11:43:54 2012 +0200 - - Move a few EphyShell methods to ephy-private.h - - These are clearly not meant to be used outside of Epiphany. - - src/Makefile.am | 1 + - src/ephy-main.c | 1 + - src/ephy-private.h | 28 ++++++++++++++++++++++------ - src/ephy-shell.c | 1 + - src/ephy-shell.h | 13 ------------- - tests/ephy-download-test.c | 1 + - tests/ephy-embed-single-test.c | 1 + - tests/ephy-web-view-test.c | 1 + - 8 files changed, 28 insertions(+), 19 deletions(-) - -commit f91c081bb406b111b5674a9b91d2532b69fb1dd0 -Author: Xan Lopez -Date: Sat Apr 14 11:29:47 2012 +0200 - - ephy-web-view: fix a few gtk-doc warnings - - embed/ephy-web-view.c | 14 ++++++-------- - 1 file changed, 6 insertions(+), 8 deletions(-) - -commit bf26441de422173b913db70ec96839a0a426bae8 -Author: Xan Lopez -Date: Fri Apr 13 15:14:57 2012 +0200 - - Remove Help buttons - - Since there's no Help for now. - - src/epiphany-bookmark-editor-ui.xml | 1 - - src/epiphany-history-window-ui.xml | 1 - - src/epiphany.ui | 27 +++++++++++------------- - src/prefs-dialog.ui | 41 ++++++++++++++++++++++--------------- - 4 files changed, 37 insertions(+), 33 deletions(-) - -commit 48f9e3e9f2958b657769d53b7965fe94a44917f8 -Author: Xan Lopez -Date: Fri Apr 13 14:59:19 2012 +0200 - - Remove Epiphany manual - - 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 - - .gitignore | 6 - - Makefile.am | 8 +- - configure.ac | 1 - - help/C/epiphany-C.omf | 31 - - help/C/epiphany.xml | 2834 -------------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 3664 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1811 -> 0 bytes - help/C/figures/ephy-history-window-screenshot.png | Bin 36776 -> 0 bytes - help/C/figures/ephy-screenshot.png | Bin 58347 -> 0 bytes - help/C/legal.xml | 76 - - help/ChangeLog.pre-2-23 | 383 -- - help/Makefile.am | 12 - - help/bg/bg.po | 3016 --------------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 5601 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1485 -> 0 bytes - help/bg/figures/ephy-history-window-screenshot.png | Bin 57871 -> 0 bytes - help/bg/figures/ephy-screenshot.png | Bin 128950 -> 0 bytes - help/ca/ca.po | 3399 ----------------- - help/cs/cs.po | 3267 ---------------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 4609 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1658 -> 0 bytes - help/cs/figures/ephy-history-window-screenshot.png | Bin 71973 -> 0 bytes - help/cs/figures/ephy-screenshot.png | Bin 69619 -> 0 bytes - help/de/de.po | 3419 ----------------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 3278 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1994 -> 0 bytes - help/de/figures/ephy-history-window-screenshot.png | Bin 37216 -> 0 bytes - help/de/figures/ephy-screenshot.png | Bin 73939 -> 0 bytes - help/el/el.po | 3468 ----------------- - help/el/figures/ephy-screenshot.png | Bin 73817 -> 0 bytes - help/en_GB/en_GB.po | 1953 ---------- - help/epiphany.omf.in | 31 - - help/es/es.po | 3368 ----------------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 4083 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 2214 -> 0 bytes - help/es/figures/ephy-history-window-screenshot.png | Bin 151659 -> 0 bytes - help/es/figures/ephy-screenshot.png | Bin 80121 -> 0 bytes - help/eu/eu.po | 1281 ------- - help/eu/figures/ephy-history-window-screenshot.png | Bin 59287 -> 0 bytes - help/eu/figures/ephy-screenshot.png | Bin 145670 -> 0 bytes - help/fi/fi.po | 3973 -------------------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 3871 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1402 -> 0 bytes - help/fi/figures/ephy-history-window-screenshot.png | Bin 38963 -> 0 bytes - help/fi/figures/ephy-screenshot.png | Bin 62207 -> 0 bytes - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 4034 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1500 -> 0 bytes - help/fr/figures/ephy-history-window-screenshot.png | Bin 29127 -> 0 bytes - help/fr/figures/ephy-screenshot.png | Bin 412461 -> 0 bytes - help/fr/fr.po | 3397 ----------------- - help/gl/gl.po | 2656 ------------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 3809 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1600 -> 0 bytes - help/it/figures/ephy-history-window-screenshot.png | Bin 35515 -> 0 bytes - help/it/figures/ephy-screenshot.png | Bin 66949 -> 0 bytes - help/it/it.po | 1988 ---------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 6904 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 5032 -> 0 bytes - help/ja/figures/ephy-history-window-screenshot.png | Bin 26435 -> 0 bytes - help/ja/figures/ephy-screenshot.png | Bin 146198 -> 0 bytes - help/ja/ja.po | 3337 ---------------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 5853 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 2965 -> 0 bytes - help/nl/figures/ephy-history-window-screenshot.png | Bin 25119 -> 0 bytes - help/nl/figures/ephy-screenshot.png | Bin 55836 -> 0 bytes - help/nl/nl.po | 2152 ----------- - help/oc/oc.po | 2506 ------------ - help/ru/ru.po | 3371 ----------------- - help/sl/sl.po | 2033 ---------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 6405 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 4314 -> 0 bytes - help/sv/figures/ephy-history-window-screenshot.png | Bin 36750 -> 0 bytes - help/sv/figures/ephy-screenshot.png | Bin 74258 -> 0 bytes - help/sv/sv.po | 1972 ---------- - help/te/te.po | 2630 ------------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 4273 -> 0 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 2204 -> 0 bytes - help/uk/figures/ephy-history-window-screenshot.png | Bin 78291 -> 0 bytes - help/uk/figures/ephy-screenshot.png | Bin 56029 -> 0 bytes - help/uk/uk.po | 3254 ---------------- - help/zh_CN/zh_CN.po | 3032 --------------- - src/ephy-shell.c | 9 - - src/epiphany-application-menu.ui | 5 - - 83 files changed, 1 insertion(+), 62867 deletions(-) - -commit feb09045a75174f350b85391917dccce04246cba -Author: Daniel Martinez Cucalon -Date: Fri Apr 13 12:10:20 2012 +0200 - - Updated Aragonese translation - - po/an.po | 2536 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1174 insertions(+), 1362 deletions(-) - -commit 7e5bb20dfc1082d27e706fa1f0e898e2fca799b2 -Author: Xan Lopez -Date: Thu Apr 12 17:15:45 2012 +0200 - - Add a 'crashed' option to the session restore policy - - 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. - - data/org.gnome.epiphany.gschema.xml | 2 +- - lib/ephy-prefs.h | 3 ++- - 2 files changed, 3 insertions(+), 2 deletions(-) - -commit 9a0063cedde9bc02adc91c346a555ce1c0639c0c -Author: Xan Lopez -Date: Thu Apr 12 17:07:16 2012 +0200 - - ephy-prefs: use new coding style - - lib/ephy-prefs.h | 155 ++++++++++++++++++++++++++++--------------------------- - 1 file changed, 78 insertions(+), 77 deletions(-) - -commit bb759160ad593489d9b51488916a0fd8734136ca -Author: Xan Lopez -Date: Thu Apr 12 13:31:09 2012 +0200 - - Add a setting to control whether the session is automatically restored - - 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 - - data/org.gnome.epiphany.gschema.xml | 5 +++ - lib/ephy-prefs.h | 7 ++++ - src/ephy-session.c | 72 +++++++++++-------------------------- - src/ephy-window.c | 1 - - 4 files changed, 33 insertions(+), 52 deletions(-) - -commit 94f2fb5c7a80dc2e904d8296bda14a0e0324ccc1 -Author: Xan Lopez -Date: Wed Apr 11 18:57:55 2012 +0200 - - ephy-session: remove unused variable - - src/ephy-session.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 9757561f0f99d7d39fd0d49549fad5bd181afbe5 -Author: Diego Escalante Urrelo -Date: Fri Apr 6 15:06:08 2012 -0500 - - e-file-helpers: catch GErrors in switch_temp_file - - 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 - - lib/ephy-file-helpers.c | 53 ++++++++++++++++++++++++++++++++++++++----------- - 1 file changed, 41 insertions(+), 12 deletions(-) - -commit 8cad79a78ae4995e8a3677ff510b1c3fe955bfa2 -Author: Diego Escalante Urrelo -Date: Fri Apr 6 14:57:41 2012 -0500 - - e-file-helpers: remove old dirs from ephy_file - - https://bugzilla.gnome.org/show_bug.cgi?id=673665 - - lib/ephy-file-helpers.c | 6 ------ - 1 file changed, 6 deletions(-) - -commit 16982eb6c503ddbe7c4f489695b58f954eec76b8 -Author: Diego Escalante Urrelo -Date: Sat Apr 7 03:36:06 2012 -0500 - - tests: use EPHY_EMBED_SHELL_MODE_PRIVATE not FALSE - - https://bugzilla.gnome.org/show_bug.cgi?id=673684 - - tests/ephy-download-test.c | 2 +- - tests/ephy-embed-single-test.c | 2 +- - tests/ephy-web-view-test.c | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -commit fb4c19fdba899465209374405117cf1d1b9f45ce -Author: Xan Lopez -Date: Wed Apr 11 15:10:42 2012 +0200 - - web-apps: s/StartupNotification/StartupNotify/ in desktop files - - That's the correct name for the entry. - - https://bugzilla.gnome.org/show_bug.cgi?id=673865 - - embed/ephy-web-app-utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ff013df012c08044216250f38c79913cb196cbf4 -Author: Rudolfs -Date: Wed Apr 11 13:21:57 2012 +0200 - - ephy-shell: respect the lockdown quit setting - - https://bugzilla.gnome.org/show_bug.cgi?id=673649 - - src/ephy-shell.c | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -commit b8157349612cd043892ebdf180a2f3ab106fd39e -Author: Cheng-Chia Tseng -Date: Wed Apr 11 09:27:13 2012 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 944 +++++++++++++++++++++++++++++------------------------------ - po/zh_TW.po | 948 +++++++++++++++++++++++++++++------------------------------- - 2 files changed, 928 insertions(+), 964 deletions(-) - -commit a9c4ed6070822eb98f2e075f88e05c3eaab1a664 -Author: Carles Ferrando -Date: Tue Apr 10 23:52:47 2012 +0200 - - [l10n]Updated Catalan (Valencian) translation - - po/ca@valencia.po | 3410 ++++++++++++++++++++++++++--------------------------- - 1 file changed, 1670 insertions(+), 1740 deletions(-) - -commit 851109472536efcb93f9797ae82db6f006c14cd2 -Author: Jordi Serratosa -Date: Tue Apr 10 23:52:30 2012 +0200 - - [l10n] Fixes on Catalan translation - - po/ca.po | 422 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 208 insertions(+), 214 deletions(-) - -commit bbb6e24f60f499f6f5c4293d17052d8d02567bce -Author: Diego Escalante Urrelo -Date: Mon Apr 2 05:44:55 2012 -0500 - - ephy-embed-single-test: unref the created EphyShell - - https://bugzilla.gnome.org/show_bug.cgi?id=673273 - - tests/ephy-embed-single-test.c | 1 + - 1 file changed, 1 insertion(+) - -commit 27c169f074f0fb878f5d90078cf1aad11024e0ef -Author: Diego Escalante Urrelo -Date: Sat Mar 31 21:16:58 2012 -0500 - - ephy-embed-single: do not handle ephy-embed-prefs - - 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 - - embed/ephy-embed-single.c | 4 ---- - src/ephy-main.c | 3 +++ - 2 files changed, 3 insertions(+), 4 deletions(-) - -commit d18ab773b3cc3b6c96554dcd6fc06468adb3c37e -Author: Daniel Mustieles -Date: Sun Apr 8 13:22:40 2012 +0200 - - Updated Spanish translation - - po/es.po | 146 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 73 insertions(+), 73 deletions(-) - -commit 505895520025a9b7f266b50c96a745865f10a9a7 -Author: Diego Escalante Urrelo -Date: Mon Apr 2 01:15:30 2012 -0500 - - e-file-helpers: prevent invalid enumerator and return value - - 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 - - lib/ephy-file-helpers.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit d337ce9fedc74f7499536657bf82c2ee0bb57b0f -Author: Diego Escalante Urrelo -Date: Sun Apr 1 19:25:22 2012 -0500 - - e-file-helpers: remove ephy_file_add_recent_item - - It's a two-line save, and there are no users of this API. - - https://bugzilla.gnome.org/show_bug.cgi?id=673337 - - lib/ephy-file-helpers.c | 18 ------------------ - lib/ephy-file-helpers.h | 2 -- - 2 files changed, 20 deletions(-) - -commit 0f66b831e586467ae2aec78ca6658f6de971b930 -Author: Daniel Mustieles -Date: Wed Apr 4 13:26:58 2012 +0200 - - Updated Spanish translation - - po/es.po | 1490 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 814 insertions(+), 676 deletions(-) - -commit 7badce6f1015f28d2f01797d50d744aa0e62cc6e -Author: Xan Lopez -Date: Mon Apr 2 22:37:54 2012 +0200 - - ephy-completion-model: normalize NULL strings to "" in 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 - - src/ephy-completion-model.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit f056c1e715f4a3d0886b2fb0686f3f9bc3cbd74c -Author: Diego Escalante Urrelo -Date: Sat Mar 31 21:40:15 2012 -0500 - - ephy-download-test: correctly use fixture objects - - 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 - - tests/ephy-download-test.c | 19 ++----------------- - 1 file changed, 2 insertions(+), 17 deletions(-) - -commit f43619aadad751c6684b982ae88bd0e062cec921 -Author: Xan Lopez -Date: Mon Apr 2 11:49:45 2012 +0200 - - HACKING: update with comment about casts - - HACKING | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 1dcd2cf9478ec959ac7e54e594f073bf2fa562ee -Author: Xan Lopez -Date: Mon Apr 2 11:48:59 2012 +0200 - - ephy-shell: fix whitespace - - src/ephy-shell.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 97748c9a587f518e762009fd727b5fb6b39d6fa3 -Author: Xan Lopez -Date: Mon Apr 2 11:45:18 2012 +0200 - - Revert "e-web-app-utils: whitespace nitpicks in casts" - - This reverts commit 0b05e95f4aea0ab11ab11828e0bcc0b920d6230e. - - Our codebase is not completely consistent here, but as a rule we don't - do whitespaces in casts. - - embed/ephy-web-app-utils.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 76219bb62558233c1e06d9274fbcc695654e2512 -Author: Diego Escalante Urrelo -Date: Sun Apr 1 21:27:22 2012 -0500 - - e-file-helpers: fix weird spacing - - lib/ephy-file-helpers.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b92e5c74aed3d287455893021eb672b41ccb0835 -Author: Diego Escalante Urrelo -Date: Sun Apr 1 21:26:42 2012 -0500 - - e-file-helpers: missing Returns: in comment - - lib/ephy-file-helpers.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit e507590777bad7c85bf681651b60cf4d12b3735c -Author: Yuri Kozlov -Date: Sun Apr 1 13:53:10 2012 +0400 - - Updated Russian translation - - help/ru/ru.po | 1822 ++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 1021 insertions(+), 801 deletions(-) - -commit 5d77c12a13b8c32be0fbf17492cc0df080365692 -Author: Diego Escalante Urrelo -Date: Sat Mar 31 19:45:26 2012 -0500 - - ephy-shell: whitespace nitpick in cast - - src/ephy-shell.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 0b05e95f4aea0ab11ab11828e0bcc0b920d6230e -Author: Diego Escalante Urrelo -Date: Sat Mar 31 19:45:12 2012 -0500 - - e-web-app-utils: whitespace nitpicks in casts - - embed/ephy-web-app-utils.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit fe4925c3017479995797049a4f24660f538e9e0e -Author: Diego Escalante Urrelo -Date: Wed Mar 28 14:08:46 2012 -0500 - - e-web-app-utils: update and fix gtk-doc comments - - https://bugzilla.gnome.org/show_bug.cgi?id=673022 - - embed/ephy-web-app-utils.c | 20 +++++++++++++++++--- - 1 file changed, 17 insertions(+), 3 deletions(-) - -commit d2183fb3f517a7df6fea16c0993f1fe6bdf99e98 -Author: Diego Escalante Urrelo -Date: Wed Mar 28 13:59:53 2012 -0500 - - e-web-app-utils: sync var names in API - - https://bugzilla.gnome.org/show_bug.cgi?id=673021 - - embed/ephy-web-app-utils.c | 16 ++++++++-------- - embed/ephy-web-app-utils.h | 4 ++-- - 2 files changed, 10 insertions(+), 10 deletions(-) - -commit 68630a1430117e5cee147cc69c9ffab83fe40130 -Author: Diego Escalante Urrelo -Date: Wed Mar 28 13:52:32 2012 -0500 - - e-web-app-utils: remove ephy-web-view include - - https://bugzilla.gnome.org/show_bug.cgi?id=673019 - - embed/ephy-web-app-utils.c | 2 +- - embed/ephy-web-app-utils.h | 2 -- - 2 files changed, 1 insertion(+), 3 deletions(-) - -commit 2ef933ea60bcebbab86f4ca4fe7a4bf31b48e059 -Author: Alexandre Mazari -Date: Wed Mar 28 13:55:08 2012 -0500 - - e-web-app-utils: add ephy_web_application_exists - - Signed-off-by: Diego Escalante Urrelo - - https://bugzilla.gnome.org/show_bug.cgi?id=658925 - - embed/ephy-web-app-utils.c | 19 +++++++++++++++++++ - embed/ephy-web-app-utils.h | 2 ++ - src/window-commands.c | 9 +-------- - 3 files changed, 22 insertions(+), 8 deletions(-) - -commit c07d7675862fb64f8addf8d92704167d2b21168d -Author: Alexandre Mazari -Date: Wed Mar 28 13:37:26 2012 -0500 - - window-commands: get app name only once - - Avoid multiple calls to gtk_entry_get_text. - - Signed-off-by: Diego Escalante Urrelo - - https://bugzilla.gnome.org/show_bug.cgi?id=658925 - - src/window-commands.c | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -commit 71a003cab0961d03c9bbdd4452e3a4b9e921accd -Author: Diego Escalante Urrelo -Date: Tue Mar 27 05:31:49 2012 -0500 - - ephy-toolbar: fix stop/reload button alignment - - 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 - - src/ephy-toolbar.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 5f99eda5841d20f01c5ba887c67a68ab0e175c24 -Author: Diego Escalante Urrelo -Date: Tue Mar 27 16:43:32 2012 -0500 - - e-location-entry: make aligment pixel-perfect - - 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 - - lib/widgets/ephy-location-entry.c | 59 +++++++++++++++++++++++++++++++++++++++ - 1 file changed, 59 insertions(+) - -commit 0b9943bc68e6d64c52f365a8d8253c6e074576c6 -Author: Diego Escalante Urrelo -Date: Tue Mar 27 18:08:55 2012 -0500 - - e-location-entry: dim URL in completion rows - - https://bugzilla.gnome.org/show_bug.cgi?id=672927 - - lib/widgets/ephy-location-entry.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 638b4684c7e4fddfffe7458e6fe2992199df9da1 -Author: Diego Escalante Urrelo -Date: Tue Mar 27 17:16:45 2012 -0500 - - e-location-entry: redundant ellipsize-set - - https://bugzilla.gnome.org/show_bug.cgi?id=672927 - - lib/widgets/ephy-location-entry.c | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -commit dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd -Author: Diego Escalante Urrelo -Date: Tue Mar 27 16:47:20 2012 -0500 - - e-location-entry: make bookmark icon follow-state - - 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 - - lib/widgets/ephy-location-entry.c | 1 + - 1 file changed, 1 insertion(+) - -commit 3d7af5c53c2fd38129534f285675eab11ff5ef4d -Author: Xan Lopez -Date: Fri Mar 30 21:23:07 2012 +0200 - - ephy-encodings: reorder includes - - embed/ephy-encodings.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 9f55f021881a43e2e99b3e84970ec71c87d14c97 -Author: Xan Lopez -Date: Fri Mar 30 21:19:23 2012 +0200 - - Makefile: silence epiphany resources generation - - src/Makefile.am | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit e75c67eef25fe0137216cbb3b2b1e29f01b3c215 -Author: Xan Lopez -Date: Fri Mar 30 21:18:41 2012 +0200 - - ephy-encoding-dialog: reorder includes - - src/ephy-encoding-dialog.c | 17 ++++++++--------- - 1 file changed, 8 insertions(+), 9 deletions(-) - -commit c101a07424b5ab073ab44e325a8af7cbbb586e71 -Author: Kristjan SCHMIDT -Date: Fri Mar 30 20:32:09 2012 +0200 - - Updated Esperanto translation - - po/eo.po | 2547 +++++++++++++++++++++++++++----------------------------------- - 1 file changed, 1120 insertions(+), 1427 deletions(-) - -commit 8a886cb6af00b1a2fb7c544ba9b8cd82586e9c48 -Author: Xan Lopez -Date: Fri Mar 30 12:42:07 2012 +0200 - - ephy-window: listen to org.gnome.Epiphany.ui.show-toolbars - - We were not properly changing the UI if the key was changing at runtime. - - src/ephy-window.c | 30 ++++++++++++++++++++++++++++++ - 1 file changed, 30 insertions(+) - -commit 197ead54280e9c5b6478124ce8f30ca9fb65db6f -Author: Xan Lopez -Date: Fri Mar 30 12:17:59 2012 +0200 - - Remove the 'disable-menubar' option - - Since we don't have one anymore. - - data/epiphany.convert | 1 - - data/org.gnome.epiphany.gschema.xml | 3 --- - lib/ephy-prefs.h | 1 - - 3 files changed, 5 deletions(-) - -commit 0330e23faea77856debc0b7aafb5ce6861d8fc13 -Author: Xan Lopez -Date: Fri Mar 30 12:14:50 2012 +0200 - - Remove 'show-boomkarks-bar' option - - Since we don't have one anymore. - - data/epiphany.convert | 1 - - data/org.gnome.epiphany.gschema.xml | 4 ---- - lib/ephy-prefs.h | 1 - - 3 files changed, 6 deletions(-) - -commit 1d8d37e885f68852cfdee982d573644a5aa0b6f5 -Author: Xan Lopez -Date: Fri Mar 30 11:58:28 2012 +0200 - - ephy-session: use g_slice_new for SessionCommand structure - - src/ephy-session.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 381ce4af310607cc84ac1e84abbecda2d7d3e7d9 -Author: Xan Lopez -Date: Fri Mar 30 11:44:03 2012 +0200 - - ephy-window: save the session when the last window is closed manually - - 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 - - src/ephy-window.c | 17 ++++++++++++++++- - 1 file changed, 16 insertions(+), 1 deletion(-) - -commit 6f7e20b72eac9fab402061539bb108c1288dad3f -Author: Claudio Saavedra -Date: Thu Mar 29 17:45:23 2012 +0300 - - Fix compilation warning - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit faca291b909e6b57023880534e83b7f2c52fdd98 -Author: Xan Lopez -Date: Thu Mar 29 12:54:23 2012 +0200 - - configure.ac: this Makefile does not exist anymore - - configure.ac | 1 - - 1 file changed, 1 deletion(-) - -commit aaa40d7f56dd6ee56d33e016c5b4111a997a4d52 -Author: Claudio Saavedra -Date: Tue Mar 27 18:01:46 2012 +0300 - - history-service: remove unnecessary type cast - - https://bugzilla.gnome.org/show_bug.cgi?id=672926 - - lib/history/ephy-history-service.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ce80dceb7cbcbb1393b2519a142add4083af01dc -Author: Claudio Saavedra -Date: Tue Mar 27 18:01:29 2012 +0300 - - history-service: remove unused variables - - https://bugzilla.gnome.org/show_bug.cgi?id=672926 - - lib/history/ephy-history-service-private.h | 2 -- - lib/history/ephy-history-service.c | 1 - - 2 files changed, 3 deletions(-) - -commit 054325e572077b43646a19ec3527eca22efa3521 -Author: Piotr Drąg -Date: Wed Mar 28 20:40:36 2012 +0200 - - Updated POTFILES.in - - po/POTFILES.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 65391202450a610ed2f25b433ee8ba73e2cf440f -Author: Javier Jardón -Date: Tue Mar 27 16:10:43 2012 +0100 - - build: intltool 0.50 add proper support for gsettings schemas - - Its not needed to use the .in hack anymore - - Fixes https://bugzilla.gnome.org/show_bug.cgi?id=672932 - - configure.ac | 2 +- - data/Makefile.am | 9 +- - data/org.gnome.epiphany.gschema.xml | 258 +++++++++++++++++++++++++++++++++ - data/org.gnome.epiphany.gschema.xml.in | 258 --------------------------------- - 4 files changed, 262 insertions(+), 265 deletions(-) - -commit 233c86a85e63f00a246badabf1879569ad5d6ea6 -Author: Alexandre Mazari -Date: Wed Mar 28 19:56:43 2012 +0200 - - ephy-web-app-utils: do not use the webview in the web app creation method - - It's not really needed, will allow to reuse this code during profile - migration. - - https://bugzilla.gnome.org/show_bug.cgi?id=658925 - - embed/ephy-web-app-utils.c | 20 +++++++++----------- - embed/ephy-web-app-utils.h | 2 +- - src/window-commands.c | 2 +- - 3 files changed, 11 insertions(+), 13 deletions(-) - -commit f1c478dc347b8e59dab6e4d23095b44c33515be7 -Author: Xan Lopez -Date: Wed Mar 28 19:16:28 2012 +0200 - - ephy-shell: save the session state on Quit - - It will be automatically restored on startup. - - src/ephy-shell.c | 1 + - 1 file changed, 1 insertion(+) - -commit f10d47f6e340ae8192b1d37013b3a26e9ddff6be -Author: Xan Lopez -Date: Wed Mar 28 18:56:21 2012 +0200 - - ephy-session: remove unused variable - - src/ephy-session.c | 1 - - 1 file changed, 1 deletion(-) - -commit 15c3d2da0de1da85d344247c9551e2edc7615720 -Author: Xan Lopez -Date: Wed Mar 28 18:53:26 2012 +0200 - - ephy-session: rename session_crashed.xml to session_state.xml - - We are going to use his all the time now, not only for crashes. - - src/ephy-session.c | 26 +++++++++++++------------- - 1 file changed, 13 insertions(+), 13 deletions(-) - -commit a803d47c6af1e1c147bbfa342e2b4cbd960185b4 -Author: Xan Lopez -Date: Wed Mar 28 18:45:17 2012 +0200 - - ephy-session: it's not really possible to close while restoring anymore - - src/ephy-session.c | 11 ----------- - 1 file changed, 11 deletions(-) - -commit 87131a9bef82b5ec84bcd4bd3bf9471d6325f7cd -Author: Xan Lopez -Date: Wed Mar 28 18:44:00 2012 +0200 - - ephy-session: always auto-resume session on crash - - Don't ask, just do it. - - src/ephy-session.c | 185 ++--------------------------------------------------- - 1 file changed, 7 insertions(+), 178 deletions(-) - -commit 984d6c4de7a2ad9ad41444ee0e6823f94d6f0405 -Author: Xan Lopez -Date: Wed Mar 28 18:24:06 2012 +0200 - - ephy-session: fix gtk-doc syntax - - src/ephy-session.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 49422a65c97db32811bdee459f96acd4da9d2764 -Author: Piotr Drąg -Date: Wed Mar 28 18:09:47 2012 +0200 - - Updated POTFILES.in - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit dd3af2804d1ddf339f34d8d0d42b8d0f64282198 -Author: Xan Lopez -Date: Wed Mar 28 17:23:17 2012 +0200 - - Rip out the EggSMClient code - - The brave new world is to use the session support in GtkApplication. - - lib/egg/Makefile.am | 4 - - lib/egg/eggsmclient-private.h | 59 -- - lib/egg/eggsmclient-xsmp.c | 1409 ----------------------------------------- - lib/egg/eggsmclient.c | 610 ------------------ - lib/egg/eggsmclient.h | 123 ---- - lib/egg/eggsmclient.patch | 198 ------ - src/ephy-main.c | 2 - - src/ephy-session.c | 242 ------- - 8 files changed, 2647 deletions(-) - -commit 71046aadc2a1febb8d35bb5f6764c5d7ae8fad6c -Author: Xan Lopez -Date: Tue Mar 27 22:20:22 2012 +0200 - - resources: strip blanks from all XML files - - Saves about 20K in the generated files. - - src/epiphany.gresource.xml | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit f1b56402b69be4b7f0507c7154765d7ff8260ef2 -Author: Xan Lopez -Date: Tue Mar 27 22:15:47 2012 +0200 - - Make the resources depend on the actual UI files - - 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. - - data/Makefile.am | 2 +- - data/ui/Makefile.am | 13 - - data/ui/epiphany-application-menu.ui | 54 -- - data/ui/epiphany-bookmark-editor-ui.xml | 58 -- - data/ui/epiphany-history-window-ui.xml | 47 -- - data/ui/epiphany-ui.xml | 102 --- - data/ui/epiphany.css | 49 -- - data/ui/epiphany.ui | 667 --------------- - data/ui/prefs-dialog.ui | 1352 ------------------------------- - po/POTFILES.in | 6 +- - src/Makefile.am | 19 +- - src/epiphany-application-menu.ui | 54 ++ - src/epiphany-bookmark-editor-ui.xml | 58 ++ - src/epiphany-history-window-ui.xml | 47 ++ - src/epiphany-ui.xml | 102 +++ - src/epiphany.css | 49 ++ - src/epiphany.ui | 667 +++++++++++++++ - src/prefs-dialog.ui | 1352 +++++++++++++++++++++++++++++++ - 18 files changed, 2348 insertions(+), 2350 deletions(-) - -commit 98e31b7886bad0eae162ec7c6513a1d20f306727 -Author: Xan Lopez -Date: Tue Mar 27 13:31:56 2012 +0200 - - Use glib resources to bundle our UI files - - https://bugzilla.gnome.org/show_bug.cgi?id=672907 - - data/ui/Makefile.am | 20 ++++++---------- - lib/ephy-dialog.c | 12 +++++----- - lib/ephy-dialog.h | 4 ++-- - src/Makefile.am | 25 ++++++++++++++++---- - src/bookmarks/ephy-bookmarks-editor.c | 6 ++--- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-history-window.c | 6 ++--- - src/ephy-shell.c | 6 ++--- - src/ephy-window.c | 43 +++++++++++++++++++++++++++-------- - src/epiphany.gresource.xml | 12 ++++++++++ - src/pdm-dialog.c | 4 ++-- - src/prefs-dialog.c | 4 ++-- - 12 files changed, 95 insertions(+), 49 deletions(-) - -commit d892edb5d13028c4d150acba9edf3792eb000194 -Author: Claudio Saavedra -Date: Wed Mar 21 16:30:17 2012 +0200 - - ephy-hosts-store: listen to favicon changes in the wk database - - https://bugzilla.gnome.org/show_bug.cgi?id=672525 - - lib/widgets/ephy-hosts-store.c | 68 ++++++++++++++++++++++++++++++++++++++++-- - 1 file changed, 66 insertions(+), 2 deletions(-) - -commit 395b46273951d0dedb36ec1959715437bf432303 -Author: Khaled Hosny -Date: Tue Mar 27 01:10:29 2012 +0200 - - Review translation - - po/ar.po | 145 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 72 insertions(+), 73 deletions(-) - -commit 841898322ebe8684510b6d751b56d36df4104db8 -Author: Diego Escalante Urrelo -Date: Mon Mar 26 14:56:39 2012 -0500 - - epiphany.h.in: remove ephy-history mention - - It breaks ephy-extensions build. - - src/epiphany.h.in | 1 - - 1 file changed, 1 deletion(-) - -commit 237194d431df755d4dd0f0bdf835463134c81403 -Author: Cosimo Cecchi -Date: Fri Mar 23 15:18:45 2012 -0400 - - download-widget: use the "linked" style class - - 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 - - lib/widgets/ephy-download-widget.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit b22dbc6b5df23ef882d5f294027dffe3849d9463 -Author: Xan Lopez -Date: Mon Mar 26 18:14:51 2012 +0200 - - configure.ac: bump version to 3.5.0 - - Let the 3.6.0 race begin! - - configure.ac | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit b768480d619666c604299e95befe8ce12158c445 -Author: A S Alam -Date: Mon Mar 26 17:27:25 2012 +0530 - - update Punjabi Translation - - po/pa.po | 2574 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1192 insertions(+), 1382 deletions(-) - -commit 7b0b0876301a1c46a443c846fc68cf1d5b83fb35 -Author: Xan Lopez -Date: Sat Mar 24 18:56:44 2012 +0100 - - ui: remove unused file - - data/ui/Makefile.am | 1 - - data/ui/epiphany-bookmarksbar.xml | 4 ---- - 2 files changed, 5 deletions(-) - -commit 1fd03c175605e09c4019fe22af72fcb7e265b60d -Author: Sasi Bhushan -Date: Sun Mar 25 17:06:39 2012 +0530 - - Added Telugu help Translations - - help/Makefile.am | 2 +- - help/te/te.po | 2630 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2631 insertions(+), 1 deletion(-) - -commit e8f6204c5e1dbcab2dee5f77e3d5fe92ce84ef18 -Author: Yaron Shahrabani -Date: Sat Mar 24 19:17:23 2012 +0200 - - Updated Hebrew translation. - - po/he.po | 422 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 208 insertions(+), 214 deletions(-) - -commit 6bf9e46249a91aca26117041790c06977aea490a -Author: Praveen Arimbrathodiyil -Date: Sat Mar 24 18:37:52 2012 +0530 - - update Malayalam translation - - po/ml.po | 376 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 198 insertions(+), 178 deletions(-) - -commit dd6b9235024039ab6f81233fd6d5e8ad803a3381 -Author: Praveen Arimbrathodiyil -Date: Sat Mar 24 17:24:46 2012 +0530 - - small correction - - po/ml.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0c362a0e69ef8445b411bfcbba90b5d4c03c1ec1 -Author: Praveen Arimbrathodiyil -Date: Sat Mar 24 17:18:49 2012 +0530 - - Malayalam translation updated - - po/ml.po | 3671 ++++++++++++++++++++++++++------------------------------------ - 1 file changed, 1545 insertions(+), 2126 deletions(-) - -commit a91e0fad58da9442a04153e122c03bef65dc2391 -Author: Abderrahim Kitouni -Date: Fri Mar 23 22:50:55 2012 +0100 - - Updated Arabic translation - - po/ar.po | 2458 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1135 insertions(+), 1323 deletions(-) - -commit 36bee151277ae86ba9e6ac769cfa833166aa6780 -Author: Muhammet Kara -Date: Fri Mar 23 22:53:27 2012 +0200 - - [l10n]Updated Turkish translation - - po/tr.po | 229 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 112 insertions(+), 117 deletions(-) - -commit 6b6aadc34c1943c0a88bfb31e958f3cdb0136a18 -Author: Praveen Illa -Date: Sat Mar 24 01:01:04 2012 +0530 - - Updated Telugu Translation - - po/te.po | 895 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 413 insertions(+), 482 deletions(-) - -commit 2793b90d890198b5737cbbccbc83160cfa685602 -Author: Kenneth Nielsen -Date: Thu Mar 22 15:42:48 2012 +0100 - - Updated Danish translation - - po/da.po | 809 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 404 insertions(+), 405 deletions(-) - -commit 11dd7064f139d72aa9511935973e75e9b9900d53 -Author: Lucas Lommer -Date: Thu Mar 22 11:22:30 2012 +0100 - - Updated Czech translation - - po/cs.po | 1952 +++++++++++++++++++------------------------------------------- - 1 file changed, 598 insertions(+), 1354 deletions(-) - -commit f46246cecf9dc0b9643d1a106dff0160af31ee1b -Author: Nguyễn Thái Ngọc Duy -Date: Thu Mar 22 10:00:41 2012 +0700 - - Updated Vietnamese translation - - po/vi.po | 65 ++++++++++++++++++++++++---------------------------------------- - 1 file changed, 24 insertions(+), 41 deletions(-) - -commit 2da8ec4f88b08c5daadf2c0becbe800da45c9832 -Author: Nguyễn Thái Ngọc Duy -Date: Thu Mar 22 09:57:56 2012 +0700 - - po/vi: import from Damned Lies - - po/vi.po | 2536 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1175 insertions(+), 1361 deletions(-) - -commit f26c5ca5a74cfb1f977537e68d1fce482db08efd -Author: Yuri Myasoedov -Date: Wed Mar 21 22:23:08 2012 +0400 - - Updated Russian translation - - po/ru.po | 302 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 142 insertions(+), 160 deletions(-) - -commit 0950c397da6899b1a3b94996619a04604e25f448 -Author: Timo Jyrinki -Date: Wed Mar 21 18:16:55 2012 +0200 - - Updated Finnish translation by Jiri Grönroos - - po/fi.po | 672 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 389 insertions(+), 283 deletions(-) - -commit 087cb32d81fd8ef1cf3f493fce9e80e7217dbf04 -Author: Xan Lopez -Date: Wed Mar 21 14:41:36 2012 +0100 - - profile-migrator: do not freak out if the history is empty - - 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 - - lib/ephy-profile-migrator.c | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - -commit 36f0e578c2d5de9afede9fb1b6a8c522e9f1bf17 -Author: Xan Lopez -Date: Tue Mar 20 12:44:35 2012 +0100 - - [release] 3.3.92 - - NEWS | 18 ++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 19 insertions(+), 1 deletion(-) - -commit ebe2c82b7c78337d8e274467c77e31df58336079 -Author: Claudio Saavedra -Date: Wed Mar 21 10:51:02 2012 +0200 - - ephy-hosts-store: -1 is not a valid insertion position - - lib/widgets/ephy-hosts-store.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 733bf55779c282c38fc654c53c6875a50886712a -Author: Claudio Saavedra -Date: Tue Mar 20 17:55:31 2012 +0200 - - ephy-history-window: add back the favicons - - 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 - - lib/widgets/ephy-hosts-store.c | 56 +++++++++++++++++++++++++++++++++++++++++- - lib/widgets/ephy-hosts-store.h | 1 + - lib/widgets/ephy-hosts-view.c | 22 ++++++++++++++--- - 3 files changed, 74 insertions(+), 5 deletions(-) - -commit e1b810ce01cfe4dc240b6eac34c5ebc43a58dd58 -Author: Claudio Saavedra -Date: Tue Mar 20 18:04:27 2012 +0200 - - ephy-completion-model: minor cleanup - - 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 - - src/ephy-completion-model.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8322393f79b67deeeb952216cb0de23aa2ed9138 -Author: Claudio Saavedra -Date: Tue Mar 20 18:01:58 2012 +0200 - - ephy-completion-model: fix a few leaks - - https://bugzilla.gnome.org/show_bug.cgi?id=672481 - - src/ephy-completion-model.c | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -commit dea0cd3eb1f325af336fa6e027fafb23b39bc194 -Author: Automatic Mirroring -Date: Wed Mar 21 05:19:15 2012 +0000 - - Update Simplified Chinese translation. - - po/zh_CN.po | 480 +++++++++++++++++++++++++++++------------------------------- - 1 file changed, 235 insertions(+), 245 deletions(-) - -commit 5343bd8252e0a2e58871c642295c47e179b332b6 -Author: Xan Lopez -Date: Tue Mar 20 13:34:07 2012 +0100 - - ephy-history-window: fix callback for new signal signature - - src/ephy-history-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 3ea388bed726683ab2e5bc0219b53b3ada6d70f1 -Author: Xan Lopez -Date: Tue Mar 20 12:23:58 2012 +0100 - - POTFILES.in: remove ephy-history.h - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit f7b3d7e2762ff0682a37ad9928414ddc3df53a2a -Author: Xan Lopez -Date: Tue Mar 20 12:17:43 2012 +0100 - - configure.ac: we require WebKitGTK+ 1.7.92 now - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d244ad7072e081af90a9c34065c758feb42bed69 -Author: Xan Lopez -Date: Tue Mar 20 12:15:49 2012 +0100 - - doc: remove references to removed files - - doc/reference/Makefile.am | 2 -- - 1 file changed, 2 deletions(-) - -commit f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb -Author: Xan Lopez -Date: Tue Mar 20 12:15:09 2012 +0100 - - Remove EphyHistory from the repository. It's unused now. - - embed/Makefile.am | 2 - - embed/ephy-embed-shell.c | 27 -- - embed/ephy-embed-shell.h | 2 - - embed/ephy-history.c | 1058 ------------------------------------------- - embed/ephy-history.h | 134 ------ - embed/ephy-web-view.c | 8 +- - src/Makefile.am | 2 - - src/ephy-completion-model.c | 3 - - src/ephy-history-window.h | 1 - - 9 files changed, 1 insertion(+), 1236 deletions(-) - -commit faf0c7c89a02f38e2272048ae6aa3ba3e11e5f63 -Author: Xan Lopez -Date: Tue Mar 20 12:14:50 2012 +0100 - - bookmarks: use the new favicon database - - src/bookmarks/ephy-bookmarks.c | 25 +++++++++++++------------ - 1 file changed, 13 insertions(+), 12 deletions(-) - -commit 6119b95ca4c0c2d4d78b27422dfb6ba9203bab56 -Author: Sergio Villar Senin -Date: Wed Mar 7 18:28:02 2012 +0100 - - Replace EphyFaviconCache by WebKit's icon database cache - - https://bugzilla.gnome.org/show_bug.cgi?id=648653 - - embed/Makefile.am | 2 - - embed/ephy-embed-prefs.h | 1 + - embed/ephy-embed-shell.c | 30 -- - embed/ephy-embed-shell.h | 2 - - embed/ephy-embed-single.c | 6 + - embed/ephy-favicon-cache.c | 869 ---------------------------------- - embed/ephy-favicon-cache.h | 73 --- - embed/ephy-web-view.c | 42 +- - src/Makefile.am | 2 - - src/bookmarks/ephy-bookmark-action.c | 44 +- - src/bookmarks/ephy-bookmarks-editor.c | 44 +- - src/ephy-completion-model.c | 61 ++- - src/ephy-history-window.c | 24 +- - src/ephy-shell.c | 1 - - src/pdm-dialog.c | 5 +- - src/prefs-dialog.c | 1 - - 16 files changed, 130 insertions(+), 1077 deletions(-) - -commit bc0e3b41f8c21fa0b4bd0cd89e305b0fee049b6a -Author: Aurimas Černius -Date: Mon Mar 19 23:35:19 2012 +0200 - - Updated Lithuanian translation - - po/lt.po | 2025 ++++++++++++++++++++------------------------------------------ - 1 file changed, 632 insertions(+), 1393 deletions(-) - -commit c20a5a33016d40b531bee4aa54c539edfcb620ba -Author: Krishnababu Krothapalli -Date: Mon Mar 19 17:43:29 2012 +0530 - - Translations Updated with FUEL - - po/te.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 3e90c69a46bd2f6670119222c909c52de3960eb0 -Author: Krishnababu Krothapalli -Date: Mon Mar 19 17:39:41 2012 +0530 - - Updated Telugu Translations - - po/te.po | 254 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 127 insertions(+), 127 deletions(-) - -commit 28b430855e037406d9c04d651af340ff586d3b35 -Author: Daniel Korostil -Date: Sun Mar 18 17:07:59 2012 +0200 - - Uploaded Ukranian - - po/uk.po | 408 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 202 insertions(+), 206 deletions(-) - -commit e7e224743a76bd5ed4e06b926d3cf5b2ded578ee -Author: Jiro Matsuzawa -Date: Sun Mar 18 21:04:48 2012 +0900 - - [l10n] Update Japanese translation - - help/ja/ja.po | 50 +++++++++++++++++++++++++------------------------- - 1 file changed, 25 insertions(+), 25 deletions(-) - -commit 35fb0d4114acfa1c594851a59b2704bfef346d86 -Author: Duarte Loreto -Date: Sat Mar 17 23:57:11 2012 +0000 - - Updated Portuguese translation - - po/pt.po | 2555 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1193 insertions(+), 1362 deletions(-) - -commit d4caf3f9d65f2333e5f850e69f0763b3baceffe4 -Author: Bruno Brouard -Date: Sat Mar 17 13:41:18 2012 +0100 - - Updated French translation - - po/fr.po | 1922 ++++++++++++++++++++------------------------------------------ - 1 file changed, 602 insertions(+), 1320 deletions(-) - -commit b2a52ad25cc405978927ac65993086092a596b81 -Author: Muhammet Kara -Date: Sat Mar 17 09:53:50 2012 +0200 - - [l10n]Updated Turkish translation - - po/tr.po | 551 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 270 insertions(+), 281 deletions(-) - -commit 9a1a115d6f30a427317de953a674137e931fce31 -Author: Wouter Bolsterlee -Date: Fri Mar 16 23:07:28 2012 +0100 - - Updated Dutch translation - - po/nl.po | 878 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 447 insertions(+), 431 deletions(-) - -commit 260de67f797c036ffea73e11175e34b5fae5183a -Author: Bruce Cowan -Date: Fri Mar 16 14:24:25 2012 +0000 - - Updated British English translation - - po/en_GB.po | 396 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 200 insertions(+), 196 deletions(-) - -commit 9d8fd9a553a114ef9b5d8ba559bde0899539a44b -Author: Xan Lopez -Date: Fri Mar 16 01:16:30 2012 +0100 - - Fix bookmarklet's titles when they are created - - 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 - - embed/ephy-embed-event.c | 7 +++++ - embed/ephy-embed-event.h | 29 +++++++++++---------- - src/popup-commands.c | 68 ++++++++++++++++++++++++++---------------------- - 3 files changed, 59 insertions(+), 45 deletions(-) - -commit 76ba84b394edbaf7e0b4ff2053612fcb13c909da -Author: Gianvito Cavasoli -Date: Thu Mar 15 22:06:21 2012 +0100 - - [l10n] Updated Italian translation - - po/it.po | 1818 +++++++++++++++++++------------------------------------------- - 1 file changed, 555 insertions(+), 1263 deletions(-) - -commit 670fcfc8061b483910ced4638d57dc238eadf484 -Author: Gabor Kelemen -Date: Thu Mar 15 13:08:30 2012 +0100 - - Updated Hungarian translation - - po/hu.po | 332 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 164 insertions(+), 168 deletions(-) - -commit 27ac10ebebeabcd2c12eb377ab696ac2e56fc3e0 -Author: Xan Lopez -Date: Thu Mar 15 11:22:22 2012 +0100 - - ephy-web-view: return an actual visit type instead of just '0' - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 82dadc0a5ca5f0155e021fcfacd815c099673e17 -Author: Xan Lopez -Date: Thu Mar 15 11:18:39 2012 +0100 - - The security certificate code is a no-op, remove it - - embed/ephy-web-view.c | 12 ------------ - embed/ephy-web-view.h | 1 - - src/window-commands.c | 13 ------------- - src/window-commands.h | 2 -- - 4 files changed, 28 deletions(-) - -commit 7d2c1aa65348b4cd816a3506c9534163b1dcf8e5 -Author: Xan Lopez -Date: Thu Mar 15 11:15:07 2012 +0100 - - ephy-web-view: remove gtk-doc snippet for a private method - - embed/ephy-web-view.c | 7 ------- - 1 file changed, 7 deletions(-) - -commit 362b27f3d57e3ce41bec82b29360b6276f166176 -Author: Xan Lopez -Date: Thu Mar 15 09:51:24 2012 +0100 - - ephy-web-view: use plain g_signal_connect always - - I'm pretty sure there's no point in using the _object variant here. - - embed/ephy-web-view.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit c92bf9e0656c505674df45a5fbf2d34ab7017ca2 -Author: Xan Lopez -Date: Thu Mar 15 09:47:52 2012 +0100 - - ephy-web-view: connect to WebView signals in just one place - - embed/ephy-web-view.c | 20 ++++++++++++-------- - 1 file changed, 12 insertions(+), 8 deletions(-) - -commit 3c4521680d8d06bbfa0ec878953fafe69ae84abb -Author: Xan Lopez -Date: Thu Mar 15 09:43:45 2012 +0100 - - ephy-web-view: we already have a reference to the history service - - Don't request the global instance again. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0ddce1562e5712c098358ab99eccded7a327dd0c -Author: Xan Lopez -Date: Thu Mar 15 09:42:13 2012 +0100 - - ephy-web-view: do not duplicate code for the uri->title fallback - - embed/ephy-web-view.c | 31 ++++++++++++++----------------- - 1 file changed, 14 insertions(+), 17 deletions(-) - -commit 3060de2a0ceeb976c1da6b79f3b3a4c7ed7848d2 -Author: Xan Lopez -Date: Thu Mar 15 09:37:17 2012 +0100 - - ephy-web-view: remove can_go_up/go_up code - - We do not support this anymore in our UI. - - embed/ephy-web-view.c | 45 --------------------------------------------- - embed/ephy-web-view.h | 7 ++----- - 2 files changed, 2 insertions(+), 50 deletions(-) - -commit 00276359e926f4f1fba732534a0b47bec88371f5 -Author: Xan Lopez -Date: Thu Mar 15 09:34:23 2012 +0100 - - ephy-web-view: make ephy_web_view_clear_history private - - It's only used by the class itself now. - - embed/ephy-web-view.c | 100 ++++++++++++++++++++++++-------------------------- - embed/ephy-web-view.h | 1 - - 2 files changed, 47 insertions(+), 54 deletions(-) - -commit d72eec43e48839540e349ce8986b300c34005414 -Author: Xan Lopez -Date: Thu Mar 15 09:21:44 2012 +0100 - - configure.ac: remove epiphany_branch define - - It's not used anywhere that I can see. - - configure.ac | 3 --- - 1 file changed, 3 deletions(-) - -commit e56a4085e028c937d77d40b36ffc3d7d827d4bfb -Author: Krishnababu Krothapalli -Date: Thu Mar 15 12:22:37 2012 +0530 - - Updated Telugu Translations - - po/te.po | 637 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 333 insertions(+), 304 deletions(-) - -commit 82d5d40649ed8adaa0739a8e0a9ce873435adbaa -Author: Dr.T.Vasudevan -Date: Thu Mar 15 12:04:08 2012 +0530 - - updated Tamil translation - - po/ta.po | 341 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 167 insertions(+), 174 deletions(-) - -commit b34691d69e7c10bfb46518e7dfa3a8003dd79e7e -Author: Dr.T.Vasudevan -Date: Thu Mar 15 11:47:08 2012 +0530 - - updated Tamil translation - - po/ta.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 75b2741e5dd334652198345d269cfb8b93ad9b26 -Author: Anita Reitere -Date: Wed Mar 14 22:01:15 2012 +0200 - - Updated Latvian translation. - - po/lv.po | 2580 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1261 insertions(+), 1319 deletions(-) - -commit 398e670b1dd80cd0427a1db8a21dfc892bbe5eaf -Author: Gustavo Noronha Silva -Date: Sat Mar 10 16:52:04 2012 -0300 - - Automatically prefix existing absolute paths with file:// - - https://bugzilla.gnome.org/show_bug.cgi?id=671792 - - embed/ephy-embed-utils.c | 12 +++++++++++- - embed/ephy-embed-utils.h | 9 +++++---- - embed/ephy-web-view.c | 1 + - tests/ephy-embed-utils-test.c | 1 + - tests/ephy-web-view-test.c | 2 ++ - 5 files changed, 20 insertions(+), 5 deletions(-) - -commit 0ea81088cf97aee3d5bbb1f0ec470b8c805a746d -Author: Xan Lopez -Date: Wed Mar 14 16:26:30 2012 +0100 - - Revert "ephy-embed-single: remove some dead code" - - 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. - - embed/ephy-embed-single.c | 54 ++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 53 insertions(+), 1 deletion(-) - -commit 3b6eaf03d1bb27ef42bd500a34799b82acf47c61 -Author: Xan Lopez -Date: Wed Mar 14 15:58:33 2012 +0100 - - Fix distcheck - - 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. - - configure.ac | 7 ------- - lib/Makefile.am | 1 + - lib/ephy-file-helpers.c | 11 ++++++----- - 3 files changed, 7 insertions(+), 12 deletions(-) - -commit 63d0dca04581603d862d3fd74e83c992b5c8baec -Author: Xan Lopez -Date: Wed Mar 14 15:57:55 2012 +0100 - - Run distcheck builds with debug enabled - - We are going to need this for ephy_file to pick up all the data paths. - - Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit 67247db727a6fc1724de9c94c4030e9c02b250d5 -Author: Cosimo Cecchi -Date: Wed Mar 14 09:53:29 2012 -0400 - - floating-bar: set a max-width to the label - - 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 - - lib/widgets/nautilus-floating-bar.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 035fbe726fca2110054ac45965fe699ca8e30eed -Author: Xan Lopez -Date: Wed Mar 14 14:42:14 2012 +0100 - - ephy-embed-single: remove network status - - We are not using it. Easy enough to bring it back if needed. - - embed/ephy-embed-single.c | 91 ------------------------------------------ - embed/ephy-embed-single.h | 5 --- - tests/ephy-embed-single-test.c | 17 -------- - 3 files changed, 113 deletions(-) - -commit 4a0f71e24f7df2fe66a433416eb276d9b60992c7 -Author: Xan Lopez -Date: Wed Mar 14 14:41:54 2012 +0100 - - window-commands: forcing offline mode has been a no-op for a while - - src/window-commands.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 990372e738219a8effebe2eb41e5ffe26b931fa7 -Author: Xan Lopez -Date: Wed Mar 14 14:37:22 2012 +0100 - - Don't go to EphyEmbedSingle just to get the network status - - The new GNetworkMonitor class is really a good enough abstraction, - don't overdo it. - - src/ephy-shell.c | 29 +---------------------------- - src/ephy-window.c | 3 ++- - 2 files changed, 3 insertions(+), 29 deletions(-) - -commit 08956cf8cd8040f8500c40b646a52b6f03ae5275 -Author: Xan Lopez -Date: Wed Mar 14 14:18:36 2012 +0100 - - ephy-embed-single: remove some dead code - - embed/ephy-embed-single.c | 57 +---------------------------------------------- - 1 file changed, 1 insertion(+), 56 deletions(-) - -commit 44050bc63e4c131809af0f078e211587fe55e0f2 -Author: Xan Lopez -Date: Wed Mar 14 13:06:55 2012 +0100 - - ephy-embed: do not pull in string.h for strcmp - - embed/ephy-embed.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 0e6cf976a163a6615afb95c4fd66c592dea118b8 -Author: Xan Lopez -Date: Wed Mar 14 13:06:14 2012 +0100 - - ephy-embed: remove a few useless includes - - embed/ephy-embed.c | 8 -------- - 1 file changed, 8 deletions(-) - -commit 116a7b1027be4bd1606331cca81f7d7475b45d98 -Author: Xan Lopez -Date: Wed Mar 14 12:52:51 2012 +0100 - - ephy-web-view: also reset page visit type on load failed - - embed/ephy-web-view.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit fa2b55c65df0aeece42706e27026c08666601300 -Author: Xan Lopez -Date: Wed Mar 14 12:51:32 2012 +0100 - - ephy-web-view: style fixes - - embed/ephy-web-view.c | 161 +++++++++++++++++++++++++------------------------- - 1 file changed, 79 insertions(+), 82 deletions(-) - -commit 62b41467c3ff66f705cb8b93c60993eedf6356fb -Author: Xan Lopez -Date: Wed Mar 14 12:49:08 2012 +0100 - - ephy-embed: remove history service - - EphyEmbed does not use it anymore. - - embed/ephy-embed.c | 5 ----- - 1 file changed, 5 deletions(-) - -commit 1b941be52d0ed9ec90036efe4987740076c501a2 -Author: Xan Lopez -Date: Wed Mar 14 12:48:23 2012 +0100 - - ephy-web-view: move history management to EphyWebView - - embed/ephy-embed.c | 27 +-------------------------- - embed/ephy-web-view.c | 20 ++++++++++++++++++++ - 2 files changed, 21 insertions(+), 26 deletions(-) - -commit 6f220733c22c7c2f04ba8894a470ba7b7c64d8bd -Author: Xan Lopez -Date: Wed Mar 14 12:44:18 2012 +0100 - - ephy-web-view: move zoom handling to EphyWebView - - Again, this only interacts with the view, so it does not need to be in - EphyEmbed. - - embed/ephy-embed.c | 81 -------------------------------------------------- - embed/ephy-web-view.c | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 82 insertions(+), 81 deletions(-) - -commit 9d0c171675a92fb30e8bc45f73a513e5dc86912e -Author: Xan Lopez -Date: Wed Mar 14 12:35:15 2012 +0100 - - ephy-web-view: let EphyWebView clear its own history - - No point in doing it from EphyEmbed. - - embed/ephy-embed.c | 15 --------------- - embed/ephy-web-view.c | 15 +++++++++++++++ - 2 files changed, 15 insertions(+), 15 deletions(-) - -commit 4f4df6f74af2bd387857f81845bc53a55abbe460 -Author: Xan Lopez -Date: Wed Mar 14 12:32:18 2012 +0100 - - ephy-web-view: get a reference to the history service - - We are going to move stuff from embed to webview, so we'll need this. - - embed/ephy-web-view.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit d42586bb4a2fb45cad1fcc2cf7f6b49a423770cd -Author: Xan Lopez -Date: Tue Mar 13 18:57:56 2012 +0100 - - history: remember visit types - - 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. - - embed/ephy-embed-private.h | 11 +++++++++++ - embed/ephy-embed.c | 20 +++++++++++++------ - embed/ephy-web-view.c | 37 ++++++++++++++++++++++++++++++++++++ - lib/history/ephy-history-service.c | 15 +++++++++------ - lib/history/ephy-history-service.h | 5 +++-- - lib/history/ephy-history-types.h | 3 +++ - src/bookmarks/ephy-bookmark-action.c | 2 ++ - src/ephy-link.h | 4 +++- - src/ephy-location-controller.c | 4 ++-- - src/ephy-private.h | 1 + - src/ephy-window.c | 10 ++++++++++ - 11 files changed, 95 insertions(+), 17 deletions(-) - -commit c07e7d034b4cfdaad4fc35ef5e82bee9718a1bd9 -Author: Xan Lopez -Date: Tue Mar 13 18:57:36 2012 +0100 - - history: generate gtypes for the history types - - lib/history/Makefile.am | 62 +++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 62 insertions(+) - -commit 7180bb84f41ee56eef859245d2d5a987c9d7c20e -Author: Xan Lopez -Date: Tue Mar 13 18:56:54 2012 +0100 - - lib: link to the internal libraries instead of copying source files - - lib/Makefile.am | 26 ++++---------------------- - 1 file changed, 4 insertions(+), 22 deletions(-) - -commit 8898bd3460aa1dc79ab2a9fa82d1a4f64a37ae64 -Author: Xan Lopez -Date: Tue Mar 13 16:57:40 2012 +0100 - - ephy-private: add missing header - - src/ephy-private.h | 1 + - 1 file changed, 1 insertion(+) - -commit 0bc48d17643425b2856fdc1e0ae170cc61d1f64f -Author: Xan Lopez -Date: Tue Mar 13 16:52:01 2012 +0100 - - ephy-web-view: fix indentation - - embed/ephy-web-view.h | 32 ++++++++++++++------------------ - 1 file changed, 14 insertions(+), 18 deletions(-) - -commit d3bc1d282b8332cc74156fd14d8a3c476ced820e -Author: Xan Lopez -Date: Tue Mar 13 16:49:03 2012 +0100 - - ephy-web-view: remove useless includes - - embed/ephy-web-view.h | 4 ---- - 1 file changed, 4 deletions(-) - -commit 0e3b4f9fbe00143eb4bb2167025cc23baa4e9930 -Author: Xan Lopez -Date: Tue Mar 13 16:47:46 2012 +0100 - - ephy-web-view: move header to the new coding style - - embed/ephy-web-view.h | 66 ++++++++++++++++++++++++++------------------------- - 1 file changed, 34 insertions(+), 32 deletions(-) - -commit 21f1c9ace4814fe646226d25fac8bc3cbb488e96 -Author: Xan Lopez -Date: Tue Mar 13 16:31:27 2012 +0100 - - ephy-web-view: remove stale code - - embed/ephy-web-view.c | 43 ------------------------------------------- - 1 file changed, 43 deletions(-) - -commit 7ece86ff394e037447767408643e108da8f4658f -Author: Claudio Saavedra -Date: Tue Mar 13 11:02:48 2012 +0200 - - ephy-embed: cancel the pending history queries during finalize - - https://bugzilla.gnome.org/show_bug.cgi?id=671901 - - embed/ephy-embed.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit 637e046e0666576c71d1efa116d8148450b35db6 -Author: Claudio Saavedra -Date: Tue Mar 13 11:02:09 2012 +0200 - - ephy-history-service: make the async API cancellable - - 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 - - embed/ephy-embed.c | 4 +- - embed/ephy-web-view.c | 2 +- - lib/ephy-profile-migrator.c | 2 +- - lib/history/ephy-history-service.c | 84 +++++++++++++++++++++++++++----------- - lib/history/ephy-history-service.h | 33 +++++++-------- - src/ephy-completion-model.c | 2 +- - src/ephy-history-window.c | 10 ++--- - src/pdm-dialog.c | 2 +- - tests/ephy-history-test.c | 34 +++++++-------- - 9 files changed, 105 insertions(+), 68 deletions(-) - -commit f4ed0fb98f033727eb22f62ddb3ba60424c8cc91 -Author: Claudio Saavedra -Date: Thu Mar 8 12:00:56 2012 +0200 - - ephy-history-view: open pages in a new tab on middle click - - This was present in the old EphyNodeView history. Bring it back. - - https://bugzilla.gnome.org/show_bug.cgi?id=671635 - - src/ephy-history-window.c | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - -commit 12c233832347dddfe64ac842998e043692ecb2be -Author: Claudio Saavedra -Date: Thu Mar 8 11:59:03 2012 +0200 - - ephy-history-view: add row-middle-clicked signal - - https://bugzilla.gnome.org/show_bug.cgi?id=671635 - - lib/widgets/ephy-history-view.c | 69 +++++++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-history-view.h | 5 +++ - 2 files changed, 74 insertions(+) - -commit 63cbd77dc4f5bad34b6ebfae18416e5c73886984 -Author: Kjartan Maraas -Date: Mon Mar 12 18:32:16 2012 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 448 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 216 insertions(+), 232 deletions(-) - -commit 6d3c8b64c59a38f8cc2799f23f427924e0290000 -Author: Daniel Nylander -Date: Mon Mar 12 18:15:51 2012 +0100 - - Updated Swedish translation - - po/sv.po | 382 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 189 insertions(+), 193 deletions(-) - -commit 95a16ff80dde40901c56c6d5814d372b57c6d917 -Author: Antonio Fernandes C. Neto -Date: Fri Mar 9 05:20:10 2012 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 1786 ++++++++++++++++++++++++++++------------------------------- - 1 file changed, 840 insertions(+), 946 deletions(-) - -commit b0f0cc7aa385fca6dd657fcffae32ec930574abb -Author: Timo Jyrinki -Date: Mon Mar 12 10:59:04 2012 +0200 - - Finnish translation update from http://l10n.laxstrom.name/wiki/Gnome_3.4 translation sprint - - po/fi.po | 2630 ++++++++++++-------------------------------------------------- - 1 file changed, 490 insertions(+), 2140 deletions(-) - -commit 3a56065d6e19812b3a9168753a2e6eaf7a7bd73b -Author: Мирослав Николић -Date: Sat Mar 10 23:06:36 2012 +0100 - - Updated Serbian translation - - po/sr.po | 429 ++++++++++++++++++++++++++++----------------------------- - po/sr@latin.po | 429 ++++++++++++++++++++++++++++----------------------------- - 2 files changed, 426 insertions(+), 432 deletions(-) - -commit b56ec1730731af291ebf59ad243b77938462435d -Author: Diego Escalante Urrelo -Date: Mon Jan 30 18:10:45 2012 -0500 - - tests: add ephy-web-view test - - Testing ephy_web_view_load_url and the internal GRegex of EphyWebView. - - https://bugzilla.gnome.org/show_bug.cgi?id=669548 - - tests/Makefile.am | 4 + - tests/ephy-web-view-test.c | 270 +++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 274 insertions(+) - -commit 643d1fd862ad9db0132fd4917d5db9d491070cc8 -Author: Diego Escalante Urrelo -Date: Thu Feb 9 18:03:22 2012 -0500 - - ephy-web-view: share non-search-regex for testing - - Add ephy-embed-private.h - - https://bugzilla.gnome.org/show_bug.cgi?id=669548 - - embed/Makefile.am | 1 + - embed/ephy-embed-private.h | 44 ++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-web-view.c | 11 ++--------- - 3 files changed, 47 insertions(+), 9 deletions(-) - -commit b0b25d75ac3d8feedb1cc04e10b98e626d7b67ff -Author: Diego Escalante Urrelo -Date: Thu Mar 1 16:43:24 2012 -0500 - - ephy-main: run app mode only with a existing dir - - https://bugzilla.gnome.org/show_bug.cgi?id=669700 - - src/ephy-main.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 804bd8348aa940fc82f8400e643639e9782ff35c -Author: Diego Escalante Urrelo -Date: Wed Mar 7 19:49:13 2012 -0500 - - ephy-history-window: init hosts to NULL - - https://bugzilla.gnome.org/show_bug.cgi?id=671613 - - src/ephy-history-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit dec614c2481632ceeaf7966eb88412942e6a8a67 -Author: Khoem Sokhem -Date: Sat Mar 10 13:20:12 2012 +0100 - - Add initial Khmer translation - - po/LINGUAS | 1 + - po/km.po | 2813 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2814 insertions(+) - -commit dbe00de3094e44d1b7972dcd8b8549537139929c -Author: Gil Forcada -Date: Sat Mar 10 13:01:48 2012 +0100 - - Updated Catalan translation - - po/ca.po | 2441 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1125 insertions(+), 1316 deletions(-) - -commit 89ebc0c41eb4e9c31590390852136a93cfebcc50 -Author: Arash Mousavi -Date: Sat Mar 10 12:04:25 2012 +0330 - - Updated Persian Translation - - po/fa.po | 2499 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1162 insertions(+), 1337 deletions(-) - -commit c295a47ca22ba645e8e5ec9dabac3640eaad9e06 -Author: Changwoo Ryu -Date: Sat Mar 10 17:03:48 2012 +0900 - - Updated Korean translation - - po/ko.po | 2446 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1135 insertions(+), 1311 deletions(-) - -commit abda24bea594b505011b064b5df461ce50115c53 -Author: Ihar Hrachyshka -Date: Fri Mar 9 21:57:20 2012 +0300 - - Updated Belarusian translation. - - po/be.po | 80 ++++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 42 insertions(+), 38 deletions(-) - -commit a3368005fc9700497ec68cfaf6b1e8af106a54e0 -Author: Mattias Põldaru -Date: Fri Mar 9 18:17:01 2012 +0200 - - [l10n] Updated Estonian translation - - po/et.po | 127 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 64 insertions(+), 63 deletions(-) - -commit f4cdb44661ac215110e4216202f0bac8983a42b4 -Author: Priit Laes -Date: Fri Mar 9 16:30:21 2012 +0200 - - ephy-history-service: Give me a break! - - Signed-off-by: Priit Laes - Reviewed-by: Xan Lopez - - lib/history/ephy-history-service-urls-table.c | 1 + - 1 file changed, 1 insertion(+) - -commit 8b9a6dddacc4f7c6d9d426ed87a5a52be9165a3d -Author: Alexander Shopov -Date: Thu Mar 8 22:43:08 2012 +0200 - - Updated Bulgarian translation - - po/bg.po | 206 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 93 insertions(+), 113 deletions(-) - -commit 092f249b4546b75c1e10a2c68f57fda6c89e83fd -Author: Mario Blättermann -Date: Thu Mar 8 18:15:35 2012 +0100 - - [l10n] Updated German translation - - po/de.po | 2418 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1117 insertions(+), 1301 deletions(-) - -commit 83cc7c43ed85aebc692f7f950017c2502d4bf872 -Author: Matej Urbančič -Date: Thu Mar 8 15:42:28 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 85 ++++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 45 insertions(+), 40 deletions(-) - -commit b3609b4592957f615477e944ac297f30c42d68db -Author: Nilamdyuti Goswami -Date: Thu Mar 8 17:42:32 2012 +0530 - - Assamese translation completed - - po/as.po | 2445 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1140 insertions(+), 1305 deletions(-) - -commit d9cc04a93e48b22d8a5b88910dc4e51a793b30e1 -Author: Daniel Mustieles -Date: Thu Mar 8 10:29:35 2012 +0100 - - Updated Spanish translation - - po/es.po | 219 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 107 insertions(+), 112 deletions(-) - -commit 8561422eb31ec4b0f4797fd68606d95967192b0e -Author: Claudio Saavedra -Date: Thu Mar 8 11:20:24 2012 +0200 - - ephy-history-service: plug a few more leaks - - lib/history/ephy-history-service-hosts-table.c | 2 ++ - lib/history/ephy-history-service.c | 2 ++ - 2 files changed, 4 insertions(+) - -commit 0fcb144d136241637c4cfa04715754241907f90a -Author: Claudio Saavedra -Date: Thu Mar 8 11:02:46 2012 +0200 - - ephy-history-window: plug a couple of leaks - - lib/widgets/ephy-hosts-store.c | 2 +- - lib/widgets/ephy-urls-store.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 28c7f79185ada7c67a790f982abb4ec737397c29 -Author: Chao-Hsiung Liao -Date: Thu Mar 8 15:57:50 2012 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 401 ++++++++++++++++++++++++++++++------------------------------ - po/zh_TW.po | 401 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 400 insertions(+), 402 deletions(-) - -commit 2d38793271a31b4ed68b5c072200ca86a3301245 -Author: Piotr Drąg -Date: Thu Mar 8 00:25:48 2012 +0100 - - Updated Polish translation - - po/pl.po | 300 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 152 insertions(+), 148 deletions(-) - -commit 4b79f617d556ab555beb2a19e000a8b4242900b0 -Author: Fran Diéguez -Date: Thu Mar 8 00:06:42 2012 +0100 - - Updated Galician translations - - po/gl.po | 127 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 61 insertions(+), 66 deletions(-) - -commit 85439355448065ae3210e19683cfe07607e871b4 -Author: Sébastien Bacher -Date: Wed Mar 7 23:20:41 2012 +0100 - - Don't list deprecated gsettings keys in the .convert - - data/epiphany.convert | 2 -- - 1 file changed, 2 deletions(-) - -commit ee7f80ce5339c2123e8b5c9ea9eb3d28522301df -Author: Xan Lopez -Date: Wed Mar 7 23:16:13 2012 +0100 - - [release] 3.3.91 - - NEWS | 19 +++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 20 insertions(+), 1 deletion(-) - -commit 82df58d53311ee4825ff814f9160722f4d275642 -Author: Xan Lopez -Date: Wed Mar 7 23:16:01 2012 +0100 - - POTFILES.in: add missing file - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit 51b900da955eeb432471be567367ebcb80537f22 -Author: Claudio Saavedra -Date: Thu Mar 8 00:17:39 2012 +0200 - - ephy-history-window: filter hosts with time range as well - - src/ephy-history-window.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 6ebe03244f6bcc983e4ad3d06ab0dd09634a5937 -Author: Claudio Saavedra -Date: Thu Mar 8 00:16:23 2012 +0200 - - ephy-history-service: add API to query for hosts - - By now, the public API only supports filtering by time range, but - filtering by string matching is also possible. - - lib/history/ephy-history-service-hosts-table.c | 101 +++++++++++++++++++++++++ - lib/history/ephy-history-service-private.h | 1 + - lib/history/ephy-history-service.c | 54 ++++++++++++- - lib/history/ephy-history-service.h | 2 + - 4 files changed, 156 insertions(+), 2 deletions(-) - -commit a1ad3f932f94d52b496d5e717884918f03dcfd16 -Author: Claudio Saavedra -Date: Wed Mar 7 23:16:39 2012 +0200 - - ephy-history-service: execute_get_hosts() should return TRUE - - If there are no hosts, that's not a failure, so return TRUE instead. - - lib/history/ephy-history-service.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 161c78698fcce7a6cad9a562691dd51ec087265c -Author: Claudio Saavedra -Date: Wed Mar 7 18:57:24 2012 +0200 - - ephy-hosts-view: ensure "all hosts" is selected by default - - If no host can be selected, always select the "all hosts" row. - - https://bugzilla.gnome.org/show_bug.cgi?id=671575 - - lib/widgets/ephy-hosts-view.c | 42 ++++++++++++++++++++++++++++-------------- - src/ephy-history-window.c | 8 +++----- - 2 files changed, 31 insertions(+), 19 deletions(-) - -commit 7cc9e4a8e9d7a9ae063005e27bca383687b3084e -Author: Claudio Saavedra -Date: Wed Mar 7 18:53:19 2012 +0200 - - ephy-host-store: add a clear() method - - 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 - - lib/widgets/ephy-hosts-store.c | 13 +++++++++++++ - lib/widgets/ephy-hosts-store.h | 1 + - src/ephy-history-window.c | 2 +- - 3 files changed, 15 insertions(+), 1 deletion(-) - -commit da98a6a19c33c67692713bd3548adb007fc8178b -Author: Diego Escalante Urrelo -Date: Wed Mar 7 16:01:17 2012 -0500 - - schema: default to 'All history' in history window - - https://bugzilla.gnome.org/show_bug.cgi?id=671599 - - data/org.gnome.epiphany.gschema.xml.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3eb39bf4acab809f7f5c87fd983823b571a90650 -Author: Piotr Drąg -Date: Wed Mar 7 21:42:38 2012 +0100 - - Updated Polish translation - - po/pl.po | 198 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 87 insertions(+), 111 deletions(-) - -commit 9480a0479c3e043d8204a7fa4f68b90e26d4233a -Author: Ihar Hrachyshka -Date: Wed Mar 7 23:28:14 2012 +0300 - - Updated Belarusian translation. - - po/be.po | 308 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 142 insertions(+), 166 deletions(-) - -commit 7f1d95504677324db94b5f4b3be188e5ef0f7a4c -Author: Diego Escalante Urrelo -Date: Sat Mar 3 00:56:14 2012 -0500 - - ephy-history-service-hosts-table: init host to NULL - - https://bugzilla.gnome.org/show_bug.cgi?id=671594 - - lib/history/ephy-history-service-hosts-table.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4240936670ed87c2b68e89476463c9eb21792f67 -Author: Xan Lopez -Date: Wed Mar 7 20:44:52 2012 +0100 - - doc: fix distcheck, link to the new history library - - doc/reference/Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -commit 6a9b75a4a057d5f7f7db11b8b287b8777dc5204e -Author: Xan Lopez -Date: Wed Mar 7 19:56:08 2012 +0100 - - ephy-embed: do not add the homepage (about:blank) to the history - - Don't do it when it's loaded automatically through NewTab or - NewWindow, but do it if the user actually types the URI. - - embed/ephy-embed.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 603a9503df75635a63a5dc42454a9a61bcc518c2 -Author: Xan Lopez -Date: Wed Mar 7 19:55:34 2012 +0100 - - ephy-web-view: remember when we are loading the homepage - - And add a getter for the information. - - embed/ephy-web-view.c | 32 ++++++++++++++++++++++++++------ - embed/ephy-web-view.h | 16 +++++++++++----- - 2 files changed, 37 insertions(+), 11 deletions(-) - -commit c58efa251b4a978f9621b8ebcd4de4e4f4f695d2 -Author: Xan Lopez -Date: Wed Mar 7 19:53:57 2012 +0100 - - Annotate correctly the fact that FileNewTab now always opens the homepage - - We need to detect it in EphyEmbed to avoid adding about:blank to the - history in that case. - - src/ephy-home-action.c | 2 +- - src/ephy-link.h | 3 ++- - src/ephy-window.c | 6 +++++- - 3 files changed, 8 insertions(+), 3 deletions(-) - -commit 471cf1d2c7bb2768a2f4f7ffbbed68fa18f7fa2a -Author: Matej Urbančič -Date: Wed Mar 7 18:35:14 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 355 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 171 insertions(+), 184 deletions(-) - -commit db6dc6e900064424cbebd29ed41fa02275f1ec11 -Author: Xan Lopez -Date: Wed Mar 7 18:09:23 2012 +0100 - - ephy-bookmarks: remove update on redirect - - 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. - - src/bookmarks/ephy-bookmarks.c | 87 ------------------------------------------ - 1 file changed, 87 deletions(-) - -commit 26c9d6a3a6a1b4b03539db64801fb10a49b26bb5 -Author: Xan Lopez -Date: Wed Mar 7 18:07:09 2012 +0100 - - HACKING: we don't really do comment blocks like that anymore. - - HACKING | 6 ------ - 1 file changed, 6 deletions(-) - -commit 725a91f5fa33440c71efb09f8aea70630392e05a -Author: Claudio Saavedra -Date: Wed Mar 7 18:33:26 2012 +0200 - - ephy-history-view: remove unneeded unselect_all() - - This breaks selection in _BROWSE mode, and we don't really need it - anyway. - - lib/widgets/ephy-history-view.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 232f5f0cc853dd654a07333a29c9cc236979c4d1 -Author: Inaki Larranaga Murgoitio -Date: Wed Mar 7 17:29:04 2012 +0100 - - Updated Basque language - - po/eu.po | 231 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 116 insertions(+), 115 deletions(-) - -commit 50715d718d83a09c1bbe76b99002b72c359a5754 -Author: Claudio Saavedra -Date: Wed Mar 7 16:47:02 2012 +0200 - - ephy-history-window: update the list of hosts after a url is deleted - - 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 - - src/ephy-history-window.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit 5596d5fb76a9d39ad3ea78e613ad9058a5ed948c -Author: Claudio Saavedra -Date: Wed Mar 7 16:44:51 2012 +0200 - - ephy-hosts-view: add a method to select a given host - - https://bugzilla.gnome.org/show_bug.cgi?id=671559 - - lib/widgets/ephy-hosts-view.c | 32 ++++++++++++++++++++++++++++++++ - lib/widgets/ephy-hosts-view.h | 2 ++ - 2 files changed, 34 insertions(+) - -commit 5d2779a4aa7e8fd9736a9d828bdabe9554b9e008 -Author: Claudio Saavedra -Date: Wed Mar 7 16:40:21 2012 +0200 - - ephy-history-service: remove orphan hosts from database - - After removing all the urls in a host, we don't need that host - anymore. - - https://bugzilla.gnome.org/show_bug.cgi?id=671559 - - lib/history/ephy-history-service-hosts-table.c | 25 +++++++++++++++++++++++++ - lib/history/ephy-history-service-private.h | 1 + - lib/history/ephy-history-service.c | 1 + - 3 files changed, 27 insertions(+) - -commit d51cdf7240df9be55c43d9fe417173d2423aad35 -Author: Xan Lopez -Date: Wed Mar 7 16:53:06 2012 +0100 - - application-menu: fix accelerators for global actions - - 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. - - data/ui/epiphany-application-menu.ui | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 59d6ec64a71670954023843a751ab427b8469bb5 -Author: Xan Lopez -Date: Wed Mar 7 16:30:51 2012 +0100 - - ephy-web-view: protect against pages with NULL URI - - 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 - - embed/ephy-web-view.c | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - -commit 5aa4c1a59201bd7a2304c481cdaf559ea540a316 -Author: Xan Lopez -Date: Wed Mar 7 16:12:42 2012 +0100 - - ephy-history-service: validate parameters of public methods - - lib/history/ephy-history-service.c | 110 ++++++++++++++++++++++++++----------- - 1 file changed, 77 insertions(+), 33 deletions(-) - -commit 2fc05ebb0223e32f1a16d9cc0e5a667d49c233e8 -Author: Yuri Myasoedov -Date: Wed Mar 7 19:02:02 2012 +0400 - - Updated Russian translation - - po/ru.po | 475 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 241 insertions(+), 234 deletions(-) - -commit 2bcc70a27132a5959dac7d03531ebaf3435f4e5e -Author: Xan Lopez -Date: Wed Mar 7 15:56:23 2012 +0100 - - ephy-history-service-urls-table: do not g_assert on input - - Simply bail out and don't crash the browser. - - lib/history/ephy-history-service-urls-table.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 25f8048d25b043b5a4a58b9c567754dd5cfc9417 -Author: Claudio Saavedra -Date: Wed Mar 7 14:26:42 2012 +0200 - - about.ini: add myself - - Look ma', I'm in your browser - - data/about.ini | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7595a6a4adc6a3e75b1c042efa88ba8769fe63d8 -Author: Claudio Saavedra -Date: Wed Mar 7 14:25:54 2012 +0200 - - ephy-hosts-store: sort the model by URL - - This puts "Others" to the beginning of the list and the rest - alphanumerically sorted. - - lib/widgets/ephy-hosts-store.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit bbdcd43032a808f81a1a04e694e92a33526b4fe6 -Author: Fran Diéguez -Date: Wed Mar 7 12:53:15 2012 +0100 - - Updated Galician translations - - po/gl.po | 301 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 151 insertions(+), 150 deletions(-) - -commit 7426fbb160fcbb913b0098e0cfc830bc6b1ab5c2 -Author: Daniel Mustieles -Date: Wed Mar 7 12:44:35 2012 +0100 - - Updated Spanish translation - - po/es.po | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -commit 131eacfd1819fe6c10ec8df903a3eaca60443cce -Author: Xan Lopez -Date: Wed Mar 7 12:03:31 2012 +0100 - - ephy-history-window: use the constructed method - - Instead of doing extra stuff in _new. - - src/ephy-history-window.c | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - -commit 9b526e4522ba6324590c6d5a5fcb4365900ac8b6 -Author: Xan Lopez -Date: Wed Mar 7 11:59:48 2012 +0100 - - ephy-history-window: style fixes - - src/ephy-history-window.c | 185 +++++++++++++++++++++++----------------------- - 1 file changed, 94 insertions(+), 91 deletions(-) - -commit 7c2104174ab144d12001e646fd464522d5eef517 -Author: Xan Lopez -Date: Wed Mar 7 11:55:57 2012 +0100 - - ephy-history-window: correct asserts and g_return_if_fail - - Don't assert parameters in public methods, don't g_return_if_fail - parameters in private ones. - - src/ephy-history-window.c | 16 +++++----------- - 1 file changed, 5 insertions(+), 11 deletions(-) - -commit b29db28368dcc1539fea4bcd8b6f11e54f058d69 -Author: Daniel Mustieles -Date: Wed Mar 7 11:34:23 2012 +0100 - - Updated Spanish translation - - po/es.po | 299 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 151 insertions(+), 148 deletions(-) - -commit d54ddb5380647cc0106d29d34ee1a730a3b9d21f -Author: Claudio Saavedra -Date: Wed Mar 7 11:59:55 2012 +0200 - - ephy-history-window: change string for full history option - - src/ephy-history-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c4aa241ef52c68990afff259a513f2902d5f34d7 -Author: Claudio Saavedra -Date: Wed Mar 7 10:20:42 2012 +0200 - - ephy-history-view: properly handle button-press-event - - So that it doesn't trigger a double-click in the first press. Use - a handler instead of connecting to the signal. - - lib/widgets/ephy-history-view.c | 14 ++++++-------- - 1 file changed, 6 insertions(+), 8 deletions(-) - -commit c7a0006282b2723540f82c5545e642410031380f -Author: Alexander Shopov -Date: Wed Mar 7 06:44:01 2012 +0200 - - Updated Bulgarian translation - - po/bg.po | 298 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 149 insertions(+), 149 deletions(-) - -commit f99b6c51b91cb6e00a7f448945258553d91cd5ce -Author: Piotr Drąg -Date: Tue Mar 6 23:41:54 2012 +0100 - - Updated Polish translation - - po/pl.po | 294 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 147 insertions(+), 147 deletions(-) - -commit ddf6360092c54e8e4606d6b5891130ce257a71e4 -Author: Piotr Drąg -Date: Tue Mar 6 23:37:47 2012 +0100 - - Updated POTFILES.in - - po/POTFILES.in | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 2ee0c10936e46a966ac123f1d6a85ccc3dfb74db -Author: Xan Lopez -Date: Tue Mar 6 23:26:33 2012 +0100 - - ephy-bookmarks: remove the "Most visited" category - - The place to do this kind of thing is really the History, not - Bookmarks. - - src/bookmarks/ephy-bookmarks.c | 183 ----------------------------------------- - src/bookmarks/ephy-bookmarks.h | 4 - - 2 files changed, 187 deletions(-) - -commit 236ee3549644cb97bfac9696e5794a3c5dc2d285 -Author: Xan Lopez -Date: Tue Mar 6 22:56:14 2012 +0100 - - ephy-history-window: and also handle "Ever" now that we have infinite history storage - - src/ephy-history-window.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 99f0e389fe80b474204d09bd5e5fa64dd5ebf3a4 -Author: Xan Lopez -Date: Tue Mar 6 22:53:35 2012 +0100 - - ephy-history-window: correctly handle 2 and 10 days of history - - lib/ephy-prefs.h | 1 + - src/ephy-history-window.c | 8 ++++++-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit a3ab578d379f429d9557e029a1beea751d1d8667 -Author: Xan Lopez -Date: Tue Mar 6 22:50:34 2012 +0100 - - ephy-prefs: correct the order of the history time filter enum - - EVER needs to be at the end, not in the second position, since that's - the order in the ephy history window. - - lib/ephy-prefs.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 14c4db4c450672c896d6f08f520d03da323ef162 -Author: Xan Lopez -Date: Tue Mar 6 22:32:00 2012 +0100 - - ephy-bookmarks-ui: remove unneeded include - - src/bookmarks/ephy-bookmarks-ui.c | 1 - - 1 file changed, 1 deletion(-) - -commit df4d16bd22c5ec5f84951e15c3903b8b9506bd64 -Author: Xan Lopez -Date: Tue Mar 6 22:27:39 2012 +0100 - - ephy-bookmarks: actually connect to the new service - - src/bookmarks/ephy-bookmarks.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7d56d43b180e1c24a5114b778e6898e126118f07 -Author: Xan Lopez -Date: Tue Mar 6 22:25:05 2012 +0100 - - ephy-bookmarks: use the new history service when possible - - The 'cleared' stuff is easy to port. The rest, not so much, because - the API to get the visit count is async. - - src/bookmarks/Makefile.am | 1 + - src/bookmarks/ephy-bookmarks.c | 12 +++++++++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit b19b4ce1eca123804d8d87bd12e1ba98a5f09683 -Author: Xan Lopez -Date: Tue Mar 6 22:01:54 2012 +0100 - - ephy-bookmarks: reorder includes - - src/bookmarks/ephy-bookmarks.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit fc92077114eb2042e0b3c750a784c37d20502535 -Author: Xan Lopez -Date: Tue Mar 6 21:59:25 2012 +0100 - - pdm-dialog: use the new history service - - src/pdm-dialog.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit cdf6e25ed2b73fab13c703a06aa85a99d261a1c4 -Author: Xan Lopez -Date: Tue Mar 6 21:59:12 2012 +0100 - - ephy-navigation-history-action: use the new history service - - src/ephy-navigation-history-action.c | 13 ++++--------- - 1 file changed, 4 insertions(+), 9 deletions(-) - -commit 9477deeaaaee87866fd5f381ca443b015f8f051f -Author: Xan Lopez -Date: Tue Mar 6 21:46:08 2012 +0100 - - ephy-history-window: sort headers, remove duplicates - - src/ephy-history-window.c | 37 ++++++++++++++++++------------------- - 1 file changed, 18 insertions(+), 19 deletions(-) - -commit 7c981b48b6e357d4dcf68cbe3eafec90d92ad1b0 -Author: Xan Lopez -Date: Tue Mar 6 21:22:54 2012 +0100 - - ephy-history-view: use the new hosts and urls views - - src/ephy-history-window.c | 666 +++++++++++++++++++++------------------------- - src/ephy-history-window.h | 3 +- - src/ephy-shell.c | 7 +- - 3 files changed, 311 insertions(+), 365 deletions(-) - -commit 8cc5c6df39c67e756d2cdc2aabeceb1928808187 -Author: Xan Lopez -Date: Tue Mar 6 21:20:23 2012 +0100 - - Move the host and urls views from embed to lib/widgets - - Since that's their natural place. Also create a base class to hold the - common code they share. - - embed/Makefile.am | 10 +-- - embed/ephy-history-store.c | 99 ---------------------- - embed/ephy-history-store.h | 66 --------------- - embed/ephy-history-view.c | 182 ---------------------------------------- - embed/ephy-history-view.h | 56 ------------- - embed/ephy-hosts-store.c | 101 ---------------------- - embed/ephy-hosts-store.h | 69 --------------- - embed/ephy-hosts-view.c | 165 ------------------------------------ - embed/ephy-hosts-view.h | 57 ------------- - lib/widgets/Makefile.am | 11 +++ - lib/widgets/ephy-history-view.c | 131 +++++++++++++++++++++++++++++ - lib/widgets/ephy-history-view.h | 56 +++++++++++++ - lib/widgets/ephy-hosts-store.c | 98 ++++++++++++++++++++++ - lib/widgets/ephy-hosts-store.h | 69 +++++++++++++++ - lib/widgets/ephy-hosts-view.c | 55 ++++++++++++ - lib/widgets/ephy-hosts-view.h | 57 +++++++++++++ - lib/widgets/ephy-urls-store.c | 95 +++++++++++++++++++++ - lib/widgets/ephy-urls-store.h | 66 +++++++++++++++ - lib/widgets/ephy-urls-view.c | 96 +++++++++++++++++++++ - lib/widgets/ephy-urls-view.h | 56 +++++++++++++ - 20 files changed, 791 insertions(+), 804 deletions(-) - -commit 59c3c6334c070dc7b9e34c3171dbb99374826705 -Author: Claudio Saavedra -Date: Tue Mar 6 19:19:12 2012 +0200 - - ephy-history-view: ellypsize the title and url columns - - embed/ephy-history-view.c | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -commit bb62057c7da3fce1f7ddcbe3d235a220cee13a48 -Author: Claudio Saavedra -Date: Tue Mar 6 17:57:26 2012 +0200 - - ephy-history-service: default handler for visit-url should be FALSE - - So that AFTER handlers are executed as well - - lib/history/ephy-history-service.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e9463a9dc1fd77f741d3cc6a6c335db9733ebdf1 -Author: Claudio Saavedra -Date: Tue Mar 6 17:08:50 2012 +0200 - - ephy-history-service: add a method to remove a host from the history - - This method will remove all the history related to that host. - - lib/history/ephy-history-service-hosts-table.c | 50 ++++++++++++++++++++++++++ - lib/history/ephy-history-service-private.h | 1 + - lib/history/ephy-history-service.c | 27 ++++++++++++++ - lib/history/ephy-history-service.h | 1 + - 4 files changed, 79 insertions(+) - -commit fd23fbade3ef2c5490f6d3e7f0a7de7c39872fff -Author: Claudio Saavedra -Date: Tue Mar 6 11:34:50 2012 +0200 - - Allow ephy_history_service_find_urls() to filter host specific urls - - lib/history/ephy-history-service.c | 3 ++- - lib/history/ephy-history-service.h | 2 +- - src/ephy-completion-model.c | 2 +- - 3 files changed, 4 insertions(+), 3 deletions(-) - -commit d08d60909efaf563d851474328a463fc7b26744e -Author: Claudio Saavedra -Date: Tue Mar 6 15:38:59 2012 +0200 - - Add ephy_history_service_get_hosts() - - To retrieve all hosts in the history - - lib/history/ephy-history-service.c | 29 ++++++++++++++++++++++++++++- - lib/history/ephy-history-service.h | 1 + - 2 files changed, 29 insertions(+), 1 deletion(-) - -commit 5fefacc8bfa5a0df736849b01e80b84d35ae9ca1 -Author: Claudio Saavedra -Date: Fri Mar 2 21:37:30 2012 +0200 - - history-window: Add a view for the hosts - - embed/Makefile.am | 4 ++ - embed/ephy-hosts-store.c | 101 +++++++++++++++++++++++++++++ - embed/ephy-hosts-store.h | 69 ++++++++++++++++++++ - embed/ephy-hosts-view.c | 165 +++++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-hosts-view.h | 57 ++++++++++++++++ - 5 files changed, 396 insertions(+) - -commit 8d9948b1a0bbcfaee46e3911b9a8a6211e7d3d45 -Author: Claudio Saavedra -Date: Fri Mar 2 21:21:39 2012 +0200 - - Fix typo - - lib/history/ephy-history-service-visits-table.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 03ec152d954d554ac6cca8d26616dfa55acda460 -Author: Claudio Saavedra -Date: Fri Mar 2 21:15:50 2012 +0200 - - Allow the visits and urls queries to be host-specific - - lib/history/ephy-history-service-urls-table.c | 11 +++++++++++ - lib/history/ephy-history-service-visits-table.c | 11 +++++++++++ - lib/history/ephy-history-types.c | 1 + - lib/history/ephy-history-types.h | 1 + - 4 files changed, 24 insertions(+) - -commit f73a9d9a5ba6a3f7613fc566af24c75d022a27ec -Author: Claudio Saavedra -Date: Mon Aug 29 12:55:41 2011 +0300 - - Add a new view for the pages history - - The current view is based in EphyNode, so it's not useful. GtkTreeView - and GtkListStore subclasses are added for this purpose. - - embed/Makefile.am | 4 + - embed/ephy-history-store.c | 99 +++++++++++++++++++++++++ - embed/ephy-history-store.h | 66 +++++++++++++++++ - embed/ephy-history-view.c | 178 +++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-history-view.h | 56 ++++++++++++++ - 5 files changed, 403 insertions(+) - -commit e9578ad2e1af09bc0a3920ccc83783bcd3d9eb53 -Author: Claudio Saavedra -Date: Tue Mar 6 15:23:35 2012 +0200 - - Add missing header include to ephy-history-types.h - - lib/history/ephy-history-types.h | 2 ++ - 1 file changed, 2 insertions(+) - -commit 55505414d65ebe71a7f82d68472ed69fdb2a8f51 -Author: Claudio Saavedra -Date: Mon Aug 29 12:22:17 2011 +0300 - - Set the history service during history window instantiation - - The old history object is kept for now but it will be removed later - - src/ephy-history-window.c | 4 +++- - src/ephy-history-window.h | 3 ++- - src/ephy-shell.c | 6 +++++- - 3 files changed, 10 insertions(+), 3 deletions(-) - -commit a6bc39ed6369c703cc4d5d8e35d91bb5d4aa48c6 -Author: Claudio Saavedra -Date: Wed Feb 29 09:45:15 2012 +0200 - - Add a EphyHistoryService property to EphyHistoryWindow - - src/ephy-history-window.c | 17 ++++++++++++++++- - 1 file changed, 16 insertions(+), 1 deletion(-) - -commit b280014f2b9d3fa94854dbf9c2d7ad4b155fd5d8 -Author: Xan Lopez -Date: Tue Mar 6 13:17:27 2012 +0100 - - ephy-profile-migration: only create ad-hoc hosts for non-default zoom levels. - - Otherwise the default code path is enough. Also, the host is always - going to be NULL for newly created URLs, so double check this is the - case and don't try to handle anything else. - - lib/ephy-profile-migrator.c | 10 ++++------ - 1 file changed, 4 insertions(+), 6 deletions(-) - -commit 6642280f75ddc3a60a93f1618ce00abb4d0a74a7 -Author: Xan Lopez -Date: Tue Mar 6 13:05:18 2012 +0100 - - ephy-history-service: agh, committed this by mistake - - lib/history/ephy-history-service.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ec9466a67a56a55ab344273e6e993a33c139262c -Author: Xan Lopez -Date: Tue Mar 6 13:00:04 2012 +0100 - - ephy-history-service: handle correctly zoom level migration - - We need to consider the case of an "invalid" host with a non default - zoom level, since the profile migrator will send us that kind of - thing. - - lib/history/ephy-history-service.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit c8e0ba263ee394a8c500b30ae340193cfb81edf0 -Author: Xan Lopez -Date: Mon Mar 5 19:40:59 2012 +0100 - - ephy-history-test: small style tweaks - - tests/ephy-history-test.c | 19 +++++++++---------- - 1 file changed, 9 insertions(+), 10 deletions(-) - -commit 0228d9597432c72f587b3f1c6f863a9e9f1d6a2b -Author: Xan Lopez -Date: Mon Mar 5 19:38:25 2012 +0100 - - tests: add a test for ephy_history_service_clear - - tests/ephy-history-test.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 49 insertions(+) - -commit c6a4bd1fea0b15d25505bbe05883c3af104ee487 -Author: Xan Lopez -Date: Mon Mar 5 19:20:21 2012 +0100 - - ephy-embed: do not retrieve the legacy history instance - - We are not using it anymore. - - embed/ephy-embed.c | 3 --- - 1 file changed, 3 deletions(-) - -commit ca8957ac91d2da67e8ccf42ee297ec30056052b8 -Author: Xan Lopez -Date: Mon Mar 5 19:18:30 2012 +0100 - - ephy-history-service: add a "cleared" signal for the clear method - - And use it in EphyEmbed instead of the legacy signal. - - embed/ephy-embed.c | 6 +++--- - lib/history/ephy-history-service.c | 14 ++++++++++++++ - 2 files changed, 17 insertions(+), 3 deletions(-) - -commit f9ac9eaf73b94ca0ee3b7cf3a129500161f58ea2 -Author: Claudio Saavedra -Date: Fri Mar 2 21:24:58 2012 +0200 - - ephy-history-service: add a method to clear the entire history - - lib/history/ephy-history-service.c | 43 ++++++++++++++++++++++++++++++++++++++ - lib/history/ephy-history-service.h | 1 + - 2 files changed, 44 insertions(+) - -commit 2f19776788cd479963afcf53235190c79f3c1402 -Author: Xan Lopez -Date: Mon Mar 5 18:46:19 2012 +0100 - - ephy-history-test: add emacs modeline - - tests/ephy-history-test.c | 1 + - 1 file changed, 1 insertion(+) - -commit fcf33bc89394ab0f0dca5b776c11b9ee5036c62e -Author: Xan Lopez -Date: Mon Mar 5 18:43:04 2012 +0100 - - ephy-history-service: add 'visit-url' signal - - Similar to the old EphyHistory 'add-page' signal. It allows blocking - the visit by handling the signal, since the actual logic to add the - visit is in the class' default handler. - - The add_visit(s) methods won't emit this signal, but for now we'll - assume that whoever is using those knows what he's doing. - - lib/history/ephy-history-service.c | 45 ++++++++++++++++++++++++++++++++------ - lib/history/ephy-history-service.h | 6 ++++- - 2 files changed, 43 insertions(+), 8 deletions(-) - -commit 7c6abe5cb07313cf8cd57d34c8fc8d26dfcf1203 -Author: Xan Lopez -Date: Mon Mar 5 17:04:37 2012 +0100 - - Rename ephy_history_service_add_page to ephy_history_service_visit_url - - Fits much better with the naming model in that class. - - embed/ephy-embed.c | 2 +- - lib/history/ephy-history-service.c | 7 +++++-- - lib/history/ephy-history-service.h | 2 +- - 3 files changed, 7 insertions(+), 4 deletions(-) - -commit 9666dba09d79cd88777e9066dbdb2ca5b5e7588f -Author: Xan Lopez -Date: Mon Mar 5 16:57:45 2012 +0100 - - Get rid of EphyBrowseHistory - - It was a very thin wrapper on top of the history service, it does not - seem to make much sense. For now move the two useful helper methods - down to the service without further changes. - - embed/Makefile.am | 2 - - embed/ephy-browse-history.c | 182 ------------------------------------- - embed/ephy-browse-history.h | 86 ------------------ - embed/ephy-embed-shell.c | 28 +++--- - embed/ephy-embed-shell.h | 2 +- - embed/ephy-embed.c | 29 ++++-- - embed/ephy-web-view.c | 6 +- - lib/history/ephy-history-service.c | 41 +++++++++ - lib/history/ephy-history-service.h | 3 + - src/ephy-completion-model.c | 18 ++-- - 10 files changed, 93 insertions(+), 304 deletions(-) - -commit 222b98ba6644addc080cccbd536d9b90bc27d3ba -Author: Xan Lopez -Date: Mon Mar 5 16:14:45 2012 +0100 - - ephy-completion-model: fix warning when a bookmark has no keywords - - Values in EphyNode can be NULL, so guard against that. - - src/ephy-completion-model.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit d97edc0e129191cd7a0b27dc4fabde28047f8d09 -Author: Xan Lopez -Date: Mon Mar 5 11:23:52 2012 +0100 - - ephy-completion-model: remove stale include - - src/ephy-completion-model.c | 1 - - 1 file changed, 1 deletion(-) - -commit 4b1edfa4cc1d69428b46580625d36e16069a26a9 -Author: Xan Lopez -Date: Fri Mar 2 13:50:36 2012 +0100 - - POTFILES.in: some strings have been moved to lib/history - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit 27366c135e04f7d030929df5db32d7c2b1e63e9b -Author: Xan Lopez -Date: Fri Mar 2 13:49:12 2012 +0100 - - Rename the new tests to be foo-test.c - - tests/Makefile.am | 4 +- - tests/ephy-history-test.c | 448 ++++++++++++++++++++++++++++++++++++++++++++++ - tests/ephy-history.c | 448 ---------------------------------------------- - tests/ephy-sqlite-test.c | 213 ++++++++++++++++++++++ - tests/ephy-sqlite.c | 213 ---------------------- - 5 files changed, 663 insertions(+), 663 deletions(-) - -commit ea4b04a4c2c5a91387d2339f79c495677c7512cd -Author: Xan Lopez -Date: Fri Mar 2 13:45:51 2012 +0100 - - ephy-web-view: also fallback to URI as title here - - embed/ephy-web-view.c | 12 +++++++++--- - 1 file changed, 9 insertions(+), 3 deletions(-) - -commit db950819b20f292a36d68dac06c72030bbe17fa3 -Author: Xan Lopez -Date: Fri Mar 2 13:31:33 2012 +0100 - - ephy-browse-history: small cleanup - - embed/ephy-browse-history.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b2d915c1d54caa3875cbb4cedbe2e5b3f4ee51cd -Author: Xan Lopez -Date: Fri Mar 2 13:30:39 2012 +0100 - - ephy-history-types: use the URL as default title - - This is what the old history code did. Looks better than an empty - string. - - lib/history/ephy-history-types.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 06cc579811a66a12c0b476657fc19ac12bc24ba9 -Author: Claudio Saavedra -Date: Thu Mar 1 15:37:29 2012 +0200 - - Retrieve the host id from the right column - - lib/history/ephy-history-service-urls-table.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f7ea2520ce135cf68f4aec730ca8b63885a45664 -Author: Xan Lopez -Date: Wed Feb 29 18:04:27 2012 +0100 - - ephy-browse-history: style cleanups - - embed/ephy-browse-history.c | 57 +++--------------------- - embed/ephy-browse-history.h | 103 ++++++++++++++++---------------------------- - 2 files changed, 45 insertions(+), 115 deletions(-) - -commit d94a2d08d0f46eded4287e5dbd1a936c7a3615d0 -Author: Xan Lopez -Date: Wed Feb 29 17:58:54 2012 +0100 - - Remove the set_url_property history method - - It's not really that useful. - - embed/ephy-browse-history.c | 10 +++--- - lib/history/ephy-history-service.c | 65 -------------------------------------- - lib/history/ephy-history-service.h | 1 - - 3 files changed, 4 insertions(+), 72 deletions(-) - -commit c0071d02860313e5a4c7251d191360a9f5e04e52 -Author: Xan Lopez -Date: Wed Feb 29 17:50:24 2012 +0100 - - ephy-history-service-hosts-table: drop the favicon column - - It's not used at all. Again, format change. - - lib/history/ephy-history-service-hosts-table.c | 1 - - 1 file changed, 1 deletion(-) - -commit 1e8ee19ea0e651414c98d0f863b76c72d484cf83 -Author: Xan Lopez -Date: Wed Feb 29 17:41:55 2012 +0100 - - ephy-location-controller: smoother redraw of the completion popup - - Workaround some bugs in entry completion's redraw code. See - https://bugzilla.gnome.org/show_bug.cgi?id=671074 - - src/ephy-location-controller.c | 14 +++++++++++++- - 1 file changed, 13 insertions(+), 1 deletion(-) - -commit 92dec4e47d68bfb77be9ff256fcf44d1407d4ef4 -Author: Xan Lopez -Date: Wed Feb 29 16:35:32 2012 +0100 - - Store zoom levels per host, not per URL - - Zoom levels have always been stored per host in Epiphany, not per URL - (otherwise you'd have to re-apply the zoom level again and again when - visiting, say, every news entry in your favorite newspaper). Change - things to work like that. - - Note: this changes the SQL table format for the history, so you'll - need to re-migrate your history. - - embed/ephy-browse-history.c | 21 +++++-- - embed/ephy-browse-history.h | 5 ++ - embed/ephy-embed.c | 23 ++++---- - lib/ephy-profile-migrator.c | 24 ++++++-- - lib/history/ephy-history-service-hosts-table.c | 35 +++++++----- - lib/history/ephy-history-service-urls-table.c | 28 ++++------ - lib/history/ephy-history-service.c | 76 ++++++++++++++++++-------- - lib/history/ephy-history-service.h | 1 + - lib/history/ephy-history-types.c | 14 ++--- - lib/history/ephy-history-types.h | 7 +-- - tests/ephy-history.c | 4 +- - 11 files changed, 148 insertions(+), 90 deletions(-) - -commit 8ad6302a3f9e1a867f3dd61605196d22e9bd2f86 -Author: Xan Lopez -Date: Tue Feb 28 17:39:45 2012 +0100 - - Hook the new history to the URL entry - - We now fetch the history from the SQL backend using a service thread, - and merge the results with our old bookmark data. - - embed/ephy-browse-history.c | 5 + - embed/ephy-browse-history.h | 1 + - lib/widgets/ephy-location-entry.c | 197 +------- - src/Makefile.am | 1 + - src/ephy-completion-model.c | 950 ++++++++++++++++---------------------- - src/ephy-completion-model.h | 16 +- - src/ephy-location-controller.c | 57 +-- - 7 files changed, 448 insertions(+), 779 deletions(-) - -commit 306fb5a64f9b347fde9cf99ee7a594f04e9d7601 -Author: Xan Lopez -Date: Wed Feb 8 13:52:18 2012 +0100 - - ephy-completion-model: reorder includes - - src/ephy-completion-model.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit d29278efdc66cb974f7d52258c2c3469e02d7bd0 -Author: Claudio Saavedra -Date: Mon Jan 23 23:19:09 2012 +0200 - - history-service: make sure we can update pages' titles and urls - - When we retrieve a url from the backend from a user given - EphyHistoryURL, it's possible for this to contain updated information - for the page. In such case, don't overwrite this with the one stored - in the backend. - - This makes possible to later update this information when saving a new - visit. - - lib/history/ephy-history-service-urls-table.c | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -commit 54e7023ac883f7eb1f714eaacd28c5766eb25c66 -Author: Claudio Saavedra -Date: Wed Jan 11 14:59:57 2012 +0200 - - history-service: do not join urls and visits table unnecessarily - - If there is no visit time range there is no need to perform a inner - join between these two tables, so spare the hassle. - - lib/history/ephy-history-service-urls-table.c | 16 ++++++++++------ - 1 file changed, 10 insertions(+), 6 deletions(-) - -commit 994807b0751b2771dbbcd5881c78c10d29ba75b7 -Author: Claudio Saavedra -Date: Wed Jan 11 14:57:30 2012 +0200 - - history-service: add a test for complex queries with visit time range - - tests/ephy-history.c | 73 +++++++++++++++++++++++++++++++++++++++++++++------- - 1 file changed, 63 insertions(+), 10 deletions(-) - -commit 434b543fc0a8338cea33520cd29f0c6a1d06796d -Author: Claudio Saavedra -Date: Tue Jan 10 19:19:20 2012 +0200 - - tests: add a test for complex EphyHistoryQuery queries - - tests/ephy-history.c | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 71 insertions(+) - -commit bc31a416164021b133cf5403c53042cd3e94c7e6 -Author: Claudio Saavedra -Date: Tue Jan 10 19:18:47 2012 +0200 - - history-service: use the sort type during queries - - lib/history/ephy-history-service-urls-table.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 52a0d24d40b26f4cae80f09bca19ea40c429cf84 -Author: Claudio Saavedra -Date: Tue Jan 10 19:17:51 2012 +0200 - - EphyHistoryQuery: add a EphyHistorySortType parameter to the query - - lib/history/ephy-history-types.c | 1 + - lib/history/ephy-history-types.h | 9 +++++++++ - 2 files changed, 10 insertions(+) - -commit 6267e6e241400daf0d986ea2e57d673beac06208 -Author: Claudio Saavedra -Date: Tue Jan 10 19:15:50 2012 +0200 - - history-service: take into account the query's result limit - - lib/history/ephy-history-service-urls-table.c | 14 +++++++++++++- - 1 file changed, 13 insertions(+), 1 deletion(-) - -commit e27d2f3e59743071b2d5269b274d36557a786f2f -Author: Claudio Saavedra -Date: Tue Jan 10 19:13:28 2012 +0200 - - EphyHistoryQuery: copy the limit too - - lib/history/ephy-history-types.c | 1 + - 1 file changed, 1 insertion(+) - -commit 29227ae52d3d3921ddbbf23e4ad0bc9bf294e793 -Author: Claudio Saavedra -Date: Tue Jan 10 19:11:08 2012 +0200 - - history-service: Ignore queries time range if not set - - lib/history/ephy-history-service-urls-table.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 376dfb96be3926380ce58497be2241519fa8c556 -Author: Claudio Saavedra -Date: Tue Jan 10 19:09:35 2012 +0200 - - history-service: Count the first url visit - - lib/history/ephy-history-service.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 28d99a055c87d0b224ee8dadd3f8c95b50ce43d0 -Author: Claudio Saavedra -Date: Fri Aug 26 14:46:09 2011 +0300 - - Use EphyBrowseHistory to store page titles - - embed/ephy-web-view.c | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 3597b89cb336a7251ed777bd08ab6b06f33db29b -Author: Claudio Saavedra -Date: Tue Jan 10 11:37:22 2012 +0200 - - src: Reorder LDADD arguments properly - - src/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 196110fbed5da6e94c232e1f3b8648aa689f7a79 -Author: Claudio Saavedra -Date: Fri Aug 26 14:45:06 2011 +0300 - - Use EphyBrowseHistory to set/get the zoom level for pages - - embed/ephy-embed.c | 78 +++++++++++++++++++++++++++--------------------------- - 1 file changed, 39 insertions(+), 39 deletions(-) - -commit 446a84f8f5caf85055ae8bf3fdbf91f405888e68 -Author: Claudio Saavedra -Date: Fri Aug 26 14:29:28 2011 +0300 - - Use the new EphyBrowseHistory to add a URI to the history - - embed/ephy-embed.c | 7 +------ - 1 file changed, 1 insertion(+), 6 deletions(-) - -commit 1e674a63960c512b0d66e987ee29c2d14446bf3c -Author: Claudio Saavedra -Date: Fri Aug 26 14:28:09 2011 +0300 - - Add a EphyBrowseHistory instance to EphyEmbed - - embed/ephy-embed.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 1721164d2a3573df3681eb944199d036b10f159d -Author: Claudio Saavedra -Date: Fri Aug 26 14:25:39 2011 +0300 - - Add a EphyBrowseHistory instance to EphyEmbedShell - - embed/ephy-embed-shell.c | 27 +++++++++++++++++++++++++++ - embed/ephy-embed-shell.h | 2 ++ - 2 files changed, 29 insertions(+) - -commit 428ae4cb1c656f2c05121b1889b88435306b7334 -Author: Claudio Saavedra -Date: Thu Aug 25 19:34:18 2011 +0300 - - Add initial implementation of the browse history frontend - - This will eventually replace the old EphyHistory class - - embed/Makefile.am | 3 + - embed/ephy-browse-history.c | 211 ++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-browse-history.h | 107 ++++++++++++++++++++++ - 3 files changed, 321 insertions(+) - -commit 0754cc9ceb8259ae22ce751d068ad132f790adc2 -Author: Claudio Saavedra -Date: Mon Jan 9 17:27:25 2012 +0200 - - configure.ac: Add missing checks for sqlite3 - - configure.ac | 1 + - 1 file changed, 1 insertion(+) - -commit 0912ceb9c9762fbca6b1f0556a96c5cbace6658a -Author: Claudio Saavedra -Date: Tue Jul 5 20:17:07 2011 +0300 - - ephy-profile-migrator: update to migrate also zoom level preferences - - lib/ephy-profile-migrator.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit ee3f8488431daadcb7c1b445e68627ef0f5d7238 -Author: Claudio Saavedra -Date: Tue Nov 29 17:36:02 2011 +0100 - - Build fixes - - Xan, talk to me after class. - - lib/Makefile.am | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit 913af16a829b41bb3cfdf10d7e4e29eb2873d03c -Author: Xan Lopez -Date: Fri May 13 16:24:21 2011 -0700 - - ephy-profile-migrator: migrate history to the new format - - lib/Makefile.am | 13 +++ - lib/ephy-profile-migrator.c | 195 +++++++++++++++++++++++++++++++++++++++++++- - lib/ephy-profile-utils.h | 2 +- - 3 files changed, 208 insertions(+), 2 deletions(-) - -commit 8bce65b5bfd06d29bcc57891303c6e655ee373b8 -Author: Xan Lopez -Date: Tue Nov 29 12:57:41 2011 +0100 - - ephy-sqlite: and another forgotten file! - - lib/ephy-sqlite.h | 34 ++++++++++++++++++++++++++++++++++ - 1 file changed, 34 insertions(+) - -commit bc85f2fc3dc08621ed11b56740c792524ef42a96 -Author: Xan Lopez -Date: Tue Nov 29 12:49:09 2011 +0100 - - ephy-history-service: forgot Makefile.am file - - lib/history/Makefile.am | 21 +++++++++++++++++++++ - 1 file changed, 21 insertions(+) - -commit a322650ec11f7e863fc64252a50a6ad0d8f95dad -Author: Xan Lopez -Date: Tue Nov 29 12:00:08 2011 +0100 - - ephy-history-service: change a few functions and variables to use "message" - - They were leftovers from old APIs - - lib/history/ephy-history-service.c | 80 +++++++++++++++++++------------------- - 1 file changed, 40 insertions(+), 40 deletions(-) - -commit 374d66dd260b989f22eba25dad4fabc49da2d586 -Author: Xan Lopez -Date: Fri Nov 25 13:39:50 2011 +0100 - - Add EphyHistoryService and helper classes - - EphyHistoryService provides a high-level API to store history - information. It will processed by a worker thread using SQLite to - provide a fast, responsive service to the main UI. - - Based on the code by Martin Robinson (mrobinson@igalia.com) and - Claudio Saavedra (csaavedra@igalia.com). - - configure.ac | 1 + - lib/Makefile.am | 2 +- - lib/history/ephy-history-service-hosts-table.c | 316 ++++++++++ - lib/history/ephy-history-service-private.h | 55 ++ - lib/history/ephy-history-service-urls-table.c | 371 ++++++++++++ - lib/history/ephy-history-service-visits-table.c | 207 +++++++ - lib/history/ephy-history-service.c | 742 ++++++++++++++++++++++++ - lib/history/ephy-history-service.h | 70 +++ - lib/history/ephy-history-types.c | 218 +++++++ - lib/history/ephy-history-types.h | 106 ++++ - src/Makefile.am | 1 + - tests/Makefile.am | 6 + - tests/ephy-history.c | 324 +++++++++++ - 13 files changed, 2418 insertions(+), 1 deletion(-) - -commit 77ee0fdf4c5383f2134608e741b73f51ef30f430 -Author: Xan Lopez -Date: Thu Nov 24 10:37:23 2011 +0100 - - Add GObject wrapper classes for SQLite - - We'll use them to implement the new history/bookmarks storage backend. - - Code by Martin Robinson (mrobinson@igalia.com) and Claudio Saavedra - (csaavedra@igalia.com) - - lib/Makefile.am | 5 + - lib/ephy-sqlite-connection.c | 200 ++++++++++++++++++++++++++++++++ - lib/ephy-sqlite-connection.h | 72 ++++++++++++ - lib/ephy-sqlite-statement.c | 269 +++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-sqlite-statement.h | 74 ++++++++++++ - tests/Makefile.am | 4 + - tests/ephy-sqlite.c | 213 ++++++++++++++++++++++++++++++++++ - 7 files changed, 837 insertions(+) - -commit a915b03c590e60f557d9097893601e1b1bf8c08d -Author: Fran Diéguez -Date: Tue Mar 6 21:39:02 2012 +0100 - - Updated Galician translations - - po/gl.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 08b218e3507c7f2785bc34ba41dd89bf02b2574e -Author: Bruce Cowan -Date: Tue Mar 6 15:55:52 2012 +0000 - - Updated British English translation - - po/en_GB.po | 2373 +++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1090 insertions(+), 1283 deletions(-) - -commit f8677bc1da4b55f29448d595eb76190533aae805 -Author: Inaki Larranaga Murgoitio -Date: Tue Mar 6 11:39:18 2012 +0100 - - Updated Basque language - - po/eu.po | 333 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 164 insertions(+), 169 deletions(-) - -commit c50a28c4356b20ad121fbfd4694d0995aaf95291 -Author: Matej Urbančič -Date: Mon Mar 5 17:37:47 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 3187201388ea32cc5e1f5b41064b3ba12e07003e -Author: Mattias Põldaru -Date: Mon Mar 5 18:18:41 2012 +0200 - - [l10n] Updated Estonian translation - - po/et.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 95a46b53b5f81376172e6c45caf984bf7e970b39 -Author: Daniel Mustieles -Date: Mon Mar 5 10:54:10 2012 +0100 - - Updated Spanish translation - - po/es.po | 86 +++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 42 insertions(+), 44 deletions(-) - -commit 96e1c311fc15c3f12e4f32497e7ad915fed3e5b5 -Author: Ihar Hrachyshka -Date: Mon Mar 5 12:41:12 2012 +0300 - - Updated Belarusian translation. - - po/be.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 03ad4716903ac9a9ba1e02e1aa91c090cd6f64dd -Author: YunQiang Su -Date: Mon Mar 5 13:28:05 2012 +0800 - - update Simplified Chinese translation - - po/zh_CN.po | 2437 +++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1131 insertions(+), 1306 deletions(-) - -commit ba2db23bc8104de43747542d01b04c099c7399ce -Author: Piotr Drąg -Date: Sun Mar 4 23:11:30 2012 +0100 - - Updated Polish translation - - po/pl.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 09b5484d8f321ad2f53bbc82f49233bfaac043e9 -Author: Jiro Matsuzawa -Date: Sat Feb 18 12:58:54 2012 +0900 - - Enable keyboard accelerator for the create button - - I use 'r' of "Create" as a mnemonic character because "C" is - already used by "_Cancel". - - https://bugzilla.gnome.org/show_bug.cgi?id=670328 - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6e7a1a663efad6008dff7cffcaaa4b11bea9fe66 -Author: Fran Diéguez -Date: Sun Mar 4 20:14:53 2012 +0100 - - Updated Galician translations - - po/gl.po | 221 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 111 insertions(+), 110 deletions(-) - -commit 33c4f43c50fb0b38224849ca5374d615a05e0a4e -Author: Inaki Larranaga Murgoitio -Date: Sun Mar 4 12:06:27 2012 +0100 - - Updated Basque language - - po/eu.po | 326 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 169 insertions(+), 157 deletions(-) - -commit 4cfae190a8ccffb25890231bb24e158c7732f97a -Author: Gabor Kelemen -Date: Sun Mar 4 02:44:56 2012 +0100 - - Updated Hungarian translation - - po/hu.po | 564 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 272 insertions(+), 292 deletions(-) - -commit b5820c90e07246156dddc4e67b7a2c2dfef3983b -Author: Gabor Kelemen -Date: Sun Mar 4 01:47:17 2012 +0100 - - Updated Hungarian translation - - po/hu.po | 2388 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1110 insertions(+), 1278 deletions(-) - -commit debb5bf13fd17e705c82d18ea30c47df1aaed247 -Author: Piotr Drąg -Date: Sun Mar 4 00:04:16 2012 +0100 - - Updated Polish translation - - po/pl.po | 1719 +++++++++++++++++++------------------------------------------- - 1 file changed, 511 insertions(+), 1208 deletions(-) - -commit 3bbd8f7f2ad984b239d9e1f8f8915781a5d61115 -Author: Inaki Larranaga Murgoitio -Date: Sat Mar 3 19:04:49 2012 +0100 - - Updated Basque language - - po/eu.po | 2236 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1022 insertions(+), 1214 deletions(-) - -commit 5c50925ec46cacbdf2034b4a797b18265c5bcd01 -Author: Daniel Korostil -Date: Fri Mar 2 22:51:57 2012 +0200 - - Uploaded Ukranian - - po/uk.po | 2368 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1091 insertions(+), 1277 deletions(-) - -commit d2c8d960cbe6ef242003bf236c75827dd4670c2f -Author: Yaron Shahrabani -Date: Fri Mar 2 14:10:43 2012 +0200 - - Updated Hebrew translation. - - po/he.po | 216 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 109 insertions(+), 107 deletions(-) - -commit bc3aa414e124d3b57712e357d1ad0fb2b1c43f29 -Author: Giovanni Campagna -Date: Wed Feb 29 23:40:57 2012 +0100 - - Plug a memory leak - - Free GFiles created during argv parsing. - - https://bugzilla.gnome.org/show_bug.cgi?id=671095 - - lib/ephy-string.c | 1 + - 1 file changed, 1 insertion(+) - -commit 62cfaba5eba42b0c67f6f054e6e103a9c1f6751c -Author: Dr.T.Vasudevan -Date: Wed Feb 29 17:45:43 2012 +0530 - - updated Tamil translation - - po/ta.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 526d35ec68fa5df2bc020d478449cb098e88becd -Author: Dr.T.Vasudevan -Date: Wed Feb 29 17:19:02 2012 +0530 - - updated Tamil translation - - po/ta.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5e8fa6cb614ae54c77d506f4064dd4bafb272875 -Author: Dr.T.Vasudevan -Date: Mon Feb 27 12:08:07 2012 +0530 - - updated Tamil translation - - po/ta.po | 17 ++++++++++------- - 1 file changed, 10 insertions(+), 7 deletions(-) - -commit cce5c14c9447f7f889249fdbff4ad72a1a6c8ac5 -Author: Alexander Shopov -Date: Wed Feb 29 08:02:04 2012 +0200 - - Updated Bulgarian translation - - po/bg.po | 152 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 78 insertions(+), 74 deletions(-) - -commit d01b6c1eafff6acbf164ace1b28a5005b0f39207 -Author: Matej Urbančič -Date: Tue Feb 28 22:09:44 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 182 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 93 insertions(+), 89 deletions(-) - -commit f294a74b67cad8b955eb3a30b52fdcbaaba649f5 -Author: Jiro Matsuzawa -Date: Wed Feb 29 00:57:58 2012 +0900 - - [l10n] Update Japanese translation - - po/ja.po | 186 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 95 insertions(+), 91 deletions(-) - -commit a1555f4c8e74194627a2cad1da94cbc179069ecc -Author: Mattias Põldaru -Date: Mon Feb 27 12:17:17 2012 +0200 - - [l10n] Updated Estonian translation - - po/et.po | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -commit 486a6a1f7e8ff82ea327c06725c7642a9ec8a49d -Author: Dr.T.Vasudevan -Date: Mon Feb 27 12:04:12 2012 +0530 - - updated Tamil translation - - po/ta.po | 2247 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1026 insertions(+), 1221 deletions(-) - -commit 0ac81b1822f72d42ee91bdac7d3a7db0a2b12254 -Author: Daniel Mustieles -Date: Sun Feb 26 20:08:04 2012 +0100 - - Updated Spanish translation - - po/es.po | 299 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 151 insertions(+), 148 deletions(-) - -commit 9d8e7680e530defb0855771e24de4f5e510969cb -Author: Daniel Nylander -Date: Sun Feb 26 17:49:26 2012 +0100 - - Updated Swedish translation - - po/sv.po | 183 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 92 insertions(+), 91 deletions(-) - -commit 29bb90d0cf0f6f008526751f554cc947b60dfb6e -Author: Мирослав Николић -Date: Sun Feb 26 11:32:32 2012 +0100 - - Updated Serbian translation - - po/sr.po | 303 +++++++++++++++++++++++++++------------------------------ - po/sr@latin.po | 303 +++++++++++++++++++++++++++------------------------------ - 2 files changed, 288 insertions(+), 318 deletions(-) - -commit 0951f064249ddea9046f5e6d709c0a70bc02c1e8 -Author: Ihar Hrachyshka -Date: Sun Feb 26 12:57:08 2012 +0300 - - Updated Belarusian translation. - - po/be.po | 238 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 128 insertions(+), 110 deletions(-) - -commit 198e3e5f989076da2f53eaf1972d28ef973794bc -Author: Yuri Myasoedov -Date: Sun Feb 26 13:22:17 2012 +0400 - - Updated Russian translation - - po/ru.po | 14 +++++++++----- - 1 file changed, 9 insertions(+), 5 deletions(-) - -commit 8f092c0b7c93de5efbcccf39d079b3dfb717a6ab -Author: Fran Diéguez -Date: Sun Feb 26 06:17:56 2012 +0100 - - Added galician translations for doc - - Signed-off-by: Fran Diéguez - - help/Makefile.am | 2 +- - help/gl/gl.po | 2656 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2657 insertions(+), 1 deletion(-) - -commit 374e31fbfe3854f5a17aa10447f1b982dda6b511 -Author: Diego Escalante Urrelo -Date: Sun Feb 12 19:11:06 2012 -0500 - - ephy-window: add a Extensions menu - - 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 - - data/ui/epiphany-ui.xml | 1 + - src/ephy-window.c | 1 + - 2 files changed, 2 insertions(+) - -commit cbe450ac0767c542ead9a5ec96a764a4c5dce89d -Author: Diego Escalante Urrelo -Date: Sun Feb 12 19:09:27 2012 -0500 - - ephy-bookmarks-ui: fix typo in activate_bookmarks_menu - - https://bugzilla.gnome.org/show_bug.cgi?id=670760 - - src/bookmarks/ephy-bookmarks-ui.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 93c14e73a39ac6ee2903a770618353353a2debb1 -Author: Yuri Myasoedov -Date: Sat Feb 25 13:09:57 2012 +0400 - - Updated Russian translation - - po/ru.po | 90 +++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 41 insertions(+), 49 deletions(-) - -commit f50cdfe8f63a38a931caae998c36571564d59f9f -Author: Sergio Villar Senin -Date: Fri Feb 24 13:41:57 2012 +0100 - - ephy-profile-utils: use == to compare SoupURI schemes - - We can just use it as SOUP_URI_SCHEME_HTTPS is an intern static string. - - lib/ephy-profile-utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 62df9fbfc122699b421e541828d1b6dfd259269f -Author: Sergio Villar Senin -Date: Fri Feb 24 13:41:13 2012 +0100 - - ephy-profile-utils: shut up libsoup runtime warning - - It was actually more than a warning. It was preventing epy to recover - passwords previously stored in the keyring, as all of them were stored using - "/" as the path of the URI. - - https://bugzilla.gnome.org/show_bug.cgi?id=670431 - - lib/ephy-profile-utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b06ecbac6b9183d75bab0497a80028ca9a8595bf -Author: Xan Lopez -Date: Fri Feb 24 13:17:21 2012 +0100 - - We need to be a bit smarter about this, and only dismiss it for - user-initiated navigations. Revert for now. - - Revert "ephy-web-view: dismiss the "Remember password?" infobar on navigation" - - This reverts commit 2434fbfa4df95702de8e19e2484b23937113a8cd. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3cd8c08710c96c32b5b89f845b393a5b31d4a7e7 -Author: Kjartan Maraas -Date: Thu Feb 23 18:48:25 2012 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 130 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 72 insertions(+), 58 deletions(-) - -commit 68c688dc70e8b00dec5756589c96f8c120f3b642 -Author: Xan Lopez -Date: Thu Feb 23 13:59:53 2012 +0100 - - ephy-shell: use the new g_application_quit to quit - - src/ephy-shell.c | 13 +------------ - 1 file changed, 1 insertion(+), 12 deletions(-) - -commit a5893ce2f9722435e47921f19dd24de16380f881 -Author: Xan Lopez -Date: Thu Feb 23 13:16:43 2012 +0100 - - ephy-embed-utils-test: remove broken test - - It's actually impossible to catch this through normalization, so it - will need to be moved to an EphyWebView test. - - tests/ephy-embed-utils-test.c | 3 --- - 1 file changed, 3 deletions(-) - -commit 8a892d2c2bb9a25c4a57f40bc7e8697439119d47 -Author: Xan Lopez -Date: Thu Feb 23 13:02:35 2012 +0100 - - ephy-web-view: fix loading of : URIs - - https://bugzilla.gnome.org/show_bug.cgi?id=670674 - - embed/ephy-web-view.c | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 76 insertions(+), 1 deletion(-) - -commit 6ecb6fda974f5fd47b52f1264b2735a60a67ba24 -Author: Xan Lopez -Date: Thu Feb 23 12:07:05 2012 +0100 - - ephy-window: show an error if we fail to open a non-web URI with gtk_show_uri - - Better than silently doing nothing. - - src/ephy-window.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit e392e4427ffcdfcffee92549fcf0185cee55b982 -Author: Xan Lopez -Date: Thu Feb 23 11:56:29 2012 +0100 - - ephy-embed-utils: fix loading of : URIs - - https://bugzilla.gnome.org/show_bug.cgi?id=669461 - - embed/ephy-embed-utils.c | 16 +++++++++------- - tests/ephy-embed-utils-test.c | 4 ++++ - 2 files changed, 13 insertions(+), 7 deletions(-) - -commit 6d87cbb12ba7bfe19e19784d2ff04fb369792f89 -Author: Xan Lopez -Date: Thu Feb 23 11:56:07 2012 +0100 - - ephy-embed-test-utils: loading domain:port is broken, comment for now - - tests/ephy-embed-utils-test.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit ac60d09d83f3e58a85717bff93fed1c7feab5d6e -Author: Xan Lopez -Date: Thu Feb 23 11:54:14 2012 +0100 - - ephy-embed-utils-test: unbreak the normalization tests - - They were testing the same URI again and again... - - tests/ephy-embed-utils-test.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit afe6f48303930351029e6c1d18f53d910324a2eb -Author: Alexander Shopov -Date: Thu Feb 23 07:20:00 2012 +0200 - - Updated Bulgarian translation - - po/bg.po | 1653 +++++++++++++++++++------------------------------------------- - 1 file changed, 512 insertions(+), 1141 deletions(-) - -commit a24e4eb2215e6f5ace9f66e2c5105e3260ec77cc -Author: Diego Escalante Urrelo -Date: Thu Feb 9 04:28:22 2012 -0500 - - ephy-web-view: don't assume a embed-container in close-web-view - - The EphyWebView is not necessarily embedded in an EphyEmbedContainer. - - Simplify close_web_view_cb and make it smarter. It now handles - EphyEmbedContainer and random toplevel widgets. - - https://bugzilla.gnome.org/show_bug.cgi?id=669737 - - embed/ephy-web-view.c | 14 +++++--------- - 1 file changed, 5 insertions(+), 9 deletions(-) - -commit f1fd22a86d2ff32d78494e68ae7ab865c454b88c -Author: Diego Escalante Urrelo -Date: Thu Feb 9 04:21:38 2012 -0500 - - ephy-web-view: remove close-requested signal - - WebKitWebView has a ::close-web-view signal for the same thing. - - The only user of this was ephy-window, for exactly the same thing that - we are already doing in ephy-web-view, when handling ::close-web-view. - - https://bugzilla.gnome.org/show_bug.cgi?id=669737 - - embed/ephy-web-view.c | 16 --------- - embed/ephy-web-view.h | 1 - - src/ephy-window.c | 94 --------------------------------------------------- - 3 files changed, 111 deletions(-) - -commit 75e3424275e8d45268bdf8c48e9be9dc23b4f713 -Author: Diego Escalante Urrelo -Date: Fri Feb 10 15:55:06 2012 -0500 - - ephy-web-app-utils: be more careful listing applications - - Check if the .desktop file exists to prevent false positives. - - https://bugzilla.gnome.org/show_bug.cgi?id=669836 - - embed/ephy-web-app-utils.c | 33 +++++++++++++++++---------------- - 1 file changed, 17 insertions(+), 16 deletions(-) - -commit 4561a7ace83312a59f29e956d76a6c93cd4f9bcb -Author: Xan Lopez -Date: Tue Feb 21 22:39:43 2012 +0100 - - [release] 3.3.90 - - NEWS | 15 +++++++++++++++ - configure.ac | 2 +- - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit 4ec4cae13cebf70a6b6a025bcd57329fb99ac235 -Author: Kenneth Nielsen -Date: Mon Feb 20 22:57:27 2012 +0100 - - Updated Danish translation - - po/da.po | 2246 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1026 insertions(+), 1220 deletions(-) - -commit 9c83eea8ee4b079c08d492884ff169ad6988f314 -Author: Ihar Hrachyshka -Date: Mon Feb 20 16:44:26 2012 +0300 - - Updated Belarusian translation. - - po/be.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 8a3f835eeeb184e8132f8a04834e560519c83c50 -Author: Daniel Nylander -Date: Sun Feb 19 19:30:00 2012 +0100 - - Updated Swedish translation - - po/sv.po | 2726 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1365 insertions(+), 1361 deletions(-) - -commit 2392a739d352ef3e8e54f9daf172fa634fbca4de -Author: Gustavo Noronha Silva -Date: Sun Feb 19 14:25:47 2012 -0200 - - Initialize variables that could be freed without being set - - embed/ephy-web-app-utils.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit befd8e788df39ba95b0936d1f728c07e8901dacf -Author: Gustavo Noronha Silva -Date: Fri Feb 10 18:42:07 2012 -0200 - - Make inspector handling real-world compliant - - Destroy and recreate the inspector's WebView instead of reusing it, - and make it always start windowed. - - https://bugzilla.gnome.org/show_bug.cgi?id=669835 - - embed/ephy-embed.c | 40 ++++++++++++++++++++++++++++++---------- - 1 file changed, 30 insertions(+), 10 deletions(-) - -commit 1cde8eafe09d5fcc953241cb8ad6bae8538f3144 -Author: Kjartan Maraas -Date: Sun Feb 19 15:41:46 2012 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 642 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 309 insertions(+), 333 deletions(-) - -commit 69e0195ddcab7bf22ce258db751360b101a96912 -Author: Praveen Illa -Date: Sat Feb 18 23:27:12 2012 +0530 - - Updated Telugu Tranlsslation - - po/te.po | 2062 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 984 insertions(+), 1078 deletions(-) - -commit c1e3956ec8d738d02476c5d9517ce670a08aa90d -Author: Jiro Matsuzawa -Date: Sat Feb 18 12:00:58 2012 +0900 - - [l10n] Update Japanese translation - - po/ja.po | 1430 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 685 insertions(+), 745 deletions(-) - -commit 92d3feddb8e159b07c1520d672b05b0f9504f39c -Author: Chao-Hsiung Liao -Date: Sat Feb 18 08:33:46 2012 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 95 +++++++++++++++++++++++++++++++++++-------------------------- - po/zh_TW.po | 95 +++++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 108 insertions(+), 82 deletions(-) - -commit fd817d0efe222fb089ee1b60ec8c175e24ef9b71 -Author: Matej Urbančič -Date: Fri Feb 17 21:44:21 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 404 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 211 insertions(+), 193 deletions(-) - -commit 7f6e243a669a48288fd76da1828d0703a6b523ed -Author: Muhammet Kara -Date: Wed Feb 15 14:29:13 2012 +0200 - - [l10n]Updated Turkish translation - - po/tr.po | 1870 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 881 insertions(+), 989 deletions(-) - -commit 9b8173aaab8c1ae2e66da71247a9c208f190dfec -Author: Yuri Myasoedov -Date: Sun Feb 12 12:27:23 2012 +0400 - - Updated Russian Translation - - po/ru.po | 1898 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 890 insertions(+), 1008 deletions(-) - -commit 664f3619fa019f80cf2891276b824318a0ff1428 -Author: Ihar Hrachyshka -Date: Sat Feb 11 22:10:32 2012 +0300 - - Updated Belarusian translation. - - po/be.po | 977 +++++++++++++++++++++++---------------------------------------- - 1 file changed, 353 insertions(+), 624 deletions(-) - -commit 8be7e8d570fa09665543bff1a8d578f0fc1fad54 -Author: Diego Escalante Urrelo -Date: Thu Feb 9 04:25:43 2012 -0500 - - ephy-web-view: blank line nitpick - - https://bugzilla.gnome.org/show_bug.cgi?id=669737 - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e2576b4990656f70f13d0ee5ebab295def18507a -Author: Diego Escalante Urrelo -Date: Thu Feb 9 05:55:11 2012 -0500 - - ephy-window: use tab-close-request to avoid code duplication - - There were two paths checking for modified forms and downloads on tab - closing. Instead of duplication code, make EphyEmbedContainer - impl_remove_child trigger ::tab-close-request on EphyNotebook. - - https://bugzilla.gnome.org/show_bug.cgi?id=669736 - - src/ephy-window.c | 19 +++---------------- - 1 file changed, 3 insertions(+), 16 deletions(-) - -commit a32a038b0e39f9811799ca8315dd702659b2353d -Author: Diego Escalante Urrelo -Date: Thu Feb 9 13:39:09 2012 -0500 - - tests: terminate noinst_PROGRAMS with NULL - - To avoid trivial line changes, ironically. - - https://bugzilla.gnome.org/show_bug.cgi?id=669766 - - tests/Makefile.am | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit ae6c80bf9462e366dca4dfa63265fcde888cc083 -Author: Diego Escalante Urrelo -Date: Tue Feb 7 05:38:25 2012 -0500 - - tests: sync vim/emacs modeline comments - - https://bugzilla.gnome.org/show_bug.cgi?id=669766 - - tests/ephy-embed-single-test.c | 2 +- - tests/ephy-location-entry-test.c | 1 + - tests/ephy-search-entry-test.c | 1 + - 3 files changed, 3 insertions(+), 1 deletion(-) - -commit afcf0e11ff0a73874ca41bd0324e8292e695b28a -Author: Diego Escalante Urrelo -Date: Tue Feb 7 05:37:39 2012 -0500 - - tests: rename files to avoid duplicate names - - Append -test to .c files in tests/ to avoid duplicating filenames in the - repository. - - https://bugzilla.gnome.org/show_bug.cgi?id=669766 - - tests/Makefile.am | 10 +- - tests/ephy-download-test.c | 212 +++++++++++++++++++++++++++++++++++++++ - tests/ephy-download.c | 212 --------------------------------------- - tests/ephy-embed-single-test.c | 123 +++++++++++++++++++++++ - tests/ephy-embed-single.c | 123 ----------------------- - tests/ephy-embed-utils-test.c | 152 ++++++++++++++++++++++++++++ - tests/ephy-embed-utils.c | 152 ---------------------------- - tests/ephy-location-entry-test.c | 162 ++++++++++++++++++++++++++++++ - tests/ephy-location-entry.c | 162 ------------------------------ - tests/ephy-search-entry-test.c | 74 ++++++++++++++ - tests/ephy-search-entry.c | 74 -------------- - 11 files changed, 728 insertions(+), 728 deletions(-) - -commit 8def49f7c4d4c349c85d7183f612e5c2dbf8d517 -Author: Мирослав Николић -Date: Thu Feb 9 20:35:45 2012 +0100 - - Updated Serbian translation - - po/sr.po | 2423 ++++++++++++++++++++++++++------------------------------ - po/sr@latin.po | 2423 ++++++++++++++++++++++++++------------------------------ - 2 files changed, 2252 insertions(+), 2594 deletions(-) - -commit b675b51a6ed0287a840fb9c68fd2a1999449dc7b -Author: Xan Lopez -Date: Thu Feb 9 14:25:58 2012 +0100 - - ephy-shell: install global menu for private mode too - - This is still not enough to make it work, the menu shows empty in - private mode, but the code change is obviously correct. See bug - https://bugzilla.gnome.org/show_bug.cgi?id=647986 - - https://bugzilla.gnome.org/show_bug.cgi?id=669740 - - src/ephy-shell.c | 12 +++++++++--- - 1 file changed, 9 insertions(+), 3 deletions(-) - -commit 93f655b3774a30546f4ccb2fb6f9f2ece34243f0 -Author: Diego Escalante Urrelo -Date: Thu Feb 9 05:26:58 2012 -0500 - - ephy-shell: load home page in new windows - - Fixes the uncertain loading state of new windows. - - https://bugzilla.gnome.org/show_bug.cgi?id=669130 - - src/ephy-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 99251b7d6ec60966bafc8982f0b0b48a3e93865b -Author: Diego Escalante Urrelo -Date: Fri Feb 3 01:45:30 2012 -0500 - - ephy-main: always set a default icon for windows - - The web-browser icon for the normal/private mode, or the corresponding - Web Application icon. - - https://bugzilla.gnome.org/show_bug.cgi?id=669182 - - src/ephy-main.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit b02b30cddb187cdc65623bef1660d80341c416f9 -Author: Diego Escalante Urrelo -Date: Fri Feb 3 01:44:43 2012 -0500 - - ephy-web-app-utils: add EPHY_WEB_APP_ICON define - - Stands for "app-icon.png", which is of interest outside - ephy-web-app-utils.c - - https://bugzilla.gnome.org/show_bug.cgi?id=669182 - - embed/ephy-web-app-utils.c | 4 ++-- - embed/ephy-web-app-utils.h | 1 + - 2 files changed, 3 insertions(+), 2 deletions(-) - -commit db10ae9888b32a8a1bcccdaba36cec15375b67be -Author: Claudio Saavedra -Date: Fri Sep 9 19:29:15 2011 +0300 - - Convert app names to the proper encoding before using them as filenames - - Also add proper conversion error handling where needed. - - https://bugzilla.gnome.org/show_bug.cgi?id=658028 - - embed/ephy-web-app-utils.c | 65 +++++++++++++++++++++++++++++++++++++--------- - src/window-commands.c | 2 ++ - 2 files changed, 55 insertions(+), 12 deletions(-) - -commit 33af7ef9f0b521d1924ab11198ad46536f22b830 -Author: Mattias Põldaru -Date: Wed Feb 8 11:07:58 2012 +0200 - - [l10n] Updated Estonian translation - - po/et.po | 579 +++++++++++++++------------------------------------------------ - 1 file changed, 137 insertions(+), 442 deletions(-) - -commit 9b2884190e83543b698aaee717cc2db917bd3b8f -Author: Diego Escalante Urrelo -Date: Tue Feb 7 15:26:50 2012 -0500 - - epiphany.css: add px unit to values - - Any integer above 0 should have a unit in CSS files now. - - https://bugzilla.gnome.org/show_bug.cgi?id=669602 - - data/ui/epiphany.css | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit e9b6b8cb383c046d0c46c5d1b6d7b7c38f1805b1 -Author: Diego Escalante Urrelo -Date: Wed Feb 8 01:28:22 2012 -0500 - - epiphany-ui.xml: enable accels in supermenu labels - - The explicit accelerators="true" was missing in the element. - - https://bugzilla.gnome.org/show_bug.cgi?id=668325 - - data/ui/epiphany-ui.xml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a65a77294e8db4b7ac792d4f22b685678fe722d4 -Author: Diego Escalante Urrelo -Date: Tue Jan 24 14:57:37 2012 -0500 - - tests: add test for ephy-embed-utils - - Specifically ephy_embed_utils_address_has_web_scheme. - Based on a patch by Alexandre Martani. - - https://bugzilla.gnome.org/show_bug.cgi?id=613756 - - tests/Makefile.am | 4 ++ - tests/ephy-embed-utils.c | 152 +++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 156 insertions(+) - -commit 0bcf4b4861d5e6fbc56ea8d87e2d367c9ba165bf -Author: Diego Escalante Urrelo -Date: Fri Feb 3 01:09:21 2012 -0500 - - ephy-search-entry: use symbolic clear icon - - Instead of gtk+ stock icon, use the symbolic version. Respects LTR/RTL. - - https://bugzilla.gnome.org/show_bug.cgi?id=669131 - - lib/widgets/ephy-search-entry.c | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - -commit 1c462408c99753b53571a4ead4b1196d1101089e -Author: Daniel Mustieles -Date: Tue Feb 7 11:54:54 2012 +0100 - - Updated Spanish translation - - po/es.po | 955 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 478 insertions(+), 477 deletions(-) - -commit 5baee6530a0825a31a53ccc5d6bc297fabf28560 -Author: Fran Diéguez -Date: Tue Feb 7 11:50:30 2012 +0100 - - Updated Galician translations - - po/gl.po | 61 ++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 36 insertions(+), 25 deletions(-) - -commit ab066bfb9537d8a8d9c0995da7e5b2d61d13bac9 -Author: Xan Lopez -Date: Tue Feb 7 10:29:47 2012 +0100 - - [release] 3.3.5 - - NEWS | 18 ++++++++++++++++++ - configure.ac | 6 +++--- - 2 files changed, 21 insertions(+), 3 deletions(-) - -commit 88c9a965ef7c30b8c0e07f24a39b3cfc31eb56fd -Author: Fran Diéguez -Date: Mon Feb 6 11:41:17 2012 +0100 - - Updated Galician translations - - po/gl.po | 1494 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 691 insertions(+), 803 deletions(-) - -commit 9c3264e61f72694b2481d6fcf2f36881a0f31ae7 -Author: Wouter Bolsterlee -Date: Sat Feb 4 15:31:49 2012 +0100 - - Updated Dutch translation - - po/nl.po | 2738 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1286 insertions(+), 1452 deletions(-) - -commit 98ad801a50d8a7f470678bdb86f9eb57dd009ee5 -Author: Martin Robinson -Date: Thu Feb 2 11:47:34 2012 -0800 - - Allow toggling WebGL as a runtime GSettings switch - - 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. - - data/org.gnome.epiphany.gschema.xml.in | 5 +++++ - embed/ephy-embed-prefs.c | 4 ++++ - lib/ephy-prefs.h | 1 + - 3 files changed, 10 insertions(+) - -commit 9ead439a12282b6182da3e7c81f4df46a3a6270d -Author: Diego Escalante Urrelo -Date: Thu Jan 26 21:10:37 2012 -0500 - - ephy-window: restore alt+# accels to switch tabs - - Create 10 fixed GtkActions that react to the alt+# accelerators. - Based on code from gedit-window.c. - - https://bugzilla.gnome.org/show_bug.cgi?id=668702 - - src/ephy-window.c | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 84 insertions(+) - -commit 87b92272f962e04d16c7f156dc736fb421593218 -Author: Diego Escalante Urrelo -Date: Thu Jan 26 11:53:45 2012 -0500 - - tests: ephy-download: missing ephy_download_start - - https://bugzilla.gnome.org/show_bug.cgi?id=668758 - - tests/ephy-download.c | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - -commit 9228a79428da8525f1cf937737128be46c7faf57 -Author: Diego Escalante Urrelo -Date: Mon Jan 30 14:08:11 2012 -0500 - - tests/ephy-download: remove embed-persist mention - - tests/ephy-download.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5fd01e8495dc80438591332df9794ea321d8102e -Author: Xan Lopez -Date: Mon Jan 30 15:42:17 2012 +0100 - - ephy-window: do not duplicate tons of code in sync_tab_is_blank - - src/ephy-window.c | 72 ++++++++++--------------------------------------------- - 1 file changed, 13 insertions(+), 59 deletions(-) - -commit 4220f80676712492175b64cc1eeaef9541b9d8c6 -Author: Chao-Hsiung Liao -Date: Sun Jan 29 23:11:49 2012 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 1686 +++++++++++++++++------------------------------------------ - po/zh_TW.po | 1686 +++++++++++++++++------------------------------------------ - 2 files changed, 974 insertions(+), 2398 deletions(-) - -commit bc97f90ebc099a702dcfc8260b902a399550ad7b -Author: Matej Urbančič -Date: Sat Jan 28 20:29:38 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 1070 +++++++++++++++++++++----------------------------------------- - 1 file changed, 367 insertions(+), 703 deletions(-) - -commit a7640b9b6db190717ce2c75c603c1c7e86a23a5c -Author: Xan Lopez -Date: Fri Jan 27 23:01:59 2012 +0100 - - ephy-window: correct thinko in action sensitivity handling - - src/ephy-window.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -commit 224bb2418135604c08e0918c2757bd6b52882acb -Author: Xan Lopez -Date: Fri Jan 27 22:49:51 2012 +0100 - - ephy-window: simplify handling of back/forward sensitivity - - Back/Forward sensitivity only depends on one factor (whether you can - actually go back or forward), so there is no need to use the ephy - action helper method. This allows to simplify the code quite a bit. - - src/ephy-window.c | 36 ++++++------------------------------ - 1 file changed, 6 insertions(+), 30 deletions(-) - -commit 772d1af3f02e309e9772e88a37e11d5ab426c4db -Author: Yaron Shahrabani -Date: Fri Jan 27 16:01:30 2012 +0200 - - Updated Hebrew translation. - - po/he.po | 1656 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 752 insertions(+), 904 deletions(-) - -commit fce5ae3afbf15c5ba9b229aaa3b6f45733c42dd6 -Author: Xan Lopez -Date: Fri Jan 27 11:46:51 2012 +0100 - - ephy-notebook: remove dnd-enabled property - - It does not seem to do anything. - - src/ephy-notebook.c | 27 --------------------------- - src/ephy-notebook.h | 3 --- - src/ephy-window.c | 1 - - 3 files changed, 31 deletions(-) - -commit f0523c794b447b1720a2bf3153bae195910fe5d2 -Author: Xan Lopez -Date: Fri Jan 27 11:20:11 2012 +0100 - - ephy-main: tidy up indentation - - src/ephy-main.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit b503cf31550e1efebe0b7cc920f1395f31c6e97b -Author: Xan Lopez -Date: Fri Jan 27 11:18:11 2012 +0100 - - Get rid of EPHY_STOCK_EPHY - - In 99% of the cases we were using it for gtk_window_set_icon_name, - which does nothing in GNOME 3. In the couple of valid use cases, just - use "web-browser" directly. - - embed/ephy-embed.c | 1 - - lib/Makefile.am | 1 - - lib/ephy-file-chooser.c | 3 --- - lib/ephy-gui.c | 3 --- - lib/ephy-stock-icons.h | 33 --------------------------------- - lib/widgets/ephy-location-entry.c | 1 - - lib/widgets/ephy-tree-model-node.c | 1 - - src/bookmarks/ephy-bookmark-action.c | 1 - - src/bookmarks/ephy-bookmarks-ui.c | 1 - - src/bookmarks/ephy-bookmarks.c | 2 -- - src/ephy-history-window.c | 3 --- - src/ephy-main.c | 5 +---- - src/ephy-session.c | 2 -- - src/ephy-window.c | 3 --- - src/pdm-dialog.c | 3 --- - src/window-commands.c | 3 +-- - tests/ephy-embed-single.c | 1 - - 17 files changed, 2 insertions(+), 65 deletions(-) - -commit 6bda078417b917696fef7d8fe028391837ad5966 -Author: Xan Lopez -Date: Fri Jan 27 10:32:45 2012 +0100 - - Remove the Bookmarks Editor desktop file - - There's really no much point in shipping it as a separate "application". - - configure.ac | 2 -- - data/Makefile.am | 4 ++-- - data/art/Makefile.am | 19 ------------------- - data/art/epiphany-bookmarks.png | Bin 1287 -> 0 bytes - data/bme.desktop.in.in | 14 -------------- - po/POTFILES.in | 1 - - 6 files changed, 2 insertions(+), 38 deletions(-) - -commit 407813deb5700a3adcbf050e7d865ee705214c1f -Author: Xan Lopez -Date: Fri Jan 27 10:16:29 2012 +0100 - - POTFILES.in: remove reference to ephy-stock-icons.c - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit 3b93e5e27d62c41c3726eeef610e9add622cc8aa -Author: Xan Lopez -Date: Fri Jan 27 10:14:28 2012 +0100 - - configure.ac: remove reference to icons Makefile - - configure.ac | 1 - - 1 file changed, 1 deletion(-) - -commit 17ef6d1c777e63fdbbb11cf2afb21bbe5c1acfa4 -Author: Xan Lopez -Date: Fri Jan 27 10:12:22 2012 +0100 - - And remove the last stock icon, bookmarks - - We can kill data/icons now. - - data/Makefile.am | 2 +- - data/icons/Makefile.am | 45 --- - data/icons/README | 13 - - data/icons/hicolor_actions_16x16_bookmark-view.png | Bin 474 -> 0 bytes - data/icons/hicolor_actions_16x16_bookmark-view.xcf | Bin 1969 -> 0 bytes - data/icons/hicolor_actions_22x22_bookmark-view.png | Bin 595 -> 0 bytes - data/icons/hicolor_actions_22x22_bookmark-view.xcf | Bin 2461 -> 0 bytes - data/icons/hicolor_actions_24x24_bookmark-view.png | Bin 585 -> 0 bytes - data/icons/hicolor_actions_32x32_bookmark-view.png | Bin 934 -> 0 bytes - data/icons/hicolor_actions_32x32_bookmark-view.svg | 299 ----------------- - .../hicolor_actions_scalable_bookmark-view.svg | 355 --------------------- - lib/Makefile.am | 1 - - lib/ephy-stock-icons.c | 66 ---- - lib/ephy-stock-icons.h | 5 - - src/bookmarks/ephy-bookmarks-editor.c | 2 - - src/ephy-main.c | 1 - - 16 files changed, 1 insertion(+), 788 deletions(-) - -commit 86a17ef48fd7a3e549b5d0cd9dc57a59ad233332 -Author: Xan Lopez -Date: Fri Jan 27 09:52:26 2012 +0100 - - Remove the history stock icon - - data/icons/Makefile.am | 8 - - data/icons/hicolor_actions_16x16_history-view.png | Bin 842 -> 0 bytes - data/icons/hicolor_actions_16x16_history-view.svg | 153 ----------- - data/icons/hicolor_actions_22x22_history-view.png | Bin 1498 -> 0 bytes - data/icons/hicolor_actions_22x22_history-view.svg | 255 ------------------ - data/icons/hicolor_actions_24x24_history-view.png | Bin 1511 -> 0 bytes - data/icons/hicolor_actions_32x32_history-view.png | Bin 2426 -> 0 bytes - data/icons/hicolor_actions_32x32_history-view.svg | 266 ------------------ - .../hicolor_actions_scalable_history-view.svg | 299 --------------------- - lib/ephy-stock-icons.c | 1 - - lib/ephy-stock-icons.h | 1 - - src/ephy-history-window.c | 1 - - 12 files changed, 984 deletions(-) - -commit 9af155fcc487ea8e75541c8c93707e1c5aa30f58 -Author: Xan Lopez -Date: Fri Jan 27 01:06:45 2012 +0100 - - Remove EPHY_STOCK_BOOKMARK - - Use the symbolic icon for the completion entry, I'm sure Lapo will - approve. - - data/icons/Makefile.am | 5 - - data/icons/hicolor_places_16x16_bookmark-web.png | Bin 576 -> 0 bytes - data/icons/hicolor_places_16x16_bookmark-web.svg | 121 -------------------- - data/icons/hicolor_places_22x22_bookmark-web.png | Bin 989 -> 0 bytes - data/icons/hicolor_places_22x22_bookmark-web.svg | 134 ----------------------- - data/icons/hicolor_places_24x24_bookmark-web.png | Bin 1025 -> 0 bytes - lib/ephy-stock-icons.c | 1 - - lib/ephy-stock-icons.h | 1 - - lib/widgets/ephy-location-entry.c | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 2 - - 10 files changed, 1 insertion(+), 265 deletions(-) - -commit 518eb4b4c4c088d709d80b7d2d98cbd68c960e2c -Author: Xan Lopez -Date: Fri Jan 27 00:42:12 2012 +0100 - - Remove more unused stock icons - - data/icons/Makefile.am | 8 - - data/icons/hicolor_status_16x16_popup-hidden.png | Bin 327 -> 0 bytes - data/icons/hicolor_status_16x16_popup-hidden.xcf | Bin 2282 -> 0 bytes - data/icons/hicolor_status_22x22_popup-hidden.png | Bin 325 -> 0 bytes - data/icons/hicolor_status_22x22_popup-hidden.xcf | Bin 2879 -> 0 bytes - data/icons/hicolor_status_24x24_popup-hidden.png | Bin 378 -> 0 bytes - data/icons/hicolor_status_32x32_popup-hidden.png | Bin 1028 -> 0 bytes - data/icons/hicolor_status_32x32_popup-hidden.svg | 372 --------------------- - .../icons/hicolor_status_scalable_popup-hidden.svg | 367 -------------------- - lib/ephy-stock-icons.c | 21 -- - lib/ephy-stock-icons.h | 8 +- - 11 files changed, 1 insertion(+), 775 deletions(-) - -commit fbf16f5664a88f9dae9bb0f0983cdc24f93be226 -Author: Xan Lopez -Date: Fri Jan 27 00:38:58 2012 +0100 - - ephy-window: remove stock icons from two more GtkActions - - src/ephy-window.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 4184f9cb8e46fd8e0eea8b46861ad91cda59078a -Author: Xan Lopez -Date: Fri Jan 27 00:37:19 2012 +0100 - - Also remove stock icons in the history and bookmarks editors - - src/bookmarks/ephy-bookmarks-editor.c | 24 ++++++++++++------------ - src/ephy-history-window.c | 24 ++++++++++++------------ - 2 files changed, 24 insertions(+), 24 deletions(-) - -commit 0591d068028d52c2636e277721a1d9030d83adbc -Author: Xan Lopez -Date: Fri Jan 27 00:34:10 2012 +0100 - - ephy-window: do not define stock icons for the GtkActions - - We are not using them. - - src/ephy-window.c | 54 +++++++++++++++++++++++++++--------------------------- - 1 file changed, 27 insertions(+), 27 deletions(-) - -commit 62b676c7d9eba221bb5ebbe0a9c85c981131cdf6 -Author: Xan Lopez -Date: Fri Jan 27 00:29:09 2012 +0100 - - Remove all the lock stock icons - - 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. - - data/icons/Makefile.am | 12 - - data/icons/hicolor_status_16x16_lock-broken.png | Bin 805 -> 0 bytes - data/icons/hicolor_status_16x16_lock-broken.svg | 413 --------- - data/icons/hicolor_status_16x16_lock-insecure.png | Bin 640 -> 0 bytes - data/icons/hicolor_status_16x16_lock-insecure.svg | 560 ------------ - .../hicolor_status_16x16_lock-secure-checked.png | Bin 831 -> 0 bytes - .../hicolor_status_16x16_lock-secure-checked.svg | 478 ----------- - data/icons/hicolor_status_16x16_lock-secure.png | Bin 709 -> 0 bytes - data/icons/hicolor_status_16x16_lock-secure.svg | 407 --------- - data/icons/hicolor_status_24x24_lock-broken.png | Bin 1081 -> 0 bytes - data/icons/hicolor_status_24x24_lock-broken.svg | 607 ------------- - data/icons/hicolor_status_24x24_lock-insecure.png | Bin 1010 -> 0 bytes - data/icons/hicolor_status_24x24_lock-insecure.svg | 618 -------------- - .../hicolor_status_24x24_lock-secure-checked.png | Bin 1155 -> 0 bytes - .../hicolor_status_24x24_lock-secure-checked.svg | 506 ----------- - data/icons/hicolor_status_24x24_lock-secure.png | Bin 961 -> 0 bytes - data/icons/hicolor_status_24x24_lock-secure.svg | 470 ---------- - data/icons/hicolor_status_48x48_lock-broken.png | Bin 2922 -> 0 bytes - data/icons/hicolor_status_48x48_lock-broken.svg | 943 -------------------- - data/icons/hicolor_status_48x48_lock-insecure.png | Bin 3000 -> 0 bytes - data/icons/hicolor_status_48x48_lock-insecure.svg | 616 ------------- - .../hicolor_status_48x48_lock-secure-checked.png | Bin 3110 -> 0 bytes - .../hicolor_status_48x48_lock-secure-checked.svg | 950 --------------------- - data/icons/hicolor_status_48x48_lock-secure.png | Bin 2849 -> 0 bytes - data/icons/hicolor_status_48x48_lock-secure.svg | 573 ------------- - lib/ephy-stock-icons.c | 5 +- - lib/ephy-stock-icons.h | 3 - - lib/widgets/ephy-location-entry.h | 4 + - 28 files changed, 5 insertions(+), 7160 deletions(-) - -commit a9792256c80e46bf9f0c237b2f6fb29b3b38c699 -Author: Xan Lopez -Date: Fri Jan 27 00:18:30 2012 +0100 - - Remove unused stock icons - - 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. - - data/icons/Makefile.am | 6 - - .../icons/hicolor_actions_16x16_location-entry.png | Bin 540 -> 0 bytes - .../icons/hicolor_actions_22x22_location-entry.png | Bin 814 -> 0 bytes - .../icons/hicolor_actions_24x24_location-entry.png | Bin 877 -> 0 bytes - .../icons/hicolor_actions_32x32_location-entry.png | Bin 1591 -> 0 bytes - .../icons/hicolor_actions_32x32_location-entry.svg | 1024 ------------------- - .../hicolor_actions_scalable_location-entry.svg | 1050 -------------------- - lib/ephy-stock-icons.c | 5 - - lib/ephy-stock-icons.h | 5 - - 9 files changed, 2090 deletions(-) - -commit bc048aafffe516805284603356bb3d0bed0c310e -Author: Timo Jyrinki -Date: Thu Jan 26 17:59:43 2012 +0200 - - Updated Finnish translation - - po/fi.po | 1743 +++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 1087 insertions(+), 656 deletions(-) - -commit fff73fe327620192d8fc7992427413dae1d044d2 -Author: Xan Lopez -Date: Thu Jan 26 13:45:37 2012 +0100 - - ephy-download: comment broken tests - - I'm sure Diego will fix them. - - tests/ephy-download.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 3cd5b69810e6d590e0427c9af22f71a0f39b7515 -Author: Xan Lopez -Date: Thu Jan 26 13:37:16 2012 +0100 - - tests: run all the tests on 'make check' - - Which tells us that test-ephy-download is broken. - - tests/Makefile.am | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 71 insertions(+) - -commit b7425ebaedc757048c40f0087bfcb200e5781074 -Author: Xan Lopez -Date: Thu Jan 26 10:42:36 2012 +0100 - - The accel for Help should be F1, not Ctrl+h - - data/ui/epiphany-application-menu.ui | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6ef033c1ed5f1626ce565f72664e258f8ef3cc79 -Author: Xan Lopez -Date: Thu Jan 26 10:34:23 2012 +0100 - - Adapt to the new format form global menus - - This requires a GTK+ newer than eed30771. - - configure.ac | 2 +- - data/ui/epiphany-application-menu.ui | 53 ++++++++++++++++++++++++++++-------- - 2 files changed, 42 insertions(+), 13 deletions(-) - -commit 6697ac29a87afd06c2755d2fb4d87069cad6cf68 -Author: Daniel Mustieles -Date: Wed Jan 25 12:01:49 2012 +0100 - - Updated Spanish translation - - po/es.po | 1032 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 463 insertions(+), 569 deletions(-) - -commit 0a204c251480fefdd39cbd016a2045ed16fac369 -Author: Kjartan Maraas -Date: Wed Jan 25 11:21:52 2012 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 734 ++++++++++++++------------------------------------------------- - 1 file changed, 161 insertions(+), 573 deletions(-) - -commit 5bcbe1bec4751bec10e086a74564475ee9d1533e -Author: Xan Lopez -Date: Tue Jan 24 20:33:02 2012 +0100 - - ephy-embed-utils: load again stuff like 'localhost:3000" - - https://bugzilla.gnome.org/show_bug.cgi?id=668593 - - embed/ephy-embed-utils.c | 21 ++++++++++++++++----- - 1 file changed, 16 insertions(+), 5 deletions(-) - -commit 22f2e807d040d2d0f51e53e1f022a40d82fc1a24 -Author: Xan Lopez -Date: Tue Jan 24 15:01:06 2012 +0100 - - Make EphyWindow responsible for its own destruction when the last tab is gone - - EphyNotebook was destroying its toplevel when the last tab was - destroyed. I think this is really weird, so move the responsibility to - the window. This will probably break something, I'm sure. - - src/ephy-notebook.c | 6 ------ - src/ephy-window.c | 7 +++++++ - 2 files changed, 7 insertions(+), 6 deletions(-) - -commit fe562478cc9fc4e2fc53edb44f39c33f0a063685 -Author: Xan Lopez -Date: Tue Jan 24 14:49:32 2012 +0100 - - ephy-notebook: remove full title tooltip on each tab - - It's pretty annoying and hardly useful. - - src/ephy-notebook.c | 6 ------ - 1 file changed, 6 deletions(-) - -commit 626e9018a9f23bfe380cbe237c0f4dc9345d9395 -Author: Xan Lopez -Date: Tue Jan 24 14:43:53 2012 +0100 - - ephy-location-controller: lose lock tooltip property - - src/ephy-location-controller.c | 37 ------------------------------------- - 1 file changed, 37 deletions(-) - -commit 763f79be56699288d83cf623eeea34b325ef31af -Author: Xan Lopez -Date: Tue Jan 24 14:42:08 2012 +0100 - - ephy-window: lose security state tooltips - - src/ephy-window.c | 33 ++++----------------------------- - 1 file changed, 4 insertions(+), 29 deletions(-) - -commit 69ac211bfb86bef8ba432b495eaefd8354e5faaa -Author: Xan Lopez -Date: Tue Jan 24 14:30:30 2012 +0100 - - ephy-window: we don't do tooltips anymore, remove support code for that - - src/ephy-window.c | 252 +++++++++--------------------------------------------- - 1 file changed, 40 insertions(+), 212 deletions(-) - -commit eb1c43c071359ee3c8685dbb1387502a66b9dd42 -Author: Xan Lopez -Date: Tue Jan 24 14:18:17 2012 +0100 - - ephy-window: remove toplevel actions that do not exist anymore - - src/ephy-window.c | 5 ----- - 1 file changed, 5 deletions(-) - -commit eeeaa0edabfb5fab3cfbdb233ff16a92166e76bb -Author: Xan Lopez -Date: Tue Jan 24 13:45:28 2012 +0100 - - Never append "http://" to an address with a scheme - - It does not make sense. Fixes opening about: pages after normalizing - all URLs again (and not only those without a scheme!). - - embed/ephy-embed-utils.c | 7 ++++++- - embed/ephy-web-view.c | 2 -- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 5efccdb2132bbc33ac4907db2c1cdfc638eeac9f -Author: Xan Lopez -Date: Tue Jan 24 13:44:57 2012 +0100 - - ephy-embed-utils: consider 'ephy-about' as a web scheme - - Otherwise we'll fail to open about: pages in our policy decision - mechanism. - - embed/ephy-embed-utils.c | 1 + - 1 file changed, 1 insertion(+) - -commit 24313f4641d13a535be726330825dae09c16d0b0 -Author: Xan Lopez -Date: Tue Jan 24 12:26:41 2012 +0100 - - ephy-web-view: remove unused variable - - embed/ephy-web-view.c | 6 ------ - 1 file changed, 6 deletions(-) - -commit 2434fbfa4df95702de8e19e2484b23937113a8cd -Author: Xan Lopez -Date: Tue Jan 24 12:04:10 2012 +0100 - - ephy-web-view: dismiss the "Remember password?" infobar on navigation - - Does not make much sense to keep it when the context for the action is - gone. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 420b059e482fbef1250b8f19b60985aab7c593fd -Author: Jon McCann -Date: Mon Jan 23 16:06:50 2012 -0500 - - Make the user visible name Web in more places - - https://bugzilla.gnome.org/show_bug.cgi?id=666587 - - src/ephy-main.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 93e152c7c58006bbdcd6fcaa43d96fc10b0496f4 -Author: Xan Lopez -Date: Mon Jan 23 20:57:42 2012 +0100 - - ephy-window: remove unneeded include - - src/ephy-window.h | 1 - - 1 file changed, 1 deletion(-) - -commit f77a13a41e0b481cbfd02b54f11759fc1cd2fed3 -Author: Diego Escalante Urrelo -Date: Mon Jan 23 12:27:47 2012 -0500 - - ephy-window: call sync_tab_is_blank on new tabs - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 7511ee0b55d81858cb62c798854df29b135b517f -Author: Diego Escalante Urrelo -Date: Sun Jan 22 18:41:47 2012 -0500 - - ephy-window: sync page actions with is-blank property - - Add ::is-blank property to EphyWebView and update EphyWindow to sync - some of the page menu actions with it. There's no point in enabling - save/reload/bookmark/etc on about:blank. - - https://bugzilla.gnome.org/show_bug.cgi?id=668105 - - embed/ephy-web-view.c | 45 +++++++++++++++++++++-- - src/ephy-window.c | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 139 insertions(+), 4 deletions(-) - -commit d626c6f1b880beabd1631f10891562067d287e28 -Author: Diego Escalante Urrelo -Date: Fri Jan 20 12:57:37 2012 -0500 - - ephy-web-view: remove uneeded is_blank calls - - https://bugzilla.gnome.org/show_bug.cgi?id=668105 - - embed/ephy-web-view.c | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 205a2920e2366de15bdbd4d983e103193c9da1f2 -Author: Diego Escalante Urrelo -Date: Mon Jan 23 11:30:48 2012 -0500 - - ephy-web-view: only autosearch input without scheme - - Create an autosearch from the user input only when it has no scheme at - all. - - https://bugzilla.gnome.org/show_bug.cgi?id=551857 - - embed/ephy-web-view.c | 29 ++++++++++++++++++----------- - 1 file changed, 18 insertions(+), 11 deletions(-) - -commit 607017e7381f71968f64d7a464b2d94826db0dad -Author: Diego Escalante Urrelo -Date: Wed Jan 20 17:00:04 2010 -0500 - - ephy-window: pass non-web schemas to gtk_show_uri - - Handle every non-web scheme in policy_decision_required_cb with - gtk_show_uri. This enables xmpp:, apt: and similar links to work. - - https://bugzilla.gnome.org/show_bug.cgi?id=551857 - - src/ephy-window.c | 17 +++++++++++++++-- - 1 file changed, 15 insertions(+), 2 deletions(-) - -commit 0e7ecc4b8f43ac53c3c1ab7a1281a4a959f86c5c -Author: Diego Escalante Urrelo -Date: Mon Jan 23 10:40:46 2012 -0500 - - ephy-embed-utils: mailto is not a web scheme - - https://bugzilla.gnome.org/show_bug.cgi?id=551857 - - embed/ephy-embed-utils.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 0257e7153ecbe593a0b13cca3ec90f9db03705e7 -Author: Diego Escalante Urrelo -Date: Mon Jan 23 10:04:48 2012 -0500 - - ephy-action-helper: document flags API - - https://bugzilla.gnome.org/show_bug.cgi?id=668510 - - src/ephy-action-helper.c | 14 ++++++++++++++ - 1 file changed, 14 insertions(+) - -commit 0caf6e516601a5167b4e3f18593dcb75d85b8452 -Author: Xan Lopez -Date: Mon Jan 23 16:52:59 2012 +0100 - - ephy-window: remove leftover from the editable toolbar ancient past - - src/ephy-window.c | 6 ------ - 1 file changed, 6 deletions(-) - -commit 638dcf1c151204035900146ac41072dcdc82bf72 -Author: Xan Lopez -Date: Mon Jan 23 16:50:16 2012 +0100 - - ephy-window: remove leftovers from when EphyWindow managed the progress bar - - src/ephy-window.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit f9d3e0df1d982cd511af088ba12384d9fdca8ba8 -Author: Xan Lopez -Date: Mon Jan 23 14:38:42 2012 +0100 - - Remove the "Open Frame" functionality - - It's been #if 0-ed and broken forever too. If someone really wants it - it should probably go into an extension. - - data/ui/epiphany-ui.xml | 2 -- - src/ephy-window.c | 22 +++------------------- - src/popup-commands.c | 17 ----------------- - src/popup-commands.h | 3 --- - 4 files changed, 3 insertions(+), 41 deletions(-) - -commit 512d7d577d2c869b86c655b4e235760990c2b6ba -Author: Jiro Matsuzawa -Date: Mon Jan 23 13:09:44 2012 +0900 - - [l10n] Update Japanese translation - - po/ja.po | 894 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 414 insertions(+), 480 deletions(-) - -commit c515aa701d3320fb996297030a00ddfd3336db99 -Author: Xan Lopez -Date: Sun Jan 22 21:35:31 2012 +0100 - - HACKING: small update - - HACKING | 16 +++++++++++++--- - 1 file changed, 13 insertions(+), 3 deletions(-) - -commit 01ca6d25a22e2deee130c2fe3723c27b7a41c2e1 -Author: Xan Lopez -Date: Sun Jan 22 21:29:18 2012 +0100 - - ephy-embed: reorder includes - - embed/ephy-embed.h | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 57376c8471fbe1b18aae995e7074a24ed6b38680 -Author: Xan Lopez -Date: Sun Jan 22 21:27:39 2012 +0100 - - ephy-embed: move the other statusbar id to the .c file - - It's not used anywhere else. - - embed/ephy-embed.c | 2 ++ - embed/ephy-embed.h | 2 -- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit b7b80c09ae988ffd6725fde6cb6fe082978cedd6 -Author: Xan Lopez -Date: Sun Jan 22 16:51:34 2012 +0100 - - ephy-embed: remove unused define - - embed/ephy-embed.h | 1 - - 1 file changed, 1 deletion(-) - -commit 44f5cfe296ae446aee7a2678ee845a2a2f4c2be3 -Author: Xan Lopez -Date: Sun Jan 22 16:50:46 2012 +0100 - - ephy-embed: the method to set the statusbar label can be private too - - embed/ephy-embed.c | 30 +++++++++++++++--------------- - embed/ephy-embed.h | 2 -- - 2 files changed, 15 insertions(+), 17 deletions(-) - -commit f217a3f328a5ca1aa01ac59c72967e419d70e6a1 -Author: Xan Lopez -Date: Sun Jan 22 15:16:09 2012 +0100 - - ephy-embed: we can now make the statusbar methods private - - embed/ephy-embed.c | 230 +++++++++++++++++++++++++++-------------------------- - embed/ephy-embed.h | 8 -- - 2 files changed, 116 insertions(+), 122 deletions(-) - -commit f88cd6dc3b5027bb2cde61eaf04886e2b6852fc2 -Author: Xan Lopez -Date: Sun Jan 22 14:09:06 2012 +0100 - - ephy-window: remove unused code - - src/ephy-window.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit 953042c0c733c5d72a039941fb1dc4f44cd613b2 -Author: Xan Lopez -Date: Sun Jan 22 14:07:31 2012 +0100 - - ephy-window: also remove the statusbar tips for tool items - - src/ephy-window.c | 135 ------------------------------------------------------ - 1 file changed, 135 deletions(-) - -commit 9d8acc22c843f9309e9f90ae23a58eeb4c064bde -Author: Xan Lopez -Date: Sun Jan 22 13:32:55 2012 +0100 - - ephy-window: remove menu statusbar helper messages - - They are not that helpful and are a bit distracting. - - https://bugzilla.gnome.org/show_bug.cgi?id=668191 - - src/ephy-window.c | 47 ++--------------------------------------------- - 1 file changed, 2 insertions(+), 45 deletions(-) - -commit 7cdfd66e04647967f8c92fa1aa3d75fb489fd475 -Author: Xan Lopez -Date: Sun Jan 22 13:04:24 2012 +0100 - - Remove mailto: specific menus - - 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. - - data/ui/epiphany-ui.xml | 14 -------------- - src/ephy-window.c | 34 ---------------------------------- - src/popup-commands.c | 9 --------- - 3 files changed, 57 deletions(-) - -commit eea8808a15effed06b1470e1bf5c9690280abb5a -Author: Xan Lopez -Date: Sun Jan 22 12:54:12 2012 +0100 - - ephy-window: we don't have a menu anymore, so the menudock widget is not needed - - src/ephy-window.c | 9 +-------- - 1 file changed, 1 insertion(+), 8 deletions(-) - -commit b0ef246be84b2a3d2ac353a504d33dac1af9baed -Author: Xan Lopez -Date: Sun Jan 22 12:50:33 2012 +0100 - - ephy-window: update comments a bit in window actions - - In particular, don't mention the menus anymore, since they do not exist. - - src/ephy-window.c | 30 +++++++++++++++--------------- - 1 file changed, 15 insertions(+), 15 deletions(-) - -commit d8a976f0e3f809917ff3c97263d23168bf850af3 -Author: Xan Lopez -Date: Sun Jan 22 12:48:28 2012 +0100 - - window-commands.h: remove duplicate and obsolete stuff, reformat a bit - - src/window-commands.h | 194 +++++++++++++++++++++----------------------------- - 1 file changed, 81 insertions(+), 113 deletions(-) - -commit 383823d0aed5e18a8537c4461feb99e0f5c0f9b5 -Author: Matej Urbančič -Date: Sat Jan 21 21:38:15 2012 +0100 - - Updated Slovenian translation - - po/sl.po | 1379 ++++++++++++++++++++------------------------------------------ - 1 file changed, 450 insertions(+), 929 deletions(-) - -commit f204b359a163c95825c7da7661a572c97642503e -Author: Kasia Bondarava -Date: Sat Jan 21 20:46:45 2012 +0300 - - Updated Belarusian translation. - - po/be.po | 4881 +++++++++++++++++++++----------------------------------------- - 1 file changed, 1632 insertions(+), 3249 deletions(-) - -commit d4dcc52b3800df19a884dbc654da4a1b13f637b9 -Author: Xan Lopez -Date: Fri Jan 20 20:39:31 2012 +0100 - - ephy-window: make ephy_window_get_find_toolbar private - - Surely this is not interesting for anyone outside Epiphany? It's not - used in extensions. - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-window.sgml | 9 --------- - src/ephy-private.h | 2 ++ - src/ephy-window.h | 2 -- - src/window-commands.c | 1 + - 5 files changed, 3 insertions(+), 12 deletions(-) - -commit 1bd50c7c0b96ff320f6265ca62f682f7d15755d6 -Author: Xan Lopez -Date: Fri Jan 20 20:32:37 2012 +0100 - - Make ephy_window_get_ui_manager return a GtkUIManager, not a GObject - - No clue why it was doing that, but seems pointless. I wish I could - make it private but it's used all over the place. - - src/bookmarks/ephy-bookmarks-ui.c | 8 ++++---- - src/ephy-encoding-menu.c | 14 +++++++------- - src/ephy-page-menu-action.c | 2 +- - src/ephy-window.c | 4 ++-- - src/ephy-window.h | 2 +- - 5 files changed, 15 insertions(+), 15 deletions(-) - -commit 85fa7b675ce68eff3326483b579acd8d3ae1c360 -Author: Priit Laes -Date: Fri Jan 20 20:31:34 2012 +0200 - - Drop unused gtkbuilder files - - Signed-off-by: Xan Lopez - - data/ui/Makefile.am | 5 +- - data/ui/certificate-dialogs.ui | 865 ----------------------------------------- - data/ui/form-signing-dialog.ui | 200 ---------- - data/ui/print.ui | 363 ----------------- - po/POTFILES.in | 3 - - 5 files changed, 1 insertion(+), 1435 deletions(-) - -commit 75f90a8df1d718247a71ce64e6e5af5320316fdd -Author: Xan Lopez -Date: Fri Jan 20 20:22:26 2012 +0100 - - ephy-window: remove "add-widget" callback from GtkUIManager - - We don't add widgets to our UI directly from the UI manager, so it's - useless. - - src/ephy-window.c | 11 ----------- - 1 file changed, 11 deletions(-) - -commit 6f14b118fb152df1fcad486d607493f8a4bc3f99 -Author: Xan Lopez -Date: Fri Jan 20 19:26:36 2012 +0100 - - ephy-window: make ephy_window_set_location private - - Setting the EphyWindow's location string directly is the kind of crack - that has to be private. - - src/ephy-private.h | 5 ++++- - src/ephy-window.h | 2 -- - 2 files changed, 4 insertions(+), 3 deletions(-) - -commit 9762c640696f3d6beaf58702258a9f4fe4e15823 -Author: Priit Laes -Date: Fri Jan 20 13:23:53 2012 +0200 - - [l10n] No need to translate dummy text - - Signed-off-by: Diego Escalante Urrelo - - data/ui/epiphany.ui | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit b7db069532878791e07eb53561ad08b01750fbab -Author: Xan Lopez -Date: Fri Jan 20 14:55:06 2012 +0100 - - Be a bit more strict about header includes - - src/ephy-extension.h | 1 + - src/ephy-find-toolbar.h | 1 + - src/ephy-private.h | 1 + - src/ephy-window.h | 2 +- - 4 files changed, 4 insertions(+), 1 deletion(-) - -commit 4d2c47ec31e4351666d414bfe975d0230c79185d -Author: Priit Laes -Date: Fri Jan 20 14:10:25 2012 +0200 - - [l10n] Updated Estonian translation - - po/et.po | 849 ++++++--------------------------------------------------------- - 1 file changed, 80 insertions(+), 769 deletions(-) - -commit edc2139a00f57a18ccd8ad8ae82fc49a3f08da0e -Author: Xan Lopez -Date: Fri Jan 20 13:06:20 2012 +0100 - - ephy-window: do not include just for strcmp - - src/ephy-window.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 4d8bef5ee9efcf82a133afed7635240216afbf69 -Author: Xan Lopez -Date: Fri Jan 20 13:04:14 2012 +0100 - - ephy-window: and remove three more forward declarations - - The remaining one kinda makes sense, so leave it alone. - - src/ephy-window.c | 357 ++++++++++++++++++++++++++---------------------------- - 1 file changed, 174 insertions(+), 183 deletions(-) - -commit f65d4d9fe6b007c69fd821ebbd40bc24b1b3bc25 -Author: Xan Lopez -Date: Fri Jan 20 12:59:12 2012 +0100 - - ephy-window: remove unused include - - src/ephy-window.c | 1 - - 1 file changed, 1 deletion(-) - -commit db1c2d65bd80996db19e3b180bb16e60017a31f8 -Author: Xan Lopez -Date: Fri Jan 20 12:50:49 2012 +0100 - - ephy-window: reorder a few methods to get rid of forward declarations - - src/ephy-window.c | 276 ++++++++++++++++++++++++++---------------------------- - 1 file changed, 134 insertions(+), 142 deletions(-) - -commit 16271c95a5cbf5d797f1f5bf2b1016398b9fa0c9 -Author: Xan Lopez -Date: Fri Jan 20 12:45:31 2012 +0100 - - ephy-window: remove duplicated method - - ephy_window_set_location and _ephy_window_set_location were - identical. Remove the latter. - - src/ephy-window.c | 17 ++--------------- - 1 file changed, 2 insertions(+), 15 deletions(-) - -commit 408de86398e94e17f163d7844599840157cc0a10 -Author: Xan Lopez -Date: Fri Jan 20 12:36:21 2012 +0100 - - More private method cleanups - - Move another method to ephy-private.h, and stop exporting another one - that is only used internally in EphyWindow. - - src/ephy-private.h | 2 ++ - src/ephy-window.c | 20 ++++++++++---------- - src/ephy-window.h | 5 ----- - src/popup-commands.c | 13 +++++++------ - 4 files changed, 19 insertions(+), 21 deletions(-) - -commit 27bf25693a91b5ab978c949c79320c46d4dc4875 -Author: Xan Lopez -Date: Fri Jan 20 11:59:24 2012 +0100 - - doc: fix distcheck - - doc/reference/epiphany.types | 2 -- - 1 file changed, 2 deletions(-) - -commit 92946fbb88977b544903982c3bb19f5423e3bdbd -Author: Xan Lopez -Date: Fri Jan 20 11:57:36 2012 +0100 - - Add a ephy-private.h header - - This should hold methods needed by Epiphany internally but that we do - not want to export. Only a couple of them so far, but we should - probably add a lot more. - - src/Makefile.am | 1 + - src/ephy-lockdown.c | 10 +++++----- - src/ephy-private.h | 40 ++++++++++++++++++++++++++++++++++++++++ - src/ephy-toolbar.c | 1 + - src/ephy-window.c | 1 + - src/ephy-window.h | 4 ---- - 6 files changed, 48 insertions(+), 9 deletions(-) - -commit c204b24e6014a42498fa710fa8b47df7a6990fd6 -Author: Xan Lopez -Date: Fri Jan 20 11:36:12 2012 +0100 - - ephy-window: remove redundant includes - - src/ephy-window.h | 2 -- - 1 file changed, 2 deletions(-) - -commit 2af96e1767cd624da54a1171382860e61fe7ec6e -Author: Xan Lopez -Date: Fri Jan 20 10:40:26 2012 +0100 - - ephy-window: missing annotation - - src/ephy-window.c | 8 ++++++++ - src/ephy-window.h | 1 + - 2 files changed, 9 insertions(+) - -commit 5ffe2e765aeb632d8811a8e1dbafc228ba23ee73 -Author: Cosimo Cecchi -Date: Thu Jan 19 17:13:07 2012 -0500 - - location-controller: remove references to "proxy" - - We're not a GtkAction anymore, so referencing "proxy" in the code is a - bit misleading. - - https://bugzilla.gnome.org/show_bug.cgi?id=668305 - - src/ephy-location-controller.c | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit 64d49d6ab067acf67500632f1e9ad681bd97b682 -Author: Cosimo Cecchi -Date: Thu Jan 19 17:07:16 2012 -0500 - - location-controller: use the right signal data to unblock signal - - We were using priv->proxy, which is a leftover from when this was a - GtkAction, and is actually always NULL. Use the right pointer instead. - Fix location entry failing to properly update the address when switching - tabs. - - https://bugzilla.gnome.org/show_bug.cgi?id=668305 - - src/ephy-location-controller.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 1d566cf039d77514d57f458dbb5942199db4480e -Author: Diego Escalante Urrelo -Date: Tue Jan 17 15:15:22 2012 -0500 - - ephy-shell: pass active window to the about dialog - - So it can be modal. - - https://bugzilla.gnome.org/show_bug.cgi?id=668113 - - src/ephy-shell.c | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -commit 2dfb8e7976d83847c3a6b0c515f273f507d9162c -Author: Xan Lopez -Date: Thu Jan 19 19:10:31 2012 +0100 - - ephy-embed: stop listening to progress updates after dispose - - Similar to status message updates, otherwise we might end up updating - dead widgets. This fixes: - - #0 0x00007ffff592b9c8 in g_logv (log_domain=0x7ffff66de0cf "Gtk", log_level=G_LOG_LEVEL_CRITICAL, format=0x7ffff59ade60 "%s: assertion `%s' failed", args1=0x7fffffffd588) at gmessages.c:758 - #1 0x00007ffff592babc in g_log (log_domain=0x7ffff66de0cf "Gtk", log_level=G_LOG_LEVEL_CRITICAL, format=0x7ffff59ade60 "%s: assertion `%s' failed") at gmessages.c:792 - #2 0x00007ffff592bafd in g_return_if_fail_warning (log_domain=0x7ffff66de0cf "Gtk", pretty_function=0x7ffff66e27f0 "gtk_widget_hide", expression=0x7ffff66df7e8 "GTK_IS_WIDGET (widget)") at gmessages.c:801 - #3 0x00007ffff657c430 in gtk_widget_hide (widget=0x15ca190) at gtkwidget.c:3992 - #4 0x00000000004703f6 in clear_progress_cb (embed=0x516450) at ../../embed/ephy-embed.c:525 - #5 0x00007ffff5923c2c in g_timeout_dispatch (source=0x1bb9400, callback=0x4703d6 , user_data=0x516450) at gmain.c:3857 - #6 0x00007ffff5921e83 in g_main_dispatch (context=0x524f70) at gmain.c:2513 - #7 0x00007ffff5922b44 in g_main_context_dispatch (context=0x524f70) at gmain.c:3050 - #8 0x00007ffff5922d27 in g_main_context_iterate (context=0x524f70, block=1, dispatch=1, self=0x629c90) at gmain.c:3121 - #9 0x00007ffff5922deb in g_main_context_iteration (context=0x524f70, may_block=1) at gmain.c:3182 - #10 0x00007ffff5b2705e in g_application_run (application=0x508000, argc=1, argv=0x7fffffffda78) at gapplication.c:1496 - #11 0x000000000042d6e2 in main (argc=1, argv=0x7fffffffda78) at ../../src/ephy-main.c:472 - - embed/ephy-embed.c | 20 ++++++++++++++------ - 1 file changed, 14 insertions(+), 6 deletions(-) - -commit e62275191c520024b3b48dd2bdecbfb407e105e1 -Author: Cosimo Cecchi -Date: Wed Jan 18 14:08:09 2012 -0500 - - Rename EphyLocationAction -> EphyLocationController - - Since it's not a GtkAction anymore. - - https://bugzilla.gnome.org/show_bug.cgi?id=668206 - - src/Makefile.am | 8 +- - src/ephy-location-action.c | 914 ----------------------------------------- - src/ephy-location-action.h | 67 --- - src/ephy-location-controller.c | 914 +++++++++++++++++++++++++++++++++++++++++ - src/ephy-location-controller.h | 67 +++ - src/ephy-lockdown.c | 12 +- - src/ephy-window.c | 35 +- - src/ephy-window.h | 4 +- - 8 files changed, 1010 insertions(+), 1011 deletions(-) - -commit 2082e3a96b3aed97adc615e7739cec6afea5d76e -Author: Cosimo Cecchi -Date: Wed Jan 18 13:56:45 2012 -0500 - - location-action: don't make this a GtkAction anymore - - It doesn't really make sense in a world where the location action is - only used on a fixed toolbar, and complicates the code a lot. - - https://bugzilla.gnome.org/show_bug.cgi?id=668206 - - src/ephy-location-action.c | 320 ++++++++++++++++++++++----------------------- - src/ephy-location-action.h | 6 +- - src/ephy-lockdown.c | 16 ++- - src/ephy-toolbar.c | 5 +- - src/ephy-window.c | 64 ++++----- - src/ephy-window.h | 2 + - 6 files changed, 201 insertions(+), 212 deletions(-) - -commit 90e79ffec92b47fbc6ad8b575b9691b1f7621f3b -Author: Cosimo Cecchi -Date: Wed Jan 18 12:59:57 2012 -0500 - - entry: make EphyLocationEntry a GtkEntry - - Instead of a GtkToolItem. A future commit will move the code in - EphyLocationAction not to be a GtkAction, which is why this was a - GtkToolItem in the first place. - - https://bugzilla.gnome.org/show_bug.cgi?id=668206 - - lib/widgets/ephy-location-entry.c | 107 ++++++++++++++------------------------ - lib/widgets/ephy-location-entry.h | 6 +-- - src/ephy-location-action.c | 54 ++++++------------- - src/ephy-toolbar.c | 12 ++++- - src/ephy-toolbar.h | 2 + - src/ephy-window.c | 74 +++----------------------- - tests/ephy-location-entry.c | 4 +- - 7 files changed, 79 insertions(+), 180 deletions(-) - -commit 653966c7a52cd037dd86623f85ffdd7fcd47b822 -Author: Xan Lopez -Date: Thu Jan 19 18:59:25 2012 +0100 - - ephy-embed-shell: add missing annotation - - embed/ephy-embed-shell.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e50901fb5fe73fb1accc91692e155ce774f94d40 -Author: Xan Lopez -Date: Thu Jan 19 18:57:11 2012 +0100 - - ephy-window: annotate return value of a method - - src/ephy-window.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit 4100a70e0a2cf8819b296418b3dea3535f577b29 -Author: OKANO Takayoshi -Date: Thu Jan 19 20:49:18 2012 +0900 - - [l10n] Update Japanese translation - - help/ja/ja.po | 2294 +++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 1321 insertions(+), 973 deletions(-) - -commit 8cda1d7564f5b7bc1c10962dfeb9c74223e19376 -Author: Xan Lopez -Date: Thu Jan 19 01:20:30 2012 +0100 - - omf-install: what is this, I don't even - - omf-install/Makefile.am | 33 --------------------------------- - 1 file changed, 33 deletions(-) - -commit f93afde3787fac55392b851f23c8696090eb6959 -Author: Xan Lopez -Date: Thu Jan 19 01:02:36 2012 +0100 - - TODO: remove a couple of old/done items - - TODO | 3 --- - 1 file changed, 3 deletions(-) - -commit d31a5ddab7bb1dbd580f71c08cf0b80fdb6130b4 -Author: Xan Lopez -Date: Thu Jan 19 00:52:36 2012 +0100 - - TODO: try to have something useful here - - TODO | 31 +++++++++++++++++++------------ - 1 file changed, 19 insertions(+), 12 deletions(-) - -commit fe832264e75d19fee8c206727b79c5d81837b47d -Author: Xan Lopez -Date: Thu Jan 19 00:42:34 2012 +0100 - - ephy-embed: if there's a priv variable set, use it - - embed/ephy-embed.c | 79 +++++++++++++++++++++++++++--------------------------- - 1 file changed, 40 insertions(+), 39 deletions(-) - -commit 20725e06093b2bce2cc3173dccd2ced1efd5ecdb -Author: Fábio Nogueira -Date: Wed Jan 18 20:04:58 2012 -0200 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 1511 ++++++++++++++++++++++++++++------------------------------- - 1 file changed, 718 insertions(+), 793 deletions(-) - -commit e515b58632fa80f7ef88bfaa50d50904646afedf -Author: Xan Lopez -Date: Wed Jan 18 22:55:48 2012 +0100 - - [release] 3.3.4.1 - - NEWS | 14 ++++++++++++++ - configure.ac | 2 +- - 2 files changed, 15 insertions(+), 1 deletion(-) - -commit b2fff0dd22d8c3dbcb3d88e1d044fdb68b4cea21 -Author: Xan Lopez -Date: Wed Jan 18 22:41:32 2012 +0100 - - ephy-embed: do not listen to status updates after dispose - - Otherwise we might crash updating a dead statusbar widget. - - https://bugzilla.gnome.org/show_bug.cgi?id=668171 - - embed/ephy-embed.c | 14 +++++++++++++- - 1 file changed, 13 insertions(+), 1 deletion(-) - -commit 19171bd7fe27bc87fa68b3272a2715a710ea8c6b -Author: Xan Lopez -Date: Wed Jan 18 18:31:54 2012 +0100 - - ephy-toolbar: set the MENUBAR style class - - That way we can drag the app using the toolbar itself. - - src/ephy-toolbar.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit b08c6814062e80ef37d3dded8e17f6bf9dd726ef -Author: Xan Lopez -Date: Wed Jan 18 18:18:17 2012 +0100 - - ephy-window: hide our titlebar when maximized - - src/ephy-window.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 3cc93b5ec64d97739cf5065e19b31759d1495b9e -Author: Carlos Garcia Campos -Date: Wed Jan 18 16:17:53 2012 +0100 - - Remove Print Setup item from the super menu and embed it into print dialog - - data/ui/epiphany-ui.xml | 1 - - embed/ephy-web-view.c | 9 ++++++--- - src/ephy-lockdown.c | 3 --- - src/ephy-window.c | 3 --- - src/window-commands.c | 25 ------------------------- - src/window-commands.h | 3 --- - 6 files changed, 6 insertions(+), 38 deletions(-) - -commit 066acbea3d32c04f15b6754310c8ba422f7c2f36 -Author: Xan Lopez -Date: Wed Jan 18 13:39:12 2012 +0100 - - ephy-home-action: remove a lot of unused code - - src/ephy-home-action.c | 157 +++---------------------------------------------- - 1 file changed, 9 insertions(+), 148 deletions(-) - -commit 9c52e2df5c4b414eb19fb6d5f7e0261c708a2d22 -Author: Xan Lopez -Date: Wed Jan 18 13:14:04 2012 +0100 - - Remove "Send link by mail..." from the super menu - - 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. - - data/ui/epiphany-ui.xml | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 67798e67eb2433e8367111156a63ffee76e9e5b2 -Author: Xan Lopez -Date: Wed Jan 18 12:01:22 2012 +0100 - - Remove Print Preview item from the super menu - - It's already accessible from the Print dialog itself, so there's - really no need to duplicate it. - - data/ui/epiphany-ui.xml | 1 - - embed/ephy-web-view.c | 15 --------------- - embed/ephy-web-view.h | 1 - - src/ephy-lockdown.c | 1 - - src/ephy-window.c | 5 ----- - src/window-commands.c | 13 ------------- - src/window-commands.h | 3 --- - 7 files changed, 39 deletions(-) - -commit eae947e94cd0343801cfad4ee3cd4ff656ad734b -Author: Xan Lopez -Date: Wed Jan 18 11:37:35 2012 +0100 - - POTFILES.in: add the app menu ui file - - Not sure if this is enough to make it translatable, but I'm sure Piotr - will help me out here. - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit 49580a45a618c6992b19988714d80f6f909095be -Author: Xan Lopez -Date: Tue Jan 17 19:57:50 2012 +0100 - - ephy-page-menu-action: do not query the action proxies during dispose - - That was a bad idea. Just store the proxy used for the visibility hack - in the private data too. - - src/ephy-page-menu-action.c | 14 +++++--------- - 1 file changed, 5 insertions(+), 9 deletions(-) - -commit 2b7dcd1c4f16640b0af0105b412cc8e937f0218b -Author: Kjartan Maraas -Date: Tue Jan 17 17:23:01 2012 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 109 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 55 insertions(+), 54 deletions(-) - -commit 6f7683801e0a6ab4b10e5a6a5b4c65ddddce721e -Author: Xan Lopez -Date: Tue Jan 17 13:30:48 2012 +0100 - - ephy-web-view: remove unused method - - embed/ephy-web-view.c | 66 --------------------------------------------------- - embed/ephy-web-view.h | 1 - - 2 files changed, 67 deletions(-) - -commit 8116867c05267353d8f93b3e280be48b9288e80d -Author: Xan Lopez -Date: Tue Jan 17 13:26:25 2012 +0100 - - ephy-find-toolbar: reorder includes - - src/ephy-find-toolbar.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit fa5d7a87451834bf8f9253b1ebba08c5da8fe446 -Author: Xan Lopez -Date: Tue Jan 17 13:17:27 2012 +0100 - - ephy-window: fix binding for Find Previous - - If the binding uses Shift we need to put the letter in uppercase. - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ada259cbc99436eaf638061dd3a4e864e476b0ae -Author: Xan Lopez -Date: Tue Jan 17 13:01:47 2012 +0100 - - Remove Find Next/Previous from page menu - - The actions are already in the find toolbar, which is accessible from - the menu, so there's no need to have them there. - - data/ui/epiphany-ui.xml | 2 -- - src/ephy-window.c | 3 +++ - 2 files changed, 3 insertions(+), 2 deletions(-) - -commit 323487932aeb480be4646df38d2a395a0ada05d8 -Author: Daniel Mustieles -Date: Tue Jan 17 12:52:16 2012 +0100 - - Updated Spanish translation - - po/es.po | 182 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 88 insertions(+), 94 deletions(-) - -commit af6852c68bfad98d9175eb10ac3efbcc9112aac8 -Author: Xan Lopez -Date: Tue Jan 17 12:51:07 2012 +0100 - - ephy-page-menu-action: disconnect the visible handler on dispose - - src/ephy-page-menu-action.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 6cb9603301f180fb276331d2ec176ad241e04d77 -Author: Xan Lopez -Date: Tue Jan 17 10:49:05 2012 +0100 - - [release] 3.3.4 - - NEWS | 21 +++++++++++++++++++++ - configure.ac | 4 ++-- - 2 files changed, 23 insertions(+), 2 deletions(-) - -commit 9bb5bb93f0b33efd575128e1c386bcdeec446fbf -Author: Cosimo Cecchi -Date: Mon Jan 16 19:05:16 2012 -0500 - - ephy-page-menu-action: set the DROPDOWN type hint on the page menu - - So that the WM will use shadows on it as if it was generated from a - menubar. - - src/ephy-page-menu-action.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 94ddc090c0719baa827228d09ee92d952508aeb3 -Author: Xan Lopez -Date: Tue Jan 17 00:36:14 2012 +0100 - - ephy-page-menu-action: set the style class in the button, not the menu - - src/ephy-page-menu-action.c | 24 ++++++++++++------------ - 1 file changed, 12 insertions(+), 12 deletions(-) - -commit 01bddb73b6a99980148a61d621c0549739f28207 -Author: Xan Lopez -Date: Tue Jan 17 00:30:43 2012 +0100 - - ephy-page-menu-action: hang on to our menu - - src/ephy-page-menu-action.c | 16 ++++++++++++++-- - 1 file changed, 14 insertions(+), 2 deletions(-) - -commit 9c7ecd319db94e3d382b36708abc9076ae4d9f4f -Author: Cosimo Cecchi -Date: Mon Jan 16 18:08:01 2012 -0500 - - embed: add enter/leave events to the GtkOverlay - - So the floating bar can listen to enter-notify-event and move - accordingly. - - embed/ephy-embed.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 907fac544a1d407a18b51f430b33154f6b1cbb3c -Author: Cosimo Cecchi -Date: Mon Jan 16 17:42:00 2012 -0500 - - embed: set the floating bar as no_show_all - - Since we want to show it on demand and we call show_all on the parent - GtkPaned. - - embed/ephy-embed.c | 1 + - 1 file changed, 1 insertion(+) - -commit a24c1cee4db530a0a9b2a833e41d726497d642a0 -Author: Xan Lopez -Date: Tue Jan 17 00:23:12 2012 +0100 - - ephy-page-menu: set a style class when our menu is visible - - To aid with styling. - - src/ephy-page-menu-action.c | 77 +++++++++++++++++++++++++++++++-------------- - src/ephy-page-menu-action.h | 11 ++++--- - src/ephy-window-action.c | 2 +- - 3 files changed, 61 insertions(+), 29 deletions(-) - -commit 390196098579f2b5ad70d43b738e04184d9cbac1 -Author: Xan Lopez -Date: Mon Jan 16 23:54:59 2012 +0100 - - ephy-toolbar: set a name for the page menu button - - To aid styling. - - src/ephy-toolbar.c | 1 + - 1 file changed, 1 insertion(+) - -commit 159f011f63d01135e8ad8b2e34afbf8fd677b45d -Author: Xan Lopez -Date: Mon Jan 16 23:34:29 2012 +0100 - - Move the nautilus floating bar to lib/widgets - - And fix a couple of warnings. - - embed/ephy-embed.c | 4 +- - lib/widgets/Makefile.am | 8 +- - lib/widgets/nautilus-floating-bar.c | 389 ++++++++++++++++++++++++++++++++++++ - lib/widgets/nautilus-floating-bar.h | 75 +++++++ - src/Makefile.am | 2 - - src/nautilus-floating-bar.c | 389 ------------------------------------ - src/nautilus-floating-bar.h | 75 ------- - 7 files changed, 470 insertions(+), 472 deletions(-) - -commit 3e258526ca38fc6dd1c8a8c96f4925531f5031c8 -Author: Cosimo Cecchi -Date: Mon Jan 16 17:07:27 2012 -0500 - - floating-bar: import NautilisFloatingBar into Epiphany - - Yay for sharing code. It also helps theming. - - embed/ephy-embed.c | 47 ++---- - src/Makefile.am | 2 + - src/nautilus-floating-bar.c | 389 ++++++++++++++++++++++++++++++++++++++++++++ - src/nautilus-floating-bar.h | 75 +++++++++ - 4 files changed, 476 insertions(+), 37 deletions(-) - -commit 6b6d20039c2ce843fbefe0bea34f6dbef785aacd -Author: Xan Lopez -Date: Mon Jan 16 22:41:18 2012 +0100 - - ephy-notebook: use symbolic icon for close button - - src/ephy-notebook.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit eebaf073109f9c3f557d0df63e91b18235f6c665 -Author: Xan Lopez -Date: Mon Jan 16 22:36:49 2012 +0100 - - ephy-page-menu: fix warning - - src/ephy-page-menu-action.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6fd9f304d69a75ecd3f64896da62e6658317454d -Author: Xan Lopez -Date: Mon Jan 16 22:29:19 2012 +0100 - - ephy-combined-stop-reload-action: object orientation is hard, let's go shopping - - src/ephy-combined-stop-reload-action.c | 1 - - src/ephy-combined-stop-reload-action.h | 9 +++++---- - 2 files changed, 5 insertions(+), 5 deletions(-) - -commit 6f203b074c744fe07bfa84e6d679276835ec5049 -Author: Xan Lopez -Date: Mon Jan 16 22:21:23 2012 +0100 - - ephy-page-menu: activate on button press - - Requested by the Design Team. - - src/ephy-page-menu-action.c | 57 ++++++++++++++++++++++++++++++++------------- - 1 file changed, 41 insertions(+), 16 deletions(-) - -commit d27f1853d4aef2a2d04e4b8c80fb2f89dc18b837 -Author: Xan Lopez -Date: Mon Jan 16 21:48:43 2012 +0100 - - Back/Forward actions do need to have a label set - - Since they are used in context menus too. Re-add those and force the - toolbar buttons to be image-only. - - src/ephy-toolbar.c | 2 ++ - src/ephy-window.c | 2 ++ - 2 files changed, 4 insertions(+) - -commit 89b3d546af6ccee13fe229413a7f7a1ea444dfb5 -Author: Xan Lopez -Date: Mon Jan 16 20:19:23 2012 +0100 - - POTFILES.in: the toolbar didn't have any translatable strings in the end - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit 4546f9c3f42417f71a118f9a80ea24bea84695af -Author: Xan Lopez -Date: Mon Jan 16 20:14:59 2012 +0100 - - ephy-middle-clickable-tool-button: remove, it's unused now - - lib/widgets/Makefile.am | 2 - - lib/widgets/ephy-middle-clickable-tool-button.c | 46 --------------------- - lib/widgets/ephy-middle-clickable-tool-button.h | 55 ------------------------- - 3 files changed, 103 deletions(-) - -commit f89e9530e6a445f934336db59dd6e86530894bc3 -Author: Xan Lopez -Date: Mon Jan 16 20:14:37 2012 +0100 - - ephy-window: forgot this - - src/ephy-window.c | 1 - - 1 file changed, 1 deletion(-) - -commit 52cdd6df6cb561a48032358b3eedce16cfa2c9fb -Author: Xan Lopez -Date: Mon Jan 16 20:11:40 2012 +0100 - - Refactor GtkActions with attached EphyWindows - - Make a GtkAction subclass that only holds an EphyWindow and nothing - else, and use it throughout. Allows us to kill some duplicated code. - - src/Makefile.am | 4 +- - src/ephy-combined-stop-reload-action.c | 23 ++----- - src/ephy-link-action.c | 3 +- - src/ephy-link-action.h | 6 +- - src/ephy-navigation-action.c | 114 --------------------------------- - src/ephy-navigation-action.h | 65 ------------------- - src/ephy-navigation-history-action.c | 4 +- - src/ephy-navigation-history-action.h | 6 +- - src/ephy-page-menu-action.c | 4 +- - src/ephy-page-menu-action.h | 6 +- - src/ephy-toolbar.c | 6 +- - src/ephy-window-action.c | 102 +++++++++++++++++++++++++++++ - src/ephy-window-action.h | 62 ++++++++++++++++++ - 13 files changed, 190 insertions(+), 215 deletions(-) - -commit 1150405cc1bc50d6c258cb723a76ae90d8945f73 -Author: Xan Lopez -Date: Mon Jan 16 19:20:44 2012 +0100 - - ephy-window: add extra bindings for zoom in/out - - They are not in any menu either atm. - - src/ephy-window.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit 80013eb51b18d612ba3be1181a3797279419db47 -Author: Xan Lopez -Date: Mon Jan 16 19:08:52 2012 +0100 - - ephy-navigation-history-action: make sure embed is focused after navigation - - The focus was staying in the proxy buttons, that's not OK. - - src/ephy-navigation-history-action.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit da544577399cfb2f243e0c26515a0dc79163c02e -Author: Xan Lopez -Date: Mon Jan 16 18:22:01 2012 +0100 - - ephy-toolbar: set a style class to the location+reload combo - - This way it's easier to access from the theme. - - src/ephy-toolbar.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit b12f9670bc776806b8325dc33b53b33e845816b4 -Author: Xan Lopez -Date: Mon Jan 16 18:11:51 2012 +0100 - - ephy-toolbar: use normal GtkButtons for the toolbar - - It's harder to get the theming right with GtkToolButtons :/ - - src/ephy-page-menu-action.c | 6 +++--- - src/ephy-toolbar.c | 39 ++++++++++++++++++++++----------------- - 2 files changed, 25 insertions(+), 20 deletions(-) - -commit 64d06cecbf24c4731acc5f6c0b6dde60a5938027 -Author: Xan Lopez -Date: Mon Jan 16 17:35:36 2012 +0100 - - Stop using GtkUIManager to create the toolbar - - Otherwise it's difficult to get the right layout for theming. - - data/ui/epiphany-ui.xml | 8 -- - po/POTFILES.in | 1 + - src/Makefile.am | 2 + - src/ephy-combined-stop-reload-action.c | 1 - - src/ephy-page-menu-action.c | 6 +- - src/ephy-toolbar.c | 199 +++++++++++++++++++++++++++++++++ - src/ephy-toolbar.h | 62 ++++++++++ - src/ephy-window.c | 30 +++-- - src/ephy-window.h | 2 + - 9 files changed, 290 insertions(+), 21 deletions(-) - -commit 3d7377cb22125311566c3699124005cd59181171 -Author: Kjartan Maraas -Date: Mon Jan 16 17:11:19 2012 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 383 +++++++++++++++++++++++++++------------------------------------ - 1 file changed, 161 insertions(+), 222 deletions(-) - -commit ab4e43e329ba98f63fb879a1ce695cf2fe4a7694 -Author: Daniel Mustieles -Date: Sun Jan 15 19:25:52 2012 +0100 - - Updated Spanish translation - - po/es.po | 481 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 237 insertions(+), 244 deletions(-) - -commit 5150315733479d53af3ea25587aeeed90af0ac0b -Author: Fran Diéguez -Date: Sun Jan 15 01:46:24 2012 +0100 - - Updated Galician translations - - po/gl.po | 1660 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 788 insertions(+), 872 deletions(-) - -commit e4d9d86c4dd597c972db7847f75e165fba1bea27 -Author: Xan Lopez -Date: Sat Jan 14 21:08:13 2012 +0100 - - window-commands: update copyright year - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 55158b392dfc3cf9d6b7ca1f5225ba0ca6c21aad -Author: Xan Lopez -Date: Sat Jan 14 12:18:40 2012 +0100 - - Make the visible name of the application 'Web' - - 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 - - data/epiphany.desktop.in.in | 2 +- - src/window-commands.c | 8 ++++---- - 2 files changed, 5 insertions(+), 5 deletions(-) - -commit 8fb3d72ba837704c583fa2087112ae1044b4f3e1 -Author: Xan Lopez -Date: Fri Jan 13 18:36:35 2012 +0100 - - ephy-window: drop the PRIMARY_TOOLBAR style - - Requested by Lapo. Now we need to fix up the theme. - - src/ephy-window.c | 3 --- - 1 file changed, 3 deletions(-) - -commit c00aac27200ee7b5cf6fcccc01ee1d4354f11b6c -Author: Xan Lopez -Date: Fri Jan 13 18:25:32 2012 +0100 - - ephy-window: use the emblem icon for the page menu - - It's a bit more understandable than send-to. - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6b31d789addfa284e7b1860dbb7d3d1e5c9e7c68 -Author: Xan Lopez -Date: Fri Jan 13 18:21:33 2012 +0100 - - ephy-window: make fullscreen an extra binding - - Otherwise it won't work since it's not in any menu at the moment. That - should change. - - src/ephy-window.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 2050f8d49b22c28cd0a6917dce9caeef48a57f6b -Author: Xan Lopez -Date: Fri Jan 13 18:09:10 2012 +0100 - - ephy-window: do not track application windows too much - - We already pass the app to the window constructor, so no need to do - this again in _init (). - - src/ephy-window.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 9e876de499a6d3c5597c554d7259a28e20e2531c -Author: Xan Lopez -Date: Fri Jan 13 18:06:27 2012 +0100 - - ephy-window: remove some dead code - - src/ephy-window.c | 30 +----------------------------- - 1 file changed, 1 insertion(+), 29 deletions(-) - -commit 878f147621272359417bdc2b3b3b50ce2b6b3e91 -Author: Xan Lopez -Date: Fri Jan 13 17:39:21 2012 +0100 - - configure.ac: bump GTK+ dependency - - Needed for GtkApplicationWindow and global menus. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4b65fd9c5247e061cab42b550b1f444c4654622e -Author: Xan Lopez -Date: Fri Jan 13 00:00:32 2012 +0100 - - ephy-window: add temporary extra binding for PageMenu - - The default one is not working for some reason... - - src/ephy-window.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit be08c39dc2cd36142fa299b96f2d6385390b70f2 -Author: Xan Lopez -Date: Thu Jan 12 19:58:26 2012 +0100 - - ephy-window: simplify the chrome visibility logic - - There's no difference between fullscreen and non fullscreen atm. - - src/ephy-window.c | 12 +++--------- - 1 file changed, 3 insertions(+), 9 deletions(-) - -commit b162aed9c4c965dc506dd951c94d9c080042e889 -Author: Xan Lopez -Date: Thu Jan 12 19:41:53 2012 +0100 - - ephy-page-menu-action: try to use the actual activate event when possible - - Otherwise fallback to faking it as before. - - src/ephy-page-menu-action.c | 13 ++++++++++++- - 1 file changed, 12 insertions(+), 1 deletion(-) - -commit 0eefbc613817e5a5f039c5830fdbdb80fc72f052 -Author: Xan Lopez -Date: Thu Jan 12 19:10:05 2012 +0100 - - ephy-window: pass the application to the constructor - - https://bugzilla.gnome.org/show_bug.cgi?id=667628 - - src/ephy-window.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 7d0a56a525ce05001d7c38faa0751ad5b9282b33 -Author: Xan Lopez -Date: Wed Jan 11 19:44:47 2012 +0100 - - ephy-window: remove some memubar leftovers - - src/ephy-window.c | 56 ++++--------------------------------------------------- - 1 file changed, 4 insertions(+), 52 deletions(-) - -commit 042f09bcf84db2ade9aa18f881ac5064aacbf116 -Author: Xan Lopez -Date: Wed Jan 11 19:21:23 2012 +0100 - - Drop menubar and create an actions menu button in the toolbar - - 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. - - data/ui/epiphany-ui.xml | 94 ++++++++++++++------------------------- - src/Makefile.am | 2 + - src/bookmarks/ephy-bookmarks-ui.c | 4 +- - src/ephy-encoding-menu.c | 4 +- - src/ephy-page-menu-action.c | 90 +++++++++++++++++++++++++++++++++++++ - src/ephy-page-menu-action.h | 52 ++++++++++++++++++++++ - src/ephy-window.c | 72 +++++++++--------------------- - 7 files changed, 204 insertions(+), 114 deletions(-) - -commit ade53ab2fdcec609ca42b1277be1f8889bafbaa7 -Author: Xan Lopez -Date: Tue Jan 10 17:02:10 2012 +0100 - - Use the new Shell global menu for global actions - - And remove them from the existing menubar. - - data/ui/Makefile.am | 1 + - data/ui/epiphany-application-menu.ui | 24 ++++++ - data/ui/epiphany-ui.xml | 10 --- - lib/ephy-gui.c | 6 +- - src/ephy-lockdown.c | 4 - - src/ephy-shell.c | 148 ++++++++++++++++++++++++++++++++--- - src/ephy-window.c | 51 +----------- - src/ephy-window.h | 4 +- - src/window-commands.c | 67 +--------------- - src/window-commands.h | 15 ---- - 10 files changed, 170 insertions(+), 160 deletions(-) - -commit fdf4c638525301e2bd45fe1d6851830e826b1b9a -Author: Yaron Shahrabani -Date: Fri Jan 13 09:33:16 2012 +0200 - - Updated Hebrew translation. - - po/he.po | 375 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 186 insertions(+), 189 deletions(-) - -commit 4bb82acd61040dd135db2a6f7c30280f94fec9c2 -Author: Hideki Yamane -Date: Thu Jan 12 23:46:00 2012 +0900 - - Updated Japanese translation - - po/ja.po | 1444 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 675 insertions(+), 769 deletions(-) - -commit 93f25797d408c0c3e5b3234f3d39fe3fa7541407 -Author: Funda Wang -Date: Thu Jan 12 13:12:06 2012 +0100 - - fix bug#667752: broken tag found in zh_CN manual - - help/zh_CN/zh_CN.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 579ae57b780cfafafb63ec48b37f9d8e62dd8653 -Author: Xan Lopez -Date: Tue Jan 10 18:40:57 2012 +0100 - - ephy-window: make sure to hide all chrome in application mode - - https://bugzilla.gnome.org/show_bug.cgi?id=667634 - - src/ephy-window.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit 3dc15936e2f77206f1dfaefacc030d009ae74b69 -Author: Xan Lopez -Date: Tue Jan 10 18:30:50 2012 +0100 - - epiphany-ui.xml: kill ToolbarPopup, it's unused now - - data/ui/epiphany-ui.xml | 9 --------- - 1 file changed, 9 deletions(-) - -commit d4392e86207542e1b167065b510f2f14eaf44778 -Author: Xan Lopez -Date: Tue Jan 10 17:01:35 2012 +0100 - - epiphany.css: use 'transparent' instead of 'none' for background color - - Required by newest GTK+. - - data/ui/epiphany.css | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d99d9e9d552f17ea8fd9ac653703f4ee914ec7dc -Author: Muhammet Kara -Date: Sun Jan 8 20:24:05 2012 +0200 - - [l10n]Updated Turkish translation - - po/tr.po | 378 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 189 insertions(+), 189 deletions(-) - -commit eb5fa8c096d9c4cd8764cbc2affa71f6b56f06f5 -Author: Alexander Shopov -Date: Sun Jan 8 10:52:25 2012 +0200 - - Updated Bulgarian translation - - po/bg.po | 1372 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 651 insertions(+), 721 deletions(-) - -commit 89f5558ecf8559db2de48f941ea1902ef99fc3a0 -Author: Yuri Myasoedov -Date: Sat Jan 7 20:10:12 2012 +0400 - - Updated Russian translation - - po/ru.po | 1305 +++++++++++++++++++++++++------------------------------------- - 1 file changed, 531 insertions(+), 774 deletions(-) - -commit f29b27c087d7fc7bc1daf3bc46c2635b360bc03f -Author: Jovan Naumovski -Date: Sat Jan 7 04:00:27 2012 +0100 - - Updated Macedonian translation. - - po/mk.po | 5277 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 2356 insertions(+), 2921 deletions(-) - -commit eecedfbb9656236057dde6dd4f3aec671601ebe7 -Author: Daniel Mustieles -Date: Fri Jan 6 20:30:43 2012 +0100 - - Updated Spanish translation - - po/es.po | 511 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 254 insertions(+), 257 deletions(-) - -commit 5a3a574efde297e2d9687ace8fb49026110e0259 -Author: Jiro Matsuzawa -Date: Wed Jan 4 11:18:02 2012 +0900 - - Add mnemonics for password/recovery infobars - - 'Store password' and 'Session recovery' infobars had no mnemonics in - their buttons. - - Bug #667238 - - Signed-off-by: Diego Escalante Urrelo - - embed/ephy-web-view.c | 4 ++-- - src/ephy-session.c | 4 ++-- - 2 files changed, 4 insertions(+), 4 deletions(-) - -commit 9c4a9e1156c56439f1ac500bed216df35754ab1a -Author: Philippe Normand -Date: Fri Dec 2 13:07:27 2011 +0100 - - ephy-embed-prefs: Hardcode enable-fullscreen to TRUE - - This change is required for websites (like Youtube) using the new - Javascript-based fullscreen API. Also bumped the WebKitGTK requirement - to 1.7.3 in agreement with Xan. This release includes bug fixes - related to fullscreen display of videos. - - Fixes https://bugzilla.gnome.org/show_bug.cgi?id=665341 - - configure.ac | 2 +- - embed/ephy-embed-prefs.c | 1 + - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit f8fa0af522ffe06c1c8b5711cb284767acb90dc1 -Author: Xan Lopez -Date: Mon Jan 2 19:20:12 2012 +0100 - - ephy-navigation-history-action: remove some dead code - - src/ephy-navigation-history-action.c | 7 ------- - 1 file changed, 7 deletions(-) - -commit 7b548bc81703ac315cfd7ccbc335f65adfe0ba89 -Author: Claudio Saavedra -Date: Tue Sep 27 23:15:16 2011 +0200 - - make g_setenv() calls early enough during startup - - g_setenv() and getenv() are not thread-safe, so we need to make sure - that g_setenv() call in main is done earlier than anything that can - trigger a getenv() call. - - https://bugzilla.gnome.org/show_bug.cgi?id=659145 - - src/ephy-main.c | 24 ++++++++++++------------ - 1 file changed, 12 insertions(+), 12 deletions(-) - -commit 36daaa05e85989d371b9c3d3c4fd3ad49572b728 -Author: Xan Lopez -Date: Mon Jan 2 13:50:47 2012 +0100 - - ephy-home-action: remove dead code - - src/ephy-home-action.c | 7 ------- - 1 file changed, 7 deletions(-) - -commit c8e32cef45ed75b2430b41647a3f99dbacd872a2 -Author: Xan Lopez -Date: Mon Jan 2 13:47:39 2012 +0100 - - ephy-window: remove GoHome action, it's not used (I hope!) - - src/ephy-window.c | 18 ------------------ - 1 file changed, 18 deletions(-) - -commit a2b83fee101195cf14b3788366a68ee169a755cc -Author: Xan Lopez -Date: Mon Jan 2 13:42:42 2012 +0100 - - Revert "Remove EphyHomeAction, it's unused" - - This reverts commit 9c12735e12a9106cdc68d9555a491642ea791e62. - - Turns out it was used :D - - src/Makefile.am | 2 + - src/ephy-home-action.c | 283 +++++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-home-action.h | 55 ++++++++++ - src/ephy-window.c | 1 + - 4 files changed, 341 insertions(+) - -commit 9c12735e12a9106cdc68d9555a491642ea791e62 -Author: Xan Lopez -Date: Sun Jan 1 18:00:51 2012 +0100 - - Remove EphyHomeAction, it's unused - - src/Makefile.am | 2 - - src/ephy-home-action.c | 283 ------------------------------------------------- - src/ephy-home-action.h | 55 ---------- - src/ephy-window.c | 1 - - 4 files changed, 341 deletions(-) - -commit ee242d6d63a2ca592e36db3f7c90beaed84663c2 -Author: Xan Lopez -Date: Sun Jan 1 17:41:44 2012 +0100 - - Remove EphyGoAction, it's unused - - doc/reference/Makefile.am | 1 - - po/POTFILES.in | 1 - - src/Makefile.am | 2 - - src/ephy-go-action.c | 100 ---------------------------------------------- - src/ephy-go-action.h | 51 ----------------------- - src/ephy-window.c | 1 - - 6 files changed, 156 deletions(-) - -commit d5b4f4ba1d31e368e23ddd77774e285a13908622 -Author: Xan Lopez -Date: Sun Jan 1 00:09:35 2012 +0100 - - Fake middle clicks without gtk_button_{press,release}, which are deprecated - - Factor the logic that fakes clicks from a middle click in - EphyMiddleClick(Tool)Button by forwarding a left click to GTK+ when we - receive a middle click. Since ephy_gui_is_middle_click stops working - in this case, add the minimal logic in EphyLinkAction to make it work - again (basically, cache the button that activated the action inside - the action itself). - - The EphyMiddleClickable(Tool)Button classes were written by Alexandre - Mazari. - - https://bugzilla.gnome.org/show_bug.cgi?id=628364 - - lib/widgets/Makefile.am | 4 ++ - lib/widgets/ephy-middle-clickable-button.c | 68 +++++++++++++++++++++++++ - lib/widgets/ephy-middle-clickable-button.h | 56 ++++++++++++++++++++ - lib/widgets/ephy-middle-clickable-tool-button.c | 46 +++++++++++++++++ - lib/widgets/ephy-middle-clickable-tool-button.h | 55 ++++++++++++++++++++ - src/ephy-link-action.c | 63 ++++++++++++----------- - src/ephy-link-action.h | 6 ++- - src/ephy-navigation-action.c | 3 +- - src/ephy-navigation-history-action.c | 10 +++- - 9 files changed, 278 insertions(+), 33 deletions(-) - -commit 10c1b6a7194f8dfc7c7cca278cfb6444255caed2 -Author: Praveen Illa -Date: Sun Jan 1 10:38:38 2012 +0530 - - Updated Telugu Translation - - po/te.po | 1493 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 700 insertions(+), 793 deletions(-) - -commit 1dc0d4f51522b84fbcb31a80d5f72dd8ccdcfeee -Author: Praveen Illa -Date: Sun Jan 1 10:35:36 2012 +0530 - - Updated Telugu Translation - - po/te.po | 738 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 351 insertions(+), 387 deletions(-) - -commit abf18eb5c2797c2e44eaa3247fa9af55c3feee93 -Author: Xan Lopez -Date: Sat Dec 31 18:29:31 2011 +0100 - - ephy-link-action: we don't have menu tool buttons that need to react to middle click anymore - - src/ephy-link-action.c | 18 ++---------------- - 1 file changed, 2 insertions(+), 16 deletions(-) - -commit 1f86dd5ea12eda495e6a7631ec0a01af0d50a8d7 -Author: Xan Lopez -Date: Sat Dec 31 18:27:12 2011 +0100 - - ephy-dnd: reorder includes - - lib/ephy-dnd.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1663b08f97d65e6ddff0d973ecaba8dedd483677 -Author: Xan Lopez -Date: Sat Dec 31 18:18:14 2011 +0100 - - ephy-gui: reorder includes - - lib/ephy-gui.c | 10 ++++------ - 1 file changed, 4 insertions(+), 6 deletions(-) - -commit df47810713fc8d292fce7ed2aacbc14bd221a378 -Author: Xan Lopez -Date: Sat Dec 31 18:13:43 2011 +0100 - - ephy-gui: remove unused method - - lib/ephy-gui.c | 83 ---------------------------------------------------------- - lib/ephy-gui.h | 6 ----- - 2 files changed, 89 deletions(-) - -commit ca4ca66ad246d8554d8fe97ee4bb64c055ce5b33 -Author: Xan Lopez -Date: Sat Dec 31 18:10:53 2011 +0100 - - ephy-gui: remove long gone method declaration - - lib/ephy-gui.h | 3 --- - 1 file changed, 3 deletions(-) - -commit df732dc9afe00ca4dea2a3c39fb852e1ee6846ca -Author: Xan Lopez -Date: Sat Dec 31 18:10:02 2011 +0100 - - ephy-session: use GTK's method to get the content area - - Now we can remove our internal implementation. - - lib/ephy-gui.c | 23 ----------------------- - lib/ephy-gui.h | 2 -- - src/ephy-session.c | 2 +- - 3 files changed, 1 insertion(+), 26 deletions(-) - -commit 6da78ee8f5195463eefca28234efa028320b8982 -Author: Muhammet Kara -Date: Sat Dec 31 16:46:15 2011 +0200 - - [l10n]Updated Turkish translation - - po/tr.po | 1270 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 598 insertions(+), 672 deletions(-) - -commit d37c1046ed955f2405065083e02b6a28fad9f925 -Author: Xan Lopez -Date: Fri Dec 30 21:56:40 2011 +0100 - - ephy-combined-stop-reload-action: add type checks - - This is a public function after all. - - src/ephy-combined-stop-reload-action.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit c46fdcb815a5a50c248a825e59f9456e2be6c140 -Author: Xan Lopez -Date: Fri Dec 30 21:42:13 2011 +0100 - - ephy-combined-stop-reload-action: make sure we always set the initial state - - Since we were only checking the loading status, and it's FALSE by - default, the action would be empty until it was set to loading = TRUE - at least once. - - src/ephy-combined-stop-reload-action.c | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -commit da6fe79eb72e076b5accd13af7654fe9ffa5516c -Author: Xan Lopez -Date: Fri Dec 30 21:31:21 2011 +0100 - - ephy-window: set statusbar cid on notebook's page-added - - In some cases tabs can be added to the window without going through - the EmbedContainer add method (for instance, with DnD of tabs between - windows). Being that the case, set the CID for the statusbar on - notebook's page-added handler, which is always called. - - src/ephy-window.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 360ee676cd5cbf21f03069db5b89f0f7397f371d -Author: Xan Lopez -Date: Wed Dec 28 20:52:02 2011 +0100 - - ephy-notebook: remove unused method - - src/ephy-notebook.c | 13 ------------- - src/ephy-notebook.h | 2 -- - 2 files changed, 15 deletions(-) - -commit 55ec23e44708d5885f08a118d062c96d2349a195 -Author: Yaron Shahrabani -Date: Fri Dec 30 11:10:31 2011 +0200 - - Updated Hebrew translation. - - po/he.po | 1177 ++++++++++++++++++++++++++------------------------------------ - 1 file changed, 483 insertions(+), 694 deletions(-) - -commit 009f8e62aef91f42197a0bfdb7d53f19c2b5a175 -Author: Xan Lopez -Date: Wed Dec 21 14:29:33 2011 +0100 - - ephy-location-action: reorder includes - - src/ephy-location-action.c | 9 ++++----- - 1 file changed, 4 insertions(+), 5 deletions(-) - -commit a43452496ea227048c24a822d42b879b452d6d8e -Author: Kjartan Maraas -Date: Wed Dec 21 22:52:17 2011 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 920 ++++++++++++++++++++++++++------------------------------------- - 1 file changed, 385 insertions(+), 535 deletions(-) - -commit 90dc93ce73d891a7ddfa85f8236143f64d61a3b3 -Author: Diego Escalante Urrelo -Date: Tue Oct 11 21:53:04 2011 -0500 - - e-download-widget: update icon every 10% - - In some cases trying to get the content-type of a download right at the - start of the transfer won't give us useful information. - - To handle this case we query for the content-type and a proper icon - every 10%, hoping that GIO/Soup will make a smarter guess. This is an - arbitrary number that hopes to work with most cases. - - Bug #662059 - - lib/widgets/ephy-download-widget.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 00c82e603752cd1a8a51b929b44ef62ee26073f1 -Author: Diego Escalante Urrelo -Date: Tue Oct 11 21:51:23 2011 -0500 - - e-download-widget: use GIcon instead of GdkPixbuf - - GtkImage works fine with GIcon, this saves us some lines of code and - allocating a GdkPixbuf. - - Bug #662059 - - lib/widgets/ephy-download-widget.c | 24 +++++------------------- - 1 file changed, 5 insertions(+), 19 deletions(-) - -commit 89c1e042193df2a76eb9aecb2c6b5b25e6e6e1a2 -Author: Diego Escalante Urrelo -Date: Mon Oct 10 19:46:17 2011 -0500 - - e-download: add ephy_download_get_content_type - - This new API gets the content-type of a download using GIO, or Soup if - GIO is still not available for the download. - - GIO is our first option since its local guesses are more reliable. Soup - can be cheated by servers or confused by still too incomplete downloads. - - Bug #662059 - - embed/ephy-download.c | 50 ++++++++++++++++++++++++++++++++++++-- - embed/ephy-download.h | 2 +- - lib/widgets/ephy-download-widget.c | 14 ++++------- - 3 files changed, 54 insertions(+), 12 deletions(-) - -commit 05f455ac484e75dd8596425276ccf190acfc1578 -Author: Xan Lopez -Date: Tue Dec 20 15:40:36 2011 +0100 - - schema: remove toolbar editing schema - - data/org.gnome.epiphany.gschema.xml.in | 3 --- - 1 file changed, 3 deletions(-) - -commit 23b15c86cf72c352145033cbbca6110ea8d4d6b9 -Author: Xan Lopez -Date: Tue Dec 20 15:39:58 2011 +0100 - - ephy-embed-prefs: reorder includes - - embed/ephy-embed-prefs.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 8b352f8b83a264c60f810a268c92dd4bf687f85e -Author: Xan Lopez -Date: Tue Dec 20 15:34:04 2011 +0100 - - Remove option to hide toolbars - - We don't want this either for 3.4, remove it. - - data/ui/epiphany-ui.xml | 9 ------- - src/ephy-lockdown.c | 5 ---- - src/ephy-window.c | 72 ------------------------------------------------- - 3 files changed, 86 deletions(-) - -commit 7e8b3175b44e3cfd5444e9616567821d5835d909 -Author: Xan Lopez -Date: Tue Dec 20 15:29:12 2011 +0100 - - Remove the "Hide menubar" option - - The menubar will be gone for 3.4, so this will be useless. - - data/ui/epiphany-ui.xml | 2 -- - src/ephy-window.c | 21 --------------------- - 2 files changed, 23 deletions(-) - -commit 9ccc3fb7f66191a4131f9b150304b3c43a3ecdda -Author: Xan Lopez -Date: Tue Dec 20 15:17:22 2011 +0100 - - Remove NavigationUp - - It's not used anymore. - - src/Makefile.am | 2 -- - src/ephy-lockdown.c | 1 - - src/ephy-navigation-up-action.c | 78 ----------------------------------------- - src/ephy-navigation-up-action.h | 57 ------------------------------ - src/ephy-window.c | 22 ------------ - 5 files changed, 160 deletions(-) - -commit 463d7b377543077540bdcdc27524361dacf29e6d -Author: Xan Lopez -Date: Tue Dec 20 15:16:10 2011 +0100 - - Use symbolic icons in the toolbar - - src/ephy-combined-stop-reload-action.c | 6 +++--- - src/ephy-window.c | 5 ++--- - 2 files changed, 5 insertions(+), 6 deletions(-) - -commit 57fc83935f45f10bc677f0cecda83b13e50c916c -Author: Xan Lopez -Date: Tue Dec 20 12:34:17 2011 +0100 - - ephy-combined-stop-reload-action: include fixes - - src/ephy-combined-stop-reload-action.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 556463e2650c0125457d2830e70ce215f1701c27 -Author: Daniel Mustieles -Date: Tue Dec 20 13:15:00 2011 +0100 - - Updated Spanish translation - - po/es.po | 1247 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 589 insertions(+), 658 deletions(-) - -commit 279dc424b86cb489bf09be2271bc5bcfcf9f729c -Author: Xan Lopez -Date: Mon Dec 19 17:47:00 2011 +0100 - - [release] 3.3.3 - - NEWS | 25 +++++++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 26 insertions(+), 1 deletion(-) - -commit d18f19d7dbfd122d85ded01af5590e3b1798ce48 -Author: Piotr Drąg -Date: Mon Dec 19 17:42:27 2011 +0100 - - Updated POTFILES.in - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit b1cd68562f3ceaf17a803f0f9161c28fdc5ba766 -Author: Claudio Saavedra -Date: Thu Dec 15 18:27:35 2011 +0200 - - Combine the Reload and Stop toolbar buttons into one - - 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 - - data/ui/epiphany-ui.xml | 3 +- - src/Makefile.am | 2 + - src/ephy-combined-stop-reload-action.c | 162 +++++++++++++++++++++++++++++++++ - src/ephy-combined-stop-reload-action.h | 61 +++++++++++++ - src/ephy-window.c | 14 +++ - 5 files changed, 240 insertions(+), 2 deletions(-) - -commit 33cb922f3c7135a8f4e696f4637d1a6878b93b62 -Author: Claudio Saavedra -Date: Fri Dec 16 14:39:15 2011 +0200 - - EphyEmbed: do not show the progressbar for about:blank - - Now that we've placed a timeout, about:blank shows an annoying - complete progressbar shortly. We don't need it. - - embed/ephy-embed.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 8fad1a68ef1649601b1cde4fb5830d0e34023aba -Author: Claudio Saavedra -Date: Fri Dec 16 14:38:05 2011 +0200 - - EphyEmbed: Hide the statusbar in a timeout handler - - To allow it being displayed for a short while once it's complete. - - embed/ephy-embed.c | 23 ++++++++++++++++++++++- - 1 file changed, 22 insertions(+), 1 deletion(-) - -commit b0772af83253244ab94f8842d35ea3bda830bd27 -Author: Claudio Saavedra -Date: Thu Dec 15 20:23:27 2011 +0200 - - EphyEmbed: reset the alignment of the statusbar when hidden - - So that it shows to the left by default. The double get_parent() - is ugly and we should probably hide the implementation details - of the statusbar in a separate class. - - embed/ephy-embed.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 7754542318967d984b563975110a5c3b7873db2e -Author: Xan Lopez -Date: Thu Dec 15 01:07:27 2011 +0100 - - ephy-web-view: plug leak - - ==16675== 83 (64 direct, 19 indirect) bytes in 1 blocks are definitely lost in loss record 10,060 of 13,509 - ==16675== at 0x4A074CD: malloc (vg_replace_malloc.c:236) - ==16675== by 0x70C6F17: standard_malloc (gmem.c:85) - ==16675== by 0x70C6FA0: g_malloc (gmem.c:159) - ==16675== by 0x70DE86C: g_slice_alloc (gslice.c:1003) - ==16675== by 0x70DE8AB: g_slice_alloc0 (gslice.c:1029) - ==16675== by 0x6E2873D: soup_uri_new_with_base (soup-uri.c:177) - ==16675== by 0x6E29468: soup_uri_new (soup-uri.c:398) - ==16675== by 0x47D70F: load_status_cb (ephy-web-view.c:1906) - - embed/ephy-web-view.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 15a693dd485ebdf6098387b4729174fab2055c99 -Author: Xan Lopez -Date: Thu Dec 15 00:17:49 2011 +0100 - - ephy-session: do not store "ephy-about" URIs - - Store them as "about:" instead, which is the proper kind for loading. - - https://bugzilla.gnome.org/show_bug.cgi?id=666206 - - src/ephy-session.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 505632ebe9d4fc2e7aeea56c84928bc99ac6e956 -Author: Xan Lopez -Date: Thu Dec 15 00:07:26 2011 +0100 - - ephy-session: reorder includes - - src/ephy-session.c | 11 ++++------- - 1 file changed, 4 insertions(+), 7 deletions(-) - -commit 073198241b457925f4d2cc26787f0023aaa0a42c -Author: Xan Lopez -Date: Thu Dec 15 00:04:24 2011 +0100 - - about.css: make memory table a bit wider - - Otherwise big memory usage numbers are easily cut off. - - data/pages/about.css | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 24708366757a5c2b5c0696d3000b58a1401ff383 -Author: Xan Lopez -Date: Wed Dec 14 23:23:31 2011 +0100 - - window-commands: reorder includes - - src/window-commands.c | 42 +++++++++++++++++++++--------------------- - 1 file changed, 21 insertions(+), 21 deletions(-) - -commit c543977b4083498f1226376d3a826e146a13b298 -Author: Xan Lopez -Date: Wed Dec 14 23:20:01 2011 +0100 - - ephy-notebook: reorder includes - - src/ephy-notebook.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit 9891c072a2cd3bc99a788bcdc2f278ce47989786 -Author: Kjartan Maraas -Date: Wed Dec 14 23:14:09 2011 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 1197 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 564 insertions(+), 633 deletions(-) - -commit 6cda3809f6fdfb4bb6044543a221eb0c98d187f2 -Author: Xan Lopez -Date: Wed Dec 14 23:11:23 2011 +0100 - - ephy-shell: correct bogus logic in warning message - - We were warning in way too many more cases than intended. - - src/ephy-shell.c | 16 +++++++++------- - 1 file changed, 9 insertions(+), 7 deletions(-) - -commit 87e1c9f28e0ce26b2cf04772bdcba94239fac96e -Author: Xan Lopez -Date: Wed Dec 14 22:30:40 2011 +0100 - - ephy-topic-action: another tiny leftover - - src/bookmarks/ephy-topic-action.c | 1 - - 1 file changed, 1 deletion(-) - -commit aaa9b65277ae5afd60da4af29acf2034eba4c81a -Author: Xan Lopez -Date: Wed Dec 14 22:26:43 2011 +0100 - - ephy-bookmark-action: kill unused code related to toolbar items - - src/bookmarks/ephy-bookmark-action.c | 404 ++--------------------------------- - 1 file changed, 19 insertions(+), 385 deletions(-) - -commit f61d7dfbcbfbfbc6b4ff4448333b72f0189a8f0c -Author: Xan Lopez -Date: Wed Dec 14 22:20:22 2011 +0100 - - ephy-topic-action: kill unused code related to toolbar items - - src/bookmarks/ephy-topic-action.c | 230 +------------------------------------- - 1 file changed, 2 insertions(+), 228 deletions(-) - -commit 95c05041ab35d2ff4b13b7f86140c6d2665c9582 -Author: Xan Lopez -Date: Wed Dec 14 22:02:39 2011 +0100 - - ephy-link-action: small cleanups - - src/ephy-link-action.c | 25 ++++++++++++------------- - 1 file changed, 12 insertions(+), 13 deletions(-) - -commit 29d0621fbce678f035eb4fbe1c03db7cd73a9e2d -Author: Xan Lopez -Date: Wed Dec 14 21:57:01 2011 +0100 - - epiphany.types: remove more obsolete stuff - - doc/reference/epiphany.types | 2 -- - 1 file changed, 2 deletions(-) - -commit c218a84b8152ec27d33a7bedcc55ad856fc9a1a3 -Author: Xan Lopez -Date: Wed Dec 14 21:54:19 2011 +0100 - - Remove traces of EphyZoomControl - - doc/reference/epiphany-docs.sgml | 1 - - doc/reference/epiphany.types | 2 -- - doc/reference/tmpl/ephy-zoom-control.sgml | 58 ------------------------------- - 3 files changed, 61 deletions(-) - -commit e05bf02b0d642e5a9b239cd87fef986b0af336a2 -Author: Xan Lopez -Date: Wed Dec 14 21:52:33 2011 +0100 - - POTFILES.in: update - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit 295a4214cdaf10889d26a1d6a3ab8d5319295a5c -Author: Xan Lopez -Date: Wed Dec 14 21:52:18 2011 +0100 - - data/ui/Makefile.am: fix typo - - data/ui/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a9397985aaf2dd1f4279b7b355de0c14f628f814 -Author: Xan Lopez -Date: Wed Dec 14 21:45:43 2011 +0100 - - ephy-zoom-control: remove, there are no zoom toolbar items anymore - - lib/widgets/Makefile.am | 4 +- - lib/widgets/ephy-zoom-action.c | 44 +------ - lib/widgets/ephy-zoom-control.c | 265 ---------------------------------------- - lib/widgets/ephy-zoom-control.h | 66 ---------- - tests/Makefile.am | 6 +- - tests/ephy-zoom-control.c | 78 ------------ - 6 files changed, 5 insertions(+), 458 deletions(-) - -commit f60cd7fc43d25855cafaab84e655e0f2b99c95ee -Author: Xan Lopez -Date: Wed Dec 14 21:24:21 2011 +0100 - - Move GtkBuilder files to data/ui - - There's not much point in having two UI files (glade/ and ui/), and - besides the files were not actually in glade format anymore. - - configure.ac | 1 - - data/Makefile.am | 2 +- - data/glade/Makefile.am | 10 - - data/glade/certificate-dialogs.ui | 865 ------------------------ - data/glade/epiphany.ui | 667 ------------------ - data/glade/form-signing-dialog.ui | 200 ------ - data/glade/prefs-dialog.ui | 1352 ------------------------------------- - data/glade/print.ui | 363 ---------- - data/ui/Makefile.am | 11 +- - data/ui/certificate-dialogs.ui | 865 ++++++++++++++++++++++++ - data/ui/epiphany.ui | 667 ++++++++++++++++++ - data/ui/form-signing-dialog.ui | 200 ++++++ - data/ui/prefs-dialog.ui | 1352 +++++++++++++++++++++++++++++++++++++ - data/ui/print.ui | 363 ++++++++++ - po/POTFILES.in | 10 +- - 15 files changed, 3463 insertions(+), 3465 deletions(-) - -commit 049e9612e7676c87ac0f011ec56340614e513cab -Author: Xan Lopez -Date: Wed Dec 14 18:24:39 2011 +0100 - - ephy-related-action: remove, it's unused - - po/POTFILES.in | 1 - - src/bookmarks/Makefile.am | 2 - - src/bookmarks/ephy-bookmarks-ui.c | 1 - - src/bookmarks/ephy-related-action.c | 162 ------------------------------------ - src/bookmarks/ephy-related-action.h | 61 -------------- - 5 files changed, 227 deletions(-) - -commit 44d48795f34bd60cb8f8146e8cc3ed62c893d3ac -Author: Xan Lopez -Date: Wed Dec 14 18:05:55 2011 +0100 - - epiphany-bookmark-editor-ui.xml: ShowOnToolbar was nuked - - data/ui/epiphany-bookmark-editor-ui.xml | 4 ---- - 1 file changed, 4 deletions(-) - -commit 0d6d3ad4469d5fb7ff14d617aace6f6a41b357ba -Author: Xan Lopez -Date: Wed Dec 14 18:02:14 2011 +0100 - - POTFILES.in: update - - po/POTFILES.in | 2 -- - 1 file changed, 2 deletions(-) - -commit 3295288a7292a74d14c6a5a20e41e2afe010f34e -Author: Xan Lopez -Date: Wed Dec 14 18:01:14 2011 +0100 - - Remove last traces of the EggToolbar code - - lib/egg/Makefile.am | 6 - - lib/egg/egg-editable-toolbar.c | 1932 ------------------------------------- - lib/egg/egg-editable-toolbar.h | 95 -- - lib/egg/egg-toolbar-editor.c | 677 ------------- - lib/egg/egg-toolbar-editor.h | 63 -- - lib/egg/egg-toolbars-model.c | 1001 ------------------- - lib/egg/egg-toolbars-model.h | 190 ---- - lib/widgets/ephy-location-entry.c | 27 - - po/POTFILES.in | 4 - - src/Makefile.am | 31 +- - src/bookmarks/ephy-bookmarks-ui.h | 3 +- - src/ephy-shell.c | 60 -- - src/ephy-shell.h | 3 - - src/ephy-toolbars-model.c | 292 ------ - src/ephy-toolbars-model.h | 65 -- - 15 files changed, 4 insertions(+), 4445 deletions(-) - -commit 2db47fb32732e9613e5338d8c165ed5f771e819a -Author: Xan Lopez -Date: Wed Dec 14 17:48:09 2011 +0100 - - ephy-bookmark-action: remove unused includes - - src/bookmarks/ephy-bookmark-action.c | 12 +++++------- - 1 file changed, 5 insertions(+), 7 deletions(-) - -commit 9fa3bd65a81f430b2c7ab8446f1eccb773d8845a -Author: Xan Lopez -Date: Wed Dec 14 17:43:42 2011 +0100 - - Remove the topic/bookmark factory actions - - They are unused now. - - src/bookmarks/Makefile.am | 4 - - src/bookmarks/ephy-bookmark-factory-action.c | 303 --------------------------- - src/bookmarks/ephy-bookmark-factory-action.h | 56 ----- - src/bookmarks/ephy-bookmarks-ui.c | 2 - - src/bookmarks/ephy-topic-factory-action.c | 302 -------------------------- - src/bookmarks/ephy-topic-factory-action.h | 56 ----- - 6 files changed, 723 deletions(-) - -commit 2b63143ef7d712e62347536b363a16ad4953ad0c -Author: Xan Lopez -Date: Wed Dec 14 17:37:54 2011 +0100 - - Remove code to support bookmark/topic toolbar - - src/bookmarks/ephy-bookmarks-editor.c | 179 ++------------- - src/bookmarks/ephy-bookmarks-ui.c | 397 ++-------------------------------- - src/bookmarks/ephy-bookmarks-ui.h | 4 - - src/ephy-shell.c | 3 - - 4 files changed, 45 insertions(+), 538 deletions(-) - -commit a74877f7f28f105369acef053b339ceefce33c92 -Author: Xan Lopez -Date: Tue Dec 13 17:16:23 2011 +0100 - - Remove ephy_window_get_toolbar - - The only use in window-commands.c is not superfluous. - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-window.sgml | 9 --------- - src/ephy-window.c | 16 ---------------- - src/ephy-window.h | 2 -- - src/window-commands.c | 3 --- - 5 files changed, 31 deletions(-) - -commit c1c74c929c1e773d1f79d1b3bd0cf10bb572f8f9 -Author: Xan Lopez -Date: Tue Dec 13 16:45:10 2011 +0100 - - Remove custom EphyToolbar in favor of a vanilla GtkToolbar - - 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 - - data/ui/Makefile.am | 2 - - data/ui/epiphany-fs-toolbar.xml | 10 - - data/ui/epiphany-toolbar.xml | 36 -- - data/ui/epiphany-ui.xml | 14 +- - po/POTFILES.in | 1 - - src/Makefile.am | 4 - - src/bookmarks/ephy-bookmarks-ui.c | 12 + - src/ephy-lockdown.c | 5 +- - src/ephy-shell.c | 9 +- - src/ephy-toolbar.c | 765 -------------------------------------- - src/ephy-toolbar.h | 106 ------ - src/ephy-window.c | 504 +++++++++++++++++++++---- - src/ephy-window.h | 4 +- - src/window-commands.c | 5 +- - 14 files changed, 467 insertions(+), 1010 deletions(-) - -commit 1ce161d56a3db3c436e5fbf888472c1f864cebb8 -Author: Claudio Saavedra -Date: Wed Dec 14 17:08:40 2011 +0200 - - Some indentation fixes. - - Sorry 'bout that. - - embed/ephy-embed.c | 10 ++++------ - 1 file changed, 4 insertions(+), 6 deletions(-) - -commit 2ea50ae6ef77b6346ccb859448513884510fcadd -Author: Claudio Saavedra -Date: Mon Dec 5 19:05:25 2011 +0100 - - Use an overlay progress bar for the loading progress. - - The theming was done by Lapo Calamandrei. - - https://bugzilla.gnome.org/show_bug.cgi?id=665470 - - data/ui/epiphany.css | 28 +++++++++++++++++++++ - embed/ephy-embed.c | 33 ++++++++++++++++++++++++- - src/ephy-window.c | 70 ---------------------------------------------------- - 3 files changed, 60 insertions(+), 71 deletions(-) - -commit 762a30c569efd36510f7b418a0c11aee84320a6c -Author: Claudio Saavedra -Date: Sun Dec 4 19:27:50 2011 +0100 - - Use a GtkOverlay for the statusbar instead of shipping GeditOverlay - - Instead of escaping the cursor, we align the overlay at the opposite side - of the window. This is consistent with nautilus. - - https://bugzilla.gnome.org/show_bug.cgi?id=653996 - - embed/ephy-embed.c | 37 +- - lib/widgets/Makefile.am | 8 +- - lib/widgets/ephy-overlay-escaping-child.c | 314 ----------------- - lib/widgets/ephy-overlay-escaping-child.h | 56 --- - lib/widgets/gedit-overlay-child.c | 362 -------------------- - lib/widgets/gedit-overlay-child.h | 89 ----- - lib/widgets/gedit-overlay.c | 542 ------------------------------ - lib/widgets/gedit-overlay.h | 70 ---- - 8 files changed, 28 insertions(+), 1450 deletions(-) - -commit b370ee25bcc3c464b57e4c090ce8adc6677f8f96 -Author: Xan Lopez -Date: Sun Dec 11 22:31:44 2011 +0100 - - ephy-shell: add warning message about incorrect usage of ephy_shell_new_tab_full - - src/ephy-shell.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 41b6a04b3e147adebfad65b634f4f54a15328064 -Author: Xan Lopez -Date: Sun Dec 11 22:29:26 2011 +0100 - - ephy-shell: fix weird spacing in LOG messages - - src/ephy-shell.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit d53300503bb6613c00a7124d429aa9250fea74cd -Author: Xan Lopez -Date: Sun Dec 11 22:26:38 2011 +0100 - - ephy-window: append new windows opened as tabs after current tab - - To be consistent with our new default behavior, which is to append new - tabs after their parent. - - src/ephy-window.c | 8 +++++--- - 1 file changed, 5 insertions(+), 3 deletions(-) - -commit 3f14045eff423852cd09b47f18fa57b0475d3b00 -Author: Xan Lopez -Date: Sat Dec 10 19:49:07 2011 +0100 - - ephy-embed: small cleanups - - embed/ephy-embed.c | 8 +++----- - 1 file changed, 3 insertions(+), 5 deletions(-) - -commit f805f696bc61573e1683c5ebfd9a6cd8d3257639 -Author: Xan Lopez -Date: Sat Dec 10 16:59:24 2011 +0100 - - epiphany.css: kill left/right padding in the main toolbar - - 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 - - data/ui/epiphany.css | 5 +++++ - 1 file changed, 5 insertions(+) - -commit a365c1e01f4fc421d7156b862e9c1386d5b6749c -Author: Xan Lopez -Date: Sat Dec 10 16:49:32 2011 +0100 - - ephy-window: remove superfluous headers - - src/ephy-window.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 4159a768981b7033a40714411ff43fc07e3904dc -Author: Xan Lopez -Date: Sat Dec 10 14:04:43 2011 +0100 - - configure.ac: kill ancient spellchecker am define - - configure.ac | 2 -- - 1 file changed, 2 deletions(-) - -commit 8dd71d0199b5b935f78d90525c9719bec25670e6 -Author: Xan Lopez -Date: Sat Dec 10 13:57:28 2011 +0100 - - configure.ac: we don't use gdbus-codegen anymore - - configure.ac | 3 --- - 1 file changed, 3 deletions(-) - -commit 92e9105cd42c298bf0c8b2bf6aca89b6e59f913d -Author: Xan Lopez -Date: Sat Dec 10 13:18:53 2011 +0100 - - configure.ac: we can safely assume GCC 3.4 these days, I think - - configure.ac | 26 +------------------------- - 1 file changed, 1 insertion(+), 25 deletions(-) - -commit 7c8add0f5a81cee4b04c64360102e723c5405f76 -Author: Martin Robinson -Date: Sun Aug 7 01:25:38 2011 +0200 - - preferences: turn on new-windows-in-tabs by default - - It's consistent with what every other browser is doing and with our - future design. - - https://bugzilla.gnome.org/show_bug.cgi?id=656091 - - data/org.gnome.epiphany.gschema.xml.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit dca2b30f867a173453a43eab979c3301058faeda -Author: Yaron Shahrabani -Date: Sat Dec 10 10:47:40 2011 +0200 - - Updated Hebrew translation. - - po/he.po | 718 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 344 insertions(+), 374 deletions(-) - -commit 8bd9df39c44addacd4c8fecb965fe69d2e17cd8b -Author: Xan Lopez -Date: Mon Dec 5 17:20:58 2011 +0100 - - ephy-toolbar: reorder headers - - src/ephy-toolbar.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit 38833990073ddafd2b513f47da380631b1e5467b -Author: Xan Lopez -Date: Mon Dec 5 16:19:38 2011 +0100 - - ephy-window: remove obsolete comment - - src/ephy-window.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 31f4a3cbedf71ade0ed877bdc2f5c3c57826b167 -Author: Xan Lopez -Date: Mon Dec 5 15:58:41 2011 +0100 - - ephy-window: add global bindings for GoHistory and GoLocation - - src/ephy-window.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit c4a16be389b7ceb17745e510d4c3ef57abcc5f9d -Author: Xan Lopez -Date: Mon Dec 5 15:28:41 2011 +0100 - - Remove "Go" menu - - Last of the toplevel menus without equivalent in the new design. - - data/ui/epiphany-ui.xml | 12 ------------ - src/ephy-window.c | 1 - - 2 files changed, 13 deletions(-) - -commit d32a5ddaeb8e21c1e1b04584b6a6513aea2af48f -Author: Xan Lopez -Date: Mon Dec 5 15:22:56 2011 +0100 - - configure.ac: remove old configure output - - configure.ac | 1 - - 1 file changed, 1 deletion(-) - -commit b6256fd0e48a3ec6769662ddfd1cadf4cf0b8d99 -Author: Xan Lopez -Date: Mon Dec 5 15:17:46 2011 +0100 - - Remove last traces of dummy certificate manager - - 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. - - data/ui/epiphany-ui.xml | 1 - - embed/ephy-embed-single.c | 49 ----------------------------------------------- - src/ephy-window.c | 15 --------------- - src/window-commands.c | 8 -------- - src/window-commands.h | 3 --- - 5 files changed, 76 deletions(-) - -commit 142d053dd3d7e6155c8f4891620178474469c42e -Author: Xan Lopez -Date: Mon Dec 5 11:43:00 2011 +0100 - - ephy-window: fix accidentally reversed tab bindings - - src/ephy-window.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit a574b6c7d190aa35dc00a05db382e8ad70cfa363 -Author: Piotr Drąg -Date: Mon Dec 5 01:50:51 2011 +0100 - - Updated POTFILES.in - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit fdf7054db6d84b554b3ea52ed60d065f211765e0 -Author: Xan Lopez -Date: Mon Dec 5 00:21:40 2011 +0100 - - ephy-window: remove the tabs menu - - It is not present in the new design. The Alt+ accelerators are - dying with it, but it will be pretty easy to bring them back if - needed. - - data/ui/epiphany-ui.xml | 14 -- - src/Makefile.am | 2 - - src/ephy-tabs-menu.c | 486 ------------------------------------------------ - src/ephy-tabs-menu.h | 61 ------ - src/ephy-window.c | 73 +------- - 5 files changed, 7 insertions(+), 629 deletions(-) - -commit ebbb1c48197f53b98575b0cb4f6d9fa1e4535abc -Author: Xan Lopez -Date: Sun Dec 4 22:28:50 2011 +0100 - - Remove history dropdown menus from action buttons - - They are not commonly used and are not present in the new design, so - we can get rid of them. - - src/ephy-navigation-action.c | 138 +----------------------- - src/ephy-navigation-action.h | 7 -- - src/ephy-navigation-history-action.c | 202 ----------------------------------- - src/ephy-navigation-up-action.c | 73 ------------- - src/ephy-toolbar.c | 12 --- - 5 files changed, 2 insertions(+), 430 deletions(-) - -commit d5216f2d4cebd894c79d124d583304fd044fa96a -Author: Xan Lopez -Date: Sat Dec 3 17:21:06 2011 +0100 - - prefs-dialog: fix compiler warnings - - src/prefs-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bea26fc30ac9ff3def2d18d237509a18b3829e27 -Author: Xan Lopez -Date: Sat Dec 3 17:08:37 2011 +0100 - - Remove homepage preference from GSettings - - 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 - - data/org.gnome.epiphany.gschema.xml.in | 5 ----- - embed/ephy-web-view.c | 21 ++++----------------- - embed/ephy-web-view.h | 2 +- - lib/ephy-prefs.h | 1 - - src/ephy-home-action.c | 7 +------ - src/ephy-shell.c | 3 ++- - 6 files changed, 8 insertions(+), 31 deletions(-) - -commit 0caf7b0f44349cbfd072cb49dbdc609de317a971 -Author: Xan Lopez -Date: Sat Dec 3 16:55:49 2011 +0100 - - Remove UI to define a homepage - - Later we can remove all the internals to implement the feature. - - https://bugzilla.gnome.org/show_bug.cgi?id=665469 - - data/glade/prefs-dialog.ui | 156 +++++++-------------------------------------- - src/prefs-dialog.c | 75 ++++------------------ - 2 files changed, 33 insertions(+), 198 deletions(-) - -commit 6efd39db328bd1f7e568db119a6ff12844a51160 -Author: Piotr Drąg -Date: Sat Dec 3 17:04:46 2011 +0100 - - Updated POTFILES.in - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit aec912b5fc328171d989963421a6ceed0d8c6f03 -Author: Xan Lopez -Date: Thu Nov 17 16:57:42 2011 +0100 - - Remove toolbar editor - - The UI is gone, but the infrastructure still persists - (EggToolbarModel, etc). Further cleanups are possible. - - https://bugzilla.gnome.org/show_bug.cgi?id=664260 - - data/ui/epiphany-ui.xml | 4 - - lib/ephy-prefs.h | 1 - - src/Makefile.am | 2 - - src/ephy-lockdown.c | 13 -- - src/ephy-toolbar-editor.c | 371 ---------------------------------------------- - src/ephy-toolbar-editor.h | 63 -------- - src/ephy-window.c | 17 --- - src/window-commands.c | 8 - - 8 files changed, 479 deletions(-) - -commit 77ec3ecef9ac6d3d298b6ddd2f38bfebe3da7174 -Author: Xan Lopez -Date: Thu Dec 1 11:01:36 2011 +0100 - - ephy-window: small cleanups, mostly code reorg. - - src/ephy-window.c | 266 ++++++++++++++++++++++++++---------------------------- - 1 file changed, 129 insertions(+), 137 deletions(-) - -commit 9a6c740d24b1d4a7deb846d0a1548c5419e0080e -Author: Tom Tryfonidis -Date: Tue Nov 29 22:14:47 2011 +0200 - - Redesign of about:pages - - 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 - - data/pages/about.css | 105 ++++++++++++++++++++++++++------------------- - embed/ephy-request-about.c | 3 +- - 2 files changed, 62 insertions(+), 46 deletions(-) - -commit 901c1cc5fa13111f5593ed6f3ab14ea3654b3fdd -Author: Saleem Abdulrasool -Date: Tue Nov 29 19:19:59 2011 -0800 - - web view: fix icon names - - The GTK+ 3.0 themes have a different name for the dialog icons - (dialog-{information,error}) rather than the stock GTK+ icon names - (gtk-dialog-{info,error}). Use the proper names. - - Additionally, ensure that icon_info is not NULL when performing the lookup, - which will fail. This part of the change is to avoid a possible crash/segfault - caused by the lookup without a valid icon_info. - - Bug: 665170 - Signed-Off-By: Saleem Abdulrasool - - embed/ephy-web-view.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 819cc7dea0676deb2dc6b422683780ab2a1ed8c0 -Author: Claudio Saavedra -Date: Wed Nov 30 20:04:36 2011 +0100 - - ephy-request-about: fix a potential crasher if the css file is missing - - And prevent the corresponding GError from leaking. - - embed/ephy-request-about.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 3dca36516253cf3332627861efda6ec4f6d79a8c -Author: Claudio Saavedra -Date: Wed Nov 30 18:42:01 2011 +0100 - - webapps: ensure the webapps are shown in the shell - - Make sure the applications directory in XDG_DATA_HOME exists - before creating a symlink for the application desktop file. - - https://bugzilla.gnome.org/show_bug.cgi?id=664751 - - embed/ephy-web-app-utils.c | 20 ++++++++++++++------ - 1 file changed, 14 insertions(+), 6 deletions(-) - -commit 4bd76258dfb086976c7daf1d854aab852c422c85 -Author: Xan Lopez -Date: Wed Nov 30 12:55:27 2011 +0100 - - ephy-embed: disconnect statusbar timeout on dispose - - Otherwise we'll crash when we close windows/tabs too fast. - - embed/ephy-embed.c | 19 ++++++++++++------- - 1 file changed, 12 insertions(+), 7 deletions(-) - -commit 1455bc2e97d8d1d2fe071b7fba99abb3abefb6e6 -Author: Dan Winship -Date: Wed Nov 30 10:20:40 2011 +0100 - - Use SoupSession:ssl-use-system-ca-file property - - Rather than copying glib-networking's logic for finding the system - trusted CA file and then telling libsoup to use it, just use the new - ssl-use-system-ca-file property. - - https://bugzilla.gnome.org/show_bug.cgi?id=633109 - - configure.ac | 35 +---------------------------------- - embed/ephy-embed-single.c | 16 ++++------------ - embed/ephy-web-view.c | 4 ---- - 3 files changed, 5 insertions(+), 50 deletions(-) - -commit d1d329e512877f34d2109e65a267c883e0c87b06 -Author: Martin Robinson -Date: Sun Nov 27 11:34:07 2011 +0100 - - Delay hiding the statusbar overlay when the status text changes. - - Delaying the statusbar hide prevents the overlay from flickering - when moving the cursor over a series of links. - - embed/ephy-embed.c | 25 +++++++++++++++++++++++-- - 1 file changed, 23 insertions(+), 2 deletions(-) - -commit af225d4e73650098b5e2b860ba3747ee421ea52e -Author: Priit Laes -Date: Sat Nov 26 15:01:45 2011 +0200 - - [l10n] Updated Estonian translation - - po/et.po | 386 +++++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 250 insertions(+), 136 deletions(-) - -commit 3122a059ab67b2460ef6679ea4992351c0415eda -Author: Matej Urbančič -Date: Fri Nov 25 21:22:27 2011 +0100 - - Updated Slovenian translation - - po/sl.po | 59 +++++++++++++++++++++++++++++------------------------------ - 1 file changed, 29 insertions(+), 30 deletions(-) - -commit dafa348a604c8736b3b33848865cf84ce799cbdd -Author: Xan Lopez -Date: Wed Nov 23 18:12:40 2011 +0100 - - configure.ac: require glib 2.31.2 for GNetworkMonitor - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 13592e1c5b788c8739ff251d98aa8f6ae8e6ad96 -Author: Claudio Saavedra -Date: Wed Nov 23 12:44:51 2011 +0100 - - Don't ever show tabs when in application mode - - https://bugzilla.gnome.org/show_bug.cgi?id=663668 - - src/ephy-notebook.c | 13 ++++++++----- - 1 file changed, 8 insertions(+), 5 deletions(-) - -commit 842a3b2b7f1c73b72ab847f2d99dbc9c74fa4e08 -Author: Claudio Saavedra -Date: Wed Nov 23 10:56:46 2011 +0100 - - Properties dialog layout fixes - - 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 - - data/glade/prefs-dialog.ui | 190 ++++++++++++++++++++++----------------------- - 1 file changed, 91 insertions(+), 99 deletions(-) - -commit 2a99be9a3c2848b5fd3b9c96591963962570bb71 -Author: Xan Lopez -Date: Mon Nov 21 22:45:25 2011 +0100 - - [release] 3.3.2 - - NEWS | 12 ++++++++++++ - configure.ac | 2 +- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit 1ea903e6e4f0079501486409b16887edfc8fd0b0 -Author: Claudio Saavedra -Date: Mon Nov 21 19:31:51 2011 +0100 - - Remove some deprecated GTK+ calls - - https://bugzilla.gnome.org/show_bug.cgi?id=664120 - - lib/widgets/ephy-node-view.c | 10 +++++++--- - lib/widgets/ephy-overlay-escaping-child.c | 4 +++- - src/ephy-notebook.c | 11 +++++++---- - 3 files changed, 17 insertions(+), 8 deletions(-) - -commit 1e8f2bd6fdf325a412343b475d89d7afc0ba394b -Author: Xan Lopez -Date: Tue Nov 15 17:06:16 2011 +0100 - - Use GNetworkMonitor to monitor network status - - We can now get rid of the NetworkManager custom code. - - https://bugzilla.gnome.org/show_bug.cgi?id=664096 - - data/Makefile.am | 1 - - data/ephy-network-manager.xml | 9 ------- - lib/Makefile.am | 1 - - lib/ephy-network-manager-defines.h | 54 -------------------------------------- - src/Makefile.am | 15 ----------- - src/ephy-shell.c | 37 ++++++++++---------------- - 6 files changed, 14 insertions(+), 103 deletions(-) - -commit 4b9f2d366db4eba0449f032f821d1ecc6345e2c3 -Author: Xan Lopez -Date: Tue Nov 15 12:25:57 2011 +0100 - - eggs-toolbar-mode: remove unused variable - - lib/egg/egg-toolbars-model.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit aa145489d1e24d7ecfba8512ace4b7bb9c27fee5 -Author: Kjartan Maraas -Date: Sat Nov 12 12:07:58 2011 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 55 +++++++++++++++++++++++++------------------------------ - 1 file changed, 25 insertions(+), 30 deletions(-) - -commit b867105b1f4e0d60496266c9dc80d4f2926b78f7 -Author: Xan Lopez -Date: Sun Nov 6 14:18:47 2011 +0100 - - Remove g_thread_init calls - - They are not needed anymore. - - src/ephy-main.c | 3 --- - tests/ephy-download.c | 1 - - tests/ephy-embed-single.c | 1 - - 3 files changed, 5 deletions(-) - -commit 54f4c695ea937cbd16a2bbad1d0a67b33fc3d87a -Author: Fran Diéguez -Date: Fri Nov 4 13:31:19 2011 +0100 - - Updated Galician translations - - po/gl.po | 178 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 91 insertions(+), 87 deletions(-) - -commit e3edc4c17a8e9b5122092f20f2e73485744d775d -Author: Muhammet Kara -Date: Thu Nov 3 21:14:48 2011 +0200 - - Updated Turkish translation - - po/tr.po | 57 +++++++++++++++++++++++++++++---------------------------- - 1 file changed, 29 insertions(+), 28 deletions(-) - -commit d81547a5e47b9a2e36b7a5c60ed9cfdb77a5829e -Author: Xan Lopez -Date: Thu Nov 3 18:24:03 2011 +0100 - - pdm: use a stock button for the "Clear All" action - - 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 - - data/glade/epiphany.ui | 54 ++------------------------------------------------ - 1 file changed, 2 insertions(+), 52 deletions(-) - -commit 4f1cee7fede3899f54776a3d90e1890756cbc266 -Author: Daniel Mustieles -Date: Wed Nov 2 13:54:00 2011 +0100 - - Updated Spanish translation - - po/es.po | 100 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 50 insertions(+), 50 deletions(-) - -commit 4f2df193dc9f8d048b34bf4cec1279a71eb3d783 -Author: Juan A. Suarez Romero -Date: Fri Sep 30 10:01:31 2011 +0000 - - Show Webkit version - - Shows which WebKit version is powering Epiphany. - - src/window-commands.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 0f9f250d9857a78c4e4bd84178d48b371b49c823 -Author: Xan Lopez -Date: Wed Oct 26 20:25:24 2011 +0200 - - [release] 3.3.1 - - NEWS | 10 ++++++++++ - configure.ac | 8 ++++---- - 2 files changed, 14 insertions(+), 4 deletions(-) - -commit 9df11fbf4cf7cbfbe7ebfb4f382997b90cf14c59 -Author: krishnababu k -Date: Tue Oct 25 17:21:50 2011 +0530 - - Newly added Telugu translations - - po/te.po | 58 +++++++++++++++++++++++++++++----------------------------- - 1 file changed, 29 insertions(+), 29 deletions(-) - -commit 0f7184bf237760ea2485e98e0460de83e5858fb4 -Author: krishnababu k -Date: Tue Oct 18 13:14:05 2011 +0530 - - Updated Telugu translations - - po/te.po | 2824 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1324 insertions(+), 1500 deletions(-) - -commit eac9084ea3b4344cc92b6e5c5f7725df3635f44d -Author: Yaron Shahrabani -Date: Sat Oct 22 11:34:19 2011 +0200 - - Updated Hebrew translation. - - po/he.po | 637 ++++++++++++++++++--------------------------------------------- - 1 file changed, 177 insertions(+), 460 deletions(-) - -commit 1ede96322e8e1ab9143f3279e6215870fa862a36 -Author: Matej Urbančič -Date: Fri Oct 21 21:21:17 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 92 +++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 48 insertions(+), 44 deletions(-) - -commit 892b6a016ec6929d8affb4ac61d59fbb827749fd -Author: Nguyễn Thái Ngọc Duy -Date: Wed Oct 19 18:31:34 2011 +1100 - - Updated Vietnamese translation - - po/vi.po | 226 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 99 insertions(+), 127 deletions(-) - -commit f1c141177fba8b59dce70fc640cf1f07352ab26d -Author: Nguyễn Thái Ngọc Duy -Date: Wed Oct 19 18:11:31 2011 +1100 - - po/vi: import from Damned Lies - - po/vi.po | 3215 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1741 insertions(+), 1474 deletions(-) - -commit 59c31579ca27bea9b5488bd708e6e40c10296d12 -Author: Muhammet Kara -Date: Tue Oct 18 20:34:30 2011 +0300 - - Updated Turkish translation - - po/tr.po | 204 +++++++++++++++++++++++++++------------------------------------ - 1 file changed, 88 insertions(+), 116 deletions(-) - -commit 08a75588e61b786f6737d7942fe71e440f4457e3 -Author: Jiro Matsuzawa -Date: Fri Oct 14 10:22:07 2011 +0900 - - Updated Japanese translation - - po/ja.po | 827 +++++++-------------------------------------------------------- - 1 file changed, 85 insertions(+), 742 deletions(-) - -commit 6c1d5051db9b42142d2f36058b019c8a7b04da8e -Author: Kjartan Maraas -Date: Thu Oct 13 15:32:16 2011 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 98 +++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 54 insertions(+), 44 deletions(-) - -commit 8f3dba18cd879a0612a2e0e7b7d596da585a36c3 -Author: Daniel Mustieles -Date: Wed Oct 12 17:28:06 2011 +0200 - - Updated Spanish translation - - po/es.po | 234 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 121 insertions(+), 113 deletions(-) - -commit 9c7b667eec694f9e5eff67263b849791b22992ae -Author: Diego Escalante Urrelo -Date: Sun Oct 9 21:41:32 2011 -0500 - - e-bookmark-properties: port to GtkGrid - - GtkTable is deprecated. - - Bug #661347 - - src/bookmarks/ephy-bookmark-properties.c | 34 ++++++++++++++++++-------------- - 1 file changed, 19 insertions(+), 15 deletions(-) - -commit 03347735a65b75cc0d40ee7ee9c17ee612584544 -Author: Diego Escalante Urrelo -Date: Sun Oct 9 21:14:58 2011 -0500 - - pdm-dialog: port cookie properties to GtkGrid - - Build the Cookie Properties dialog with GtkBuilder instead of handcraft - from the past. - - Bug #661347 - - data/glade/epiphany.ui | 784 ++++++++++++++++++++++++++++++++----------------- - src/pdm-dialog.c | 127 +++----- - 2 files changed, 558 insertions(+), 353 deletions(-) - -commit 14c5b69240de9dcbdbdb6bc7308665beb16231aa -Author: Diego Escalante Urrelo -Date: Sun Oct 9 21:42:06 2011 -0500 - - lib/egg: update from libegg master - - Drop GtkTable usage, sync our changes upstream. - - lib/egg/egg-toolbar-editor.c | 42 +++++++++++++++++++++--------------------- - lib/egg/egg-toolbars-model.c | 5 ++++- - 2 files changed, 25 insertions(+), 22 deletions(-) - -commit 40a217ddb38600445eb8cac0e95f659e68e83c53 -Author: Jiro Matsuzawa -Date: Mon Oct 3 15:12:43 2011 +0900 - - Fixed Bug 660749. Call gtk_label_set_use_markup for the child of manual_button - - src/ephy-encoding-dialog.c | 1 + - 1 file changed, 1 insertion(+) - -commit ec9b714adc32f7a87e7c859f422009143f935467 -Author: Rudolfs Mazurs -Date: Wed Oct 5 00:51:20 2011 +0300 - - Updated Latvian translation. - - po/lv.po | 49 ++++++++++++++++++++++--------------------------- - 1 file changed, 22 insertions(+), 27 deletions(-) - -commit 49d641b2cbcaa47a9812ba80371f10807788aa80 -Author: Kristjan SCHMIDT -Date: Sat Oct 1 18:34:08 2011 +0200 - - Updated Esperanto translation - - po/eo.po | 1516 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 849 insertions(+), 667 deletions(-) - -commit ab96fd445cb6a8b707d60fb87553e4af6cf20dd5 -Author: Funda Wang -Date: Wed Sep 28 02:00:49 2011 +0200 - - fix string format - - embed/ephy-request-about.c | 2 +- - src/ephy-window.c | 4 ++-- - 2 files changed, 3 insertions(+), 3 deletions(-) - -commit b3e49495eade981bfd4685b017483ab4a39cfe99 -Author: Aron Xu -Date: Tue Sep 27 14:08:04 2011 +0000 - - Update Simplified Chinese translation. - - po/zh_CN.po | 1025 +++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 577 insertions(+), 448 deletions(-) - -commit 1cb7fb1109aecedd224d03fda202165adf3423a7 -Author: Ionut Biru -Date: Mon Sep 26 18:12:40 2011 +0000 - - Don't crash when network manager is not available - - https://bugzilla.gnome.org/show_bug.cgi?id=659103 - - Signed-off-by: Ionut Biru - - src/ephy-shell.c | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -commit 76aa514c60e92f69823ee6d1aa3aecec24c3fc8e -Author: Xan Lopez -Date: Tue Sep 27 02:19:04 2011 +0200 - - [release] 3.2.0 - - NEWS | 8 ++++++++ - configure.ac | 10 +++++----- - 2 files changed, 13 insertions(+), 5 deletions(-) - -commit 76ec61b9f9a5919dee4a67e58eb12fa107d2317f -Author: Petr Kovar -Date: Mon Sep 26 15:03:06 2011 +0200 - - Update Czech translation by Lucas Lommer - - po/cs.po | 1010 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 568 insertions(+), 442 deletions(-) - -commit 5b56fe63ebcb58f84b2402faab3d43079152c657 -Author: Carles Ferrando -Date: Mon Sep 26 14:22:54 2011 +0200 - - [l10n]Updated Catalan (Valencian) translation - - po/ca@valencia.po | 1005 +++++++++++++++++++++++++++++------------------------ - 1 file changed, 554 insertions(+), 451 deletions(-) - -commit 5773c1d610554ea715e2067c1d978dd51e4089e0 -Author: Seán de Búrca -Date: Sun Sep 25 17:51:27 2011 -0600 - - Updated Irish translation - - po/ga.po | 2330 ++++++++++++++++++++++++++------------------------------------ - 1 file changed, 972 insertions(+), 1358 deletions(-) - -commit 57bbe9fe6f66844d854aa9b9009e04fabd2c1b9c -Author: Inaki Larranaga Murgoitio -Date: Sat Sep 24 16:40:34 2011 +0200 - - Updated Basque language - - po/eu.po | 1061 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 599 insertions(+), 462 deletions(-) - -commit 3f08818bfb500c851c897964b89244230190aa15 -Author: Changwoo Ryu -Date: Sat Sep 24 07:46:52 2011 +0900 - - Updated Korean translation - - po/ko.po | 2144 ++++++++++++++++---------------------------------------------- - 1 file changed, 546 insertions(+), 1598 deletions(-) - -commit 15fa425eb5cd42f3c6eb5a47fefb8ecd72ad64ce -Author: Daniel Martinez Cucalon -Date: Fri Sep 23 19:15:29 2011 +0200 - - Updated Aragonese translation - - po/an.po | 974 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 537 insertions(+), 437 deletions(-) - -commit 463b8c2002f0d91bdf04ead6ccb50a022c1b1419 -Author: Tommi Vainikainen -Date: Fri Sep 23 15:48:40 2011 +0300 - - .gitignore: Ignore generated POT file (po/*.pot) - - .gitignore | 1 + - 1 file changed, 1 insertion(+) - -commit 53dc77f024bd8fce67551f9871056aa248fd6e44 -Author: Tommi Vainikainen -Date: Fri Sep 23 15:45:46 2011 +0300 - - Updated Finnish translation - - po/fi.po | 712 +++++++++++++++------------------------------------------------ - 1 file changed, 165 insertions(+), 547 deletions(-) - -commit 3d1d0936e6a46dd3b0722d0937dc7eb9dbe371d5 -Author: Sweta Kothari -Date: Fri Sep 23 16:09:24 2011 +0530 - - Updated Gujarati Translations - - po/gu.po | 1461 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 821 insertions(+), 640 deletions(-) - -commit 3976aaee86547274691b8fc9e09e88d5bdf59e64 -Author: Yaron Shahrabani -Date: Fri Sep 23 08:20:41 2011 +0300 - - Updated Hebrew translation. - - po/he.po | 923 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 494 insertions(+), 429 deletions(-) - -commit b023195985be683125abc012efcbca5ed8311d19 -Author: Gil Forcada -Date: Thu Sep 22 20:03:41 2011 +0200 - - [l10n]Updated Catalan translation - - po/ca.po | 1058 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 587 insertions(+), 471 deletions(-) - -commit 42964267f6368acf655e945581caf0e62ec7ae83 -Author: Nilamdyuti Goswami -Date: Thu Sep 22 12:12:41 2011 +0200 - - Update Assamese translation - - po/as.po | 4836 ++++++++++++++++++++++---------------------------------------- - 1 file changed, 1702 insertions(+), 3134 deletions(-) - -commit 34b709490f0c67ebf1718d7a1c39cd27ae301590 -Author: Xan Lopez -Date: Mon Sep 19 12:47:46 2011 +0200 - - [release] 3.1.92 - - NEWS | 12 ++++++++++++ - configure.ac | 4 ++-- - 2 files changed, 14 insertions(+), 2 deletions(-) - -commit 9b73637abab16f002c843665ac9825fead894c50 -Author: Daniel Korostil -Date: Tue Sep 20 23:47:35 2011 +0300 - - Uploaded Ukranian - - po/uk.po | 1011 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 567 insertions(+), 444 deletions(-) - -commit 8781dfa4669e8c3a12a7c084cbb1695510ac551f -Author: Matej Urbančič -Date: Tue Sep 20 13:19:45 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4097662fb5eb952de3c92da627c404684f519dff -Author: Matej Urbančič -Date: Tue Sep 20 13:16:59 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2d4ae65d1a7b3608c6ecf910d77491524e8f3e4e -Author: Matej Urbančič -Date: Tue Sep 20 13:06:17 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 55ce5a13888634e4a3589c6fe1c862db5968e411 -Author: Matej Urbančič -Date: Sat Sep 17 17:55:10 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d0fd655cdb627ba34e4e01a6e31eb5d99e40eb5a -Author: Matej Urbančič -Date: Sat Sep 17 17:48:52 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 922 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 470 insertions(+), 452 deletions(-) - -commit efc9878e61e41e8f50eeb37d3a33430c2893627b -Author: Gabor Kelemen -Date: Tue Sep 20 01:56:36 2011 +0200 - - Updated Hungarian translation - - po/hu.po | 908 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 493 insertions(+), 415 deletions(-) - -commit 19be579ae1e7e7baacfb034ccca51f6dec3bf373 -Author: Theppitak Karoonboonyanan -Date: Mon Sep 19 14:34:43 2011 +0700 - - Updated Thai translation. - - po/th.po | 1475 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 821 insertions(+), 654 deletions(-) - -commit 8be9dfbf89f4b65661942a50b8878718150ab8f4 -Author: Muhammet Kara -Date: Sun Sep 18 22:44:33 2011 +0300 - - Updated Turkish translation - - po/tr.po | 1032 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 567 insertions(+), 465 deletions(-) - -commit bcc2baa3a6114569e2eb4c711029d401ea511b48 -Author: Rudolfs Mazurs -Date: Sun Sep 18 19:20:57 2011 +0300 - - Updated Latvian translation. - - po/lv.po | 133 +++++++++++++++++++++++++-------------------------------------- - 1 file changed, 53 insertions(+), 80 deletions(-) - -commit 413f702b116c7277d241bf961b3bb56789fa1613 -Author: A S Alam -Date: Sun Sep 18 09:57:35 2011 +0530 - - update Punjabi Translation - - po/pa.po | 964 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 528 insertions(+), 436 deletions(-) - -commit 4fa7b24490aee6ce0233d0825c2cf47d667b199c -Author: Xan Lopez -Date: Sat Sep 17 15:27:38 2011 +0200 - - ephy-shell: chain to parent ::startup method - - src/ephy-shell.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 34c55e1bc72392575df57f4e054d25d09f57bef9 -Author: Jiro Matsuzawa -Date: Sat Sep 17 11:49:50 2011 +0900 - - Updated Japanese translation - - po/ja.po | 1212 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 698 insertions(+), 514 deletions(-) - -commit 48fd606ca365c80f8698241eb22009821105fadf -Author: Мирослав Николић -Date: Sat Sep 17 00:13:28 2011 +0200 - - Updated Serbian translation - - po/sr.po | 1145 +++++++++++++++++++++++++++++++------------------------- - po/sr@latin.po | 1145 +++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1254 insertions(+), 1036 deletions(-) - -commit 74d5e07d5ecae8ae462bb54b3a71ecea2a0bc837 -Author: Kenneth Nielsen -Date: Fri Sep 16 14:19:16 2011 +0200 - - Updated Danish translation - - po/da.po | 1061 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 590 insertions(+), 471 deletions(-) - -commit ff27d3deece83340959630ba5135bc93225b4d05 -Author: Gianvito Cavasoli -Date: Fri Sep 16 01:17:49 2011 +0200 - - l10n: Updated Italian translation - - po/it.po | 1058 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 578 insertions(+), 480 deletions(-) - -commit da7da019a5d85650c3be693080a3b52d18ac9b36 -Author: Reinout van Schouwen -Date: Fri Sep 16 00:19:25 2011 +0200 - - 2011-09-16 Reinout van Schouwen - - - nl.po: Updated Dutch translation - - po/nl.po | 1300 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 689 insertions(+), 611 deletions(-) - -commit 6acf22c4e1e00ece79604561b2f6a1e29f85d994 -Author: Claudio Saavedra -Date: Fri Sep 16 00:03:05 2011 +0300 - - Add translation context for a string - - https://bugzilla.gnome.org/show_bug.cgi?id=658900 - - embed/ephy-request-about.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 03669159f843e007f98b51334bb66833d82d0f8f -Author: Aurimas Černius -Date: Thu Sep 15 21:02:16 2011 +0300 - - Updated Lithuanian translation - - po/lt.po | 656 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 365 insertions(+), 291 deletions(-) - -commit 87e5744a3c74655648d5fbc022924ace1a9e5992 -Author: Xan Lopez -Date: Thu Sep 15 11:04:28 2011 +0200 - - configure.ac: switch to dist-xz - - It's the default tarball format for GNOME now. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 52a4aa1e4453e0af814b62c40e6b9170b11763f1 -Author: dmustieles -Date: Wed Sep 14 17:10:02 2011 +0200 - - Updated Spanish translation - - po/es.po | 7821 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 3910 insertions(+), 3911 deletions(-) - -commit 609ffd1a4aed6061da9d45a0c7325aaa55dfbdd4 -Author: Abderrahim Kitouni -Date: Wed Sep 14 10:34:57 2011 +0100 - - Updated Arabic translation - - po/ar.po | 217 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 109 insertions(+), 108 deletions(-) - -commit 8236e2542c916d0dc1c3b4770d00c01163e83dc3 -Author: Ivaylo Valkov -Date: Wed Sep 14 06:43:23 2011 +0300 - - Updated Bulgarian translation - - po/bg.po | 838 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 442 insertions(+), 396 deletions(-) - -commit 52eac78fb3c8da37aa836292c701e65df8254ecf -Author: Kjartan Maraas -Date: Tue Sep 13 18:51:30 2011 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 102 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 53 insertions(+), 49 deletions(-) - -commit 1616c7dd8f4990d05f5843399027033479d2e9e3 -Author: Dr.T.Vasudevan -Date: Tue Sep 13 14:29:00 2011 +0530 - - updated Tamil translation - - po/ta.po | 1116 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 621 insertions(+), 495 deletions(-) - -commit 5594bff3ccef0b0391d0590666c12f00c06c0594 -Author: Daniel Nylander -Date: Mon Sep 12 20:32:54 2011 +0200 - - Updated Swedish translation - - po/sv.po | 612 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 326 insertions(+), 286 deletions(-) - -commit f830ff5e7665da7183414a36398634062201e65d -Author: Claudio Saavedra -Date: Mon Sep 12 17:20:00 2011 +0300 - - Fix documentation comment - - embed/ephy-web-app-utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 253893c68f88ef288b70b809cbdde4964e7dbd87 -Author: Claudio Saavedra -Date: Fri Sep 9 17:11:31 2011 +0300 - - web apps: Remove G_DIRECTORY_SEPARATOR chars from filenames - - To avoid nasty surprises - - https://bugzilla.gnome.org/show_bug.cgi?id=658028 - - embed/ephy-web-app-utils.c | 1 + - 1 file changed, 1 insertion(+) - -commit 66e093c5012edb5278d81ba18f8b11ab34b2370c -Author: Claudio Saavedra -Date: Fri Sep 9 12:30:46 2011 +0300 - - Normalize the web app profile directory and desktop file names - - This is necessary to allow the shell to guess properly the location of - the desktop file out of the WM_CLASS property in the application window. - Also, append a sha1 checksum to the filenames to avoid collisions. - - https://bugzilla.gnome.org/show_bug.cgi?id=658010 - - embed/ephy-web-app-utils.c | 46 ++++++++++++++++++++++++++++++++++++++-------- - 1 file changed, 38 insertions(+), 8 deletions(-) - -commit e133d3eb3b88a711bfd3b297fc1174f465491956 -Author: Xan Lopez -Date: Mon Sep 12 01:32:24 2011 +0200 - - ephy-web-view: SoupURI construction can fail for invalid URIs - - Guard against that. - - embed/ephy-web-view.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit ad1a6273b4d810ff52da001a6e8db76fec6aacea -Author: Rudolfs Mazurs -Date: Mon Sep 12 00:34:42 2011 +0300 - - Updated Latvian translation. - - po/lv.po | 941 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 524 insertions(+), 417 deletions(-) - -commit 85ea3a2ebb60e88c0bdc3c7e0d1f49c9b3e1cfc9 -Author: Xan Lopez -Date: Sun Sep 11 16:54:39 2011 +0200 - - ephy-web-view: remove unused and unimplemented method - - doc/reference/epiphany-sections.txt | 1 - - embed/ephy-web-view.c | 17 ----------------- - embed/ephy-web-view.h | 1 - - 3 files changed, 19 deletions(-) - -commit 459bebb428dda92619ad15562b5897b52043900d -Author: Xan Lopez -Date: Sun Sep 11 16:52:04 2011 +0200 - - ephy-web-view: sort includes - - embed/ephy-web-view.c | 28 ++++++++++++++-------------- - 1 file changed, 14 insertions(+), 14 deletions(-) - -commit a525b75a8ba54d1b296bde2a3d72748c3d6967a4 -Author: Xan Lopez -Date: Sun Sep 11 16:50:11 2011 +0200 - - ephy-web-view: use SoupURI for about: check - - Turns out the stuff after about: in a SoupURI will be the path, not - the host. Guess it makes sense. - - embed/ephy-web-view.c | 13 +++++++++---- - 1 file changed, 9 insertions(+), 4 deletions(-) - -commit ee49121cf43796e1d55ac5589a97ed3dca286280 -Author: Xan Lopez -Date: Sun Sep 11 16:03:45 2011 +0200 - - ephy-shell: remove unused includes - - src/ephy-shell.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit 7644b0abc2fdc294d09f95584c835abbdbb96fd1 -Author: Xan Lopez -Date: Sun Sep 11 15:51:27 2011 +0200 - - ephy-shell: do not resume session in web app mode - - Session resume will ask to resume the session (opened pages, etc) if - the previous instance crashed. We don't really want this in web app - mode, so skip it. Note that this is not exactly the same than loading - the session, which just restores the previous window sizes and - states. We do want that, but the terminology here could be more clear. - - https://bugzilla.gnome.org/show_bug.cgi?id=658739 - - src/ephy-shell.c | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit 2d26c13ddb3f59d86b4c3a2f2d2e211a15194852 -Author: Xan Lopez -Date: Sun Sep 11 15:41:31 2011 +0200 - - ephy-shell: sort includes and remove duplicates - - src/ephy-shell.c | 55 ++++++++++++++++++++++++++----------------------------- - 1 file changed, 26 insertions(+), 29 deletions(-) - -commit a00032078c5a42860196f0e5bc66a8f17111f9df -Author: Xan Lopez -Date: Sun Sep 11 15:38:52 2011 +0200 - - ephy-main: sort includes (and remove duplicates!) - - src/ephy-main.c | 23 +++++++++-------------- - 1 file changed, 9 insertions(+), 14 deletions(-) - -commit 633c48f84f3467538ad10c980fd5fecbdcf311fa -Author: Xan Lopez -Date: Sun Sep 11 15:35:52 2011 +0200 - - ephy-location-entry: remove unused include - - lib/widgets/ephy-location-entry.c | 1 - - 1 file changed, 1 deletion(-) - -commit 836ec4cfb72d1e155e3502c36bcd034194d42e03 -Author: Jorge González -Date: Sun Sep 11 11:33:15 2011 +0200 - - Updated Spanish translation - - po/es.po | 5 ----- - 1 file changed, 5 deletions(-) - -commit bcf2af32b8c8c8b8079b24604e4af08e1aba3841 -Author: Jorge González -Date: Sun Sep 11 11:32:04 2011 +0200 - - Updated Spanish translation - - po/es.po | 7823 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 3914 insertions(+), 3909 deletions(-) - -commit be4dccdc2383509fb345fcf7395287e75bf2257f -Author: Antonio Fernandes C. Neto -Date: Sat Sep 10 21:14:38 2011 -0400 - - Updated Brazilian Portuguese translation. - - po/pt_BR.po | 900 +++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 490 insertions(+), 410 deletions(-) - -commit d1aa0546c1b0fb3e66f4d9adeafe7aa70cfaec83 -Author: Mario Blättermann -Date: Sun Sep 11 02:39:45 2011 +0200 - - [l10n] Updated German translation - - po/de.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ee671af5442acb8b5ff67dc62ab20b232a571887 -Author: Mario Blättermann -Date: Sun Sep 11 02:38:56 2011 +0200 - - [l10n] Updated German translation - - po/de.po | 902 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 492 insertions(+), 410 deletions(-) - -commit 0993cc67b6fc7f6e73fd04d992ed25885d7a25ce -Author: Duarte Loreto -Date: Sun Sep 11 01:07:53 2011 +0100 - - Updated Portuguese translation - - po/pt.po | 1062 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 585 insertions(+), 477 deletions(-) - -commit b3dff05503b81dd424459afc5bca31cfe9f1dae9 -Author: Claude Paroz -Date: Sat Sep 10 22:14:09 2011 +0200 - - Updated French translation - - Contributed by Luc Guillemin, Luc Pionchon and Claude Paroz - - po/fr.po | 1027 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 567 insertions(+), 460 deletions(-) - -commit af15d4d4fbca4fc77b3c10dd26474c2a7598aa17 -Author: Arash Mousavi -Date: Sat Sep 10 15:52:17 2011 +0430 - - Updated Persian translation - - po/fa.po | 192 +++++++++++++++------------------------------------------------ - 1 file changed, 45 insertions(+), 147 deletions(-) - -commit 3812e60c3754effa28c0036b3fda7081e513c4f6 -Author: Chao-Hsiung Liao -Date: Sat Sep 10 14:57:46 2011 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 608 +++++++++++++------------------------------------------- - po/zh_TW.po | 649 ++++++++++++++++-------------------------------------------- - 2 files changed, 300 insertions(+), 957 deletions(-) - -commit cdfebccad775d2df564fd25cbfd6965255040a91 -Author: Claudio Saavedra -Date: Fri Sep 9 12:27:09 2011 +0300 - - Remove obsolete comment - - embed/ephy-web-app-utils.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit d9dc07d5e89f56871d6df629015226c4e0ddb133 -Author: Xan Lopez -Date: Thu Sep 8 22:56:32 2011 +0200 - - HACKING: add note about comments - - HACKING | 2 ++ - 1 file changed, 2 insertions(+) - -commit 368e65ed6173f75b3c9ccf19e26b2846fc6fb3d0 -Author: Xan Lopez -Date: Thu Sep 8 22:51:43 2011 +0200 - - ephy-window: disable unwanted actions in application mode - - https://bugzilla.gnome.org/show_bug.cgi?id=657624 - - src/ephy-window.c | 39 ++++++++++++++++++++++++++++++++++++--- - 1 file changed, 36 insertions(+), 3 deletions(-) - -commit c044acd19e68216221a157cfa884f90f5d3739a2 -Author: Xan Lopez -Date: Thu Sep 8 17:53:51 2011 +0200 - - ephy-toolbar: undo this hack - - We'll do things properly now. - - src/ephy-toolbar.c | 11 ++++------- - 1 file changed, 4 insertions(+), 7 deletions(-) - -commit 5ff57f9a474ee163133231dc2f8e3fde223b4e7d -Author: Piotr Drąg -Date: Thu Sep 8 21:14:54 2011 +0200 - - Updated Polish translation - - po/pl.po | 1000 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 549 insertions(+), 451 deletions(-) - -commit 185b2d0fd04d8d443fd30967e7abd27a08abc544 -Author: Xan Lopez -Date: Thu Sep 8 15:21:23 2011 +0200 - - ephy-web-view: remove now unused parameter to sprintf - - Noticed by Luc Pionchon. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4d0a707b788e14052d044ec52d57f33e825b7d27 -Author: Andika Triwidada -Date: Thu Sep 8 19:07:08 2011 +0700 - - Updated Indonesian translation - - po/id.po | 1039 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 493 insertions(+), 546 deletions(-) - -commit b3de4ed0191946de9e57584b1c8c031713a4fa11 -Author: Yuri Myasoedov -Date: Thu Sep 8 10:25:27 2011 +0400 - - Updated Russian translation - - po/ru.po | 853 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 431 insertions(+), 422 deletions(-) - -commit 92c913ed9d386bffacaeee057d36435f7aed5bcd -Author: Bruce Cowan -Date: Wed Sep 7 17:05:53 2011 +0100 - - Updated British English translation - - po/en_GB.po | 1060 +++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 588 insertions(+), 472 deletions(-) - -commit 688de08956879cf1e3488e6ab56143f10365c25c -Author: Jorge González -Date: Wed Sep 7 12:43:57 2011 +0200 - - Updated Spanish translation - - po/es.po | 100 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 48 insertions(+), 52 deletions(-) - -commit 074a3e126c87cff839b968bd6ff37c3f32f33e5b -Author: Fran Dieguez -Date: Wed Sep 7 02:30:25 2011 +0200 - - Updated galician translations - - po/gl.po | 146 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 87 insertions(+), 59 deletions(-) - -commit 9acfe587398f73cd911454b08ea8c178e20ed259 -Author: Xan Lopez -Date: Wed Sep 7 02:17:47 2011 +0200 - - [release] 3.1.91.1 - - NEWS | 8 ++++++++ - configure.ac | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit f42d91a04004ef3679a7d530f099d70f5be9c112 -Author: Xan Lopez -Date: Wed Sep 7 02:11:04 2011 +0200 - - ephy-web-view: do not mention the URL twice in error pages - - Sounds repetitive. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 25cde6dfd8576b6bb16adbca5ee7d04b091f549b -Author: Xan Lopez -Date: Wed Sep 7 02:08:40 2011 +0200 - - Revert "ephy-web-view: fix title for error pages" - - This reverts commit b01497d86f8ed6d1f3ddbfc66d2c5c1354c9afb3. - - Xan, see me after class. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ef370ca7725035217cc117413b51fdeb17e61360 -Author: Kjartan Maraas -Date: Tue Sep 6 22:01:41 2011 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 576 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 292 insertions(+), 284 deletions(-) - -commit 46d4df1e1a9ac20fc2572223c84f88a4945ae95d -Author: Jorge González -Date: Tue Sep 6 20:06:02 2011 +0200 - - Updated Spanish translation - - po/es.po | 72 +++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 37 insertions(+), 35 deletions(-) - -commit 4d9ac80834b33db640bffe436796c5513e5226ec -Author: Xan Lopez -Date: Tue Sep 6 19:14:28 2011 +0200 - - [release] 3.1.91 - - NEWS | 16 ++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit 4bd5ca329c07b8e8b3a2736c77dd862175cdf37b -Author: Xan Lopez -Date: Tue Sep 6 19:10:05 2011 +0200 - - Make about:applications prettier - - Thanks to Lapo Calamandrei for the CSS. - - data/pages/about.css | 40 ++++++++++++++++++++++++++++++++++++++++ - embed/ephy-request-about.c | 19 +++++++++++-------- - embed/ephy-web-app-utils.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-web-app-utils.h | 2 ++ - 4 files changed, 97 insertions(+), 8 deletions(-) - -commit 8cfcb6905f4c4dca488987f22a847dd1283b39ac -Author: Xan Lopez -Date: Tue Sep 6 15:28:22 2011 +0200 - - configure.ac: gdbus-codegen is required - - Fail if it's not found. Apparently gentoo ships this independently of - glib, so it can happen. - - https://bugzilla.gnome.org/show_bug.cgi?id=657610 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b01497d86f8ed6d1f3ddbfc66d2c5c1354c9afb3 -Author: Xan Lopez -Date: Tue Sep 6 15:06:32 2011 +0200 - - ephy-web-view: fix title for error pages - - Diego, talk to me after class. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3d42c9482c85f70081000675503160851a96a56e -Author: Chao-Hsiung Liao -Date: Tue Sep 6 19:18:01 2011 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 723 +++++++++++++++++++++++++++++++-------------------------- - po/zh_TW.po | 761 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 790 insertions(+), 694 deletions(-) - -commit 9ef146dd327726e1cec62590d2d5ede542a03cd9 -Author: Arash Mousavi -Date: Tue Sep 6 13:01:54 2011 +0430 - - Updated Persian translation - - po/fa.po | 660 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 368 insertions(+), 292 deletions(-) - -commit 861d897a9f20306bd60337c176203f9646b60499 -Author: Jorge González -Date: Tue Sep 6 06:07:05 2011 +0200 - - Updated Spanish translation - - po/es.po | 343 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 193 insertions(+), 150 deletions(-) - -commit a721b5a7396ea36372240b209373af00930ea3f7 -Author: Abderrahim Kitouni -Date: Mon Sep 5 23:52:50 2011 +0100 - - Updated Arabic Translation - - po/ar.po | 594 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 325 insertions(+), 269 deletions(-) - -commit 904503e39079ca3380a41b90e55017853eadb2cb -Author: Piotr Drąg -Date: Mon Sep 5 23:27:20 2011 +0200 - - Fixed yo.po - - po/yo.po | 3500 ++++++++++++++++++++++---------------------------------------- - 1 file changed, 1206 insertions(+), 2294 deletions(-) - -commit bbff8c5cb2d6a7627d15492ddf76dc3cbe04a0eb -Author: Xan Lopez -Date: Mon Sep 5 22:47:03 2011 +0200 - - ephy-web-view: fix multiple deletes in about:applications - - The URI changes to about:applications? after the first one, need to - take that into account. - - embed/ephy-web-view.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit aada5fcf8f175bf5efa86b304f5db29ac4675e73 -Author: Claudio Saavedra -Date: Fri Sep 2 17:51:39 2011 +0300 - - Display a notification if the web application saving fails - - https://bugzilla.gnome.org/show_bug.cgi?id=658060 - - src/window-commands.c | 22 +++++++++++++--------- - 1 file changed, 13 insertions(+), 9 deletions(-) - -commit 7e16cb64dbb1acb2a3d7e79fc46e565dadeb6bde -Author: Claudio Saavedra -Date: Thu Sep 1 22:28:02 2011 +0300 - - Ask the user for confirmation before overwriting web applications - - Show a confirmation dialog and, in case the user confirms, delete the - old application before saving a new one. - - https://bugzilla.gnome.org/show_bug.cgi?id=658060 - - src/window-commands.c | 122 +++++++++++++++++++++++++++++++++++--------------- - 1 file changed, 87 insertions(+), 35 deletions(-) - -commit dfd3abc8dfc5a3b060aee64982c5431975897d12 -Author: Fran Dieguez -Date: Mon Sep 5 22:04:39 2011 +0200 - - Updated galician translations - - po/gl.po | 188 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 100 insertions(+), 88 deletions(-) - -commit 08091026a1fb73816f20f0e6d9e7ef92a523092f -Author: Piotr Drąg -Date: Mon Sep 5 20:58:30 2011 +0200 - - Updated POTFILES.in - - po/POTFILES.in | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit 0c1f1ef6e14716bbfd2b64c057ab043e809b4364 -Author: Xan Lopez -Date: Mon Sep 5 20:35:14 2011 +0200 - - Implement about:applications - - A really simple way to list and delete the existing Web - Applications. Hopefully this will go completely away in 3.4 replaced - with something in the shell itself. - - embed/ephy-request-about.c | 39 +++++++++++++++++++++++++--- - embed/ephy-web-app-utils.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-web-app-utils.h | 9 +++++++ - embed/ephy-web-view.c | 40 +++++++++++++++++++++++++++++ - 4 files changed, 147 insertions(+), 4 deletions(-) - -commit 0cff2bef71ac69095f62ace7be8443d42db34d32 -Author: Xan Lopez -Date: Mon Sep 5 18:21:41 2011 +0200 - - ephy-request-about: move this to embed/ - - We'll need to access embed/ data for about:applications. - - embed/Makefile.am | 2 + - embed/ephy-request-about.c | 199 +++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-request-about.h | 37 +++++++++ - lib/Makefile.am | 2 - - lib/ephy-request-about.c | 199 --------------------------------------------- - lib/ephy-request-about.h | 37 --------- - 6 files changed, 238 insertions(+), 238 deletions(-) - -commit 00e5075c92be48a8ad71985ed522aafc1596a58c -Author: Fran Dieguez -Date: Mon Sep 5 12:10:15 2011 +0200 - - Updated galician translations - - po/gl.po | 47 +++++++++++++++++++++++------------------------ - 1 file changed, 23 insertions(+), 24 deletions(-) - -commit dc7ad08cdbcb16fa9934f2066241a3d60f8d3e4d -Author: Jorge González -Date: Mon Sep 5 11:06:27 2011 +0200 - - Updated Spanish translation - - po/es.po | 134 +++++++++++++++++++++++++-------------------------------------- - 1 file changed, 53 insertions(+), 81 deletions(-) - -commit 3ca3ed4e61e1e686481ae012128fca609cfdb6b7 -Author: Jorge González -Date: Mon Sep 5 08:21:21 2011 +0200 - - Updated Spanish translation - - po/es.po | 545 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 293 insertions(+), 252 deletions(-) - -commit bd9610ccf02ee4122f10f770b36b7c3cbd183a76 -Author: Vinicius Depizzol -Date: Sat Jul 30 01:26:12 2011 -0500 - - e-web-view: fix error pages for RTL locales - - Remove hardcoded directions in the CSS definitions and make them simpler. - - Bug #314205 - - Signed-off-by: Diego Escalante Urrelo - - data/pages/error.html | 72 +++++++++++++++++++++++++++++------------------- - data/pages/recovery.html | 72 +++++++++++++++++++++++++++++------------------- - embed/ephy-web-view.c | 5 ++-- - 3 files changed, 89 insertions(+), 60 deletions(-) - -commit 9dd70dcb02bafc7f2d54e148c0f68c9be10d07be -Author: Diego Escalante Urrelo -Date: Sun Sep 4 23:03:12 2011 -0500 - - e-web-view: use proper html for paragraphs - - Bug #314205 - - embed/ephy-web-view.c | 21 +++++++++++---------- - 1 file changed, 11 insertions(+), 10 deletions(-) - -commit f8cea5491cef9e01e3c46f8cc060042f3d23d08f -Author: Fran Dieguez -Date: Mon Sep 5 00:47:40 2011 +0200 - - Restore galician translations due unknown error - - po/gl.po | 312 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 163 insertions(+), 149 deletions(-) - -commit b039f0ceb3f93569bc36b602a598c05e0cfc0269 -Author: Diego Escalante Urrelo -Date: Sun Sep 4 17:08:24 2011 -0500 - - e-web-view: better messages in error pages - - Use better words to describe the situation, avoid techie terms. - - Bug #637903 - - embed/ephy-web-view.c | 19 +++++++++++++++---- - 1 file changed, 15 insertions(+), 4 deletions(-) - -commit 7dafb390f5091bfbf1b5236aebf8e5f33aa0bbf1 -Author: Diego Escalante Urrelo -Date: Sun Sep 4 16:34:49 2011 -0500 - - e-file-helpers: implement and use ephy_file_delete_dir_recursively - - Move the implementation from ephy-web-app-utils.c to - ephy-file-helpers.c. - - The current one was not doing recursive delete, this caused the bug of - private instances leaving their profile directories behind in /tmp. - - Bug #658201 - - embed/ephy-web-app-utils.c | 53 +----------------------------- - lib/ephy-file-helpers.c | 81 ++++++++++++++++++++++++++++++++++------------ - lib/ephy-file-helpers.h | 3 +- - 3 files changed, 63 insertions(+), 74 deletions(-) - -commit 5208e2eab48e8a64912d2f00264b9a6c96c572e0 -Author: Diego Escalante Urrelo -Date: Wed Aug 3 13:01:11 2011 +0200 - - Use EphyFileChooser filters usefully - - Don't use the filters combobox when it's not really needed nor - meaningful. Specially for save dialogs. - - Bug #655713 - - src/popup-commands.c | 2 +- - src/window-commands.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 46312f09960cca55ada816246dd3c18d839fa62e -Author: Diego Escalante Urrelo -Date: Sat Aug 20 12:16:53 2011 -0500 - - data/glade: remove unneeded markup - - Use attributes instead of hardcoding the markup on the translatable - string. - - Bug #102382 - - data/glade/certificate-dialogs.ui | 213 +++++++++++++++++++++++++------------- - data/glade/prefs-dialog.ui | 66 ++++++++---- - data/glade/print.ui | 70 +++++++++---- - 3 files changed, 238 insertions(+), 111 deletions(-) - -commit 90455dac2fcf07a349b3635848e458f556715a43 -Author: Diego Escalante Urrelo -Date: Sat Aug 20 12:06:14 2011 -0500 - - prefs-dialog: remove unused underline property - - Bug #102382 - - data/glade/prefs-dialog.ui | 2 -- - 1 file changed, 2 deletions(-) - -commit 321319295d710b590586583c9152cfc9fd2c5d3a -Author: Fran Dieguez -Date: Sun Sep 4 18:55:11 2011 +0200 - - Updated galician translations - - po/gl.po | 478 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 253 insertions(+), 225 deletions(-) - -commit 0dbb60c0a79e42d963dadaffebe5f8e55efe40a3 -Author: Abdalrahim G. Fakhouri -Date: Sun Sep 4 11:07:18 2011 +0100 - - Updated Arabic translation - - po/ar.po | 743 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 413 insertions(+), 330 deletions(-) - -commit 3f6c92523f00a6f74b08ede75355e091989ef050 -Author: Chao-Hsiung Liao -Date: Sun Sep 4 08:27:42 2011 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 729 +++++++++++++++++++++++++++++++++--------------------------- - po/zh_TW.po | 729 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 806 insertions(+), 652 deletions(-) - -commit 4321e7213506b09b186a4b58024c58c0cec4357e -Author: Xan Lopez -Date: Sat Sep 3 18:58:52 2011 +0200 - - ephy-window: hide some irrelevant context menu actions when in app mode - - https://bugzilla.gnome.org/show_bug.cgi?id=657624 - - src/ephy-window.c | 12 ++++++++++++ - 1 file changed, 12 insertions(+) - -commit eaa76f15cb8ee10af9cc44a5d2782c8c3fdcf402 -Author: Xan Lopez -Date: Sat Sep 3 18:52:11 2011 +0200 - - ephy-bookmarks-ui: we need to include the EphyNode header - - Since it's used in the header file itself. This was working just - because other files including this also were including ephy-node.h - before. - - src/bookmarks/ephy-bookmarks-ui.h | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 50738fc2a6a54b361f56e9834771169fa094c09c -Author: Xan Lopez -Date: Sat Sep 3 18:41:45 2011 +0200 - - ephy-web-app-utils: fix include sort - - embed/ephy-web-app-utils.c | 1 + - 1 file changed, 1 insertion(+) - -commit f2defe7858a00a81879a4ae9af4dd772595b14ef -Author: Xan Lopez -Date: Sat Sep 3 18:40:05 2011 +0200 - - HACKING: another tweak, accommodate to what ephy has been doing - - HACKING | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 37c1f487b4630d0d4f1f3fd9e505a7200a01acaa -Author: Xan Lopez -Date: Sat Sep 3 18:39:24 2011 +0200 - - ephy-window: sort includes - - src/ephy-window.c | 56 +++++++++++++++++++++++++++---------------------------- - 1 file changed, 28 insertions(+), 28 deletions(-) - -commit 451b9fdc05fa901b8aec591acf435f848c8b2a13 -Author: Xan Lopez -Date: Sat Sep 3 18:32:04 2011 +0200 - - ephy-web-app-utils: adjust includes to styleguide - - embed/ephy-web-app-utils.c | 2 -- - 1 file changed, 2 deletions(-) - -commit e7fa362332fd9dae8ade423e12c24bb3ab1d3ac6 -Author: Xan Lopez -Date: Sat Sep 3 18:30:59 2011 +0200 - - HACKING: remove dubious guideline, add guideline for headers - - HACKING | 14 ++++++++------ - 1 file changed, 8 insertions(+), 6 deletions(-) - -commit 4f6da94c96d77a296e185c0fcf35ca74ddeee3a2 -Author: Xan Lopez -Date: Sat Sep 3 18:21:38 2011 +0200 - - ephy-web-app-utils: move the web app creation code here - - embed/ephy-web-app-utils.c | 178 +++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-web-app-utils.h | 5 ++ - embed/ephy-web-view.c | 164 ----------------------------------------- - src/window-commands.c | 7 +- - 4 files changed, 187 insertions(+), 167 deletions(-) - -commit 20b38fa45d7b9f3e4c302d0cb0090f72ae56bb78 -Author: Xan Lopez -Date: Fri Sep 2 20:57:20 2011 +0200 - - ephy-web-view: silence compiler warning - - embed/ephy-web-view.c | 1 + - 1 file changed, 1 insertion(+) - -commit 7e685c61459ef3f55fed260b3b90c974d3599227 -Author: Xan Lopez -Date: Fri Sep 2 20:56:12 2011 +0200 - - ephy-web-app-utils: rename ephy_delete_web_application to ephy_web_application_delete - - You know, use namespaces correctly and all that. - - embed/ephy-web-app-utils.c | 4 ++-- - embed/ephy-web-app-utils.h | 2 +- - src/ephy-main.c | 2 +- - 3 files changed, 4 insertions(+), 4 deletions(-) - -commit 09bbf1441056fc858db9bca5452bd0ff8e83a1b1 -Author: Claudio Saavedra -Date: Thu Sep 1 22:53:55 2011 +0300 - - Add ephy_web_application_get_profile_directory() - - And factor out some code - - embed/ephy-web-app-utils.c | 28 +++++++++++++++++++++++----- - embed/ephy-web-app-utils.h | 2 ++ - embed/ephy-web-view.c | 5 +---- - 3 files changed, 26 insertions(+), 9 deletions(-) - -commit 1d507b310ad8cad41055bedec416d27a04b6f06d -Author: Claudio Saavedra -Date: Thu Sep 1 22:50:26 2011 +0300 - - Move EPHY_WEB_APP_PREFIX declaration to a cleaner location - - embed/ephy-web-app-utils.h | 2 ++ - embed/ephy-web-view.h | 2 -- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 459f7eab590f49340962cdf6bc3d4d66b3356109 -Author: Xan Lopez -Date: Thu Sep 1 21:06:05 2011 +0200 - - Add --delete--application command line option to delete WebApps - - Plus the necessary code to implement some sort of UI to do this for the - 3.2 time frame. Hopefully for 3.4 we'll have a GNOME-wide system to - deal with applications. - - embed/Makefile.am | 4 +- - embed/ephy-web-app-utils.c | 136 +++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-web-app-utils.h | 36 ++++++++++++ - src/ephy-main.c | 16 ++++++ - 4 files changed, 191 insertions(+), 1 deletion(-) - -commit 996bf1df4981e87d507e3fc8940d0c84b7d8ba9f -Author: Claudio Saavedra -Date: Thu Sep 1 18:16:37 2011 +0300 - - EphyWindow: Fix location entry's load progress - - The caching of the GtkEntry was broken, since the toolbar items are - destroyed on switching to/from fullscreen. Update the cache right - after toolbar is rebuilt. - - https://bugzilla.gnome.org/show_bug.cgi?id=657936 - - src/ephy-window.c | 36 ++++++++++++++++++++++++------------ - 1 file changed, 24 insertions(+), 12 deletions(-) - -commit 3dc371664fa71b51ac64449361129712f4807833 -Author: Daniel Nylander -Date: Thu Sep 1 12:35:34 2011 +0200 - - Updated Swedish translation - - po/sv.po | 677 ++++++++++++++++++++++++--------------------------------------- - 1 file changed, 260 insertions(+), 417 deletions(-) - -commit 9c9895f8a598f2da4e0efb72cf6688846cdb68d8 -Author: Aurimas Černius -Date: Wed Aug 31 23:15:03 2011 +0300 - - Updated Lithuanian translation - - po/lt.po | 980 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 513 insertions(+), 467 deletions(-) - -commit 912e6276c41308b7c7bea2b055d5ad21a0493bb5 -Author: Kjartan Maraas -Date: Wed Aug 31 21:26:11 2011 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 466 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 247 insertions(+), 219 deletions(-) - -commit 639abaa200dee1ee29766bbc39a68282f23ffb14 -Author: Arash Mousavi -Date: Wed Aug 31 17:56:44 2011 +0430 - - Updated Persian translation - - po/fa.po | 694 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 390 insertions(+), 304 deletions(-) - -commit 6d331fea8e5ed2f06ef64b7fc86b1d41ed8c13a3 -Author: Jorge González -Date: Tue Aug 30 21:21:35 2011 +0200 - - Updated Spanish translation - - po/es.po | 91 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 45 insertions(+), 46 deletions(-) - -commit 42fd5c7bf7a2e2c98cd87639fa54c9d93b89d2a4 -Author: Stas Solovey -Date: Tue Aug 30 22:19:55 2011 +0400 - - Fixed and updated Russian translation - - po/ru.po | 735 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 402 insertions(+), 333 deletions(-) - -commit 84da3d9453a692d50e933d4bc9afc3938e76d190 -Author: Jorge González -Date: Tue Aug 30 20:05:58 2011 +0200 - - Updated Spanish translation - - po/es.po | 86 +++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 44 insertions(+), 42 deletions(-) - -commit bf288fba8d1d222f85137ee5df5fc3a8705f78fc -Author: Jorge González -Date: Tue Aug 30 19:13:56 2011 +0200 - - Updated Spanish translation - - po/es.po | 500 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 263 insertions(+), 237 deletions(-) - -commit d1745e6703c6856176bb32bf352146ce62f28951 -Author: Xan Lopez -Date: Tue Aug 30 13:50:30 2011 +0200 - - [release] 3.1.90 - - NEWS | 8 ++++++++ - configure.ac | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 2b04778f114d97dba2e9240bef6c5ba57f372f50 -Author: Xan Lopez -Date: Mon Aug 29 18:50:22 2011 +0200 - - ephy-window: same hack to allow ephy to launch itself from app mode - - src/ephy-window.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit efbe79e918a5c518f507a94d08505c009bec4a59 -Author: Xan Lopez -Date: Mon Aug 29 18:00:10 2011 +0200 - - window-commands: make 'Enter' activate the default response - - Which creates the corresponding Web App. - - src/window-commands.c | 1 + - 1 file changed, 1 insertion(+) - -commit 3b5c8cd24ecd27e5a5f0f52421e4371389be8fac -Author: Xan Lopez -Date: Mon Aug 29 17:03:40 2011 +0200 - - ephy-web-view: do not launch ephy with jhbuild - - Leftovers from testing. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 540c0c0ac46399462dfad2c3fd0a50a412882307 -Author: Xan Lopez -Date: Mon Aug 29 15:49:08 2011 +0200 - - Show a notification when the newly created web-app is ready to be used - - This will probably go away in 3.4 when the new dash design is - introduced, but for now it's the best we have. - - configure.ac | 2 ++ - src/ephy-main.c | 6 ++++++ - src/window-commands.c | 35 +++++++++++++++++++++++++++++++++-- - 3 files changed, 41 insertions(+), 2 deletions(-) - -commit e6785d3ccc5a5a7c933a50b1a224fc01ee741c9c -Author: Xan Lopez -Date: Mon Aug 29 15:48:39 2011 +0200 - - ephy-file-helpers: export the UUID env var in our header - - We'll use it from src/ for a bit of a gross hack... - - lib/ephy-file-helpers.c | 1 - - lib/ephy-file-helpers.h | 2 ++ - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit 52b5de7fb81e96af073d159869c508996a1ddb55 -Author: Xan Lopez -Date: Mon Aug 29 15:48:03 2011 +0200 - - ephy-file-helpers: make .desktop file launcher method parameters optional - - We don't always need them. - - lib/ephy-file-helpers.c | 14 +++++++++----- - 1 file changed, 9 insertions(+), 5 deletions(-) - -commit 207f5b355abbaf2b91e9b684f3cc45387b5119cb -Author: Xan Lopez -Date: Mon Aug 29 14:32:07 2011 +0200 - - ephy-window: sandbox app-mode instances to the app domain - - If the user tries to navigate to other domain spawn a new process with - "gvfs-open" and the requested URI. - - src/ephy-window.c | 39 +++++++++++++++++++++++++++++++++++++++ - 1 file changed, 39 insertions(+) - -commit 58c91ceba8dc3a5a12a80afd58062a5d94e96644 -Author: Xan Lopez -Date: Mon Aug 29 12:54:05 2011 +0200 - - ephy-main: more parameter sanity check - - Using private profile and app mode at the same time does not make - sense. - - src/ephy-main.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 5f1210e2ea3bacaac0d4349cbb9eb22a4cb81191 -Author: Xan Lopez -Date: Mon Aug 29 12:51:16 2011 +0200 - - ephy-toolbar: disable New Window and New Tab actions - - We should refactor EphyWindow so that all these UI bits are not even - present in app mode, but for now this will do. - - src/ephy-toolbar.c | 15 +++++++++++---- - 1 file changed, 11 insertions(+), 4 deletions(-) - -commit ebac66a05be1e71bd978f070fb842fd8b457e7e8 -Author: Xan Lopez -Date: Thu Jul 14 00:47:33 2011 +0200 - - Add basic support for Web Applications - - 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. - - data/ui/epiphany-ui.xml | 1 + - embed/ephy-web-view.c | 203 ++++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-web-view.h | 8 ++ - src/ephy-main.c | 33 +++++--- - src/ephy-toolbars-model.c | 12 +-- - src/ephy-window.c | 28 ++++--- - src/window-commands.c | 191 +++++++++++++++++++++++++++++++++++++++++++ - src/window-commands.h | 3 + - 8 files changed, 453 insertions(+), 26 deletions(-) - -commit bebb9f4299f4a86439ed04b335b6852234af0622 -Author: Tiffany Antopolski -Date: Sun Aug 28 06:56:48 2011 -0400 - - Updated Canadian English Translation... - - ...as part of the process of fixing bug#610152 - - po/en_CA.po | 5012 +++++++++++++++++++++++++++++------------------------------ - 1 file changed, 2497 insertions(+), 2515 deletions(-) - -commit 4a1c25eee2e388fd489922c9e9f9215fe8b4096d -Author: Yuri Myasoedov -Date: Sat Aug 27 15:48:27 2011 +0400 - - Updated Russian translation - - po/ru.po | 692 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 375 insertions(+), 317 deletions(-) - -commit f9d451c1da1eec8fba4482976c83d6bfe964920b -Author: Og B. Maciel -Date: Thu Aug 25 09:57:14 2011 -0400 - - Updated Brazilian Portuguese translation. - - po/pt_BR.po | 129 +++++++++++++++++++++++++++--------------------------------- - 1 file changed, 57 insertions(+), 72 deletions(-) - -commit 7b692feaa80a65dfb37c38139a5c6ce1aa808b35 -Author: Xan Lopez -Date: Tue Aug 16 14:06:21 2011 +0200 - - [release] 3.1.5 - - NEWS | 14 ++++++++++++++ - configure.ac | 4 ++-- - 2 files changed, 16 insertions(+), 2 deletions(-) - -commit 81bc2abbbd359155c959db000194d629f3f2cd89 -Author: Ivaylo Valkov -Date: Mon Aug 22 07:56:15 2011 +0300 - - Updated Bulgarian translation - - po/bg.po | 693 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 372 insertions(+), 321 deletions(-) - -commit 10b57b077d42312a6e899e7a2694b6ecdb3fadc8 -Author: A S Alam -Date: Sun Aug 21 09:13:14 2011 +0530 - - update Punjabi Translation - - po/pa.po | 704 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 375 insertions(+), 329 deletions(-) - -commit 6884b3e8cd432b01b7c588ad00c8d5dbc20d93d8 -Author: Andika Triwidada -Date: Fri Aug 19 17:15:14 2011 +0700 - - Updated Indonesian translation - - po/id.po | 1487 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 699 insertions(+), 788 deletions(-) - -commit d064af652059970331f1c49171d21598ba8a480a -Author: Abduxukur Abdurixit -Date: Fri Aug 19 20:34:15 2011 +0200 - - Added UG translation - - po/ug.po | 77 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 38 insertions(+), 39 deletions(-) - -commit 91103d4a01ce77ca0a101653c5154da3b13627f5 -Author: Gustavo Noronha Silva -Date: Thu Aug 11 14:09:06 2011 +0200 - - Depend on glib >= 2.29.10 - - We rely on Unicode API that is only available from that version - onwards. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a79821955d1fd50f3e7cd9d4dae91b24e193d855 -Author: Diego Escalante Urrelo -Date: Wed Aug 3 13:31:48 2011 +0200 - - e-web-view: use hostname in geolocation infobar - - Instead of the full URI, make it more readable and use only the - hostname. - - Bug #649164 - - embed/ephy-web-view.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 60bea9a1003343635d27fba83d3b089fb208efec -Author: Diego Escalante Urrelo -Date: Sat Jul 30 19:05:04 2011 -0500 - - Use line-wrap in GtkInfoBar labels - - Otherwise we can end up with fixed width windows that exceed the display - size when long sentences are displayed. - - Bug #649164 - - embed/ephy-web-view.c | 3 ++- - src/ephy-session.c | 1 + - 2 files changed, 3 insertions(+), 1 deletion(-) - -commit e6945b6c75103866ac890219e93463ff4ce06183 -Author: Diego Escalante Urrelo -Date: Sat Jul 30 19:07:16 2011 -0500 - - Use g_markup_printf_escaped when printing uris - - This covers GtkInfoBar in ephy-web-view.c, ephy-download-widget.c and - also tooltips and labels in ephy-download-widget.c - - Bug #649164 - - embed/ephy-web-view.c | 10 +++++----- - lib/widgets/ephy-download-widget.c | 7 ++----- - 2 files changed, 7 insertions(+), 10 deletions(-) - -commit a5184806fb2ad44ea7dd898de73eaf1201a8f9fc -Author: Diego Escalante Urrelo -Date: Fri Jul 29 23:47:30 2011 -0500 - - e-bookmarks-editor: don't set directory - - GTK+ new UX behavior says we shouldn't set the file chooser directory, - recent directories should be listed (automatically) instead. - - Signed-off-by: Xan Lopez - - Bug #655508 - - src/bookmarks/ephy-bookmarks-editor.c | 3 --- - 1 file changed, 3 deletions(-) - -commit b4fa1be91ccce1f27537ef4153d7d0be5379cba1 -Author: Mario Blättermann -Date: Thu Aug 11 21:41:12 2011 +0200 - - [l10n] Updated German translation - - po/de.po | 743 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 396 insertions(+), 347 deletions(-) - -commit cb17bdeb2aa48c3d9d47027fa94a53e010421f89 -Author: Diego Escalante Urrelo -Date: Wed Aug 3 13:37:56 2011 +0200 - - e-web-view: use ephy_string_get_host_name - - Bug #655899 - - embed/ephy-web-view.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit add3288ff433e92739e3a4245068fb41e10fa450 -Author: Gabor Kelemen -Date: Tue Aug 2 01:47:08 2011 +0200 - - Updated Hungarian translation by Balázs Meskó - - po/hu.po | 691 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 375 insertions(+), 316 deletions(-) - -commit d6f43136341159cccde9f707f2a493c109ec4e85 -Author: Alexandre Mazari -Date: Fri Jul 29 23:57:51 2011 -0500 - - e-window: use a css file for widget styling - - 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 - - Bug #644805 - - data/ui/Makefile.am | 7 ++++++- - data/ui/epiphany.css | 16 ++++++++++++++++ - embed/ephy-embed.c | 15 --------------- - src/ephy-notebook.c | 18 ------------------ - src/ephy-window.c | 23 +++++++++++++++++++++++ - 5 files changed, 45 insertions(+), 34 deletions(-) - -commit f4c6a2f079f5b24c067f2b656a8a4f808ec4533c -Author: Diego Escalante Urrelo -Date: Fri Jul 29 23:23:51 2011 -0500 - - data/gschema: remove useless newline - - data/org.gnome.epiphany.gschema.xml.in | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 870195411c9a5a26b77627d642e7c9be75b11f2f -Author: Diego Escalante Urrelo -Date: Fri Jul 29 22:48:51 2011 -0500 - - e-embed: remove useless e-file-chooser include - - embed/ephy-embed.c | 1 - - 1 file changed, 1 deletion(-) - -commit e466875e344af43160f3abe0e3d6a29b2d0d656a -Author: Rodrigo Padula de Oliveira -Date: Fri Jul 29 11:10:20 2011 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 1991 ++++++++++++++++++++++------------------------------------- - 1 file changed, 729 insertions(+), 1262 deletions(-) - -commit d50768637cce5a827e84d498f3762c27b157f814 -Author: Sergio Cipolla -Date: Fri Jul 29 11:00:12 2011 -0300 - - Fixed some strings in Brazilian Portuguese translation - - po/pt_BR.po | 2586 +++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1285 insertions(+), 1301 deletions(-) - -commit ef3d6d0794ca371b35efde23185e6cf4c32dc004 -Author: Daniel Nylander -Date: Fri Jul 29 10:00:41 2011 +0200 - - Updated Swedish translation - - po/sv.po | 884 ++++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 560 insertions(+), 324 deletions(-) - -commit 4ad500dcbb58a5df0585a1b76e7ed715fb6282f7 -Author: Claudio Saavedra -Date: Sat Jul 23 16:57:56 2011 +0300 - - Don't use g_list_length() to check for empty lists - - An empty list is simply NULL. - - src/ephy-session.c | 2 +- - src/ephy-tabs-menu.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 42ff3bc2f7d126444529ee20da1f2e608557f8e5 -Author: Tommi Vainikainen -Date: Tue Jul 19 11:15:44 2011 +0300 - - Updated Finnish translation - - po/fi.po | 2051 ++++++++++++++++++++++++-------------------------------------- - 1 file changed, 797 insertions(+), 1254 deletions(-) - -commit 69837e0a601b0c46304d09b182234caa32a032d6 -Author: Priit Laes -Date: Mon Jul 18 15:35:47 2011 +0300 - - Fixed a typo - - src/ephy-main.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c6e61c010a412e027d9174fbb53687bba63f5811 -Author: Priit Laes -Date: Mon Jul 18 15:35:19 2011 +0300 - - Remove leftover from Gecko era - - src/Makefile.am | 1 - - 1 file changed, 1 deletion(-) - -commit 93507fc66f9f8cc456519936284220ab4e6f6cfd -Author: Diego Escalante Urrelo -Date: Sat Jul 16 18:46:09 2011 -0500 - - ephy-window: clear finished downloads when closing the downloads bar - - When a download finishes but you don't 'activate' it (open or browsing) the - widget stays alive on the downloads-bar, worse, if open or browse actions fail, - the download can't be removed from the bar. - - This commit clears finished downloads from the downloads-bar when it is closed - (with the X button). Hiding it will *not* trigger this cleanup. - - Bug #653918 - - src/ephy-window.c | 22 ++++++++++++++++++++++ - 1 file changed, 22 insertions(+) - -commit 2c8c5b280c0e84c264ea3bdbbabdead0046cd00a -Author: Diego Escalante Urrelo -Date: Sat Jul 16 19:11:51 2011 -0500 - - ephy-file-helpers: nautilus now highlights files - - You can now call nautilus on a full path and it will highlight the file in its - parent directory. - - Bug #654763 - - lib/ephy-file-helpers.c | 13 +------------ - 1 file changed, 1 insertion(+), 12 deletions(-) - -commit e1a78db5efc2773df289f91a5211da16ec2ba992 -Author: Josselin Mouette -Date: Sat Jul 16 18:59:58 2011 -0500 - - ephy-file-helpers: use correct inode/directory type - - Otherwise "Browse to" feature fails because we are using an obsolete mime type. - - Bug #651699 - - lib/ephy-file-helpers.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 24a9296f2a31839e7a290f9a51cda18cdab70482 -Author: Diego Escalante Urrelo -Date: Wed Jun 29 19:41:05 2011 -0500 - - src: clean leftover NetworkManager vars - - Bug #653695 - - src/Makefile.am | 2 -- - 1 file changed, 2 deletions(-) - -commit eb736a9d813e523e6529b985bb21be443f29c9d3 -Author: Diego Escalante Urrelo -Date: Wed Jun 29 19:16:47 2011 -0500 - - ephy-download-widget: unescape tooltips - - In ae374ca97044684d6a33bb11ae8bccac06a85b9f we forgot about the - tooltip. - - Bug #653690 - - lib/widgets/ephy-download-widget.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit a56c9573c11bd558249917d02b4f1902eb812324 -Author: Daniel Martinez Cucalon -Date: Thu Jul 14 11:33:54 2011 +0200 - - Updated Aragonese translation - - po/an.po | 462 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 252 insertions(+), 210 deletions(-) - -commit 16607f8b5e182389b6a228079a577cfca2ea9cf2 -Author: Jasper Lievisse Adriaanse -Date: Mon Jun 20 19:36:42 2011 +0200 - - Don't bypass g-ir-scanner's --pkg, especially when that's already passed. - - https://bugzilla.gnome.org/show_bug.cgi?id=653031 - - src/Makefile.am | 1 - - 1 file changed, 1 deletion(-) - -commit c22a0a929657f0148bbcabda4526b563e98204ae -Author: Rudolfs Mazurs -Date: Tue Jul 12 15:30:45 2011 +0300 - - Updated Latvian translation. - - po/lv.po | 671 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 364 insertions(+), 307 deletions(-) - -commit dd55c234501aa341501f51c9511079da32494483 -Author: David Aguilera -Date: Sun Jul 10 01:37:30 2011 +0200 - - [l10n]Updated Catalan documentation - - help/ca/ca.po | 50 +++++++++++++++++++++++++------------------------- - 1 file changed, 25 insertions(+), 25 deletions(-) - -commit 2ec31490f593e338f1517d2abab0773274d5be0c -Author: David Aguilera -Date: Fri Jul 8 00:58:17 2011 +0200 - - [l10n]Updated Catalan documentation - - help/ca/ca.po | 1247 +++++++++++++++++++++++++++++---------------------------- - 1 file changed, 630 insertions(+), 617 deletions(-) - -commit 27a3a2d17ba4472ffdeeb27420f380758ebb032d -Author: Abduxukur Abdurixit -Date: Thu Jul 7 16:25:51 2011 +0200 - - Added UG translation - - po/ug.po | 363 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 199 insertions(+), 164 deletions(-) - -commit ddfb904e0080cc647c2d3513164a04f95d15aa28 -Author: Xan Lopez -Date: Wed Jul 6 18:02:48 2011 +0200 - - ephy-location-entry: use new channel-{secure,insecure} symbolic icons - - Bug #650789 - - lib/widgets/ephy-location-entry.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 15d82ddc241b097f9af25682542489ee7937b231 -Author: Xan Lopez -Date: Tue Jul 5 17:09:42 2011 +0200 - - ephy-profile-migrator: use new g_utf8_substring - - lib/ephy-profile-migrator.c | 21 ++------------------- - 1 file changed, 2 insertions(+), 19 deletions(-) - -commit 8694bd70706d08145a8c4fe26008a5701c7fdf31 -Author: Xan Lopez -Date: Tue Jul 5 13:21:13 2011 +0200 - - [3.1.3] release - - NEWS | 18 ++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 19 insertions(+), 1 deletion(-) - -commit c1ecf8245ba6071c1fee3c5ccdacf247953decb2 -Author: Xan Lopez -Date: Mon Jul 4 17:17:02 2011 +0200 - - window-commands: make get_suggested_title a separate function - - We'll reuse it in the future. - - src/window-commands.c | 50 +++++++++++++++++++++++++++++--------------------- - 1 file changed, 29 insertions(+), 21 deletions(-) - -commit 1ff0d93c8d6a5c61d3f1d0cead7f3a0a19892f9d -Author: Xan Lopez -Date: Mon Jul 4 16:36:42 2011 +0200 - - ephy-window: remove unused resize idle handler id - - src/ephy-window.c | 7 ------- - 1 file changed, 7 deletions(-) - -commit d22d424aa8e31e5e8d82af60aeb133ee934bb950 -Author: Fran Dieguez -Date: Mon Jul 4 22:16:46 2011 +0200 - - Updated Galician translations - - po/gl.po | 124 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 66 insertions(+), 58 deletions(-) - -commit 733c318e0ba604df12d7918189c15cbea55419b8 -Author: Matej Urbančič -Date: Sat Jul 2 20:18:37 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 64 ++++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 34 insertions(+), 30 deletions(-) - -commit ad552b23c8d4200ce4afe5a6dfb30f6ae30e50d3 -Author: Yaron Shahrabani -Date: Sat Jul 2 10:50:32 2011 +0300 - - Updated Hebrew translation. - - po/he.po | 324 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 180 insertions(+), 144 deletions(-) - -commit 8dd5b11836cc8bfb3a77361486c400125be46fe5 -Author: Kjartan Maraas -Date: Sat Jul 2 01:38:43 2011 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 124 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 66 insertions(+), 58 deletions(-) - -commit 1ee6d400047fc1043d8a616a4bfbd7653cb8f7cc -Author: Daniel Mustieles -Date: Fri Jul 1 10:40:52 2011 +0200 - - Updated Spanish translation - - po/es.po | 104 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 54 insertions(+), 50 deletions(-) - -commit 6183aaaaa51d705b7f1b8c216ecc13091c215ef8 -Author: Muhammet Kara -Date: Fri Jul 1 01:42:43 2011 +0300 - - Updated Turkish translation - - po/tr.po | 130 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 66 insertions(+), 64 deletions(-) - -commit 31f5d743a17dc5df98a0ee2ba83643c668b0437d -Author: Claudio Saavedra -Date: Thu Jun 30 23:06:15 2011 +0300 - - Open a new window in the primary instance when remoting without URIs - - src/ephy-shell.c | 16 +++++++++++++--- - 1 file changed, 13 insertions(+), 3 deletions(-) - -commit 1ae608baef5b8bcef83218da71b5bc9c31bd20f4 -Author: Claudio Saavedra -Date: Thu Jun 30 22:46:55 2011 +0300 - - Delete trailing whitespaces in ephy-shell.c - - src/ephy-shell.c | 126 +++++++++++++++++++++++++++---------------------------- - 1 file changed, 63 insertions(+), 63 deletions(-) - -commit 70a4c5312e8ef182c94c15af4e9d10b3b79c4d18 -Author: Xan Lopez -Date: Thu Jun 30 17:30:56 2011 +0200 - - ephy-shell: use new HACKING style - - src/ephy-shell.c | 1428 ++++++++++++++++++++++++++---------------------------- - src/ephy-shell.h | 174 ++++--- - 2 files changed, 770 insertions(+), 832 deletions(-) - -commit 4b9dcfe60460ed45c5ad2b5020cdf678b1629850 -Author: Xan Lopez -Date: Thu Jun 30 17:06:20 2011 +0200 - - Add an --application-mode flag and global mode - - For now it's pretty much like a private instance, but: - - - A profile directory *must* be passed - - Global passwords and cookies are accessed. In the future we'll - likely restrict cookies to the ones for the web application domain, - which we'll copy from the main cookies file. - - embed/ephy-embed-shell.h | 3 ++- - src/ephy-main.c | 25 ++++++++++++++++++++----- - src/ephy-shell.c | 5 +++-- - 3 files changed, 25 insertions(+), 8 deletions(-) - -commit f594ec68442049ad9b6ecce598f2623e0ece9049 -Author: Xan Lopez -Date: Thu Jun 30 16:31:01 2011 +0200 - - Use an enum for the global mode of the application - - In preparation to add a new mode for WebApps. - - embed/ephy-embed-shell.c | 40 +++++++++++++++++++++------------------- - embed/ephy-embed-shell.h | 8 +++++++- - embed/ephy-embed-single.c | 2 +- - embed/ephy-web-view.c | 2 +- - src/ephy-main.c | 3 ++- - src/ephy-shell.c | 8 ++++---- - src/ephy-shell.h | 2 +- - src/pdm-dialog.c | 3 ++- - 8 files changed, 39 insertions(+), 29 deletions(-) - -commit 1b73fcdddb386855fb15cc61cf723f002743e7c0 -Author: Xan Lopez -Date: Thu Jun 30 03:09:45 2011 +0200 - - ephy-window: do not set the app for the window twice - - We already call gtk_application_add_window - - src/ephy-window.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 94cb05f6d2b15ad84e7f826c6c4edc7923d1586c -Author: Xan Lopez -Date: Thu Jun 30 02:59:17 2011 +0200 - - ephy-shell: set GApplication flags in constructed vmethod - - Cleaner than doing it in the constructor. - - src/ephy-shell.c | 23 +++++++++++++++++------ - 1 file changed, 17 insertions(+), 6 deletions(-) - -commit 0ea926b7639db07086101cb9bca0fc10b69c07c9 -Author: Xan Lopez -Date: Wed Jun 29 20:29:17 2011 +0200 - - ephy-shell: do not ref the shell more than needed - - We already guarantee that the app will stay up by adding the windows - to the GtkApplication, so stop reffing the shell in these callbacks. - - src/ephy-shell.c | 2 -- - 1 file changed, 2 deletions(-) - -commit eddaae421e4e38d8124f659b1bd8ff65162247e4 -Author: Xan Lopez -Date: Wed Jun 29 20:19:40 2011 +0200 - - Use GtkApplication's window tracking for EphyWindow too - - Instead of our own home-grown system. - - I think we should subclass window_added in GtkApplication and do there - the session & state stuff and get rid of ephy_session_add_window and - ephy_state_add_window. - - embed/ephy-embed-shell.c | 40 ---------------------------------------- - embed/ephy-embed-shell.h | 4 ---- - src/ephy-window.c | 2 +- - 3 files changed, 1 insertion(+), 45 deletions(-) - -commit 5b3154f5ddb95f162389340b178d6fc51b3a3bd7 -Author: Xan Lopez -Date: Wed Jun 29 20:03:40 2011 +0200 - - Always use the EphyEmbedShell to know if we are a private instance - - We can now get rid of the EphyFileHelpers method. - - embed/ephy-embed-single.c | 2 +- - embed/ephy-web-view.c | 2 +- - lib/ephy-file-helpers.c | 15 --------------- - lib/ephy-file-helpers.h | 1 - - src/pdm-dialog.c | 2 +- - 5 files changed, 3 insertions(+), 19 deletions(-) - -commit 4c444c0f7693b9a0f3058729bea04832b66d6214 -Author: Xan Lopez -Date: Wed Jun 29 19:55:28 2011 +0200 - - Merge EphyApplication into Ephy(Embed)Shell - - We want to use EphyApplication from embed/ too, so instead of - following the EphyEmbedShell/EphyShell pattern just fold the code into - the Shell itself. This makes sense since both classes have basically - the same function, and we can easily leave the non-embed code in - EphyShell and move to EphyEmbedShell the bits we want to be global. - - The better name would be EphyCoreApplication/EphyApplication for the - resulting object, but we can do this later. - - embed/ephy-embed-shell.c | 78 +++++++- - embed/ephy-embed-shell.h | 8 +- - src/Makefile.am | 4 - - src/ephy-application.c | 449 ---------------------------------------------- - src/ephy-application.h | 92 ---------- - src/ephy-main.c | 24 ++- - src/ephy-session.c | 8 +- - src/ephy-shell.c | 346 +++++++++++++++++++++++++++++++---- - src/ephy-shell.h | 36 +++- - src/ephy-window.c | 2 +- - tests/ephy-download.c | 2 +- - tests/ephy-embed-single.c | 2 +- - 12 files changed, 448 insertions(+), 603 deletions(-) - -commit 7628d25419c00d95da3e104ad6f132f4607b78c0 -Author: Xan Lopez -Date: Wed Jun 29 01:11:09 2011 +0200 - - ephy-application: use our private instance property - - Instead of relying on ephy-file-helpers global method. Down the road - we want to do this everywhere, but first we need some refactoring to - be able to use EphyApplication outside of src/. - - src/ephy-application.c | 16 +++++++++++++++- - src/ephy-application.h | 4 +++- - 2 files changed, 18 insertions(+), 2 deletions(-) - -commit c652dbec96495d77fb85860ce1a01008b48c56a1 -Author: Xan Lopez -Date: Wed Jun 29 00:39:55 2011 +0200 - - ephy-application: set G_APPLICATION_NON_UNIQUE inside the object - - Based on the private-instance paramater. - - src/ephy-application.c | 7 ++++++- - src/ephy-main.c | 8 -------- - 2 files changed, 6 insertions(+), 9 deletions(-) - -commit 841b59d9a2af4492c8c51a040ea164e46c5093b9 -Author: Xan Lopez -Date: Wed Jun 29 00:13:09 2011 +0200 - - ephy-application: add a private-instance property - - It does not do much at the moment, but we pass the information from - ephy-main.c to the app. - - src/ephy-application.c | 60 +++++++++++++++++++++++++++++++++++++++++++++++++- - src/ephy-application.h | 2 +- - src/ephy-main.c | 2 +- - src/ephy-shell.c | 2 +- - 4 files changed, 62 insertions(+), 4 deletions(-) - -commit 61b4a15531501833926b33a77f0416efc772a897 -Author: Xan Lopez -Date: Tue Jun 28 23:03:17 2011 +0200 - - ephy-window: do not assume there's always a location entry - - It won't be the case in web app mode. - - src/ephy-window.c | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - -commit f939f5ce3406a77b500e821815352d22ff410ab7 -Author: Xan Lopez -Date: Tue Jun 28 22:56:08 2011 +0200 - - Require an EphyApplication parameter when creating an EphyShell - - We'll want to create our own in main(), this prepares us for that. - - src/ephy-main.c | 5 +++-- - src/ephy-shell.c | 9 ++++++--- - src/ephy-shell.h | 2 +- - tests/ephy-download.c | 2 +- - tests/ephy-embed-single.c | 2 +- - 5 files changed, 12 insertions(+), 8 deletions(-) - -commit bd14d50456be46422d955a4290fb27e964a0b5b2 -Author: Matej Urbančič -Date: Wed Jun 29 12:13:42 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 182 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 93 insertions(+), 89 deletions(-) - -commit c42a4ed372afd82bd187d39b0775bee6b877d9e0 -Author: Daniel Mustieles -Date: Tue Jun 28 21:37:12 2011 +0200 - - Updated Spanish translation - - po/es.po | 234 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 116 insertions(+), 118 deletions(-) - -commit 8e83a6440b64167dde8d457ab3694cc37b457cf1 -Author: Xan Lopez -Date: Tue Jun 28 18:18:39 2011 +0200 - - ephy-main: use new indentation style - - src/ephy-main.c | 657 +++++++++++++++++++++++++++----------------------------- - 1 file changed, 321 insertions(+), 336 deletions(-) - -commit a72438a9279b47db4028d5e2a5bea2efeb791af2 -Author: Xan Lopez -Date: Tue Jun 28 17:37:26 2011 +0200 - - ephy-application: format prototypes - - src/ephy-application.h | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - -commit 444c593b9b9449ecd7dbfc5d7ad4c812f941c0f4 -Author: Xan Lopez -Date: Tue Jun 28 17:00:41 2011 +0200 - - ephy-window: the move tab actions should not depend on wrap-around - - They do not make sense on the first/last tab. - - src/ephy-window.c | 21 +++++++++------------ - 1 file changed, 9 insertions(+), 12 deletions(-) - -commit 94b6f749b951b28bb8024adc9d48cf2871bf3f01 -Author: Sergio Villar Senin -Date: Tue Jun 28 13:12:15 2011 +0200 - - Added ephy-application.h to the list of exported headers. - - We are currently exporting ephy-shell which has a dependency on - ephy-application. - - Fixes bug #653562 - - src/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7b740a66f80864abf24c2e8eddcfd624ef434ae7 -Author: Xan Lopez -Date: Mon Jun 27 21:48:44 2011 +0200 - - Respect gtk-keynav-wrap-around in the global change-page handler - - We have a global-handler for Ctrl+Page{Up,Down} that is used in some - situations (basically, when the notebook is not focused). It does not - respect the wrap-around GtkSetting though, so the final experience can - be inconsistent. - - src/ephy-window.c | 39 +++++++++++++++++++++++++-------------- - src/window-commands.c | 20 ++++---------------- - 2 files changed, 29 insertions(+), 30 deletions(-) - -commit 972de8b227165ed15f65c6401698501bdcd34565 -Author: José Aliste -Date: Mon Jun 27 14:30:54 2011 -0400 - - toolbareditor: Fix the removal of items by DnD. - - If the 'window-dragging' property of GtkToolbar is set (as it is in adwaita) - then the Toolbar starts the drag of the window on 'button-press' event. - We prevent this by connecting a handler for 'button-press' which prevents - the handler of the toolbar to be run while in edit mode. - - Fixes bug #647265 - - lib/egg/egg-editable-toolbar.c | 32 ++++++++++++++++++++++++++++++++ - 1 file changed, 32 insertions(+) - -commit 7a692429542c2b0455b195991642c3139427e16b -Author: Claudio Saavedra -Date: Mon Jun 27 20:44:27 2011 +0300 - - Silent a warning - - src/ephy-session.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 836a072b8a9404be59187f66f46c64998670a534 -Author: Xan Lopez -Date: Mon Jun 27 18:18:58 2011 +0200 - - Implement about:memory - - Gives an estimate of how much memory the browser process is using, - extracted from /proc/$PID/smaps. Only works in GNU/Linux systems. - - data/pages/about.css | 33 +++++ - lib/Makefile.am | 2 + - lib/ephy-request-about.c | 37 +++++- - lib/ephy-smaps.c | 337 +++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-smaps.h | 50 +++++++ - 5 files changed, 456 insertions(+), 3 deletions(-) - -commit fe909aa62629a5994dd643450b0de45e0e3f508d -Author: Xan Lopez -Date: Mon Jun 27 15:52:49 2011 +0200 - - ephy-embed-single: remove add-search-engine signal - - It's not used anymore. If we ever reimplement this we can add it - again. - - embed/ephy-embed-single.c | 22 ---------------------- - embed/ephy-embed-single.h | 5 ----- - 2 files changed, 27 deletions(-) - -commit 016b6995843919814f3768487ca161031d778d06 -Author: Claudio Saavedra -Date: Sat Jun 25 19:54:10 2011 +0300 - - Mark string parameters in ephy_session_queue_command() as const - - ephy_session_queue_command() doesn't take over the strings it - receives, so mark these as const for clarity. - - https://bugzilla.gnome.org/show_bug.cgi?id=622903 - - src/ephy-application.c | 6 +++--- - src/ephy-session.c | 2 +- - src/ephy-session.h | 2 +- - 3 files changed, 5 insertions(+), 5 deletions(-) - -commit 74d64e0199c769bb91caa04e127fb3b0c0a639fb -Author: Claudio Saavedra -Date: Fri Jun 24 23:35:47 2011 +0300 - - Ensure startup_context is not NULL before freeing it - - https://bugzilla.gnome.org/show_bug.cgi?id=622903 - - src/ephy-application.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit d40bac577b628a3db8ef90f8a862b80e8cb729c2 -Author: Claudio Saavedra -Date: Fri Jun 24 22:04:04 2011 +0300 - - Drop all dbus-glib code - - We still need to provide equivalent ways to activate epiphany, but we - will use GActions instead. - - https://bugzilla.gnome.org/show_bug.cgi?id=622903 - - configure.ac | 13 -- - src/Makefile.am | 34 +--- - src/ephy-activation.c | 102 ---------- - src/ephy-activation.h | 49 ----- - src/ephy-dbus.c | 548 -------------------------------------------------- - src/ephy-dbus.h | 95 --------- - 6 files changed, 3 insertions(+), 838 deletions(-) - -commit 795fe5c4213809c8d776843fab6dcc31848e8871 -Author: Xan Lopez -Date: Sun Jun 26 04:14:25 2011 +0200 - - configure.ac: we don't use startup-notification directly - - configure.ac | 2 -- - 1 file changed, 2 deletions(-) - -commit 06ece5c6d55c15bd3e6bac2f491008e8ceebb62b -Author: Muhammet Kara -Date: Sun Jun 26 03:39:13 2011 +0300 - - Updated Turkish translation file header - - po/tr.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 17c072554e3666ec03669e283361da44d0483039 -Author: Muhammet Kara -Date: Sun Jun 26 03:16:12 2011 +0300 - - Updated Turkish translation - - po/tr.po | 406 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 225 insertions(+), 181 deletions(-) - -commit 81b7d6c3ece40c5b42f253834e25bd71f45382b0 -Author: Xan Lopez -Date: Sat Jun 25 04:16:47 2011 +0200 - - popup-commands: make 'Use picture as background' work again - - Things are done differently in GNOME3. - - Bug #647604 - - src/popup-commands.c | 29 +++++++---------------------- - 1 file changed, 7 insertions(+), 22 deletions(-) - -commit 4a0ffa6fab9d64452e56504826f844f92a09c758 -Author: Милош Поповић -Date: Thu Mar 31 10:29:01 2011 +0200 - - Updated Serbian translation - - po/sr.po | 70 +++++++++++++++++++++++++++++++--------------------------- - po/sr@latin.po | 70 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 76 insertions(+), 64 deletions(-) - -commit fff20a2ee1761c9768bd2fd72f4c998d02d5b6cd -Author: Xan Lopez -Date: Fri Jun 24 16:30:32 2011 +0200 - - Use NM_STATE_CONNECTED_GLOBAL instead of the compat #define - - lib/ephy-network-manager-defines.h | 3 --- - src/ephy-shell.c | 2 +- - 2 files changed, 1 insertion(+), 4 deletions(-) - -commit 64ff9f8650277fdf849917a01dde4b18e67b046d -Author: Xan Lopez -Date: Fri Jun 24 16:12:18 2011 +0200 - - Copy&paste a few NM defines/enums we need at compile time - - This way we don't need a compile-time dependency on NetworkManager, - since we use it through the DBus APIs. - - configure.ac | 2 -- - lib/Makefile.am | 1 + - lib/ephy-network-manager-defines.h | 57 ++++++++++++++++++++++++++++++++++++++ - src/ephy-shell.c | 2 +- - 4 files changed, 59 insertions(+), 3 deletions(-) - -commit dafc2a996545008a9027f2e894ab784b62464c00 -Author: Xan Lopez -Date: Fri Jun 24 00:15:43 2011 +0200 - - Require NetworkManager - - It's not optional in GNOME 3 - - configure.ac | 31 +++++-------------------------- - src/Makefile.am | 17 +++++------------ - src/ephy-shell.c | 19 +------------------ - 3 files changed, 11 insertions(+), 56 deletions(-) - -commit 8415cf6da16201127aadb7853e3969ed824de919 -Author: Claudio Saavedra -Date: Tue Jun 21 01:17:06 2011 +0300 - - Implement GtkApplication based activation and uniqueness - - This replaces the existing dbus-glib activation and uniqueness code. - The changes are kept to the minimum necessary to make all the features - work, but there are still some optimizations possible (like doing most - of the initialization in ephy_application_startup() when we know we - are not remoting). These changes are left for later to avoid making - this patch huge. - - Command-line parameter parsing is done in the main method and - parameters are passed to the application through a - EphyApplicationStartupContext structure, which is later passed as a - GVariant to the primare instance. This way we avoid moving the - GOption code out of the place where it's intended to run: in the - main() method. - - Based in work by Alexandre Mazari. - - https://bugzilla.gnome.org/show_bug.cgi?id=637334 - - src/Makefile.am | 4 + - src/ephy-application.c | 369 +++++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-application.h | 90 ++++++++++++ - src/ephy-main.c | 287 +++++--------------------------------- - src/ephy-session.c | 6 + - src/ephy-shell.c | 26 ++++ - src/ephy-shell.h | 3 + - src/ephy-window.c | 2 + - 8 files changed, 537 insertions(+), 250 deletions(-) - -commit 3af15cdbcd31a7ac4eda748ae83180a228d30a80 -Author: Claudio Saavedra -Date: Thu Jun 23 23:18:37 2011 +0300 - - Use a gdbus-codegen generated GDBusProxy to monitor NM state - - 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 - - configure.ac | 1 + - data/Makefile.am | 1 + - data/ephy-network-manager.xml | 9 + - src/Makefile.am | 28 +++- - src/ephy-net-monitor.c | 374 ------------------------------------------ - src/ephy-net-monitor.h | 66 -------- - src/ephy-shell.c | 36 ++-- - 7 files changed, 52 insertions(+), 463 deletions(-) - -commit ab913fa36787366d68e08a0831403872d3e62ffc -Author: Fran Diéguez -Date: Tue Jun 21 14:00:18 2011 +0200 - - Updated Galician translations - - po/gl.po | 292 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 160 insertions(+), 132 deletions(-) - -commit aa6b11924a8569364f17e1fb2e3c30a9ab117dd3 -Author: Antoine Jacoutot -Date: Wed May 25 08:54:50 2011 +0200 - - eggsmclient-xsmp: fix warnings - - Bug #651030 - - lib/egg/eggsmclient-xsmp.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 1832d97b4da08d770758c0c6bec6c65bd96f54b0 -Author: Kjartan Maraas -Date: Sun Jun 19 17:39:08 2011 +0200 - - Updated Norwegian bokmål translation. - - po/nb.po | 258 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 143 insertions(+), 115 deletions(-) - -commit a7f72ff451fa26a6c47fff949db191571c7f3442 -Author: Daniel Mustieles -Date: Sun Jun 19 11:51:07 2011 +0200 - - Updated Spanish translation - - po/es.po | 211 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 121 insertions(+), 90 deletions(-) - -commit 96c1876a74ed83c7ae58721c4493d26352a0651c -Author: Xan Lopez -Date: Sun Jun 19 01:54:53 2011 +0200 - - ephy-request-about: fix typo - - lib/ephy-request-about.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1d5285f6b01bdab426c96dea26ec4c71d25f1f4e -Author: Xan Lopez -Date: Fri Jun 17 22:08:23 2011 +0200 - - ephy-embed-prefs: stop trying to use the GNOME font settings - - They are particularly ill-suited for us in GNOME 3: - - - font-name is Cantarell, which is not good as the sans-serif font in - the web. - - document-font-name, which we hoped would be a serif font, is "Sans - 11". - - So just give up and set "sans" "serif" and use whatever the system is - set up to do for that. In Fedora we will get DejaVu, which is not - particularly great, so ideally we should add code to get better - defaults. - - embed/ephy-embed-prefs.c | 44 +++++++------------------------------------- - 1 file changed, 7 insertions(+), 37 deletions(-) - -commit 1d8bceeea2064fc777336c3f5af15e3f3ac490c5 -Author: Xan Lopez -Date: Fri Jun 17 02:59:12 2011 +0200 - - ephy-request-about: some style fixes - - lib/ephy-request-about.c | 193 ++++++++++++++++++++++++----------------------- - lib/ephy-request-about.h | 8 +- - 2 files changed, 103 insertions(+), 98 deletions(-) - -commit 79ec93255d399de253d8fbf74bc93a7b24efb5ea -Author: Xan Lopez -Date: Wed Jun 15 18:16:56 2011 +0200 - - ephy-embed-prefs: plug a couple of leaks - - embed/ephy-embed-prefs.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 7db0b59252f18155cc2ee1755b46b69e9d44e86d -Author: Matej Urbančič -Date: Tue Jun 14 18:21:53 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 154 ++++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 92 insertions(+), 62 deletions(-) - -commit 47f2ef3ac8c130a54930d1e034b9b50cd53bec7e -Author: Xan Lopez -Date: Tue Jun 14 15:36:52 2011 +0200 - - configure.ac: hrm, 2.30 is not out yet - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8d08871ace1019111a50c47f473f565e4cb47307 -Author: Xan Lopez -Date: Thu Jun 9 23:57:24 2011 +0200 - - Use the generic marshaler throughout - - Just enough to get rid of ephy-marshal.h - - configure.ac | 2 +- - embed/ephy-download.c | 3 +-- - embed/ephy-embed-shell.c | 1 - - embed/ephy-embed-single.c | 7 +++---- - embed/ephy-history.c | 7 +++---- - embed/ephy-permission-manager.c | 1 - - embed/ephy-web-view.c | 13 ++++++------- - lib/Makefile.am | 23 ++--------------------- - lib/widgets/ephy-location-entry.c | 5 ++--- - lib/widgets/ephy-node-view.c | 5 ++--- - lib/widgets/ephy-tree-model-sort.c | 1 - - src/bookmarks/ephy-bookmarks.c | 3 +-- - src/ephy-dbus.c | 5 ++--- - src/ephy-link.c | 3 +-- - src/ephy-notebook.c | 1 - - src/ephy-tabs-menu.c | 1 - - 16 files changed, 24 insertions(+), 57 deletions(-) - -commit 42fc55f3abdabe3e17e5abd8ff78e68fa1ae5626 -Author: Xan Lopez -Date: Mon Jun 13 22:47:13 2011 +0200 - - [release] 3.1.2 - - NEWS | 16 ++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit 48af7536609e9e902694785901ee2ba3dc43f4f9 -Author: Xan Lopez -Date: Mon Jun 13 22:59:27 2011 +0200 - - POTFILES.in: add new file - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit 8bdee5f4dded2cea80e62b9402e138e7dc0f37c2 -Author: Martin Robinson -Date: Tue Apr 19 15:22:10 2011 -0700 - - Tweak the "Hide Menubar" UI options slightly. - - 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. - - data/ui/epiphany-ui.xml | 6 +++--- - src/ephy-window.c | 12 +++++------- - 2 files changed, 8 insertions(+), 10 deletions(-) - -commit 2591b899a411c78369a2455e3df61d72f9e4a9f6 -Author: Abduxukur Abdurixit -Date: Sat Jun 11 23:42:22 2011 +0200 - - Added UG translation - - po/ug.po | 6067 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 3042 insertions(+), 3025 deletions(-) - -commit 7f95e74c94aacb1be5516dfb64dd24abf1d12fe3 -Author: Matej Urbančič -Date: Sat Jun 11 17:37:16 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 311 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 166 insertions(+), 145 deletions(-) - -commit b130e1f89c752e0aa09dfbb62616ad0ec6792c36 -Author: Xan Lopez -Date: Fri Jun 10 16:48:30 2011 +0200 - - ephy-web-view: do not warn of modified forms for short text in input elements - - It's not likely the user is interested in saving this, and it's pretty - common (eg, google.com). - - embed/ephy-web-view.c | 25 +++++++++++++++++++++++-- - 1 file changed, 23 insertions(+), 2 deletions(-) - -commit 2ee1825bac5ec3db74798fd4ba9367dd55e0b363 -Author: Xan Lopez -Date: Fri Jun 10 02:50:46 2011 +0200 - - about.css: add comments to indicate which pages the css snippets belong to - - data/pages/about.css | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 46bc5c4ec06f35b545af7aa0ebf0ea09da7df07d -Author: Xan Lopez -Date: Fri Jun 10 02:48:26 2011 +0200 - - Blast from the past - - data/pages/about.css | 14 +++++++++++++- - lib/ephy-request-about.c | 27 +++++++++++++++++++++------ - 2 files changed, 34 insertions(+), 7 deletions(-) - -commit aca7c30d20069031c132b1aeb34b62bfd445153e -Author: Xan Lopez -Date: Fri Jun 10 02:32:51 2011 +0200 - - ephy-embed-utils: make URI normalization for about: generic - - embed/ephy-embed-utils.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit d732145429c8366b98e82c08ba092a6514ef913b -Author: Xan Lopez -Date: Thu Jun 9 21:13:31 2011 +0200 - - gedit-overlay: prevent underallocation warnings - - This is somewhat hacky, but we'll switch to GtkOverlay soon anyway. - - lib/widgets/gedit-overlay.c | 14 ++++++++++++-- - 1 file changed, 12 insertions(+), 2 deletions(-) - -commit 7084eadd14a1ba9013e1cb0206a7da5c2e23e014 -Author: Xan Lopez -Date: Thu Jun 9 20:31:14 2011 +0200 - - ephy-window: do not do spell check for the empty string - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit dca1e2ef7e8864cde8f7299da3ee3785132b17b1 -Author: Xan Lopez -Date: Thu Jun 9 20:04:10 2011 +0200 - - egg-toolbar-model: fix compiler model - - I don't think this is useful anymore? - - lib/egg/egg-toolbars-model.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit be870ea35d2f9e02ec30f6cc93a2ea23611100b4 -Author: Xan Lopez -Date: Thu Jun 9 20:02:36 2011 +0200 - - gedit-overlay: fix compiler warning - - lib/widgets/gedit-overlay.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ffae9a0909f5a12e510038840586044a77b7baec -Author: Claudio Saavedra -Date: Thu Jun 9 17:29:56 2011 +0300 - - Use GtkOrientable interface instead of deprecated V/H widgets - - Gtk[HV]Box, Gtk[HV]Separator, Gtk[HV]Paned are deprecated in GTK+ 3.2, - so let's use the GtkOrientable interface instead. - - GtkBox is likely to dissapear soon too, so a migration to GtkGrid - might be necessary at some point. - - https://bugzilla.gnome.org/show_bug.cgi?id=652201 - - embed/ephy-embed.c | 9 ++++++--- - embed/ephy-embed.h | 4 ++-- - embed/ephy-web-view.c | 4 ++-- - lib/egg/egg-editable-toolbar.c | 8 +++++--- - lib/egg/egg-editable-toolbar.h | 4 ++-- - lib/egg/egg-toolbar-editor.c | 8 +++++--- - lib/egg/egg-toolbar-editor.h | 4 ++-- - lib/widgets/ephy-download-widget.c | 5 ++++- - lib/widgets/ephy-download-widget.h | 4 ++-- - lib/widgets/ephy-zoom-control.c | 3 ++- - src/bookmarks/ephy-bookmark-action.c | 4 ++-- - src/bookmarks/ephy-bookmarks-editor.c | 10 +++++----- - src/bookmarks/ephy-topic-action.c | 2 +- - src/ephy-find-toolbar.c | 2 +- - src/ephy-fullscreen-popup.c | 4 ++-- - src/ephy-history-window.c | 6 +++--- - src/ephy-notebook.c | 2 +- - src/ephy-session.c | 2 +- - src/ephy-toolbar-editor.c | 2 +- - src/ephy-window.c | 6 +++--- - src/pdm-dialog.c | 2 +- - 21 files changed, 53 insertions(+), 42 deletions(-) - -commit 0f61b9bd7ab89b70f1323f08b4f26a27b005d62a -Author: Claudio Saavedra -Date: Thu Jun 9 17:25:08 2011 +0300 - - use gtk_box_pack_start() with EphyEmbed - - Using gtk_container_add() is a bad idea because default fill/expand - values can change, and they happened to do in GTK+ 3.1. - - https://bugzilla.gnome.org/show_bug.cgi?id=652201 - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d3a51491dd8a2e658ac52e951049a65c0ce383ac -Author: Kjartan Maraas -Date: Thu Jun 9 14:01:34 2011 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 274 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 143 insertions(+), 131 deletions(-) - -commit 776d6e39555c9063bb5f9862ceedac747e4353a7 -Author: Xan Lopez -Date: Thu Jun 9 01:28:41 2011 +0200 - - ephy-window: fix warning - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a0f0e5368807f17685ec8836be24eef43541e329 -Author: Xan Lopez -Date: Tue May 31 22:47:13 2011 +0200 - - Add suggestions to correct misspellings to the context menu - - 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. - - data/ui/epiphany-ui.xml | 5 ++++ - src/ephy-window.c | 76 +++++++++++++++++++++++++++++++++++++++++++++++-- - src/popup-commands.c | 27 ++++++++++++++++++ - src/popup-commands.h | 4 +++ - 4 files changed, 109 insertions(+), 3 deletions(-) - -commit 490f0b5228d4972ba16ce375cf3a6989a20ae113 -Author: Claudio Saavedra -Date: Wed Jun 8 17:39:56 2011 +0300 - - Simplify ephy_string_commandline_args_to_uris() - - No need to use realpath(3), we're in 2011 now. - - https://bugzilla.gnome.org/show_bug.cgi?id=652120 - - lib/ephy-string.c | 51 ++++++++++----------------------------------------- - 1 file changed, 10 insertions(+), 41 deletions(-) - -commit 769cf77926d58dc75e1f031b15433522ecd8d9a2 -Author: Claudio Saavedra -Date: Wed Jun 8 14:37:29 2011 +0300 - - Move the save/load accelerators methods to the ephy file utilities - - Second patch in an attempt to clean up ephy-main.c - - https://bugzilla.gnome.org/show_bug.cgi?id=652119 - - lib/ephy-file-helpers.c | 37 +++++++++++++++++++++++++++++++++++++ - lib/ephy-file-helpers.h | 2 ++ - src/ephy-main.c | 41 ++--------------------------------------- - 3 files changed, 41 insertions(+), 39 deletions(-) - -commit 82088320c652f34543c82b790adf82019320d5a4 -Author: Claudio Saavedra -Date: Wed Jun 8 14:28:10 2011 +0300 - - Add ephy_string_commandline_args_to_uris() to ephy string utilities - - This is the first patch in an attempt to simplify epiphany's main() - method, which is quite bulky by now. - - https://bugzilla.gnome.org/show_bug.cgi?id=652119 - - lib/ephy-string.c | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-string.h | 3 +++ - src/ephy-main.c | 68 ++++++++++------------------------------------------ - 3 files changed, 86 insertions(+), 56 deletions(-) - -commit 99193c87cd59cf1d913c7b9840148956d619c91c -Author: Mario Sanchez Prada -Date: Mon Jun 6 13:39:25 2011 +0200 - - Tweak style for close buttons in notebooks removing paddings and borders - - Set to zero 'default-border', 'default-outside-border', 'inner-border' - and 'padding' for the GtkButton, following the lead of GEdit. - - Bug #648116 - - src/ephy-notebook.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit 27f60858f567f2bee47ab0fac76ff39a33707c4d -Author: Fran Diéguez -Date: Mon Jun 6 00:34:48 2011 +0200 - - Updated Galician translations - - po/gl.po | 199 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 104 insertions(+), 95 deletions(-) - -commit dff30b763b98a49579d0a6296961ceb91216e68e -Author: Diego Escalante Urrelo -Date: Sun Oct 10 20:08:13 2010 -0500 - - ephy-embed-single: set_network_status needs to notify - - Otherwise ephy-window never finds out that the network-status has changed. - - Bug #624421 - - embed/ephy-embed-single.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 6395c6fc933ee70364f2f2269a0fbbe9391c92d6 -Author: Yaron Shahrabani -Date: Sat Jun 4 13:39:19 2011 +0300 - - Updated Hebrew translation. - - po/he.po | 203 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 106 insertions(+), 97 deletions(-) - -commit 05fcbd1bd368f8451c9b2062d7d3b66e0d7efacc -Author: Daniel Mustieles -Date: Sat Jun 4 10:34:44 2011 +0200 - - Updated Spanish translation - - po/es.po | 142 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 72 insertions(+), 70 deletions(-) - -commit 522d846720dce36821f9203b225613518744e4db -Author: Claudio Saavedra -Date: Fri Jun 3 16:11:53 2011 +0300 - - Remove an unnecessary g_strv_length() - - lib/ephy-request-about.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 89cd6749b82686ca78e8d44c5b3fb18fead02363 -Author: Sergio Villar Senin -Date: Wed Mar 30 09:36:08 2011 +0200 - - Added about:plugins support. - - We are now able to show a page with the list of installed plugins. - - Bug #575498 - - data/pages/Makefile.am | 6 +- - data/pages/about.css | 31 ++++++++ - embed/ephy-embed-single.c | 9 +++ - embed/ephy-embed-utils.c | 19 ++++- - embed/ephy-history.c | 12 ++- - embed/ephy-web-view.c | 8 ++ - lib/Makefile.am | 4 +- - lib/ephy-request-about.c | 149 ++++++++++++++++++++++++++++++++++++++ - lib/ephy-request-about.h | 37 ++++++++++ - lib/widgets/ephy-location-entry.c | 17 ++++- - 10 files changed, 282 insertions(+), 10 deletions(-) - -commit 813993d057e19bf9f7b1c091d165026c6dad8a41 -Author: Xan Lopez -Date: Tue May 31 22:32:00 2011 +0200 - - configure.ac: remove unused BUILDID variable - - configure.ac | 4 ---- - 1 file changed, 4 deletions(-) - -commit 2d041d8bb6b4a57a18cd211dc0488d5020b6f4e5 -Author: Xan Lopez -Date: Tue May 31 20:16:41 2011 +0200 - - configure.ac: require WebKitGTK+ 1.5.1 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 644d1c301ce4813283e1ce22935bc2357fe93c1b -Author: Xan Lopez -Date: Tue May 31 20:15:44 2011 +0200 - - ephy-web-view: warn about unsubmitted forms on close - - Reimplement this again, hopefully a lot more accurately now with - WebKit :) - - Bug #604986 - - embed/ephy-web-view.c | 33 +++++++++++++++++++++++++++++++++ - 1 file changed, 33 insertions(+) - -commit faf06ad3dd147216463c01d219f3da5ce9167ce9 -Author: Carles Ferrando -Date: Sun May 29 17:58:04 2011 +0200 - - [l10n]Updated Catalan (Valencian) translation - - po/ca@valencia.po | 2492 +++++++++++++++++++++++++++-------------------------- - 1 file changed, 1250 insertions(+), 1242 deletions(-) - -commit b4d35e3fa236d9f2defe795fdbb7112318ea967b -Author: Jorge González -Date: Tue May 24 23:07:13 2011 +0200 - - Added screenshots - - po/es.po | 180 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 94 insertions(+), 86 deletions(-) - -commit 604e2347f5447c8523f32680c3517c0540626e60 -Author: Xan Lopez -Date: Mon May 23 23:14:03 2011 +0200 - - prefs-dialog: add spacing between font selection comboboxes - - Bug #650702 - - data/glade/prefs-dialog.ui | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 3f84b79bfa35911bdfe3a196b042a278c4486e42 -Author: Xan Lopez -Date: Mon May 23 14:26:10 2011 +0200 - - Add optional spell checking, enabled by default - - Depends on WebKitGTK+ being built with spell check support, otherwise - it won't do anything. - - Based on a patch by Diego Escalante. - - data/glade/prefs-dialog.ui | 675 +++++++++++++++++++++------------ - data/org.gnome.epiphany.gschema.xml.in | 5 + - embed/ephy-embed-prefs.c | 26 ++ - lib/ephy-prefs.h | 1 + - src/prefs-dialog.c | 3 + - 5 files changed, 465 insertions(+), 245 deletions(-) - -commit 243e5e4985626aa44bfd0b74d17c478a4402e851 -Author: Xan Lopez -Date: Sun May 22 13:16:25 2011 +0200 - - ephy-location-entry: handle gracefully first call - - The set_stock_id method is called initially with NULL to set things - up. - - lib/widgets/ephy-location-entry.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit fb5aebd75337d9602de157670300e0a4a3473b91 -Author: Xan Lopez -Date: Sun May 22 12:29:47 2011 +0200 - - Stop propagating the "secure" boolean to the location action - - It was only used to figure out whether to paint the entry background - yellow, so we don't need it anymore. - - src/ephy-location-action.c | 21 --------------------- - src/ephy-toolbar.c | 5 ----- - src/ephy-toolbar.h | 1 - - src/ephy-window.c | 3 +-- - 4 files changed, 1 insertion(+), 29 deletions(-) - -commit ebc870195f52c780235dd477f8aa4ca1b23b6536 -Author: Xan Lopez -Date: Sun May 22 12:18:54 2011 +0200 - - ephy-location-entry: use symbolic icons for security state - - The code should probably be cleaned up to stop using the stock-id - defines, which don't make much sense anymore. - - lib/widgets/ephy-location-entry.c | 40 +++++++++++++++++++++++++++------------ - 1 file changed, 28 insertions(+), 12 deletions(-) - -commit 231b8a0bbba7479044d5fa57e805c142755df116 -Author: Xan Lopez -Date: Sun May 22 12:01:43 2011 +0200 - - ephy-location-entry: do not use a yellow background for secure sites - - Adds unneeded clutter to the entry, we'll just rely on a visible - symbolic lock icon when needed. - - lib/widgets/ephy-location-entry.c | 116 -------------------------------------- - lib/widgets/ephy-location-entry.h | 3 - - src/ephy-location-action.c | 15 ----- - 3 files changed, 134 deletions(-) - -commit 0bf62245971fca798531600bf5e961fbc7724db3 -Author: Xan Lopez -Date: Thu May 12 17:30:17 2011 -0700 - - ephy-profile-migrator: call g_type_init explicitly - - lib/ephy-profile-migrator.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4b2029408e475382fff02636591ab0f6e44409aa -Author: Daniel Martinez Cucalon -Date: Fri May 13 00:36:38 2011 +0200 - - Updated Aragonese translation - - po/an.po | 2647 +++++++++++++++++++++++++++----------------------------------- - 1 file changed, 1156 insertions(+), 1491 deletions(-) - -commit 92a37489abf637ff043e722079a37919f94c00a6 -Author: Yaron Shahrabani -Date: Mon May 9 00:46:55 2011 +0300 - - Updated Hebrew translation. - - po/he.po | 516 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 259 insertions(+), 257 deletions(-) - -commit 3fa228b61149c6e49687856d6dc41f7e2313e51e -Author: Xan Lopez -Date: Thu May 5 18:23:56 2011 -0700 - - egg-toolbars-model: free types list - - lib/egg/egg-toolbars-model.c | 1 + - 1 file changed, 1 insertion(+) - -commit 6d839481ccf0e1718f98df27b7cf6890d8059d5b -Author: Xan Lopez -Date: Thu May 5 17:37:46 2011 -0700 - - ephy-extensions-manager: plug leak - - src/ephy-extensions-manager.c | 1 + - 1 file changed, 1 insertion(+) - -commit 4b60d82f3722d98414fa3b03cac8b081fb79e429 -Author: Xan Lopez -Date: Thu May 5 14:03:20 2011 -0700 - - ephy-home-action: plug leak - - src/ephy-home-action.c | 1 + - 1 file changed, 1 insertion(+) - -commit a081c9755a52ab9c4e67edc465129988a0318bc2 -Author: Muhammet Kara -Date: Thu May 5 18:27:42 2011 +0300 - - Updated Turkish translation - - po/tr.po | 402 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 202 insertions(+), 200 deletions(-) - -commit 26c3476ba5e3c95ea9ac2d3aa31c812d7286ccc3 -Author: Kjartan Maraas -Date: Wed May 4 11:19:18 2011 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 440 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 222 insertions(+), 218 deletions(-) - -commit 0f62281e71152040283e4bf1bb399104a9723900 -Author: Daniel Korostil -Date: Mon May 2 03:11:05 2011 +0300 - - Uploaded Ukranian - - po/uk.po | 443 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 222 insertions(+), 221 deletions(-) - -commit 774782cbec8e624bb8c05afbaf28ec04853dd16e -Author: Abduxukur Abdurixit -Date: Sun May 1 19:53:47 2011 +0200 - - Added UG translation - - po/ug.po | 6050 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 3025 insertions(+), 3025 deletions(-) - -commit ea43a991f445a7fc91d06df2633ef4f9920ffc60 -Author: Xan Lopez -Date: Sun May 1 00:38:31 2011 -0700 - - Be smarter about tab grouping - - The previous patch was simply grouping new tabs in the current window - always, which is too much. For instance, we don't want to group - Ctrl+T. - - src/ephy-link.c | 4 ++-- - src/ephy-link.h | 7 ++++--- - src/ephy-window.c | 5 ++++- - 3 files changed, 10 insertions(+), 6 deletions(-) - -commit 87e2892e39713d4e2baa955d1c2b36cb194db8e4 -Author: Matej Urbančič -Date: Thu Apr 28 21:25:48 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 463 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 229 insertions(+), 234 deletions(-) - -commit d6e4b0c90bb67738b8986266c95d7a4c0b2760d6 -Author: Fran Diéguez -Date: Thu Apr 28 19:44:29 2011 +0200 - - Updated galician translations - - po/gl.po | 443 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 222 insertions(+), 221 deletions(-) - -commit ac6dcc46026f8a8e24f9210fd84b9485fc91409f -Author: Daniel Mustieles -Date: Wed Apr 27 20:14:33 2011 +0200 - - Updated Spanish translation - - po/es.po | 490 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 245 insertions(+), 245 deletions(-) - -commit a9a49a0ad7711e370686430d939b2d793644367a -Author: Xan Lopez -Date: Tue Apr 26 12:31:27 2011 -0700 - - ephy-bookmark-action: fix warning - - src/bookmarks/ephy-bookmark-action.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 14bcb3b6d08fcb2d84b836d70fb2c9d25604779b -Author: Xan Lopez -Date: Tue Apr 26 12:28:39 2011 -0700 - - ephy-overlay-escaping-child: fix warnings - - lib/widgets/ephy-overlay-escaping-child.c | 11 ++++++++--- - 1 file changed, 8 insertions(+), 3 deletions(-) - -commit bfb72ff6e28aaa22f62dc3364cc560f4215063be -Author: Alexandre Mazari -Date: Tue Apr 19 13:00:00 2011 +0200 - - Slide out the status overlay when the mouse pointer goes close by. - - This introduces a GeditOverlayChild subclass, listening to parent - overlay mouse events to define the escaping policy. - The distance from which the widget "escapes" the mouse pointer - can be set at construction time. - - https://bugzilla.gnome.org/show_bug.cgi?id=643909 - - embed/ephy-embed.c | 7 +- - lib/widgets/Makefile.am | 4 +- - lib/widgets/ephy-overlay-escaping-child.c | 307 ++++++++++++++++++++++++++++++ - lib/widgets/ephy-overlay-escaping-child.h | 56 ++++++ - lib/widgets/gedit-overlay.c | 2 +- - 5 files changed, 373 insertions(+), 3 deletions(-) - -commit 91fc5262d1c669bc8d543ef96d75ba0ba1b7cce0 -Author: Abduxukur Abdurixit -Date: Sun Apr 24 20:31:47 2011 +0200 - - Added UG translation - - po/ug.po | 316 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 182 insertions(+), 134 deletions(-) - -commit 30e3bd4ffc8adc85add63ab1551ca50b59a8420c -Author: Xan Lopez -Date: Sat Apr 23 12:13:39 2011 -0700 - - ephy-embed-prefs: plug a couple of leaks - - embed/ephy-embed-prefs.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 248142943ddbe8c980b52eb38fbb157039cb0b44 -Author: Arash Mousavi -Date: Fri Apr 22 13:35:35 2011 +0430 - - Updated Persian translation - - po/fa.po | 673 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 315 insertions(+), 358 deletions(-) - -commit 89e92f625178ff6e1177610f18076180f10630be -Author: Xan Lopez -Date: Wed Apr 20 11:07:03 2011 -0700 - - Think McFly, think! - - src/prefs-dialog.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5 -Author: Xan Lopez -Date: Wed Apr 20 01:14:05 2011 -0700 - - Remove a few GCC 4.6.0 warnings - - embed/ephy-download.c | 2 -- - embed/ephy-embed-prefs.c | 2 -- - lib/ephy-print-utils.c | 4 ---- - lib/ephy-state.c | 4 ---- - lib/widgets/ephy-node-view.c | 4 ---- - lib/widgets/ephy-zoom-control.c | 2 -- - src/bookmarks/ephy-bookmarks.c | 5 +---- - src/ephy-shell.c | 6 ------ - src/ephy-toolbar.c | 4 +--- - src/prefs-dialog.c | 4 +--- - tests/ephy-location-entry.c | 3 --- - 11 files changed, 3 insertions(+), 37 deletions(-) - -commit a78edd0144a01081ac254b40228c1b7c488df711 -Author: Bruce Cowan -Date: Wed Apr 20 13:01:41 2011 +0100 - - Updated British English translation - - po/en_GB.po | 137 +++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 71 insertions(+), 66 deletions(-) - -commit 05d631cb9b95e3be827cbfbcdeb569834a967959 -Author: Alexandre Mazari -Date: Mon Apr 18 18:30:58 2011 +0200 - - Import latest version of Gedit's overlay code. - - lib/widgets/gedit-overlay-child.c | 71 +++++++------- - lib/widgets/gedit-overlay.c | 190 +++++++++++++++++++++++++------------- - lib/widgets/gedit-overlay.h | 3 + - 3 files changed, 169 insertions(+), 95 deletions(-) - -commit 03d920eebb49fb9ecfda4ec00b669d1032caf587 -Author: Diego Escalante Urrelo -Date: Tue Apr 19 00:36:27 2011 -0500 - - prefs-dialog: rename "automatically open downloads" - - Change "automatically download and open files" to "automatically open - downloaded files", which is what actually happens. - - Bug #646453 - - data/glade/prefs-dialog.ui | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 351a6f2e63d8baf417865f108b334c9c9fd26b24 -Author: Diego Escalante Urrelo -Date: Wed Mar 23 19:47:51 2011 -0500 - - Add a preference to force internal view-source - - 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 - - data/org.gnome.epiphany.gschema.xml.in | 4 ++++ - lib/ephy-prefs.h | 1 + - src/window-commands.c | 44 ++++++++++++++++++++++++---------- - 3 files changed, 36 insertions(+), 13 deletions(-) - -commit bfc6e9f79606c6143ab106d00653ab6fc759c877 -Author: Danilo Šegan -Date: Mon Apr 18 21:52:37 2011 +0200 - - Open new tabs to the right of the current one even for location entry - Ctrl+Enter actions. - - Bug #647976 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit af770e0804aa904ff872f84d42c51aec93d7eea1 -Author: Gustavo Noronha Silva -Date: Sun Apr 17 14:48:28 2011 -0300 - - Only unset the value after we are done with the string for 'Save Link As...' - - We get the string from the GValue without making a copy, so we cannot - unset it before we are done using the string, otherwise we may end up - with our string pointing to garbage. - - Bug #646724 - - src/popup-commands.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit e802e029282a545966e6fe4951c00c4bb5425ea3 -Author: Marek Černocký -Date: Mon Apr 18 07:55:56 2011 +0200 - - Updated Czech translation - - po/cs.po | 359 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 181 insertions(+), 178 deletions(-) - -commit fb2b7803e35e7aad12cef6e0546a46f575b35153 -Author: Xan Lopez -Date: Sun Apr 17 19:06:21 2011 -0700 - - configure.ac: bump version to 3.1.0 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d50425cfd3009d18404d37bb245e8ebd5ac4b3d6 -Author: Xan Lopez -Date: Sun Apr 17 19:02:15 2011 -0700 - - Add UI options to hide the menubar - - 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. - - data/ui/epiphany-ui.xml | 3 +++ - src/ephy-window.c | 30 +++++++++++++++++++++++++++++- - 2 files changed, 32 insertions(+), 1 deletion(-) - -commit 9d106fb898a71bca2d0aa9233b72a6423627942e -Author: Gustavo Noronha Silva -Date: Sat Apr 16 17:02:19 2011 -0300 - - Do not save state for popup windows - - Bug #580951 - - src/ephy-window.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit 44fe7350b9c253d974b050d49c6f88b3d4ef8bdb -Author: Gustavo Noronha Silva -Date: Sat Apr 16 15:36:14 2011 -0300 - - Better behaviour when openning new windows that are resized as tabs - - When a new window is opened and given a specific size and position by - javascript, the request should only be respected if the new window is - being opened stand alone, and considered a popup. This fixes bad - behaviour observed when the new window became a tab on an existing - window and messed with its size. - - Bug #612155 - - embed/ephy-embed-prefs.c | 1 - - embed/ephy-embed.c | 39 +++++++++++++++++++++++++++++++++++++++ - 2 files changed, 39 insertions(+), 1 deletion(-) - -commit d436a108f1c30a5f937df2b05a5e5cbdf12b4d0a -Author: Gustavo Noronha Silva -Date: Sat Apr 16 16:11:08 2011 -0300 - - Mark windows with modified chrome as popups and only allow resizing for them - - A window with non-modified chrome will potentially be used as a normal - window for browsing - there's no reason why it should be different - from existing windows when it comes to resize policy. With this change - we consider windows with modified chrome as popups and only set a - default size on creation for popup windows. - - Bug #612155 - - src/ephy-window.c | 15 ++++++++++----- - 1 file changed, 10 insertions(+), 5 deletions(-) - -commit 0ec186343a500d2662a118ad5eb0fc67275a4f9f -Author: Xan Lopez -Date: Sun Apr 17 08:28:06 2011 -0700 - - popup-commands: also group tabs opened through the context menu - - src/popup-commands.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit d6ace50802104ef38d2272a6be4767de99923060 -Author: Xan Lopez -Date: Fri Apr 15 17:51:52 2011 -0700 - - Move overlay statusbar to EphyEmbed - - It's where it belongs, and it will make things easier for the - following patches in this area. - - embed/ephy-embed.c | 168 ++++++++++++++++++++++++++++++++++++++++++++- - embed/ephy-embed.h | 27 ++++++-- - embed/ephy-web-view.c | 183 -------------------------------------------------- - embed/ephy-web-view.h | 11 +-- - src/ephy-window.c | 26 +++---- - 5 files changed, 201 insertions(+), 214 deletions(-) - -commit 6a3082a962422d0d15b25914eaa3cbb17443d7ef -Author: Gustavo Noronha Silva -Date: Thu Apr 14 12:49:20 2011 -0300 - - Rely on WebKit doing the check for mixed symbols - - WebKit 1.4.0 checks if symbols are being mixed before loading a - plugin. That is more robust, so we should rely on it. - - Bug #647096 - - configure.ac | 2 +- - embed/ephy-embed-single.c | 14 -------------- - 2 files changed, 1 insertion(+), 15 deletions(-) - -commit ff8e1b4af8c8af5afffbfd3f5b1d7a660300dba5 -Author: Khaled Hosny -Date: Wed Apr 13 05:39:53 2011 +0200 - - Updated Arabic translation - - po/ar.po | 69 ++++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 37 insertions(+), 32 deletions(-) - -commit bb0023ebb20de4a464553f8714d1135de7966dd7 -Author: Xan Lopez -Date: Mon Apr 11 11:55:58 2011 -0700 - - ephy-embed-prefs: auto-shrink images by default - - This still has some issues, but until we figure them out I guess it's - much better to turn the preference on than off. - - embed/ephy-embed-prefs.c | 1 - - 1 file changed, 1 deletion(-) - -commit 53facd8a36948cfeee40ebc2fa8c38f7237e1cdf -Author: Alexander Shopov -Date: Sun Apr 10 08:49:51 2011 +0300 - - Updated Bulgarian translation - - po/bg.po | 33 +++++++++++++++++++-------------- - 1 file changed, 19 insertions(+), 14 deletions(-) - -commit a6f6c86468551d18ceda2bde3bd86f2bcc07d819 -Author: Xan Lopez -Date: Mon Apr 4 22:11:13 2011 -0700 - - Update copyright for 2011. - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6bb41fcb73f0fda05c3b64b67115f2380ca1ac73 -Author: Chao-Hsiung Liao -Date: Tue Apr 5 07:27:10 2011 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 33 +++++++++++++++++++-------------- - po/zh_TW.po | 33 +++++++++++++++++++-------------- - 2 files changed, 38 insertions(+), 28 deletions(-) - -commit e430e5f63fb258a03c6f50cec0e7565c0f24b09a -Author: Xan Lopez -Date: Mon Apr 4 16:00:13 2011 -0700 - - [release] 3.0.0 - - NEWS | 12 ++++++++++++ - configure.ac | 10 +++++----- - 2 files changed, 17 insertions(+), 5 deletions(-) - -commit 217a89de16465d8feaa3d3cd297b301b5e3a7757 -Author: Rudolfs Mazurs -Date: Mon Apr 4 19:33:49 2011 +0300 - - Updated Latvian translation. - - po/lv.po | 82 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 41 insertions(+), 41 deletions(-) - -commit b273f6afdc32fd92633a9a84cf710c3e81ec7c6f -Author: Lukas Lommer -Date: Mon Apr 4 15:44:02 2011 +0200 - - Updated Czech translation - - po/cs.po | 35 ++++++++++++++++++++--------------- - 1 file changed, 20 insertions(+), 15 deletions(-) - -commit 2a281e006d06bce31ed3885457b9e56a4b4d1422 -Author: Lukas Lommer -Date: Mon Apr 4 15:42:28 2011 +0200 - - Updated Czech translation - - po/cs.po | 1460 +++++++++++++++++++++----------------------------------------- - 1 file changed, 479 insertions(+), 981 deletions(-) - -commit 37091e506222c8ff6c3b1fd52b23fcadcdeee76c -Author: Mahyar Moghimi -Date: Mon Apr 4 17:11:22 2011 +0430 - - Updating Persian Translation - - po/fa.po | 4742 +++++++++++++++++++------------------------------------------- - 1 file changed, 1451 insertions(+), 3291 deletions(-) - -commit 43c7bb97933fbbaaa61225cd18e192871a1a294f -Author: Baris Cicek -Date: Mon Apr 4 07:46:13 2011 +0300 - - Updated Turkish translation - - po/tr.po | 2835 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1445 insertions(+), 1390 deletions(-) - -commit 0c170474c2873ee7b80182bd63b52338aafb3b75 -Author: George Stefanakis -Date: Sun Apr 3 21:22:27 2011 +0300 - - l10n: Updated Greek translation for epiphany - - po/el.po | 2445 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1222 insertions(+), 1223 deletions(-) - -commit 9240a95bf37fe37ca2a05a199709e922e4d65217 -Author: Yuri Myasoedov -Date: Sun Apr 3 20:25:19 2011 +0400 - - Updated Russian translation - - po/ru.po | 92 ++++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 43 insertions(+), 49 deletions(-) - -commit 741d6ecaca670a541c76f3aca95f1b1100c49ba2 -Author: Takayuki KUSANO -Date: Mon Apr 4 01:24:51 2011 +0900 - - Updated Japanese translation. - - po/ja.po | 2583 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1293 insertions(+), 1290 deletions(-) - -commit f82ade160f40cb6e05de3fb7a53274762651cc6f -Author: Xan Lopez -Date: Sat Apr 2 15:05:48 2011 -0700 - - egg-editable-toolbar: set a device to the DnD event - - Otherwise we'll crash inside GTK+. - - lib/egg/egg-editable-toolbar.c | 23 ++++++++++++----------- - 1 file changed, 12 insertions(+), 11 deletions(-) - -commit 6a4d6f0769186bb42546725327916b3a30ae06a0 -Author: 微尘 -Date: Sun Apr 3 01:58:59 2011 +0000 - - Update Simplified Chinese translation. - - po/zh_CN.po | 21 +++++++++++++-------- - 1 file changed, 13 insertions(+), 8 deletions(-) - -commit 1ebc84cc555a2f9c072444515daea451f64885a5 -Author: Ask H. Larsen -Date: Sat Apr 2 22:33:35 2011 +0200 - - Updated Danish translation - - po/da.po | 17 +++++++++++------ - 1 file changed, 11 insertions(+), 6 deletions(-) - -commit 14b0e2e15e24fcce614a7724a45904b436eb3460 -Author: Jordi Serratosa -Date: Sat Apr 2 20:55:15 2011 +0200 - - [l10n]Fixes on Catalan translation - - po/ca.po | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 1a5ee052801f04b4a21f9adcb754ea32c867503e -Author: Matej Urbančič -Date: Sat Apr 2 19:42:25 2011 +0200 - - Updated Slovenian translation - - po/sl.po | 71 +++++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 43 insertions(+), 28 deletions(-) - -commit 5f6a2850ed2357c0a47ed6e02b14af60c29b59d1 -Author: Jorge González -Date: Sat Apr 2 17:58:21 2011 +0200 - - Updated Spanish translation - - po/es.po | 173 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 86 insertions(+), 87 deletions(-) - -commit 3c75784c589124a4a1f82f6dc9521696fa028584 -Author: Wouter Bolsterlee -Date: Sat Apr 2 17:41:35 2011 +0200 - - Updated Dutch translation by Wouter Bolsterlee - - po/nl.po | 59 ++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 32 insertions(+), 27 deletions(-) - -commit 5e96bf7eacd12705d4d2b330460bb0da7ba0765d -Author: Dr.T.Vasudevan -Date: Sat Apr 2 20:55:42 2011 +0530 - - Updated Tamil translation - - po/ta.po | 33 +++++++++++++++++++-------------- - 1 file changed, 19 insertions(+), 14 deletions(-) - -commit 335eb991397fcb417d7732d317cfdfd82261cdc7 -Author: Changwoo Ryu -Date: Sat Apr 2 20:09:00 2011 +0900 - - Updated Korean translation - - po/ko.po | 57 +++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 31 insertions(+), 26 deletions(-) - -commit 67c5576b70bf06f65512886877ba6862d744aeec -Author: Fran Dieguez -Date: Sat Apr 2 00:55:13 2011 +0200 - - Updated Galician translations - - po/gl.po | 49 +++++++++++++++++++++++++++---------------------- - 1 file changed, 27 insertions(+), 22 deletions(-) - -commit d7d47462971e217c73c4967e986560c8532eed84 -Author: Gil Forcada -Date: Fri Apr 1 17:57:02 2011 +0200 - - [l10n]Updated Catalan translation - - po/ca.po | 49 +++++++++++++++++++++++++++---------------------- - 1 file changed, 27 insertions(+), 22 deletions(-) - -commit 48b80d4adaafe93a4745cbf900fceb141132b69d -Author: Gianvito Cavasoli -Date: Fri Apr 1 14:39:07 2011 +0200 - - [l10n] Updated Italian translation - - po/it.po | 1994 +++++++++++++++++++++++--------------------------------------- - 1 file changed, 727 insertions(+), 1267 deletions(-) - -commit bec683c2cc7388a6a5121cf803456ddba3014b38 -Author: Gabor Kelemen -Date: Fri Apr 1 13:52:52 2011 +0200 - - Updated Hungarian translation - - po/hu.po | 81 +++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 39 insertions(+), 42 deletions(-) - -commit e43cc5e53e1734a2e6419964235d80693bdffc6b -Author: Inaki Larranaga Murgoitio -Date: Fri Apr 1 10:39:16 2011 +0200 - - Updated Basque language - - po/eu.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6a369fd619a0ad803e93c2eee2f1878ac9dde0e3 -Author: Inaki Larranaga Murgoitio -Date: Thu Mar 31 09:56:37 2011 +0200 - - Updated Basque language - - po/eu.po | 67 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 33 insertions(+), 34 deletions(-) - -commit 9d7bd5818f3daee7288c8e25a8ad4b6b32dce5bd -Author: Claude Paroz -Date: Fri Apr 1 10:14:28 2011 +0200 - - Updated French translation - - po/fr.po | 49 +++++++++++++++++++++++++++---------------------- - 1 file changed, 27 insertions(+), 22 deletions(-) - -commit 9e844036d9862a55368c08135135c9675097aefb -Author: Kjartan Maraas -Date: Fri Apr 1 09:29:03 2011 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 49 +++++++++++++++++++++++++++---------------------- - 1 file changed, 27 insertions(+), 22 deletions(-) - -commit f6489db20bd3697725f3852aafd1191a5c35b9fa -Author: Duarte Loreto -Date: Thu Mar 31 22:56:36 2011 +0100 - - Updated Portuguese translation - - po/pt.po | 17 +++++++++++------ - 1 file changed, 11 insertions(+), 6 deletions(-) - -commit d3c37f06b12aaa5dd0192bce3bf99c8ecf858a0f -Author: Yaron Shahrabani -Date: Thu Mar 31 21:13:46 2011 +0200 - - Updated Hebrew translation. - - po/he.po | 55 ++++++++++++++++++++++++++++++------------------------- - 1 file changed, 30 insertions(+), 25 deletions(-) - -commit bb750734ae889972cfcc164e2082b135e8588362 -Author: Antonio Fernandes C. Neto -Date: Thu Mar 31 12:02:54 2011 -0300 - - Fixed typo in Brazilian Portuguese translation - - po/pt_BR.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 372900957676a2cef0d414d1e23b8015ff22fbb2 -Author: Antonio Fernandes C. Neto -Date: Thu Mar 31 11:49:44 2011 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 65 ++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 36 insertions(+), 29 deletions(-) - -commit 46fc2b35081abfc6eccf5fe4b4c5f2f269df962c -Author: Daniel Korostil -Date: Thu Mar 31 17:01:39 2011 +0300 - - Uploaded Ukranian - - po/uk.po | 66 ++++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 35 insertions(+), 31 deletions(-) - -commit 75f29f7817ee294c18fe744d082a3f48cf1fb680 -Author: Piotr Drąg -Date: Thu Mar 31 13:17:09 2011 +0200 - - Updated Polish translation - - po/pl.po | 63 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 32 insertions(+), 31 deletions(-) - -commit da7d592eb13170583239224b5d9712bb09884890 -Author: Mario Blättermann -Date: Thu Mar 31 09:43:54 2011 +0200 - - [l10n] Updated German translation - - po/de.po | 121 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 60 insertions(+), 61 deletions(-) - -commit 5c709227fb486dcc82edaa4ff49dcd6987621953 -Author: Daniel Nylander -Date: Thu Mar 31 08:32:06 2011 +0200 - - Updated Swedish translation - - po/sv.po | 57 +++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 31 insertions(+), 26 deletions(-) - -commit 100b402f07967fd23c1ff7129543b841205f4692 -Author: Xan Lopez -Date: Thu Mar 31 00:07:17 2011 +0200 - - ephy-file-helpers: respect our documented special keys for download dir - - 'Desktop' should be the desktop dir, 'Downloads' the downloads dir. If - the key is an actual path we'll use it, if all else fails default to - Desktop directory. - - Bug #644641 - - lib/ephy-file-helpers.c | 17 ++++++++++++++++- - 1 file changed, 16 insertions(+), 1 deletion(-) - -commit e7ce7a3783fb3a7ba04915b8c82cce6422f967ec -Author: Милош Поповић -Date: Thu Mar 31 01:42:27 2011 +0200 - - Updated Serbian translation - - po/sr.po | 2450 ++++++++++++++++++++++++++++---------------------------- - po/sr@latin.po | 2450 ++++++++++++++++++++++++++++---------------------------- - 2 files changed, 2428 insertions(+), 2472 deletions(-) - -commit d26efbb8f6c170ed6e36ca57496cffc71dd7ebbf -Author: Inaki Larranaga Murgoitio -Date: Tue Mar 29 11:27:24 2011 +0200 - - Updated Basque language - - po/eu.po | 1324 +++++++++++++++++++------------------------------------------- - 1 file changed, 399 insertions(+), 925 deletions(-) - -commit b0e49894e6f9abf0bf3aac7ba9b2f4f19501d912 -Author: Kenneth Nielsen -Date: Mon Mar 28 23:21:56 2011 +0200 - - Updated Danish translation - - po/da.po | 2625 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1311 insertions(+), 1314 deletions(-) - -commit 0a6dc91fcb1bbd4334fc5208867113694c8ec9dc -Author: Aron Xu -Date: Mon Mar 28 17:51:38 2011 +0000 - - Update Simplified Chinese translation. - - po/zh_CN.po | 838 +++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 428 insertions(+), 410 deletions(-) - -commit 2aff9b0c92ee6079d6703dce53d4cdc00b00abb4 -Author: Dr.T.Vasudevan -Date: Mon Mar 28 14:24:39 2011 +0530 - - Updated Tamil translation - - po/ta.po | 2438 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1223 insertions(+), 1215 deletions(-) - -commit ef90474eb63d88bcb03457c50b4cb1d28a440817 -Author: Abduxukur Abdurixit -Date: Sun Mar 27 19:20:32 2011 +0200 - - Added UG translation - - po/ug.po | 878 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 446 insertions(+), 432 deletions(-) - -commit 1260d82f9607c6059ef931087d954e0638ac3166 -Author: A S Alam -Date: Sat Mar 26 23:32:36 2011 +0530 - - update tranlation for Punjabi by A S Alam - - po/pa.po | 2484 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1255 insertions(+), 1229 deletions(-) - -commit e9f797ae28495d45a458ca39c437e39d7fa7957a -Author: Sandeep Shedmake -Date: Fri Mar 25 12:49:18 2011 +0530 - - Updated Marathi Translations - - po/mr.po | 2288 ++++++++++++++++++++++++-------------------------------------- - 1 file changed, 880 insertions(+), 1408 deletions(-) - -commit 5567ea7b627e66d601e6ef6e287547c44754f520 -Author: Luca Ferretti -Date: Wed Mar 23 16:41:38 2011 +0100 - - Use /org/gnome as starting path for schemas - - data/org.gnome.epiphany.gschema.xml.in | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit a257415a802566f27ac7e6bc9a34e6c9d4132bb3 -Author: William Jon McCann -Date: Thu Mar 24 14:43:53 2011 -0400 - - Use the web-browser icon from the GNOME icon theme - - Instead of the low res version shipped internally. - - https://bugzilla.gnome.org/show_bug.cgi?id=645713 - - data/epiphany.desktop.in.in | 2 +- - ...gePrintInverse_apps_48x48_gnome-web-browser.png | Bin 2749 -> 0 bytes - ...rastLargePrint_apps_48x48_gnome-web-browser.png | Bin 2715 -> 0 bytes - ...rastLargePrint_apps_48x48_gnome-web-browser.png | Bin 3335 -> 0 bytes - data/icons/Makefile.am | 56 +- - .../icons/hicolor_apps_16x16_gnome-web-browser.png | Bin 982 -> 0 bytes - .../icons/hicolor_apps_16x16_gnome-web-browser.svg | 853 --------------- - .../icons/hicolor_apps_22x22_gnome-web-browser.png | Bin 1585 -> 0 bytes - .../icons/hicolor_apps_22x22_gnome-web-browser.svg | 1069 ------------------- - .../icons/hicolor_apps_24x24_gnome-web-browser.png | Bin 1601 -> 0 bytes - .../icons/hicolor_apps_32x32_gnome-web-browser.png | Bin 2645 -> 0 bytes - .../icons/hicolor_apps_32x32_gnome-web-browser.svg | 1082 -------------------- - .../hicolor_apps_scalable_gnome-web-browser.svg | 917 ----------------- - lib/ephy-stock-icons.h | 2 +- - 14 files changed, 4 insertions(+), 3977 deletions(-) - -commit a4b7844bb6ad0c25477f0bd8918a3edc33198f3e -Author: Chao-Hsiung Liao -Date: Thu Mar 24 18:38:04 2011 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 761 ++++++++++++++++++++++++++++++----------------------------- - po/zh_TW.po | 762 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 780 insertions(+), 743 deletions(-) - -commit 7db8d429c3351553fa8a5677ef2e9576f5aaac58 -Author: Krasimir Chonov -Date: Wed Mar 23 11:18:16 2011 +0200 - - Updated Bulgarian translation - - po/bg.po | 678 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 309 insertions(+), 369 deletions(-) - -commit cc5d7e3ed636da9aa59045d62e31eb0e7a90fe3a -Author: Xan Lopez -Date: Tue Mar 22 13:29:31 2011 +0100 - - [release] 2.91.92 - - NEWS | 11 +++++++++++ - configure.ac | 4 ++-- - 2 files changed, 13 insertions(+), 2 deletions(-) - -commit be76587761d6665a78cddf03b5ab5e16cfa16ecc -Author: Xan Lopez -Date: Tue Mar 22 12:28:00 2011 +0100 - - configure.ac: bump webkitgtk+ dependency to 1.3.13 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f19b91faed1e92227f5ebac4f7f3927afe531768 -Author: Duarte Loreto -Date: Mon Mar 21 00:25:13 2011 +0000 - - Updated Portuguese translation - - po/pt.po | 759 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 384 insertions(+), 375 deletions(-) - -commit 97984e11d2eccdb3378c4701af72705eba6733ab -Author: Rudolfs Mazurs -Date: Sun Mar 20 16:55:39 2011 +0200 - - Updated Latvian translation. - - po/lv.po | 2110 +++++++++++--------------------------------------------------- - 1 file changed, 368 insertions(+), 1742 deletions(-) - -commit d3963270d5203db1989ddebd20d3e0d83c459e47 -Author: Changwoo Ryu -Date: Sat Mar 19 22:19:36 2011 +0900 - - Updated Korean translation - - po/ko.po | 719 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 374 insertions(+), 345 deletions(-) - -commit 5826aef165d4665fc953291249aa9b8f1dfe7330 -Author: Xan Lopez -Date: Fri Mar 18 18:26:47 2011 +0100 - - ephy-web-view: use new API for DOM events - - This requires WebKitGTK+ r81486, soon to be 1.3.13. - - embed/ephy-web-view.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit e3c0b04539bf06bd4b869a33ed4e2ff2c69e9446 -Author: Gintautas Miliauskas -Date: Thu Mar 17 16:10:57 2011 +0100 - - Updated Lithuanian translation. - - po/lt.po | 2865 ++++++++++++++++---------------------------------------------- - 1 file changed, 739 insertions(+), 2126 deletions(-) - -commit 0a437f699f5bd293838ea7a6617e98c0846a7c8b -Author: Mario Blättermann -Date: Thu Mar 17 11:45:44 2011 +0100 - - [l10n] Updated German translation - - po/de.po | 905 +++++++++++++++++++++++++-------------------------------------- - 1 file changed, 360 insertions(+), 545 deletions(-) - -commit a2d356bc6b8f6fcf4ed891d129f8f71e6c2be27a -Author: Lucian Adrian Grijincu -Date: Thu Mar 17 11:37:41 2011 +0100 - - Updated Romanian translation - - po/ro.po | 650 +++------------------------------------------------------------ - 1 file changed, 30 insertions(+), 620 deletions(-) - -commit e21f6f32a9baf29bb36e1656f5f017c54bd3f5b3 -Author: Simion Ruxandra -Date: Thu Mar 17 11:34:17 2011 +0100 - - Updated Romanian translation - - po/ro.po | 296 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 142 insertions(+), 154 deletions(-) - -commit 694a78fceb87dbd58348bff69f311a8a8868cd38 -Author: Lucian Adrian Grijincu -Date: Thu Mar 17 11:19:42 2011 +0100 - - Updated Romanian translation - - po/ro.po | 2690 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1445 insertions(+), 1245 deletions(-) - -commit eeeae8058216b3cb2c73296418ce18f0ddcbd348 -Author: Kjartan Maraas -Date: Thu Mar 17 09:56:45 2011 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 52 ++++++++++++++++++++++++---------------------------- - 1 file changed, 24 insertions(+), 28 deletions(-) - -commit 5b709dfed1a48b3acab03624fcb757ec874e9f83 -Author: Javier Jardón -Date: Sat Mar 5 17:55:30 2011 +0000 - - configure: Do not use deprecated GNOME_COMMON_INIT - - We already have ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} in - our Makefile.am - - https://bugzilla.gnome.org/show_bug.cgi?id=609498 - - configure.ac | 2 -- - 1 file changed, 2 deletions(-) - -commit aae3c1a662d4556e0284a85cfe8d3f47a09491ba -Author: Javier Jardón -Date: Sat Mar 5 17:53:45 2011 +0000 - - configure: Use the new libtool syntax - - https://bugzilla.gnome.org/show_bug.cgi?id=609498 - - configure.ac | 7 ++----- - 1 file changed, 2 insertions(+), 5 deletions(-) - -commit e0d8bf014ad6f6c902609369d06e0b48f43aff51 -Author: Bruce Cowan -Date: Wed Mar 16 17:17:22 2011 +0000 - - Updated British English translation - - po/en_GB.po | 2425 +++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1206 insertions(+), 1219 deletions(-) - -commit 8925f4eadaf87ded0576538326fa494725599cac -Author: Reinout van Schouwen -Date: Tue Mar 15 22:16:32 2011 +0100 - - Updated Dutch translation by Reinout van Schouwen - - po/nl.po | 2939 ++++++++------------------------------------------------------ - 1 file changed, 365 insertions(+), 2574 deletions(-) - -commit c69f4a0d30651cb54cebaa981b79fd0416726e5e -Author: Gil Forcada -Date: Tue Mar 15 21:08:07 2011 +0100 - - [l10n]Updated Catalan translation - - po/ca.po | 705 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 362 insertions(+), 343 deletions(-) - -commit 788ad74c29f760b6bfae6966dcdcdca1ad6ef8c5 -Author: Fran Diéguez -Date: Tue Mar 15 15:30:13 2011 +0100 - - Updated Galician translations - - po/gl.po | 773 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 398 insertions(+), 375 deletions(-) - -commit 9757866d525bbaf93fb4b1aa262daf00e2fa4a5f -Author: Bruno Brouard -Date: Mon Mar 14 19:34:06 2011 +0100 - - Updated French translation - - po/fr.po | 1218 ++++++++++++++++++-------------------------------------------- - 1 file changed, 348 insertions(+), 870 deletions(-) - -commit dfaf32f7a510e89adce9bd6fc3775b05a209f5cd -Author: Henrique P. Machado -Date: Mon Mar 14 11:17:27 2011 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 2435 ++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1221 insertions(+), 1214 deletions(-) - -commit 36f7fc7eb0d34f81aa2a3875d0e3097da184c09d -Author: Ivar Smolin -Date: Sun Mar 13 20:44:23 2011 +0200 - - [l10n] Updated Estonian translation - - po/et.po | 354 ++++++++++++++++++++++++++------------------------------------- - 1 file changed, 143 insertions(+), 211 deletions(-) - -commit a3556732dfcb68a5db1138bc432d99aa4008895a -Author: Gustavo Noronha Silva -Date: Sat Mar 12 11:45:08 2011 -0300 - - Fix warning in ephy-session.c. - - src/ephy-session.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 05df86164b7aa8286cf8353355378145cf64b656 -Author: Gustavo Noronha Silva -Date: Sat Mar 12 00:08:51 2011 -0300 - - Open requested URI in new tab when a crashed session exists - - When you ask Epiphany to load a new URI but a crashed session exists, - the session was being completely discarded in favour of the new - URI. This change causes the URI to be loaded in a new tab in the - background while still presenting the user with the option to recover - the session. - - Bug #625116 - - src/ephy-session.c | 32 +++++++++++++++++++++++--------- - 1 file changed, 23 insertions(+), 9 deletions(-) - -commit 9801a1a369481e69e360ffa76b3521daa8370b88 -Author: Gustavo Noronha Silva -Date: Fri Mar 11 23:05:04 2011 -0300 - - Unset resume_window when the session has been resumed - - The resume_window private variable is used to track whether a resume - has already been done. This causes tabs to be reused after the session - has been restored when new tabs should have been created. - - Bug #625116 - - src/ephy-session.c | 1 + - 1 file changed, 1 insertion(+) - -commit 747284a96cffeec3b9a4738ad38a46c7f2dac585 -Author: Gustavo Noronha Silva -Date: Sat Mar 12 11:14:02 2011 -0300 - - Do not include removed header - - Building epiphany extensions was failing because epiphany.h sitll - included a header that is not longer present in Epiphany. - - src/epiphany.h.in | 1 - - 1 file changed, 1 deletion(-) - -commit 3010236814e202daff2edab57c054f081ad04d8d -Author: Xan Lopez -Date: Sat Mar 12 14:38:04 2011 +0100 - - [release] 2.91.91.1 - - NEWS | 13 +++++++++++++ - configure.ac | 2 +- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 775326c490fdaf106d983cd17391c776dec3856d -Author: Daniel Nylander -Date: Fri Mar 11 23:55:10 2011 +0100 - - Updated Swedish translation - - po/sv.po | 833 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 416 insertions(+), 417 deletions(-) - -commit 74ac0397a10d685b558689f223181446fe7dd75a -Author: Saleem Abdulrasool -Date: Thu Mar 10 22:40:02 2011 -0800 - - shell: fix toolbar style enum - - lib/ephy-prefs.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 9c0afb0fc36ef68c3d62d82d8c0fa9e5782af87f -Author: Saleem Abdulrasool -Date: Thu Mar 10 21:54:17 2011 -0800 - - ignore vim swap files - - .gitignore | 1 + - 1 file changed, 1 insertion(+) - -commit f0d4fcbb31aa233ec0245a0660f34a3df858d18c -Author: Matej Urbančič -Date: Fri Mar 11 20:41:19 2011 +0100 - - Updated Slovenian translation - - po/sl.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 5dc4fb834beaeb9572eea176cba7b02e4ab4404e -Author: Matej Urbančič -Date: Fri Mar 11 20:40:04 2011 +0100 - - Updated Slovenian translation - - po/sl.po | 1888 +++++++++++++++++++++++++------------------------------------- - 1 file changed, 745 insertions(+), 1143 deletions(-) - -commit b4cda077a3c24129d671ff1ead5cb5edf2e05df0 -Author: Martin Robinson -Date: Fri Mar 11 09:43:55 2011 -0800 - - Select the serif font as the default web font. - - To match the behavior of other browsers, the default web content font - is the serif font, instead of the sans-serif font. - - Bug #644523. - - embed/ephy-embed-prefs.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit d9988616e498950ffa1c48023c715acf20c06958 -Author: Martin Robinson -Date: Fri Mar 11 09:31:02 2011 -0800 - - Improve the selection of the system serif font. - - Instead of using the Gnome interface font as the default serif font, use the - Gnome document font. The document font has an increased chance of being a serif - font over the interface font. - - Bug #644521 - - embed/ephy-embed-prefs.c | 9 ++++----- - 1 file changed, 4 insertions(+), 5 deletions(-) - -commit 49455469a50207339759ec980e16d3bfdcb6d2fb -Author: Khaled Hosny -Date: Fri Mar 11 16:06:35 2011 +0200 - - Updated Arabic translation - - po/ar.po | 746 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 392 insertions(+), 354 deletions(-) - -commit 0750e45e306aa041451f44eb6234c4438dab1845 -Author: Yaron Shahrabani -Date: Thu Mar 10 18:53:29 2011 +0200 - - Updated Hebrew translation. - - po/he.po | 845 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 427 insertions(+), 418 deletions(-) - -commit fb54055dc00cb2f571df9003bd9c2053480d8b9b -Author: Gabor Kelemen -Date: Thu Mar 10 02:24:04 2011 +0100 - - Updated Hungarian translation - - po/hu.po | 1899 +++++++++++++++++++++++--------------------------------------- - 1 file changed, 686 insertions(+), 1213 deletions(-) - -commit a30bb549386f7841c657a1a9d12f13495a1cdf2b -Author: Xan Lopez -Date: Wed Mar 9 22:30:20 2011 +0100 - - ephy-window: set visibility for fixed toolbar after setting the model - - We need to do the same when leaving Fullscreen mode, otherwise the - fixed toolbar remains visibile... - - src/ephy-window.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit b6746587a1936ece94803e3d04ff43ad8510575f -Author: Xan Lopez -Date: Wed Mar 9 22:24:47 2011 +0100 - - ephy-window: hide fixed toolbar by default - - EggEditableToolbar shows it by default, but we only want it visible in - Fullscreen mode. - - src/ephy-window.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 97918aba30dc791a9e06323c014d6a5631121680 -Author: Xan Lopez -Date: Tue Mar 8 23:07:00 2011 +0100 - - Remove minimum font size setting from UI - - 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 - - data/glade/prefs-dialog.ui | 37 ---------------------------------- - data/org.gnome.epiphany.gschema.xml.in | 2 +- - src/prefs-dialog.c | 3 --- - 3 files changed, 1 insertion(+), 41 deletions(-) - -commit 5bad61bdd27b8d9578951bc6823f1dd8ea092aea -Author: Piotr Drąg -Date: Wed Mar 9 19:44:56 2011 +0100 - - Updated Polish translation - - po/pl.po | 2058 ++++++++++++++++++++++---------------------------------------- - 1 file changed, 739 insertions(+), 1319 deletions(-) - -commit 298ab0383541b0c7b8864910c68b0accb96ae57a -Author: Daniel Mustieles -Date: Wed Mar 9 19:33:43 2011 +0100 - - Updated Spanish translation - - po/es.po | 709 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 370 insertions(+), 339 deletions(-) - -commit 8c0de50e21583803417f55bfb43c68b25798dc4a -Author: Daniel Korostil -Date: Wed Mar 9 18:18:26 2011 +0200 - - Uploaded Ukranian - - po/uk.po | 740 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 384 insertions(+), 356 deletions(-) - -commit fde6cde5055683611da249c719894928a0a1c20d -Author: Cosimo Cecchi -Date: Tue Mar 8 19:49:13 2011 -0500 - - toolbar: fix a typo in last commit - - lib/egg/egg-editable-toolbar.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 4408cb9c396ee85e031a18763e1f80c9c5550880 -Author: Cosimo Cecchi -Date: Tue Mar 8 19:08:50 2011 -0500 - - toolbar: make sure the first toolbar gets the 'primary-toolbar' class - - https://bugzilla.gnome.org/show_bug.cgi?id=644261 - - lib/egg/egg-editable-toolbar.c | 53 ++++++++++++++++++++++++++++++++++++++---- - lib/egg/egg-editable-toolbar.h | 4 ++++ - src/ephy-toolbar.c | 2 ++ - 3 files changed, 55 insertions(+), 4 deletions(-) - -commit 7090a15a48f4371aba7b4ccf823bc0236afb1f03 -Author: Kjartan Maraas -Date: Tue Mar 8 14:57:27 2011 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 632 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 288 insertions(+), 344 deletions(-) - -commit 7354a242ddb71fa4db43702faf0b595bbdd5c069 -Author: Yuri Myasoedov -Date: Tue Mar 8 10:52:53 2011 +0300 - - Updated Russian translation - - po/ru.po | 704 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 327 insertions(+), 377 deletions(-) - -commit 3a9ea909f5ccd39cfa5bc6e5be2cd8057bad0091 -Author: Xan Lopez -Date: Mon Mar 7 23:58:13 2011 +0100 - - [release] 2.91.91 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ae374ca97044684d6a33bb11ae8bccac06a85b9f -Author: Diego Escalante Urrelo -Date: Mon Mar 7 16:00:41 2011 -0500 - - ephy-download-widget: unescape displayed filenames - - Avoid having %20 and similar things in the widget labels. - - lib/widgets/ephy-download-widget.c | 13 +++++++++---- - 1 file changed, 9 insertions(+), 4 deletions(-) - -commit ffd4f4aea7cd38d28c4160162e7c01afeef00b3a -Author: Diego Escalante Urrelo -Date: Mon Mar 7 15:59:57 2011 -0500 - - ephy-window: retitle the show-downloads-bar item - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6c42b658006e2008fb6bd39b81c5812e6e9b0e52 -Author: Xan Lopez -Date: Mon Mar 7 21:20:28 2011 +0100 - - NEWS: update for release - - NEWS | 15 +++++++++++++++ - 1 file changed, 15 insertions(+) - -commit 7401732bd891a71209e9a05458054be0514c129e -Author: Diego Escalante Urrelo -Date: Tue Jan 18 13:48:28 2011 -0500 - - ephy-window: add new downloads UI - - 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 - - data/ui/epiphany-ui.xml | 1 + - src/ephy-window.c | 182 ++++++++++++++++++++++++++++++++++++++++++++++-- - src/ephy-window.h | 3 + - 3 files changed, 179 insertions(+), 7 deletions(-) - -commit 1463005c1bc7e30be973876db0c324021222cd8c -Author: Diego Escalante Urrelo -Date: Wed Jan 26 16:01:43 2011 -0500 - - ephy-download-widget: new widget - - A widget showing the progress of an EphyDownload and offering the default set - of actions to take on it: Open, Browse to, Cancel. - It keeps a ref to the EphyDownload its showing. - - Bug #618443 - - lib/widgets/Makefile.am | 5 + - lib/widgets/ephy-download-widget.c | 507 +++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-download-widget.h | 68 +++++ - lib/widgets/totem-glow-button.c | 351 +++++++++++++++++++++++++ - lib/widgets/totem-glow-button.h | 52 ++++ - po/POTFILES.in | 1 + - src/Makefile.am | 2 + - 7 files changed, 986 insertions(+) - -commit b9f9bf1a0763492f8bf41b8856bbd1149c5871a9 -Author: Diego Escalante Urrelo -Date: Tue Jan 18 11:10:11 2011 -0500 - - ephy-download: add the new EphyDownload object - - 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 - - data/glade/epiphany.ui | 80 ---- - embed/Makefile.am | 6 +- - embed/downloader-view.c | 1022 -------------------------------------------- - embed/downloader-view.h | 84 ---- - embed/ephy-download.c | 965 +++++++++++++++++++++++++++++++++++++++++ - embed/ephy-download.h | 115 +++++ - embed/ephy-embed-persist.c | 911 --------------------------------------- - embed/ephy-embed-persist.h | 132 ------ - embed/ephy-embed-shell.c | 144 ++++--- - embed/ephy-embed-shell.h | 16 +- - embed/ephy-embed.c | 476 +-------------------- - lib/ephy-marshal.list | 1 + - po/POTFILES.in | 3 +- - src/Makefile.am | 4 +- - src/ephy-session.c | 21 +- - src/ephy-shell.c | 1 - - src/ephy-window.c | 1 - - src/epiphany.h.in | 1 + - src/popup-commands.c | 160 ++++--- - src/window-commands.c | 1 - - tests/Makefile.am | 6 +- - tests/ephy-download.c | 207 +++++++++ - tests/ephy-embed-persist.c | 315 -------------- - 23 files changed, 1494 insertions(+), 3178 deletions(-) - -commit 7f7826a163f31bb662247ac4486dca0d01df35f6 -Author: Diego Escalante Urrelo -Date: Thu Jan 20 01:42:12 2011 -0500 - - ephy-file-helpers: allow desktop in ephy_file_browse_to - - Nautilus doesn't draw the desktop as always anymore. It's not visible unless - you browse there, so the reason to not allow browse_to desktop is not valid - anymore. - - Bug #618443 - - lib/ephy-file-helpers.c | 27 +++++++-------------------- - 1 file changed, 7 insertions(+), 20 deletions(-) - -commit fdafabde40eced013ffdcb49e4f080542fbbc402 -Author: Diego Escalante Urrelo -Date: Mon Nov 1 03:47:54 2010 -0500 - - ephy-file-helpers: only one downloads_dir function - - Remove all the ambiguity, we always throw downloads to the same place or the - Desktop. - - Bug #618443 - - lib/ephy-file-helpers.c | 71 +++---------------------------------------------- - lib/ephy-file-helpers.h | 1 - - src/prefs-dialog.c | 34 +++-------------------- - 3 files changed, 7 insertions(+), 99 deletions(-) - -commit 07202bf4e9b6f7809b58b0c3e13af0a6de593e28 -Author: Xan Lopez -Date: Mon Mar 7 15:53:53 2011 +0100 - - Require GTK+ 3.0.2 - - A few nasty bugs have been fixed since 3.0.0, I'd rather not have them - reported. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 632ac3b3c932742c54d958a0475145da38e85905 -Author: Nguyễn Thái Ngọc Duy -Date: Mon Mar 7 18:29:07 2011 +0700 - - po/vi.po: better "Powered by" - - po/vi.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 4bd303882f854a63256df528e322d6ab93ce67f5 -Author: Duarte Loreto -Date: Sun Mar 6 18:32:22 2011 +0000 - - Updated Portuguese translation - - po/pt.po | 2413 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1191 insertions(+), 1222 deletions(-) - -commit 666a2d88d5777e394fade5ff4ef743afb6100b23 -Author: Rudolfs Mazurs -Date: Sat Mar 5 15:05:12 2011 +0200 - - Updated Latvian translation. - - po/lv.po | 2511 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1210 insertions(+), 1301 deletions(-) - -commit 73e78a2119169e0586e282ffab7ddb51b705d69a -Author: Xan Lopez -Date: Fri Mar 4 22:20:53 2011 +0100 - - ephy-embed: add a border and a little padding to the status frame - - Otherwise it blends a bit too effectively into clear backgrounds. - - embed/ephy-embed.c | 18 ++++++++++++++++++ - 1 file changed, 18 insertions(+) - -commit 5fed4b274d16041d629155c6b246a46917d09fe7 -Author: Diego Escalante Urrelo -Date: Thu Jan 27 13:48:14 2011 -0500 - - ephy-window: make construct_confirm_close_dialog reusable - - Bug #618443 - - src/ephy-window.c | 28 ++++++++++++++++------------ - 1 file changed, 16 insertions(+), 12 deletions(-) - -commit ae650f34deedaa12fd02e770cda754888055f3c0 -Author: Diego Escalante Urrelo -Date: Mon Feb 21 17:39:53 2011 -0500 - - popup-commands: indent fix - - Bug #618443 - - src/popup-commands.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 345406743e691845d2e3b0a44303aa4ae5bbe61f -Author: Diego Escalante Urrelo -Date: Sat Jan 22 13:43:07 2011 -0500 - - ephy-file-helpers: add uninstalled ui/ in ephy_file - - Bug #618443 - - lib/ephy-file-helpers.c | 1 + - 1 file changed, 1 insertion(+) - -commit 8e769a5363116088ca8394191583cf5fffae39fc -Author: Daniel Korostil -Date: Fri Mar 4 10:50:29 2011 +0200 - - Uploaded Ukranian - - po/uk.po | 2770 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1376 insertions(+), 1394 deletions(-) - -commit a5eb994a8ba5f05a549ef3358d0913cd4e6635c4 -Author: Gil Forcada -Date: Thu Mar 3 00:17:12 2011 +0100 - - [l10n] Updated Catalan translation - - po/ca.po | 2079 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1026 insertions(+), 1053 deletions(-) - -commit 1e5e8d6eba53745d279786ce2e7d387dcb5b7aa1 -Author: Kristjan SCHMIDT -Date: Sun Feb 27 17:13:03 2011 +0100 - - Updated Esperanto translation - - po/eo.po | 1972 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 943 insertions(+), 1029 deletions(-) - -commit d8b93ab1db701c5da60dbf0aac9359205d0d3668 -Author: Xan Lopez -Date: Sat Feb 26 23:02:11 2011 +0100 - - Small cleanup in widget's Makefile.am - - lib/widgets/Makefile.am | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 7ef48a51b5cf0e7b43bbdd080ee04a030ec4adfd -Author: Changwoo Ryu -Date: Sun Feb 27 04:42:21 2011 +0900 - - Updated Korean translation - - po/ko.po | 2455 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1102 insertions(+), 1353 deletions(-) - -commit 761aa8a6beb1c9a61e3cd462eb69a8ebb20f6141 -Author: Changwoo Ryu -Date: Sat Oct 9 03:28:15 2010 +0900 - - Updated Korean translation - - po/ko.po | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit ebc582d3f2e7cd7b10fd5893aff5e981d9d8f822 -Author: Xan Lopez -Date: Sat Feb 26 02:11:03 2011 +0100 - - Sync with upstream GeditOverlay - - lib/widgets/Makefile.am | 17 ------------- - lib/widgets/gedit-enum-types.c.template | 39 ---------------------------- - lib/widgets/gedit-enum-types.h.template | 27 -------------------- - lib/widgets/gedit-overlay-child.c | 45 +++++++++++++++------------------ - 4 files changed, 21 insertions(+), 107 deletions(-) - -commit 0c799b8e9de67440b1c3bc976fa63685367f295e -Author: Diego Escalante Urrelo -Date: Thu Feb 24 17:47:48 2011 -0500 - - prefs-dialog: use GtkBuildable id instead of name - - Using the widget name is error prone because Glade removes the name property of - objects. This makes cookie configuration work again. - - data/glade/prefs-dialog.ui | 10 +++++----- - src/prefs-dialog.c | 19 +++++++------------ - 2 files changed, 12 insertions(+), 17 deletions(-) - -commit 13eac99b2dcd76ad7bfaa13e4c8c4e0bbc5baa2c -Author: Bruno Brouard -Date: Thu Feb 24 22:30:50 2011 +0100 - - Updated French translation - - po/fr.po | 1996 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 985 insertions(+), 1011 deletions(-) - -commit 7b24139e069c3de30cdafe983cfb6eb90c097362 -Author: Sergio Villar Senin -Date: Mon Feb 21 18:38:59 2011 +0100 - - ephy-location-entry: add DNS prefetching - - Proactively perform DNS lookups when the user sets the cursor over an - autocompleted entry in the location bar. This way the prefetching is likely to - already have been resolved by the time the user actually clicks on the entry. - - https://bugzilla.gnome.org/show_bug.cgi?id=606087 - - lib/widgets/ephy-location-entry.c | 59 +++++++++++++++++++++++++++++++++++---- - 1 file changed, 54 insertions(+), 5 deletions(-) - -commit da765e7da76ec0614499023f4ef9945279a19e0c -Author: Alexandre Mazari -Date: Tue Feb 22 22:30:21 2011 +0100 - - Remove deprecated gtk_button_pressed/released usage - - Remove useless calls to gtk_button_release. Those calls had no effect, since - they were following calls to gtk_toggle_button_set_active (FALSE) doing - implicit release. - - https://bugzilla.gnome.org/show_bug.cgi?id=628364 - - src/bookmarks/ephy-bookmark-properties.c | 1 - - src/bookmarks/ephy-topic-action.c | 1 - - 2 files changed, 2 deletions(-) - -commit d2c665bb7e35fec385e0c98ad62ad922610b5146 -Author: Xan Lopez -Date: Tue Feb 22 21:10:45 2011 +0100 - - [release] 2.91.90 - - NEWS | 11 +++++++++++ - configure.ac | 2 +- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit c2f2b09306d290c173b312455d50c7b50e2ada6f -Author: Xan Lopez -Date: Mon Feb 21 03:33:06 2011 +0100 - - Require GTK+ 3.0.0 - - GTK+ changed its soname in 3.0.0, so we need to depend on that if we - want to use 3.x. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ef4cae1d37383028feebe9a25685376b26612018 -Author: Xan Lopez -Date: Mon Feb 21 03:17:18 2011 +0100 - - ephy-embed: hide toplevel child widget - - Since that's what we add to the overlay, its visible property will be - in sync with the child container. Gets rid of bothering 1px visible - leftover when statusbar is hidden. - - embed/ephy-embed.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit 91635045ce8c6b1d92c9d6d509565a0b569de15b -Author: Xan Lopez -Date: Mon Feb 21 03:16:38 2011 +0100 - - gedit-overlay-child: sync visible property of container and child - - That way user can hide the inner widget and the overlay child - container will be hidden automatically. - - lib/widgets/gedit-overlay-child.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit 69fb18cd0d7d9fc0459fb5faec59f77d4418981d -Author: Jorge González -Date: Sun Feb 20 16:05:43 2011 +0100 - - Updated Spanish translation - - po/es.po | 232 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 115 insertions(+), 117 deletions(-) - -commit 92e3abc92714377fa6c2e99cb5e237afcaa9edb5 -Author: Daniel Mustieles -Date: Sun Feb 20 14:00:29 2011 +0100 - - Updated Spanish translation - - help/es/es.po | 87 ++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 44 insertions(+), 43 deletions(-) - -commit 1721898efdc5e8c4807bc67dd934c23f7684fe06 -Author: Daniel Mustieles -Date: Sun Feb 20 13:59:59 2011 +0100 - - Updated Spanish translation - - po/es.po | 140 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 69 insertions(+), 71 deletions(-) - -commit 8efe0b585c9c6926ef56f572e9069705ca79b552 -Author: Xan Lopez -Date: Sat Feb 19 18:31:03 2011 +0100 - - gedit-overlay: sync with upstream - - lib/widgets/gedit-overlay.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit bd5e1f6d7972c0de2daa783e856760df3da18b95 -Author: Khaled Hosny -Date: Sat Feb 19 17:02:21 2011 +0200 - - Updated Arabic translation - - po/ar.po | 77 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 38 insertions(+), 39 deletions(-) - -commit 7992ec587f4cc896fa602bee7037c6f1f38fb31f -Author: Runa Bhattacharjee -Date: Fri Feb 18 15:12:59 2011 +0530 - - Updated Bengali India Translation - - po/bn_IN.po | 2622 ++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1330 insertions(+), 1292 deletions(-) - -commit c886bd11a10380625860f9457fbc7964c9f30079 -Author: Sergio Villar Senin -Date: Mon Feb 14 18:44:40 2011 +0100 - - ephy-web-view: do not update statusbar text for webviews without embed object - - Fixes a crash when trying to open the WebInspector - - https://bugzilla.gnome.org/show_bug.cgi?id=642306 - - embed/ephy-web-view.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 6087d7632df9c47377731b851022661bddcbf9e4 -Author: Xan Lopez -Date: Wed Feb 16 13:03:33 2011 +0100 - - gedit-overlay: always proxy main widget size request - - We don't want for the children to be able to overflow the main widget, - it makes sense to keep them contained in the overlay. - - Bug #642451 - - lib/widgets/gedit-overlay.c | 30 ++++-------------------------- - 1 file changed, 4 insertions(+), 26 deletions(-) - -commit 10d814562be5f0531536cef6060d0db142fab8a5 -Author: Xan Lopez -Date: Wed Feb 16 12:57:11 2011 +0100 - - Sync with latest GeditOverlay code - - And adapt to the new API. - - embed/ephy-embed.c | 6 +- - lib/widgets/gedit-overlay-child.c | 59 +------- - lib/widgets/gedit-overlay.c | 283 +++++++------------------------------- - lib/widgets/gedit-overlay.h | 7 +- - 4 files changed, 54 insertions(+), 301 deletions(-) - -commit 8fee311e68306696b7fb95490f0bc0b1fc9e561c -Author: Xan Lopez -Date: Tue Feb 15 18:56:08 2011 +0100 - - Sync with latest GeditOverlay - - lib/widgets/gedit-overlay.c | 31 ++++++++++++------------------- - 1 file changed, 12 insertions(+), 19 deletions(-) - -commit cf7f15bc7d4f06b0d10a4831e9955b7e775e54dd -Author: Sweta Kothari -Date: Tue Feb 15 16:09:20 2011 +0530 - - Updated Gujarati Translations - - po/gu.po | 2078 ++++++++++++++++++++++++-------------------------------------- - 1 file changed, 806 insertions(+), 1272 deletions(-) - -commit d2b1108c738a6e0a8a1c0edd0327c1d28dab712a -Author: Ivaylo Valkov -Date: Tue Feb 15 05:47:23 2011 +0200 - - Updated Bulgarian translation - - po/bg.po | 1514 +++++++++++++++++++++----------------------------------------- - 1 file changed, 517 insertions(+), 997 deletions(-) - -commit 1f2b77565881709fe74d1f317e80c0f05c3ccaff -Author: Xan Lopez -Date: Sat Feb 12 22:42:22 2011 +0100 - - Sync with latest libegg - - lib/egg/egg-editable-toolbar.c | 4 ++++ - lib/egg/egg-toolbar-editor.c | 4 ++++ - 2 files changed, 8 insertions(+) - -commit 552b8f94003391ee8255ced943e333801906801c -Author: Xan Lopez -Date: Sat Feb 12 16:40:09 2011 +0100 - - ephy-window: append new tabs after parent by default - - I think this makes much more sense as a default behavior when opening - a tab from an existing page, since it keeps logically related tabs - together. - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 367509a5a70af04872a618cb2bc5d4e0b97d3370 -Author: Carlos Garcia Campos -Date: Sat Feb 12 16:34:18 2011 +0100 - - gedit-overlay: Fix a crash when overlay is detroyed - - lib/widgets/gedit-overlay.c | 14 ++++++++------ - 1 file changed, 8 insertions(+), 6 deletions(-) - -commit 50ccd46f8b5500a753630bd6d6cacd1f41300b78 -Author: Kjartan Maraas -Date: Sat Feb 12 13:47:47 2011 +0100 - - Updated Norwegian bokmål translation. - - po/nb.po | 60 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 30 insertions(+), 30 deletions(-) - -commit b72b9981ba0445c65aac04568bf0142470675d0b -Author: Xan Lopez -Date: Sat Feb 12 13:04:33 2011 +0100 - - Forgot these files - - lib/widgets/gedit-overlay-child.c | 408 ++++++++++++++++++++++++++++++++++++++ - lib/widgets/gedit-overlay-child.h | 89 +++++++++ - 2 files changed, 497 insertions(+) - -commit 23f7967650a7a04ae1d848a9911e13a6b18b33d3 -Author: Dirgita -Date: Sat Feb 12 14:34:50 2011 +0700 - - Updated Indonesian translation - - po/id.po | 4670 ++++++++++++++++++-------------------------------------------- - 1 file changed, 1308 insertions(+), 3362 deletions(-) - -commit 763dbbffec69ec7dec320b841636029fa5cde85b -Author: Xan Lopez -Date: Sat Feb 12 00:39:34 2011 +0100 - - ephy-web-view: do not update status after we are dead - - We now reach to the EphyEmbed, so this is dangerous. - - embed/ephy-web-view.c | 36 +++++++++++++++++++----------------- - 1 file changed, 19 insertions(+), 17 deletions(-) - -commit e65e2873a6d8407e9a8801e8667085ec10fa261f -Author: Xan Lopez -Date: Fri Feb 11 22:54:43 2011 +0100 - - Sync with upstream GeditOverlay code - - embed/ephy-embed.c | 2 +- - lib/widgets/Makefile.am | 23 ++- - lib/widgets/gedit-enum-types.c.template | 39 ++++ - lib/widgets/gedit-enum-types.h.template | 27 +++ - lib/widgets/gedit-overlay.c | 259 +++++++++++++------------ - lib/widgets/gedit-overlay.h | 36 ++-- - lib/widgets/gedit-theatrics-animated-widget.c | 263 -------------------------- - lib/widgets/gedit-theatrics-animated-widget.h | 64 ------- - 8 files changed, 244 insertions(+), 469 deletions(-) - -commit 7a6c09572386c98b7b57d5543a1e36f6642d425b -Author: Xan Lopez -Date: Thu Feb 10 23:15:18 2011 +0100 - - Change packing order for gedit overlay - - Seems GeditOverlay works better if we pack directly the scrollable - widget on it, then pack the overlay in a scrolled window. Do that. - - embed/ephy-embed.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 87466892eb08ec1f5efd6ea33589355b9bab05d0 -Author: Xan Lopez -Date: Thu Feb 10 22:27:40 2011 +0100 - - Port floating statusbar to gedit's overlay widget - - Works correctly in framed pages, and fixes a few bugs along the way - (not to mention it should be more efficient since it does not redraw - needlessly). - - The gedit code has been modified to get rid of the animation stuff we - don't really need atm; we have coordinated with the gedit developers - and hopefully both versions will be in sync again really soon. - - embed/ephy-embed-utils.h | 2 +- - embed/ephy-embed.c | 31 +- - embed/ephy-embed.h | 1 + - embed/ephy-web-view.c | 99 +--- - lib/widgets/Makefile.am | 6 +- - lib/widgets/gedit-overlay.c | 656 ++++++++++++++++++++++++++ - lib/widgets/gedit-overlay.h | 72 +++ - lib/widgets/gedit-theatrics-animated-widget.c | 263 +++++++++++ - lib/widgets/gedit-theatrics-animated-widget.h | 64 +++ - 9 files changed, 1096 insertions(+), 98 deletions(-) - -commit cfff1c9b9f901c64645347a712dae702501f6d4e -Author: Norayr Chilingarian -Date: Wed Feb 9 01:26:21 2011 +0400 - - Fixed Epiphany translation bug - - po/hy.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 92887785bb6e933de0269b2b477ce51303e9d957 -Author: Xan Lopez -Date: Wed Feb 2 23:52:11 2011 +0100 - - [release] 2.91.6 - - NEWS | 9 +++++++++ - configure.ac | 4 ++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit db444bd5cee470b00414662d0c5dba206f367df4 -Author: Dan Winship -Date: Tue Dec 7 19:33:33 2010 +0100 - - ephy-embed-single: Update to use direct-from-libsoup SoupCache - - and update configure.ac to require the corresponding libsoup - - https://bugzilla.gnome.org/show_bug.cgi?id=636861 - - configure.ac | 2 +- - embed/ephy-embed-single.c | 18 ++++++++++-------- - 2 files changed, 11 insertions(+), 9 deletions(-) - -commit dadf1744d4f1c8151b20af9c07927fc9cb93cfee -Author: Chao-Hsiung Liao -Date: Thu Jan 27 18:47:50 2011 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 564 ++++++++++++++++++++++++++++++-------------------------- - po/zh_TW.po | 605 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 640 insertions(+), 529 deletions(-) - -commit 5710dd21c81eab103e203b9ab63032b198ef4796 -Author: Fran Diéguez -Date: Thu Jan 27 00:03:09 2011 +0100 - - QA of Galician translations - - po/gl.po | 196 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 98 insertions(+), 98 deletions(-) - -commit 781bfc4cc7eddb220c18c420b2f16c8615427317 -Author: Yuri Myasoedov -Date: Sun Jan 23 18:41:20 2011 +0300 - - Updated Russian translation - - po/ru.po | 1792 ++++++++++++++++++++++++-------------------------------------- - 1 file changed, 694 insertions(+), 1098 deletions(-) - -commit dddf0cb0e0d8d89faafc6be6013636660ccba1eb -Author: Funda Wang -Date: Sat Jan 22 02:34:14 2011 +0100 - - Updated zh_CN translation. - - po/zh_CN.po | 2348 ++++++++++++++--------------------------------------------- - 1 file changed, 545 insertions(+), 1803 deletions(-) - -commit 12510bc7e74103b0f0f408fed812fed8f43d09a7 -Author: Inaki Larranaga Murgoitio -Date: Fri Jan 21 00:26:54 2011 +0100 - - Updated Basque language - - po/eu.po | 2517 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1237 insertions(+), 1280 deletions(-) - -commit d81d45be08394c21709a547348f90b6f6e030c14 -Author: Diego Escalante Urrelo -Date: Thu Jan 20 14:53:33 2011 -0500 - - ephy-window: missing g_list_free - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 38426152f8e5ca0bfff538ee3753265e7e337306 -Author: Kjartan Maraas -Date: Thu Jan 20 19:28:45 2011 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 93 ++++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 43 insertions(+), 50 deletions(-) - -commit 2cbdfcd2ad818a7832d3461ce14bdbc6d383ced5 -Author: Khaled Hosny -Date: Wed Jan 12 14:23:26 2011 +0200 - - Updated Arabic translation - - po/ar.po | 1562 +++++++------------------------------------------------------- - 1 file changed, 174 insertions(+), 1388 deletions(-) - -commit 2f9a7716ed43461c8e1c892efea23ee0e3750bb3 -Author: Xan Lopez -Date: Tue Jan 11 14:27:29 2011 +0100 - - [release] 2.91.5 - - NEWS | 10 ++++++++++ - configure.ac | 4 ++-- - 2 files changed, 12 insertions(+), 2 deletions(-) - -commit f918aabc59fc9eb665635d576a1edec474bde24c -Author: Carlos Garcia Campos -Date: Fri Dec 24 16:11:02 2010 +0100 - - ephy-embed-single: make sure flash plugin is disabled - - There might be more than one plugin instance for flash. Iterate the whole list - to be sure we have disabled all the possible instances. - - Bug #637959 - - Signed-off-by: Diego Escalante Urrelo - - embed/ephy-embed-single.c | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -commit b2bbeb102c9a2fe3817d01959681a82b6b11d177 -Author: Diego Escalante Urrelo -Date: Sat Jan 8 09:26:55 2011 -0500 - - Use the new GTK_STATE_FLAG_NORMAL flag - - Until 2.99.0 GtkStyleContext didn't have a "normal" flag, the closest thing was - GTK_STATE_FLAG_ACTIVE, but it is not necessarily correct. - - Bug #636501 - - embed/ephy-web-view.c | 2 +- - lib/widgets/ephy-location-entry.c | 10 +++++----- - src/ephy-notebook.c | 2 +- - 3 files changed, 7 insertions(+), 7 deletions(-) - -commit 0205afea985c753c6400eba9634f679863d085c0 -Author: Diego Escalante Urrelo -Date: Mon Jan 10 19:59:16 2011 -0500 - - ephy-location-entry: GdkRGBA colors are doubles - - Bug #636501 - - lib/widgets/ephy-location-entry.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 876c61da26b86b46e8f4117fe687dbaff4faebdc -Author: Vincas Dargis -Date: Wed May 26 21:22:47 2010 +0300 - - ephy-bookmarks-editor: fix new topic selection bug - - When the search entry is not empty and "New topic" is activated from the menu, - the "All" topic will set for renaming instead of the new "Type a topic" node. - This can cause serious data loss. - - Bug #518727 - - Signed-off-by: Diego Escalante Urrelo - - src/bookmarks/ephy-bookmarks-editor.c | 1 + - 1 file changed, 1 insertion(+) - -commit 5821e5259e29c789658830c32fb4a9243cea624b -Author: Yuri Myasoedov -Date: Mon Jan 10 22:38:12 2011 +0300 - - Some fixed in Russian translation - - po/ru.po | 9 ++++----- - 1 file changed, 4 insertions(+), 5 deletions(-) - -commit 6f617d494d0a58a255fc38926031a6abbff7c2b0 -Author: Yuri Myasoedov -Date: Mon Jan 10 22:35:35 2011 +0300 - - Updated Russian translation - - po/ru.po | 752 +++++++++++++++++++++++++-------------------------------------- - 1 file changed, 298 insertions(+), 454 deletions(-) - -commit e01e50256dc2e23a6da28201fa6a3cc9e094366c -Author: Fran Diéguez -Date: Sun Jan 9 00:38:52 2011 +0100 - - Updated Galician translations - - po/gl.po | 150 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 85 insertions(+), 65 deletions(-) - -commit 0180614e4f9bf2742deaca4910c2016e8666f2d5 -Author: Xan Lopez -Date: Fri Jan 7 03:07:42 2011 +0100 - - configure.ac: require GTK+ 2.99.0 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit cad2d39410c6309b1bf5d5b4e8e912ada7e91c16 -Author: Xan Lopez -Date: Thu Jan 6 14:31:15 2011 +0100 - - ephy-file-helpers: do not use deprecated APIs - - lib/ephy-file-helpers.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 53f693ecfadf4bca1975f8cf90f63129b9f67fa4 -Author: Mario Blättermann -Date: Mon Jan 3 21:36:36 2011 +0100 - - [l10n] Updated German translation - - po/de.po | 445 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 248 insertions(+), 197 deletions(-) - -commit 4668f217039a5103666687c1679a7438e8a8f667 -Author: Kjartan Maraas -Date: Sun Jan 2 18:35:45 2011 +0100 - - Updated Norwegian bokmål translation from Torstein Adolf Winterseth - - po/nb.po | 63 +++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 39 insertions(+), 24 deletions(-) - -commit dd80d9cc3f5a631b96241461615a4142c45ba36f -Author: Daniel Nylander -Date: Sat Jan 1 11:31:33 2011 +0100 - - Updated Swedish translation - - po/sv.po | 1748 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 866 insertions(+), 882 deletions(-) - -commit dbb9717002587ffbceb15b95a73f940b42f1c04f -Author: Wouter Bolsterlee -Date: Fri Dec 24 01:54:12 2010 +0100 - - Updated Dutch translation by Wouter Bolsterlee - - po/nl.po | 2567 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1265 insertions(+), 1302 deletions(-) - -commit e4cb67f025fdac8e671828b1406396bff349b346 -Author: Gheyret T.Kenji -Date: Thu Dec 23 18:33:17 2010 +0100 - - Added UG translation - - po/ug.po | 389 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 199 insertions(+), 190 deletions(-) - -commit b8f971b7ab96b20482c5dd9ca8a3677763df6f11 -Author: Xan Lopez -Date: Thu Dec 23 13:32:26 2010 +0100 - - [release] 2.91.4.1 - - NEWS | 8 ++++++++ - configure.ac | 4 ++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit f3c2e279e2627b405947a785375e733195f5f7a1 -Author: Xan Lopez -Date: Thu Dec 23 13:32:01 2010 +0100 - - egg: cherry-pick fixes for compilation against GTK+ 2.91.7 - - lib/egg/eggsmclient-private.h | 6 ++++++ - lib/egg/eggsmclient-xsmp.c | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit c8bd3e01b3f7a451b318a609a65feb1db268dd95 -Author: Erdal Ronahi -Date: Thu Dec 23 11:41:27 2010 +0100 - - Updated Kurdish translations by Omer Ensari - - po/ku.po | 342 +++++++++++++++++++++++++++++++++++++++++++++------------------ - 1 file changed, 243 insertions(+), 99 deletions(-) - -commit 931bc7013f0e0c7a7d61ec2b30f7a5ce61575ea3 -Author: Jorge Gonzalez -Date: Wed Dec 22 20:31:29 2010 +0100 - - Updated Spanish translation - - po/es.po | 151 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 73 insertions(+), 78 deletions(-) - -commit 1b22ed6dbbcdae8d2b38ccd3cf4f0cb060b7ef95 -Author: Xan Lopez -Date: Wed Dec 22 15:03:40 2010 +0100 - - ephy-node-view: don't use gdk_cursor_unref - - It's deprecated since GdkCursor is a GObject now. The stuff in egg/ - still needs fixing, but we'll just sync from upstream. - - lib/widgets/ephy-node-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 93364a9c0b0952efe8715ddaeaf139a07fbd37c4 -Author: Yaron Shahrabani -Date: Tue Dec 21 12:43:53 2010 +0200 - - Updated Hebrew translation. - - po/he.po | 682 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 342 insertions(+), 340 deletions(-) - -commit 8b9b16dfe2a0f38f4c7c4cc8f17033737d2e4ec1 -Author: Ivar Smolin -Date: Tue Dec 21 11:08:44 2010 +0200 - - [l10n] Updated Estonian translation - - po/et.po | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit 09f236e5f2eea9dfe32cc0ded6526d2b6d0f964b -Author: Xan Lopez -Date: Tue Dec 21 00:44:07 2010 +0100 - - [release] 2.91.4 - - NEWS | 16 ++++++++++++++++ - configure.ac | 4 ++-- - 2 files changed, 18 insertions(+), 2 deletions(-) - -commit 47a5f73cab9f78af6c90172e12c8a542207bb697 -Author: Xan Lopez -Date: Mon Dec 20 22:20:11 2010 +0100 - - The Soviet government has fallen! - - src/window-commands.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 24c6c1492ad58220707dce4a076a619743669589 -Author: Mattias Põldaru -Date: Mon Dec 20 14:17:46 2010 +0200 - - [l10n] Updated Estonian translation - - po/et.po | 987 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 519 insertions(+), 468 deletions(-) - -commit 5a4853c420f53929340b1948bbdab0156726c015 -Author: Diego Escalante Urrelo -Date: Thu Dec 16 14:44:40 2010 -0500 - - tests: clean up filenames - - Make filenames readable and tab-completion friendly. - - .gitignore | 10 +- - tests/Makefile.am | 30 ++-- - tests/ephy-embed-persist.c | 315 ++++++++++++++++++++++++++++++++++++++++++ - tests/ephy-embed-single.c | 125 +++++++++++++++++ - tests/ephy-location-entry.c | 165 ++++++++++++++++++++++ - tests/ephy-search-entry.c | 74 ++++++++++ - tests/ephy-zoom-control.c | 78 +++++++++++ - tests/testephyembedpersist.c | 315 ------------------------------------------ - tests/testephyembedsingle.c | 125 ----------------- - tests/testephylocationentry.c | 165 ---------------------- - tests/testephysearchentry.c | 74 ---------- - tests/testephyzoomcontrol.c | 78 ----------- - 12 files changed, 777 insertions(+), 777 deletions(-) - -commit 080071ac01b0304028dcbeebef07c151ef6b7247 -Author: Kjartan Maraas -Date: Fri Dec 17 13:23:17 2010 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 59 +++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 31 insertions(+), 28 deletions(-) - -commit e83ffcbfd4b18db6187fa7e2bd11940c3c451071 -Author: Diego Escalante Urrelo -Date: Thu Dec 16 00:13:58 2010 -0500 - - configure.ac: bump GTK+ version - - Required for GtkStyleContext API. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2f1702c2bca9b9baa43a265686df6481be885ddb -Author: Jorge González -Date: Wed Dec 15 21:59:28 2010 +0100 - - Updated Spanish translation - - po/es.po | 115 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 66 insertions(+), 49 deletions(-) - -commit 4be1b9c1a46ea8395128c948e661c7d331f7364a -Author: Diego Escalante Urrelo -Date: Wed Dec 15 10:37:05 2010 -0500 - - ephy-extensions-manager: fix g_variant_builder usage - - g_variant_builder_end is not needed at all. - - Bug #636740 - - src/ephy-extensions-manager.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit f6f31ff0994c0c35f60910369f06541930b58f01 -Author: Yanko Kaneti -Date: Tue Nov 16 09:04:18 2010 +0200 - - epiphany.convert: Fix cache-size schema location - - Bug #634969 - - Signed-off-by: Diego Escalante Urrelo - - data/epiphany.convert | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 43a776e85d1fd602ef28756da4a5cc6e4fed40f9 -Author: Diego Escalante Urrelo -Date: Tue Nov 16 00:27:37 2010 -0500 - - Port to gtk+ master's GtkStyleContext - - Updates all our uses of GtkStyle stuff to the newer GtkStyleContext API. - ephy-web-view porting done by Matthias Clasen - - Bug #636501 - - embed/ephy-web-view.c | 40 ++++++++------ - lib/widgets/ephy-location-entry.c | 100 ++++++++++++++++++----------------- - src/bookmarks/ephy-bookmark-action.c | 3 +- - src/ephy-find-toolbar.c | 4 +- - src/ephy-notebook.c | 28 ++++++---- - 5 files changed, 95 insertions(+), 80 deletions(-) - -commit f6ffd608f887ede6e39d03aff38c6d43682fd231 -Author: Diego Escalante Urrelo -Date: Tue Dec 14 14:53:56 2010 -0500 - - egg: update from master - - Bug #636501 - - lib/egg/egg-editable-toolbar.c | 27 +++++++++++++++++++++++++-- - lib/egg/egg-toolbar-editor.c | 4 ++-- - lib/egg/egg-toolbars-model.c | 18 ++++++++++++++++++ - lib/egg/update-from-egg.sh | 2 +- - 4 files changed, 46 insertions(+), 5 deletions(-) - -commit 534eae1b801c93950e2b664ffe772375d0fe2340 -Author: Xan Lopez -Date: Tue Dec 14 11:21:00 2010 +0100 - - ephy-embed-single: move code from init to initialize - - embed/ephy-embed-single.c | 32 ++++++++++++++++---------------- - 1 file changed, 16 insertions(+), 16 deletions(-) - -commit a3df3eb66d73f5ae98f68a7f1ce8322f64269497 -Author: Xan Lopez -Date: Tue Dec 14 11:17:38 2010 +0100 - - ephy-embed-single: couple of style fixes - - embed/ephy-embed-single.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit badfd49f16e581574e8da61e0b398b0bbe4f75a9 -Author: Yaron Shahrabani -Date: Mon Dec 13 23:44:00 2010 +0200 - - Updated Hebrew translation. - - po/he.po | 99 +++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 58 insertions(+), 41 deletions(-) - -commit 67d0bb92493b5c0300dfe003376e29521c8298e1 -Author: Xan Lopez -Date: Mon Dec 13 00:54:15 2010 +0100 - - ephy-embed-single: disable Flash by default - - The Adobe flash plugin uses GTK+2.x, so it cannot be loaded in our - (GTK+3.x) process without causing a crash. Disable it by default until - we implement a solution. - - embed/ephy-embed-single.c | 16 ++++++++++++++++ - 1 file changed, 16 insertions(+) - -commit df15ea85bdd3e545a78765c5ef3c249b4f4f3852 -Author: Kjartan Maraas -Date: Sun Dec 12 21:35:20 2010 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 201 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 118 insertions(+), 83 deletions(-) - -commit ecb009bea312f7a314cfa49af8277bd219e4258b -Author: Diego Escalante Urrelo -Date: Sun Dec 12 12:17:02 2010 +0100 - - prefs-dialog: enhance Fonts tab layout - - We need labels next to the buttons or after setting a custom font you won't - know what setting are you configuring. - - data/glade/prefs-dialog.ui | 267 +++++++++++++++++++++++++++++++-------------- - src/prefs-dialog.c | 2 +- - 2 files changed, 188 insertions(+), 81 deletions(-) - -commit 558def6efcafd1eb7320e0c260332230194eb7bf -Author: Diego Escalante Urrelo -Date: Sun Dec 12 12:06:33 2010 +0100 - - prefs-dialog: fix General tab sizing - - data/glade/prefs-dialog.ui | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit 740a103119ad7b5494171e7135e15413d447aedc -Author: Xan Lopez -Date: Sun Dec 12 00:58:53 2010 +0100 - - ephy-web-view.c: fix typo - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bcaf5480a8edb7f62273c735507ed31b339c3cd0 -Author: Diego Escalante Urrelo -Date: Sat Dec 11 16:08:09 2010 +0100 - - ephy-spell-check: remove unused files - - WebKitGTK+ implements this for us. - - Bug #637021 - - lib/Makefile.am | 13 --- - lib/ephy-spell-check.c | 280 ------------------------------------------------- - lib/ephy-spell-check.h | 79 -------------- - 3 files changed, 372 deletions(-) - -commit 270c17b0563fc3eaa3b728d2c20c6461a75e3888 -Author: Jorge González -Date: Sat Dec 11 16:39:23 2010 +0100 - - Updated Spanish translation - - po/es.po | 1960 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 960 insertions(+), 1000 deletions(-) - -commit 2c864f4b14da98505d2ed294e2aa20a6dca8dd19 -Author: Dan Winship -Date: Sat Dec 11 16:05:54 2010 +0100 - - .gitignore: add EphyEgg gir/typelib - - .gitignore | 2 ++ - 1 file changed, 2 insertions(+) - -commit e4bd011e19c04b2ce174fc11e8da169c6fed2738 -Author: Yaron Shahrabani -Date: Sat Dec 11 00:26:06 2010 +0200 - - Updated Hebrew translation - - po/he.po | 203 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 117 insertions(+), 86 deletions(-) - -commit 6f6728bed1acb6b2c516cbdc0be8370a7d11edbb -Author: Fran Diéguez -Date: Fri Dec 10 20:42:19 2010 +0100 - - Updated Galician translations - - po/gl.po | 1975 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 961 insertions(+), 1014 deletions(-) - -commit 50d90369fe5f6eece20890d5e53a1470fa6a4a3c -Author: Diego Escalante Urrelo -Date: Fri Dec 10 17:47:24 2010 +0100 - - po: add ephy-profile-migrator to POTFILES - - po/POTFILES.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e435a10d44dfed0705a5703b406c854a1208821e -Author: Diego Escalante Urrelo -Date: Tue Sep 1 00:05:36 2009 -0500 - - ephy-web-view: use custom error pages - - Show nice error pages instead of WebKitGTK+'s defaults. - - Bug #592667 - - configure.ac | 1 + - data/Makefile.am | 2 +- - data/pages/Makefile.am | 6 ++ - data/pages/error.html | 73 +++++++++++++++++++++++ - data/pages/recovery.html | 73 +++++++++++++++++++++++ - embed/ephy-web-view.c | 150 +++++++++++++++++++++++++++++++++++++++++++---- - embed/ephy-web-view.h | 10 ++++ - lib/ephy-file-helpers.c | 4 +- - src/ephy-session.c | 81 +++---------------------- - 9 files changed, 312 insertions(+), 88 deletions(-) - -commit 3a1e97fbd04ca466535da01e8fdd0bca95560aa4 -Author: Chao-Hsiung Liao -Date: Thu Dec 9 20:02:25 2010 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 2624 +++++++++++++++++---------------------------------------- - po/zh_TW.po | 2705 ++++++++++++++++++----------------------------------------- - 2 files changed, 1591 insertions(+), 3738 deletions(-) - -commit 85c5fc195a1b422c0851eed651f54aa1f9fb22f9 -Author: Xan Lopez -Date: Thu Dec 9 10:41:15 2010 +0100 - - prefs: remove broken preferences from UI - - 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. - - data/glade/prefs-dialog.ui | 30 ------------------------------ - src/prefs-dialog.c | 6 ------ - 2 files changed, 36 deletions(-) - -commit 321749b5c05208f88922c2a6aca4b460a2a12459 -Author: Xan Lopez -Date: Thu Dec 9 10:27:33 2010 +0100 - - Fix .gir generation for srcdir != builddir - - Add --includedir as needed. Diego, talk to me after class. - - src/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9176664b703913181c002bbbdde575675bfd8559 -Author: Diego Escalante Urrelo -Date: Wed Dec 8 16:32:25 2010 +0100 - - ephy-web-view: make defines friendlier with introspection - - Non prefixed names trigger lots of warnings, avoid them. - - Bug #636790 - - embed/ephy-web-view.c | 2 +- - embed/ephy-web-view.h | 4 ++-- - src/ephy-window.c | 4 ++-- - 3 files changed, 5 insertions(+), 5 deletions(-) - -commit 62f2c31cefbd94e993584736fc82e33d4c62060b -Author: Diego Escalante Urrelo -Date: Wed Dec 8 15:35:56 2010 +0100 - - ephy-permission-manager: fix names of permission types - - Prefix them with EPHY_PERMISSION_TYPE instead of "EPT_". - - Bug #636790 - - embed/ephy-permission-manager.h | 6 +++--- - embed/ephy-web-view.c | 6 ++++-- - 2 files changed, 7 insertions(+), 5 deletions(-) - -commit 576826ed720902bef4c2b916f5f973b967bbc59f -Author: Diego Escalante Urrelo -Date: Wed Dec 8 15:35:32 2010 +0100 - - ephy-bookmarks: remove unused BOOKMARKS_HIERARCHY_SEP - - Bug #636790 - - src/bookmarks/ephy-bookmarks.h | 2 -- - 1 file changed, 2 deletions(-) - -commit c4af85360754d6d8bfeba9dabe02593c639a1ae6 -Author: Diego Escalante Urrelo -Date: Wed Dec 8 14:00:08 2010 +0100 - - introspection: separate Egg into another gir file - - Don't mix up Epiphany and Egg prefixes into a single file. We now produce and - install EphyEgg-version.gir and Epiphany-version.gir. Version being the - Epiphany API version. - - Bug #636790 - - src/Makefile.am | 36 ++++++++++++++++++++++++++++-------- - 1 file changed, 28 insertions(+), 8 deletions(-) - -commit 0256c457bc5558d97c98c17ee673923def23a85e -Author: Diego Escalante Urrelo -Date: Wed Dec 8 13:07:23 2010 +0100 - - introspection: fix wrong and missing annotations - - Bug #636790 - - embed/ephy-embed-container.c | 2 +- - embed/ephy-embed-shell.c | 26 +++++++++++++++++++++----- - embed/ephy-embed-shell.h | 2 +- - embed/ephy-embed-single.c | 15 +++++++-------- - embed/ephy-favicon-cache.c | 6 +++--- - embed/ephy-permission-manager.c | 6 +++--- - embed/ephy-web-view.c | 4 ++-- - lib/ephy-node.c | 31 +++++++++++++++++++++++++++++++ - lib/widgets/ephy-location-entry.c | 20 ++++++++++---------- - src/ephy-link.c | 23 +++++++++++++++++++++++ - src/ephy-toolbar.c | 4 ++-- - 11 files changed, 104 insertions(+), 35 deletions(-) - -commit eb8fa514e6e3edb93be01d44ecc80608501979df -Author: Jonathon Jongsma -Date: Tue Dec 7 22:43:52 2010 -0600 - - EphyLocationAction: fix potential leak - - Free the lock_stock_id before setting a new one. - - https://bugzilla.gnome.org/show_bug.cgi?id=636742 - - lib/widgets/ephy-location-entry.c | 1 + - 1 file changed, 1 insertion(+) - -commit 4015281028a036ee859360bb7feb3a6aeb8f56cb -Author: Diego Escalante Urrelo -Date: Tue Dec 7 19:51:11 2010 +0100 - - prefs-dialog: new custom font selection UI - - 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/prefs-dialog.ui | 86 ++++++++++++++++++++++++-- - data/org.gnome.epiphany.gschema.xml.in | 20 ++++++ - embed/ephy-embed-prefs.c | 107 ++++++++++++++++++++++++++++++++- - lib/ephy-prefs.h | 4 ++ - src/prefs-dialog.c | 35 +++++++++-- - 5 files changed, 240 insertions(+), 12 deletions(-) - -commit bc03f56a7483e499274cf1632975dfbb7e09e9ec -Author: Diego Escalante Urrelo -Date: Tue Dec 7 18:47:06 2010 +0100 - - ephy-embed-prefs: use minimum-font-size instead of minimum-logical-font-size - - minimum-logical-font-size doesn't works as expected by the UI. - - Bug #636761 - - embed/ephy-embed-prefs.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4a3836ec9150c5d82dc75db74f47daac5abde483 -Author: Dan Winship -Date: Wed Dec 8 12:36:50 2010 +0100 - - .gitignore: add this - - .gitignore | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 69 insertions(+) - -commit c7a8b14f52d34f47c853b3c8cd2aa8588dbb5d93 -Author: Diego Escalante Urrelo -Date: Tue Dec 7 19:47:37 2010 +0100 - - ephy-file-helpers: prioritize uninstalled files - - This patch prioritizes uninstalled files so modified files in your epiphany - checkout are used, avoiding the need to install them to see your changes. - - lib/ephy-file-helpers.c | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - -commit 228139f5e379048a8ee4e7545b5361017402ffd2 -Author: Diego Escalante Urrelo -Date: Tue Dec 7 19:02:52 2010 +0100 - - data/glade: update orientation property of GtkBox widgets - - data/glade/certificate-dialogs.ui | 12 ++++++++++++ - data/glade/epiphany.ui | 9 +++++++++ - data/glade/form-signing-dialog.ui | 6 +++++- - data/glade/prefs-dialog.ui | 26 ++++++++++++++++++++++---- - data/glade/print.ui | 9 +++++++++ - 5 files changed, 57 insertions(+), 5 deletions(-) - -commit b695374f186d3942225bcc4434de033599f24fe8 -Author: Diego Escalante Urrelo -Date: Tue Dec 7 18:43:47 2010 +0100 - - ephy-embed-single: don't use macros when not needed - - We can use the arguments of the function safely. - - embed/ephy-embed-single.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c74c2ffafded21bc3b583743b7054de65f35eef5 -Author: Diego Escalante Urrelo -Date: Tue Dec 7 15:59:47 2010 +0100 - - ephy-embed-prefs: initialize prefs from settings - - Settings kept in sync with g_signal_connect were missing an initialization. - - embed/ephy-embed-prefs.c | 26 +++++++++++++++----------- - 1 file changed, 15 insertions(+), 11 deletions(-) - -commit 7a0f902ad4ab5c34d70897ac3e6cec59baf690ff -Author: Diego Escalante Urrelo -Date: Tue Dec 7 12:39:39 2010 +0100 - - ephy-profile-utils: fix crasher when .migrated is unreadable - - When .gnome2/epiphany/.migrated file is unreadable we can hit a crasher due to - sscanf. We now check for NULL before feeding sscanf. - - lib/ephy-profile-utils.c | 8 +++++--- - 1 file changed, 5 insertions(+), 3 deletions(-) - -commit 4a8a0f51849d8414cadfdeb5527820c4a689343a -Author: Diego Escalante Urrelo -Date: Mon Dec 6 20:49:27 2010 +0100 - - ephy-profile-migration: separate migration code into another binary - - The migration code is now in the ephy-profile-migrator binary, this means: - - epiphany is not linking to NSS anymore - - lib/ephy-profile-migration.c was split into: - + lib/ephy-profile-migrator.c: the new ephy-profile-migrator binary - + lib/ephy-profile-utils.c: convenience _ephy_profile_*_form_auth_data functions. - - testing for migration is done without running ephy-profile-migrator - - Bug #636685 - - doc/reference/Makefile.am | 5 - - embed/ephy-embed-single.c | 2 +- - embed/ephy-web-view.c | 36 +-- - lib/Makefile.am | 42 +++- - lib/ephy-profile-migration.c | 586 ------------------------------------------- - lib/ephy-profile-migration.h | 45 ---- - lib/ephy-profile-migrator.c | 470 ++++++++++++++++++++++++++++++++++ - lib/ephy-profile-utils.c | 186 ++++++++++++++ - lib/ephy-profile-utils.h | 49 ++++ - src/Makefile.am | 4 - - src/ephy-main.c | 21 +- - tests/Makefile.am | 7 - - 12 files changed, 774 insertions(+), 679 deletions(-) - -commit e691b408355ec7789fe07c93f6c2376660c44486 -Author: Sahran -Date: Mon Dec 6 21:51:04 2010 +0100 - - Added UG translation - - po/ug.po | 1014 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 539 insertions(+), 475 deletions(-) - -commit f0e4768d336276334d7051ea9f6ee731b47c96b9 -Author: Kjartan Maraas -Date: Mon Dec 6 18:16:13 2010 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 295 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 135 insertions(+), 160 deletions(-) - -commit a7754510a01e60d856b20946e2a479b5cf149ff2 -Author: Diego Escalante Urrelo -Date: Sat Nov 6 18:24:16 2010 -0500 - - ephy-embed: clean up embed widget skeleton - - The inspector embedding breaks some assumptions about the internal embed - widgetry, mainly breaking EPHY_GET_EMBED_FROM_EPHY_WEB_VIEW macro. - The embed now has the main EphyWebView in a GtkPaned permanently. - - Bug #628459 - - embed/ephy-embed-utils.h | 2 +- - embed/ephy-embed.c | 100 +++++++++++++++++------------------------------ - 2 files changed, 37 insertions(+), 65 deletions(-) - -commit 5ca644b3023b74aff98995a2829cc7281088e756 -Author: Yaron Shahrabani -Date: Mon Dec 6 14:36:12 2010 +0200 - - Updated Hebrew translation. - - po/he.po | 1791 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 853 insertions(+), 938 deletions(-) - -commit a200905ba8a0533cd8c81d06df980e2f4f480953 -Author: Yaron Shahrabani -Date: Sat Sep 4 02:46:41 2010 +0300 - - Updated Hebrew translation. - - po/he.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5641c511a80969b910ba45897a2be3c411d40618 -Author: Diego Escalante Urrelo -Date: Mon Dec 6 10:17:29 2010 +0100 - - window-commands: hackfest mooded epiphany - - Party-approved-by: Comrade Xan - - src/window-commands.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit e8e388982b455411b17d6ee2bc187f64f70a1bea -Author: Diego Escalante Urrelo -Date: Mon Dec 6 10:14:25 2010 +0100 - - window-commands: fix GtkAboutDialog property name - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4f15aa13172c3e2e0aca4b1fe031ce283702f882 -Author: Diego Escalante Urrelo -Date: Mon Dec 6 10:00:00 2010 +0100 - - Revert "Updated Russian translation from Yuri Myasoedov" - - This reverts commit 4289565b836e12d67449228ef6af4e6e031c54e8. - - This translation file is for Empathy, not Epiphany! - - po/ru.po | 5926 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 2979 insertions(+), 2947 deletions(-) - -commit ef817ec85f6854a34dae62f977c834a2fe1d3c6e -Author: Alejandro G. Castro -Date: Wed Dec 1 10:58:32 2010 +0100 - - Handle all the different kind of errors in the load_error_cb callback - and control they are caused by the main frame. - - Bug #623012 - - embed/ephy-web-view.c | 73 ++++++++++++++++++++++++++++++++++++++++----------- - 1 file changed, 57 insertions(+), 16 deletions(-) - -commit 61394d5278c9d180e9adfee30633d31f08d5e6fb -Author: Xan Lopez -Date: Tue Nov 30 00:37:34 2010 +0100 - - [release] 2.91.3 - - NEWS | 10 ++++++++++ - configure.ac | 6 +++--- - 2 files changed, 13 insertions(+), 3 deletions(-) - -commit 48315d122dfa27a3bf30a6ce8d6c2d10f914ad21 -Author: Theppitak Karoonboonyanan -Date: Tue Nov 23 22:54:48 2010 +0700 - - Updated Thai translation. - - po/th.po | 1870 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 897 insertions(+), 973 deletions(-) - -commit d3012a7f87b3d55effdbb20806d97528431b70cf -Author: Xan Lopez -Date: Sun Nov 21 17:15:05 2010 -0500 - - ephy-web-view: manually unref DOM objects when needed - - Some DOM objects are not garbage collected by WebKit (since they are - not in the DOM tree), manually unref them when they are not needed - anymore. - - embed/ephy-web-view.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 8e5a300ccf15f9b2c80befb6ae489bace20cb3ef -Author: Gheyret T.Kenji -Date: Sat Nov 20 11:02:52 2010 +0100 - - Added UG translation - - po/ug.po | 32 ++++++++++++++++---------------- - 1 file changed, 16 insertions(+), 16 deletions(-) - -commit 413cab43a2ed26de37fa38e76cfac266eb43fe3a -Author: Khaled Hosny -Date: Sat Nov 20 05:59:52 2010 +0200 - - Updated Arabic translation - - po/ar.po | 1821 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 873 insertions(+), 948 deletions(-) - -commit 60637e1634dda521aa94f18c3cc51740d6beda78 -Author: Sergio Villar Senin -Date: Wed Nov 17 12:38:50 2010 +0100 - - WebKitSoupCache expects a max cache size in bytes - - Bug #635066 - - embed/ephy-embed-single.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 45c55e012b51e902ca249a122846353f8bc91926 -Author: Gheyret T.Kenji -Date: Sun Nov 14 00:04:22 2010 +0100 - - Added UG translation - - po/LINGUAS | 1 + - 1 file changed, 1 insertion(+) - -commit c68bdf693ddbeff00e27163e35449171308308d0 -Author: Gheyret T.Kenji -Date: Sat Nov 13 21:51:35 2010 +0100 - - Added UG translation - - po/ug.po | 2890 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 2890 insertions(+) - -commit 76d2ce4052f359700de3b89b3ed182e55373385b -Author: Xan Lopez -Date: Mon Nov 8 22:48:53 2010 -0500 - - [release] 2.91.2.1 - - Do not depend on unreleased GTK+ (!). - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit bf1552fa311a957253e7e6b89d94e64f39016398 -Author: Javier Jardón -Date: Tue Nov 9 02:52:27 2010 +0100 - - Use gtk_paned_new() instead gtk_[h|v]paned_new() - - embed/ephy-embed.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -commit 631d563a1c59798b2eff35753339500caf51d9a6 -Author: Xan Lopez -Date: Mon Nov 8 18:26:35 2010 -0500 - - [release] 2.91.2 - - NEWS | 12 ++++++++++++ - configure.ac | 4 ++-- - 2 files changed, 14 insertions(+), 2 deletions(-) - -commit 3a46327008fa129b33805cc85faa6f8dd78d1f88 -Author: Xan Lopez -Date: Sun Nov 7 15:15:11 2010 -0500 - - ephy-web-view: use full content zoom by default - - As a FIXME we could support both (at the same time) somewhat easily, - we just need to add the needed APIs in WebKitGTK+. - - Bug #615362 - - embed/ephy-web-view.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 25645b10da23df03b84989f2ff7e910f0c2069f6 -Author: Xan Lopez -Date: Sat Oct 30 12:38:58 2010 +0900 - - ephy-web-view: remove ge-dom-mouse signals - - They are not even emitted anymore, and are unused. - - embed/ephy-web-view.c | 33 --------------------------------- - embed/ephy-web-view.h | 4 ---- - 2 files changed, 37 deletions(-) - -commit 35a4ffa0fdfe4fe3c993345467cd30cc61f12d0c -Author: Xan Lopez -Date: Sat Oct 30 12:31:09 2010 +0900 - - ephy-main: remove libnotify leftover - - src/ephy-main.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit 77f5a28aeaa1085672d53d3848b060cab476224c -Author: Takayuki KUSANO -Date: Wed Nov 3 08:54:27 2010 +0900 - - Updated Japanese translation - - po/ja.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 174a51819570a975cc61e642f7f26cb4bc2f9c57 -Author: Diego Escalante Urrelo -Date: Mon Nov 1 00:56:51 2010 -0500 - - tests: DBUS_LIBS is needed for libephymain.la - - tests/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit d977181645702ebf719134b5651521a0490e61fa -Author: Matthias Classen -Date: Sat Oct 30 11:21:24 2010 +0900 - - Drop usage of deprecated size-request signal - - Signed-off-by: Xan Lopez - - src/ephy-fullscreen-popup.c | 25 +++++++++++++++++++++---- - 1 file changed, 21 insertions(+), 4 deletions(-) - -commit 4ac121ff0e7bd0882a66b3171a855575350ca08e -Author: Xan Lopez -Date: Fri Oct 29 22:38:10 2010 +0900 - - Remove libnotify dependency - - We are going to revamp the downloads UI to fit better in the Shell - design, but for now we can just get rid of this. - - configure.ac | 10 ------ - embed/downloader-view.c | 84 ------------------------------------------------- - src/ephy-main.c | 9 ------ - 3 files changed, 103 deletions(-) - -commit 0bc6455d757cf8a22ad3936288ff4023ddd7e4a7 -Author: Diego Escalante Urrelo -Date: Sat May 15 20:37:51 2010 -0500 - - popup-commands: use the image name on Open image - - Name the temp file ".XXXXXX" instead of "viewimageXXXXXX.tmp". - - Bug #302986 - - src/popup-commands.c | 29 ++++++++++++++++------------- - 1 file changed, 16 insertions(+), 13 deletions(-) - -commit 107681ebb16674e0cbac5d28966825ff1b05d609 -Author: Xan Lopez -Date: Sun Oct 24 20:11:21 2010 +0900 - - Always enable Web Inspector - - I don't think it makes any sense to make this optional, much less to - have a UI preference for it. - - data/epiphany.convert | 1 - - data/glade/prefs-dialog.ui | 54 ---------------------------------- - data/org.gnome.epiphany.gschema.xml.in | 4 --- - embed/ephy-embed-prefs.c | 5 +--- - lib/ephy-prefs.h | 1 - - src/ephy-window.c | 7 ----- - src/prefs-dialog.c | 3 -- - 7 files changed, 1 insertion(+), 74 deletions(-) - -commit c255df464cf44e9687f80c5845e5f31a500f7084 -Author: Xan Lopez -Date: Mon Nov 2 12:10:40 2009 +0200 - - Spinner changes - - We get rid of the spinner in the toolbar, since load information is - already given by the floating status indicator inside the WebView. - - The only remaining spinner is the one in the tabs, which has been - ported to use GtkSpinner. - - Get rid of EphySpinner. - - Fixes: - https://bugzilla.gnome.org/show_bug.cgi?id=524809 (again) - https://bugzilla.gnome.org/show_bug.cgi?id=598442 - - doc/reference/epiphany-docs.sgml | 1 - - doc/reference/epiphany-sections.txt | 10 - - doc/reference/epiphany.types | 2 - - doc/reference/tmpl/ephy-spinner.sgml | 60 --- - lib/widgets/Makefile.am | 4 - - lib/widgets/ephy-spinner-tool-item.c | 115 ----- - lib/widgets/ephy-spinner-tool-item.h | 62 --- - lib/widgets/ephy-spinner.c | 967 ----------------------------------- - lib/widgets/ephy-spinner.h | 72 --- - lib/widgets/testspinner.c | 264 ---------- - src/Makefile.am | 2 - - src/ephy-fullscreen-popup.c | 56 -- - src/ephy-fullscreen-popup.h | 3 - - src/ephy-notebook.c | 8 +- - src/ephy-toolbar.c | 56 -- - src/ephy-toolbar.h | 3 - - src/ephy-window.c | 9 - - 17 files changed, 3 insertions(+), 1691 deletions(-) - -commit 90f545eba59c0ecf1ea6924d909630e9a9b564c6 -Author: Xan Lopez -Date: Sun Oct 24 17:21:26 2010 +0900 - - ephy-web-view: don't use set-scroll-adjustments signal - - Instead rely on notify::{h,v}adjustment - - embed/ephy-web-view.c | 26 +++++++++++++++++++------- - 1 file changed, 19 insertions(+), 7 deletions(-) - -commit e6a1b53ad5b92b572017bc756e188ccfc86b7f9a -Author: Xan Lopez -Date: Sun Oct 24 16:31:08 2010 +0900 - - ephy-node-view: use new GtkScrollable APIs - - lib/widgets/ephy-node-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit dfb1741fc2daf0280e058bb456f0a952da2a5ee0 -Author: Carles Ferrando -Date: Sat Oct 23 01:05:28 2010 +0200 - - Updated Catalan (Valencian) translation - - po/ca@valencia.po | 248 +++++++++++++++++++++++++++--------------------------- - 1 file changed, 124 insertions(+), 124 deletions(-) - -commit 60fdf062468a581293d651da936dd5485ef32c8f -Author: Matthias Classen -Date: Thu Oct 21 18:58:08 2010 +0900 - - Use the new GtkComboText APIs - - Signed-off-by: Xan Lopez - - lib/widgets/ephy-zoom-control.c | 4 ++-- - lib/widgets/testspinner.c | 8 ++++---- - src/bookmarks/ephy-bookmarks-editor.c | 6 +++--- - src/ephy-history-window.c | 12 ++++++------ - 4 files changed, 15 insertions(+), 15 deletions(-) - -commit ab1ddba880306b133d221822cc610f1276d38e20 -Author: Xan Lopez -Date: Wed Oct 20 23:37:18 2010 +0900 - - configure.ac: post-release version bump - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2123da9266cb291026c1795bac713c57be7d8209 -Author: Xan Lopez -Date: Wed Oct 20 23:36:37 2010 +0900 - - configure.ac: remove .1 from paper-bag release - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2ec7e377b73170bf3ba0d7b030c6e7ef26cf54e4 -Author: Xan Lopez -Date: Wed Oct 20 23:26:37 2010 +0900 - - [release] 2.91.1.1 - - Do not depend on gsettings-desktop-schemas 0.0.2, which is not - released yet. - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 8060270950c12963a0deba342bdc8c762d19c46a -Author: Jorge González -Date: Wed Oct 20 08:28:49 2010 +0200 - - Updated Spanish translation - - help/es/es.po | 88 +++++++++++++++++++++++++++++------------------------------ - 1 file changed, 44 insertions(+), 44 deletions(-) - -commit dd5b80092b1ca0e202dda7d77bc5de88d7114a3a -Author: Xan Lopez -Date: Tue Oct 19 14:20:46 2010 +0900 - - [release] 2.91.1 - - NEWS | 12 ++++++++++++ - configure.ac | 4 ++-- - 2 files changed, 14 insertions(+), 2 deletions(-) - -commit 44cb4c9450ad3e22b0777266f04b7c792d579bbf -Author: Matej Urbančič -Date: Sun Oct 17 12:21:00 2010 +0200 - - Added sl for Slovenian translation - - help/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit febf6a8c1540646a21415d3761d5798e439d41b4 -Author: Matej Urbančič -Date: Sun Oct 17 12:20:39 2010 +0200 - - Updated Slovenian translation - - help/sl/sl.po | 2033 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 2033 insertions(+) - -commit bd81a10c55bc49d7ee77a3ec21cc8f14691be165 -Author: Kjartan Maraas -Date: Sat Oct 16 13:40:43 2010 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 1373 ++++++++++++++++++++------------------------------------------ - 1 file changed, 448 insertions(+), 925 deletions(-) - -commit a849031ab769e10565e72e723bff1210745ea5ca -Author: Sergio Villar Senin -Date: Wed Sep 29 17:06:37 2010 +0200 - - Added soup cache - - embed/ephy-embed-single.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 44 insertions(+) - -commit 8b4c3eb738cdd9867db3ed941743fab493e3118e -Author: Xan Lopez -Date: Mon Oct 11 20:59:27 2010 +0900 - - Plug g_file_new_for_path leaks - - lib/ephy-file-helpers.c | 3 ++- - src/bookmarks/ephy-bookmarks-export.c | 8 ++++++-- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit cc56e3e286232da24a6508650b7ef026a494535b -Author: Xan Lopez -Date: Sun Oct 10 23:38:40 2010 +0900 - - ephy-node-db: make the db unref all remaining nodes on destruction - - lib/ephy-node-db.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit 76c730a46e58a239a448c68115d1e44ca9199749 -Author: Xan Lopez -Date: Sun Oct 10 23:06:16 2010 +0900 - - ephy-bookmarks: plug leak - - src/bookmarks/ephy-bookmarks.c | 1 + - 1 file changed, 1 insertion(+) - -commit 6375ebd3361a02e6c996140b33979fc1061ef734 -Author: Diego Escalante Urrelo -Date: Sun Oct 10 19:28:24 2010 -0500 - - epiphany.desktop: declare ability to handle http and https - - Bug #631450 - - data/epiphany.desktop.in.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1aa8043ce4334bd6344b36a26d8604b085930c95 -Author: Diego Escalante Urrelo -Date: Sun Oct 10 18:11:06 2010 -0500 - - ephy-extensions-manager: improve toggle load code - - g_variant_builder_end is not needed after using the builder with - g_settings_set. - - Bug #631839 - - src/ephy-extensions-manager.c | 19 +++++++++---------- - 1 file changed, 9 insertions(+), 10 deletions(-) - -commit 4bdb490a0b722c58db30b2ecfcf9be9af7f9f4ab -Author: Diego Escalante Urrelo -Date: Sun Oct 10 17:16:39 2010 -0500 - - ephy-extensions-manager: remove an always-true check - - It's not really a needed check anyway. - - src/ephy-extensions-manager.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 7582bfeff255dea5e465d1117cdeac5abd96f845 -Author: Mario Blättermann -Date: Sun Oct 10 19:11:56 2010 +0200 - - [i18n] Updated German translation - - po/de.po | 1446 +++++++++++++++++++++----------------------------------------- - 1 file changed, 488 insertions(+), 958 deletions(-) - -commit 3f63ae1f5c5726446b6f1e6ee3dc2bfbe05f75f9 -Author: Xan Lopez -Date: Sun Oct 10 22:49:33 2010 +0900 - - ephy-session: plug memory leaks - - src/ephy-session.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 2ca51b4db7d1df89873cfd79875e7f69625cf867 -Author: Xan Lopez -Date: Sun Oct 10 22:46:25 2010 +0900 - - Revert "Port to GtkSpinner" - - This reverts commit 98811918bc8c5065eb4b21feb35c9f4def67341f. - - Accidentally committed. - - lib/widgets/ephy-spinner-tool-item.c | 52 +- - lib/widgets/ephy-spinner.c | 967 +++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-spinner.h | 72 +++ - src/Makefile.am | 2 + - src/ephy-fullscreen-popup.c | 11 +- - src/ephy-notebook.c | 8 +- - 6 files changed, 1078 insertions(+), 34 deletions(-) - -commit 2c7cb83d8ee4f80430d8ab61cb7a97fb014c6a3d -Author: Xan Lopez -Date: Sun Oct 10 18:54:44 2010 +0900 - - ephy-extensions-manager: plug memory leak - - src/ephy-extensions-manager.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 98811918bc8c5065eb4b21feb35c9f4def67341f -Author: Xan Lopez -Date: Mon Nov 2 12:10:40 2009 +0200 - - Port to GtkSpinner - - https://bugzilla.gnome.org/show_bug.cgi?id=598442 - - lib/widgets/ephy-spinner-tool-item.c | 52 +- - lib/widgets/ephy-spinner.c | 967 ----------------------------------- - lib/widgets/ephy-spinner.h | 72 --- - src/Makefile.am | 2 - - src/ephy-fullscreen-popup.c | 11 +- - src/ephy-notebook.c | 8 +- - 6 files changed, 34 insertions(+), 1078 deletions(-) - -commit bc0b1a4e87b6294a31a812a69bfbde1ae934be21 -Author: Xan Lopez -Date: Sat Oct 9 19:27:20 2010 +0900 - - ephy-spinner: fix spinner drawing - - Was using a no longer calculated rect for the drawing coordinates. - - lib/widgets/ephy-spinner.c | 9 +-------- - 1 file changed, 1 insertion(+), 8 deletions(-) - -commit 14c563eb8190ce9fcced08c4e11638ad388714ab -Author: Petr Kovar -Date: Sat Oct 9 11:47:07 2010 +0200 - - Update Czech translation by Lucas Lommer - - po/cs.po | 2182 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1059 insertions(+), 1123 deletions(-) - -commit dc394f09ad1f381c26195fc9032b833404657143 -Author: Xan Lopez -Date: Fri Oct 8 18:25:24 2010 +0900 - - Use odd middle number for the release. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5df7af9e3041102a5f5601d60faa11c38b48de75 -Author: Diego Escalante Urrelo -Date: Sun Jul 25 01:59:55 2010 +0200 - - gsettings: port epiphany to gsettings - - Adds our own schemas, a migration file and removes old gconf API and files. - - Bug #624485 - - configure.ac | 21 +- - data/Makefile.am | 37 +- - data/epiphany-lockdown.schemas.in | 119 --- - data/epiphany.convert | 56 ++ - data/epiphany.schemas.in | 536 ------------- - data/glade/prefs-dialog.ui | 17 +- - data/org.gnome.epiphany.gschema.xml.in | 237 ++++++ - data/ui/epiphany-bookmark-editor-ui.xml | 2 +- - embed/downloader-view.c | 44 +- - embed/ephy-embed-prefs.c | 353 ++++----- - embed/ephy-embed-prefs.h | 23 - - embed/ephy-embed-single.c | 7 +- - embed/ephy-embed.c | 10 +- - embed/ephy-encodings.c | 42 +- - embed/ephy-history.c | 23 +- - embed/ephy-web-view.c | 14 +- - lib/Makefile.am | 4 +- - lib/eel-gconf-extensions.c | 724 ------------------ - lib/eel-gconf-extensions.h | 83 -- - lib/ephy-dialog.c | 1220 ++---------------------------- - lib/ephy-dialog.h | 38 - - lib/ephy-file-chooser.c | 12 +- - lib/ephy-file-helpers.c | 5 +- - lib/ephy-prefs.h | 126 +-- - lib/ephy-settings.c | 65 ++ - lib/ephy-settings.h | 44 ++ - po/POTFILES.in | 4 +- - src/bookmarks/ephy-bookmark-properties.c | 6 +- - src/bookmarks/ephy-bookmarks-editor.c | 126 +-- - src/bookmarks/ephy-bookmarks-import.c | 18 +- - src/bookmarks/ephy-bookmarks-ui.c | 7 +- - src/bookmarks/ephy-bookmarks.c | 31 +- - src/ephy-activation.c | 5 +- - src/ephy-encoding-dialog.c | 42 +- - src/ephy-extensions-manager.c | 181 ++--- - src/ephy-history-window.c | 256 ++----- - src/ephy-home-action.c | 5 +- - src/ephy-lockdown.c | 378 +++++---- - src/ephy-main.c | 12 +- - src/ephy-net-monitor.c | 46 +- - src/ephy-notebook.c | 24 +- - src/ephy-session.c | 10 +- - src/ephy-shell.c | 11 +- - src/ephy-toolbar-editor.c | 14 +- - src/ephy-toolbars-model.c | 24 +- - src/ephy-window.c | 89 +-- - src/pdm-dialog.c | 77 +- - src/popup-commands.c | 2 +- - src/prefs-dialog.c | 548 ++++++++------ - src/window-commands.c | 12 +- - 50 files changed, 1602 insertions(+), 4188 deletions(-) - -commit 60d08f64c2466ce8eda20d832239ec6defc9ef06 -Author: Xan Lopez -Date: Tue Oct 5 14:17:10 2010 +0900 - - Require GTK+ 2.91.1 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6a9728101fa10bc47a2298fed0783316964eb84d -Author: Xan Lopez -Date: Tue Oct 5 14:16:32 2010 +0900 - - Use gtk_widget_get_preferred_size instead of gtk_widget_size_request - - lib/ephy-gui.c | 12 ++++++------ - src/ephy-fullscreen-popup.c | 2 +- - 2 files changed, 7 insertions(+), 7 deletions(-) - -commit 2d556b740f1b21dd3b5652271de6194df0d48ac5 -Author: Xan Lopez -Date: Tue Oct 5 14:04:29 2010 +0900 - - Adapt to latest changes in the GTK+ drawing model - - Mostly moving from ::expose-event to ::draw, and adapting to the - changes in the paint functions. - - embed/ephy-web-view.c | 20 +++++++++---------- - lib/widgets/ephy-location-entry.c | 42 +++++++++++++++++++-------------------- - lib/widgets/ephy-spinner.c | 18 ++++------------- - 3 files changed, 33 insertions(+), 47 deletions(-) - -commit 639a3f6aa2b594c5a5f339ac32db599ae98ed39b -Author: Xan Lopez -Date: Mon Oct 4 18:36:43 2010 +0900 - - ephy-embed: add _ prefix to instance/class structs - - embed/ephy-embed.c | 2 +- - embed/ephy-embed.h | 10 +++++----- - 2 files changed, 6 insertions(+), 6 deletions(-) - -commit 2d67545a24df8c486588043ab43c5af322251ab5 -Author: Xan Lopez -Date: Mon Oct 4 18:36:24 2010 +0900 - - Use gobject-introspection 0.9.5 syntax - - configure.ac | 2 +- - src/Makefile.am | 10 ++++++---- - 2 files changed, 7 insertions(+), 5 deletions(-) - -commit ab655bba1c4a1724b8ccae12de68ec762760fea5 -Author: Xan Lopez -Date: Mon Oct 4 17:22:28 2010 +0900 - - ephy-notebook: use set_group_name instead of set_group - - The latter was removed. - - src/ephy-notebook.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 3211ff44c7370e35360d123031ab2d7347b993d6 -Author: Ivaylo Valkov -Date: Sun Sep 26 16:16:10 2010 +0300 - - Updated Bulgarian translation - - po/bg.po | 304 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 156 insertions(+), 148 deletions(-) - -commit d1aab90396182243aa19760a9d626fdc63fa5c6b -Author: Francesco Marletta -Date: Tue Sep 21 22:40:26 2010 +0200 - - [l10n] Updated Italian translation - - po/it.po | 912 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 431 insertions(+), 481 deletions(-) - -commit baeb87aacb9b4df048eb35b73dac001a802a8d20 -Author: Takayuki KUSANO -Date: Mon Sep 20 01:38:23 2010 +0900 - - Updated Japanese translation - - po/ja.po | 547 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 255 insertions(+), 292 deletions(-) - -commit 407599bb869d6ad04e03939f5969c90832a4a730 -Author: Vincent Untz -Date: Wed Sep 15 15:11:54 2010 +0200 - - Do not default to --enable-maintainer-mode in configure - - Note that gnome-autogen.sh (called by autogen.sh) will call - --enable-maintainer-mode. The current setup just means we have - --enable-maintainer-mode by default in tarballs, which is wrong. - - configure.ac | 3 --- - 1 file changed, 3 deletions(-) - -commit e46901eb21ddd73117ab28e0260c651698e7255b -Author: Xan Lopez -Date: Sat Sep 11 22:23:56 2010 +0900 - - Update for latest GTK+ 3.x release. - - configure.ac | 2 +- - lib/widgets/ephy-location-entry.c | 10 +++---- - lib/widgets/ephy-node-view.c | 8 ++--- - src/bookmarks/ephy-bookmark-action.c | 6 ++-- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-find-toolbar.c | 34 ++++++++++----------- - src/ephy-history-window.c | 4 +-- - src/ephy-main.c | 2 +- - src/ephy-window.c | 56 +++++++++++++++++------------------ - src/pdm-dialog.c | 2 +- - 10 files changed, 63 insertions(+), 63 deletions(-) - -commit d36dfe69183d0e5e1207f2faa290b7867fde2ba0 -Author: Andre Klapper -Date: Mon Sep 6 20:39:41 2010 +0200 - - Added Aragonese translation on behalf of Daniel Martinez Cucalon - - po/LINGUAS | 1 + - po/an.po | 3378 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 3379 insertions(+) - -commit 479f0a9a7ec095a8457e7d5b70695207e81f40c6 -Author: Xan Lopez -Date: Sun Sep 5 22:31:45 2010 +0900 - - pdm-dialog: do not crash when clearing the passwords from prefs dialog - - The code (wrongly) assumed we could only be called from withing the - PDM dialog. Do some refactoring to make it more generic. - - Bug #606933 - - src/pdm-dialog.c | 85 +++++++++++++++++++++++++++----------------------------- - 1 file changed, 41 insertions(+), 44 deletions(-) - -commit 3f5372159fd33c6315acb4b9da048372ca21f586 -Author: Xan Lopez -Date: Sun Sep 5 22:29:35 2010 +0900 - - GtkDialog separators are gone in GTK+ 3.x - - data/glade/certificate-dialogs.ui | 1 - - data/glade/epiphany.ui | 3 --- - data/glade/form-signing-dialog.ui | 1 - - data/glade/prefs-dialog.ui | 2 -- - src/bookmarks/ephy-bookmark-properties.c | 1 - - src/bookmarks/ephy-bookmarks-editor.c | 3 +-- - src/ephy-toolbar-editor.c | 1 - - src/pdm-dialog.c | 1 - - 8 files changed, 1 insertion(+), 12 deletions(-) - -commit aa3612925834a54a80b300d73d6bf4a64fb3b35f -Author: Mattias Põldaru -Date: Fri Sep 3 17:56:49 2010 +0300 - - [l10n] Updated Estonian translation - - po/et.po | 66 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 33 insertions(+), 33 deletions(-) - -commit 43e7d5085b715e7b9b523eb63beeb29121f17a7d -Author: Diego Escalante Urrelo -Date: Fri Sep 3 02:01:32 2010 -0500 - - ephy-dialog: remove useless modal property - - Bug #624485 - - lib/ephy-dialog.c | 39 --------------------------------------- - lib/ephy-dialog.h | 3 --- - 2 files changed, 42 deletions(-) - -commit 61ba13a0743875521e6be98008dac3ee1c75f5c2 -Author: Yaron Shahrabani -Date: Thu Sep 2 17:53:23 2010 +0300 - - Updated Hebrew translation. - - po/he.po | 78 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 39 insertions(+), 39 deletions(-) - -commit 0a32007b2d9834e25bc180e520390074ac1eaf0c -Author: Xan Lopez -Date: Thu Sep 2 03:30:06 2010 +0900 - - Makefile: pass ACLOCAL_FLAGS to aclocal - - That way it can pick up m4 files in weird places if set-up properly, - like by jhbuild. - - Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1a21e15098d622ecb06efa4034d3f2d8e5dc4d79 -Author: Xan Lopez -Date: Wed Sep 1 18:06:52 2010 +0900 - - pdm-dialog: use gtk_message_dialog_get_message_area instead of home-grown hack - - Yay. - - src/pdm-dialog.c | 19 +------------------ - 1 file changed, 1 insertion(+), 18 deletions(-) - -commit eb1d1d55d89f892c158771b89eb80b49970f2139 -Author: Philip Withnall -Date: Wed Sep 1 09:16:44 2010 +0100 - - Update British English translation - - po/en_GB.po | 992 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 499 insertions(+), 493 deletions(-) - -commit 999dcd23280017a664d32d438593695c929bca9f -Author: Michael Kotsarinis -Date: Tue Aug 31 23:31:16 2010 +0300 - - l10n: Updated Greek translation for epiphany - - po/el.po | 888 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 452 insertions(+), 436 deletions(-) - -commit 1231b2f5db82bc23b110e9c003773c52dcef3d82 -Author: Jorge González -Date: Tue Aug 31 05:12:33 2010 +0200 - - Updated Spanish translation - - po/es.po | 54 +++++++++++++++++++++++++++--------------------------- - 1 file changed, 27 insertions(+), 27 deletions(-) - -commit 762fa75770dec59ded1c49c74bc67b1e5a4e7d3b -Author: Gabor Kelemen -Date: Tue Aug 31 02:15:04 2010 +0200 - - Updated Hungarian translation - - po/hu.po | 34 +++++++++++++++++----------------- - 1 file changed, 17 insertions(+), 17 deletions(-) - -commit 6826970c1526fb7436f21d7b453b84912112eac7 -Author: Милош Поповић -Date: Tue Aug 31 02:24:27 2010 +0200 - - Updated Serbian translation - - po/sr.po | 62 +++++++++++++++++++++++++++++++++------------------------- - po/sr@latin.po | 62 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 70 insertions(+), 54 deletions(-) - -commit 6316dcba109ca7cfb1ae1d4aee9471c3e25b474e -Author: Diego Escalante Urrelo -Date: Mon Aug 30 13:17:37 2010 -0500 - - lib/egg: update to libegg master - - Bug #580557 - - lib/egg/egg-editable-toolbar.c | 296 +++++++++++++++++------------------------ - lib/egg/egg-toolbar-editor.c | 55 ++++---- - lib/egg/egg-toolbars-model.c | 68 +++++----- - lib/egg/egg-toolbars-model.h | 9 +- - 4 files changed, 186 insertions(+), 242 deletions(-) - -commit 333aeb884c7ac134155ffa73aad8699c536d44d9 -Author: Diego Escalante Urrelo -Date: Mon Aug 30 13:12:14 2010 -0500 - - lib/egg: update scripts - - Bug #580557 - - lib/egg/update-from-egg.sh | 8 +++++++ - lib/egg/update-toolbareditor-from-libegg.sh | 35 ----------------------------- - 2 files changed, 8 insertions(+), 35 deletions(-) - -commit c2091dfc9e6b9054324226cff8c6b140273bd618 -Author: Matej Urbančič -Date: Mon Aug 30 19:00:57 2010 +0200 - - Updated Slovenian translation - - po/sl.po | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - -commit 2544c3afd640d28782394e6a031f79ab6d90a641 -Author: Diego Escalante Urrelo -Date: Sun Aug 22 16:03:32 2010 -0500 - - ephy-favicon-cache: remove failed download files - - Bug #618627 - - embed/ephy-favicon-cache.c | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -commit 91e7be8d258530d52cf324becbaf6ed07f74d8f6 -Author: Diego Escalante Urrelo -Date: Sun Aug 22 16:10:48 2010 -0500 - - ephy-favicon-cache: don't store invalid icon types - - Refuse to store in the cache any invalid icon type, this prevents us from - storing 404 html pages as favicons. - - Bug #618627 - - embed/ephy-favicon-cache.c | 59 +++++++++++++++++++++++++++++++++++++--------- - 1 file changed, 48 insertions(+), 11 deletions(-) - -commit aedf2a28d8f136b6f5997dec6904a31e5cecc9fd -Author: Diego Escalante Urrelo -Date: Sun Aug 22 16:08:49 2010 -0500 - - ephy-favicon-cache: remove invalid files on get - - When calling ephy_favicon_cache_get we might hit an invalid file type that we - didn't catch previously, delete it. - - Bug #618627 - - embed/ephy-favicon-cache.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit a5424f2cddc8b43852c3566940a8ee911a9a8b80 -Author: Diego Escalante Urrelo -Date: Sun Aug 22 16:01:40 2010 -0500 - - ephy-favicon-cache: remove legacy EPHY_NODE_FAVICON_PROP_CHECKOLD - - Bug #618627 - - embed/ephy-favicon-cache.c | 5 ----- - 1 file changed, 5 deletions(-) - -commit 3a6ed841d1fbbe93dd99056718e493161f98dd52 -Author: Xan Lopez -Date: Mon Aug 30 18:18:20 2010 +0900 - - downloader-view.c: do not overwrite timeout ID - - We just use it to update the buttons 100ms later, so having one is - enough. If we overwrite it we might crash down the road when we run - the timeout on a disposed DV. - - embed/downloader-view.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 7de4e2e117ded140cb1daefefe475b4199d47edd -Author: Fran Diéguez -Date: Mon Aug 30 10:38:37 2010 +0200 - - Updated Galician translations - - po/gl.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit c9b4ce2cd7daa0c46b412776e1caef022a09d951 -Author: Xan Lopez -Date: Mon Aug 30 14:36:25 2010 +0900 - - about.ini: reality check - - data/about.ini | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 3b150ece86db35c27e547997feeda21abccefc73 -Author: Xan Lopez -Date: Mon Aug 30 14:28:27 2010 +0900 - - Bump version to 2.90.0 - - We won't release from master for 2.32, so skip that cycle. - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 35550d6ec0eb89e79e420e53b63414c40a5c55b2 -Author: Xan Lopez -Date: Mon Aug 30 14:14:54 2010 +0900 - - prefs-dialog.ui: fix capitalization of "Enable Plugins" - - Bug #627496 - - data/glade/prefs-dialog.ui | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit efa69ea894d37947817e9f4ecd638078fdb7b8af -Author: Reuben Potts -Date: Sun Aug 29 14:17:50 2010 +0200 - - [i18n] Updated Manx translation - - po/gv.po | 1457 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 824 insertions(+), 633 deletions(-) - -commit 32aa5a9d9fccb8871cee87110dd698ed49d00065 -Author: Ivar Smolin -Date: Fri Aug 27 18:55:37 2010 +0300 - - [l10n] Updated Estonian translation - - po/et.po | 91 ++++++++++++++++------------------------------------------------ - 1 file changed, 22 insertions(+), 69 deletions(-) - -commit dc08f94b7741c0f79924f1a2574178198072d650 -Author: Yaron Shahrabani -Date: Fri Aug 27 14:52:14 2010 +0300 - - Updated Hebrew translation. - - po/he.po | 283 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 146 insertions(+), 137 deletions(-) - -commit e8f3224569c2ad25e9b259c9df9d660427834966 -Author: Bruno Brouard -Date: Thu Aug 26 23:12:13 2010 +0200 - - Updated French translation - - po/fr.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4106bf55ed1d3053a34fca3522464ce6eb7e795e -Author: Bruno Brouard -Date: Thu Aug 26 23:03:13 2010 +0200 - - Updated French translation - - po/fr.po | 836 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 396 insertions(+), 440 deletions(-) - -commit a5d57862392982fc718b0142be82b078e0c04505 -Author: Gabor Kelemen -Date: Thu Aug 26 03:58:10 2010 +0200 - - Updated Hungarian translation - - po/hu.po | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - -commit ddf0781657ab7ee304529f22db9a1c07cb0035be -Author: Gabor Kelemen -Date: Thu Aug 26 03:56:24 2010 +0200 - - Updated Hungarian translation - - po/hu.po | 829 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 392 insertions(+), 437 deletions(-) - -commit f86c452f9fb60910eefd6d51ed91f6d5e41156e9 -Author: Daniel Nylander -Date: Wed Aug 25 23:23:28 2010 +0200 - - Updated Swedish translation - - po/sv.po | 54 +++++++++++++++++++++++++++++++++++------------------- - 1 file changed, 35 insertions(+), 19 deletions(-) - -commit 0669d85d465f03216c49b48761a82ab7cd5adb14 -Author: A S Alam -Date: Wed Aug 25 21:03:45 2010 +0530 - - update translation for Punjabi - - po/pa.po | 924 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 453 insertions(+), 471 deletions(-) - -commit ec62c221432cb7818c339bf42f34e4ddcde93502 -Author: Matej Urbančič -Date: Wed Aug 25 15:12:20 2010 +0200 - - Updated Slovenian translation - - po/sl.po | 202 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 108 insertions(+), 94 deletions(-) - -commit 14f57c99456edbf7083d2d3f59ff4a05f03a440b -Author: Carlos Garcia Campos -Date: Wed Aug 25 11:27:20 2010 +0200 - - lib/widgets: use cairo_fill() instead of cairo_paint() - - lib/widgets/ephy-location-entry.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e640a4bf5627f098c28bdb91427f2f581f6f4e53 -Author: Fran Diéguez -Date: Tue Aug 24 23:44:59 2010 +0200 - - Update Galician translations - - po/gl.po | 205 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 110 insertions(+), 95 deletions(-) - -commit 75c39d548b9d71e4cfea545b167d33d4b5697fa0 -Author: Jorge González -Date: Tue Aug 24 22:59:36 2010 +0200 - - Updated Spanish translation - - po/es.po | 53 +++++++++++++++++++++++++++++++++++------------------ - 1 file changed, 35 insertions(+), 18 deletions(-) - -commit cb80122bfecf6b7e6d088637e8445f543f85c50a -Author: Gustavo Noronha Silva -Date: Tue Aug 24 16:34:04 2010 -0300 - - Brow paper bag commit fixing bracer style. - - embed/ephy-web-view.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 0895fc6f23ec5a589a2b34f720e4fcf208a078df -Author: Gustavo Noronha Silva -Date: Wed Aug 11 19:24:19 2010 -0300 - - Use the Geolocation support in WebKitGTK+ - - Using the infrastructure for info bars, present policy requests to the - user so they can allow/deny them based on the URI of the frame that is - requesting. Moving forward, it would be a good idea to offer to save - the decision, and store it in the history entry for that site. - - Bug #626687 - - embed/ephy-web-view.c | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 84 insertions(+) - -commit d3f44dddc2c5081d58f32dd22e81836a45e56b9b -Author: Gustavo Noronha Silva -Date: Wed Aug 11 09:44:04 2010 -0300 - - Make the inspector window bigger - - Its current size is not very helpful, and causes a small part of the - inspector to be cut off horizontally. - - Bug #626625 - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 36379fe3dd781ca3b99197749398ee12b0ecbc3c -Author: Gustavo Noronha Silva -Date: Mon Aug 9 19:29:58 2010 -0300 - - Bring inspector window to front when the inspector requests a show - - Bug #626493 - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8ca4ab2fc2585c678857860fb698dd52cafc569a -Author: Gustavo Noronha Silva -Date: Mon Aug 9 18:55:26 2010 -0300 - - Only show/hide the inspector window when it is detached - - Bug #626489 - - embed/ephy-embed.c | 26 +++++++++++++++++--------- - 1 file changed, 17 insertions(+), 9 deletions(-) - -commit 3865f08781c9c30a2deb8dc1448d0d95923ad430 -Author: Diego Escalante Urrelo -Date: Fri Aug 20 01:46:27 2010 -0500 - - lib/widgets: use cairo for drawing widgets - - Drop deprecated gdk_* drawing functions. - - Bug #627450 - - lib/widgets/ephy-location-entry.c | 82 ++++++++++++++++++--------------------- - lib/widgets/ephy-spinner.c | 18 ++++----- - 2 files changed, 45 insertions(+), 55 deletions(-) - -commit 926686bac9724434677e5e3b9b69974bb4737761 -Author: Jonh Wendell -Date: Thu Aug 19 15:29:53 2010 -0300 - - Updated Brazilian Portuguese Translation - - po/pt_BR.po | 887 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 442 insertions(+), 445 deletions(-) - -commit f59895f58ecc626c77b10eb46e394d5c9594e459 -Author: Khaled Hosny -Date: Thu Aug 19 18:52:41 2010 +0200 - - Updated Arabic translation - - po/ar.po | 902 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 448 insertions(+), 454 deletions(-) - -commit 262c8312f113980c933d416ad0261b1d3ee4ded4 -Author: Matej Urbančič -Date: Tue Aug 17 18:41:57 2010 +0200 - - Updated Slovenian translation - - po/sl.po | 254 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 126 insertions(+), 128 deletions(-) - -commit ee37967003831c4f0ad2a191d93b120157f495e5 -Author: Милош Поповић -Date: Mon Aug 16 19:10:31 2010 +0200 - - Updated Serbian translation - - po/sr@latin.po | 38 ++++++++------------------------------ - 1 file changed, 8 insertions(+), 30 deletions(-) - -commit aa1b2124e6f3456b5ba3c59087c1eec605baf3cd -Author: Милош Поповић -Date: Mon Aug 16 19:10:22 2010 +0200 - - Updated Serbian translation - - po/sr.po | 38 ++++++++------------------------------ - 1 file changed, 8 insertions(+), 30 deletions(-) - -commit 9888c91a98184ce1d7e38d83ffffa19412e7657f -Author: Милош Поповић -Date: Mon Aug 16 19:05:42 2010 +0200 - - Updated Serbian translation - - po/sr.po | 976 ++++++++++++++++++++++++++++----------------------------- - po/sr@latin.po | 976 ++++++++++++++++++++++++++++----------------------------- - 2 files changed, 976 insertions(+), 976 deletions(-) - -commit 626d441f7aae39c0da5881b1ed2f9e7f3411e9da -Author: Josselin Mouette -Date: Mon Aug 16 18:44:42 2010 +0200 - - Set Accept-Language header correctly - - This makes language autodetection, as implemented by some websites, to - work. - - Most of the code stolen from libsoup. - Original patch from Mario Sánchez Prada. - Updated to work with non-English locales. - Approved by Gustavo Noronha. - - Bug 602547 - - embed/ephy-embed-prefs.c | 52 ++++++++++++++++++++++++++++++++++++++++++++---- - 1 file changed, 48 insertions(+), 4 deletions(-) - -commit 4289565b836e12d67449228ef6af4e6e031c54e8 -Author: Leonid Kanter -Date: Mon Aug 16 13:51:50 2010 +0300 - - Updated Russian translation from Yuri Myasoedov - - po/ru.po | 5926 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 2947 insertions(+), 2979 deletions(-) - -commit 1646f307bb3b536eeac377fecf1bf7b830a44e66 -Author: Diego Escalante Urrelo -Date: Mon Aug 9 11:18:11 2010 -0500 - - ephy-embed-prefs.h: remove old unused defines - - Bug #626454 - - embed/ephy-embed-prefs.h | 12 ------------ - 1 file changed, 12 deletions(-) - -commit 5be0c2ce9380dc75d5dd988aa084571a558b847f -Author: Daniel Nylander -Date: Fri Aug 6 13:44:40 2010 +0200 - - Updated Swedish translation - - po/sv.po | 872 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 425 insertions(+), 447 deletions(-) - -commit 840397d46b479a192ed811a7c33cca8a03b21a16 -Author: Jorge González -Date: Thu Aug 5 11:39:18 2010 +0200 - - Updated Spanish translation - - po/es.po | 258 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 126 insertions(+), 132 deletions(-) - -commit 83f85841473bea3642e1f694f0b3c5f0d8ca07d4 -Author: Gustavo Noronha Silva -Date: Wed Jul 28 16:49:24 2010 +0200 - - Allow attaching/detaching the inspector in Epiphany's window - - Bug #625640 - - embed/ephy-embed.c | 122 +++++++++++++++++++++++++++++++++++++++++++++++++---- - 1 file changed, 114 insertions(+), 8 deletions(-) - -commit da304ee24d1eacd93ae65b7a62d5913e2cbc466d -Author: Diego Escalante Urrelo -Date: Sun Jul 25 01:55:29 2010 +0200 - - schemas: remove old and unused font preferences - - Bug #625922 - - data/epiphany.schemas.in | 12 ------------ - 1 file changed, 12 deletions(-) - -commit 738c3d6905d60b4d530b0d0ab94baf870550f5c7 -Author: Diego Escalante Urrelo -Date: Thu Jul 15 19:21:57 2010 -0500 - - ephy-embed-prefs: remove old font defines - - Bug #625922 - - embed/ephy-embed-prefs.h | 6 ------ - 1 file changed, 6 deletions(-) - -commit 7ab9fdce35dd7160c87d4f5150df29258b001f4c -Author: Diego Escalante Urrelo -Date: Mon Aug 2 13:46:17 2010 +0200 - - ephy-gui: remove ephy_gui_connect_checkbutton_to_gconf - - It's functionality can be replaced by GSettings API, plus it's not being used - anywhere. - - Bug #625921 - - lib/ephy-gui.c | 18 ------------------ - 1 file changed, 18 deletions(-) - -commit 1232a842ed4cbaaf4f4159676d1027546bf55977 -Author: Diego Escalante Urrelo -Date: Sat Jul 31 12:52:44 2010 +0200 - - ephy-web-view: use GObject DOM for ge-feed-link - - Bug #625808 - - embed/ephy-web-view.c | 165 +++++++++----------------------------------------- - 1 file changed, 28 insertions(+), 137 deletions(-) - -commit 3bcf8e86178f65981821ce6cba0ae1f3b46e3591 -Author: Diego Escalante Urrelo -Date: Tue Jul 27 11:41:22 2010 +0200 - - ephy-web-view: use GObject DOM for form fill/save - - Bug #625404 - - embed/ephy-web-view.c | 410 +++++++++++++++----------------------------------- - 1 file changed, 121 insertions(+), 289 deletions(-) - -commit 55b66ccdffde240e171e8b05033ef220e0e2022a -Author: Aron Xu -Date: Tue Jul 27 15:40:25 2010 +0800 - - Add zh_CN to DOC_LINGUAS - - help/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4b9c5dde70a499a3e91a1739fca2834477a0d936 -Author: Teliute -Date: Tue Jul 27 15:39:14 2010 +0800 - - Add Simplified Chinese help translation. - - help/zh_CN/zh_CN.po | 3032 +++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 3032 insertions(+) - -commit c9f42a172532b316e173ff1ed84260355f5c4658 -Author: Ivaylo Valkov -Date: Sun Jul 25 13:54:10 2010 +0300 - - Updated Bulgarian translation - - po/bg.po | 708 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 329 insertions(+), 379 deletions(-) - -commit b265d8347ea59ada2bfe2b07d9e7528b2067ffd0 -Author: drtv -Date: Sun Jul 25 15:06:21 2010 +0530 - - Updated Tamil translation - - po/ta.po | 745 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 371 insertions(+), 374 deletions(-) - -commit d15b2a210812746b65e379345852885cbb3a5f52 -Author: Fran Diéguez -Date: Sun Jul 18 18:36:53 2010 +0200 - - Fixed headers in galician translation file - - po/gl.po | 167 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 85 insertions(+), 82 deletions(-) - -commit 40980857f7ae2c5675d59901bdcb9bdf452a27ae -Author: Diego Escalante Urrelo -Date: Thu Jul 15 01:18:20 2010 -0500 - - Adapt to GtkNotebook signal signature changes - - Bug #624421 - - src/ephy-location-action.c | 2 +- - src/ephy-notebook.c | 2 +- - src/ephy-window.c | 4 ++-- - src/pdm-dialog.c | 2 +- - 4 files changed, 5 insertions(+), 5 deletions(-) - -commit cba05e0039991743b38f2fc887d1ddda9055c2fb -Author: Chao-Hsiung Liao -Date: Wed Jul 14 19:52:57 2010 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 738 ++++++++++++++++++++++++++++++----------------------------- - po/zh_TW.po | 740 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 734 insertions(+), 744 deletions(-) - -commit 7b991224e3e522e70c2b19a01bb883c40d887053 -Author: Xan Lopez -Date: Wed Jul 14 12:50:08 2010 +0200 - - 2.31.5 - - NEWS | 11 +++++++++++ - configure.ac | 2 +- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit c801d0721a3212acae6420b2cf739f21c5fe73f4 -Author: Aron Xu -Date: Wed Jul 14 10:23:14 2010 +0800 - - Complete Simplified Chinese translation. - - po/zh_CN.po | 1622 ++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 878 insertions(+), 744 deletions(-) - -commit 558c45e9d5e44d37d68b8f437f88d5ab1085d586 -Author: Jorge Kalmbach -Date: Thu Jul 8 13:13:31 2010 -0300 - - Defaults to ALL FILES on save_as dialogs - - Bug #601312 - - embed/ephy-embed-persist.c | 2 +- - src/window-commands.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 92b4cd1f8611e33c93d3db46aef6c2405a86d26d -Author: Reuben Potts -Date: Wed Jul 7 14:00:11 2010 +0200 - - Added Manx translation - - po/LINGUAS | 1 + - po/gv.po | 3412 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 3413 insertions(+) - -commit 617715baf6281c12909400f7f93b3bff24d62062 -Author: Carlos Garcia Campos -Date: Wed Jul 7 10:17:40 2010 +0200 - - Bump libnotify dependency to 0.5.1 - - To avoid symbols conflict, since old libnotify linked to gtk+-2.0 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bd1b6c86b453132c5cd9357b499630fddff5a16e -Author: Matej Urbančič -Date: Mon Jul 5 18:13:03 2010 +0200 - - Updated Slovenian translation - - po/sl.po | 704 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 322 insertions(+), 382 deletions(-) - -commit efe42291cb264b35f746e883aeafc43b67d200ef -Author: Diego Escalante Urrelo -Date: Thu Jul 1 12:50:24 2010 -0500 - - epiphany.pc.in: use 3.0 not 2.0 versions - - data/epiphany.pc.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d1c69d959436090fb4380f818812fd76649ca09b -Author: Xan Lopez -Date: Tue Jun 29 02:48:16 2010 +0200 - - The new pc file for webkit is webkitgtk-X.0.pc - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5b1f5607e251648a815041290b6708ee27745dca -Author: Xan Lopez -Date: Mon Jun 28 23:25:14 2010 +0200 - - 2.31.4 - - NEWS | 9 +++++++++ - configure.ac | 4 ++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 6f7399f3b787242e3164aaab9d12e5955472f997 -Author: Xan Lopez -Date: Thu Jun 24 22:37:01 2010 +0200 - - Bump GTK+ dependency to GTK+ 3.x branch - - We require at least 2.90.4 to build, there is no support for the old - 2.x versions anymore. - - configure.ac | 8 ++++---- - src/Makefile.am | 4 ++-- - 2 files changed, 6 insertions(+), 6 deletions(-) - -commit 1032b667190746b2a36bf87f61f12dca0c502850 -Author: Xan Lopez -Date: Sun Jun 27 14:35:54 2010 +0200 - - popup-commands: remove unneeded include - - src/popup-commands.c | 1 - - 1 file changed, 1 deletion(-) - -commit ad84050917cba56bc5e5cb42f25ce7a2bc7fe419 -Author: Mario Blättermann -Date: Sun Jun 20 20:47:35 2010 +0200 - - [i18n] Updated German translation - - po/de.po | 695 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 345 insertions(+), 350 deletions(-) - -commit ff400944e1ec4852e683ce125cb17a855965ed2e -Author: Theppitak Karoonboonyanan -Date: Sun Jun 20 11:49:54 2010 +0700 - - Updated Thai translation. - - po/th.po | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 51c6ff0b5f81b2a38ee634aa7623f4a63fa5febd -Author: Xan Lopez -Date: Sun Jun 13 00:16:28 2010 +0300 - - configure.ac: update required GTK+ version - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4634aca00a9188e83ff6f53fb43da1e137b84bd4 -Author: Xan Lopez -Date: Sun Jun 13 00:06:04 2010 +0300 - - pdm-dialog: plug leak - - src/pdm-dialog.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit 864d20152054e684a5cbb0b2dbde8f6bdf63f698 -Author: Xan Lopez -Date: Sun Jun 13 00:04:06 2010 +0300 - - pdm-dialog: nasty hack to compile with GSEAL enabled - - src/pdm-dialog.c | 22 ++++++++++++++++++++-- - 1 file changed, 20 insertions(+), 2 deletions(-) - -commit 53e41b39402f4fe7e81b8167d549b4d6b2eb1519 -Author: Xan Lopez -Date: Sat Jun 12 22:44:24 2010 +0300 - - Use accessor functions when possible - - lib/egg/egg-editable-toolbar.c | 8 ++++---- - lib/widgets/ephy-node-view.c | 2 +- - 2 files changed, 5 insertions(+), 5 deletions(-) - -commit 79e70c1d4046f227670233736f26ef7da15292b9 -Author: Xan Lopez -Date: Sat Jun 12 22:39:42 2010 +0300 - - ephy-gui: remove unused method - - lib/ephy-gui.c | 25 ------------------------- - lib/ephy-gui.h | 3 --- - 2 files changed, 28 deletions(-) - -commit a7559f3ca609fb87643adf7dfb1cde68d6d4484a -Author: Xan Lopez -Date: Sat Jun 12 22:39:09 2010 +0300 - - configure.ac: enable GSEAL in maintainer mode - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a275158ba30aa318fdbc534df1488d9303aeed52 -Author: Xan Lopez -Date: Tue Jun 8 12:42:24 2010 +0200 - - 2.31.3 - - NEWS | 10 ++++++++++ - configure.ac | 2 +- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 531ae385c42e7fb624ab3969804bbde76b67a71d -Author: Diego Escalante Urrelo -Date: Tue Jun 8 02:55:27 2010 -0500 - - ephy-embed: don't create Save As button manually - - Bug #621050 - - embed/ephy-embed.c | 13 +++---------- - 1 file changed, 3 insertions(+), 10 deletions(-) - -commit 0680a9c0802bcf6df9d0e497e7528458b52e582a -Author: Diego Escalante Urrelo -Date: Tue Jun 8 00:14:53 2010 -0500 - - ephy-embed: clean up confirm_action_from_mime - - Avoid duplication of code. - - Bug #621050 - - embed/ephy-embed.c | 71 +++++++++++++++++++++++++++--------------------------- - 1 file changed, 36 insertions(+), 35 deletions(-) - -commit cb35325a30fae5edcedaebe10108713196421e72 -Author: Kristjan Schmidt -Date: Thu Jun 10 18:38:42 2010 +0200 - - Add Esperanto translation - - po/LINGUAS | 1 + - po/eo.po | 2 +- - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit c985052b9fdc68ad249e28aabd7e4bd71aec4881 -Author: Kristjan Schmidt -Date: Thu Jun 10 18:38:40 2010 +0200 - - Add Esperanto translation - - po/eo.po | 3799 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 3799 insertions(+) - -commit 6b0e63f510ee1f7e8946f0a914e081d3af1b17c2 -Author: Seán de Búrca -Date: Tue Jun 8 13:32:22 2010 -0600 - - Updated Irish translation - - po/ga.po | 1244 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 607 insertions(+), 637 deletions(-) - -commit d8497bf4863991e470b35446347e55756d923cf7 -Author: Frédéric Péters -Date: Fri Apr 23 12:13:53 2010 +0200 - - Fixed detected feed URL for relative URIs - - Bug #609817 - - embed/ephy-web-view.c | 15 ++++++++++++++- - 1 file changed, 14 insertions(+), 1 deletion(-) - -commit c37f7cfa5b395a28d0659da375c1433df49280a9 -Author: Sira Nokyoongtong -Date: Fri Jun 4 21:16:41 2010 +0700 - - Updated Thai translation. - - po/th.po | 1721 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 860 insertions(+), 861 deletions(-) - -commit 0f710fe18f9d315254f367e897ceb9fb786ca686 -Author: Diego Escalante Urrelo -Date: Sat May 15 18:42:56 2010 -0500 - - tests: fix wrong variable name in Makefile - - tests/Makefile.am | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 137389a43aa67a0e829c1c7c02c64bfcd5abca0e -Author: Diego Escalante Urrelo -Date: Sat May 15 20:35:29 2010 -0500 - - ephy-file-helpers: use g_mkstemp instead of mkstemp - - This allows the "XXXXXX" token to be anywhere in the tmpl string. - - Bug #302986 - - lib/ephy-file-helpers.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8c64bd1d4a14f6bcd0b507a6a9789c1fdd1cc84e -Author: Mattias Põldaru -Date: Thu Jun 3 10:52:44 2010 +0300 - - Estonian translation updated - - po/et.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 7dbc73e8108d943c162ec118a382587cc4357799 -Author: Alejandro G. Castro -Date: Mon May 31 15:42:42 2010 +0200 - - Do not change the address if we are still loading the previous page - - We were replacing the address with the old one even in the case - the user cancelled the load because he added a new web page before - the previous one finished the loading process. This patch adds a check - to control if we can expire the address. - - Bug #620129 - - embed/ephy-web-view.c | 12 ++++++++---- - 1 file changed, 8 insertions(+), 4 deletions(-) - -commit 685e4e45b4d984d67f93a04701239baddb16ab0d -Author: Javier Jardón -Date: Mon May 10 02:23:57 2010 +0200 - - Do not access im_context GtkEntry element directly - - Use gtk_entry_reset_im_context() instead. - - https://bugzilla.gnome.org/show_bug.cgi?id=595791 - - src/bookmarks/ephy-bookmark-action.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 817f2ca2ef0977908e5e7632d062abe9d7d8ad56 -Author: Mattias Põldaru -Date: Tue Jun 1 19:00:40 2010 +0300 - - Estonian translation updated - - po/et.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 4746ee2160b6300726e2425de1cfc18622548d3f -Author: Ivar Smolin -Date: Mon May 31 16:18:19 2010 +0300 - - Estonian translation updated - - po/et.po | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 67250d5f8ac9ffec112ecd3e91c715e48557835c -Author: Fran Diéguez -Date: Sun May 30 17:59:05 2010 +0200 - - Updated Galician translationsus - - po/gl.po | 383 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 189 insertions(+), 194 deletions(-) - -commit 4d51b08a41899a27d27a9ddc581d2741a8663f85 -Author: Kjartan Maraas -Date: Sun May 30 17:19:49 2010 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 33 ++++++++++++++++----------------- - 1 file changed, 16 insertions(+), 17 deletions(-) - -commit 3df628ccbc425ae473dcc4b2edf8de3fef22a372 -Author: Ivar Smolin -Date: Sun May 30 09:39:03 2010 +0300 - - Estonian translation updated - - po/et.po | 210 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 112 insertions(+), 98 deletions(-) - -commit 3fe4c95986bcb4ed2440eef10f19365933657852 -Author: Yaron Shahrabani -Date: Sun May 30 01:57:00 2010 +0300 - - Updated Hebrew translation. - - po/he.po | 42 ++++++++++++++++-------------------------- - 1 file changed, 16 insertions(+), 26 deletions(-) - -commit e91c0207652de0c88d5f3812d04a407c7315450a -Author: Jorge González -Date: Sat May 29 11:53:22 2010 +0200 - - Updated Spanish translation - - po/es.po | 385 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 190 insertions(+), 195 deletions(-) - -commit 2835d6bd8ebc90d9e60bc7e62f94eb851f8d358f -Author: Diego Escalante Urrelo -Date: Tue May 4 12:43:46 2010 -0500 - - ephy-location-action: don't request EXTRA_COL - - EXTRA_COL is never used in the match_func. - - Bug #616345 - - src/ephy-location-action.c | 2 -- - 1 file changed, 2 deletions(-) - -commit b480a0bdebd3ad61f79c2bd24f88fba0cde1a9fa -Author: Diego Escalante Urrelo -Date: Fri May 28 21:39:47 2010 -0500 - - Removed encoding breaking translation of … strings - - 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 - - data/glade/form-signing-dialog.ui | 2 +- - data/glade/prefs-dialog.ui | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit efc9b989899565b69565f967b9c86702a136d040 -Author: Yaron Shahrabani -Date: Fri May 28 16:21:35 2010 +0300 - - Updated Hebrew translation. - - po/he.po | 2017 ++++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 1318 insertions(+), 699 deletions(-) - -commit d017469691a7b63823cea6d3bc07b93f96266249 -Author: Xan Lopez -Date: Thu May 27 19:37:46 2010 +0200 - - configure.ac: bump WebKitGTK+ requirement to 1.3.1 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 414a56a1c75a0eed0f19cf9fba5eaa6d15f7c21b -Author: Vladimer Sichinava -Date: Wed May 26 00:29:23 2010 +0200 - - Updated Georgian translation - - po/ka.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 7e5094613e081c6689d0877fdf1ce546ab659e92 -Author: Vladimer Sichinava -Date: Wed May 26 00:20:57 2010 +0200 - - Updated Georgian translation - - po/ka.po | 4582 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 2382 insertions(+), 2200 deletions(-) - -commit 42bce29b27e0c188dfec852c7fad6093fdf9ab50 -Author: Xan Lopez -Date: Mon May 24 14:02:58 2010 +0200 - - 2.31.2 - - NEWS | 24 ++++++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 25 insertions(+), 1 deletion(-) - -commit f269d5a184b884dcc4927f5667d1ef4c9acad8a8 -Author: Xan Lopez -Date: Mon May 24 12:51:29 2010 +0200 - - ephy-web-view: remove dom-content-loaded signal - - Would duplicate the functionality of the WebKit DOM signals, if it - worked at all... - - embed/ephy-web-view.c | 18 ------------------ - embed/ephy-web-view.h | 2 -- - 2 files changed, 20 deletions(-) - -commit d22be40676ca6dbcc13c98b85f47f7a15d38151f -Author: Kjartan Maraas -Date: Mon May 24 16:03:26 2010 +0200 - - Updated Norwegian bokmål translation - - po/nb.po | 632 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 293 insertions(+), 339 deletions(-) - -commit c55b5b72a1c037c3b8845f9447a0b8751d48ade6 -Author: Xan Lopez -Date: Sun May 23 15:17:23 2010 +0200 - - ephy-web-view: factor statusbar drawing code out of expose handler - - embed/ephy-web-view.c | 86 ++++++++++++++++++++++++++++----------------------- - 1 file changed, 47 insertions(+), 39 deletions(-) - -commit c04180dc6d7053c39b144d7953d9e4314277a81e -Author: Xan Lopez -Date: Sun May 23 15:13:51 2010 +0200 - - ephy-web-view: add a bit of padding to the statusbar - - embed/ephy-web-view.c | 29 +++++++++++++++++------------ - 1 file changed, 17 insertions(+), 12 deletions(-) - -commit 507c3d33ab6323a398e7e3f3054788d1fc23fe37 -Author: Gil Forcada -Date: Sat May 22 22:49:55 2010 +0200 - - Minor fix to Catalan translation and updated POTFILES.in - - po/POTFILES.in | 1 - - po/ca.po | 680 ++++++++++++++++++++++++++++----------------------------- - 2 files changed, 339 insertions(+), 342 deletions(-) - -commit 90818ef3b47490c9610b13332873a544d972ccb7 -Author: Xan Lopez -Date: Tue May 18 23:57:06 2010 +0200 - - Remove obsolete include - - src/epiphany.h.in | 1 - - 1 file changed, 1 deletion(-) - -commit 5f7299cbc609a499f47abe3d64f3d91381d3f2b9 -Author: Xan Lopez -Date: Tue May 18 23:40:01 2010 +0200 - - Update copyright string - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 450b7fa4b14a3de448ee2d0d60fa6901feb404a3 -Author: Diego Escalante Urrelo -Date: Mon May 17 15:20:20 2010 -0500 - - ephy-find-toolbar: highlight matches on find_again - - Find next and Find previous where not highlighting matches when the find - toolbar had been closed. We now trigger a highlight when the toolbar was hidden - when the user requested to find again. - - Bug #611499 - - src/ephy-find-toolbar.c | 11 ++++++++++- - 1 file changed, 10 insertions(+), 1 deletion(-) - -commit 27b78a446f25edf50db8acd38854a3bc937af32f -Author: Diego Escalante Urrelo -Date: Mon May 17 14:43:02 2010 -0500 - - ephy-find-toolbar: remove ephy_find_toolbar_find_again - - It's used only in one place. - - Bug #611499 - - src/ephy-find-toolbar.c | 13 +------------ - 1 file changed, 1 insertion(+), 12 deletions(-) - -commit 93dfc74752e91c868536afa17ea4efa49c853d0c -Author: Diego Escalante Urrelo -Date: Mon May 17 14:50:14 2010 -0500 - - ephy-find-toolbar: rename EphyEmbedFindResult to EphyFindResult - - Bug #611499 - - src/ephy-find-toolbar.c | 36 ++++++++++++++++++------------------ - 1 file changed, 18 insertions(+), 18 deletions(-) - -commit 6b82a586ad7cf4ac7651ebf83a31791e45629fea -Author: Diego Escalante Urrelo -Date: Mon May 17 14:33:07 2010 -0500 - - ephy-find-toolbar: simplify find next/prev functions - - Add EphyFindDirection enum and consolidate the code of - ephy_find_toolbar_find_next() and ephy_find_toolbar_find_previous(). - - Bug #611499 - - src/ephy-find-toolbar.c | 66 +++++++++++++++++++++++-------------------------- - 1 file changed, 31 insertions(+), 35 deletions(-) - -commit 190a05cdcd2998457472f6e4f45fbfa01acfeb15 -Author: Diego Escalante Urrelo -Date: Mon May 17 14:10:05 2010 -0500 - - ephy-find-toolbar: remove useless ephy_find_toolbar_set_selection - - Bug #611499 - - src/ephy-find-toolbar.c | 12 ++---------- - 1 file changed, 2 insertions(+), 10 deletions(-) - -commit 1cda73c6a5be184e90cc998b1d51c30de4ec95bb -Author: Xan Lopez -Date: Tue May 18 16:15:56 2010 +0200 - - Update the status message from within the EphyWebView - - There's no need anymore for the EphyWindow to do this, we can get rid - of one extra roundtrip. - - embed/ephy-web-view.c | 24 ++++++++++++++++++++++++ - src/ephy-window.c | 24 ------------------------ - 2 files changed, 24 insertions(+), 24 deletions(-) - -commit 50c36fdf1c4224c4b2e2a97d635fd9184af7519d -Author: Xan Lopez -Date: Tue May 18 16:15:04 2010 +0200 - - Do not hardcode the statusbar context descriptions - - Define them in the EphyWebView header, since we'll need to create the - context ids from multiple files. - - embed/ephy-web-view.h | 3 +++ - src/ephy-window.c | 4 ++-- - 2 files changed, 5 insertions(+), 2 deletions(-) - -commit 71ec9b46c22a8c5f6fa174aed77c54006e9089ea -Author: Xan Lopez -Date: Tue May 18 15:53:01 2010 +0200 - - Avoid ending up with stuck URL-entry statusbar messages - - Turns out we can get two enter messages in a row followed by just one - leave message, which will make the statusbar get stuck with a message - forever. As a solution do not allow two enter messages to be processed - unless we have gone through the corresponding leave message. - - src/ephy-window.c | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -commit 67a2d9af6414a981c02142ec195199b584b60a9d -Author: Xan Lopez -Date: Mon May 17 21:30:33 2010 +0200 - - Use a chromium-like status bar by default - - 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 - - data/ui/epiphany-ui.xml | 1 - - doc/reference/epiphany-docs.sgml | 1 - - doc/reference/epiphany-sections.txt | 10 -- - doc/reference/epiphany.types | 2 - - doc/reference/tmpl/ephy-window.sgml | 9 -- - embed/ephy-web-view.c | 259 ++++++++++++++++++++++++++++++++++++ - embed/ephy-web-view.h | 127 +++++++++--------- - src/Makefile.am | 4 - - src/ephy-lockdown.c | 4 - - src/ephy-statusbar.c | 181 ------------------------- - src/ephy-statusbar.h | 69 ---------- - src/ephy-window.c | 231 +++++--------------------------- - src/ephy-window.h | 2 - - 13 files changed, 358 insertions(+), 542 deletions(-) - -commit 0a3189127756d119ae87a3af8893e35161fcde8c -Author: Xan Lopez -Date: Mon May 17 21:27:13 2010 +0200 - - Do not create statusbar messages for navigation actions - - They are not very useful and add clutter to the UI. - - src/ephy-navigation-action.c | 13 +--------- - src/ephy-navigation-history-action.c | 50 ------------------------------------ - src/ephy-navigation-up-action.c | 45 -------------------------------- - 3 files changed, 1 insertion(+), 107 deletions(-) - -commit 088c3a656727a6229b82f739f4b54f07f9a4641c -Author: Dan Winship -Date: Mon May 17 14:21:26 2010 -0400 - - Install introspection files in our own prefix, not g-i's - - https://bugzilla.gnome.org/show_bug.cgi?id=618935 - - src/Makefile.am | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 4f563f60f2c94f29605d0f1b0a35c94efc60fd72 -Author: Gustavo Noronha Silva -Date: Mon May 17 12:17:46 2010 -0300 - - Fix crash when trying to load URIs with no path - - Trying to load file:, for instance, will crash Epiphany. This commit - fixes this. See http://bugs.debian.org/554595. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 32b02f5ecb82fd0d0536dc37f3db976690503869 -Author: Thomas Thurman -Date: Sun May 16 20:08:23 2010 -0400 - - Updated Shavian translation - - po/en@shaw.po | 475 ++++++++++++++++++++-------------------------------------- - 1 file changed, 159 insertions(+), 316 deletions(-) - -commit 108762f002b78829918460889de3420d6fef175c -Author: Diego Escalante Urrelo -Date: Thu May 13 20:22:00 2010 -0500 - - ephy-embed-single: remove add_sidebar signal - - We removed the sidebar extension for 2.30. - - embed/ephy-embed-single.c | 20 -------------------- - embed/ephy-embed-single.h | 4 ---- - src/ephy-shell.c | 41 ----------------------------------------- - 3 files changed, 65 deletions(-) - -commit abd94433fed0d0981ed3d3797f355d2ef5d1053c -Author: Fran Diéguez -Date: Fri May 14 09:25:15 2010 +0200 - - Updated Galician translations - - po/gl.po | 105 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 58 insertions(+), 47 deletions(-) - -commit 28b6440b7cef106e61ae827ecaae3ff8ba836c16 -Author: Diego Escalante Urrelo -Date: Wed Mar 10 00:00:27 2010 -0500 - - tests: add test for ephy-embed-single - - tests/Makefile.am | 6 ++- - tests/testephyembedsingle.c | 125 ++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 130 insertions(+), 1 deletion(-) - -commit 72746c0cb3ccd0bec8cc0ba7cd2f73fd42c4c30c -Author: Diego Escalante Urrelo -Date: Tue Apr 27 19:06:47 2010 -0500 - - tests: silence testephylocationentry.c debugging - - tests/testephylocationentry.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit bd464e4327550f427642b378296b7ee1eda73016 -Author: Jorge González -Date: Thu May 13 22:03:49 2010 +0200 - - Updated Spanish translation - - po/es.po | 128 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 69 insertions(+), 59 deletions(-) - -commit 36d9f9be4a55a44f6797716c4850341a348b75ad -Author: Xan Lopez -Date: Thu May 13 13:17:09 2010 +0200 - - Remove popup state from the statusbar - - The whole feature is kind of broken anyway. When we fix we'll figure - out how to show it in the UI. - - doc/reference/epiphany-sections.txt | 1 - - src/ephy-statusbar.c | 91 ------------------------------------- - src/ephy-statusbar.h | 4 -- - src/ephy-window.c | 22 +-------- - 4 files changed, 1 insertion(+), 117 deletions(-) - -commit a3f08a52b5b93c67665ad9ca4341e30940538cf1 -Author: Xan Lopez -Date: Thu May 13 12:56:29 2010 +0200 - - ephy-statusbar: remove caret browsing indicator - - We now show a dialog before enabling the preference, which should be - warning enough. - - doc/reference/epiphany-sections.txt | 1 - - src/ephy-statusbar.c | 39 ------------------------------------- - src/ephy-statusbar.h | 3 --- - src/ephy-window.c | 3 --- - 4 files changed, 46 deletions(-) - -commit 442bc41cb9fcf744ff874098cc8fadd0d121821c -Author: Xan Lopez -Date: Thu May 13 12:31:09 2010 +0200 - - Show a dialog when the user wants to enable caret browsing - - Otherwise it's really simple to enable it by mistake and never notice - you did, which can be very confusing. - - Bug #501666 - - src/window-commands.c | 37 +++++++++++++++++++++++++++++++++++++ - 1 file changed, 37 insertions(+) - -commit 87b6ed0e80a4b3c2692e20b6232cb58bc3b46e5b -Author: Xan Lopez -Date: Thu May 13 11:50:22 2010 +0200 - - ephy-statusbar: remove lock-clicked signal - - It's unused now. - - src/ephy-statusbar.c | 18 ------------------ - src/ephy-statusbar.h | 3 --- - src/ephy-window.c | 2 -- - 3 files changed, 23 deletions(-) - -commit cf1f1a9092d1e1c81b6c795dcc84a79bc41b55b1 -Author: Thomas Thurman -Date: Wed May 12 18:41:01 2010 -0400 - - Updated Shavian transliteration - - po/en@shaw.po | 1961 +++++++++++++++++++++++++++++++++++++++++++-------------- - 1 file changed, 1480 insertions(+), 481 deletions(-) - -commit 97f589c9500324e55fb162cf815ec37a4a96ac63 -Author: Xan Lopez -Date: Wed May 12 14:46:48 2010 +0200 - - Do not show the security status in the statusbar - - It's already shown in the URL entry, so it's redundant. First step - towards getting rid of the statusbar for good... - - doc/reference/epiphany-sections.txt | 2 -- - src/ephy-statusbar.c | 45 ------------------------------------- - src/ephy-statusbar.h | 6 ----- - src/ephy-window.c | 3 --- - 4 files changed, 56 deletions(-) - -commit bed36ad982a8a8300b45abe33394478c302f3dc8 -Author: Xan Lopez -Date: Wed May 12 14:36:02 2010 +0200 - - Remove smooth scrolling pref from the UI - - We'll add it back whenever we manage to add support for it in - WebKitGTK+. - - data/glade/prefs-dialog.ui | 16 ---------------- - src/prefs-dialog.c | 2 -- - 2 files changed, 18 deletions(-) - -commit 101d226ab3d3a5a867cde402952c7193b6ace0f4 -Author: Fran Diéguez -Date: Tue May 4 22:33:11 2010 +0200 - - Updated Galician translation - - po/gl.po | 248 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 123 insertions(+), 125 deletions(-) - -commit 43361b5054d05891212cd7d3d757242dd91515d2 -Author: Jorge González -Date: Tue May 4 19:17:59 2010 +0200 - - Updated Spanish translation - - po/es.po | 42 ++++++++++++++++++++++-------------------- - 1 file changed, 22 insertions(+), 20 deletions(-) - -commit 5fb632986fa8ac18cbfbdc0306bca5477f0dba95 -Author: Sergio Villar Senin -Date: Thu Apr 22 17:07:33 2010 +0200 - - Do not consider dots in directory names when looking for the extension of a file name - - embed/ephy-embed.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit aaf35d0a5cb632c57fe84c5d41648168bc703fe4 -Author: Alejandro G. Castro -Date: Tue May 4 13:18:14 2010 +0200 - - Handle the WEBKIT_NETWORK_ERROR_CANCELLED fail - - In this case the user cancelled the load, we set the address of the - current page loaded in the webview again in order to avoid showing - an URL that was not committed. - - embed/ephy-web-view.c | 10 +++++++++- - 1 file changed, 9 insertions(+), 1 deletion(-) - -commit c3ce140727235f54c61dca6cc9eb6709422fe3b8 -Author: Alejandro G. Castro -Date: Tue May 4 12:43:14 2010 +0200 - - Handle LOAD_FAILED status - - Modified the state of the webivew in case the load failed to avoid - keeping the old title or icon in that situation. - - Bug #593743 - - embed/ephy-web-view.c | 36 ++++++++++++++++++++++++++++++++++++ - 1 file changed, 36 insertions(+) - -commit 41e747ab437e9aa6d90015314f49d2955a3ef293 -Author: Alejandro G. Castro -Date: Tue May 4 12:33:00 2010 +0200 - - Fix title modification in provisional state - - Avoid setting the provisional uri as the title if there is already - a typed address, and set the loading_title before using it in the - status message. - - Bug #593743 - - embed/ephy-web-view.c | 8 +++++--- - 1 file changed, 5 insertions(+), 3 deletions(-) - -commit 7cdcf21d2d2f31a97adaea627acdffcd1b024b41 -Author: Xan Lopez -Date: Tue May 4 13:02:56 2010 +0200 - - ephy-embed: add FIXME about redirects and EphyHistory - - embed/ephy-embed.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 285aa46afc29e1e0e3a3e8979d01b46407decee2 -Author: Xan Lopez -Date: Tue May 4 12:05:00 2010 +0200 - - ephy-session: fix thinko when restoring a multiple-window session - - We were trying to reuse the first EphyEmbed in each window, but only - the first one will actually have one. Refactor the code to only - attempt this on the first window. - - src/ephy-session.c | 16 +++++++++------- - 1 file changed, 9 insertions(+), 7 deletions(-) - -commit caa7494c963298c837cdca99f863f9c816b6cd33 -Author: Xan Lopez -Date: Tue May 4 11:34:19 2010 +0200 - - ephy-web-view: fix compiler warning - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 197ed17e55c3f2999f0f193fbc3ef8b825e7b5c3 -Author: Jorge González -Date: Mon May 3 19:01:38 2010 +0200 - - Updated Spanish translation - - po/es.po | 196 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 96 insertions(+), 100 deletions(-) - -commit c2d86b7fdffdd0ff6fc47f0a2af92f51cb6b3adc -Author: Xan Lopez -Date: Mon May 3 13:51:44 2010 +0200 - - Remove obsolete get_type function from header - - embed/ephy-web-view.h | 1 - - 1 file changed, 1 deletion(-) - -commit 1bb768427bda3ed19b260081b1c7f1bf840f7314 -Author: Xan Lopez -Date: Mon May 3 13:45:23 2010 +0200 - - configure.ac: bump version to 2.31 - - configure.ac | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit d5474fc558fccf705a005475d03681a6311b7cef -Author: Xan Lopez -Date: Mon May 3 13:39:00 2010 +0200 - - ephy-session: use an infobar to inform the user about session restoration - - Much nicer than a modal dialog that blocks the browser initialization. - - src/ephy-session.c | 288 ++++++++++++++++++++++++++++++++++++----------------- - src/ephy-session.h | 1 + - 2 files changed, 196 insertions(+), 93 deletions(-) - -commit ea394862505225b631b677d33aa6c9203f850486 -Author: Xan Lopez -Date: Mon May 3 13:35:12 2010 +0200 - - Emit a signal when loading the homepage - - embed/ephy-web-view.c | 41 +++++++++++++++++++++++++++++------------ - 1 file changed, 29 insertions(+), 12 deletions(-) - -commit 6ef9fa4aa4d068482412e3cde4dbdaf8dadc925b -Author: Xan Lopez -Date: Mon May 3 12:31:25 2010 +0200 - - Move homepage loading code to EphyWebView - - Create a method to make the EphyWebView load the homepage set by the - user. This is in preparation for creating a signal for this action, - which other code in Epiphany will need. - - embed/ephy-web-view.c | 31 +++++++++++++++++++++++++++++++ - embed/ephy-web-view.h | 2 ++ - src/ephy-shell.c | 28 +++------------------------- - 3 files changed, 36 insertions(+), 25 deletions(-) - -commit baca12963da2829f2208fef44587d2f8780643dc -Author: Xan Lopez -Date: Mon May 3 12:18:02 2010 +0200 - - Move helper function into ephy-embed-utils.c - - Make url_is_empty a helper function in embed/, since we'll be moving - code from EphyShell into EphyEmbed that uses it and we don't want to - duplicate it. - - embed/ephy-embed-utils.c | 15 +++++++++++++++ - embed/ephy-embed-utils.h | 1 + - src/ephy-shell.c | 18 ++---------------- - 3 files changed, 18 insertions(+), 16 deletions(-) - -commit 64468d01ba26f414eefff08541caf4c6f6168ffb -Author: Xan Lopez -Date: Sun May 2 15:57:42 2010 +0200 - - Move link message updating to EphyWebView - - embed/ephy-embed.c | 10 ---------- - embed/ephy-web-view.c | 10 ++++++++++ - 2 files changed, 10 insertions(+), 10 deletions(-) - -commit fb45861008ad3bc272ef50f11c37be64078ff7bd -Author: Xan Lopez -Date: Sun May 2 15:54:30 2010 +0200 - - Move URI handling to EphyWebView - - embed/ephy-embed.c | 21 --------------------- - embed/ephy-web-view.c | 21 +++++++++++++++++++++ - 2 files changed, 21 insertions(+), 21 deletions(-) - -commit 769b30d8448f3b87cdc6967d3c0dbae31e44eaf8 -Author: Xan Lopez -Date: Sun May 2 15:40:16 2010 +0200 - - Move title update to EphyWebView - - Does not really make sense for the EphyEmbed container to connect to - its child signal and then update its title, let the child itself - handle it. - - embed/ephy-embed.c | 24 ------------------------ - embed/ephy-web-view.c | 35 +++++++++++++++++++++++++++++++++++ - 2 files changed, 35 insertions(+), 24 deletions(-) - -commit d60afa35bed002f98996fbdeb6a34ad01cc5b2cf -Author: Alejandro G. Castro -Date: Thu Apr 29 19:25:29 2010 +0200 - - Refactored the load status callback of ephy-web-view.c - - This patch uses the ephy-embed.c callback code and refactors it in - just one method in the ephy-web-view that handles all the status - changes for this object. - - Bug #593743 - - embed/ephy-embed.c | 70 --------------- - embed/ephy-web-view.c | 241 +++++++++++++++++++++++--------------------------- - embed/ephy-web-view.h | 3 - - 3 files changed, 113 insertions(+), 201 deletions(-) - -commit 4e914078cd832490b1d31804836f3ac2274fdaf0 -Author: Alejandro G. Castro -Date: Thu Apr 29 19:24:20 2010 +0200 - - Removed the EphyWebViewNetState enum - - We can use the webkit load status (WebKitLoadStatus) and avoid - defining our own enum to check the net states. - - Bug #593743 - - embed/ephy-embed.c | 13 +------------ - embed/ephy-web-view.c | 33 ++++++++++----------------------- - embed/ephy-web-view.h | 18 +----------------- - 3 files changed, 12 insertions(+), 52 deletions(-) - -commit e355b448ed3f5002ba11e7e76a9de9c0d9630e6f -Author: Peteris Krisjanis -Date: Mon Apr 26 22:00:00 2010 +0300 - - Updated Latvian translation. - - po/lv.po | 4661 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 2418 insertions(+), 2243 deletions(-) - -commit f0ff65852dd3494dcb802168f92d9980feec6184 -Author: Mattias Põldaru -Date: Mon Apr 26 08:01:38 2010 +0300 - - Estonian translation updated - - po/et.po | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -commit 9731424199ecfe6c879fb8dc263cfa824a5bcc67 -Author: Diego Escalante Urrelo -Date: Tue Mar 23 23:48:20 2010 -0500 - - docs: missing comment in ephy-favicon-cache - - embed/ephy-favicon-cache.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 5baa32f63ccf2512698384b2cd1970541af539ff -Author: Carles Ferrando -Date: Thu Apr 22 22:51:58 2010 +0200 - - Updated Catalan (Valencian) translation - - po/ca@valencia.po | 2357 ++++++++++++++++++++++++++++++++++------------------- - 1 file changed, 1540 insertions(+), 817 deletions(-) - -commit de52b00101c40a25f3485b594ab1258ffe02e220 -Author: Mario Sanchez Prada -Date: Tue Apr 20 22:25:43 2010 +0200 - - Open URIs on new tab when middle-clicking on an history item - - Open the history element on a new tab while keeping the right context - for the selected item with regard to the back and forward lists. - - Bug #611400 - - Signed-off-by: Xan Lopez - - src/ephy-navigation-history-action.c | 109 ++++++++++++++++++++++++++++++++--- - 1 file changed, 100 insertions(+), 9 deletions(-) - -commit be3c8f50cefef8ea3f34854c0254b3bdaa851958 -Author: Mario Sanchez Prada -Date: Tue Apr 20 22:15:25 2010 +0200 - - Allow not copying history when creating a new embed - - Just added a new flag and check it before copying the history - - Bug #611400 - - Signed-off-by: Xan Lopez - - src/ephy-shell.c | 8 +++++--- - src/ephy-shell.h | 1 + - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 0739487127652cf544257e7a0d48caa580f98ad2 -Author: Diego Escalante Urrelo -Date: Tue Apr 20 17:18:12 2010 -0500 - - ephy-location-entry: reenable favicons in completion - - Favicons in the completion popup were hidden because of an ugly flashing. It - turns out it is caused by gtk_entry_set_icon_from_* functions. They queue a - resize if the GtkEntry is visible, hence we see this ugly flash which is - actually the completion obeying to the resize. - - The side effect is that when you start typying a new address in the location - entry, the favicon of the current location will still be displayed. The - previous behaviour was to set a 'text/html' icon when the user edited the - location entry. Note that such icon will disappear as soon as you activate the - location entry. - - Bug #616345 - - lib/widgets/ephy-location-entry.c | 7 ------- - 1 file changed, 7 deletions(-) - -commit 4592bb6927a5a7017403fbcaa4937aa10c263227 -Author: Mario Sanchez Prada -Date: Fri Apr 9 19:37:09 2010 +0200 - - Change sensitiveness for history buttons when clearing the history - - Connect to the 'cleared' signal and change the sensitivity flags - - Bug #539716 - - Signed-off-by: Xan Lopez - - src/ephy-action-helper.h | 5 +++++ - src/ephy-navigation-history-action.c | 15 +++++++++++++++ - src/ephy-toolbar.c | 5 ----- - 3 files changed, 20 insertions(+), 5 deletions(-) - -commit ede59b054c4af72cc41108db8aedafbcae1996de -Author: Mario Sanchez Prada -Date: Wed Apr 7 17:19:25 2010 +0200 - - Split EphyNavigationAction in one abstract class and two subclasses - - To ease understanding and further modification of the two different - usages for the EphyNavigationAction class (Back/Forward and Up buttons), - all the code there was split so the common one is kept in the - superclass, delegating the more specific parts in the implementations - of the subclasses: History (back/forward) and Up buttons. - - Also updated usage of this class in EphyToolbar. - - Bug #539716 - - Signed-off-by: Xan Lopez - - src/Makefile.am | 120 +++++----- - src/ephy-navigation-action.c | 429 ++++++----------------------------- - src/ephy-navigation-action.h | 21 +- - src/ephy-navigation-history-action.c | 359 +++++++++++++++++++++++++++++ - src/ephy-navigation-history-action.h | 67 ++++++ - src/ephy-navigation-up-action.c | 196 ++++++++++++++++ - src/ephy-navigation-up-action.h | 57 +++++ - src/ephy-toolbar.c | 13 +- - 8 files changed, 825 insertions(+), 437 deletions(-) - -commit 384588b86e68ea692a8f99db86b45ca0cc54f804 -Author: Mario Sanchez Prada -Date: Tue Apr 6 19:57:10 2010 +0200 - - Make sure WebKitWebHistory is cleared when cleared EphyHistory - - Added new function in EphyWebView to clear the history from - WebKitWebView, and connect to the 'cleared' signal in EphyEmbed to call - to such a function when needed. - - Bug #539716 - - Signed-off-by: Xan Lopez - - embed/ephy-embed.c | 15 ++++++++++ - embed/ephy-web-view.c | 82 +++++++++++++++++++++++++++++++++++---------------- - embed/ephy-web-view.h | 1 + - 3 files changed, 72 insertions(+), 26 deletions(-) - -commit bee24a63dcdbd0c974f04cd12c0ffbf352c7edc2 -Author: Olav Vitters -Date: Sun Apr 18 11:31:13 2010 +0200 - - Fix doap file - - epiphany.doap | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b30cf3d0e24c51b0f77979af49f200bbac5bd050 -Author: Mario Sanchez Prada -Date: Wed Apr 14 18:06:36 2010 +0200 - - Send 'Referer' on headers sent for context menu HTTP downloads - - Make sure the EphyEmbedPersist object is created specifying the - EphyEmbed object, and create the network request inside of it - using the URL from the associated web view as 'Referer' - - Bug #136292 - - Signed-off-by: Xan Lopez - - embed/ephy-embed-persist.c | 31 ++++++++++++++++++++++++++++++- - src/popup-commands.c | 1 + - 2 files changed, 31 insertions(+), 1 deletion(-) - -commit 7f5202b49a8015bc09faa6e10c9f78c3e97ab83b -Author: Diego Escalante Urrelo -Date: Sun Feb 28 22:05:43 2010 -0500 - - ephy-toolbar: fix leave-fullscreen item visibility - - We were explicitely setting the separator and toolbar visibility but not the - exit_button item. This meant the fixed_toolbar was shown but the exit_button - remained hidden. - - Bug #611445 - - src/ephy-toolbar.c | 1 + - 1 file changed, 1 insertion(+) - -commit 55d0eb3dcb478a07e3209bd5dd192d9a52e8aa8f -Author: Adi Roiban -Date: Sun Apr 11 17:29:55 2010 +0300 - - Update Romanian translation - - po/ro.po | 700 +++++++++++++++++++++++++-------------------------------------- - 1 file changed, 275 insertions(+), 425 deletions(-) - -commit 598f8fbaed2a04ec8dffdd4dcba8552df6fbe812 -Author: Xan Lopez -Date: Thu Apr 8 16:56:15 2010 +0200 - - 2.30.2 - - NEWS | 8 ++++++++ - configure.ac | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 7d27730d5188ece8e818d280db1546d5ce178ad3 -Author: Xan Lopez -Date: Thu Apr 8 16:52:30 2010 +0200 - - Also change EXTENSIONS_DIR here - - lib/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 53bf12ef6b8eb9de0ebc77c00f47dcf0bccde436 -Author: Xan Lopez -Date: Thu Apr 8 16:21:07 2010 +0200 - - 2.30.1 - - NEWS | 13 +++++++++++++ - configure.ac | 2 +- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 286c36cb576f5824e526c918ada4852d59532622 -Author: Xan Lopez -Date: Thu Apr 8 16:14:23 2010 +0200 - - Version the extensions dir with EPIPHANY_API_VERSION - - We were using our normal release version, which is not where they are - installed. - - data/epiphany.pc.in | 2 +- - src/Makefile.am | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 387e246e124beb12db50facde83b04dbf04770da -Author: Mario Sanchez Prada -Date: Wed Apr 7 11:39:52 2010 +0200 - - Duplicate strings to be used as url in the Up dropdown menu - - Bug #599156 - - Signed-off-by: Xan Lopez - - src/ephy-navigation-action.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0130c7f4cd730755dc6004689ec28458f0b7cf61 -Author: Jose Millan Soto -Date: Wed Apr 7 11:33:04 2010 +0200 - - Check if URL is NULL before setting its history title - - Bug #582629 - - Signed-off-by: Xan Lopez - - embed/ephy-history.c | 1 + - 1 file changed, 1 insertion(+) - -commit 4abc19223f8e8678e62148772215522dc5396448 -Author: Jose Millan Soto -Date: Wed Apr 7 11:12:28 2010 +0200 - - Ignore case of URL schemes - - We only accept lowercase schemes right now, for no good reason. - - Bug #605089 - - Signed-off-by: Xan Lopez - - embed/ephy-embed-utils.c | 23 ++++++++++++++--------- - 1 file changed, 14 insertions(+), 9 deletions(-) - -commit 21250dde74250883831a107821bb23fc0232e160 -Author: Jose Millan Soto -Date: Fri Feb 19 18:35:51 2010 +0100 - - Improve page print implementation - - Use the already existing functions we have for print preview also for - printing; fixes a bunch of usability issues. - - Bug #609756 - - Signed-off-by: Xan Lopez - - embed/ephy-web-view.c | 44 +++++++++++++++++++++++++++++++------------- - embed/ephy-web-view.h | 1 + - src/window-commands.c | 4 +++- - 3 files changed, 35 insertions(+), 14 deletions(-) - -commit 29a826d202b0557c652b237b0b91a59ad4b2e371 -Author: Ahmed Noor Kader Mustajir Md Eusoff -Date: Tue Apr 6 23:38:09 2010 +0300 - - Updated Malay translation for epiphany - - po/ms.po | 4178 +++++++++++++++++++++++++------------------------------------- - 1 file changed, 1651 insertions(+), 2527 deletions(-) - -commit 4b6cfb1417f3fb2aae22d159ddc2a7c8631e4540 -Author: Theppitak Karoonboonyanan -Date: Tue Apr 6 15:55:56 2010 +0700 - - Updated Thai translation. - - po/th.po | 590 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 304 insertions(+), 286 deletions(-) - -commit 7f8483abf12730533fd85aa52b6efadf0ac7692c -Author: Javier Jardón -Date: Tue Apr 6 04:45:17 2010 +0200 - - Use only GTK+ single includes - - lib/widgets/ephy-spinner-tool-item.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d1c79ab17d9406ae99d99b8e3494a4eb718152df -Author: Nikos Charonitakis -Date: Sat Apr 3 02:39:14 2010 +0300 - - Updated Greek translation - - po/el.po | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit 850aba057a4e8f1fa2118a85c16aebf5cc805ebd -Author: Hideki Yamane (Debian-JP) -Date: Tue Mar 30 21:56:33 2010 +0900 - - Updated Japanese translation. - - po/ja.po | 2231 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1109 insertions(+), 1122 deletions(-) - -commit 04147a3024f1146e662bed63be17c718b4f46ecd -Author: Xan Lopez -Date: Mon Mar 29 19:27:49 2010 +0300 - - 2.30 - - NEWS | 11 +++++++++++ - configure.ac | 6 +++--- - 2 files changed, 14 insertions(+), 3 deletions(-) - -commit d1205631ab6dfe460dc68de4a2f85bb0c2f0c7be -Author: Simos Xenitellis -Date: Sun Mar 28 22:32:23 2010 +0300 - - Updated Greek translation for epiphany - - po/el.po | 72 +++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 32 insertions(+), 40 deletions(-) - -commit 01ec7837d745c171d1fcc2c49dd6a37dafe5d790 -Author: Petr Kovar -Date: Sun Mar 28 20:22:28 2010 +0200 - - Fix Czech translation by Lucas Lommer - - po/cs.po | 170 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 84 insertions(+), 86 deletions(-) - -commit d8b346b6a02d7ef0da1fcaeb97c86317d2c73918 -Author: Petr Kovar -Date: Sun Mar 28 18:03:16 2010 +0200 - - Update Czech help translation by Lucas Lommer - - help/cs/cs.po | 35 +++++++++++++++++------------------ - 1 file changed, 17 insertions(+), 18 deletions(-) - -commit ba8383944b860316318685b20b0221d310bbc269 -Author: Marios Zindilis -Date: Sun Mar 28 18:09:14 2010 +0300 - - Updated Greek translation - - po/el.po | 2078 ++++++++++++++++++++++++++------------------------------------ - 1 file changed, 856 insertions(+), 1222 deletions(-) - -commit c259150b86beb2fbb2952cd6b5018039425bb4ff -Author: Žygimantas Beručka -Date: Sun Mar 28 16:04:43 2010 +0300 - - Updated Lithuanian translation - - po/lt.po | 1139 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 589 insertions(+), 550 deletions(-) - -commit 5f5c3fb8a9cc5b03c954e9f22d75d49d7ac16d03 -Author: Jamil Ahmed -Date: Sun Mar 28 17:18:22 2010 +0600 - - Updated Bengali translation - - po/bn.po | 198 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 90 insertions(+), 108 deletions(-) - -commit d0e4ef14b7563c99d5d795abbb29cf5291b473f4 -Author: Kenneth Nielsen -Date: Sun Mar 28 10:56:32 2010 +0200 - - Updated Danish translation - - po/da.po | 1089 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 573 insertions(+), 516 deletions(-) - -commit a6c5cc5c339a5a434ec41befb1894a892e2eff03 -Author: A S Alam -Date: Sun Mar 28 10:12:55 2010 +0530 - - complete Translation for Punjabi by A S Alam - - po/pa.po | 4243 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 2015 insertions(+), 2228 deletions(-) - -commit 0e799c642d19f86ecfc6feb4f3a3299b45c120f2 -Author: Inaki Larranaga Murgoitio -Date: Sat Mar 27 15:53:47 2010 +0100 - - Updated Basque language - - po/eu.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4922dcf7c94acd1a6c3c5ba79501665e8dd8918d -Author: Inaki Larranaga Murgoitio -Date: Sat Mar 27 15:46:44 2010 +0100 - - Updated Basque language - - po/eu.po | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 9b0348131397360cbaa0ea3db3eb66c8998acd86 -Author: Jamil Ahmed -Date: Sat Mar 27 19:49:05 2010 +0600 - - Updated Bengali translation - - po/bn.po | 1552 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 867 insertions(+), 685 deletions(-) - -commit b17ccc9694a9ab5593d7d511f191c72a91ee3180 -Author: Jorge González -Date: Sat Mar 27 10:24:25 2010 +0100 - - Updated Spanish translation - - po/es.po | 72 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 36 insertions(+), 36 deletions(-) - -commit 451885191b1f83f5d8a3db5312d22d6255c64308 -Author: Maxim V. Dziumanenko -Date: Fri Mar 26 13:42:36 2010 +0200 - - Updated Ukrainian translation - - po/uk.po | 1935 +++++++++++++++++++------------------------------------------- - 1 file changed, 601 insertions(+), 1334 deletions(-) - -commit 22ee0df38cb945775c53669bdaf5130bb3fbc7ac -Author: Olivier Tilloy -Date: Fri Mar 19 18:27:13 2010 +0100 - - Only offer to open files with safe mime types - - Changed the "Open" button to "Download" when the mime type of the file - is not considered safe for opening. - - Bug #361559 - - embed/ephy-embed.c | 1 + - 1 file changed, 1 insertion(+) - -commit b2269fecb781a7dc1da3783f924ee178e5fc68ce -Author: Inaki Larranaga Murgoitio -Date: Thu Mar 25 19:48:25 2010 +0100 - - Updated Basque language - - po/eu.po | 80 ++++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 37 insertions(+), 43 deletions(-) - -commit 08c653776e8913354a6a50d853fd30b1c169e5a3 -Author: Μάριος Ζηντίλης -Date: Thu Mar 25 11:16:01 2010 +0200 - - Updated Greek translation - - help/el/el.po | 889 ++++++++++++++++++++++++++++------------------------------ - 1 file changed, 423 insertions(+), 466 deletions(-) - -commit 3d770c9d1178eaa45c6f8bb8f82dd7cf7f2b489f -Author: Diego Escalante Urrelo -Date: Mon Mar 8 21:09:44 2010 -0500 - - Remove path when normalizing urls for keyring query - - This means we store/retrieve "http://www.gnome.org/" instead of - "http://www.gnome.org/login/". User+passwords are site-wide as long as the form - elements match. This also makes migrated gecko passwords work. - - Bug #613065 - - lib/ephy-profile-migration.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 5fb98bfcb51adb7318960edb7b2da8d38e71b1cb -Author: Jorge González -Date: Mon Mar 22 18:49:59 2010 +0100 - - Updated Spanish translation - - help/es/es.po | 21 +++++++++------------ - 1 file changed, 9 insertions(+), 12 deletions(-) - -commit 811e405c85ab02e0652a4f090f9f9678e2ba4779 -Author: Inaki Larranaga Murgoitio -Date: Mon Mar 22 17:47:18 2010 +0100 - - Updated Basque language - - po/eu.po | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 56331b74d2fa6307abcefc33ce7d89f40177242f -Author: Reinout van Schouwen -Date: Mon Mar 22 00:44:52 2010 +0100 - - Updated Dutch translation. - - po/nl.po | 1129 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 593 insertions(+), 536 deletions(-) - -commit edaf481443c716c5b2212ed30865e66c64969db3 -Author: Xandru Armesto Fernandez -Date: Sun Mar 21 11:11:10 2010 +0100 - - Updated asturian language - - po/ast.po | 2538 +++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1311 insertions(+), 1227 deletions(-) - -commit 3e25376316d113680233320eb86a3e6173809508 -Author: Alexander Shopov -Date: Sun Mar 21 12:09:17 2010 +0200 - - Updated Bulgarian translation - - po/bg.po | 202 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 101 insertions(+), 101 deletions(-) - -commit 3b2edad1dfe0372cfecf8e340cde59f840891c6b -Author: Nils-Christoph Fiedler -Date: Fri Mar 19 16:32:23 2010 +0100 - - Updated LowGerman translation - - po/nds.po | 551 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 277 insertions(+), 274 deletions(-) - -commit 1977099a74e010d472b4c334b30d801699bb6ddf -Author: Ivar Smolin -Date: Tue Mar 16 14:48:15 2010 +0200 - - Estonian translation updated - - po/et.po | 397 ++++++++++++++++++++++++++++++++++++++++++++++++--------------- - 1 file changed, 307 insertions(+), 90 deletions(-) - -commit da08ca431fedfaea6a77b53a07e6b67331d1cba8 -Author: Diego Escalante Urrelo -Date: Mon Mar 15 17:57:16 2010 -0500 - - migration: be more strict with checks when storing - - Make sure we don't confuse form passwords with HTTP auth passwords. And also - check that username is not empty (at least that). Sometimes decryption fails - (not even nss tools work) and we get empty usernames. As you can see, we are - assuming here that usernames are always mandatory but passwords might not be. - - lib/ephy-profile-migration.c | 9 +++++++-- - 1 file changed, 7 insertions(+), 2 deletions(-) - -commit 5d2c310ba6e13fbfa3cb41c40c9b4b9e387df04e -Author: Diego Escalante Urrelo -Date: Tue Mar 2 19:15:12 2010 -0500 - - downloader-view: stay alive until notifications are gone - - When using notifications for downloads we usually hit the ugly case where the - notification pops but there is no GtkStatusIcon for it so it will pop in the - default location (usually bottom right). This is inconsistent with the behavior - when the GtkStatusIcon is present, which is to show it attached to it. - - To fix this we hold a reference to the DownloaderView when showing the - notification and release it when such notification has been closed. - - Bug #611779 - - embed/downloader-view.c | 134 +++++++++++++++++++++++++----------------------- - 1 file changed, 69 insertions(+), 65 deletions(-) - -commit 355994be201180a7d695844114fb465d0a5b9b39 -Author: Diego Escalante Urrelo -Date: Wed Mar 10 16:43:30 2010 -0500 - - downloader-view: change lifetime logic - - The DV follows the same goal as before (being alive while there are downloads). - - Now every download holds a reference to the DV and releases it when the - download is removed (finished, cancelled, etc). - The DV clears its own reference once and only once when a download is removed - and there are no more downloads in queue. - - Bug #611779 - - embed/downloader-view.c | 16 +++++++++++----- - 1 file changed, 11 insertions(+), 5 deletions(-) - -commit 50cd4276088499093b428b54195a88c4b7a1a0ad -Author: Diego Escalante Urrelo -Date: Wed Mar 10 19:20:01 2010 -0500 - - downloader-view: use update_download_row correctly on add - - When adding a download we should call update_download_row() *after* connecting - the signal handlers or they will never be disconnected. - Also, in update_download_row() we should consider that the case where it is - called with a download that has already been removed as a non fatal case (i.e. - just return;). This is because in downloader_view_add_download() we can have - the signal handlers remove the download from the view before the manual call - (it was happening vice versa before this). - - embed/downloader-view.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit 061f31953d1d4a6b18b7ac434f0520e65249b9e1 -Author: Diego Escalante Urrelo -Date: Wed Mar 10 16:46:53 2010 -0500 - - downloader-view: hide the view when last download finishes - - When there are no more downloads in queue, hide the view. Also if a download is - added but finishes before showing the window, don't show the window nor the - notification. - - Bug #611779 - - embed/downloader-view.c | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -commit 4ac6ceaafd1bf2281e3b666e79e6646036277980 -Author: Diego Escalante Urrelo -Date: Wed Mar 3 23:07:04 2010 -0500 - - downloader-view: use g_object_get not get_property - - A minor simplification. - - Bug #611779 - - embed/downloader-view.c | 9 +++------ - 1 file changed, 3 insertions(+), 6 deletions(-) - -commit 3d46002e19d94a38d53754d303a27bc8630e1a4e -Author: Diego Escalante Urrelo -Date: Tue Mar 2 20:05:23 2010 -0500 - - downloader-view: properly disconnect signals - - The previous code wasn't disconnecting signals at all. - - Bug #611779 - - embed/downloader-view.c | 25 +++++++++++++++++++++---- - 1 file changed, 21 insertions(+), 4 deletions(-) - -commit bf651210c6201168d4aee664f13f3581fcdab0e2 -Author: Diego Escalante Urrelo -Date: Tue Mar 2 19:15:39 2010 -0500 - - downloader-view: fix controls sensitivity - - When there are no downloads left, the Pause/Cancel buttons should not be - sensitive. - - Bug #611779 - - embed/downloader-view.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 6e9c6949dd01796615439f39d2322fc57490782f -Author: Diego Escalante Urrelo -Date: Tue Mar 2 19:14:07 2010 -0500 - - downloader-view: make status icon visible on show - - Bug #611779 - - embed/downloader-view.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit ca1e8bb81694efb8780d53942389637a76fc82a6 -Author: Francesco Marletta -Date: Mon Mar 15 22:26:29 2010 +0100 - - Updated Italian translation - - po/it.po | 1080 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 553 insertions(+), 527 deletions(-) - -commit 6acaa2dc10b7dabcaf6df587d304753f7cfd69e0 -Author: Tommi Vainikainen -Date: Mon Mar 15 11:29:03 2010 +0200 - - Updated Finnish translation - - po/fi.po | 1425 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 738 insertions(+), 687 deletions(-) - -commit 355b123d2de84ed092e9d014441f7314fe38deec -Author: Changwoo Ryu -Date: Sun Mar 14 04:29:10 2010 +0900 - - Updated Korean translation - - po/ko.po | 1091 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 580 insertions(+), 511 deletions(-) - -commit 0df6f6651bcf54b5171354d0e1c09333dd2cb7e0 -Author: Daniel Nylander -Date: Wed Mar 10 22:07:32 2010 +0100 - - Updated Swedish translation - - po/sv.po | 100 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 54 insertions(+), 46 deletions(-) - -commit 42082d50bad409c7048a0b614ef400ed3297a660 -Author: Gil Forcada -Date: Wed Mar 10 15:14:02 2010 +0100 - - Updated Catalan translation - - po/ca.po | 1207 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 628 insertions(+), 579 deletions(-) - -commit 7bad058b8d5fb5e7a7584d69ad8b7c0f743ba8cb -Author: Diego Escalante Urrelo -Date: Tue Mar 9 11:59:56 2010 -0500 - - migration: fix leading * in password field name - - Password form fields are marked with a *, but this * was not removed when - storing the field name so this led to all the passwords field names to be - migrated with the leading *. - - Bug #608687 - - lib/ephy-profile-migration.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 3423f0766d8b935e0c35b6d379bd345f14dc0bcb -Author: Diego Escalante Urrelo -Date: Tue Mar 9 11:09:29 2010 -0500 - - ephy-profile-migration: remove useless return value - - _ephy_profile_query_form_auth_data is async, doesn't return anything. - - lib/ephy-profile-migration.c | 16 +++++++--------- - lib/ephy-profile-migration.h | 2 +- - 2 files changed, 8 insertions(+), 10 deletions(-) - -commit 2a1a987ae0deea9fcc86c7adaa33eb514e6873d1 -Author: Diego Escalante Urrelo -Date: Mon Mar 8 20:31:25 2010 -0500 - - migration: don't store a trailing ) in realm - - Realms where exported as "realm)" because of a missing -1. - - Bug #608687 - - lib/ephy-profile-migration.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0c012fba8e9f3119e2fb66aac2baf39bce663fd4 -Author: Diego Escalante Urrelo -Date: Tue Mar 2 18:30:58 2010 -0500 - - Handle EPHY_EMBED_PERSIST_NO_VIEW flag - - This flag determines if a download should not appear in the DownloaderView - window. The default is to appear, like in gecko times. - - Bug #611635 - - embed/ephy-embed-persist.c | 19 +++++++++++++++++++ - tests/testephyembedpersist.c | 1 + - 2 files changed, 20 insertions(+) - -commit 4a9440cdc83655f653029a8acf86ba805743c377 -Author: Diego Escalante Urrelo -Date: Tue Mar 2 18:28:57 2010 -0500 - - Remove download only after showing its notification - - Otherwise we can hit a case where the DownloaderView no longer exists (and - hence the notification widget) because the removed download was the last one. - - Bug #611635 - - embed/downloader-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1e1799a6c26cf011d3cc545e83f67d3a6b68e81e -Author: Diego Escalante Urrelo -Date: Tue Mar 2 18:28:06 2010 -0500 - - downloader-view: handle DOWNLOAD_ACTION_DOWNLOAD action - - Otherwise we will hit an assert. - - Bug #611635 - - embed/downloader-view.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 34225b960b566b75a401a7e279978da8090d75db -Author: Diego Escalante Urrelo -Date: Sun Mar 7 19:28:37 2010 -0500 - - Inspect type property when hooking to login forms - - Some sites don't use a sane type attribute in their input tags. So for example - you get input tags without a type, or with multiple types. Offenders are - bugzillas and ohloh.net. - Luckily, WebKit inferres correctly what the input should be so instead of - relying on what the HTML says we rely on what WebKit thinks. - - Bug #608740 - - embed/ephy-web-view.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit c825037c4440837ed53a98ef7d707ce567234a5a -Author: Diego Escalante Urrelo -Date: Sun Mar 7 19:27:02 2010 -0500 - - ephy-web-view: add js_get_element_property - - This retrieves a property from a JS object, just like "element.property" in - plain javascript. - - Bug #608740 - - embed/ephy-web-view.c | 15 +++++++++++++++ - 1 file changed, 15 insertions(+) - -commit ab757b343a2e6f580777dccd72027aef486563dc -Author: Marek Černocký -Date: Tue Mar 9 15:52:21 2010 +0100 - - Add screenshots - - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 4609 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 1658 bytes - help/cs/figures/ephy-history-window-screenshot.png | Bin 0 -> 71973 bytes - help/cs/figures/ephy-screenshot.png | Bin 0 -> 69619 bytes - 4 files changed, 0 insertions(+), 0 deletions(-) - -commit 9cc7869fb5b5ab13708319d5fb0f08801ce53615 -Author: Xan Lopez -Date: Mon Mar 8 22:52:24 2010 +0200 - - 2.29.92 - - NEWS | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit e85dfffab3b1ebe96f449abdc15470a79f8417af -Author: Alexander Shopov -Date: Sat Mar 6 20:25:15 2010 +0200 - - Updated Bulgarian translation - - po/bg.po | 68 +++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 39 insertions(+), 29 deletions(-) - -commit 45cb6fdf0fb764d828e90cb6298262ee03e45cb3 -Author: Kevin_Wei_2 -Date: Sat Mar 6 19:46:46 2010 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 72 ++++++++++++++++++++++++++++++++++++------------------------- - po/zh_TW.po | 72 ++++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 86 insertions(+), 58 deletions(-) - -commit 4b28d0cce8dda1630a131dff56dd86218eac20c2 -Author: Fran Diéguez -Date: Sat Mar 6 12:16:13 2010 +0100 - - Updated Galician translation - - po/gl.po | 17 +++++++++-------- - 1 file changed, 9 insertions(+), 8 deletions(-) - -commit a174f3a5ee35e4752e90bcec2466b48a06a13616 -Author: Claude Paroz -Date: Fri Mar 5 22:23:11 2010 +0100 - - Updated French translation - - po/fr.po | 1051 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 537 insertions(+), 514 deletions(-) - -commit e224bf3a8573419e746da6f52210e7fccda1566b -Author: Gabor Kelemen -Date: Fri Mar 5 12:15:46 2010 +0100 - - Updated Hungarian translation - - po/hu.po | 1055 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 538 insertions(+), 517 deletions(-) - -commit 8bac358a4c530ef4fa91403ce8246f9f6182c5d5 -Author: Philip Withnall -Date: Thu Mar 4 23:56:28 2010 +0000 - - Updated British English translation - - po/en_GB.po | 42 +++++++++++++++++++++++++----------------- - 1 file changed, 25 insertions(+), 17 deletions(-) - -commit 57a1c8af6a42a3df0d32c251bac801032441d7b6 -Author: Fran Diéguez -Date: Fri Mar 5 00:21:36 2010 +0100 - - Update Galician translation - - po/gl.po | 106 +++++++++++++++++++++++++-------------------------------------- - 1 file changed, 42 insertions(+), 64 deletions(-) - -commit 42b76f4d6d1d9cb70ee834b80bed754120596153 -Author: Inaki Larranaga Murgoitio -Date: Thu Mar 4 23:07:11 2010 +0100 - - Updated Basque language - - po/eu.po | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---- - 1 file changed, 105 insertions(+), 6 deletions(-) - -commit e9de16e0634ea9a2bc5ce6e719aa178c502d18b9 -Author: Gilfran Ribeiro -Date: Thu Mar 4 15:40:09 2010 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 251 ++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 117 insertions(+), 134 deletions(-) - -commit 459c894bdf6868ffd7bb0521f96928aa1a0b02ac -Author: Khaled Hosny -Date: Wed Mar 3 19:46:35 2010 +0200 - - Updated Arabic translation - - po/ar.po | 68 +++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 39 insertions(+), 29 deletions(-) - -commit 2b11f960b38a3e71d6818391dc6d0706dabf44c9 -Author: Leonid Kanter -Date: Wed Mar 3 19:15:27 2010 +0200 - - updated Russian translation by Den V. Kaftaev - - po/ru.po | 38 +++++++++++++++++++++++--------------- - 1 file changed, 23 insertions(+), 15 deletions(-) - -commit bbae20a14ea8ed13d90ea3be6ba62329ec992526 -Author: vasudeven -Date: Wed Mar 3 21:55:39 2010 +0530 - - updated Tamil translation - - po/ta.po | 68 +++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 39 insertions(+), 29 deletions(-) - -commit 72097a05e2fa2b27a424015db338569c9b1f25ff -Author: Kjartan Maraas -Date: Wed Mar 3 15:56:15 2010 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 64 +++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 37 insertions(+), 27 deletions(-) - -commit 5d87ab735e184688d10e5c094410a5a133df48c9 -Author: Inaki Larranaga Murgoitio -Date: Tue Mar 2 20:28:28 2010 +0100 - - Updated Basque language - - po/eu.po | 1137 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 529 insertions(+), 608 deletions(-) - -commit 259463ff84b2b04559a5ead6b0be74631e2d59bb -Author: Duarte Loreto -Date: Tue Mar 2 01:49:29 2010 +0000 - - Updated Portuguese translation - - po/pt.po | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit ad4a88ba8342496aa802ecc23586507b2bdf9643 -Author: Duarte Loreto -Date: Tue Mar 2 01:43:20 2010 +0000 - - Updated Portuguese translation - - po/pt.po | 1099 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 577 insertions(+), 522 deletions(-) - -commit 573d63726426a4c866c339da2fe3cef630fd36a2 -Author: Petr Kovar -Date: Mon Mar 1 19:25:10 2010 +0100 - - Update Czech translation by Lucas Lommer & Petr Kovar - - po/cs.po | 1048 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 533 insertions(+), 515 deletions(-) - -commit 03348794d78493b387f99bf3671e495ef549fc32 -Author: Piotr Drąg -Date: Mon Mar 1 18:18:12 2010 +0100 - - Updated Polish translation - - po/pl.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit f784ad2e954fa5575596a0ae5ed3ce71217a4fa8 -Author: Piotr Drąg -Date: Mon Mar 1 18:17:38 2010 +0100 - - Updated Polish translation - - po/pl.po | 71 +++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 41 insertions(+), 30 deletions(-) - -commit 7b783972e5626146e16eccd83d940d020f0da518 -Author: Mario Blättermann -Date: Mon Mar 1 09:27:02 2010 +0100 - - Updated German translation - - po/de.po | 68 +++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 39 insertions(+), 29 deletions(-) - -commit f8c7ffbcd672519390b7325ce2d69e5141068677 -Author: Miloš Popović -Date: Sun Feb 28 23:25:31 2010 +0100 - - Updated Serbian translations - - po/sr.po | 1086 ++++++++++++++++++++++++++++++-------------------------- - po/sr@latin.po | 1086 ++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1178 insertions(+), 994 deletions(-) - -commit b88e56e20fb05f15ecfde0cd9b066ee3137054ed -Author: Jorge González -Date: Sun Feb 28 22:25:41 2010 +0100 - - Updated Spanish translation - - po/es.po | 68 +++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 39 insertions(+), 29 deletions(-) - -commit b892d12eef11586d4e55d01ec476630f9705b3a7 -Author: Matej Urbančič -Date: Sun Feb 28 21:34:57 2010 +0100 - - Updated Slovenian translation - - po/sl.po | 64 ++++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 36 insertions(+), 28 deletions(-) - -commit 7005d1952c9c5abe922a0360efb999c87fe48d81 -Author: Xan Lopez -Date: Sun Feb 28 22:28:04 2010 +0200 - - POTFILES.in: add missing file - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit 9d4a76c0e9d17517f2f9f8f81a4bf0bc98e1d2b3 -Author: Xan Lopez -Date: Sat Feb 27 12:26:02 2010 +0200 - - configure.ac: bump version to 2.29.92 - - Somehow the commit bumping version to 2.29.91 was lost... so 2.29.91 - was released as 2.29.90. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 57b887e2cb4e63566ab4a76410503250769a9e3f -Author: Diego Escalante Urrelo -Date: Thu Feb 25 18:00:16 2010 -0500 - - tests: add test for EphyEmbedPersist - - Bug #600987 - - tests/Makefile.am | 4 + - tests/testephyembedpersist.c | 314 +++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 318 insertions(+) - -commit d3038a0b98a28b84782b22f3127f1e1708914733 -Author: Diego Escalante Urrelo -Date: Wed Feb 24 10:27:31 2010 -0500 - - ephy-window: fix button-press callback return value - - Don't always return FALSE when is_middle_clickable or is_middle_click or - middle_click_opens are FALSE. This can overwrite left_click + shift cases that - are handled and hence should be TRUE. - - Bug #610844 - - src/ephy-window.c | 12 ++++-------- - 1 file changed, 4 insertions(+), 8 deletions(-) - -commit 7795f72123d8aced9247c512a708583cef62b95a -Author: Diego Escalante Urrelo -Date: Wed Feb 24 10:26:28 2010 -0500 - - Correctly handle shit+click only in ephy-window - - If we handle shift+click in EphyWebView default handler then we will be - preventing WebKit from getting *any* shift+click event, this breaks shift+click - for extending selection. Removing that however makes shift+click browse to - links just as click would do. The solution is to prevent - policy_decision_required_cb to browse to the clicked link when it includes the - shift modifier. - - Bug #610844 - - embed/ephy-web-view.c | 4 ---- - src/ephy-window.c | 9 +++++++++ - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit 763d3dcfb0a577ba6ae7535705a75a5eb064c3b1 -Author: Nils-Christoph Fiedler -Date: Thu Feb 25 18:10:07 2010 +0100 - - Added LowGerman translation - - po/nds.po | 3345 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 3345 insertions(+) - -commit d335b923d6d7f3d329dd77e0fd152da481b54dea -Author: Nils-Christoph Fiedler -Date: Thu Feb 25 18:10:01 2010 +0100 - - Added LowGerman translation - - po/LINGUAS | 1 + - 1 file changed, 1 insertion(+) - -commit 185d79d604681b8958dcdacefcbb434fd597ce8c -Author: Leonid Kanter -Date: Thu Feb 25 14:24:33 2010 +0200 - - Update Russian translation by Yuri Kozlov - - po/ru.po | 20 +++++++++++--------- - 1 file changed, 11 insertions(+), 9 deletions(-) - -commit d18ee1f0e5a0b8924cf019fc2e7463a61b39e5eb -Author: Bruce Cowan -Date: Wed Feb 24 17:04:31 2010 +0000 - - Updated British English translation - - po/en_GB.po | 1092 +++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 570 insertions(+), 522 deletions(-) - -commit 2424b7418399694e059ea22699de1c0c45dab772 -Author: Diego Escalante Urrelo -Date: Tue Feb 23 01:47:21 2010 -0500 - - Always use i18n'd Desktop and Downloads dir names - - Otherwise preferences gets confused and also some other parts of our code put - files where they shouldn't be. This was causing the default downloads - destination to reset everytime the preferences dialog was opened and also - causing some downloads (when "Open" is selected) to end up where they - shouldn't. - - Bug #610721 - - lib/ephy-file-helpers.c | 3 ++- - src/prefs-dialog.c | 7 +++++-- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 6974d3b41f80e9e43b240d4041dabfd8f80a7a95 -Author: Leonid Kanter -Date: Tue Feb 23 15:00:38 2010 +0200 - - Update Russian translation by Yuri Kozlov - - po/ru.po | 2634 ++++++++++++++++++++++---------------------------------------- - 1 file changed, 934 insertions(+), 1700 deletions(-) - -commit e845054b9a65aa5bd480caf871299f0a1531f7c6 -Author: Priit Laes -Date: Tue Feb 23 10:30:49 2010 +0200 - - Estonian translation updated - - po/et.po | 83 ++++++++++++++++++++++++++-------------------------------------- - 1 file changed, 33 insertions(+), 50 deletions(-) - -commit f3ed2a94694b698bb3cb38bb08a741364fe2df9b -Author: Gustavo Noronha Silva -Date: Mon Feb 22 16:32:20 2010 -0300 - - Fix last patch to account for changes in soup API, and bump required version - - configure.ac | 2 +- - embed/ephy-embed-single.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 8daa3af1d4aecc92f7a0558173884ed703964476 -Author: Xan Lopez -Date: Mon Feb 22 21:19:03 2010 +0200 - - NEWS: update for release - - NEWS | 16 ++++++++++++++++ - 1 file changed, 16 insertions(+) - -commit 3e0f7dea754381c5ad11a06ccc62eb153382b498 -Author: Gustavo Noronha Silva -Date: Thu Feb 18 14:30:49 2010 -0200 - - Report broken certs through the padlock icon - - This uses a new feature in libsoup that reports through a - SoupMessageFlag whether the message is talking to a server that has a - trusted server. - - Bug #600663 - - configure.ac | 36 +++++++++++++++++++++++++++++++++++- - embed/ephy-embed-single.c | 15 +++++++++++++++ - embed/ephy-embed.c | 29 +++++++++++++++++++++-------- - 3 files changed, 71 insertions(+), 9 deletions(-) - -commit a5858387b3bba793a65d8bd262e122604529045f -Author: Matej Urbančič -Date: Mon Feb 22 15:33:03 2010 +0100 - - Updated Slovenian translation - - po/sl.po | 67 ++++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 36 insertions(+), 31 deletions(-) - -commit c068cf04421c6363a5929e16321d5b6fe99d96a4 -Author: vasudeven -Date: Mon Feb 22 11:57:59 2010 +0530 - - updated Tamil translation - - po/ta.po | 42 ++++++++++++++++++++++++------------------ - 1 file changed, 24 insertions(+), 18 deletions(-) - -commit 9643ee06fb6bb17bfab5222516d963deebfdc0d7 -Author: Dumitru Mișu Moldovan -Date: Sun Feb 21 22:57:04 2010 +0200 - - Updated Romanian translation - - po/ro.po | 3731 +++++++++++++++++++++----------------------------------------- - 1 file changed, 1271 insertions(+), 2460 deletions(-) - -commit 5d03926eee4dbec99ed12eef92d332833ee6dd92 -Author: Ivaylo Valkov -Date: Sun Feb 21 18:17:26 2010 +0200 - - Updated Bulgarian translation - - po/bg.po | 60 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 30 insertions(+), 30 deletions(-) - -commit 852b539b4ce5a7ba5ac88e8fea293885a5f78aa7 -Author: Daniel Nylander -Date: Sun Feb 21 17:00:42 2010 +0100 - - Updated Swedish translation - - po/sv.po | 1005 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 578 insertions(+), 427 deletions(-) - -commit c66ecdf32ea08ea653d806f1ddfde08dced7e4b2 -Author: Piotr Drąg -Date: Sat Feb 20 22:11:41 2010 +0100 - - Updated Polish translation - - po/pl.po | 1119 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 564 insertions(+), 555 deletions(-) - -commit b1150cc11a6e6254f89a6e43e77bc039779ac42f -Author: Mario Blättermann -Date: Sat Feb 20 16:24:47 2010 +0100 - - Updated German translation - - po/de.po | 489 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 233 insertions(+), 256 deletions(-) - -commit 6f3bda2243a682415ff25795bbb8073876c1daff -Author: Khaled Hosny -Date: Sat Feb 20 15:41:44 2010 +0200 - - Updated Arabic translation - - po/ar.po | 68 +++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 37 insertions(+), 31 deletions(-) - -commit bbed8b178cd59764314027bbee7e692824354d12 -Author: Jorge González -Date: Sat Feb 20 11:07:27 2010 +0100 - - Updated Spanish translation - - po/es.po | 472 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 233 insertions(+), 239 deletions(-) - -commit e7a72f9e188930149f46b0994a005dfefa803dfc -Author: Xan Lopez -Date: Sat Feb 20 11:45:29 2010 +0200 - - Change 'Enable Java' setting to 'Enable Plugins' - - There's really no way to completely disable Java support alone, and I - think enabling/disabling plugins in general is much more useful. - - data/epiphany.schemas.in | 6 +++--- - data/glade/prefs-dialog.ui | 4 ++-- - embed/ephy-embed-prefs.c | 5 ++++- - embed/ephy-embed-prefs.h | 2 +- - src/prefs-dialog.c | 2 +- - 5 files changed, 11 insertions(+), 8 deletions(-) - -commit f603e1a330c4a9227c02779658839aac13805577 -Author: Djavan Fagundes -Date: Fri Feb 19 23:47:51 2010 -0500 - - Updated Brazilian Portuguese translation. - - po/pt_BR.po | 1986 +++++++++++++++++++---------------------------------------- - 1 file changed, 634 insertions(+), 1352 deletions(-) - -commit 2df12ad5882cf78c10df47d927566a69afc3af4f -Author: Olivier Tilloy -Date: Sun Feb 14 19:48:51 2010 +0100 - - ephy-tabs-menu: show favicons instead of radiobuttons in the tabs menu. - - Bug #405505 - - Signed-off-by: Xan Lopez - - src/ephy-tabs-menu.c | 75 ++++++++++++++++++++-------------------------------- - 1 file changed, 29 insertions(+), 46 deletions(-) - -commit 0239346f27870ace37d8819cd7f934c34d83a01c -Author: Gustavo Noronha Silva -Date: Thu Feb 18 16:39:24 2010 -0200 - - Make sure the strings are initialized to NULL - - This fixes a crash reported ad-hoc in - https://bugzilla.gnome.org/show_bug.cgi?id=609753. This is needed - because we may bail out early, and try to free these strings without - having properly initialized them. - - embed/ephy-web-view.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 11411217fe5f2653994cfd94a3daf315ed1199e6 -Author: Diego Escalante Urrelo -Date: Tue Feb 16 23:30:46 2010 -0500 - - ephy-embed: don't use g_signal_connect_object - - It doesn't do what we expect it to do to keep the download object alive, a - simple g_signal_connect does the right thing instead. - This fixes the downloads not moving to final destination problem. - - Bug #609263 - - embed/ephy-embed.c | 38 ++++++++++++++++++++++++-------------- - 1 file changed, 24 insertions(+), 14 deletions(-) - -commit 96d326b4c95995f487b8f51160a46089155b307b -Author: vasudeven -Date: Wed Feb 17 21:35:43 2010 +0530 - - updated Tamil translation - - po/ta.po | 1029 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 554 insertions(+), 475 deletions(-) - -commit 0a93c981821ba37765f271d87d6788370da5e409 -Author: Diego Escalante Urrelo -Date: Tue Feb 16 01:51:13 2010 -0500 - - Open links in new windows with control+shift+click - - This should restore the old behaviour of modifiers completely. - - Bug #604950 - - src/ephy-window.c | 30 ++++++++++++++++++++++++------ - 1 file changed, 24 insertions(+), 6 deletions(-) - -commit 0e3eaec0ea23d4e4b2c006c82d92bb8a4027a726 -Author: Diego Escalante Urrelo -Date: Tue Feb 16 01:48:56 2010 -0500 - - ephy-web-view: be precise in what modifiers to catch - - In ephy_web_view_button_press_event we are being too liberal with "&" when - checking for modifiers, we want == so we don't prevent handling elsewhere. - Also explain the function a bit more. - - Bug #604950 - - embed/ephy-web-view.c | 12 ++++++++---- - 1 file changed, 8 insertions(+), 4 deletions(-) - -commit 4f5d35180aa54b87e4bd9298a6e80eba0967ba59 -Author: Diego Escalante Urrelo -Date: Tue Feb 16 01:10:06 2010 -0500 - - Random formatting fixes - - Too wide comments, some indentation. - - embed/ephy-web-view.c | 28 ++++++++++++++-------------- - src/ephy-notebook.c | 9 +++++---- - src/ephy-window.c | 5 +++-- - 3 files changed, 22 insertions(+), 20 deletions(-) - -commit 0970e4f5a661e2b281431f1f960a508b90e2f61e -Author: Xan Lopez -Date: Tue Feb 16 15:11:19 2010 +0200 - - Enable window auto resize/move. - - Bug #604991 - - configure.ac | 2 +- - embed/ephy-embed-prefs.c | 1 + - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit f29411193492b870b31a2cb299f30261cd03b861 -Author: Rene Pärts -Date: Mon Feb 15 20:07:55 2010 +0200 - - Estonian translation updated - - po/et.po | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - -commit c1e8e9d90c37eb7ceb43ef92f2b298df76b2fa33 -Author: Fran Diéguez -Date: Mon Feb 15 13:38:16 2010 +0100 - - Updated Galician Translation - - po/gl.po | 215 ++++++++++++++++++++++++++------------------------------------- - 1 file changed, 89 insertions(+), 126 deletions(-) - -commit 156e4360507fbc39e6caef7058e700802a721e2b -Author: Diego Escalante Urrelo -Date: Mon Jan 11 23:13:19 2010 -0500 - - Remove legacy ALLOW_FIXUP flags - - This were used by the gecko backend and nowadays are not used at all. - - Bug #608749 - - src/ephy-home-action.c | 8 ++++---- - src/ephy-link.h | 1 - - src/ephy-location-action.c | 4 ++-- - src/ephy-shell.h | 3 +-- - src/ephy-window.c | 4 ---- - src/window-commands.c | 2 +- - 6 files changed, 8 insertions(+), 14 deletions(-) - -commit 05f51f0f5f9d0a1974baf2e1bf78378cb4a95bd8 -Author: Chao-Hsiung Liao -Date: Mon Feb 15 11:42:05 2010 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 1473 +++++++++++++++++++++++++++++++++---------------------- - po/zh_TW.po | 1564 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 1836 insertions(+), 1201 deletions(-) - -commit 8ee6dd74ab9f8aa5a51a73fb84e9f07870ae682a -Author: Diego Escalante Urrelo -Date: Sun Feb 14 14:15:32 2010 -0500 - - Use correct UTF8 length when converting JSStrings - - JSStringGetLength returns the number of UTF8 chars in the string, using this - value results in trimmed strings when they contain UTF8 chars. - The correct function is JSStringGetMaximumUTF8CStringSize that reports the - number of bytes the string requires to be allocated, including null-byte. - - Bug #609936 - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ce57e7c7d528b184ceae9575caec39e193c29aaa -Author: Ivaylo Valkov -Date: Fri Feb 12 07:35:32 2010 +0200 - - Updated Bulgarian translation - - po/bg.po | 777 +++++++++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 533 insertions(+), 244 deletions(-) - -commit f37b48d7aefb675a9115c3f225b593a043646beb -Author: Diego Escalante Urrelo -Date: Thu Feb 11 00:05:39 2010 -0500 - - downloader-view: current-size is guint64 not gint64 - - embed/downloader-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 081cb08e7129f9b55cd6af161aa119a7ad314395 -Author: Fran Diéguez -Date: Thu Feb 11 17:17:20 2010 +0100 - - Updated Galician Translation - - po/gl.po | 1293 ++++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 843 insertions(+), 450 deletions(-) - -commit eb55fc7974c51d26ec5e539d7214787d1fac9a07 -Author: Javier Jardón -Date: Thu Feb 11 03:30:46 2010 +0100 - - Use accessor functions instead direct access - - Substitute GTK_WIDGET_MAPPED() and GTK_WIDGET_REALIZED() - GTK+ required version bumped to 2.19.5 - - https://bugzilla.gnome.org/show_bug.cgi?id=595791 - - configure.ac | 2 +- - lib/widgets/ephy-location-entry.c | 2 +- - lib/widgets/ephy-spinner.c | 4 ++-- - src/ephy-fullscreen-popup.c | 2 +- - src/ephy-notebook.c | 2 +- - 5 files changed, 6 insertions(+), 6 deletions(-) - -commit 77c212067ef3f33c01a39a276f729d4099cb572b -Author: Matej Urbančič -Date: Thu Feb 11 15:02:25 2010 +0100 - - Updated Slovenian translation - - po/sl.po | 816 ++++++++++++++++++++++++++++++++++++++++++--------------------- - 1 file changed, 545 insertions(+), 271 deletions(-) - -commit 815dfe0f4649f4de6f1dd7f6a1dc454927eb23e5 -Author: Diego Escalante Urrelo -Date: Wed Feb 10 13:55:33 2010 -0500 - - shift+control+click is not shift+click - - Bug #604950 - - src/ephy-window.c | 31 ++++++++++++++++++------------- - 1 file changed, 18 insertions(+), 13 deletions(-) - -commit 2f139a5d741d94ccf534a5aeaaab2fed7f2accfc -Author: Kjartan Maraas -Date: Wed Feb 10 22:06:30 2010 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 805 +++++++++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 546 insertions(+), 259 deletions(-) - -commit fbf7c11f928a6f8aafb12601f211d54250b91a11 -Author: Diego Escalante Urrelo -Date: Wed Feb 10 11:59:07 2010 -0500 - - Use SoupURI to get host name in ephy-string - - Bug #582035 - - lib/ephy-string.c | 48 ++++++++++-------------------------------------- - 1 file changed, 10 insertions(+), 38 deletions(-) - -commit 554c8839c7919e9ec188978f1c1fab24d06f9333 -Author: Rene Pärts -Date: Wed Feb 10 18:49:54 2010 +0200 - - Estonian translation updated - - po/et.po | 530 ++++++++++++++++----------------------------------------------- - 1 file changed, 132 insertions(+), 398 deletions(-) - -commit 6f9cc830feb72fcdaa95b85a08912fbca09e78cf -Author: Xan Lopez -Date: Wed Feb 10 13:46:32 2010 +0200 - - ephy-web-view: fix password storage - - A previous patch to fix it from crashing on NULL strings changed how - the strings are managed in general, so we were using variables - containing garbage in some cases. - - embed/ephy-web-view.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 16a20a4bc75df0a6503fc2e86dc3d119ccf8858d -Author: Khaled Hosny -Date: Wed Feb 10 01:02:12 2010 +0200 - - Updated Arabic translation - - po/ar.po | 430 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 210 insertions(+), 220 deletions(-) - -commit 7b580170e95ad1df4033fb42380423ec53dcaf04 -Author: Ivar Smolin -Date: Tue Feb 9 11:22:21 2010 +0200 - - Estonian translation updated - - po/et.po | 386 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-------- - 1 file changed, 338 insertions(+), 48 deletions(-) - -commit 8e7f8ffd25ce6cca955f4120a762c1817c8337ec -Author: Xan Lopez -Date: Mon Feb 8 22:58:06 2010 +0200 - - ephy-embed-prefs: reenable page cache by default - - embed/ephy-embed-prefs.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 32c0ad0e61f97c3eea556df54626ba93ac73703a -Author: Xan Lopez -Date: Mon Feb 8 22:39:09 2010 +0200 - - 2.29.90 - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 87f4f07fd665137d3ebd81de43d00f11817eb99f -Author: Xan Lopez -Date: Mon Feb 8 21:07:46 2010 +0200 - - NEWS: update for release - - NEWS | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -commit 9dd27664308a8dcd007d3ff17b55b7f5c93cdf62 -Author: Jose Millan Soto -Date: Mon Feb 8 18:58:53 2010 +0100 - - Implemented print preview - - Created function ephy_web_view_show_print_preview, which replaces the - old implementation of print preview, which was not working now. - Preview is displayed in an external viewer, so print preview mode does - no longer exist. - - All functions of the old implementation of print preview have been - removed, PPViewToolbar was removed also. Also, as EphyWebView has no - more a print preview mode, all functions which checked if a view was - in print preview mode were modified. - - Bug #609021 - - embed/ephy-embed-container.c | 4 - - embed/ephy-web-view.c | 73 +++++---- - embed/ephy-web-view.h | 16 +- - po/POTFILES.in | 1 - - src/Makefile.am | 2 - - src/ephy-find-toolbar.c | 4 - - src/ephy-window.c | 117 +------------- - src/ephy-window.h | 4 - - src/ppview-toolbar.c | 375 ------------------------------------------- - src/ppview-toolbar.h | 60 ------- - src/window-commands.c | 9 +- - 11 files changed, 49 insertions(+), 616 deletions(-) - -commit 4d62a3fca6eaab2d1f8c0af29f230012f99a4dd1 -Author: Xan Lopez -Date: Mon Feb 8 20:44:17 2010 +0200 - - ephy-embed-prefs: disable the cache page for now - - There's a couple of issues with it we need to figure out, so disable - it for the release. - - embed/ephy-embed-prefs.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bc6d88e7080b267ec588b299977e02b11b90d87e -Author: Jorge González -Date: Sun Feb 7 21:49:35 2010 +0100 - - Updated Spanish translation - - po/es.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 544fd66527c6346d8d1646db6527450edfab03ef -Author: Estêvão Samuel Procópio -Date: Sat Feb 6 14:55:29 2010 -0200 - - Check for null/empty username and password before saving to gnome-keyring - - Bug #608517 - - embed/ephy-web-view.c | 29 +++++++++++++++++------------ - 1 file changed, 17 insertions(+), 12 deletions(-) - -commit f83f0bea86de27ebd284037a4097ac8bd31db7cf -Author: Estêvão Samuel Procópio -Date: Sat Feb 6 14:38:46 2010 -0200 - - Using webkit_web_view_get_uri instead of js_get_domain_and_path - - embed/ephy-web-view.c | 112 +++++++++++--------------------------------------- - 1 file changed, 24 insertions(+), 88 deletions(-) - -commit 58ecd261c7cb2693d09bad20ae366963ffaf8de7 -Author: Theppitak Karoonboonyanan -Date: Sun Feb 7 16:48:29 2010 +0700 - - Updated Thai translation. - - po/th.po | 1377 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 745 insertions(+), 632 deletions(-) - -commit 80ca4ae3c2215e8af467c2c577581df841cd2ae6 -Author: Gustavo Noronha Silva -Date: Fri Feb 5 15:36:08 2010 -0200 - - Default to one toolbar with less buttons - - 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 - - data/ui/epiphany-toolbar.xml | 10 +--------- - 1 file changed, 1 insertion(+), 9 deletions(-) - -commit 5b337c74bd41a8ea423359d659fa61215d6dd3d3 -Author: Mario Blättermann -Date: Fri Feb 5 11:50:30 2010 +0100 - - Updated German translation - - po/de.po | 627 +++++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 413 insertions(+), 214 deletions(-) - -commit 9c9793f92cfef624307f022b36d864b9d4d4b91c -Author: Jorge González -Date: Fri Feb 5 08:08:34 2010 +0100 - - Updated Spanish translation - - po/es.po | 616 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 352 insertions(+), 264 deletions(-) - -commit 7c7948b0417941efb6f79e39e843c3ce6c5cf8b0 -Author: Khaled Hosny -Date: Fri Feb 5 07:03:47 2010 +0200 - - Updated Arabic translation - - po/ar.po | 698 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 392 insertions(+), 306 deletions(-) - -commit 8035debd1f23c993f93b1f9ec87791efe7db7ca0 -Author: Khaled Hosny -Date: Fri Feb 5 06:25:12 2010 +0200 - - Add missing file - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit bf1bed8cb3aeaf3098a8f383c30771be8689dfd4 -Author: Khaled Hosny -Date: Fri Feb 5 06:18:27 2010 +0200 - - Explicitely set type for .ui files - - Otherwise intltool-update will fail to extract any strings from .ui - files. - - po/POTFILES.in | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 43eb33eb43da5d5d2f0f36695382781b1957ed5f -Author: Khaled Hosny -Date: Fri Feb 5 06:07:18 2010 +0200 - - Updated Arabic translation - - po/ar.po | 70 ++++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 37 insertions(+), 33 deletions(-) - -commit 66053f00ec618994942aa8a4685376a792c26acc -Author: Xan Lopez -Date: Thu Feb 4 23:05:16 2010 +0200 - - Make SoupCookieJarAcceptPolicy match our cookie policies - - Bug #607484 - - configure.ac | 2 +- - embed/ephy-embed-prefs.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++- - embed/ephy-embed-prefs.h | 8 ++++--- - embed/ephy-embed-single.c | 5 ++++ - embed/ephy-embed-utils.c | 1 - - 5 files changed, 71 insertions(+), 6 deletions(-) - -commit 3fd99f851981c9bf4fea17a65cb94353fc37511d -Author: Jorge González -Date: Wed Feb 3 22:24:58 2010 +0100 - - Updated Spanish translation - - po/es.po | 100 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 51 insertions(+), 49 deletions(-) - -commit 0149582ef3d39e8e69c746e167a42356983b79d9 -Author: Diego Escalante Urrelo -Date: Mon Feb 1 20:09:24 2010 -0500 - - Clean uneeded EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED - - We now have ephy_embed_get_web_view, EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED plus - EPHY_WEB_VIEW casts are useless. - - Bug #608749 - - src/ephy-navigation-action.c | 7 +++++-- - src/ephy-shell.c | 2 +- - src/ephy-window.c | 2 +- - src/popup-commands.c | 4 ++-- - 4 files changed, 9 insertions(+), 6 deletions(-) - -commit d3f48332910e5f46e0d3599c771a99d709b0b780 -Author: Diego Escalante Urrelo -Date: Mon Feb 1 19:56:26 2010 -0500 - - ephy-embed: comment typo - - Bug #608749 - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 507e4c4070099ba0525c062eda8ea12ab3689a9b -Author: Diego Escalante Urrelo -Date: Mon Feb 1 18:48:53 2010 -0500 - - ephy-file-helpers: some cleanup - - Sort variable names a bit in ephy_file_switch_temp_file. - - Bug #608749 - - lib/ephy-file-helpers.c | 54 +++++++++++++++++++++++++++---------------------- - lib/ephy-file-helpers.h | 2 +- - 2 files changed, 31 insertions(+), 25 deletions(-) - -commit 24f9ae66d93292f4f54472a44aabd67e0eff8bad -Author: Diego Escalante Urrelo -Date: Mon Feb 1 15:22:45 2010 -0500 - - ephy-file-helpers: use localized folder names - - Bug #608749 - - lib/ephy-file-helpers.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 2818ee11aa0c6eb49ec2ce8aba3cc20f76a44940 -Author: Mario Blättermann -Date: Sun Jan 31 21:45:42 2010 +0100 - - Updated German translation - - po/de.po | 1691 ++++++++++++++++++++++---------------------------------------- - 1 file changed, 601 insertions(+), 1090 deletions(-) - -commit be7e6f151fa288bbbdf02a72ea4e791eb38ef85f -Author: Diego Escalante Urrelo -Date: Fri Jan 15 11:23:36 2010 -0500 - - Implement EphyEmbedPersist using WebKitDownload - - EphyEmbedPersist is the object in charge of most context menu options. It - handles "Save target as", "Open Image", "Save image as", among other actions. - This reimplements it using WebKitDownload. - - Bug #600987 - - embed/ephy-embed-persist.c | 192 ++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 188 insertions(+), 4 deletions(-) - -commit 306c6473dcbba00074109ba68fb672cba860c61b -Author: Diego Escalante Urrelo -Date: Tue Jan 26 16:17:59 2010 -0500 - - popup-commands: missing unref - - Bug #600987 - - src/popup-commands.c | 1 + - 1 file changed, 1 insertion(+) - -commit 3368583477a10dbf91b2db42d82402767380fc1b -Author: Ivar Smolin -Date: Thu Jan 28 16:42:38 2010 +0200 - - Updating Estonian translation - - po/et.po | 234 +++++---------------------------------------------------------- - 1 file changed, 17 insertions(+), 217 deletions(-) - -commit 5b35c0fb711f0d5d7c0d0f29af3d666bb160751d -Author: Xan Lopez -Date: Thu Jan 28 14:58:15 2010 +0200 - - ephy-bookmarks-import: check for possible NULL deref - - Spotted by Holger Freyther. - - src/bookmarks/ephy-bookmarks-import.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c229ec7e467856c6a831a31e810bea3b3e202c6a -Author: Jamil Ahmed -Date: Wed Jan 27 20:08:38 2010 +0600 - - Updated Bengali translation - - po/bn.po | 5877 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 2933 insertions(+), 2944 deletions(-) - -commit 258681b42ced16236f25da6dedd1c174e018f957 -Author: Miloš Popović -Date: Wed Jan 27 15:24:37 2010 +0100 - - Updated Serbian translations - - po/sr.po | 1386 +++++++++++++++++++++++++++----------------------------- - po/sr@latin.po | 1386 +++++++++++++++++++++++++++----------------------------- - 2 files changed, 1350 insertions(+), 1422 deletions(-) - -commit 1876efcdffb09bb5fb5ca45e012e93ff53dbaf6a -Author: Matej Urbančič -Date: Wed Jan 27 12:15:48 2010 +0100 - - Updated Slovenian translation - - po/sl.po | 134 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 72 insertions(+), 62 deletions(-) - -commit 550e996a7a74974e16fe3301d0121ecf09acce37 -Author: Diego Escalante Urrelo -Date: Fri Jan 22 14:28:42 2010 -0500 - - ephy-dialog: check if we get a valid EphyDialog - - This API is public but we are not really good checking we get valid EphyDialog - objects when called, add some checks. - - Bug #607802 - - lib/ephy-dialog.c | 29 +++++++++++++++++++++++++++-- - 1 file changed, 27 insertions(+), 2 deletions(-) - -commit adbf74706e0ee2295b9fec91ea6d017bf2c75edf -Author: Diego Escalante Urrelo -Date: Sat Jan 23 14:28:08 2010 -0500 - - extensions-manager: remove legacy XML format support - - 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 - - data/Makefile.am | 3 +- - data/ephy-xml2ini.xsl | 51 ---------------- - src/ephy-extensions-manager.c | 136 +----------------------------------------- - 3 files changed, 3 insertions(+), 187 deletions(-) - -commit 23875ed89857851cd7e27541049a7cf74f593310 -Author: Diego Escalante Urrelo -Date: Sat Jan 23 13:21:36 2010 -0500 - - extensions-manager: use GDir instead of dirent - - Bug #607881 - - src/ephy-extensions-manager.c | 25 ++++++++++++++++--------- - 1 file changed, 16 insertions(+), 9 deletions(-) - -commit c0b52d834cbc43fa7cbba5d92411d2114b8650c1 -Author: Xan Lopez -Date: Mon Jan 25 20:55:17 2010 +0200 - - ephy-web-view.c: allow all windows to be closed by JS - - Since we are not marking windows as popups for now. - - embed/ephy-web-view.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit cdac681c60058885ed3ea1ee43d878b1c00a61b6 -Author: Xan Lopez -Date: Mon Jan 25 20:46:48 2010 +0200 - - 2.29.6 - - NEWS | 12 ++++++++++++ - configure.ac | 2 +- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit 77a2ffcacd2adaeb1ed90bd649735157fa284993 -Author: Xan Lopez -Date: Mon Jan 25 17:52:41 2010 +0200 - - ephy-location-entry: disable favicons in entry for release - - lib/widgets/ephy-location-entry.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 2a1790159cc2109817e7452edc8b8941b73e774a -Author: Xan Lopez -Date: Mon Jan 25 17:32:28 2010 +0200 - - ephy-window: assume windows are not popups by default - - We need to refine our code to identify popups, meanwhile it's better - to err on the benevolent side. - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit fe9b537afdd75f24b930e16cebcd2c37153a9d99 -Author: Alexander Shopov -Date: Mon Jan 25 10:51:00 2010 +0200 - - Updated Bulgarian translation - - po/bg.po | 1167 ++++++++++++++++++++++++-------------------------------------- - 1 file changed, 445 insertions(+), 722 deletions(-) - -commit b3136792040a2161c3e11d7306cb3ab58e3d1e0e -Author: Jorge Kalmbach -Date: Fri Jan 22 20:01:05 2010 -0200 - - Suggest Filename based on the mimetype and URI of the WebKitWebResource - - Bug #605479 - - src/window-commands.c | 31 ++++++++++++++++++++++++++++++- - 1 file changed, 30 insertions(+), 1 deletion(-) - -commit ba2d2c19ac174acbf74aa4258a82ac5ac7c7f455 -Author: Diego Escalante Urrelo -Date: Thu Jan 21 17:14:38 2010 -0500 - - tests: simplify Makefile.am - - Don't cherry pick internal libraries for tests. - - tests/Makefile.am | 40 +++++++++++++++++++++++++--------------- - 1 file changed, 25 insertions(+), 15 deletions(-) - -commit e0072d45988b1154a19ea46a6f93c5ccc66cb9c1 -Author: Diego Escalante Urrelo -Date: Fri Jan 15 16:32:38 2010 -0500 - - tests: apply style fixes suggested by Xan - - tests/testephylocationentry.c | 40 ++++++++++++++++------------------------ - tests/testephysearchentry.c | 10 ++++------ - tests/testephyzoomcontrol.c | 15 ++++++--------- - 3 files changed, 26 insertions(+), 39 deletions(-) - -commit 6a824bca489ff1c7f4764224a42d33f3ea2b4455 -Author: Diego Escalante Urrelo -Date: Mon Dec 14 02:45:26 2009 -0500 - - docs: ephy-file-helpers - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 27 ++++- - lib/ephy-dialog.h | 5 +- - lib/ephy-file-helpers.c | 210 ++++++++++++++++++++++++++++++++++-- - lib/ephy-file-helpers.h | 2 +- - 6 files changed, 231 insertions(+), 15 deletions(-) - -commit 83ccb687075513719881c46d091e65b3f5aa31bb -Author: Diego Escalante Urrelo -Date: Thu Jan 21 15:47:01 2010 -0500 - - docs: delete deprecated templates - - doc/reference/tmpl/EphyContentPolicy.sgml | 19 - - doc/reference/tmpl/EphySingle.sgml | 64 -- - doc/reference/tmpl/ephy-embed-factory.sgml | 34 - - doc/reference/tmpl/ephy-embed-persist.sgml | 235 ----- - doc/reference/tmpl/ephy-embed-single.sgml | 69 -- - doc/reference/tmpl/ephy-embed.sgml | 399 --------- - doc/reference/tmpl/ephy-extensions-manager.sgml | 37 - - doc/reference/tmpl/ephy-glade.sgml | 25 - - doc/reference/tmpl/ephy-icon-entry.sgml | 53 -- - doc/reference/tmpl/ephy-location-entry.sgml | 12 +- - doc/reference/tmpl/ephy-node-db.sgml | 123 --- - doc/reference/tmpl/ephy-password-manager.sgml | 78 -- - doc/reference/tmpl/ephy-permission-manager.sgml | 78 -- - doc/reference/tmpl/ephy-search-entry.sgml | 2 + - doc/reference/tmpl/ephy-session.sgml | 84 -- - doc/reference/tmpl/ephy-shell.sgml | 129 --- - doc/reference/tmpl/ephy-spinner.sgml | 6 +- - doc/reference/tmpl/ephy-tab.sgml | 202 ----- - doc/reference/tmpl/ephy-window.sgml | 62 +- - doc/reference/tmpl/ephy-zoom-control.sgml | 2 + - doc/reference/tmpl/epiphany-unused.sgml | 1043 ----------------------- - doc/reference/tmpl/mozilla-embed-event.sgml | 35 - - 22 files changed, 53 insertions(+), 2738 deletions(-) - -commit dd6a43a539a51b16e434209f13750e456ef0aa8b -Author: Gustavo Noronha Silva -Date: Thu Jan 21 18:23:40 2010 -0200 - - Enable page cache for real, now. - - All critical bugs have been fixed, we already depend on a new enough - version of WebKit, and this feature needs testing. - - embed/ephy-embed-prefs.c | 1 + - 1 file changed, 1 insertion(+) - -commit ad54b2031e5390b4726df58aeccb41b0cafc19b8 -Author: Diego Escalante Urrelo -Date: Thu Jan 21 09:14:38 2010 -0500 - - window-commands: remove an empty line from f007602 - - Just a nitpick in Jorge's patch. - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5120ad94e7003841a03189d334576bfe45406408 -Author: Diego Escalante Urrelo -Date: Wed Jan 13 11:54:43 2010 -0500 - - Escape the name of resources before saving them - - Some resources might be of the style "page.php?orig=/place/other", this would - make Epiphany crash while saving them because of the invalid characters for the - filename. - To solve this we escape the name of the resources before using it as the - name of the destination file. - - Bug #606876 - - embed/ephy-web-view.c | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - -commit 2b5566e52f1dc497cfcecc7639a92b7691b8c3d8 -Author: Diego Escalante Urrelo -Date: Wed Jan 13 11:48:13 2010 -0500 - - Rename a variable to make its relation obvious - - In ephy_web_view_save_sub_resources the destination_uri var is passed down to - the GAsyncReadyCallbacks and is freed after all the operations are finished, - however it is named sub_destination_uri in this callbacks. To make it more - obvious that it is the same data we renamed all the ocurrences to - destination_uri. - - Bug #606876 - - embed/ephy-web-view.c | 30 +++++++++++++++--------------- - 1 file changed, 15 insertions(+), 15 deletions(-) - -commit b057a59f9aa6f8568b2416172f27034ef4507f22 -Author: Diego Escalante Urrelo -Date: Wed Jan 13 10:38:33 2010 -0500 - - ephy-web-view: plug leaks in ephy_web_view_save - - Bug #606876 - - embed/ephy-web-view.c | 19 +++++++++++-------- - 1 file changed, 11 insertions(+), 8 deletions(-) - -commit f007602b631fee9ac23c909abb75bd606f501a4f -Author: Jorge Kalmbach -Date: Wed Jan 20 23:05:57 2010 -0200 - - Ask for confirmation when replacing files, in save as - - Bug #605480 - - embed/ephy-web-view.c | 10 ++++++---- - src/window-commands.c | 2 ++ - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit 5bdd1efcf21639132a181e121a626913f6dfc38c -Author: vasudeven -Date: Wed Jan 20 17:25:26 2010 +0530 - - updated Tamil translation - - po/ta.po | 733 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 382 insertions(+), 351 deletions(-) - -commit e2c19882289b5da6b54f005ea691543268b516a7 -Author: Khaled Hosny -Date: Sat Jan 16 16:08:41 2010 +0200 - - Updated Arabic translation - - po/ar.po | 134 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 71 insertions(+), 63 deletions(-) - -commit 3dbbb868ad6f13ac0ef227ea7459733d8a46f77a -Author: Daniel Nylander -Date: Sat Jan 16 12:37:17 2010 +0100 - - Updated Swedish translation - - po/sv.po | 84 +++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 46 insertions(+), 38 deletions(-) - -commit ff328a966a6cae6ff3e0eac90d2eed81d61ad159 -Author: Gustavo Noronha Silva -Date: Fri Jan 15 20:28:11 2010 -0200 - - Disable page cache - I committed it by mistake - - embed/ephy-embed-prefs.c | 1 - - 1 file changed, 1 deletion(-) - -commit b573119b1338722ba9f6016b72064f6fcf681dfc -Author: Gustavo Noronha Silva -Date: Fri Dec 25 23:58:59 2009 -0200 - - Make text search faster by delaying the actual search - - This makes sure that we do not search for 1-2 characters when the user - starts typing, making the search for longer words faster. - - Bug #598322 - - src/ephy-find-toolbar.c | 35 +++++++++++++++++++++++++++++++---- - 1 file changed, 31 insertions(+), 4 deletions(-) - -commit bac714eab6253cf088761501117937e9b48bcea9 -Author: Gustavo Noronha Silva -Date: Tue Dec 22 14:28:34 2009 -0200 - - Remove error handling work-arounds - - WebKit will stop emitting load signals when it loads the error page, - which makes life easier for us. - - Bug #377012 - - configure.ac | 2 +- - embed/ephy-embed-prefs.c | 1 + - embed/ephy-embed.c | 52 +++++++++++++++++++----------------------------- - 3 files changed, 23 insertions(+), 32 deletions(-) - -commit 589e0fa8cf257346c1f089fa84fd96733381d89f -Author: Xan Lopez -Date: Fri Jan 15 17:09:46 2010 +0200 - - Show again favicon column in URL completion dropdown - - lib/widgets/ephy-location-entry.c | 2 -- - 1 file changed, 2 deletions(-) - -commit a2f561ae50fc74eed94f6eb7d9102c74caab8b49 -Author: Xan Lopez -Date: Thu Jan 14 23:11:39 2010 +0200 - - Make EphyLocationEntry store a copy of the lock-stock-id - - Otherwise we rely on the ordering of the property notifications to get - a proper id instead of garbage (!). - - Bug #606995 - - lib/widgets/ephy-location-entry.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 97dae9812833055947ab77b6fde79776bbbdc245 -Author: Sebastian Dröge -Date: Thu Jan 14 18:10:01 2010 +0100 - - Fix docs build with gtk-doc 1.13 - - gtkdoc-fixxref now needs the module to work correctly. - - doc/reference/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7ba0a952949410eeb2b0ae81427d31697bbd7886 -Author: Diego Escalante Urrelo -Date: Wed Jan 13 18:43:58 2010 -0500 - - Use g_mkdir_with_parents instead of just mkdir - - This ensures that if .gnome2/ doesn't exist, we don't fail instead of just - creating the dir. - - Bug #605860 - - lib/ephy-file-helpers.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0b732d26c9cd11b91f861b9a34389a2adc331b2b -Author: Kjartan Maraas -Date: Wed Jan 13 19:18:41 2010 +0100 - - Updated Norwegian bokmål translation - - po/nb.po | 53 ++++++++++++++++++++++++++++++++--------------------- - 1 file changed, 32 insertions(+), 21 deletions(-) - -commit adb1849591c5609037b86404f84c7a917c442ba0 -Author: Diego Escalante Urrelo -Date: Tue Jan 12 13:37:09 2010 -0500 - - Remove legacy fields in EphyEmbedPersist - - embed/ephy-embed-persist.h | 7 ------- - 1 file changed, 7 deletions(-) - -commit f62625052682eca0989e06e2005e3d5dc7966fcb -Author: Diego Escalante Urrelo -Date: Tue Jan 12 13:35:50 2010 -0500 - - Use © symbol and include glib.h in tests. - - tests/testephylocationentry.c | 3 ++- - tests/testephysearchentry.c | 3 ++- - tests/testephyzoomcontrol.c | 3 ++- - 3 files changed, 6 insertions(+), 3 deletions(-) - -commit 3f96295996ede06f9b0be681a23bb3765469865b -Author: Sebastian Dröge -Date: Wed Jan 13 10:39:05 2010 +0100 - - Fix syntax error in the GConf schema - - data/epiphany.schemas.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 165411e1c19b03a57f719413ac727ee80517332a -Author: Jorge González -Date: Tue Jan 12 20:22:24 2010 +0100 - - Updated Spanish translation - - po/es.po | 221 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 115 insertions(+), 106 deletions(-) - -commit 10c764d2b0a6cba5f4b2313d6f785da2e80f7023 -Author: Xan Lopez -Date: Mon Jan 11 22:49:51 2010 +0200 - - 2.29.5 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 185defb84b95e845f5b6b396906297d5477d7541 -Author: Xan Lopez -Date: Mon Jan 11 22:13:39 2010 +0200 - - Update NEWS for release - - NEWS | 28 ++++++++++++++++++++++++++++ - 1 file changed, 28 insertions(+) - -commit 6c25db3e068fbd2ff24ed63f1e3c4222f2f75eb5 -Author: Diego Escalante Urrelo -Date: Sat Dec 19 16:04:39 2009 -0500 - - Improve infobar text a bit - - Include a mention to the username being saved and the domain where the form is. - - Bug #605022 - - embed/ephy-web-view.c | 15 ++++++++++++--- - 1 file changed, 12 insertions(+), 3 deletions(-) - -commit 9e563f02b627ff8a0b8732666fe74ee02c6b4671 -Author: Diego Escalante Urrelo -Date: Mon Jan 11 13:59:45 2010 -0500 - - Miscellaneous nitpick fixes - - src/ephy-notebook.c | 1 - - src/ephy-shell.c | 40 ++++++++++++++++++++-------------------- - src/ephy-window.c | 2 +- - 3 files changed, 21 insertions(+), 22 deletions(-) - -commit 9ea9e684b4cb5563d5b395a93b923771b0f6bffc -Author: Diego Escalante Urrelo -Date: Mon Jan 11 14:00:35 2010 -0500 - - Avoid blank items in back/forward menus - - Use the url of the page as its menu label if there's no title set. - - Bug #604491 - - src/ephy-navigation-action.c | 13 ++++++++++--- - 1 file changed, 10 insertions(+), 3 deletions(-) - -commit 4440ca97ae001b4f63f4a2efc8a765448c5cfa67 -Author: Maxim V. Dziumanenko -Date: Sun Jan 10 17:58:17 2010 +0200 - - Update Ukrainian translation - - help/uk/uk.po | 1432 +++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 792 insertions(+), 640 deletions(-) - -commit a3bec9918514505e59a5f4ccdf0bf2b18d5235dd -Author: Daniel Nylander -Date: Sat Jan 9 16:54:04 2010 +0100 - - Updated Swedish translation - - po/sv.po | 1309 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 590 insertions(+), 719 deletions(-) - -commit 0b857e6dd57294f940de2d4eb83c811065752573 -Author: Diego Escalante Urrelo -Date: Sat Dec 19 17:01:37 2009 -0500 - - Remove uneeded default handlers for about dialog - - Since 2.18 url and email hooks are not necessary, GTK+ includes default - handlers. - - Bug #509207 - - src/ephy-main.c | 39 --------------------------------------- - 1 file changed, 39 deletions(-) - -commit 23b77f1230e6843456b83db937920db8202d1a10 -Author: Xan Lopez -Date: Fri Jan 8 21:30:41 2010 +0200 - - Rename EphyWebView::ge-new-window to EphyWebView::new-window - - embed/ephy-web-view.c | 16 ++++++++-------- - src/ephy-window.c | 2 +- - 2 files changed, 9 insertions(+), 9 deletions(-) - -commit 344ad68544ea313f54409fc72c0d8782152d0084 -Author: Xan Lopez -Date: Fri Jan 8 21:27:19 2010 +0200 - - Emit again EphyWebView::ge-new-window when required - - src/ephy-window.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit 41408b64330a96953b453c8bb6a3773abbfc64a4 -Author: Kjartan Maraas -Date: Wed Jan 6 12:23:58 2010 +0100 - - Updated Norwegian bokmål translation. - - po/nb.po | 574 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 297 insertions(+), 277 deletions(-) - -commit 838c1aaa956427556bd4e36b349268b6a3f97d71 -Author: Xan Lopez -Date: Tue Jan 5 23:04:06 2010 +0200 - - Do not dist .gir files - - Since the g-i scanner and compiler are shipped together (and will be - in the future), there's little to gain in shipping the .gir file in - our tarball, and we save a few build-time headaches. - - Makefile.am | 1 - - src/Makefile.am | 1 - - 2 files changed, 2 deletions(-) - -commit 3b3258122140ce7b025bba80532be32da10bb41c -Author: Maxim V. Dziumanenko -Date: Tue Jan 5 15:24:41 2010 +0200 - - Update Ukrainian translation - - po/uk.po | 1380 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 665 insertions(+), 715 deletions(-) - -commit 9f7f26551d6d6ba4c61952e32f4542d04189b685 -Author: Xan Lopez -Date: Fri Jan 1 16:37:37 2010 +0100 - - NSS is not relevant as a feature for extensions - - configure.ac | 1 - - 1 file changed, 1 deletion(-) - -commit ea287003f61545d9490628caeadce249e9ed775e -Author: Xan Lopez -Date: Fri Jan 1 01:45:24 2010 +0100 - - No need to AC_SUBST EPIPHANY_FEATURES several times - - configure.ac | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -commit 1fced385cba9227ce0c971d5eeb25f9e9fd4daf6 -Author: Matej Urbančič -Date: Fri Jan 1 09:43:48 2010 +0100 - - Updated Slovenian translation - - po/sl.po | 622 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 320 insertions(+), 302 deletions(-) - -commit a34d0282981edad5fa11b2729a3c9c00ef29c261 -Author: Xan Lopez -Date: Thu Dec 31 15:15:47 2009 +0100 - - Remove ChangeLog generation from SVN - - It's not useful anymore, only leave the git bits. - - Makefile.am | 8 +- - configure.ac | 8 -- - svn2cl.xsl | 295 ----------------------------------------------------------- - 3 files changed, 1 insertion(+), 310 deletions(-) - -commit 2a11d43e280b62beba558f84217ce941954e09da -Author: Xan Lopez -Date: Wed Dec 30 21:18:52 2009 +0100 - - Disable introspection for distcheck - - There's a (apparently) nasty circular dependency issue when doing - distcheck with introspection enabled. The .gir file needs the epiphany - binary to be built, so basically when doing the dist part of check - copying the files to the temp directory we trigger a full build. This - would be already bad, but on top of that it does not work, since we - use BUILT_SOURCES for some generated files, which does not work during - 'make dist'. - - So disable it while we figure this out. - - Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit 91b770eb4e9532e69272afcef687be99a2c4c966 -Author: Xan Lopez -Date: Wed Dec 30 21:18:38 2009 +0100 - - Enable threads for gtk-doc scanner - - doc/reference/Makefile.am | 3 +++ - 1 file changed, 3 insertions(+) - -commit eaa19fb5739761d835ccaad80f0266affcb971c4 -Author: Xan Lopez -Date: Wed Dec 30 21:07:02 2009 +0100 - - Revert "docs: remove generated templates" - - This reverts commit 3deb6e06fd3cccaf26bca8c81bf1f83ef7993dd6. - - This broke distcheck. - - doc/reference/Makefile.am | 162 +++- - doc/reference/tmpl/EphyContentPolicy.sgml | 19 + - doc/reference/tmpl/EphySingle.sgml | 64 ++ - doc/reference/tmpl/ephy-embed-factory.sgml | 34 + - doc/reference/tmpl/ephy-embed-persist.sgml | 235 +++++ - doc/reference/tmpl/ephy-embed-single.sgml | 69 ++ - doc/reference/tmpl/ephy-embed.sgml | 399 +++++++++ - doc/reference/tmpl/ephy-extensions-manager.sgml | 37 + - doc/reference/tmpl/ephy-glade.sgml | 25 + - doc/reference/tmpl/ephy-icon-entry.sgml | 53 ++ - doc/reference/tmpl/ephy-location-entry.sgml | 217 +++++ - doc/reference/tmpl/ephy-node-db.sgml | 123 +++ - doc/reference/tmpl/ephy-password-manager.sgml | 78 ++ - doc/reference/tmpl/ephy-permission-manager.sgml | 78 ++ - doc/reference/tmpl/ephy-search-entry.sgml | 49 ++ - doc/reference/tmpl/ephy-session.sgml | 84 ++ - doc/reference/tmpl/ephy-shell.sgml | 129 +++ - doc/reference/tmpl/ephy-spinner.sgml | 58 ++ - doc/reference/tmpl/ephy-tab.sgml | 202 +++++ - doc/reference/tmpl/ephy-window.sgml | 110 +++ - doc/reference/tmpl/ephy-zoom-control.sgml | 56 ++ - doc/reference/tmpl/epiphany-unused.sgml | 1043 +++++++++++++++++++++++ - doc/reference/tmpl/mozilla-embed-event.sgml | 35 + - 23 files changed, 3346 insertions(+), 13 deletions(-) - -commit fab4ce42cdef5d1046b0f17d77dbca9dc384962d -Author: Diego Escalante Urrelo -Date: Tue Dec 15 02:31:52 2009 -0500 - - Don't omit notifications for downloads - - If a download is finished while the GtkStatusIcon for DownloadView is not - embedded the finished notification for such download is missed and user is - left wondering what happened with his/her download. - This makes notifications show whether there is or not a GtkStatusIcon to - attach to. - - Bug #604599 - - embed/downloader-view.c | 35 +++++++++++------------------------ - 1 file changed, 11 insertions(+), 24 deletions(-) - -commit 03ad276917dd0ffb1a6098d5d352dee63c89b7f2 -Author: Diego Escalante Urrelo -Date: Tue Dec 29 01:13:18 2009 -0500 - - Implement replace action for downloads - - Always download to a temporary location, only move the file to the final - destination after it has been downloaded completely. - - Bug #594192 - - embed/downloader-view.c | 20 +++++++++--- - embed/ephy-embed.c | 81 +++++++++++++++++++++++++++++++++++++++---------- - 2 files changed, 81 insertions(+), 20 deletions(-) - -commit 915203e369ffadb94ecf895f6c328dcba91a7789 -Author: Diego Escalante Urrelo -Date: Tue Dec 29 01:07:55 2009 -0500 - - downloader-view: fix wrong return type - - Bug #594192 - - embed/downloader-view.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit abeb7b173142a8bbc1df66b08cebee20be92112b -Author: Diego Escalante Urrelo -Date: Tue Dec 29 01:06:30 2009 -0500 - - Minor style fixes in downloads code. - - Bug #594192 - - embed/downloader-view.c | 3 ++- - embed/ephy-embed.c | 9 +++++---- - 2 files changed, 7 insertions(+), 5 deletions(-) - -commit 49916720de793de370a6aa8f44e2264078599451 -Author: Diego Escalante Urrelo -Date: Tue Dec 29 00:33:12 2009 -0500 - - ephy-embed: fix download button action - - Sometimes downloads can have a mime_description but a NULL helper_app - in that case action is never changed so DOWNLOAD_ACTION_DOWNLOAD remains - as action value. This is the same response value as Save as... - button, which is wrong for the Download button. - - Bug #605091 - - embed/ephy-embed.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 66e555c5c4fac1c2f10c172c464a48847d13f66f -Author: Diego Escalante Urrelo -Date: Tue Dec 29 00:32:49 2009 -0500 - - ephy-embed: minor style fix - - Bug #605091 - - embed/ephy-embed.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 8d4a7f14d9c4cd6646ef0e96b0f8bcaf3d85b7b3 -Author: Diego Escalante Urrelo -Date: Sat Dec 19 17:44:51 2009 -0500 - - Enable mime type safety check in downloads - - Honour our database of safe and unsafe mime types. - - Bug #605026 - - embed/ephy-embed.c | 1 + - 1 file changed, 1 insertion(+) - -commit b5e9878479d8823bf9a0a8059975746f95d6afc2 -Author: Iain Nicol -Date: Sun Dec 27 22:21:04 2009 +0000 - - Update the installation directory for .gir and .typelib files - - Bug #605574 - - src/Makefile.am | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 8405267b9ede9645ee261f6515e40e46d2cb835a -Author: Khaled Hosny -Date: Sun Dec 27 01:27:25 2009 +0200 - - Updated Arabic translation - - po/ar.po | 536 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 276 insertions(+), 260 deletions(-) - -commit 3e59d24ee6acb9e7f59cab46c38546830fdef0b4 -Author: Ivar Smolin -Date: Sun Dec 27 00:49:11 2009 +0200 - - Updating Estonian translation - - po/et.po | 12 ++++++++++-- - 1 file changed, 10 insertions(+), 2 deletions(-) - -commit 5ed79e7e20e53a2aa2e3ace40ebbb13584c09f2a -Author: Xan Lopez -Date: Fri Dec 25 18:55:48 2009 +0100 - - Use introspection.m4 file to detect introspection support - - configure.ac | 40 ++++------------------- - m4/introspection.m4 | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++++ - src/Makefile.am | 14 ++++---- - 3 files changed, 108 insertions(+), 40 deletions(-) - -commit 0b844bedb99264ae3699fb6a6aafa5e716b8c5ac -Author: Xan Lopez -Date: Fri Dec 25 17:03:09 2009 +0100 - - Reimplement window.close - - We consider all windows opened by the web page without user - intervention as popups, and allow them to be closed in the same way if - the page so requests. - - Bug #599009 - - embed/ephy-web-view.c | 18 ++++++++++++++++++ - src/ephy-shell.c | 1 - - src/ephy-window.c | 24 ++++++++++++------------ - 3 files changed, 30 insertions(+), 13 deletions(-) - -commit 319c95b59b0838a54a1ee8d52c52b47bdd0e4c2b -Author: Luca Ferretti -Date: Tue Dec 22 09:08:38 2009 +0100 - - Replace unsupported %k with %-H in Italian translation - - po/it.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 6a56fddb15336c68295c8bb4e6cd4f76013bd8de -Author: Gustavo Noronha Silva -Date: Sun Dec 20 20:28:07 2009 +0100 - - Copy WebKitWebHistoryItem objects - - This is so that changes to the item objects do not affect other - WebViews. - - embed/ephy-web-view.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit f92beb1e7a5158d0caa505c1df4363fc98fdcfb8 -Author: Xan Lopez -Date: Sun Dec 20 19:10:01 2009 +0100 - - ephy-embed-prefs: enable quirks mode by default - - Makes WebKit apply a series of workarounds for known broken sites. - - embed/ephy-embed-prefs.c | 1 + - 1 file changed, 1 insertion(+) - -commit ffd3e5041f91ab025d1b55dcf78e8e9d5c8ec3a2 -Author: Gustavo Noronha Silva -Date: Sun Dec 20 01:28:07 2009 +0100 - - Restrict number of password infobars to one - - embed/ephy-web-view.c | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -commit 906b29252ccc045ff7f895bcb5fabd2be5d60c92 -Author: Gustavo Noronha Silva -Date: Sun Dec 20 01:19:47 2009 +0100 - - Add sanity checks for places where we create SoupURIs - - SoupURI creation may fail for invalid URIs, and we would crash trying - to work with the NULL pointers. - - lib/ephy-profile-migration.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 40c0d516e3cac6d41a60eaf8d939522572b8e2c2 -Author: Gustavo Noronha Silva -Date: Sat Dec 19 18:50:06 2009 +0100 - - Finish porting the favicon cache to WebKitDownload - - embed/ephy-favicon-cache.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 89b27d4d5db3ea30c6d8487904fd08796730c82c -Author: Diego Escalante Urrelo -Date: Sat Dec 19 14:13:12 2009 -0500 - - ephy-bookmarks-editor: wrong cast - - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9dc4c44c63645ae69f7937b43fa599a5cf2a2e61 -Author: Gustavo Noronha Silva -Date: Sat Dec 19 18:25:53 2009 +0100 - - Raise API version - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3354957474033276329fbf0ea23ab026bd0fb726 -Author: Jorge González -Date: Sat Dec 19 13:43:47 2009 +0100 - - Updated Spanish translation - - po/es.po | 567 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 298 insertions(+), 269 deletions(-) - -commit 7aa9ee599f7a1379b045ad020fc4c4ed94ece79e -Author: Diego Escalante Urrelo -Date: Thu Dec 17 19:20:35 2009 -0500 - - ephy_gui_help: use gtk_show_uri to open help - - We were doing some ugly path searching for this. The correct method is to use - gtk_show_uri. - - Bug #604024 - - lib/ephy-gui.c | 85 ++++++++++---------------------- - lib/ephy-gui.h | 5 +- - src/bookmarks/ephy-bookmark-properties.c | 3 +- - src/bookmarks/ephy-bookmarks-editor.c | 4 +- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-history-window.c | 4 +- - src/ephy-toolbar-editor.c | 2 +- - src/pdm-dialog.c | 5 +- - src/prefs-dialog.c | 2 +- - src/window-commands.c | 2 +- - 10 files changed, 38 insertions(+), 76 deletions(-) - -commit e896b194fbff39b480c571483c7d549865f38960 -Author: Vincent Untz -Date: Fri Dec 18 20:32:51 2009 +0100 - - Add custom user-agent support - - 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 - - data/epiphany.schemas.in | 11 ++++++ - embed/ephy-embed-prefs.c | 88 +++++++++++++++++++++++++++++++++++++++++++++++- - embed/ephy-embed-prefs.h | 1 + - 3 files changed, 99 insertions(+), 1 deletion(-) - -commit dcdebec53b1da88a6b3477d13437af2c53ac73b4 -Author: Mario Sanchez Prada -Date: Fri Oct 2 14:13:03 2009 +0200 - - Properly manage the list of languages for the "Accept-Language" header - - New handler added to watch for changes in the GConf key with the list - of languages for the "Accept-Language" HTTP header, and update the - SoupSession's "accept-language" property (since libsoup 2.29.4). - - Bug #528893 - - configure.ac | 2 +- - embed/ephy-embed-prefs.c | 57 +++++++++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 57 insertions(+), 2 deletions(-) - -commit 6f69c3f879cc880d53dfb85081aef8462c3fad36 -Author: Benjamin Otte -Date: Fri Dec 18 11:16:03 2009 +0100 - - Make form code safe against unnamed password/username elements - - embed/ephy-web-view.c | 9 +++++++-- - 1 file changed, 7 insertions(+), 2 deletions(-) - -commit b6102135d673197eecdc6497d6153d00f6b75301 -Author: Gustavo Noronha Silva -Date: Fri Dec 18 13:17:25 2009 +0100 - - Restore download on shift-click functionality - - embed/ephy-embed.c | 20 ++++++++++++++++++-- - embed/ephy-embed.h | 1 + - embed/ephy-web-view.c | 4 ++++ - src/ephy-window.c | 45 ++++++++++++++++++++------------------------- - 4 files changed, 43 insertions(+), 27 deletions(-) - -commit b46e4176e430872a3d47d0b41d0694a2ea121c5e -Author: Gustavo Noronha Silva -Date: Fri Dec 18 11:38:29 2009 +0100 - - Make Ctrl-rightclick always display the browser keyboard - - embed/ephy-web-view.c | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -commit 2dc702089f58f707d84e138816d2b40f3d07e096 -Author: Diego Escalante Urrelo -Date: Wed Dec 9 20:37:39 2009 -0500 - - docs: ephy-web-view - - doc/reference/epiphany-docs.sgml | 4 +- - doc/reference/epiphany-sections.txt | 53 +++++++++ - doc/reference/epiphany.types | 4 + - embed/ephy-web-view.c | 210 +++++++++++++++++++++++++++++++----- - embed/ephy-web-view.h | 2 +- - lib/ephy-file-helpers.h | 2 +- - 6 files changed, 244 insertions(+), 31 deletions(-) - -commit 9f22187270a578e2eac2fa9cc89b81021e4cf9dd -Author: Diego Escalante Urrelo -Date: Sat Dec 5 22:20:08 2009 -0500 - - docs: ephy-dialog - - doc/reference/Makefile.am | 4 +- - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 25 +++++ - doc/reference/epiphany.types | 4 + - lib/ephy-dialog.c | 191 +++++++++++++++++++++++++++++++++--- - lib/ephy-dialog.h | 8 +- - 6 files changed, 215 insertions(+), 18 deletions(-) - -commit 253d6d63bc0986047448ee18162b5543f3f72a23 -Author: Diego Escalante Urrelo -Date: Fri Dec 4 15:01:29 2009 -0500 - - docs: ephy-debug - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 4 ++++ - doc/reference/epiphany-sections.txt | 8 ++++++++ - lib/ephy-debug.c | 28 ++++++++++++++++++++++++++++ - 4 files changed, 40 insertions(+), 1 deletion(-) - -commit b68b5f3fc860af82c55ee10e2deaf46ca8e14273 -Author: Diego Escalante Urrelo -Date: Tue Dec 15 13:35:16 2009 -0500 - - docs: include NSS libs when appropiate - - This fixes the build when docs are enabled. - - Bug #604637 - - doc/reference/Makefile.am | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 1422f28e983e9117c40f8c62334bbbe1148314a7 -Author: Diego Escalante Urrelo -Date: Thu Dec 17 19:28:08 2009 -0500 - - ephy-web-view: add missing include - - embed/ephy-web-view.c | 1 + - 1 file changed, 1 insertion(+) - -commit ac2328b73528ca5d3408222920fd8143a6e76eec -Author: Xan Lopez -Date: Thu Dec 17 18:07:31 2009 +0100 - - ephy-web-view.c: use NULL-safe str compare function - - Fixes crasher in pages with no rel elements. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9e4c8f2592dd9f9063c188db7ca596d68f024909 -Author: Ivar Smolin -Date: Thu Dec 17 17:51:56 2009 +0200 - - Updating Estonian translation - - po/et.po | 61 ++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 28 insertions(+), 33 deletions(-) - -commit 828a97c512dd500be59825d64c899468f9598562 -Author: Gustavo Noronha Silva -Date: Wed Dec 16 18:01:32 2009 +0100 - - Use the new top-widget infrastructure to ask whether to store passwords - - configure.ac | 2 +- - embed/ephy-web-view.c | 209 +++++++++++++++++++++++++++++++++++++++++++++----- - 2 files changed, 191 insertions(+), 20 deletions(-) - -commit f26d3ba7ce8a3577739a08971e466e2b33cecf31 -Author: Gustavo Noronha Silva -Date: Wed Dec 16 15:40:51 2009 +0100 - - Make it possible to add arbitrary widgets above the WebView - - embed/ephy-embed.c | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++- - embed/ephy-embed.h | 6 ++-- - 2 files changed, 93 insertions(+), 3 deletions(-) - -commit de05c84965bc829f14fb9165bd05d5612967a36d -Author: Gustavo Noronha Silva -Date: Wed Dec 16 13:35:55 2009 +0100 - - Make EphyEmbed inherit from GtkVBox instead of GtkScrolledWindow - - embed/ephy-embed-utils.h | 5 ++--- - embed/ephy-embed.c | 19 ++++++++++++++----- - embed/ephy-embed.h | 4 ++-- - embed/ephy-web-view.c | 2 +- - src/ephy-encoding-dialog.c | 4 ++-- - src/ephy-location-action.c | 4 ++-- - src/ephy-lockdown.c | 4 ++-- - src/ephy-navigation-action.c | 4 ++-- - src/ephy-notebook.c | 4 ++-- - src/ephy-session.c | 12 ++++++------ - src/ephy-shell.c | 12 ++++++------ - src/ephy-tabs-menu.c | 6 +++--- - src/ephy-toolbar.c | 2 +- - src/ephy-window.c | 32 ++++++++++++++++---------------- - src/popup-commands.c | 2 +- - src/ppview-toolbar.c | 16 ++++++++-------- - src/prefs-dialog.c | 2 +- - src/window-commands.c | 21 +++++++++++---------- - 18 files changed, 82 insertions(+), 73 deletions(-) - -commit 092c7136695555fbd44c51e37c36202c7a2cb832 -Author: Benjamin Otte -Date: Thu Dec 17 12:04:44 2009 +0100 - - Allow dialog buttons be the default - - Fixes crashers when we actually make them the default shortly - afterwards. - - embed/ephy-embed.c | 1 + - 1 file changed, 1 insertion(+) - -commit a0c740454dc8e649124b76a1bd15700ceaf51a72 -Author: Khaled Hosny -Date: Thu Dec 17 11:16:31 2009 +0200 - - Updated Arabic translation - - po/ar.po | 1354 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 644 insertions(+), 710 deletions(-) - -commit 7c0851c41c36d9293d0ca8e63ed1b112e92de8e2 -Author: Matej Urbančič -Date: Thu Dec 17 09:02:45 2009 +0100 - - Updated Slovenian translation - - po/sl.po | 735 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 371 insertions(+), 364 deletions(-) - -commit 5b4ee4a896f8bc8507461db10b05ddae9b084047 -Author: Xan Lopez -Date: Wed Dec 16 15:35:10 2009 +0100 - - ephy-statusbar: fix GTK+ version check, it was reversed - - src/ephy-statusbar.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit dcbca48831c592e33e0041f7fb6d458640983cea -Author: Xan Lopez -Date: Wed Dec 16 12:36:40 2009 +0100 - - ephy-web-view: do not auto-fill passwords when using a private profile - - embed/ephy-web-view.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 42e33a560184e66f243a20453e04463976d6f314 -Author: Estêvão Samuel Procópio -Date: Tue Dec 15 23:52:27 2009 -0200 - - Emitting ge-feed-link signal for rss extension - - Signed-off-by: Xan Lopez - - embed/ephy-web-view.c | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 93 insertions(+) - -commit 482f3804c3cf886c67ef9240527f31341a090aea -Author: Kjartan Maraas -Date: Wed Dec 16 12:15:47 2009 +0100 - - Fix file placement - - po/POTFILES.in | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit a819deabcc1a89d5c81ff91d16ea5c512c8a9180 -Author: Kjartan Maraas -Date: Wed Dec 16 12:15:34 2009 +0100 - - Updated Norwegian bokmål translation. - - po/nb.po | 160 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 83 insertions(+), 77 deletions(-) - -commit 4b6b634eafc02928b7865057f6f745f14735a78b -Author: Gustavo Noronha Silva -Date: Tue Dec 15 16:25:31 2009 +0100 - - Implement the actual form authentication saving and pre-filling - - This is a "draft" quality implementation. There are some FIXMEs, and a - bunch of caveats, like private profiles not being taken into - consideration, and the user not being asked whether they want to save - the passwords or not. - - Bug #582267 - - embed/ephy-embed-single.c | 3 + - embed/ephy-web-view.c | 514 ++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 517 insertions(+) - -commit 9d419181e0630431de079b777f1e537452fc69e4 -Author: Gustavo Noronha Silva -Date: Tue Dec 15 16:17:54 2009 +0100 - - Add a new utility function to query the keyring for the form password - - This is used to make all policy regarding what and how we save data be - in one place. - - lib/ephy-profile-migration.c | 119 +++++++++++++++++++++++++++++++------------ - lib/ephy-profile-migration.h | 11 ++++ - 2 files changed, 97 insertions(+), 33 deletions(-) - -commit efb097c929407bb264b90d31feadac34c31a85e7 -Author: Xan Lopez -Date: Tue Dec 15 12:17:25 2009 +0100 - - ephy-embed-single: add a function to update the form auth cache with a new entry - - embed/ephy-embed-single.c | 53 ++++++++++++++++++++++++++++++++++++----------- - embed/ephy-embed-single.h | 6 ++++++ - 2 files changed, 47 insertions(+), 12 deletions(-) - -commit 4956cb6e958f0640b2864719f4c87118b563447f -Author: Xan Lopez -Date: Tue Dec 15 11:56:02 2009 +0100 - - ephy-embed-single: add a function to get the form auth data for a URI - - embed/ephy-embed-single.c | 49 ++++++++++++++++++++++++++++++++++------------- - embed/ephy-embed-single.h | 9 +++++++++ - 2 files changed, 45 insertions(+), 13 deletions(-) - -commit c7b6cac1e8d49f1b5d3fd3921cc518f8210b77b6 -Author: Xan Lopez -Date: Tue Dec 15 11:29:46 2009 +0100 - - ephy-embed-single: cache form auth data - - Otherwise we need to query keyring all the time to figure out if we - have to prefill forms. - - embed/ephy-embed-single.c | 153 +++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-profile-migration.c | 3 - - lib/ephy-profile-migration.h | 3 + - 3 files changed, 156 insertions(+), 3 deletions(-) - -commit 80058bfa86b8997a0d9d2ebf380d4c3b49b0edc6 -Author: Xan Lopez -Date: Tue Dec 15 10:58:45 2009 +0100 - - ephy-profile-migration: migrate form auth data from (copied) gecko profile - - We store the login/password pairs used in forms in the keyring, like - the HTTP auth data. - - lib/ephy-profile-migration.c | 126 ++++++++++++++++++++++++++++++++++++++++--- - lib/ephy-profile-migration.h | 6 +++ - 2 files changed, 125 insertions(+), 7 deletions(-) - -commit 7a295e2c5db878dbd076c2f582cbae8aa738c3b7 -Author: Xan Lopez -Date: Tue Dec 15 10:31:47 2009 +0100 - - Move profile migration tools from src/ to lib/ - - We'll use them from embed/ for form password saving, and embed/ can't - use code from src/ - - lib/Makefile.am | 14 ++ - lib/ephy-nss-glue.c | 309 ++++++++++++++++++++++++++++++++ - lib/ephy-nss-glue.h | 29 +++ - lib/ephy-profile-migration.c | 410 +++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-profile-migration.h | 25 +++ - src/Makefile.am | 16 +- - src/ephy-nss-glue.c | 309 -------------------------------- - src/ephy-nss-glue.h | 29 --- - src/ephy-profile-migration.c | 410 ------------------------------------------- - src/ephy-profile-migration.h | 25 --- - 10 files changed, 788 insertions(+), 788 deletions(-) - -commit a31c25320318115914e009048a4081b2a1b58f50 -Author: Gustavo Noronha Silva -Date: Mon Dec 14 12:24:42 2009 +0100 - - Let web pages handle mouse clicks before doing our own handling - - This allows applications to provide their own context menus, and - perform their own handling for right-click events. - - Bug #603326 - - embed/ephy-embed-prefs.c | 5 ++++- - src/ephy-window.c | 7 ++++++- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 27d6a609d43ec2e6a7a5ee27809a79263af089ad -Author: Xan Lopez -Date: Sun Dec 13 23:57:30 2009 +0100 - - ephy-web-view: url-decode javascript URIs before executing them - - Fixes Amazon Add to Wishlist bookmark. - - Bug #604489 - - embed/ephy-web-view.c | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - -commit f89e7385d0a0c34669a69c057aed9643c0c13fbb -Author: Nguyen Thai Ngoc Duy -Date: Sat Dec 12 12:28:22 2009 +0200 - - ephy-web-view: do not set favicon when we have no address - - This shouldn't happen in theory, but the double check fixes a crasher - opening URLs from gmail. - - Bug #604375 - - Signed-off-by: Xan Lopez - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 74dc983654efc24a3a5dcf03420502eacdb757ae -Author: Xan Lopez -Date: Fri Dec 11 14:21:23 2009 +0200 - - ephy-web-view: get rid of 'icon-address' property - - Also redundant since we have the same thing in WebKitWebView now. - - embed/ephy-web-view.c | 128 +++++++++++++++++++------------------------------- - embed/ephy-web-view.h | 5 -- - 2 files changed, 48 insertions(+), 85 deletions(-) - -commit 91d4b52277f69b966147873528fbe985a024bffd -Author: Xan Lopez -Date: Fri Dec 11 14:02:40 2009 +0200 - - ephy-web-view.h: remove old signal from class struct - - embed/ephy-web-view.h | 2 -- - 1 file changed, 2 deletions(-) - -commit 012be8884f3fb3a618af3d7dfac29ad40de99f1a -Author: Xan Lopez -Date: Fri Dec 11 14:01:34 2009 +0200 - - Remove the 'favicon' signal from EphyWebView - - We already have WebKitWebView::icon-loaded, so it's redundant now. - - embed/ephy-embed.c | 9 --------- - embed/ephy-web-view.c | 19 +------------------ - embed/ephy-web-view.h | 2 -- - 3 files changed, 1 insertion(+), 29 deletions(-) - -commit 5e0f51772f48a473d3e1fce9757320a15c6d82d5 -Author: Gustavo Noronha Silva -Date: Wed Dec 9 17:35:59 2009 -0200 - - Make the favicon cache work on top of new WebKit API, and WebKitDownload - - This restores basic favicon functionality. In the future we will want - to replace our favicon cache with the IconDatabase that is available - in WebKit. - - Bug #601859 - - embed/ephy-embed.c | 9 +++++ - embed/ephy-favicon-cache.c | 88 ++++++++++++++++++++-------------------------- - embed/ephy-web-view.c | 14 ++++---- - 3 files changed, 54 insertions(+), 57 deletions(-) - -commit a32fe7def38497fc58c2b9645f79311093245f7f -Author: Carl van Toder -Date: Wed Dec 9 14:01:38 2009 +0200 - - ephy-navigation-action: reverse forward history list - - Was reversed wrt epiphany/gecko - - Bug #601744 - - Signed-off-by: Xan Lopez - - src/ephy-navigation-action.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 125b54cba6eda6d9d09af7a6b6e1aa880b75f7fd -Author: Ivar Smolin -Date: Wed Dec 9 09:05:35 2009 +0200 - - Updating Estonian translation - - po/et.po | 34 +++++++++------------------------- - 1 file changed, 9 insertions(+), 25 deletions(-) - -commit 3c78644efe4dbc9cd4f77b8b5f16b8323512fb43 -Author: Xan Lopez -Date: Tue Dec 8 18:30:54 2009 +0200 - - ephy-prefs: remove obsolete preference - - lib/ephy-prefs.h | 3 --- - 1 file changed, 3 deletions(-) - -commit ffe63b2868201600e3c0bf9f203de387c3616c40 -Author: Carl van Tonder -Date: Tue Dec 8 18:14:52 2009 +0200 - - Add gconf key to control the search engine used in auto-search - - Defaults to Google, like it used to. - - Bug #604087 - - Signed-off-by: Xan Lopez - - data/epiphany.schemas.in | 11 +++++++++++ - embed/ephy-web-view.c | 16 ++++++++++++++-- - lib/ephy-prefs.h | 1 + - 3 files changed, 26 insertions(+), 2 deletions(-) - -commit 1acaa540531f9ed3b33f87e10f0817b8c8ffd988 -Author: Gustavo Noronha Silva -Date: Tue Dec 8 14:08:15 2009 -0200 - - Use new WebKit API to respect the Content-Disposition header - - This allows us to perform downloads when the server tells us to do so, - even for types WebKit supports. This fixes downloading GMail attachments. - - Bug #598605 - - configure.ac | 2 +- - embed/ephy-web-view.c | 30 +++++++++++++++++++++++++++++- - 2 files changed, 30 insertions(+), 2 deletions(-) - -commit c29cb6688dd71a282ac8079657076415ae3d05a8 -Author: Xan Lopez -Date: Tue Dec 8 17:53:11 2009 +0200 - - ephy-statusbar: avoid widget surgery hacks with newer GTK+s - - Bug #602130 - - src/ephy-statusbar.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit b45f436e6f81721ab51a948c41f3370476413898 -Author: Xan Lopez -Date: Tue Dec 8 16:46:24 2009 +0200 - - Get rid of 'ge-document-type' signal - - Connecting to notify::document-type is enough. - - embed/ephy-embed.c | 57 -------------------------------- - embed/ephy-web-view.c | 91 +++++++++++++++++++++++++++++++++------------------ - 2 files changed, 60 insertions(+), 88 deletions(-) - -commit 4a6ed5620061fbbcf3605add12f8043a07accbca -Author: Xan Lopez -Date: Tue Dec 8 16:30:53 2009 +0200 - - ephy-encoding-dialog: fix compiler warning (and bug!) - - src/ephy-encoding-dialog.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 42c2aa380667134ba1cd27932c55e4364f3a2d7d -Author: Xan Lopez -Date: Tue Dec 8 16:30:43 2009 +0200 - - ephy-web-view: fix typo - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a1ef399affa0a1ac0ddbc796208a8e2ff40758a0 -Author: Xan Lopez -Date: Tue Dec 8 16:29:08 2009 +0200 - - ephy-embed: consider text/plain pages as document-type HTML - - WebKit still thinks of them as HTML documents, and otherwise things - like the text-encoding menu are disabled for them. - - Bug #603927 - - embed/ephy-embed.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 41ceee8ac728d660245972ed41b0fa577b694446 -Author: Diego Escalante Urrelo -Date: Mon Dec 7 08:07:19 2009 -0500 - - Revert "Don't use deprecated GtkButton API" - - Revert this commit since Xan is right about forgetting about deprecating API. - Instead of hiding behind g_signal_emit() we should use modern API or file bugs - to fill our need. - - src/bookmarks/ephy-bookmark-action.c | 4 ++-- - src/ephy-link-action.c | 12 ++++++------ - 2 files changed, 8 insertions(+), 8 deletions(-) - -commit 7df0ef5da7881342298485eb88241695603d447c -Author: Diego Escalante Urrelo -Date: Fri Dec 4 14:34:01 2009 -0500 - - Don't use deprecated GtkButton API - - In 82a5da33 we removed usage of gtk_button_pressed and gtk_button_released - however replacing those for g_signal_emit calls of button-press-event and - button-release-event. This however caused a crash on middle clicking of - elements in the toolbar. - To fix this we use g_signal_emit with pressed and released signals, these - two are deprecated signals, though. - - There doesn't seem to be a way to trigger button pressed/released animation - without the pressed/released *deprecated* signals or functions, so this is our - best solution for now. - - Bug #603450 - - src/bookmarks/ephy-bookmark-action.c | 4 ++-- - src/ephy-link-action.c | 12 ++++++------ - 2 files changed, 8 insertions(+), 8 deletions(-) - -commit 9cd23731cce78ed64191f41ea32815069600c79e -Author: Xan Lopez -Date: Sat Dec 5 00:19:23 2009 +0200 - - Revert "Do not use deprecated GtkButton APIs" - - This reverts commit 167e60123c1024d539dc02f4a16f7de994bd1c29. - - I misread the documentation about this, the signals do not do the same - than the old functions. - - src/bookmarks/ephy-bookmark-action.c | 4 ++-- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-topic-action.c | 2 +- - 3 files changed, 4 insertions(+), 4 deletions(-) - -commit a4174b3c96ab0a3395fe8fad19fa8052635088f8 -Author: Kjartan Maraas -Date: Fri Dec 4 21:52:10 2009 +0100 - - Updated Norwegian bokmål translation. - - po/nb.po | 972 ++++++++++++++++++++++----------------------------------------- - 1 file changed, 330 insertions(+), 642 deletions(-) - -commit 5aee0deca12e14554ce0fa0d4b02613e99ba77a9 -Author: Diego Escalante Urrelo -Date: Wed Dec 2 17:01:24 2009 -0500 - - Remove redundant parameters in location-set API - - EphyLocationEntry, EphyLocationAction and EphyToolbar take an @adress and - @typed_address parameter, while both are useful we only end up using one so we - can easily decide which one to use in ephy-window.c instead of carrying both - around until ephy-location-entry.c - - Bonus: make ephy_location_entry_set_location accept NULL as @address safely. - - Bug #603651 - - lib/widgets/ephy-location-entry.c | 22 +++++++--------------- - lib/widgets/ephy-location-entry.h | 3 +-- - src/ephy-location-action.c | 20 ++++++-------------- - src/ephy-location-action.h | 3 +-- - src/ephy-lockdown.c | 2 +- - src/ephy-toolbar.c | 11 ++++------- - src/ephy-toolbar.h | 3 +-- - src/ephy-window.c | 11 +++++++---- - tests/testephylocationentry.c | 19 ++++++------------- - 9 files changed, 34 insertions(+), 60 deletions(-) - -commit 0fdd13a976543bf83ed360d42eabf085294195f1 -Author: Diego Escalante Urrelo -Date: Wed Dec 2 15:01:41 2009 -0500 - - docs: missing parameters in signals - - Bug #503852 - - src/ephy-location-action.c | 1 + - src/ephy-toolbar.c | 4 ++++ - 2 files changed, 5 insertions(+) - -commit 86bb4541358937173e2a64f86d17bc3eebba8024 -Author: Diego Escalante Urrelo -Date: Wed Dec 2 14:55:16 2009 -0500 - - docs: nitpick in ephy-web-view - - Bug #503852 - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ad91b4e454f2ddbab88801490b1ce5cd91eb03ac -Author: Diego Escalante Urrelo -Date: Wed Dec 2 14:55:05 2009 -0500 - - docs: ephy-location-action - - Bug #503852 - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 8 ++++ - doc/reference/epiphany.types | 2 + - lib/widgets/ephy-location-entry.c | 9 ++-- - src/ephy-location-action.c | 87 +++++++++++++++++++++++++++++++++---- - 6 files changed, 93 insertions(+), 15 deletions(-) - -commit b0891810b1015e23df760dffe6befb145c9a4e3d -Author: Diego Escalante Urrelo -Date: Wed Dec 2 01:21:08 2009 -0500 - - docs: ephy-toolbar - - Bug #503852 - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 18 ++++++ - doc/reference/epiphany.types | 2 + - src/ephy-toolbar.c | 122 +++++++++++++++++++++++++++++++++++- - src/ephy-toolbar.h | 4 +- - 6 files changed, 144 insertions(+), 4 deletions(-) - -commit deac403a8eb8f1ad00333b47f6c0df448110972e -Author: Diego Escalante Urrelo -Date: Tue Dec 1 22:03:11 2009 -0500 - - docs: ephy-statusbar - - Bug #503852 - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 13 +++++++++++++ - doc/reference/epiphany.types | 2 ++ - src/ephy-statusbar.c | 16 +++++++++++++++- - 5 files changed, 31 insertions(+), 2 deletions(-) - -commit 86d5198f311fc40dc0d22cfa0e2643fcde46317f -Author: Diego Escalante Urrelo -Date: Tue Dec 1 21:43:54 2009 -0500 - - docs: ephy-window - - Also make _ephy_window_set_context_event and _ephy_window_unset_context_event - static since noone was using those. - - Bug #503852 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 18 ++++++++++++++++++ - doc/reference/epiphany.types | 2 ++ - src/ephy-window.c | 11 +++++++++-- - src/ephy-window.h | 5 ----- - 5 files changed, 30 insertions(+), 7 deletions(-) - -commit 57d1e4a28256b3204b9cbcadd6f52832e55a477c -Author: Diego Escalante Urrelo -Date: Tue Dec 1 21:24:38 2009 -0500 - - docs: ephy-tree-model-node - - Bug #503852 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 11 +++++++ - doc/reference/epiphany.types | 1 + - lib/widgets/ephy-tree-model-node.c | 59 +++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-tree-model-node.h | 10 ++++--- - 5 files changed, 78 insertions(+), 4 deletions(-) - -commit ac9f536fb83161b88678575ce6250c1cf5f8b176 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 21:05:24 2009 -0500 - - docs: ephy-tree-model-sort - - Also disable incomplete documentation. - - Bug #503852 - - doc/reference/Makefile.am | 2 - - doc/reference/epiphany-docs.sgml | 11 +- - doc/reference/epiphany-sections.txt | 250 ++++++------------------------------ - doc/reference/epiphany.types | 32 +---- - lib/widgets/ephy-tree-model-sort.c | 30 +++++ - lib/widgets/ephy-tree-model-sort.h | 10 +- - 6 files changed, 75 insertions(+), 260 deletions(-) - -commit c2159119d0ceb1790984e1ccd6e2bdcb53daafa7 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 20:47:37 2009 -0500 - - docs: ephy-web-view missing @view descriptions - - Bug #503852 - - embed/ephy-web-view.c | 30 +++++++++++++++--------------- - 1 file changed, 15 insertions(+), 15 deletions(-) - -commit ec56c8a732390228b8449a84113e8ed972034b32 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 20:32:52 2009 -0500 - - ephy-web-view: formatting nitpick - - Bug #503852 - - embed/ephy-web-view.h | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit 4f052b4f85fc584113a3a485c44b6b6d84a0597f -Author: Diego Escalante Urrelo -Date: Tue Dec 1 20:32:10 2009 -0500 - - docs: ephy-node-view - - Bug #503852 - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 22 +++++ - doc/reference/epiphany.types | 2 + - lib/widgets/ephy-node-view.c | 192 +++++++++++++++++++++++++++++++++++- - lib/widgets/ephy-node-view.h | 36 +++---- - 6 files changed, 230 insertions(+), 24 deletions(-) - -commit a10d468967635f9f37a976d1f5e2c40ef254c5f7 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 19:24:43 2009 -0500 - - docs: remove old nonexistant API - - Bug #503852 - - doc/reference/epiphany-docs.sgml | 2 - - doc/reference/epiphany-sections.txt | 89 ------------------------------------- - 2 files changed, 91 deletions(-) - -commit 59fe999f2d1a70812eb7bc8f51be22d1628823c7 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 14:44:51 2009 -0500 - - ephy-node-view: fix some really weird indentation - - lib/widgets/ephy-node-view.c | 262 +++++++++++++++++++++---------------------- - 1 file changed, 131 insertions(+), 131 deletions(-) - -commit 8d6415811078b018c36a581144338d65342e2f8b -Author: Diego Escalante Urrelo -Date: Tue Dec 1 14:25:39 2009 -0500 - - docs: ephy-zoom-action - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 8 ++++++++ - lib/widgets/ephy-zoom-action.c | 34 ++++++++++++++++++++++++++++++++++ - 4 files changed, 43 insertions(+), 1 deletion(-) - -commit daed8eebfd5a141b9717ec1e8e64f89c76e1558d -Author: Diego Escalante Urrelo -Date: Tue Dec 1 14:25:23 2009 -0500 - - docs: update reference-howto - - doc/reference-howto.txt | 43 ++++++++++++++++++++----------------------- - 1 file changed, 20 insertions(+), 23 deletions(-) - -commit e8824fe156f428de11613a2c1535103a6a28bdfb -Author: Diego Escalante Urrelo -Date: Tue Dec 1 14:12:39 2009 -0500 - - docs: ephy-spinner - - lib/widgets/ephy-spinner.c | 9 +++++++++ - lib/widgets/ephy-spinner.h | 4 ++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 8fa7aa81e1342fe3a22a83d8d209f631197259d0 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 14:04:54 2009 -0500 - - docs: ephy-zoom-control - - lib/widgets/ephy-zoom-control.c | 21 +++++++++++++++++++-- - 1 file changed, 19 insertions(+), 2 deletions(-) - -commit 4a9f652af96dd57ab0b82c579c360dd42727ba26 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 13:59:28 2009 -0500 - - docs: ephy-location-entry - - bonus nitpick in ephy-zoom (just a line break) - - lib/ephy-zoom.c | 3 ++- - lib/widgets/ephy-location-entry.c | 43 +++++++++++++++++++++++++++++++++++++++ - 2 files changed, 45 insertions(+), 1 deletion(-) - -commit 7572ea1934778ab1b19376cde518b5571bda3947 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 13:45:15 2009 -0500 - - docs: ephy-search-entry - - lib/widgets/ephy-search-entry.c | 18 ++++++++++++++++++ - lib/widgets/ephy-search-entry.h | 2 +- - 2 files changed, 19 insertions(+), 1 deletion(-) - -commit f29b3148fd369e8100ef423424e3585db935e4d6 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 13:04:56 2009 -0500 - - docs: remove useless 'plan' - - doc/plan/Makefile | 14 ---- - doc/plan/README | 36 -------- - doc/plan/ephyplan.dtd | 15 ---- - doc/plan/plan.xml | 217 ------------------------------------------------ - doc/plan/plan2table.xsl | 61 -------------- - 5 files changed, 343 deletions(-) - -commit 3deb6e06fd3cccaf26bca8c81bf1f83ef7993dd6 -Author: Diego Escalante Urrelo -Date: Tue Dec 1 13:20:39 2009 -0500 - - docs: remove generated templates - - doc/reference/Makefile.am | 162 +--- - doc/reference/tmpl/EphyContentPolicy.sgml | 19 - - doc/reference/tmpl/EphySingle.sgml | 64 -- - doc/reference/tmpl/ephy-embed-factory.sgml | 34 - - doc/reference/tmpl/ephy-embed-persist.sgml | 235 ----- - doc/reference/tmpl/ephy-embed-single.sgml | 69 -- - doc/reference/tmpl/ephy-embed.sgml | 399 --------- - doc/reference/tmpl/ephy-extensions-manager.sgml | 37 - - doc/reference/tmpl/ephy-glade.sgml | 25 - - doc/reference/tmpl/ephy-icon-entry.sgml | 53 -- - doc/reference/tmpl/ephy-location-entry.sgml | 217 ----- - doc/reference/tmpl/ephy-node-db.sgml | 123 --- - doc/reference/tmpl/ephy-password-manager.sgml | 78 -- - doc/reference/tmpl/ephy-permission-manager.sgml | 78 -- - doc/reference/tmpl/ephy-search-entry.sgml | 49 -- - doc/reference/tmpl/ephy-session.sgml | 84 -- - doc/reference/tmpl/ephy-shell.sgml | 129 --- - doc/reference/tmpl/ephy-spinner.sgml | 58 -- - doc/reference/tmpl/ephy-tab.sgml | 202 ----- - doc/reference/tmpl/ephy-window.sgml | 110 --- - doc/reference/tmpl/ephy-zoom-control.sgml | 56 -- - doc/reference/tmpl/epiphany-unused.sgml | 1043 ----------------------- - doc/reference/tmpl/mozilla-embed-event.sgml | 35 - - 23 files changed, 13 insertions(+), 3346 deletions(-) - -commit 82a5da33bdcd8673cbf48de1159ae4f65fec8f64 -Author: Xan Lopez -Date: Wed Dec 2 21:39:47 2009 +0200 - - ephy-embed: reimplent EphyEmbedSingle 'handle-content' signal - - This is used by external download managers like gwget. - - embed/ephy-embed.c | 14 +++++++++++++- - 1 file changed, 13 insertions(+), 1 deletion(-) - -commit bb07ab9d3b02808619434fe5ab48318fdb749434 -Author: Xan Lopez -Date: Mon Nov 30 14:15:16 2009 +0200 - - 2.29.3 - - NEWS | 19 +++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 20 insertions(+), 1 deletion(-) - -commit 167e60123c1024d539dc02f4a16f7de994bd1c29 -Author: Xan Lopez -Date: Mon Nov 30 14:28:42 2009 +0200 - - Do not use deprecated GtkButton APIs - - src/bookmarks/ephy-bookmark-action.c | 4 ++-- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-topic-action.c | 2 +- - 3 files changed, 4 insertions(+), 4 deletions(-) - -commit 2aca0c21a8f140a6d3b6bddfa4aed1b31326b1cd -Author: Xan Lopez -Date: Mon Nov 30 14:12:12 2009 +0200 - - ephy-web-view.c: fix auto-google search when using Ctrl-Enter - - Bug #603324 - - embed/ephy-web-view.c | 60 +++++++++++++++++++++++++++++---------------------- - 1 file changed, 34 insertions(+), 26 deletions(-) - -commit d23fdbe06441c06d532666e0d0d1d79091094378 -Author: Tao Wei -Date: Tue Nov 24 21:14:18 2009 +0800 - - Update Simplified Chinese translation. - - po/zh_CN.po | 4089 +++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1884 insertions(+), 2205 deletions(-) - -commit 7f2e0d242c478603da985ab7680f4ef8b9f7de71 -Author: Iain Nicol -Date: Tue Nov 3 15:46:51 2009 +0000 - - prefs-dialog: restore Close and Help buttons - - Bug #590387 - - Signed-off-by: Xan Lopez - - data/glade/prefs-dialog.ui | 711 +++++++++++++++------------------------------ - 1 file changed, 233 insertions(+), 478 deletions(-) - -commit cb2d52c87c38296d854a8c79eced7d7bc8e2a557 -Author: Iain Nicol -Date: Wed Nov 18 17:21:15 2009 +0000 - - Add GObject introspection annotations to more functions - - Partial fix for bug #599757. - - Signed-off-by: Xan Lopez - - embed/ephy-embed-event.c | 5 +++++ - lib/ephy-dialog.c | 10 ++++++++++ - lib/ephy-node.c | 5 +++++ - src/ephy-shell.c | 4 ++-- - 4 files changed, 22 insertions(+), 2 deletions(-) - -commit 80b1f00b99bec7a0d11312d9f429ca199f8e7132 -Author: Xan Lopez -Date: Thu Nov 19 14:53:42 2009 +0200 - - ephy-embed: only fetch the document type for a page from the main frame - - Otherwise we will rewrite the right document type with the document - type from other frames in the page. - - Bug #602400 - - embed/ephy-embed.c | 35 +++++++++++++++++++---------------- - 1 file changed, 19 insertions(+), 16 deletions(-) - -commit 2b432eeaec3fad0172f936dd0e42cf8360a191c2 -Author: Xan Lopez -Date: Thu Nov 19 11:16:54 2009 +0200 - - ephy-net-monitor: and use && instead of || - - src/ephy-net-monitor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 13a746d2fc81415bf3ceab7fe39a247aa18baf9b -Author: Xan Lopez -Date: Thu Nov 19 11:10:37 2009 +0200 - - ephy-net-monitor: logic of the NULL checks was inverted - - src/ephy-net-monitor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 76d1c18d5cd267a97ef2a33950cb6b837032bd80 -Author: Tom Parker -Date: Wed Nov 18 14:44:09 2009 +0200 - - Disconnect dbus callbacks when disposing of the monitor. - - Fixes a crash in some situations, bug #572326 - - Signed-off-by: Xan Lopez - - src/ephy-net-monitor.c | 24 ++++++++++++++++++++---- - 1 file changed, 20 insertions(+), 4 deletions(-) - -commit b60ae4ba76dcafc93bc805203e4962ade100f300 -Author: Iain Nicol -Date: Tue Nov 3 20:12:13 2009 +0000 - - Add GObject introspection annotations to many *_get_* functions - - Partial fix for bug #599757. - - Signed-off-by: Xan Lopez - - embed/ephy-embed-container.c | 5 +++-- - embed/ephy-embed-persist.c | 6 ++++-- - embed/ephy-embed-shell.c | 45 +++++++++++++++++++++++++++++++++++++----- - embed/ephy-embed.c | 2 +- - embed/ephy-history.c | 20 +++++++++++++++++++ - embed/ephy-web-view.c | 6 +++--- - lib/ephy-dialog.c | 10 ++++++++++ - lib/ephy-node-db.c | 2 +- - lib/ephy-node.c | 30 ++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks.c | 35 ++++++++++++++++++++++++++++++++ - src/ephy-extensions-manager.c | 3 ++- - src/ephy-notebook.c | 5 +++++ - src/ephy-session.c | 6 ++++-- - src/ephy-shell.c | 44 +++++++++++++++++++++++++++++++++++++++-- - src/ephy-statusbar.c | 2 +- - src/ephy-toolbar.c | 5 +++++ - src/ephy-window.c | 12 +++++------ - 17 files changed, 212 insertions(+), 26 deletions(-) - -commit dedbad484feca0d64e1a75d983a2a251ca4a9aae -Author: Theppitak Karoonboonyanan -Date: Wed Nov 18 11:46:57 2009 +0700 - - Updated Thai translation. - - po/th.po | 2704 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1325 insertions(+), 1379 deletions(-) - -commit 17be9e254432704d576bdeb494a204b600663a99 -Author: Antón Méixome -Date: Fri Nov 13 11:22:06 2009 +0100 - - Updated Galician Translation - - po/gl.po | 746 ++++++++++++++++++--------------------------------------------- - 1 file changed, 215 insertions(+), 531 deletions(-) - -commit af8052182470524aa392fb0464ce8fbf4b9ff889 -Author: Gustavo Noronha Silva -Date: Thu Nov 12 11:09:06 2009 -0200 - - Set program name to match the desktop file - - src/ephy-main.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 428ef8c35ffd9abdcd51285f36a66e818b42c5b2 -Author: Thomas Thurman -Date: Mon Nov 9 20:37:32 2009 +0000 - - Shavian translation - - po/LINGUAS | 1 + - po/en@shaw.po | 2619 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2620 insertions(+) - -commit bebbe7c385f9e0e97e8bd8c36cc76c89ed16e951 -Author: Matej Urbančič -Date: Thu Nov 5 07:07:27 2009 +0100 - - Updated Slovenian translation - - po/sl.po | 811 ++++++++++++++++++--------------------------------------------- - 1 file changed, 223 insertions(+), 588 deletions(-) - -commit 71e9f8348c830bd12d486a5de1726d767a1bfdcb -Author: vasudeven -Date: Tue Nov 3 13:44:43 2009 +0530 - - Added Tamil translation - - po/ta.po | 960 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 447 insertions(+), 513 deletions(-) - -commit a174db273ade2b61f7631e52aff0dd0738f31a3a -Author: Xan Lopez -Date: Mon Nov 2 21:12:05 2009 +0200 - - Depend on not yet released WebKitGTK+ 1.1.17 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7b11c47ef97926cfc8d5f3333283c64d99f4bc30 -Author: Ivar Smolin -Date: Mon Nov 2 07:55:02 2009 +0200 - - Updating Estonian translation - - po/et.po | 533 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 270 insertions(+), 263 deletions(-) - -commit e5c8c2e57ff823713c72c57be93da36011848cff -Author: Jorge González -Date: Mon Nov 2 01:26:16 2009 +0100 - - Updated Spanish translation - - po/es.po | 956 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 441 insertions(+), 515 deletions(-) - -commit 9096401f41ea371ee26b99a0127a6afd10898a90 -Author: Iain Nicol -Date: Wed Oct 28 23:36:25 2009 +0000 - - Enable gtk-doc & g-ir-scanner support for our introspection annotations - - Partial fix for bug #599757. - - Signed-off-by: Xan Lopez - - doc/reference/epiphany-docs.sgml | 2 ++ - src/Makefile.am | 40 ++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 40 insertions(+), 2 deletions(-) - -commit b23e9c2364681f4bedeed7b5568d05aecb24cdd0 -Author: Iain Nicol -Date: Thu Oct 29 13:56:55 2009 +0000 - - Initialize ephy_web_view_get_security_level's output param "description" - - Partial fix for bug #599757. - - Signed-off-by: Xan Lopez - - embed/ephy-web-view.c | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -commit c87401f28cb8ef3a645dfd5a687be6ddbbfe6790 -Author: Gustavo Noronha Silva -Date: Tue Oct 27 08:09:57 2009 -0200 - - Provide the Inspect Element menu item again - - WebKit now provides API to start the web inspector, so we can restore - the menu item. - - Bug #599473 - - data/ui/epiphany-ui.xml | 8 ++++++++ - src/ephy-window.c | 9 +++++++++ - src/popup-commands.c | 21 +++++++++++++++++++++ - src/popup-commands.h | 3 +++ - 4 files changed, 41 insertions(+) - -commit 68729d9fcdade0698b6e1ce979da271d49d7e3d0 -Author: Iain Nicol -Date: Tue Oct 27 20:07:51 2009 +0000 - - ephy-seed-loader: ref count extensions like ephy-shlib-loader does - - Bug #599838 - - Signed-off-by: Xan Lopez - - src/ephy-seed-loader.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit f7c38e37d7b993ffbddd923c7977e756f2eb7b5f -Author: Iain Nicol -Date: Mon Oct 26 20:02:42 2009 +0000 - - ephy-seed-extension: don't assume the script returned an object - - Bug #599714 - - Signed-off-by: Xan Lopez - - src/ephy-seed-extension.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 07896035ca23d98a3bbd366d9297f6fa4ddf7290 -Author: Xan Lopez -Date: Mon Oct 26 21:01:23 2009 +0200 - - 2.29.1 - - NEWS | 28 ++++++++++++++++++++++++++++ - configure.ac | 2 +- - 2 files changed, 29 insertions(+), 1 deletion(-) - -commit 7f09a9114e0b76fd34ba91426a14e21d8162326c -Author: Xan Lopez -Date: Mon Oct 26 21:40:01 2009 +0200 - - Makefile.am: add missing EXTRA_DIST - - data/glade/Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -commit 175c3b60deccab85e667907291feebe0598326e4 -Author: Iain Nicol -Date: Sun Oct 25 14:39:51 2009 +0000 - - Correct "ReturnValue" to "Return value" in gtk-doc comments - - Signed-off-by: Xan Lopez - - embed/ephy-adblock-manager.c | 4 ++-- - embed/ephy-embed-shell.c | 2 +- - src/ephy-shell.c | 6 +++--- - 3 files changed, 6 insertions(+), 6 deletions(-) - -commit 009be331694b442dd859f49c7f02bdef498621ff -Author: Gustavo Noronha Silva -Date: Sun Oct 25 18:22:46 2009 -0200 - - Reimplement content type checking - - This brings back proper content type reporting, and the 'Open' button - in the download dialog. - - Bug #598167 - - configure.ac | 2 +- - embed/ephy-embed.c | 32 +++++++++++++++++++------------- - 2 files changed, 20 insertions(+), 14 deletions(-) - -commit deafbe738f0293b1cacca8e388aa34ea442818e3 -Author: Iain Nicol -Date: Fri Oct 23 21:37:49 2009 +0100 - - ephy-seed-extension: don't crash when detaching multiple extensions - - Protect the seed object from being released by the garbage collector - after the first extension is detached. - - Bug #599422 - - Signed-off-by: Xan Lopez - - src/ephy-seed-extension.c | 1 + - 1 file changed, 1 insertion(+) - -commit 46845bbcf412994f0bb3e949178c6f72f676f70b -Author: Xan Lopez -Date: Fri Oct 23 02:51:17 2009 +0300 - - Refactor EphyShell lifetime tracking - - Stop having each EphyWindow ref the shell, and instead have the shell - track all the newly created EphyWindows. When the last one is gone, - quit the GTK+ mainloop. This is simpler and avoids potential reference - cycles (see bug #573551). - - Bug #599348 - - embed/downloader-view.c | 17 +---------------- - embed/ephy-embed-shell.c | 40 ++++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed-shell.h | 4 ++++ - src/ephy-main.c | 23 +++++++++-------------- - src/ephy-window.c | 12 +----------- - 5 files changed, 55 insertions(+), 41 deletions(-) - -commit dc14e5bcab1759813aeed64af213ba067535e7e8 -Author: Xan Lopez -Date: Thu Oct 22 23:59:58 2009 +0300 - - Allow popups when the user asks for them. - - Bug #528799 - - embed/ephy-embed-prefs.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 7a31887b89005519fcb012cce53adc2a6402d066 -Author: Xan Lopez -Date: Thu Oct 22 20:06:54 2009 +0300 - - Unref EphyShell on EphyWindow's dispose method - - This way we can break ref cycles that can happen when using Seed extensions. - - Bug #573551 - - src/ephy-window.c | 12 ++++++++++-- - 1 file changed, 10 insertions(+), 2 deletions(-) - -commit 7a31aae32f3638ec99f432795f5c721b60e67268 -Author: Frédéric Péters -Date: Fri Oct 9 20:07:20 2009 +0200 - - Pass mailto: URI to gtk_show_uri() - - (Part of) Bug #584537 - - Signed-off-by: Xan Lopez - - embed/ephy-embed-utils.c | 1 + - src/ephy-window.c | 8 ++++++++ - 2 files changed, 9 insertions(+) - -commit 437e08e9303dfe186d14b1cd3b2e9226c61feb4e -Author: Chris Lamb -Date: Sun Oct 11 16:44:44 2009 +0100 - - Execute "javascript:" URIs instead of browsing for them. - - Signed-off-by: Xan Lopez - - embed/ephy-embed-utils.c | 1 + - embed/ephy-web-view.c | 5 ++++- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 81b8ace84e3485765491a26ccbfa033d577a13b9 -Author: Iain Nicol -Date: Thu Oct 15 15:06:14 2009 +0100 - - Use the new syntax for seed imports - - https://bugzilla.gnome.org/show_bug.cgi?id=598562 - - Signed-off-by: Xan Lopez - - src/ephy-seed-extension.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit eb4d86050b88de7b29ff07ee59780994f02cc3cf -Author: Gustavo Noronha Silva -Date: Sun Oct 4 12:55:49 2009 +0100 - - Encode the typed URL before passing it as a query string for searching - - This change makes sure that all characters that are typed make it to - the search query. Thanks to Dan Winship for pointing out the solution. - - Bug #596717 - - embed/ephy-web-view.c | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -commit c7c283796e76a98571e89c28b9b936ac39420acc -Author: Gustavo Noronha Silva -Date: Sun Oct 4 12:33:41 2009 +0100 - - Improve localhost matching - - Also consider localhost being used along with a port, with a path, and - with a domain. - - Bug #595690 - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit daa85f5615c0de460f2d019c1b223588247a6cdd -Author: Gil Forcada -Date: Fri Oct 2 10:44:00 2009 +0200 - - Updated Catalan translation - - po/ca.po | 904 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 473 insertions(+), 431 deletions(-) - -commit 6d8ad9f583d29dc7e5f5babc12fce5987efa30e3 -Author: Benjamin Otte -Date: Fri Jul 31 18:11:58 2009 +0200 - - Open/Save all ui files once with glade - - Reduces file size and ensures files will continue working properly - when edited. - - Bug #590387 - - Signed-off-by: Xan Lopez - - data/glade/certificate-dialogs.ui | 872 ++++++++------------------------------ - data/glade/epiphany.ui | 625 +++++++++++---------------- - data/glade/form-signing-dialog.ui | 205 +++------ - data/glade/prefs-dialog.ui | 336 ++++----------- - data/glade/print.ui | 220 ++-------- - 5 files changed, 604 insertions(+), 1654 deletions(-) - -commit 098c12996d6acab044b0f9bbacf98935a6e61cd8 -Author: Benjamin Otte -Date: Fri Jul 31 17:47:30 2009 +0200 - - Replace .glade files with .ui files - - 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 - - configure.ac | 9 - - data/glade/Makefile.am | 19 +- - data/glade/certificate-dialogs.glade | 1367 --------------------------- - data/glade/certificate-dialogs.ui | 1293 +++++++++++++++++++++++++ - data/glade/epiphany.glade | 716 -------------- - data/glade/epiphany.ui | 666 +++++++++++++ - data/glade/form-signing-dialog.glade | 298 ------ - data/glade/form-signing-dialog.ui | 280 ++++++ - data/glade/prefs-dialog.glade | 1732 ---------------------------------- - data/glade/prefs-dialog.ui | 1633 ++++++++++++++++++++++++++++++++ - data/glade/print.glade | 479 ---------- - data/glade/print.ui | 448 +++++++++ - po/POTFILES.in | 10 +- - po/POTFILES.skip | 5 - - 14 files changed, 4331 insertions(+), 4624 deletions(-) - -commit d5570cb5e391a97a1417676bce5cdacf6196f037 -Author: Javier Jardón -Date: Mon Sep 28 23:14:22 2009 +0200 - - Bump libtool to 2.2 and remove dolt - - Bug #596669 - - Signed-off-by: Xan Lopez - - Makefile.am | 2 - - autogen.sh | 1 + - configure.ac | 2 +- - m4/dolt.m4 | 178 ----------------------------------------------------------- - 4 files changed, 2 insertions(+), 181 deletions(-) - -commit 68bbd6ce05ee700ea1c77daae4c063ab7ae5b853 -Author: Priit Laes -Date: Sun Sep 27 17:02:31 2009 +0300 - - src/Makefile.am: Fix parallel-build issue when introspection enabled. - - src/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit fe64e80f6f486467de76c397e107e0c53498ae0f -Author: Xan Lopez -Date: Thu Sep 24 17:30:41 2009 +0300 - - ephy-window.c: workaround bug in WebKit progress notification - - LOAD_FINISHED is notified before progress 100% completed, which makes - it very hard to rely on those signals to figure out if a page is still - loading or not when syncing progress in a tab. Try to workaround this - as best as possible. - - src/ephy-window.c | 15 +++++++++++---- - 1 file changed, 11 insertions(+), 4 deletions(-) - -commit 76032eecc218e48c887727cd58ab7b63cfae5802 -Author: Xan Lopez -Date: Thu Sep 24 16:16:59 2009 +0300 - - ephy-web-view.c: update comment of ephy_web_view_is_loading - - embed/ephy-web-view.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit 868dc9753fc0ec7f22d4bdce84411d6b12b592e0 -Author: Xan Lopez -Date: Thu Sep 24 16:12:12 2009 +0300 - - ephy-web-view.c: take into account FAILED status for is_loading - - When a page fails to load (for example, when the user cancels it) it - won't go through the FINISHED state, which is the only one we are - taking into account to decide if a page is still loading. Use the new - WEBKIT_LOAD_FAILED status (WebKitGTK+ r48719) too. - - embed/ephy-web-view.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit 3a81e065d1f9f771778cb05c96ffa7ac7afe8a1a -Author: Matej Urbančič -Date: Thu Sep 24 12:34:20 2009 +0200 - - Updated Slovenian translation - - po/sl.po | 2072 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1020 insertions(+), 1052 deletions(-) - -commit 53dc6836904c100dc75c368b9e494eaebcc63416 -Author: Julian de Navascues -Date: Mon Sep 21 11:46:12 2009 +0200 - - Prevents PDM from getting keyring passwords in a private session - - SoupSession will remember HTTP passwords during the private session - but as we dont allow to delete them it doesnt make sense to show - them in the dialog. - - Bug #591395 - - Signed-off-by: Xan Lopez - - src/pdm-dialog.c | 17 +++++++++++++++-- - 1 file changed, 15 insertions(+), 2 deletions(-) - -commit 0eadd147c38a58cd235571d228e393216416cd3e -Author: Javier Jardón -Date: Tue Sep 22 12:27:30 2009 +0300 - - GTK+ 2.17.11 is now the required version - I've used all the GTK+ 2.17.11 api available, still missing: - - GTK_WIDGET_REALIZED (GTK_WIDGET ()) - GTK_WIDGET_MAPPED (GTK_WIDGET ()) - GTK_ENTRY->im_context - GTK_STATUSBAR->frame - GTK_STATUSBAR->label - GTK_MESSAGE_DIALOG->label - - https://bugzilla.gnome.org/show_bug.cgi?id=595791 - - Signed-off-by: Xan Lopez - - configure.ac | 2 +- - embed/ephy-embed.c | 4 +- - embed/ephy-web-view.c | 9 ++-- - lib/egg/egg-editable-toolbar.c | 68 ++++++++++++++++----------- - lib/egg/egg-toolbar-editor.c | 9 ++-- - lib/ephy-dialog.c | 6 +-- - lib/ephy-dnd.c | 4 +- - lib/ephy-gui.c | 70 ++++++++++++++++------------ - lib/ephy-state.c | 8 ++-- - lib/widgets/ephy-location-entry.c | 22 +++++---- - lib/widgets/ephy-node-view.c | 17 ++++--- - lib/widgets/ephy-spinner.c | 26 ++++++----- - src/bookmarks/ephy-bookmark-action.c | 5 +- - src/bookmarks/ephy-bookmark-factory-action.c | 4 +- - src/bookmarks/ephy-bookmark-properties.c | 14 ++++-- - src/bookmarks/ephy-bookmarks-editor.c | 15 ++++-- - src/bookmarks/ephy-topic-action.c | 4 +- - src/bookmarks/ephy-topic-factory-action.c | 4 +- - src/ephy-encoding-dialog.c | 8 ++-- - src/ephy-find-toolbar.c | 17 +++---- - src/ephy-fullscreen-popup.c | 9 ++-- - src/ephy-go-action.c | 5 +- - src/ephy-home-action.c | 27 +++++++---- - src/ephy-navigation-action.c | 2 +- - src/ephy-notebook.c | 27 +++++++---- - src/ephy-nss-glue.c | 3 +- - src/ephy-statusbar.c | 2 +- - src/ephy-tabs-menu.c | 2 +- - src/ephy-toolbar-editor.c | 4 +- - src/ephy-toolbar.c | 2 +- - src/ephy-window.c | 17 +++++-- - src/pdm-dialog.c | 10 ++-- - src/prefs-dialog.c | 3 +- - 33 files changed, 252 insertions(+), 177 deletions(-) - -commit f279bbf2de2896f39ef08e52961e8638b9f1a29b -Author: Frédéric Péters -Date: Sat Sep 19 09:56:11 2009 +0200 - - Add back support for the "direction up" navigation (GNOME bug 595653) - - embed/ephy-web-view.c | 70 +++++++++++++++++++++++++++++++++++++++++--- - src/ephy-navigation-action.c | 2 ++ - 2 files changed, 68 insertions(+), 4 deletions(-) - -commit 91b7e21ec5570e1638d4116767dfe48aa0349e30 -Author: Petr Kovar -Date: Mon Sep 21 23:45:20 2009 +0200 - - Updated Czech help translation by Lucas Lommer - - help/cs/cs.po | 800 +++++++++++++++++++++++++++++----------------------------- - 1 file changed, 405 insertions(+), 395 deletions(-) - -commit 36fbc8cc37b457cb1db128778ef35b899fdc059c -Author: Xan Lopez -Date: Mon Sep 21 21:28:13 2009 +0300 - - configure.ac: API version is still 2.28 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a230c321b22b40c7b848030fe1a78c756576e3cc -Author: Xan Lopez -Date: Mon Sep 21 15:40:40 2009 +0300 - - configure.ac: bump required WebKitGTK version - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 17e86fe4c15e4b199689bb9001597fd28badd70a -Author: Petr Kovar -Date: Sun Sep 20 23:49:29 2009 +0200 - - Updated Czech translation by Lucas Lommer - - po/cs.po | 997 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 463 insertions(+), 534 deletions(-) - -commit 1f41cc53955a0049635fc3f25af59274f899192e -Author: Gustavo Noronha Silva -Date: Sun Sep 20 15:23:27 2009 -0300 - - Cleanup string freeze break for save as - - Use '%s Files', instead of '%s/%s Files' as the translatable string to - avoid confusion, and reuse existing mozilla-era translations. Fix the - languages that had already translated the new strings using old po - files as reference. Also add a translator comment to the source file, - for future reference. - - embed/ephy-web-view.c | 9 ++++++++- - po/ar.po | 8 +++++--- - po/ast.po | 8 +++++--- - po/bg.po | 4 ++-- - po/bn_IN.po | 4 ++-- - po/ca.po | 8 +++++--- - po/ca@valencia.po | 8 +++++--- - po/cs.po | 5 +++++ - po/da.po | 8 +++++--- - po/el.po | 7 +++++-- - po/en_GB.po | 4 ++-- - po/es.po | 5 +++++ - po/et.po | 4 ++-- - po/eu.po | 4 ++-- - po/fi.po | 4 ++-- - po/fr.po | 5 +++++ - po/gl.po | 4 ++-- - po/gu.po | 4 ++-- - po/he.po | 4 ++-- - po/hi.po | 4 ++-- - po/hu.po | 4 ++-- - po/it.po | 4 ++-- - po/ja.po | 4 ++++ - po/kn.po | 4 ++++ - po/ko.po | 8 +++++--- - po/lt.po | 4 ++-- - po/ml.po | 4 ++-- - po/mr.po | 4 ++-- - po/nb.po | 4 ++-- - po/nl.po | 7 +++++-- - po/nn.po | 7 ++++--- - po/or.po | 4 ++-- - po/pl.po | 4 ++-- - po/ps.po | 4 ++++ - po/pt.po | 4 ++-- - po/pt_BR.po | 7 ++++--- - po/ru.po | 7 ++++--- - po/sl.po | 7 +++++++ - po/sq.po | 4 ++++ - po/sr.po | 7 ++++--- - po/sr@latin.po | 7 ++++--- - po/sv.po | 4 ++-- - po/ta.po | 4 ++-- - po/te.po | 4 ++-- - po/th.po | 7 ++++--- - po/tr.po | 7 ++++--- - po/uk.po | 4 ++-- - po/vi.po | 4 ++++ - po/zh_HK.po | 4 ++-- - po/zh_TW.po | 4 ++-- - 50 files changed, 168 insertions(+), 94 deletions(-) - -commit 5c594b0747b1f274b64ecc0fbb866793f6e5ff4a -Author: Xan Lopez -Date: Sun Sep 20 17:55:16 2009 +0300 - - ephy-notebook.c: better yet, get rid of the test completely - - Since gtk_notebook_get_nth_page, used just after that, returns NULL - for out-of-bounds pages. - - src/ephy-notebook.c | 9 ++------- - 1 file changed, 2 insertions(+), 7 deletions(-) - -commit 1fb6a0f831c979a0a76107fc6f0930e0c071ea24 -Author: Xan Lopez -Date: Sun Sep 20 16:06:26 2009 +0300 - - ephy-notebook.c: use public GtkNotebook API instead of accessing members of its struct - - src/ephy-notebook.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 161979c3c805ee4edab5795f2b8c57d66357b99b -Author: Francesco Marletta -Date: Sun Sep 20 10:49:13 2009 +0200 - - Updated Italian translation - - po/it.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 37e97a80f011a35029f52df929c197a6c3245b64 -Author: Francesco Marletta -Date: Sun Sep 20 09:37:13 2009 +0200 - - Updated Italian translation - - po/it.po | 1042 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 562 insertions(+), 480 deletions(-) - -commit 9d7d6c7aef28a233def6902e71f050064dff3f56 -Author: Yavor Doganov -Date: Sun Sep 20 09:12:52 2009 +0300 - - Updated Bulgarian translation - - po/bg.po | 392 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 207 insertions(+), 185 deletions(-) - -commit 22d4e0268235ac39cba52671d63a473ea733b872 -Author: Xan Lopez -Date: Sun Sep 20 00:16:39 2009 +0300 - - src/Makefile.am: add missing include - - src/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit a3daa2e644fab1569a929035a26b13d01d7b7c4f -Author: Xan Lopez -Date: Sun Sep 20 00:16:27 2009 +0300 - - ephy-embed-container.h: fix indentation - - embed/ephy-embed-container.h | 53 +++++++++++++++++++------------------------- - 1 file changed, 23 insertions(+), 30 deletions(-) - -commit 98361f61fcdfc52d2ae2682234778f3e1b384916 -Author: Xan Lopez -Date: Sun Sep 20 00:06:01 2009 +0300 - - Bring back epiphany context menu - - There's a few items (like email link) and actions (like bookmark link) - missing or not working because of missing information in the - WebKitHitTestResult object, but most of the stuff is working. - - For some reason the g-ir-scanner is not picking up the correct type - name for WebKitHitTestResult (it uses WebKitHitTestResult instead of - WebKit.HitTestResult), so the introspection support is broken unless - that error is fixed manually. Looking into that ... - - Bug #562617 - - embed/ephy-embed-event.c | 165 +++++++++++++++++++++++++++++++++-------------- - embed/ephy-embed-event.h | 88 ++++++++++--------------- - embed/ephy-web-view.c | 19 +----- - embed/ephy-web-view.h | 2 - - src/Makefile.am | 2 +- - src/ephy-window.c | 103 +++++++++++++++-------------- - src/popup-commands.c | 115 +++++++++++++++++++-------------- - 7 files changed, 269 insertions(+), 225 deletions(-) - -commit 0fa8e2fb6780e75923da248bb5d94e30d8556dd7 -Author: Xan Lopez -Date: Sat Sep 19 21:25:22 2009 +0300 - - ephy-window.c: do not leak hit test result - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 33d34d15b4db507b233946bfdb9829ccc4287262 -Author: Duarte Loreto -Date: Sat Sep 19 17:54:23 2009 +0100 - - Updated Portuguese translation - - po/pt.po | 42 ++++++++++++++++++++++-------------------- - 1 file changed, 22 insertions(+), 20 deletions(-) - -commit b574a37c33cc088aff9334313fca159dea4d84f4 -Author: Chao-Hsiung Liao -Date: Sat Sep 19 21:15:25 2009 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 889 ++++++++++++++++++++---------------------------------- - po/zh_TW.po | 978 +++++++++++++++++++++--------------------------------------- - 2 files changed, 673 insertions(+), 1194 deletions(-) - -commit 2e361a59a12eccaea601b37d8e54bcabb8255c9c -Author: Daniel Nylander -Date: Sat Sep 19 10:30:13 2009 +0200 - - Updated Swedish translation - - po/sv.po | 39 ++++++++++++++++++++++----------------- - 1 file changed, 22 insertions(+), 17 deletions(-) - -commit b35f66f807068e65f22400027bb8f585e4ed7a34 -Author: Gabor Kelemen -Date: Sat Sep 19 01:26:19 2009 +0200 - - Updated Hungarian translation - - po/hu.po | 37 +++++++++++++++++++++---------------- - 1 file changed, 21 insertions(+), 16 deletions(-) - -commit 54c624c15073ec0ead585ec09b342f75e7690b0a -Author: Xan Lopez -Date: Fri Sep 18 21:45:02 2009 +0300 - - configure.ac: bump version to 2.29.0 - - configure.ac | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit cbf6a41f26febe635939eb84ea13abf1bd0e333f -Author: Xan Lopez -Date: Fri Sep 18 21:41:47 2009 +0300 - - ephy-window.c: reimplement middle-click clipboard to open link - - Uses the new WebKitHitTestResult APIs landed in WebKitGTK+ r48505. - - src/ephy-window.c | 84 +++++++++++++++++-------------------------------------- - 1 file changed, 26 insertions(+), 58 deletions(-) - -commit 99d6449daf5e4e4fa70862c9fa36b8c51935ac0b -Author: Rajesh Ranjan -Date: Fri Sep 18 17:27:34 2009 +0530 - - maithili update - - po/LINGUAS | 1 + - po/mai.po | 3432 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 3433 insertions(+) - -commit acd99a65efcffd56fbd10ae42883f32d9f0fc051 -Author: Manoj Kumar Giri -Date: Fri Sep 18 15:09:54 2009 +0530 - - Upadated Oriya Translation - - po/or.po | 16 ++++++++++++---- - 1 file changed, 12 insertions(+), 4 deletions(-) - -commit edc8a5d93610a7c3ac78a72af80ecbf7699b194a -Author: Manoj Kumar Giri -Date: Thu Sep 17 23:13:45 2009 +0530 - - Upadated Oriya Translation - - po/or.po | 600 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 295 insertions(+), 305 deletions(-) - -commit 835b74b2a7a87986f95eec545947a2f209a23eea -Author: krishnababu k -Date: Thu Sep 17 21:08:57 2009 +0530 - - Updated Telugu Translation - - po/te.po | 428 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 224 insertions(+), 204 deletions(-) - -commit a84933ea60e8d8b446a60e370dd6159776a77c82 -Author: Philip Withnall -Date: Thu Sep 17 13:10:50 2009 +0100 - - Updated British English translation - - po/en_GB.po | 40 +++++++++++++++++++++------------------- - 1 file changed, 21 insertions(+), 19 deletions(-) - -commit dc9a318c422b690dc628137c7e3a022b3129086f -Author: Denis ARNAUD -Date: Thu Sep 17 12:29:28 2009 +0200 - - Updated breton translation - - po/br.po | 3319 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 3319 insertions(+) - -commit 30994ae2d9b1f00f408f111d0bf2fdb5bedeacdd -Author: Denis ARNAUD -Date: Thu Sep 17 12:28:21 2009 +0200 - - added br in LINGUAS file - - po/LINGUAS | 1 + - 1 file changed, 1 insertion(+) - -commit 36da24b193848328a4fcceb004d2aa598d76f483 -Author: ifelix -Date: Thu Sep 17 15:55:13 2009 +0530 - - Updated Tamil Translations - - po/ta.po | 481 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 247 insertions(+), 234 deletions(-) - -commit 2eb0d57861678c393fb5615d56c02d7fb3897067 -Author: Inaki Larranaga Murgoitio -Date: Thu Sep 17 11:10:00 2009 +0200 - - Updated Basque language - - po/eu.po | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 1 file changed, 100 insertions(+), 3 deletions(-) - -commit 5833021b841baa292f8074b17a57e114268cfb3a -Author: Rajesh Ranjan -Date: Thu Sep 17 02:21:23 2009 +0530 - - hindi update by Rajesh Ranjan - - po/hi.po | 2929 +++++++++++++++++++++----------------------------------------- - 1 file changed, 992 insertions(+), 1937 deletions(-) - -commit a1d2b8fd4b9ac63f7f31773549f25d0e812307d0 -Author: Žygimantas Beručka -Date: Wed Sep 16 19:54:31 2009 +0300 - - Updated Lithuanian translation - - po/lt.po | 2282 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1166 insertions(+), 1116 deletions(-) - -commit d7dff9684f7d1a5914ecc775b422004298163460 -Author: Maxim V. Dziumanenko -Date: Wed Sep 16 17:38:10 2009 +0300 - - Added Ukrainian translation - - po/uk.po | 662 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 337 insertions(+), 325 deletions(-) - -commit 20383f5f9886c03706097d9511a6962b04a9fecf -Author: Fran Diéguez -Date: Wed Sep 16 15:03:22 2009 +0200 - - Updated Galician Translation - - po/gl.po | 448 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 237 insertions(+), 211 deletions(-) - -commit 6d0aba12bb46dc8a31f03bc45fa7ac44c23a822e -Author: Inaki Larranaga Murgoitio -Date: Wed Sep 16 14:51:42 2009 +0200 - - Updated Basque language - - po/eu.po | 136 +++++++++++---------------------------------------------------- - 1 file changed, 22 insertions(+), 114 deletions(-) - -commit 43fdc25b147f622af4de8e77f0f13a3b847e59b1 -Author: Kjartan Maraas -Date: Wed Sep 16 13:14:35 2009 +0200 - - Update Norwegian bokmål translation. - - po/nb.po | 41 +++++++++++++++++++++++------------------ - 1 file changed, 23 insertions(+), 18 deletions(-) - -commit d6d8b30573fb4c075b7ddca34facd35a724988aa -Author: Runa Bhattacharjee -Date: Wed Sep 16 11:16:41 2009 +0530 - - Updated Bengali India Translations - - po/bn_IN.po | 446 ++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 235 insertions(+), 211 deletions(-) - -commit 72318e96571e62117b74ed582c60eea031adef19 -Author: Yaron Shahrabani -Date: Tue Sep 15 23:10:58 2009 +0300 - - Updated Hebrew translation - - po/he.po | 1263 ++++++++++++++++++-------------------------------------------- - 1 file changed, 362 insertions(+), 901 deletions(-) - -commit e5f6604fab6ab0719c1a74ef29e180e3e95c428c -Author: Ani -Date: Tue Sep 15 23:31:52 2009 +0530 - - Updated Malayalam Translations - - po/ml.po | 44 ++++++++++++++++++++++++-------------------- - 1 file changed, 24 insertions(+), 20 deletions(-) - -commit fc1c4478b41b8bd76116a0cea5b33fe5333c7104 -Author: Sandeep Shedmake -Date: Tue Sep 15 19:24:24 2009 +0530 - - Updated Marathi Translations - - po/mr.po | 52 +++++++++++++++++++++++++++++----------------------- - 1 file changed, 29 insertions(+), 23 deletions(-) - -commit 131f51eedf10fda814099a82e81bad11a87ee5e2 -Author: Ivar Smolin -Date: Tue Sep 15 16:35:07 2009 +0300 - - Updating Estonian translation - - po/et.po | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -commit 670b098c2c720a6d32edb70230cebc888012dc83 -Author: Tomasz Dominikowski -Date: Tue Sep 15 15:23:18 2009 +0200 - - Updated Polish translation - - po/pl.po | 590 ++++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 377 insertions(+), 213 deletions(-) - -commit 268a80b2741d1010d915df1c21f421dba8b5e091 -Author: Ilkka Tuohela -Date: Tue Sep 15 16:15:47 2009 +0300 - - Updated Finnish translation - - po/fi.po | 195 +++++++++++++++++++++++++++------------------------------------ - 1 file changed, 83 insertions(+), 112 deletions(-) - -commit 5ca280f60795ddce4326fda76fbe0dfff816c42c -Author: Christian Kirbach -Date: Tue Sep 15 13:12:46 2009 +0200 - - Updated German translation - - po/de.po | 37 +++++++++++++++++++++---------------- - 1 file changed, 21 insertions(+), 16 deletions(-) - -commit ba6859fb84c0151fac2a2c8804707454408d2433 -Author: Gabor Kelemen -Date: Tue Sep 15 09:19:07 2009 +0200 - - Updated Hungarian translation - - po/hu.po | 417 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 215 insertions(+), 202 deletions(-) - -commit 43f90b645be4703e982447b27a6e6aa32cfc54a8 -Author: Sweta Kothari -Date: Tue Sep 15 12:46:02 2009 +0530 - - Updated Gujarati Translations - - po/gu.po | 46 +++++++++++++++++++++++++--------------------- - 1 file changed, 25 insertions(+), 21 deletions(-) - -commit def58964b0e7fa099b524a6e8bc34bed893118f7 -Author: Gustavo Noronha Silva -Date: Thu Aug 20 14:59:07 2009 -0300 - - Implement saving the page using the DataSource API - - Bug #562611 - - embed/ephy-web-view.c | 239 +++++++++++++++++++++++++++++++++++++++++++++++++- - embed/ephy-web-view.h | 2 + - src/window-commands.c | 49 ++++++++--- - 3 files changed, 275 insertions(+), 15 deletions(-) - -commit bd03e748e07dd300015fdfee111420162f346e5f -Author: Bastien Nocera -Date: Mon Sep 14 19:30:03 2009 +0100 - - Setup nspluginwrapper if available - - By calling mozilla-plugin-config on startup. - - embed/ephy-embed-single.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit a8b9dd56db130c7b138963fca2fcc2092fc33ad0 -Author: Christian Kirbach -Date: Mon Sep 14 16:49:29 2009 +0200 - - Updated German translation - - po/de.po | 432 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 224 insertions(+), 208 deletions(-) - -commit 409e081d967a7483b02785ba950675cdffa537e2 -Author: Ivar Smolin -Date: Mon Sep 14 16:28:23 2009 +0300 - - Updating Estonian translation - - po/et.po | 23 +++++++++++++++++------ - 1 file changed, 17 insertions(+), 6 deletions(-) - -commit 2abec1d45d4e3b434afa447239104fd6bc0f8cee -Author: Carlos Jose Pereira -Date: Mon Sep 14 09:27:43 2009 -0300 - - Updated Brazilian Portuguese translation - - po/pt_BR.po | 422 +++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 219 insertions(+), 203 deletions(-) - -commit b03745c269c120dff77c16f035638b9530e4ad79 -Author: Inaki Larranaga Murgoitio -Date: Mon Sep 14 10:16:05 2009 +0200 - - Updated Basque language - - po/eu.po | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- - 1 file changed, 103 insertions(+), 5 deletions(-) - -commit 45c5b78deb1dcdd31324153edd7782a862bee337 -Author: Inaki Larranaga Murgoitio -Date: Mon Sep 14 10:08:21 2009 +0200 - - Updated Basque language - - po/eu.po | 512 ++++++++++++++++++++++++++------------------------------------- - 1 file changed, 214 insertions(+), 298 deletions(-) - -commit 5e8dbdfc44572177fec1801e0e4c5380df5b0e6e -Author: Xan Lopez -Date: Mon Sep 14 10:43:39 2009 +0300 - - ephy-profile-migration.c: repeat password migration when needed - - The previous version had some bugs in it, so run it again for users - that had already migrated their profile. - - src/ephy-profile-migration.c | 16 ++++++++++++++-- - 1 file changed, 14 insertions(+), 2 deletions(-) - -commit b6748240a7313453c492bc18c4fc8f3397f3e0ad -Author: Sandeep Shedmake -Date: Mon Sep 14 10:50:23 2009 +0530 - - Updated Marathi Translations - - po/mr.po | 452 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 229 insertions(+), 223 deletions(-) - -commit 774f026753f6480c260039fa4607e792c158f0c7 -Author: Kjartan Maraas -Date: Mon Sep 14 00:28:32 2009 +0200 - - Update Norwegian bokmål translation. - - po/nb.po | 431 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 224 insertions(+), 207 deletions(-) - -commit cf555d8b85215aeb96d59ce0b92c05bd08e60856 -Author: Xan Lopez -Date: Sun Sep 13 11:15:00 2009 +0300 - - Make the g-ir-scanner rule depend only on the header files - - If we depend on the binary epiphany file we'll rebuild things much - more than needed. - - src/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f81b56d318a334d203e1c491ae577b4659751ef2 -Author: Ask H. Larsen -Date: Sun Sep 13 03:05:41 2009 +0200 - - Updated Danish translation - - po/da.po | 438 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 228 insertions(+), 210 deletions(-) - -commit 5a6eaf015531bf53497e1efdfaa78de856add7c2 -Author: Philip Withnall -Date: Sat Sep 12 22:53:55 2009 +0100 - - Updated British English translation - - po/en_GB.po | 4051 ++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1900 insertions(+), 2151 deletions(-) - -commit 94ec9394838f2b3e568dfc49542aa018211ecd2d -Author: Tomasz Dominikowski -Date: Sat Sep 12 20:37:24 2009 +0200 - - Updated Polish translation - - po/pl.po | 424 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 216 insertions(+), 208 deletions(-) - -commit 6825b76aa699151cbacb3c24c880534e40142615 -Author: Kostas Papadimas -Date: Sat Sep 12 19:31:17 2009 +0300 - - Updated Greek help translation. - - help/el/el.po | 2520 ++++++++++++++++++++++++++++++++++++++++++++------------- - 1 file changed, 1965 insertions(+), 555 deletions(-) - -commit 5eef461c7dfc04a30862b9a0ebd3168542eba0c9 -Author: Tommi Vainikainen -Date: Sat Sep 12 19:19:44 2009 +0300 - - Updated Finnish translation - - help/fi/fi.po | 8 +- - po/fi.po | 437 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 232 insertions(+), 213 deletions(-) - -commit dfe1d447ae52456c8976e777ca956945dc9853b7 -Author: Duarte Loreto -Date: Sat Sep 12 14:29:47 2009 +0100 - - Updated Portuguese translation - - po/pt.po | 439 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 229 insertions(+), 210 deletions(-) - -commit 0024dfeb0177c84bc2356910cd4e39e8ea35f426 -Author: Khaled Hosny -Date: Sat Sep 12 09:34:24 2009 +0200 - - Updated Arabic translation - - po/ar.po | 415 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 214 insertions(+), 201 deletions(-) - -commit 9ee18852e50655b075c9726538fd37d497dc9393 -Author: Jorge González -Date: Sat Sep 12 02:31:15 2009 +0200 - - Updated Spanish translation - - po/es.po | 424 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 219 insertions(+), 205 deletions(-) - -commit 468e347f00724d4c88356d1bfabcd84a4f34e434 -Author: Reinout van Schouwen -Date: Fri Sep 11 23:05:21 2009 +0200 - - * 2009-09-11 Reinout van Schouwen - - - po/nl.po: Updated Dutch translation - - po/nl.po | 694 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 355 insertions(+), 339 deletions(-) - -commit 9a1fee94d45c80148b4578895306024bf7687525 -Author: Sweta Kothari -Date: Fri Sep 11 18:15:20 2009 +0530 - - Updated Gujarati Translations - - po/gu.po | 424 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 219 insertions(+), 205 deletions(-) - -commit 10dcbb8857903f4aecae2afeae97c7bc4f82a030 -Author: Shankar Prasad -Date: Fri Sep 11 16:18:31 2009 +0530 - - Updated Kannada(kn) translation - - po/kn.po | 117 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 59 insertions(+), 58 deletions(-) - -commit 7e57c3dbc0d26d10d7c1de4308c4e16a243529b0 -Author: Miloš Popović -Date: Fri Sep 11 12:21:44 2009 +0000 - - Updated Serbian translation - - po/sr.po | 471 ++++++++++++++++++++++++++++----------------------------- - po/sr@latin.po | 471 ++++++++++++++++++++++++++++----------------------------- - 2 files changed, 466 insertions(+), 476 deletions(-) - -commit aabe1c218dd14ef717d174ffaddd6dae029150ea -Author: Ani -Date: Fri Sep 11 15:26:14 2009 +0530 - - Updated Malayalam Translations - - po/ml.po | 463 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 226 insertions(+), 237 deletions(-) - -commit 2ed965d89e98d4a1b5856051ff0ac22126ed61ea -Author: Ani -Date: Fri Sep 11 15:09:12 2009 +0530 - - Updated Malayalam Translations - - po/ml.po | 1968 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 944 insertions(+), 1024 deletions(-) - -commit 22cd9d74447da669fbb24da35e2de94e98de605c -Author: Claude Paroz -Date: Fri Sep 11 11:34:59 2009 +0200 - - Updated French translation - - po/fr.po | 412 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 213 insertions(+), 199 deletions(-) - -commit 39addec756843914632873b611adc1eddac31178 -Author: Daniel Nylander -Date: Fri Sep 11 11:27:39 2009 +0200 - - Updated Swedish translation - - po/sv.po | 428 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 218 insertions(+), 210 deletions(-) - -commit 755941c3d73ce67437bd24239abb71436467c9c4 -Author: Xan Lopez -Date: Fri Sep 11 12:24:06 2009 +0300 - - POTFILES.in: add ephy-nss-glue.c - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit ec94410d508aaeb3498c7ae887d829ff8a77e4d8 -Author: Xan Lopez -Date: Fri Sep 11 12:14:39 2009 +0300 - - ephy-nss-glue.c: ask for the NSS master password if needed - - It was possible to set a master password for NSS through the - certificate manager extension, so we have to support this. - - Bug #594694 - - src/ephy-nss-glue.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 46 insertions(+) - -commit ba217a89984a7a8af029e88ec774f4e71309d574 -Author: Xan Lopez -Date: Thu Sep 10 23:01:30 2009 +0300 - - ephy-nss-glue.c: ignore padLength error in the NSS glue code - - It seems to be harmless, and if we ignore it we can still decrypt some passwords. - - src/ephy-nss-glue.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 8d08fa859cd2629100da93c089a116e0a76dca3f -Author: Xan Lopez -Date: Thu Sep 10 20:25:46 2009 +0300 - - Remove a couple of references to EphyCommandManager - - doc/reference/tmpl/ephy-command-manager.sgml | 115 --------------------------- - src/Makefile.am | 1 - - 2 files changed, 116 deletions(-) - -commit 17c9c0c80a059b2089318fc20ed1068bfba8761a -Author: Xan Lopez -Date: Thu Sep 10 19:56:15 2009 +0300 - - ephy-web-view.c: also allow to expire addresses after a new PROVISIONAL status - - Otherwise the typed address would get stuck if you tried to load a - page while another was already loading, ie: - - - Load URL. - - While it's loading, Ctrl+L, type something else, Enter. - - The new page will load, but the typed address won't be replaced with - the full address as usual. This is particularly bad when you type a - few letters and complete the URL in the dropdown. - - embed/ephy-web-view.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 665f28f7a4d8da80decf83bb801621532e3c1c93 -Author: Xan Lopez -Date: Thu Sep 10 18:51:17 2009 +0300 - - ephy-location-action.c: also disconnect the notebook signal on disconnect_proxy - - src/ephy-location-action.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit b93c0ee2b3db46db54b6ae45909fb8b5f54d9f4c -Author: Xan Lopez -Date: Thu Sep 10 18:05:54 2009 +0300 - - Get rid of EphyCommandManager - - It was just another useless abstraction at this point. - - doc/reference/epiphany-docs.sgml | 1 - - doc/reference/epiphany-sections.txt | 17 ------ - doc/reference/epiphany.types | 2 - - embed/Makefile.am | 2 - - embed/ephy-command-manager.c | 119 ------------------------------------ - embed/ephy-command-manager.h | 67 -------------------- - embed/ephy-embed.c | 52 +--------------- - src/ephy-window.c | 19 +++--- - src/epiphany.h.in | 1 - - src/window-commands.c | 22 +++---- - 10 files changed, 18 insertions(+), 284 deletions(-) - -commit b2dbd47c3f06203d4394c10599011734ad77ae32 -Author: Xan Lopez -Date: Thu Sep 10 16:34:47 2009 +0300 - - ephy-location-action.c: unblock address sync on switch-page too - - We need to unblock the address syncing for the location on switch-page - too, since it's not guaranteed that we'll receive a focus-out or - activate event before we are interested in resyncing the URL entry - again. For example, if the focus is on the entry and we switch tabs - with the keyboard shortcut the entry will go out of sync, keeping the - URL of the previous tab. - - Bug #594346 - - src/ephy-location-action.c | 52 ++++++++++++++++++++++++++++++++++++++++------ - 1 file changed, 46 insertions(+), 6 deletions(-) - -commit 8512d034350be7c2484a365c3b200fe9f83f521e -Author: krishnababu k -Date: Thu Sep 10 15:52:51 2009 +0530 - - Updated Telugu Translation - - po/te.po | 1240 ++++---------------------------------------------------------- - 1 file changed, 80 insertions(+), 1160 deletions(-) - -commit f433ee264428a8289aa6f6ea45e1efd317a39e87 -Author: Xan Lopez -Date: Thu Sep 10 12:54:27 2009 +0300 - - ephy-profile-migration.c: fix crash when importing some profiles - - Be more careful about not going over the end of the lines array. - - Bug #594717 - - src/ephy-profile-migration.c | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -commit 11f91ceca1f1185fbf523c24e7b5f8d63e041da4 -Author: Diego Escalante Urrelo -Date: Fri Sep 4 19:51:32 2009 -0500 - - Automatically append (n) to duplicated downloads - - Bug 585499 - [Webkit] Automatic downloading into ~/Downloads fails if file - already exists - - embed/ephy-embed.c | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++--- - 1 file changed, 81 insertions(+), 4 deletions(-) - -commit f2edc995464f216b7af09f99556343f31aef0efe -Author: Baris Cicek -Date: Wed Sep 9 23:48:56 2009 +0300 - - Updated Turkish translation. - - po/tr.po | 2151 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1082 insertions(+), 1069 deletions(-) - -commit 825f7f1e3d79b8cfa0dff2084730d75d9252c74a -Author: Kostas Papadimas -Date: Wed Sep 9 18:28:20 2009 +0300 - - Updated Greek translation. - - po/el.po | 1486 ++++++++++++++++++++++++-------------------------------------- - 1 file changed, 574 insertions(+), 912 deletions(-) - -commit e07adcc212054e444740a189e407614b788f6710 -Author: Sandeep Shedmake -Date: Wed Sep 9 15:00:16 2009 +0530 - - Updated Marathi Translations - - po/mr.po | 1345 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 722 insertions(+), 623 deletions(-) - -commit 6b91fd41a0e3c8a9c217e7bd2fd1232a39f977a9 -Author: Xan Lopez -Date: Wed Sep 9 10:51:14 2009 +0300 - - ephy-profile-migration: stript URIs from whitespace before validating - - libsoup is unhappy with trailing whitespace in some situations. - - src/ephy-profile-migration.c | 1 + - 1 file changed, 1 insertion(+) - -commit be2dcb8174d199d25d75ef382df81e663e7fe6c7 -Author: Xan Lopez -Date: Wed Sep 9 02:04:34 2009 +0300 - - ephy-dialog.c: do not use bleeding edge GTK+ API - - lib/ephy-dialog.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit e9d80d39ad48993df7140269ace8ce0cf4ac4585 -Author: Gustavo Noronha Silva -Date: Tue Sep 8 16:08:26 2009 -0300 - - Delay obtaining suggested filename for dialogs - - Most downloads will only have proper suggested filenames after the - request has been sent, and a reply was received, so delay getting the - suggested filename to when that has happened. - - Bug #577797 - - embed/ephy-embed.c | 46 +++++++++++++++++++++++++++++++++------------- - 1 file changed, 33 insertions(+), 13 deletions(-) - -commit afec9315ee9295ab6928ebde1c642e81f8a61290 -Author: Gustavo Noronha Silva -Date: Tue Sep 8 12:25:13 2009 -0300 - - Fixing style issues I introduced - - embed/ephy-embed.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit f5b9abb6365868fab0e4408a20907ee786789a5d -Author: Emilio Pozuelo Monfort -Date: Tue Sep 8 00:00:40 2009 +0200 - - Bug 594435: Bookmark properties topic improvements - - If a bookmark has "foo" and "bar" topics, show "foo, bar, " - instead of "fo, bar, o". - - While at it, remove the trailing comma, so we display "foo, bar" - rather than "foo, bar, ". - - http://bugzilla.gnome.org/show_bug.cgi?id=594435 - - Signed-off-by: Xan Lopez - - src/bookmarks/ephy-topics-entry.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 7b24d945ecda146659286e26f74caa285d43490a -Author: Sweta Kothari -Date: Tue Sep 8 11:26:09 2009 +0530 - - Updated Gujarati Translations - - po/gu.po | 55 ++++++++++++++++++++++++++++++------------------------- - 1 file changed, 30 insertions(+), 25 deletions(-) - -commit 3e272c652b16877ea94b47ed6621382462401aa3 -Author: Alexander Shopov -Date: Tue Sep 8 07:51:14 2009 +0300 - - Updated Bulgarian translation - - po/bg.po | 184 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 94 insertions(+), 90 deletions(-) - -commit 286f8914ff4ef0980bdc3caf8efeb3f94d72f2f9 -Author: Claude Paroz -Date: Mon Sep 7 22:29:49 2009 +0200 - - Updated French manual translation - - help/fr/fr.po | 786 +++++++++++++++++++++++++++++----------------------------- - 1 file changed, 393 insertions(+), 393 deletions(-) - -commit e4781a2474ac99bfe1ec1c4e80193dc0714764a3 -Author: Xan Lopez -Date: Mon Sep 7 23:14:13 2009 +0300 - - configure.ac: post release version bump - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 79013acdad1a4a5a5b249867ce117f03a55ce5a0 -Author: Xan Lopez -Date: Mon Sep 7 22:46:57 2009 +0300 - - configure.ac: require WebKitGTK+ 1.1.14 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8e7417314360b6533c802fba9db3cb2c7556695b -Author: Xan Lopez -Date: Mon Sep 7 22:14:21 2009 +0300 - - NEWS: more updates for release - - NEWS | 2 ++ - 1 file changed, 2 insertions(+) - -commit 3d4053a5f71175970712897a298a7ce95d3dfaef -Author: Gustavo Noronha Silva -Date: Tue Jun 30 16:29:51 2009 -0300 - - Re-adding basic ad blocking support - - Bug #562762 - - embed/ephy-embed.c | 25 +++++++++++++++++++++++++ - 1 file changed, 25 insertions(+) - -commit df54608c60a5e12b667620ba8ec87bac379259de -Author: Xan Lopez -Date: Mon Sep 7 18:14:10 2009 +0300 - - ephy-location-action: g_strdup is NULL safe - - src/ephy-location-action.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c1689576e6435878324322321e246f1676bf467c -Author: Xan Lopez -Date: Mon Sep 7 18:13:39 2009 +0300 - - ephy-embed-single: protect against SoupPasswordManager going away - - It might go away for 2.30, so protect against that. - - embed/ephy-embed-single.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 7d58850eb100ff84bb2fe3f48658e01f64bb088c -Author: Xan Lopez -Date: Mon Sep 7 15:28:28 2009 +0300 - - Simplify EXPIRE logic in ephy_web_view_set_typed_address - - The whole thing just had one functionality at this point as far as I - can see: prevent the typed address from being wiped out when a page - is loading. Simplify the code to do just that. - - embed/ephy-web-view.c | 29 ++++++++++++----------------- - embed/ephy-web-view.h | 10 +--------- - src/ephy-lockdown.c | 3 +-- - src/ephy-shell.c | 3 +-- - src/ephy-toolbar.c | 3 +-- - 5 files changed, 16 insertions(+), 32 deletions(-) - -commit 108eade49982245d1ffcf30159707554cdb63d69 -Author: Xan Lopez -Date: Mon Sep 7 14:02:19 2009 +0300 - - window-commands: unref the stream when we are done with it - - Per the documentation of 'g_file_replace_finish'. - - src/window-commands.c | 1 + - 1 file changed, 1 insertion(+) - -commit 5b2f1a52a131d3377d3e2d8246aab468502ba7cf -Author: Xan Lopez -Date: Mon Sep 7 14:01:36 2009 +0300 - - window-commands: also ref the embed while the stream is processed - - Since it also could go away meanwhile otherwise. - - src/window-commands.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit 38acd37212cf2636468cfbec151bf7a2b4d2d535 -Author: Xan Lopez -Date: Mon Sep 7 13:42:04 2009 +0300 - - window-commands: better strdup the URI webkit gives us - - Since it's owned by the view, which might be dead by the time we - fallback to viewing the source in another tab. - - src/window-commands.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit c04b665f8350df1152212fc3c053e5700afa2067 -Author: Inaki Larranaga Murgoitio -Date: Mon Sep 7 11:12:22 2009 +0200 - - Updated Basque language - - po/eu.po | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 1 file changed, 100 insertions(+), 3 deletions(-) - -commit 112683b3b5fcadce5ce14a8db6314a3c079ee58c -Author: Xan Lopez -Date: Mon Sep 7 09:02:37 2009 +0300 - - ephy-embed-prefs.c: do not auto-shrink images - - That's what ephy/gecko used to do (and I don't like it). - - embed/ephy-embed-prefs.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit f3366f19eb5d7fe77d843742a9db39d1fb53e36b -Author: Xan Lopez -Date: Mon Sep 7 01:53:22 2009 +0300 - - ephy-embed-prefs.c: use 'minimum-logical-font-size' for minimum font size preference - - Almost the same than 'minimum-font-size', but broadly speaking WebKit - won't enforce it when it considers it could break the layout of a - site. Should avoid breakage in some sites when we have a minimum font - setting too big. - - embed/ephy-embed-prefs.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0af2bca8aae4ae02c8c850f83c31de2fd3651c60 -Author: Xan Lopez -Date: Sun Sep 6 20:10:38 2009 +0300 - - window-commands.c: fallback to view source inside the browser when launching an external app fails - - Bug #594322 - - src/window-commands.c | 43 +++++++++++++++++++++++++++++++++++++------ - 1 file changed, 37 insertions(+), 6 deletions(-) - -commit 26e3b45deeddf5da08af895fba3baa5296cb299e -Author: Xan Lopez -Date: Sun Sep 6 19:35:23 2009 +0300 - - NEWS: update for release - - NEWS | 23 +++++++++++++++++++++++ - 1 file changed, 23 insertions(+) - -commit cbe3dbd4108187683252ed8404d65bd7e766e62d -Author: Tomasz Dominikowski -Date: Sun Sep 6 14:22:37 2009 +0200 - - Updated Polish translation - - po/pl.po | 617 ++++++++++++++++++++++++--------------------------------------- - 1 file changed, 234 insertions(+), 383 deletions(-) - -commit 469f9be0c2e48f5c22c8c153dedbba2ffc70c534 -Author: Diego Escalante Urrelo -Date: Sat Sep 5 15:12:48 2009 -0500 - - ephy-dialog: set_sensitivity ignores .ui defaults - - Bug 587470 - Smooth scrolling preference doesn't work - - lib/ephy-dialog.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 4a282e5399a6571f11f646bb766e5fdd57d40850 -Author: Diego Escalante Urrelo -Date: Fri Sep 4 20:30:51 2009 -0500 - - prefs-dialog: disable smoothscroll button - - It is useless right now since we need WebKit support for this. - Bug 587470 - Smooth scrolling preference doesn't work - - data/glade/prefs-dialog.glade | 1 + - 1 file changed, 1 insertion(+) - -commit 9d96147d37da83fac0e80575a90470d388c48339 -Author: Gabor Kelemen -Date: Sat Sep 5 23:13:59 2009 +0200 - - Hungarian translation updated - - po/hu.po | 1893 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 898 insertions(+), 995 deletions(-) - -commit c1199f2b921e60cadc26e350f4f6590f84197d3b -Author: Diego Escalante Urrelo -Date: Fri Sep 4 20:50:20 2009 -0500 - - ephy-window: make KP_0 an alias to 0 - - Bug 573624 - Reset font size with ctrl+0 from num block - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 9bea0a053eb81471dedbcc6f1e09d91464e09673 -Author: Diego Escalante Urrelo -Date: Wed Sep 2 17:16:36 2009 -0500 - - ephy-embed: remove some whitespace - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 94960918824560ff562d8fe6975cafeee7da9964 -Author: Claude Paroz -Date: Fri Sep 4 21:38:10 2009 +0200 - - Updated French translation - - po/fr.po | 740 ++++----------------------------------------------------------- - 1 file changed, 44 insertions(+), 696 deletions(-) - -commit 70dc740953c8213b73cd7c089c7afdc9a97f47a0 -Author: Gustavo Noronha Silva -Date: Fri Sep 4 14:57:19 2009 -0300 - - Making gcc shut up, by initializing loading_uri - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f26d41a2e03e802f16c0f2693dad67f22b8b1edb -Author: Gustavo Noronha Silva -Date: Fri Sep 4 14:12:56 2009 -0300 - - When the DataSource is empty, display empty file instead of crashing - - This is so that we don't crash when trying to view source for - about:blank, and friends. - - src/window-commands.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit d5db22b6842017772f10aa28d18458f36b025677 -Author: Xan Lopez -Date: Thu Sep 3 22:23:22 2009 +0300 - - ephy-session.c: fix opening an empty new epiphany window from command line - - By not asking ephy to do silly things. - - src/ephy-session.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit fdc216467277bb6235c9c7fc6f3ace9a3a37bc8a -Author: Xan Lopez -Date: Thu Sep 3 16:42:03 2009 +0300 - - ephy-web-view.c: remove some unused variables - - embed/ephy-web-view.c | 5 ----- - 1 file changed, 5 deletions(-) - -commit ad2b264036d50bc4225899e76e7a29c80b24ca96 -Author: Mario Blättermann -Date: Thu Sep 3 18:00:05 2009 +0200 - - Updated German translation - - po/de.po | 211 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 111 insertions(+), 100 deletions(-) - -commit 0094e74a6d97f3c553afb0916579480f1e11d3d4 -Author: Xan Lopez -Date: Wed Sep 2 22:19:22 2009 +0300 - - ephy-link-action.c: plug memory leak - - Noticed by Dan Winship. - - src/ephy-link-action.c | 11 ++++++++--- - 1 file changed, 8 insertions(+), 3 deletions(-) - -commit 2836316f28b460a2b03c4ffb6c4991b6509f5f48 -Author: Xan Lopez -Date: Wed Sep 2 20:00:23 2009 +0300 - - ephy-embed.c: use the initial request to fill the URL entry - - Avoids having a blank URL entry until the server responds to our - request. - - Bug #591294 - - embed/ephy-embed.c | 20 +++++++++++++------- - 1 file changed, 13 insertions(+), 7 deletions(-) - -commit f64f922aebd3b14de4dfb3652d40c3d7c64c1069 -Author: Inaki Larranaga Murgoitio -Date: Wed Sep 2 18:30:03 2009 +0200 - - Updated Basque language - - po/eu.po | 200 +++++++++++++++++---------------------------------------------- - 1 file changed, 53 insertions(+), 147 deletions(-) - -commit 3f7a2aefd91490c39b1253a8cb2e60c443fcf6e8 -Author: Fábio Nogueira -Date: Wed Sep 2 12:26:21 2009 -0400 - - Updated Brazilian Portuguese translation. - - po/pt_BR.po | 98 ++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 51 insertions(+), 47 deletions(-) - -commit 9b6c5d448cfbfbcde4370c7fb9827959ed00e78f -Author: Khaled Hosny -Date: Wed Sep 2 16:39:23 2009 +0200 - - Updated Arabic translation - - po/ar.po | 86 +++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 45 insertions(+), 41 deletions(-) - -commit c338400a197ea69d949479f32ba7b5c695d5bb57 -Author: Gustavo Noronha Silva -Date: Wed Sep 2 11:37:51 2009 -0300 - - Removing unnecessary include - - src/window-commands.c | 1 - - 1 file changed, 1 deletion(-) - -commit 307cf11d1dd0a7d4d7a21f2d981e55640b66513a -Author: Gustavo Noronha Silva -Date: Wed Aug 19 18:14:36 2009 -0300 - - Use new DataSource API to provide view page source - - This change requires WebKitGTK+ at revision 47965, because it uses the - new DataSource API. - - Bug #503968 - - src/window-commands.c | 129 ++++++++++++++++++++++++++++++++++++++++---------- - 1 file changed, 105 insertions(+), 24 deletions(-) - -commit 3e3467417376d7e756905da9faf8335d89decd62 -Author: Julian de Navascues -Date: Tue Sep 1 10:34:32 2009 +0200 - - Fixs the warning if using NULL url - - If ephy_shell_new_tab receives a NULL url it passes it to - ephy_shell_new_tab_full instead of always building a request with the url - - Also, in ephy_shell_new_tab_full checks that if OPEN_PAGE flag is enabled, - request must be non NULL. - - Bug #593701 - - Signed-off-by: Xan Lopez - - src/ephy-shell.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit 71f95a25b2a9e03e6ce6372788c287ff26d20956 -Author: Kjartan Maraas -Date: Tue Sep 1 12:09:29 2009 +0200 - - Update Norwegian bokmål translation. - - po/nb.po | 63 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 33 insertions(+), 30 deletions(-) - -commit f632ca6dfd0fbf02873604c5d891448219f1a7af -Author: Ivar Smolin -Date: Tue Sep 1 09:29:47 2009 +0300 - - Updating Estonian translation - - po/et.po | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -commit e9ee60633a4a3b1d77c82aff454f01feb5895453 -Author: Daniel Nylander -Date: Tue Sep 1 00:12:03 2009 +0200 - - Updated Swedish translation - - po/sv.po | 561 ++++++++++++++++++++++----------------------------------------- - 1 file changed, 191 insertions(+), 370 deletions(-) - -commit c6ad98245d15368f43fe81fc73b60706b54207e3 -Author: Jorge González -Date: Mon Aug 31 20:40:52 2009 +0200 - - Updated Spanish translation - - po/es.po | 59 ++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 32 insertions(+), 27 deletions(-) - -commit 148432aa5846577a1f50e2472bbc5c298ef87f3e -Author: Javier Jardón -Date: Thu Aug 27 02:02:34 2009 +0200 - - Fix .desktop file (GNOME bug 588979) - - Signed-off-by: Xan Lopez - - data/epiphany.desktop.in.in | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit c09e9ac77371a68e376a7d85931f29b54a2848fb -Author: Runa Bhattacharjee -Date: Mon Aug 31 17:28:11 2009 +0530 - - Updated Bengali India Translations - - po/bn_IN.po | 898 ++++-------------------------------------------------------- - 1 file changed, 52 insertions(+), 846 deletions(-) - -commit 30cf1a90df0e502a2f8614d3a268d3ab58f70972 -Author: Seán de Búrca -Date: Sun Aug 30 21:36:55 2009 -0600 - - Updated Irish translation - - po/ga.po | 311 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 136 insertions(+), 175 deletions(-) - -commit 5bc367dddcf0d62c4f1072f0e97d249cadb23fcb -Author: Duarte Loreto -Date: Mon Aug 31 00:44:17 2009 +0100 - - Updated Portuguese translation - - po/pt.po | 2153 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1079 insertions(+), 1074 deletions(-) - -commit 9883cc9e07ae8ddb9dc8690c8d7868b9cbd0ab41 -Author: Changwoo Ryu -Date: Sun Aug 30 08:11:32 2009 +0900 - - Update Korean translation - - po/ko.po | 3597 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1666 insertions(+), 1931 deletions(-) - -commit 42b9e92fe8322324a97f2ee834bee85307339e88 -Author: Nicolas Repentin -Date: Sat Aug 29 20:48:56 2009 +0200 - - Updated French translation - - po/fr.po | 362 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 188 insertions(+), 174 deletions(-) - -commit 19bff26883eba1984ebf35adf8f9b6676e8a153d -Author: Chao-Hsiung Liao -Date: Sat Aug 29 21:14:02 2009 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 826 +++++++++++++++++++++++++++++++++++++++--------------------- - po/zh_TW.po | 329 ++++++++++++------------ - 2 files changed, 703 insertions(+), 452 deletions(-) - -commit 7eafc70b2158944f8d783a8e283547153979f015 -Author: Gustavo Noronha Silva -Date: Thu Aug 27 17:02:45 2009 -0300 - - Reimplement "search keys" structure for the WebKit backend - - This allows Epiphany itself, and extensions to treat keys that are not - handled by the WebView for in-page search purposes. - - embed/ephy-web-view.c | 25 ++++++++++++++++++++++--- - src/ephy-find-toolbar.c | 13 ++++--------- - 2 files changed, 26 insertions(+), 12 deletions(-) - -commit 4b06e10f0870528a180f614375e4de158ddb8751 -Author: Miloš Popović -Date: Fri Aug 28 10:29:04 2009 +0200 - - Updated Serbian translation, msgfmt fix - - po/LINGUAS | 2 +- - po/sr.po | 2228 ++++++++++++----------- - po/sr@Latn.po | 5530 ------------------------------------------------------- - po/sr@latin.po | 5546 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 6669 insertions(+), 6637 deletions(-) - -commit 159962dcaa92015c2512cca085847e3bb1bbff6d -Author: Shankar Prasad -Date: Fri Aug 28 12:51:13 2009 +0530 - - Updated Kannada(kn) translation - - po/kn.po | 2875 +++++++++++++++++++++----------------------------------------- - 1 file changed, 964 insertions(+), 1911 deletions(-) - -commit 341b0cdc26e50e1b515074badf8257f6eeb6a3a2 -Author: Xan Lopez -Date: Thu Aug 27 13:08:37 2009 +0300 - - ephy-embed.c: workaround possibly bogus COMMITTED load-status from WebKit - - When WebKitGTK+ fails to load a URI and is allowed to load the default - error page it will emit a COMMITTED load-status with the original URI - we failed to load. This was confusing epiphany, since in theory - COMMITTED should be only emitted with URIs known to be good. As a - workaround flag pages that fail to load in the callback for - 'load-error' and avoid doing anything with them when they arrive in - COMMITTED. - - Bug #593200 - - embed/ephy-embed.c | 43 +++++++++++++++++++++++++++++++++++++++++-- - 1 file changed, 41 insertions(+), 2 deletions(-) - -commit c6fc9cc5caa9e1b507f6e1a3770da24f6d6f968f -Author: Xan Lopez -Date: Thu Aug 27 13:06:52 2009 +0300 - - ephy-web-view.c: do not duplicate the logic to figure out if a page is secure - - Just return the status we set when loading. - - embed/ephy-web-view.c | 12 +++--------- - 1 file changed, 3 insertions(+), 9 deletions(-) - -commit cc64c681766a798bbcfa6e16e9723713ff0dc2c1 -Author: Benjamin Otte -Date: Mon Aug 24 11:20:00 2009 +0200 - - Make non-critical g_warning() into LOG() - - Failing to delete a favicon file should not cause the program to abort. - - embed/ephy-favicon-cache.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit b9e4152c48146af6b456e7a8e07991d4967eaac8 -Author: Sweta Kothari -Date: Thu Aug 27 13:51:55 2009 +0530 - - Updated Gujarati Translations - - po/gu.po | 5891 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 3073 insertions(+), 2818 deletions(-) - -commit 9d9b1f6dadb9664203abdfe168d58e5988060a86 -Author: Sweta Kothari -Date: Thu Aug 27 13:00:41 2009 +0530 - - Updated Gujarati Translations - - po/gu.po | 5891 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 2818 insertions(+), 3073 deletions(-) - -commit 80a8a8c4f6925812ed964a051e82b7e91a431697 -Author: Ivar Smolin -Date: Thu Aug 27 10:07:20 2009 +0300 - - Updating Estonian translation - - po/et.po | 797 +-------------------------------------------------------------- - 1 file changed, 8 insertions(+), 789 deletions(-) - -commit e62d8308cb9ab23298834f238c62670b2af94597 -Author: Sweta Kothari -Date: Thu Aug 27 12:28:03 2009 +0530 - - Updated Gujarati Translations - - po/gu.po | 862 ++++----------------------------------------------------------- - 1 file changed, 45 insertions(+), 817 deletions(-) - -commit 412700f05313c12ee87c01a623d14ec9b495a764 -Author: Gustavo Noronha Silva -Date: Wed Aug 26 16:42:55 2009 -0300 - - Reintegrate translations - - Restore translations for web search and session recovery, which were - lost because of the feature flux. The following languages are - affected: - - Arabic - Bulgarian - Bengali - Danish - German - Spanish - Estonian - Basque - Finish - Irish - Galician - Hebrew - Norwegian Bokmal - Oriya - Polish - Brazilian Portuguese - Swedish - Tamil - Telugu - - po/ar.po | 81 +++--- - po/bg.po | 59 ++-- - po/bn_IN.po | 100 ++++--- - po/da.po | 81 +++--- - po/de.po | 96 +++--- - po/es.po | 61 ++-- - po/et.po | 802 +++++++++++++++++++++++++++++++++++++++++++++++++- - po/eu.po | 84 +++--- - po/fi.po | 81 +++--- - po/ga.po | 65 +++-- - po/gl.po | 65 +++-- - po/gu.po | 84 +++--- - po/he.po | 953 +++++++++++++++++++++++++++++++++++++++++++++++------------- - po/nb.po | 70 +++-- - po/or.po | 318 ++++++++++---------- - po/pl.po | 550 ++++++++++++++++++++++------------- - po/pt_BR.po | 81 +++--- - po/sv.po | 570 ++++++++++++++++++++++++------------ - po/ta.po | 99 ++++--- - po/te.po | 247 ++++++++-------- - 20 files changed, 3185 insertions(+), 1362 deletions(-) - -commit 1d4cb08121bfadf263e8057d50e87833ef92c45b -Author: Gustavo Noronha Silva -Date: Wed Aug 26 14:30:04 2009 -0300 - - Reimplement search on the location bar - - Use a regular expression and SoupURI to figure out if we should search - the string that was typed, or load it as an URI. - - Bug #583795 - - embed/ephy-web-view.c | 44 +++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 43 insertions(+), 1 deletion(-) - -commit e92add696ac0e460fc4e520a1201cfb38a67d6fb -Author: Julian de Navascues -Date: Wed Aug 26 17:46:13 2009 +0300 - - ephy-session.c: save session more often to avoid data loss - - Session was being saved only when the web was fully loaded - (WEBKIT_LOAD_FINISHED status reached), so there was no info (URLs) to - restore webs that were loading when crashed. - - Bug #593149 - - Signed-off-by: Xan Lopez - - src/ephy-session.c | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -commit af11d9fcb260247311432bfec92b5eeead458846 -Author: Xan Lopez -Date: Wed Aug 26 16:32:04 2009 +0300 - - ephy-embed.c: enable undo/redo - - Depends on WebKitGTK+ r47776 (will be in 1.1.14) - - Bug #591072 - - embed/ephy-embed.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit a8f5e7457282e02a515b828f09b25e5fd4b61b4c -Author: Sweta Kothari -Date: Wed Aug 26 15:22:44 2009 +0530 - - Updated Gujarati Translations - - po/gu.po | 3611 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 1701 insertions(+), 1910 deletions(-) - -commit 1d81b38e48c8a90e68063d531e9c17507ecaebea -Author: Inaki Larranaga Murgoitio -Date: Wed Aug 26 10:57:30 2009 +0200 - - Updated Basque language - - po/eu.po | 241 ++++++++++++++++++++++++++++++++++++++++++++++----------------- - 1 file changed, 175 insertions(+), 66 deletions(-) - -commit eea4e5155ed3102ee21c57958a29603ed0f5166f -Author: Xan Lopez -Date: Wed Aug 26 11:44:28 2009 +0300 - - Import passwords from the ephy/gecko profile on first run. - - This feature requires NSS, so NSS is added as an optional dependency, - enabled by default. Can be disabled with --disable-nss, but then - passwords won't be imported. - - LICENSE.chromium | 27 +++++ - configure.ac | 21 ++++ - src/Makefile.am | 16 +++ - src/ephy-nss-glue.c | 259 ++++++++++++++++++++++++++++++++++++++++++ - src/ephy-nss-glue.h | 29 +++++ - src/ephy-profile-migration.c | 262 ++++++++++++++++++++++++++++++++++++++++++- - 6 files changed, 611 insertions(+), 3 deletions(-) - -commit ec783faa3c1737dfd80fd53a8113bbb3aa1c06a0 -Author: Jorge González -Date: Wed Aug 26 08:11:53 2009 +0200 - - Updated Spanish translation - - help/es/es.po | 21 +++++---------------- - 1 file changed, 5 insertions(+), 16 deletions(-) - -commit 8add33dc2291df2997ea74fae45bde1f407f1435 -Author: Daniel Nylander -Date: Wed Aug 26 06:11:28 2009 +0200 - - Updated Swedish translation - - po/sv.po | 47 +++++++++++++++++++++++++++-------------------- - 1 file changed, 27 insertions(+), 20 deletions(-) - -commit 93894faa2b8a7a227ef848e2f12d777089fb979c -Author: Tomasz Dominikowski -Date: Tue Aug 25 14:48:17 2009 +0200 - - Updated Polish translation - - po/pl.po | 518 +++++++++++++++++++++++---------------------------------------- - 1 file changed, 189 insertions(+), 329 deletions(-) - -commit 090995ed658d101a46c213e152263f7402405e9a -Author: ifelix -Date: Tue Aug 25 16:08:24 2009 +0530 - - Updated Tamil Translations - - po/ta.po | 809 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 414 insertions(+), 395 deletions(-) - -commit eb16610ca83c149cf69344777fa1511396a9ca6b -Author: Xan Lopez -Date: Tue Aug 25 13:36:07 2009 +0300 - - Rename ephy_web_view_get_load_status to ephy_web_view_is_loading - - Much more clear, and avoids confusions with the WebKitWebView function - with similar name. - - embed/ephy-web-view.c | 12 ++++++------ - embed/ephy-web-view.h | 2 +- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-notebook.c | 2 +- - src/ephy-session.c | 4 ++-- - src/ephy-shell.c | 2 +- - src/ephy-window.c | 4 ++-- - 7 files changed, 14 insertions(+), 14 deletions(-) - -commit 5bd0ebcc3daa9d847e484890a874905208395d80 -Author: Xan Lopez -Date: Mon Aug 24 23:22:20 2009 +0300 - - ephy-session.c: whitespace fixes - - src/ephy-session.c | 112 ++++++++++++++++++++++++++--------------------------- - 1 file changed, 56 insertions(+), 56 deletions(-) - -commit 53c75e42206fb9d53f2cd12615c9fcb679117c7f -Author: Alexander Shopov -Date: Mon Aug 24 22:47:25 2009 +0300 - - Updated Bulgarian translation - - po/bg.po | 17 +++++++++++++++-- - 1 file changed, 15 insertions(+), 2 deletions(-) - -commit d3c72930d6691e17fa5eca1c4bd8d60f21208ac3 -Author: Xan Lopez -Date: Mon Aug 24 20:22:39 2009 +0300 - - configure.ac: post release version bump - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a76ed169b158cb71f33214c9dfa7b14f90f470bf -Author: Jorge González -Date: Mon Aug 24 19:02:13 2009 +0200 - - Updated Spanish translation - - po/es.po | 52 ++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 32 insertions(+), 20 deletions(-) - -commit b71dd3d749f3e2d3d080e33b94d39871ca02412c -Author: Xan Lopez -Date: Mon Aug 24 19:51:05 2009 +0300 - - configure.ac: bump libsoup-gnome dependency - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2c8921c8d0ca82abf98acfafaf1a15ef73f33002 -Author: Xan Lopez -Date: Mon Aug 24 19:50:20 2009 +0300 - - NEWS: update for release - - NEWS | 15 +++++++++++++++ - 1 file changed, 15 insertions(+) - -commit 8f55632cbe17afecef8c2ebf403c44b48769b576 -Author: Xan Lopez -Date: Mon Aug 24 19:14:06 2009 +0300 - - configure.ac: require WebKitGTK+ 1.1.13 - - Just a sanity check so that we don't end up with two keyring support - features in our session accidentally. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b4257bf335e7cfbc7e0a9056a34d273ee6448a24 -Author: Julian de Navascues -Date: Mon Aug 24 18:58:13 2009 +0300 - - ephy-session.c: ask users before recovering page that was loading when session crashed - - Bug #583953 - - Signed-off-by: Xan Lopez - - src/ephy-session.c | 104 ++++++++++++++++++++++++++++++++++++++++++++++++++--- - 1 file changed, 100 insertions(+), 4 deletions(-) - -commit 327228364211c77840cf38d947744c49ee47bdee -Author: Xan Lopez -Date: Mon Aug 24 11:29:19 2009 +0300 - - ephy-main.c: do not import gecko profile when running a private instance - - src/ephy-main.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 330e97963492561a2bc81f651ef72e97cf26e374 -Author: Yaron Shahrabani -Date: Sun Aug 23 19:58:40 2009 +0300 - - Updated Hebrew translation - - po/he.po | 319 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 162 insertions(+), 157 deletions(-) - -commit 51ba14e08c4d4856013eb25cf36d5e89fe3ccbb1 -Author: Mario Blättermann -Date: Sun Aug 23 14:45:51 2009 +0200 - - Updated German translation - - po/de.po | 2365 +++++++++++++------------------------------------------------- - 1 file changed, 475 insertions(+), 1890 deletions(-) - -commit e7ee00be133331a975c8cd2ae7900935d5de3256 -Author: Mario Blättermann -Date: Sun Aug 23 14:36:59 2009 +0200 - - Updated German doc translation - - help/de/de.po | 853 ++++++++++++++++++++++++++++------------------------------ - 1 file changed, 410 insertions(+), 443 deletions(-) - -commit bcbf4ea0a609d5088f73446bec82d16999525849 -Author: Xan Lopez -Date: Sat Aug 22 21:28:56 2009 +0300 - - epiphany.xml: fix typo - - Bug #592669 - - help/C/epiphany.xml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit fb9d7360c6bb191ca16d03e5639feef509dac97a -Author: Alexander Shopov -Date: Sat Aug 22 18:35:16 2009 +0300 - - Updated Bulgarian translation - - po/bg.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit bad7caa1fec4669e2de8ebb73db4fc63cd9cb5ed -Author: Jorge González -Date: Sat Aug 22 14:59:45 2009 +0200 - - Updated Spanish translation - - help/es/es.po | 808 +++++++++++++++++++++++++++++----------------------------- - 1 file changed, 411 insertions(+), 397 deletions(-) - -commit a9cf3df0c5c37c37a3027d27b5e10ce3d7003c63 -Author: Tommi Vainikainen -Date: Fri Aug 21 23:07:15 2009 +0300 - - Updated Finnish translation of the manual - - help/fi/fi.po | 1451 +++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 934 insertions(+), 517 deletions(-) - -commit d2b525405d6e1ccee68691e25f092a336b91b873 -Author: Tommi Vainikainen -Date: Fri Aug 21 23:01:53 2009 +0300 - - Fixes to manual. Closes #591770. - - help/C/epiphany.xml | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -commit b7e014ff1678d1318710224f231d981244837f2b -Author: Kjartan Maraas -Date: Fri Aug 21 15:56:59 2009 +0200 - - Updated Norwegian bokmål translation. - - po/nb.po | 280 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 141 insertions(+), 139 deletions(-) - -commit 200c86ea077a6ec0f76f6d0b5053b5d34c4610a9 -Author: Seán de Búrca -Date: Fri Aug 21 06:50:26 2009 -0600 - - Updated Irish translation - - po/ga.po | 585 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 282 insertions(+), 303 deletions(-) - -commit b8378d4abd05719b54ac970a403c43e0835cbb8b -Author: Alexander Shopov -Date: Fri Aug 21 14:12:58 2009 +0300 - - Updated Bulgarian translation - - po/bg.po | 2560 ++++++++++++++++++++++---------------------------------------- - 1 file changed, 883 insertions(+), 1677 deletions(-) - -commit 61d1af96a4b707f4a84f717f689034129141116b -Author: Xan Lopez -Date: Fri Aug 21 11:15:45 2009 +0300 - - ephy-seed-extension: force a GC cycle after detachs. - - This should help with memory management/lifecycle woes, although it - does not seem to fix bug #573551 - - configure.ac | 2 +- - src/ephy-seed-extension.c | 2 ++ - 2 files changed, 3 insertions(+), 1 deletion(-) - -commit 553b5f4d4cf0ff8e782cbcc0117cc08d6eaae457 -Author: Xan Lopez -Date: Fri Aug 21 10:21:43 2009 +0300 - - ephy-embed.c: update URL in location when clicking on #anchors - - Bug #584506 - - embed/ephy-embed.c | 21 +++++++++++++++++++++ - 1 file changed, 21 insertions(+) - -commit fc4196b0187aed4444f8e5637a2105be67316aa5 -Author: Khaled Hosny -Date: Thu Aug 20 22:55:12 2009 +0300 - - Updated Arabic translation - - po/ar.po | 263 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 131 insertions(+), 132 deletions(-) - -commit 6d80ee5d04d8c3cbc493a6d663e7352b3c72ef11 -Author: Gustavo Noronha Silva -Date: Wed Aug 19 10:55:16 2009 -0300 - - Add ICE explicitly to the list of dependencies - - configure.ac | 1 + - 1 file changed, 1 insertion(+) - -commit 9aa0a3a8af341ad5258c953a9018c24fb6fb7e8d -Author: Antón Méixome -Date: Wed Aug 19 15:07:10 2009 +0200 - - Updated Galician Translation - - po/gl.po | 187 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 94 insertions(+), 93 deletions(-) - -commit ed6121111ee4108894575c5f0b33700808700542 -Author: Og B. Maciel -Date: Tue Aug 18 23:05:01 2009 -0400 - - Updated Brazilian Portuguese translation. - - po/pt_BR.po | 248 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 124 insertions(+), 124 deletions(-) - -commit 9f4b1f35a00e705fd547bd9a589169cbbbb6e0b2 -Author: Piotr Drąg -Date: Tue Aug 18 00:47:54 2009 +0200 - - Updated Polish translation - - po/pl.po | 3377 +++++++++++++++++++++----------------------------------------- - 1 file changed, 1120 insertions(+), 2257 deletions(-) - -commit 8111329f784754449622986331832ff020e7ea6e -Author: Xan Lopez -Date: Mon Aug 17 08:23:32 2009 +0300 - - ephy-bookmark-action.c: always show images in bookmarks menu items - - Makes images re-appear after the changes that set icons off by default - in menus for 2.28. Bug #588563 - - src/bookmarks/ephy-bookmark-action.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 74bee955b8b41fd434ce67d33bfe454f5104d7b2 -Author: Kenneth Nielsen -Date: Sun Aug 16 19:03:34 2009 +0200 - - Updated Danish translation - - po/da.po | 893 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 442 insertions(+), 451 deletions(-) - -commit 9dfbdf89279f112c36ab398c7b322a5a8d63bcec -Author: Xan Lopez -Date: Sun Aug 16 17:48:24 2009 +0300 - - configure.ac: a few more portability tests suggested by 'autoscan' - - configure.ac | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -commit 9f934f509d43f472473b3def45722ab2d3b269df -Author: Xan Lopez -Date: Sun Aug 16 17:47:59 2009 +0300 - - configure.ac: use LT_INIT instead of deprecated AC_PROG_LIBTOOL - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5645c6b89f9ce6eb3f110e7e5dcd72cb2064ae1c -Author: Xan Lopez -Date: Sat Aug 15 14:07:05 2009 +0300 - - Make the location action responsible of the model - - It does not make sense for the location entry to unref the model it - gets as parameter. - - lib/widgets/ephy-location-entry.c | 1 - - src/ephy-location-action.c | 1 + - 2 files changed, 1 insertion(+), 1 deletion(-) - -commit 8cc47dde28022316d18be9a78fdb4bb668c9f2db -Author: Xan Lopez -Date: Sat Aug 15 14:05:45 2009 +0300 - - ephy-location-action.c: whitespace changes - - src/ephy-location-action.c | 64 +++++++++++++++++++++++----------------------- - 1 file changed, 32 insertions(+), 32 deletions(-) - -commit 906c912d5e23f7b9dfdd72bd2d734c5550e9a5c1 -Author: Tommi Vainikainen -Date: Sat Aug 15 12:40:12 2009 +0300 - - Updated Finnish translation - - help/fi/fi.po | 3289 ++++++++++++-------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 2518 -> 3871 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1032 -> 1402 bytes - help/fi/figures/ephy-history-window-screenshot.png | Bin 25839 -> 38963 bytes - help/fi/figures/ephy-screenshot.png | Bin 101272 -> 62207 bytes - po/fi.po | 2147 ++++++------- - 6 files changed, 3007 insertions(+), 2429 deletions(-) - -commit ef8c693c89b1ecf9b028d5d75ef8e3113dc26348 -Author: Benjamin Otte -Date: Fri Aug 14 22:25:37 2009 +0200 - - Update the currently selected item after a case sensitivity change - - Try to keep the currently selected item selected, but if it doesn't - match case, find the next match. - - src/ephy-find-toolbar.c | 18 ++++++++++++++++++ - 1 file changed, 18 insertions(+) - -commit 013bbd59ea30afe7a6005b13fc27bf4158ccf674 -Author: Benjamin Otte -Date: Fri Aug 14 14:17:51 2009 +0200 - - ephy_find_toolbar_set_properties() => ephy_find_toolbar_mark_matches() - - Renaming to accurately reflect, what the function does. - - src/ephy-find-toolbar.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit da1f3cfc5bc93471642bd6b970ea87e663ba1d6c -Author: Benjamin Otte -Date: Fri Aug 14 14:13:36 2009 +0200 - - Don't pass the string to find to all functions - - The string to find is set in the private structure, so when it needs to - be changed, change it there. - - Removes lots of unnecessary code, in particular when entering text, the - marking code (that took lots of CPU) wasn't run twice. - - src/ephy-find-toolbar.c | 43 ++++++++++++------------------------------- - 1 file changed, 12 insertions(+), 31 deletions(-) - -commit 32a399be40bb62174bf52209825e1ab65483b160 -Author: Benjamin Otte -Date: Fri Aug 14 13:58:38 2009 +0200 - - Remove function set_string_and_highlight() - - The function did the same thing as ephy_find_toolbar_set_properties(), - so use that function always. - - src/ephy-find-toolbar.c | 15 ++++----------- - 1 file changed, 4 insertions(+), 11 deletions(-) - -commit 9ea92526ff14fce12c849c171e8343f80cce029d -Author: krishnababu k -Date: Fri Aug 14 17:54:26 2009 +0530 - - Updated Telugu Translations - - po/te.po | 4736 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 2404 insertions(+), 2332 deletions(-) - -commit 678e95c144985a4bb26fc272763d2a4793266a5d -Author: Jorge González -Date: Thu Aug 13 16:22:45 2009 +0200 - - Updated Spanish translation - - po/es.po | 250 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 125 insertions(+), 125 deletions(-) - -commit e6812c92e94ae1f5c9c4ad9e33a789fd94b53e34 -Author: Daniel Nylander -Date: Thu Aug 13 09:56:04 2009 +0200 - - Updated Swedish translation - - po/sv.po | 250 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 125 insertions(+), 125 deletions(-) - -commit 876f79f685c761100191328dd5ea7ee2bf50163f -Author: Xan Lopez -Date: Wed Aug 12 21:43:40 2009 +0300 - - ephy-embed-single.c: use new keyring support in libsoup to store passwords - - We depend on WebKitGTK+ trunk (r47129) and libsoup - master (f81520bfd3a97) now. - - embed/ephy-embed-single.c | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit e81b7c32d7b56b4bee0a3a8ea678ba919e58e240 -Author: Ivar Smolin -Date: Wed Aug 12 15:24:15 2009 +0300 - - Updating Estonian translation - - po/et.po | 35 ++++------------------------------- - 1 file changed, 4 insertions(+), 31 deletions(-) - -commit 1740e21a2843de978264b6208bce3718ad1c7a1a -Author: Xan Lopez -Date: Wed Aug 12 14:44:25 2009 +0300 - - Remove unused stuff and clean old references to Mozilla. - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-embed-single.sgml | 10 ---------- - embed/ephy-embed-shell.c | 2 +- - embed/ephy-embed-single.c | 24 ++---------------------- - embed/ephy-embed-single.h | 3 --- - 5 files changed, 3 insertions(+), 37 deletions(-) - -commit cad7e6662ea287c565aa1c5d77c91d26a9ce3fd2 -Author: Xan Lopez -Date: Wed Aug 12 14:37:05 2009 +0300 - - ephy-file-helpers: add ephy_has_private_profile - - To know whether or not we are using a private profile different from - the default one. - - lib/ephy-file-helpers.c | 6 +++ - lib/ephy-file-helpers.h | 98 ++++++++++++++++++++----------------------------- - 2 files changed, 46 insertions(+), 58 deletions(-) - -commit c95f5cbcedaa31dd6b66c8684b61a9f27c9d855f -Author: Manoj Kumar Giri -Date: Wed Aug 12 15:24:37 2009 +0530 - - Modified Oriya Translation - - po/or.po | 17 +++++++++-------- - 1 file changed, 9 insertions(+), 8 deletions(-) - -commit 426380ecbe4393edd7154dd505b2b5392f8919f4 -Author: Manoj Kumar Giri -Date: Wed Aug 12 15:15:44 2009 +0530 - - Updated Oriya Translation - - po/or.po | 4111 +++++++++++++++++++++++++++----------------------------------- - 1 file changed, 1760 insertions(+), 2351 deletions(-) - -commit 65c6c85004ca66f6414dac84b24d6b617029818e -Author: Runa Bhattacharjee -Date: Wed Aug 12 14:55:05 2009 +0530 - - Merged Translations for Bengali India - - po/bn_IN.po | 2197 ++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1130 insertions(+), 1067 deletions(-) - -commit c6d96dff0fdfec3b0fe04270f996650126db1c01 -Author: Xan Lopez -Date: Wed Aug 12 10:30:52 2009 +0300 - - pdm-dialog.c: do not remove rows twice... - - src/pdm-dialog.c | 1 - - 1 file changed, 1 deletion(-) - -commit 3f94b8fa88e8034c02bd1c7fa41755d6951d978e -Author: Xan Lopez -Date: Wed Aug 12 08:05:49 2009 +0300 - - Remove ephy-glib-compat.h, since we depend on a newer glib now - - embed/ephy-favicon-cache.c | 1 - - embed/ephy-history.c | 1 - - lib/Makefile.am | 1 - - lib/ephy-glib-compat.h | 38 -------------------------------------- - src/bookmarks/ephy-bookmarks.c | 1 - - src/ephy-dbus.c | 1 - - src/ephy-extensions-manager.c | 2 -- - src/ephy-session.c | 1 - - 8 files changed, 46 deletions(-) - -commit 409e5e56f91eec5c4dcae54031b5775938570ef1 -Author: Xan Lopez -Date: Wed Aug 12 08:03:13 2009 +0300 - - ephy-session.c: sort headers - - src/ephy-session.c | 21 ++++++++++----------- - 1 file changed, 10 insertions(+), 11 deletions(-) - -commit 72eaee90d3827787fe7b0e92f0c3a11ee923d373 -Author: Xan Lopez -Date: Wed Aug 12 07:58:18 2009 +0300 - - ephy-session: move header from .h to .c - - src/ephy-session.c | 1 + - src/ephy-session.h | 2 -- - 2 files changed, 1 insertion(+), 2 deletions(-) - -commit 2cda3111896e9f863e5f6024813c67bdfadc0738 -Author: André Gondim -Date: Tue Aug 11 23:52:16 2009 -0300 - - Updated Brazilian Portuguese translation. - - po/pt_BR.po | 160 +++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 82 insertions(+), 78 deletions(-) - -commit 4829105cd1bc7ffede07ff6545f01253479a1a47 -Author: Inaki Larranaga Murgoitio -Date: Tue Aug 11 18:21:10 2009 +0200 - - Updated Basque language - - po/eu.po | 997 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 484 insertions(+), 513 deletions(-) - -commit ecbe8407669020763c97597120a87d90478d2e8b -Author: Xan Lopez -Date: Tue Aug 11 07:31:07 2009 +0300 - - ephy-history-window: use new_with_mnemonic instead of new_with_label + set_use_underline - - src/ephy-history-window.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit d1ae115956d42347107dc0d4dbe682281b648915 -Author: Xan Lopez -Date: Mon Aug 10 23:46:12 2009 +0300 - - ephy-embed.c: add FIXME - - embed/ephy-embed.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 135c9fab5a8306ba0b44d799b5375c3bc965add1 -Author: Xan Lopez -Date: Mon Aug 10 22:52:55 2009 +0300 - - ephy-web-view: style fix - - embed/ephy-web-view.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 09bf9f5038497e8365e1ec96efaa2c477c3a0919 -Author: Matthias Clasen -Date: Mon Aug 10 16:37:43 2009 -0400 - - Mark an underline as mnemonic - - This prevents a Cl_ear button to show up in the history window. - Patch found in Ubuntu package... - - src/ephy-history-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 90673610a848f6e6e8ffb4ad7d06497e5d0b9464 -Author: Xan Lopez -Date: Mon Aug 10 22:41:10 2009 +0300 - - And a few more - - src/Makefile.am | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 850d301f9da4691774578c49e63353d1580a42f1 -Author: Xan Lopez -Date: Mon Aug 10 22:26:30 2009 +0300 - - Prefix noisy commands with AM_V_GEN - - embed/Makefile.am | 4 ++-- - lib/Makefile.am | 8 ++++---- - lib/egg/Makefile.am | 8 ++++---- - src/Makefile.am | 8 ++++---- - src/bookmarks/Makefile.am | 4 ++-- - 5 files changed, 16 insertions(+), 16 deletions(-) - -commit 51cb85f8bed28408d4e1f962bc5f48facde5344f -Author: Xan Lopez -Date: Mon Aug 10 19:59:08 2009 +0300 - - configure.ac: post-release version bump - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3c94dd2ac7259216ae32f42888dbedba645aee30 -Author: Xan Lopez -Date: Mon Aug 10 19:46:14 2009 +0300 - - NEWS: update for release - - NEWS | 21 +++++++++++++++++++++ - 1 file changed, 21 insertions(+) - -commit af92f754e5c8172296d1947193e24149805ba265 -Author: Antón Méixome -Date: Mon Aug 10 16:47:28 2009 +0200 - - Updated Galician translation - - po/gl.po | 1722 +++++++++++++++++--------------------------------------------- - 1 file changed, 467 insertions(+), 1255 deletions(-) - -commit c2325fa0546bb6e41fdce10ca0a560293f468d5d -Author: Xan Lopez -Date: Mon Aug 10 14:04:01 2009 +0300 - - ephy-web-view: whitespace fixes - - embed/ephy-web-view.c | 338 +++++++++++++++++++++++++------------------------- - 1 file changed, 169 insertions(+), 169 deletions(-) - -commit af12311055ac2d9ea29103fbb507a3a1f6798658 -Author: Xan Lopez -Date: Mon Aug 10 13:55:51 2009 +0300 - - Move address normalization to the EphyWebView functions. - - EphyLink is called repeatedly when opening URLs, so normalizing the - address there all the time is pointless. Also, we don't go through - here in all cases, so we need to add the normalization in the - ephy_web_view_load_request function too; this fixes opening URLs like - "foo.com" from the command line, for example. - - embed/ephy-web-view.c | 19 +++++++++++++++---- - src/ephy-link.c | 7 +------ - 2 files changed, 16 insertions(+), 10 deletions(-) - -commit 44706a1d0bc863eb6ffd9e14a207c230e9d3a028 -Author: Xan Lopez -Date: Mon Aug 10 13:38:00 2009 +0300 - - Move URL normalization into a utility function - - embed/ephy-embed-utils.c | 15 +++++++++++++++ - embed/ephy-embed-utils.h | 5 +++-- - src/ephy-link.c | 21 +++++---------------- - 3 files changed, 23 insertions(+), 18 deletions(-) - -commit cc3b8a8703c4ace932dc31680bbb0c3d1ce4829a -Author: Xan Lopez -Date: Mon Aug 10 11:05:55 2009 +0300 - - Remove ephy-password-manager leftovers - - doc/reference/epiphany.types | 2 -- - src/Makefile.am | 1 - - src/epiphany.h.in | 1 - - 3 files changed, 4 deletions(-) - -commit ed31322a3790105797d56f453aaf220d7812d65a -Author: Diego Escalante Urrelo -Date: Mon Aug 10 02:36:27 2009 -0500 - - downloader-view.c: hide the tray icon before unref - - Apparently due to a GTK+/gnome-panel bug (bug #340110), the status icon space - is not freed in the notification area. - The best work-around is to hide the icon before unrefing it. - - Bug #591189 - - embed/downloader-view.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 893114a0a7b0c8b774b927dbc7de1844fb670ac3 -Author: Xan Lopez -Date: Mon Aug 10 08:28:40 2009 +0300 - - Add again the spinner. - - We need some indication in the UI of network activity when there are - no tabs opened and the progress bar hasn't appeared yet in the URL - entry. Re-add the spinner for now, we'll think of a better solution - later. - - Bug #585035 - - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-spinner-tool-item.c | 115 +++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-spinner-tool-item.h | 62 +++++++++++++++++++ - src/ephy-toolbar.c | 59 ++++++++++++++++-- - src/ephy-toolbar.h | 3 + - src/ephy-window.c | 2 + - 6 files changed, 239 insertions(+), 4 deletions(-) - -commit 3083f20877cb7892a498cdccdfdedc8ee31cf10e -Author: Carles Ferrando -Date: Sun Aug 9 11:27:33 2009 +0200 - - Added Catalan (Valencian) translation - - po/LINGUAS | 1 + - po/ca@valencia.po | 4275 +++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 4276 insertions(+) - -commit d1f78bf4247f3d1733d4a5f48b922c1bf9db04d0 -Author: Xan Lopez -Date: Sun Aug 9 09:24:25 2009 +0300 - - Forgot to add ephy-password-info.[ch] in previous commit - - src/ephy-password-info.c | 64 ++++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-password-info.h | 49 ++++++++++++++++++++++++++++++++++++ - 2 files changed, 113 insertions(+) - -commit 6de62da63409694870bf9c15b6b0a314687a5834 -Author: Seán de Búrca -Date: Sat Aug 8 21:20:11 2009 -0600 - - Updated Irish translation - - po/ga.po | 202 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 104 insertions(+), 98 deletions(-) - -commit 0c5cf6617f4d5945eb1eecce87ba4f164e4c416c -Author: Xan Lopez -Date: Sat Aug 8 22:43:46 2009 +0300 - - ephy-embed.c: sort headers - - embed/ephy-embed.c | 21 ++++++++++----------- - 1 file changed, 10 insertions(+), 11 deletions(-) - -commit be0a6c25239a4dd25495b50b4bed22bcbcc00440 -Author: Xan Lopez -Date: Sat Aug 8 21:31:43 2009 +0300 - - Re-implement PDM's password viewer. - - Patch by Holger Freyther, Prit Laes, with fixes from Xan López. - - Fetches the data from the GNOME keyring, which is where WebKit stores it - (when compiled with keyring support). - - Bug #579217 - - configure.ac | 2 + - embed/Makefile.am | 2 - - embed/ephy-embed-single.c | 38 ---- - embed/ephy-password-manager.c | 218 ----------------------- - embed/ephy-password-manager.h | 101 ----------- - src/Makefile.am | 2 + - src/pdm-dialog.c | 393 ++++++++++++++++++++++++++++-------------- - 7 files changed, 265 insertions(+), 491 deletions(-) - -commit 4aa17a82e3a1914c93720321cb275abc718c8f6a -Author: Khaled Hosny -Date: Sat Aug 8 18:41:36 2009 +0300 - - Updated Arabic translation - - po/ar.po | 2255 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1126 insertions(+), 1129 deletions(-) - -commit 76e7a26bcb91584bfbac2a065c4ec8b0ed17702d -Author: Seán de Búrca -Date: Sat Aug 8 06:01:35 2009 -0600 - - Updated Irish translation - - po/ga.po | 4189 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 2074 insertions(+), 2115 deletions(-) - -commit ef9a1019e28b10d5d71208f667dc950d50b10868 -Author: Benjamin Otte -Date: Fri Aug 7 23:14:19 2009 +0200 - - Add NULL-check as the returned item can be NULL - - embed/ephy-web-view.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit be97edc964a415f4737b35fd9569c0e1bd55c633 -Author: Diego Escalante Urrelo -Date: Sat Jun 20 20:28:23 2009 -0500 - - ephy-notebook: remove old FIXME - - src/ephy-notebook.c | 5 ----- - 1 file changed, 5 deletions(-) - -commit 0d92cfabd0c04937121d10cd2019c658bc525813 -Author: Priit Laes -Date: Tue Aug 4 10:43:53 2009 +0300 - - embed/ephy-embed.c: Fix mnemonic usage. - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9763a388de2b6e698f238d9a1d40c84f7f200753 -Author: Jorge González -Date: Tue Aug 4 19:07:32 2009 +0200 - - Updated Spanish translation - - po/es.po | 666 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 336 insertions(+), 330 deletions(-) - -commit 0943b80b637d3db2934c97b9c77b60f1639ab0ec -Author: Carlos Garcia Campos -Date: Mon Aug 3 17:30:08 2009 +0200 - - Ignore load status changes after LOAD_FINISHED is emitted - - This is a workaround for webkit bug - https://bugs.webkit.org/show_bug.cgi?id=26409. - FIRST_VISUALLY_NON_EMPTY_LAYOUT might be emitted after LOAD_FINISHED, so - we just ignore any status change once LOAD_FINISHED has been set - - embed/ephy-web-view.c | 16 ++++++++++++++++ - 1 file changed, 16 insertions(+) - -commit 23bdbd4c4889b571a78471b89dc1a680352510d4 -Author: Daniel Nylander -Date: Mon Aug 3 12:17:38 2009 +0200 - - Updated Swedish translation - - po/sv.po | 149 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 77 insertions(+), 72 deletions(-) - -commit 37285df17e8e08aaeb4a2bddf9914d265a8e5a67 -Author: Kjartan Maraas -Date: Mon Aug 3 10:29:07 2009 +0200 - - Updated Norwegian bokmål translation. - - po/nb.po | 174 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 94 insertions(+), 80 deletions(-) - -commit b3ce064b42dede2552f79bf7e6c4c6eead7f24a0 -Author: Benjamin Otte -Date: Fri Jul 31 09:42:33 2009 +0200 - - Use g_hash_table_remove_all() to remove all items - - src/ephy-window.c | 8 +------- - 1 file changed, 1 insertion(+), 7 deletions(-) - -commit abfc3054e628d11250160b21a01866b923eb56a6 -Author: Benjamin Otte -Date: Fri Jul 31 10:06:53 2009 +0200 - - Code uses math.h so link to libm - - lib/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0036f89cacb5ad8b84dfc97cdc6a03cccb8dd386 -Author: Ivar Smolin -Date: Fri Jul 31 10:50:18 2009 +0300 - - Updating Estonian translation - - po/et.po | 43 ++++++++++++++++++++++++------------------- - 1 file changed, 24 insertions(+), 19 deletions(-) - -commit 72b49fe58f5feaa36ae4851415a76588793f1510 -Author: Vincent Untz -Date: Thu Jul 30 12:51:48 2009 +0200 - - Move default bookmarks to separate rdf file instead of hard-coded values - - Bug #300190 - - data/Makefile.am | 15 ++++++++++++++- - data/default-bookmarks.rdf.in | 23 +++++++++++++++++++++++ - po/POTFILES.in | 1 + - src/bookmarks/Makefile.am | 1 + - src/bookmarks/ephy-bookmarks.c | 23 +---------------------- - 5 files changed, 40 insertions(+), 23 deletions(-) - -commit 048b02780261819c29de2b43a1c1a18d3cbb066f -Author: Julian de Navascues -Date: Wed Jul 29 14:22:41 2009 +0200 - - Comments "about:recover" functionality - - Because "about:recover:" is not implemented yet, - Epiphany cant recover tabs that were loading during - a crash. So this patch avoids the attempts to recover - these tabs and therefore blank tabs wont be opened. - Tabs that were fully loaded are still opened and - loaded succesfully. - - Bug #583953 - - Signed-off-by: Xan Lopez - - src/ephy-session.c | 36 ++++++++---------------------------- - 1 file changed, 8 insertions(+), 28 deletions(-) - -commit 00bc21c873c32e476c666a8ed15c634c9889994d -Author: Priit Laes -Date: Wed Jul 29 13:23:01 2009 +0300 - - Fix Yoruba translation errors. - - Signed-off-by: Priit Laes - - po/yo.po | 103 ++++++++++++++++++++++----------------------------------------- - 1 file changed, 36 insertions(+), 67 deletions(-) - -commit fc57712dbb7afbf0112c0ea471a86e0acb5462b7 -Author: Priit Laes -Date: Wed Jul 29 13:08:26 2009 +0300 - - Revert "Move Epiphany to solely use GnomeKeyring for password management." - - This reverts commit f453c807afecdc210410eeb9f389ca50d0764a7c. - - configure.ac | 2 - - embed/Makefile.am | 2 + - embed/downloader-view.c | 8 +- - embed/ephy-embed-single.c | 38 ++++ - embed/ephy-password-manager.c | 218 +++++++++++++++++++++ - embed/ephy-password-manager.h | 101 ++++++++++ - src/Makefile.am | 2 - - src/ephy-password-info.c | 67 ------- - src/ephy-password-info.h | 49 ----- - src/pdm-dialog.c | 428 +++++++++++++++++++----------------------- - 10 files changed, 560 insertions(+), 355 deletions(-) - -commit a7d3b959e7af9b8fc3e93bdb3082cc1273bbd247 -Author: Priit Laes -Date: Wed Jul 29 13:08:17 2009 +0300 - - Revert "Set password column initially as hidden." - - This reverts commit 4e351b7594260829fa6b38762b3c69927e7d2dc3. - - src/pdm-dialog.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 5d0f8616724fec4e9131163f86da7fc596c7e049 -Author: Priit Laes -Date: Wed Jul 29 13:08:09 2009 +0300 - - Revert "Use correct column from store for deletion." - - This reverts commit f64c5a8275701a2d9d22d9b9e75288c7fb161700. - - src/pdm-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 33394f8729de34430b1af7f9e05985e0d5ddb8d2 -Author: Priit Laes -Date: Wed Jul 29 13:08:01 2009 +0300 - - Revert "Make pdm_dialog_fill_passwords_list asynchronous." - - This reverts commit 745f33e3fac9dd57b1da6be26c82a9101adf59cd. - - src/pdm-dialog.c | 36 +++++++++++++++--------------------- - 1 file changed, 15 insertions(+), 21 deletions(-) - -commit 5f3b345a7c55a6491d3dd60637f304ab746e9656 -Author: Priit Laes -Date: Wed Jul 29 13:07:48 2009 +0300 - - Revert "Make password loading/showing asynchronous." - - This reverts commit dfbf90543edbb12a4c467db02f60214de3d07d83. - - src/pdm-dialog.c | 109 +++++++++++++++++++------------------------------------ - 1 file changed, 37 insertions(+), 72 deletions(-) - -commit d614cb33983cac3070dff987729eae9b64ee7584 -Author: Priit Laes -Date: Wed Jul 29 13:07:43 2009 +0300 - - Revert "Make clear all functionality asynchronous." - - This reverts commit a75e0d2fc04d9f599edccf572afe78f2e48e2e44. - - src/pdm-dialog.c | 75 ++++++++++++++++---------------------------------------- - 1 file changed, 21 insertions(+), 54 deletions(-) - -commit 249e515bfe808343063735f86e4999813865b56c -Author: Priit Laes -Date: Wed Jul 29 13:07:22 2009 +0300 - - Revert "Password removal is now async :)" - - This reverts commit 689820485d8060c85760cd54d8b370f4e108d6dd. - - src/pdm-dialog.c | 104 ++++++++++++++++++++++--------------------------------- - 1 file changed, 42 insertions(+), 62 deletions(-) - -commit a957f0f635dcb49afcebfc4a60097a8fca0bbf9f -Author: Priit Laes -Date: Wed Jul 29 13:06:30 2009 +0300 - - Revert "Password adding is fully async now." - - This reverts commit fbccb4712593d16d8bc06ed4cb3d6e27c1053dee. - - src/pdm-dialog.c | 145 ++++++++++++++++++++++++------------------------------- - 1 file changed, 62 insertions(+), 83 deletions(-) - -commit 66818e43ba883d4087dd58db408c9155c6d7d629 -Author: Priit Laes -Date: Wed Jul 29 12:57:25 2009 +0300 - - Fix broken Belarusian translation file. - - Signed-off-by: Priit Laes - - po/be.po | 12 +++++------- - 1 file changed, 5 insertions(+), 7 deletions(-) - -commit fbccb4712593d16d8bc06ed4cb3d6e27c1053dee -Author: Priit Laes -Date: Wed Jul 29 11:23:41 2009 +0300 - - Password adding is fully async now. - - Signed-off-by: Priit Laes - - src/pdm-dialog.c | 145 +++++++++++++++++++++++++++++++------------------------ - 1 file changed, 83 insertions(+), 62 deletions(-) - -commit 689820485d8060c85760cd54d8b370f4e108d6dd -Author: Priit Laes -Date: Tue Jul 28 21:59:19 2009 +0300 - - Password removal is now async :) - - Signed-off-by: Priit Laes - - src/pdm-dialog.c | 104 +++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 62 insertions(+), 42 deletions(-) - -commit a75e0d2fc04d9f599edccf572afe78f2e48e2e44 -Author: Priit Laes -Date: Tue Jul 28 13:21:46 2009 +0300 - - Make clear all functionality asynchronous. - - Signed-off-by: Priit Laes - - src/pdm-dialog.c | 75 ++++++++++++++++++++++++++++++++++++++++---------------- - 1 file changed, 54 insertions(+), 21 deletions(-) - -commit dfbf90543edbb12a4c467db02f60214de3d07d83 -Author: Priit Laes -Date: Mon Jul 27 22:45:03 2009 +0300 - - Make password loading/showing asynchronous. - - Signed-off-by: Priit Laes - - src/pdm-dialog.c | 109 ++++++++++++++++++++++++++++++++++++------------------- - 1 file changed, 72 insertions(+), 37 deletions(-) - -commit 745f33e3fac9dd57b1da6be26c82a9101adf59cd -Author: Priit Laes -Date: Fri Jul 24 20:09:32 2009 +0300 - - Make pdm_dialog_fill_passwords_list asynchronous. - - Signed-off-by: Priit Laes - - src/pdm-dialog.c | 36 +++++++++++++++++++++--------------- - 1 file changed, 21 insertions(+), 15 deletions(-) - -commit f64c5a8275701a2d9d22d9b9e75288c7fb161700 -Author: Priit Laes -Date: Fri Jul 24 19:12:54 2009 +0300 - - Use correct column from store for deletion. - - Signed-off-by: Priit Laes - - src/pdm-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4e351b7594260829fa6b38762b3c69927e7d2dc3 -Author: Priit Laes -Date: Fri Jul 24 19:07:37 2009 +0300 - - Set password column initially as hidden. - - Signed-off-by: Priit Laes - - src/pdm-dialog.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit f453c807afecdc210410eeb9f389ca50d0764a7c -Author: Priit Laes -Date: Tue Jul 21 11:47:53 2009 +0300 - - Move Epiphany to solely use GnomeKeyring for password management. - - Based on patch by Holger Freyther. - - Signed-off-by: Priit Laes - - configure.ac | 2 + - embed/Makefile.am | 2 - - embed/downloader-view.c | 8 +- - embed/ephy-embed-single.c | 38 ---- - embed/ephy-password-manager.c | 218 --------------------- - embed/ephy-password-manager.h | 101 ---------- - src/Makefile.am | 2 + - src/ephy-password-info.c | 67 +++++++ - src/ephy-password-info.h | 49 +++++ - src/pdm-dialog.c | 428 +++++++++++++++++++++++------------------- - 10 files changed, 355 insertions(+), 560 deletions(-) - -commit fce1c56a605ea712cc956537a8566d3b622a892e -Author: Xan Lopez -Date: Mon Jul 27 21:51:31 2009 +0300 - - configure.ac: next release is 2.27.90, not 2.27.6 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit aa6ccc4a0104efc04e999d9e7811abf0fdc1f5ab -Author: Xan Lopez -Date: Mon Jul 27 19:30:02 2009 +0300 - - configure.ac: post-release version bump - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 06427437544c12179f635f566b865f1135de92ff -Author: Xan Lopez -Date: Mon Jul 27 19:21:29 2009 +0300 - - NEWS: update for release - - NEWS | 14 ++++++++++++++ - 1 file changed, 14 insertions(+) - -commit 5f3e821120de4759f9930a5125feb0d78caec3d6 -Author: Mario Blättermann -Date: Sun Jul 26 18:04:45 2009 +0200 - - Updated German translation - - help/de/de.po | 785 ++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 410 insertions(+), 375 deletions(-) - -commit 4c192d362a77b74a34cde5a3a80b69ff9a05082a -Author: Xan Lopez -Date: Fri Jul 24 19:28:22 2009 +0300 - - ephy-embed-prefs.c: also set the sans-serif family - - embed/ephy-embed-prefs.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 63b75ff9e83a2ee7bd33ec221477a63fdf66d0d2 -Author: Xan Lopez -Date: Fri Jul 24 19:05:51 2009 +0300 - - ephy-embed-prefs: use the font families set in the GNOME preferences - - We were using the defaults set in WebKitGTK+. - - embed/ephy-embed-prefs.c | 39 +++++++++++++++++++++++++++++++++++++-- - embed/ephy-embed-prefs.h | 4 ++-- - 2 files changed, 39 insertions(+), 4 deletions(-) - -commit 76d8dc8d01dd1458cb4a2ccd0f22662427e7a21e -Author: Xan Lopez -Date: Fri Jul 24 18:48:23 2009 +0300 - - ephy-embed-prefs.h: remove duplicated define - - embed/ephy-embed-prefs.h | 1 - - src/ephy-window.c | 4 ++-- - src/window-commands.c | 2 +- - 3 files changed, 3 insertions(+), 4 deletions(-) - -commit 58b190e75d257ca3099b93ad013a2fc3303f4db7 -Author: Taylon Silmer -Date: Thu Jul 23 23:14:02 2009 -0300 - - Updated Brazilian Portuguese translation. - - Translation by Taylon Silmer with improvements by me. - - po/pt_BR.po | 2056 ++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1031 insertions(+), 1025 deletions(-) - -commit 8c9f8e984de0cd430f53140b816c476cf7e9dc67 -Author: Priit Laes -Date: Wed Jul 22 10:43:34 2009 +0300 - - Update various outdated documents. - - ChangeLog.README, HACKING, README, TODO: Updates, spelling fixes, etc. - - Signed-off-by: Priit Laes - - ChangeLog.README | 4 ++-- - HACKING | 5 +++-- - README | 59 ++++++++++++++++++++++++-------------------------------- - TODO | 7 ------- - 4 files changed, 30 insertions(+), 45 deletions(-) - -commit 65b9077bd1eedc7a32279990638f0e98e3d9563d -Author: Xan Lopez -Date: Wed Jul 22 01:25:14 2009 +0300 - - ephy-navigation-action.c: do not jump to new tab when middle-clicking on back/forward - - src/ephy-navigation-action.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit f016ecc3cba44113df9641d6a3dceab9a14751ec -Author: Peter Bui -Date: Tue Jul 21 16:25:14 2009 +0300 - - ephy-favicon-cache.c: recognize icons with mime type image/vnd.microsoft.icon - - Bug #578575 - - Signed-off-by: Xan Lopez - - embed/ephy-favicon-cache.c | 1 + - 1 file changed, 1 insertion(+) - -commit 28adb2eea6aafcee7e092f6ee963e51b1cf7d1a9 -Author: Sha Liu -Date: Tue Jul 21 16:02:30 2009 +0300 - - mime-types-permission.xml: add gEDA mime types as safe. - - Bug #565346 - - data/mime-types-permissions.xml | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit bae9f745db2efcebc6b35dd9a1529e3883a20516 -Author: Xan Lopez -Date: Tue Jul 21 14:14:23 2009 +0300 - - ephy-navigation-action.c: add copyright - - src/ephy-navigation-action.c | 1 + - 1 file changed, 1 insertion(+) - -commit 0afd94608d0e60c21d42637ea774829093ffdce8 -Author: Xan Lopez -Date: Tue Jul 21 14:13:24 2009 +0300 - - ephy-navigation-action.c: sort includes - - src/ephy-navigation-action.c | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit 6055b75ef2ae0e895a33dc00814258abaff48943 -Author: Xan Lopez -Date: Tue Jul 21 14:11:37 2009 +0300 - - ephy-navigation-action.c: fixup for bug #583440 - - Need to handle properly the history copying either by using - ephy_shell_new_tab or, in the case of forward history, by manually - getting the forward URI. - - src/ephy-navigation-action.c | 36 ++++++++++++++++++++++++++---------- - 1 file changed, 26 insertions(+), 10 deletions(-) - -commit f670d8f8c5ffddf2a72fdd91dc40c49f7ac544e9 -Author: Xan Lopez -Date: Tue Jul 21 11:12:08 2009 +0300 - - Try again to fix bug #588143 - - Simpler (and working) solution: take into account the loading status - of the view when deciding if we should use it, if it's blank, to load - new pages passed through the command line. - - embed/ephy-embed.c | 6 ------ - src/ephy-shell.c | 9 +++++---- - 2 files changed, 5 insertions(+), 10 deletions(-) - -commit 4085c2c058bb02bbf65a929075edf2dada6dec8a -Author: Xan Lopez -Date: Mon Jul 20 23:50:20 2009 +0300 - - ephy-navigation-action.c: fix middle-click on back/forward - - We were getting a new embed but not its web view, which is what we use - to load the page. (bug #583440) - - src/ephy-navigation-action.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 588a77ba5c2488b7a3becd7caa8d408021cffff2 -Author: Xan Lopez -Date: Mon Jul 20 23:33:07 2009 +0300 - - mime-types-permissions.xml: add 7z to the known/safe types list. - - Bug #582905 - - data/mime-types-permissions.xml | 1 + - 1 file changed, 1 insertion(+) - -commit 78a3806554cd947dbc78fa4da30ab37d2b968659 -Author: Xan Lopez -Date: Mon Jul 20 23:17:58 2009 +0300 - - ephy-embed.c: use 'address' if 'typed-address' is NULL when updating the address - - Fixes the updating of the current address before the load starts when - loading pages from the command line (bug #588143) - - embed/ephy-embed.c | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 5f97a28f42941bda9b9a29d792da65f8395e651e -Author: Benjamin Otte -Date: Sun Jul 19 20:30:02 2009 +0200 - - Fix gcc warnings by using GINT_TO_POINTER/GPOINTER_TO_INT - - src/ephy-history-window.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 82ec42b36a57e402729e0eba7edf2401b8061836 -Author: Chao-Hsiung Liao -Date: Wed Jul 15 06:07:38 2009 +0800 - - Updated Traditional Chinese translation(Hong Kong and Taiwan) - - po/zh_HK.po | 2404 +++++++++++++++++++++++++++-------------------------------- - po/zh_TW.po | 2091 ++++++++++++++++++++++++++------------------------- - 2 files changed, 2123 insertions(+), 2372 deletions(-) - -commit fcc6d73702bc50b5743cafb74cdfba2ebcaa8e70 -Author: Xan Lopez -Date: Mon Jul 13 00:31:33 2009 +0300 - - configure.ac: post-release version bump. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0a74eb3b15553436dd9ffdea1efb2acedf65c86f -Author: Xan Lopez -Date: Mon Jul 13 00:04:19 2009 +0300 - - configure.ac: depend on WebKitGTK+ 1.1.11 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7ed504e3bd0c90fb492f19b5b026493dabaeac3f -Author: Xan Lopez -Date: Sun Jul 12 21:45:43 2009 +0300 - - NEWS: update for release. - - NEWS | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -commit 1e8489797a2a5e8d21364e81d8719c3fc800feee -Author: Benjamin Otte -Date: Fri Jul 10 14:03:52 2009 +0200 - - Performance: Set a fixed width on autosized cell renderer - - The text cell renderer in use by the url autocompletion is the only - renderer that expands. As the width of the entry completion is known in - advance (as big as the entry you are completing on), we can set a fixed - width. Since the height of the cell renderer is hardcoded, too, the - complete size of the cell renderer is known in advance and Gtk skips - layouting the text to compute the size. - - This is a noticable performance improvement, expecially when the - completion contains lots of visible entries. - - lib/widgets/ephy-location-entry.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit a6f2b6193825f06ce9eb9de69f9ef253df9ed56d -Author: Benjamin Otte -Date: Fri Jul 10 14:02:41 2009 +0200 - - Require x11 - - Epiphany has hacky code that uses libX11 directly, so Epiphany needs to - depend on it instead of relying on other libs to pull it in. - - configure.ac | 1 + - 1 file changed, 1 insertion(+) - -commit ae36c632f6991cbea00663641d050414bc149b21 -Author: Benjamin Otte -Date: Fri Jul 10 14:01:48 2009 +0200 - - Require gthread-2.0 - - Applications calling g_thread_init() must require it explicitly. - It is automatically pulled by Orbit via gconf, but Epiphany should not - rely on that. - - configure.ac | 1 + - 1 file changed, 1 insertion(+) - -commit bf4426b5fe46c26c08453310715bc5c562d5fbd0 -Author: Xan Lopez -Date: Sat Jul 11 23:15:38 2009 +0300 - - ephy-history-window.c: do not use deprecated function. - - src/ephy-history-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 37a81fb77cb914901e1baba0cd33cda66dd2b9dc -Author: Xan Lopez -Date: Sat Jul 11 23:11:53 2009 +0300 - - configure.ac: use SILENT_AM_RULES from automake 1.11 if possible. - - configure.ac | 3 +++ - 1 file changed, 3 insertions(+) - -commit 41d2622f1b29c5c9471b7c3a4a5f4f2422b649bf -Author: Xan Lopez -Date: Sat Jul 11 23:11:12 2009 +0300 - - dolt.m4: add support (just ignoring it) for --silent - - m4/dolt.m4 | 1 + - 1 file changed, 1 insertion(+) - -commit 839f7e0b4d09b1994810220451a20bb56bfe71f1 -Author: Maxim V. Dziumanenko -Date: Thu Jul 9 20:46:18 2009 +0300 - - Updated Ukrainian translation - - po/uk.po | 2093 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1056 insertions(+), 1037 deletions(-) - -commit aea158e3a9bb3a41d056ce57dea12ea8b2d555f6 -Author: Benjamin Otte -Date: Wed Jul 8 14:01:34 2009 +0200 - - don't free title string twice - - When the url is NULL, the title was freed twice - once after - giving to the GValue via ctext, once with g_free(). - - lib/widgets/ephy-location-entry.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8d0cbe9065b8568a2c077ded8d153a597fae6859 -Author: Benjamin Otte -Date: Tue Jul 7 20:20:05 2009 +0200 - - style fixes for a464b7332c02f6b4e34c5a7a88b8b93198f3e9be - - - indent correctly - - remove leftover unused variable - - src/ephy-completion-model.c | 8 +++----- - 1 file changed, 3 insertions(+), 5 deletions(-) - -commit 0d1ed2f9b621e6354b6904ea95d4dc5043b4e09f -Author: Benjamin Otte -Date: Sun Jul 5 16:53:13 2009 +0200 - - remove unused references to history - - src/ephy-location-action.c | 5 ----- - 1 file changed, 5 deletions(-) - -commit a464b7332c02f6b4e34c5a7a88b8b93198f3e9be -Author: Benjamin Otte -Date: Fri Jul 3 14:13:57 2009 +0200 - - compute base address with strchr and without regexps - - This fixes two problems: - 1) It improves performance a lot. - 2) The regexp in use was not strict enough. It happily matched non-base - addresses. (i.e. http://example.com/your-mom/ ) - - src/ephy-completion-model.c | 33 +++++++++++++++++++++++++-------- - 1 file changed, 25 insertions(+), 8 deletions(-) - -commit da229480300ab899a825e4bb23c3497a5c00f8e7 -Author: Reinout van Schouwen -Date: Sun Jul 5 19:31:53 2009 +0200 - - Updated Dutch translation - - po/nl.po | 2143 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1083 insertions(+), 1060 deletions(-) - -commit c736032a99be3d286f179cd46a0703435107f1a9 -Author: Ivar Smolin -Date: Fri Jun 26 22:37:52 2009 +0300 - - Updating Estonian translation - - po/et.po | 20 ++++++++++++++++---- - 1 file changed, 16 insertions(+), 4 deletions(-) - -commit 1f787ba61eeb8df3093975d474710a2d8a8cdc6e -Author: Nguyễn Thái Ngọc Duy -Date: Fri Jun 26 09:09:25 2009 +1000 - - po/vi.po: updated Vietnamese translation - - po/vi.po | 111 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 50 insertions(+), 61 deletions(-) - -commit 57f3dbe87a14e38552e4ea21b9cdc6812566ff14 -Author: Nguyễn Thái Ngọc Duy -Date: Fri Jun 26 09:09:09 2009 +1000 - - po/vi.po: intltool-update - - po/vi.po | 2213 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1108 insertions(+), 1105 deletions(-) - -commit 268c8b4b913adab15187b544108c197bc7f472a0 -Author: Xan Lopez -Date: Sun Jun 21 11:12:31 2009 +0300 - - ephy-embed.h: remove unneeded header. - - embed/ephy-embed.h | 1 - - 1 file changed, 1 deletion(-) - -commit a53d67263986a2edb8d7a5d85df91c73bdbb80cb -Author: Xan Lopez -Date: Sun Jun 21 11:11:06 2009 +0300 - - Add a function to get the EphyWebView inside an EphyEmbed. - - For the benefit of bindings. - - embed/ephy-embed.c | 15 +++++++++++++++ - embed/ephy-embed.h | 3 ++- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit f570f60a13418e0dfe7bc75f7f3b2f5555d1fa06 -Author: Xan Lopez -Date: Sun Jun 21 01:33:11 2009 +0300 - - ephy-web-view.c: adapt to another API change in WebKitGTK+. - - The bf list now refs newly added items, mostly for the convenience of - bindings. - - embed/ephy-web-view.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit da2040aa0dbc67ff27f7ae28da0fccd803f051bf -Author: Xan Lopez -Date: Tue Jun 16 23:27:49 2009 +0300 - - ephy-web-view.c: do not try to get the EphyWebView inside an EphyWebView. - - Not many chances it will work. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2e1e3e4fff9641bfa633f92502f50c2261641048 -Author: Xan Lopez -Date: Tue Jun 16 23:20:06 2009 +0300 - - ephy-window.c: can't use pspec to figure out if we should sync progress. - - Since it breaks syncing when switching between loading tabs. Need to - do this properly and wait for webkit bug #26409. - - src/ephy-window.c | 11 +++++------ - 1 file changed, 5 insertions(+), 6 deletions(-) - -commit 442d30e4e4fa9d97c6b3c0f202e457a8fdf193cf -Author: Xan Lopez -Date: Tue Jun 16 16:24:56 2009 +0300 - - Simplify widget hierarchy. - - Get rid of a dummy GtkBin layer. - - embed/ephy-embed-utils.h | 6 ++--- - embed/ephy-embed.c | 66 +++++++++++++----------------------------------- - embed/ephy-embed.h | 4 +-- - 3 files changed, 22 insertions(+), 54 deletions(-) - -commit 0c5500f9a15581b1689d7187d308f9ed7eb15f5e -Author: Xan Lopez -Date: Tue Jun 16 15:08:09 2009 +0300 - - ephy-notebook.c: connect to embed-title, not to title. - - embed-title is the poorly named wrapper over the WebKitWebView's title - signal. - - src/ephy-notebook.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2c51cb761fe6392f136611cb73d6eeda223288fb -Author: Xan Lopez -Date: Tue Jun 16 14:15:43 2009 +0300 - - Move the get_title_composite function to EphyWebView. - - embed/ephy-embed-utils.c | 36 ------------------------------------ - embed/ephy-embed-utils.h | 1 - - embed/ephy-web-view.c | 37 +++++++++++++++++++++++++++++++++++++ - embed/ephy-web-view.h | 2 +- - src/ephy-tabs-menu.c | 2 +- - src/ephy-window.c | 2 +- - 6 files changed, 40 insertions(+), 40 deletions(-) - -commit ad2fb83740b906a3484faec8bd7934495730931e -Author: Xan Lopez -Date: Tue Jun 16 13:40:02 2009 +0300 - - ephy-window.c: remove debug message. - - src/ephy-window.c | 1 - - 1 file changed, 1 deletion(-) - -commit 5886cdb08578e080f1a0ec8fe1a0c201aab4612d -Author: Xan Lopez -Date: Mon Jun 15 19:07:46 2009 +0300 - - ephy-window.c: adapt to API change in WebKitGTK+. - - Progress from the WebView goes from 0.0 to 1.0 now. - - src/ephy-window.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit bdf8631b265ae36af46b871d268977a9f666cf4b -Author: Xan Lopez -Date: Mon Jun 15 21:00:59 2009 +0300 - - configure.ac: post-release version bump. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 30af1fc4748fdf8009c8c0d1787e15bf16bd064f -Author: Xan Lopez -Date: Mon Jun 15 17:44:21 2009 +0300 - - NEWS: update for 2.27.3 release. - - NEWS | 20 ++++++++++++++++++++ - 1 file changed, 20 insertions(+) - -commit 16fb3a7bc731fc9ab15ddae6df3c3a228f2a9aba -Author: Xan Lopez -Date: Mon Jun 15 17:31:33 2009 +0300 - - configure.ac: require WebKitGTK+ 1.1.10. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d8d990befed09551e63d6d80703665e8216e4093 -Author: Xan Lopez -Date: Sun Jun 14 13:45:23 2009 +0300 - - ephy-web-view.c: use 'load-status' property from WebKitWebView also internally. - - Get rid of our 'load-status' property, and just keep the API semantics - of the ephy_web_view_get_load_status function using the - WebKitWebView's 'load-status' property. - - embed/ephy-web-view.c | 43 +++++++------------------------------------ - 1 file changed, 7 insertions(+), 36 deletions(-) - -commit f86a9e936f34722026a141cffa4d5379f21b1fe1 -Author: Daniel Nylander -Date: Sun Jun 14 11:27:56 2009 +0200 - - Updated sv translation (Daniel Nylander) - - po/sv.po | 847 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 454 insertions(+), 393 deletions(-) - -commit 3f2236c3be0095310866724caf02297918b3fb68 -Author: Xan Lopez -Date: Sun Jun 14 02:54:37 2009 +0300 - - ephy-window.c: remove unused variable. - - src/ephy-window.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 9fffee107074e250a5c9fb086da44d764a0454af -Author: Xan Lopez -Date: Sun Jun 14 02:50:06 2009 +0300 - - Use WebKitWebView::load-status instead of our own solution. - - embed/ephy-embed.c | 159 ++++++++++++++++++----------------------------------- - src/ephy-window.c | 9 ++- - 2 files changed, 59 insertions(+), 109 deletions(-) - -commit ed081ffca28639a928d9cb85bbbc3cb0474b9729 -Author: Xan Lopez -Date: Sun Jun 14 01:26:03 2009 +0300 - - ephy-window.c: a different hack to not show progress when loading about:blank. - - src/ephy-window.c | 12 +++++++++++- - 1 file changed, 11 insertions(+), 1 deletion(-) - -commit a1af750fa1343236fd81ea9c1b6962e8ebabd4af -Author: Xan Lopez -Date: Sun Jun 14 01:04:41 2009 +0300 - - Get rid of redundant 'load-progress' property in EphyWebView. - - We now use WebKitWebView's 'progress' property directly. - - The "opening about:blank blinks the entry" bug is back because for - some reason a) webkit reports a 10% progress for that URL b) get_uri - reports NULL until 100% is loaded for only that page, so blacklisting - by URI is not possible either. - - embed/ephy-embed.c | 6 ++-- - embed/ephy-web-view.c | 77 --------------------------------------------------- - embed/ephy-web-view.h | 3 -- - src/ephy-window.c | 14 ++-------- - 4 files changed, 5 insertions(+), 95 deletions(-) - -commit 44e17944c010fd3e4aeb2b3eacd6ccc0be624df8 -Author: Xan Lopez -Date: Sat Jun 13 22:28:18 2009 +0300 - - ephy-web-view.c: s/embed/view/ in a few places. - - embed/ephy-web-view.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit e32e025e8feb9cfffe628d2cfef39c587a82bf0b -Author: Mark Krapivner -Date: Fri Jun 12 11:05:40 2009 +0300 - - Updated Hebrew translation - - po/he.po | 731 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 371 insertions(+), 360 deletions(-) - -commit ea5a1275dc414d8989e82a096ecb2f1da50566ea -Author: Xan Lopez -Date: Fri Jun 12 02:41:11 2009 +0300 - - ephy-shell.c: do not set typed address when opening a new tab. - - Fixes missing URI before load-committed but gives weird problems with - about:blank getting stuck, need to think this through. - - src/ephy-shell.c | 3 --- - 1 file changed, 3 deletions(-) - -commit 905111b75a1b400a1fe4bd60c191e21449923f77 -Author: Xan Lopez -Date: Fri Jun 12 01:27:18 2009 +0300 - - ephy-shell.c: update for latest changes in WebKitNetworkRequest. - - WebKitNetworkRequest objects won't fail to be constructed since - WebKitGTK+ 1.1.9, worst case they'll have a bogus URI and trying to - load them will fail. - - src/ephy-shell.c | 20 +++++++------------- - 1 file changed, 7 insertions(+), 13 deletions(-) - -commit acf23c469e64323179150713440c83d546b19560 -Author: Ivar Smolin -Date: Thu Jun 11 20:53:06 2009 +0300 - - Updating Estonian translation - - po/et.po | 15 +++++++++------ - 1 file changed, 9 insertions(+), 6 deletions(-) - -commit 3b6e87a4e480192c3597a4462b126360573937c6 -Author: Xan Lopez -Date: Thu Jun 11 00:28:18 2009 +0300 - - ephy-shell.c: set typed address when opening a page in a new tab too. - - src/ephy-shell.c | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -commit 5d964f6ad1d5465d420bf9cd964ad931c5c75204 -Author: Kjartan Maraas -Date: Wed Jun 10 10:18:34 2009 +0200 - - Updated Norwegian bokmål translation. - - po/nb.po | 1807 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 832 insertions(+), 975 deletions(-) - -commit a0ca26539dfafa251970b2b923bcc385bb65352a -Author: Ivar Smolin -Date: Tue Jun 9 22:47:37 2009 +0300 - - Updating Estonian translation - - po/et.po | 501 +++++++++++++++++++++++++-------------------------------------- - 1 file changed, 200 insertions(+), 301 deletions(-) - -commit 6778c7c869a2b0b3365121eaa4291dd475869b0a -Author: Claude Paroz -Date: Tue Jun 9 20:15:19 2009 +0200 - - Updated French translation - - Contributed by Yannick Tailliez and Claude Paroz - - po/fr.po | 1963 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 904 insertions(+), 1059 deletions(-) - -commit 388b3cf6efc6210a5b329ea7d16d108da2931214 -Author: Xan Lopez -Date: Tue Jun 9 12:42:46 2009 +0300 - - ephy-tabs-menu.c: pass correct parameter to sync_tab_title function. - - src/ephy-tabs-menu.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6df28df51d598e2fc034e709ff875fd8cff67e9a -Author: Xan Lopez -Date: Mon Jun 8 14:18:00 2009 +0300 - - ephy-tabs-menu.c: tab titles are not updated. - - Code was not updated to reflect latest refactorings. - - Bug #585139 - - src/ephy-tabs-menu.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit a36fa2b258e671506d2c433839e09a34939f4cb1 -Author: Xan Lopez -Date: Sat Jun 6 02:00:46 2009 +0300 - - epiphany.h.in: remove old includes. - - src/epiphany.h.in | 2 -- - 1 file changed, 2 deletions(-) - -commit 12e930870c451e850c18818842ba7f2d5175231b -Author: Xan Lopez -Date: Sat Jun 6 01:13:27 2009 +0300 - - Remove EphyEmbedFactory from docs. - - doc/reference/epiphany-docs.sgml | 1 - - doc/reference/epiphany-sections.txt | 6 ------ - 2 files changed, 7 deletions(-) - -commit df674714518414de88c40b6f2c25831a25f5f933 -Author: Xan Lopez -Date: Sat Jun 6 01:10:24 2009 +0300 - - downloader-view.c: fix warning. - - embed/downloader-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4393ed18c75a7870a6ec93c0c1df6fa00fba440b -Author: Xan Lopez -Date: Sat Jun 6 01:06:09 2009 +0300 - - ephy-embeds-single.c: style fix. - - embed/ephy-embed-single.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6600fcbe0801f040d230aef4eedc5a6ff672b659 -Author: Xan Lopez -Date: Sat Jun 6 00:55:30 2009 +0300 - - ephy-embed-single.*: re-indent and untabify. - - embed/ephy-embed-single.c | 241 +++++++++++++++++++++++----------------------- - embed/ephy-embed-single.h | 73 +++++++------- - 2 files changed, 158 insertions(+), 156 deletions(-) - -commit 2993c20c6262f9cb8257345654873d8e31c082a6 -Author: Xan Lopez -Date: Sat Jun 6 00:48:46 2009 +0300 - - configure.ac: remove embed/webkit Makefile generation. - - configure.ac | 1 - - 1 file changed, 1 deletion(-) - -commit eccc3e6712f7ac42173ff9be6398519500d92fce -Author: Xan Lopez -Date: Sat Jun 6 00:42:56 2009 +0300 - - POTFILES.in: add ephy-web-view.c - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit b48d7f481c6c9843bb5015d26e397d53daa97420 -Author: Xan Lopez -Date: Sat Jun 6 00:40:32 2009 +0300 - - POTFILES.in: remove leftovers. - - po/POTFILES.in | 2 -- - 1 file changed, 2 deletions(-) - -commit f1739ae27f88f7e6b5a83466ac1321657d369312 -Author: Xan Lopez -Date: Sat Jun 6 00:37:22 2009 +0300 - - doc/reference/Makefile.am: remove leftovers. - - doc/reference/Makefile.am | 3 --- - 1 file changed, 3 deletions(-) - -commit 045e3f0484d48581a021433e2ec775139c28fedf -Author: Xan Lopez -Date: Sat Jun 6 00:34:19 2009 +0300 - - src/Makefile.am: remove webkit embed library, it does not exist anymore. - - src/Makefile.am | 1 - - 1 file changed, 1 deletion(-) - -commit 9ac17ac272eb0e08c54a44a7269add7de57a44ea -Author: Xan Lopez -Date: Sat Jun 6 00:26:49 2009 +0300 - - Remove Python support. - - The supported language for extensions other than C/C++ is now - JavaScript through Seed. - - Makefile.am | 1 - - README.Python | 26 - - configure.ac | 102 -- - data/epiphany.m4 | 13 - - doc/reference/Makefile.am | 8 - - m4/python.m4 | 62 - - src/Makefile.am | 257 --- - src/ephy-extensions-manager.c | 16 - - src/ephy-python-extension.c | 339 ---- - src/ephy-python-extension.h | 62 - - src/ephy-python-loader.c | 113 -- - src/ephy-python-loader.h | 62 - - src/ephy-python.c | 133 -- - src/ephy-python.h | 39 - - src/ephy-window.c | 8 - - src/epiphany.defs | 3437 ----------------------------------------- - src/epiphany.override | 428 ----- - 17 files changed, 5106 deletions(-) - -commit 8cc5c0f0ceca462741ece79b0ed6e43da878656f -Author: Xan Lopez -Date: Sat Jun 6 00:09:47 2009 +0300 - - Remove embedfactory library from Makefiles. - - doc/reference/Makefile.am | 1 - - src/Makefile.am | 3 --- - 2 files changed, 4 deletions(-) - -commit 963f2e49a3bc2248aa212d6c4d0203f485e27b98 -Author: Xan Lopez -Date: Sat Jun 6 00:09:38 2009 +0300 - - ephy-window.c: silence warning. - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 23fa2e15713edb80aadf60df21dda1795dfab74d -Author: Xan Lopez -Date: Sat Jun 6 00:04:24 2009 +0300 - - Get rid of EphyEmbedFactory. - - It's useless now, since there's only one backend. - - embed/Makefile.am | 15 +----------- - embed/ephy-embed-factory.c | 58 ---------------------------------------------- - embed/ephy-embed-factory.h | 37 ----------------------------- - embed/ephy-embed-shell.c | 3 +-- - embed/ephy-embed.c | 1 - - embed/ephy-favicon-cache.c | 3 +-- - src/ephy-shell.c | 3 +-- - src/ephy-window.c | 3 +-- - src/popup-commands.c | 7 +++--- - src/window-commands.c | 5 ++-- - 10 files changed, 10 insertions(+), 125 deletions(-) - -commit 914b6f95e19447d1b25209b9bb3cda2942513775 -Author: Xan Lopez -Date: Fri Jun 5 23:57:38 2009 +0300 - - Make EphyEmbedPersist a non-interface type. - - embed/Makefile.am | 3 -- - embed/ephy-embed-factory.c | 3 +- - embed/ephy-embed-persist.c | 12 +++--- - embed/webkit/Makefile.am | 16 -------- - embed/webkit/webkit-embed-persist.c | 79 ------------------------------------- - embed/webkit/webkit-embed-persist.h | 59 --------------------------- - 6 files changed, 7 insertions(+), 165 deletions(-) - -commit c3c1771fb6776ee3371ef06e5509d7e347880464 -Author: Xan Lopez -Date: Fri Jun 5 23:50:06 2009 +0300 - - Make EphyEmbedSingle a non-interface type. - - doc/reference/Makefile.am | 2 - - embed/ephy-embed-factory.c | 3 +- - embed/ephy-embed-shell.c | 2 +- - embed/ephy-embed-single.c | 302 ++++++++++++++++++++++++++------ - embed/ephy-embed-single.h | 33 ++-- - embed/webkit/Makefile.am | 4 +- - embed/webkit/webkit-embed-single.c | 343 ------------------------------------- - embed/webkit/webkit-embed-single.h | 55 ------ - 8 files changed, 268 insertions(+), 476 deletions(-) - -commit ecd30f7b95964ec717d5da6873492fab939f2523 -Author: Xan Lopez -Date: Fri Jun 5 19:01:59 2009 +0300 - - Fold WebKitEmbedPrefs into EphyEmbedPrefs. - - embed/Makefile.am | 3 +- - embed/ephy-embed-prefs.c | 240 ++++++++++++++++++++++++++++++++++++ - embed/ephy-embed-prefs.h | 35 ++++++ - embed/ephy-embed.c | 5 +- - embed/ephy-web-view.c | 1 - - embed/webkit-embed-prefs.c | 241 ------------------------------------- - embed/webkit-embed-prefs.h | 33 ----- - embed/webkit/webkit-embed-single.c | 6 +- - 8 files changed, 281 insertions(+), 283 deletions(-) - -commit 7792ee06ab725d997a2f288357cbe658525a120a -Author: Xan Lopez -Date: Fri Jun 5 18:49:22 2009 +0300 - - Kill EphyBaseEmbed, move the small widget logic it had to EphyEmbed. - - embed/Makefile.am | 2 - - embed/ephy-base-embed.c | 101 ------------------------------------------------ - embed/ephy-base-embed.h | 63 ------------------------------ - embed/ephy-embed.c | 49 ++++++++++++++++++++++- - 4 files changed, 48 insertions(+), 167 deletions(-) - -commit b8fa1b0cc55b60a0363a0cbe82e01e0d55e36e63 -Author: Xan Lopez -Date: Fri Jun 5 18:40:11 2009 +0300 - - Change EphyEmbed to not be an interface type. - - Holds the code that used to be in WebKitEmbed, which is now dead. - - embed/Makefile.am | 5 +- - embed/ephy-embed-factory.c | 3 +- - embed/ephy-embed-utils.h | 2 +- - embed/ephy-embed.c | 764 +++++++++++++++++++++++++++++++++++++ - embed/ephy-embed.h | 59 +++ - embed/ephy-web-view.h | 2 + - embed/webkit-embed-prefs.c | 241 ++++++++++++ - embed/webkit-embed-prefs.h | 33 ++ - embed/webkit/Makefile.am | 4 - - embed/webkit/webkit-embed-prefs.c | 241 ------------ - embed/webkit/webkit-embed-prefs.h | 33 -- - embed/webkit/webkit-embed.c | 772 -------------------------------------- - embed/webkit/webkit-embed.h | 58 --- - 13 files changed, 1104 insertions(+), 1113 deletions(-) - -commit 8f3aa835aa3fb12e8f9805c3ecb454027398102c -Author: Xan Lopez -Date: Fri Jun 5 16:32:55 2009 +0300 - - Move all methods, signals and properties from EphyEmbed and EphyBaseEmbed to EphyWebView. - - Those two embed classes are pretty much dummy leftovers, so it should be - easier to remove them now. - - embed/ephy-base-embed.c | 1402 +---------------------------- - embed/ephy-base-embed.h | 25 - - embed/ephy-embed-container.c | 10 +- - embed/ephy-embed-container.h | 5 +- - embed/ephy-embed-single.c | 2 +- - embed/ephy-embed-single.h | 3 +- - embed/ephy-embed-utils.c | 16 +- - embed/ephy-embed-utils.h | 5 +- - embed/ephy-embed.c | 771 ---------------- - embed/ephy-embed.h | 276 ------ - embed/ephy-web-view.c | 1993 +++++++++++++++++++++++++++++++++++++++++- - embed/ephy-web-view.h | 192 +++- - embed/webkit/webkit-embed.c | 184 +--- - src/Makefile.am | 1 + - src/ephy-encoding-dialog.c | 8 +- - src/ephy-location-action.c | 5 +- - src/ephy-lockdown.c | 8 +- - src/ephy-navigation-action.c | 4 +- - src/ephy-notebook.c | 36 +- - src/ephy-session.c | 20 +- - src/ephy-shell.c | 17 +- - src/ephy-shell.h | 2 +- - src/ephy-tabs-menu.c | 2 +- - src/ephy-toolbar.c | 5 +- - src/ephy-window.c | 286 +++--- - src/ephy-window.h | 2 +- - src/popup-commands.c | 2 +- - src/ppview-toolbar.c | 29 +- - src/prefs-dialog.c | 3 +- - src/window-commands.c | 16 +- - 30 files changed, 2473 insertions(+), 2857 deletions(-) - -commit 1d49b43e4da3c5153a444596b24340d40ad98d31 -Author: Holger Hans Peter Freyther -Date: Wed Jun 3 11:26:51 2009 +0300 - - ephy-location-action.c: strip whitespace from URLs before loading. - - Bug #584466 - - src/ephy-location-action.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 218dbe9135658080697a7b984a6791d1b96ee996 -Author: Jorge Gonzalez -Date: Tue Jun 2 20:17:57 2009 +0200 - - Updated Spanish translation - - po/es.po | 34 +++++++++++++++++----------------- - 1 file changed, 17 insertions(+), 17 deletions(-) - -commit f4ad93a86c8087df1824531fee88fb36e2c7fc26 -Author: Xan Lopez -Date: Tue Jun 2 19:12:12 2009 +0300 - - ephy-shell.c: check that the network request is not NULL before unrefing it. - - It won't be created with, for example, about:blank. - - src/ephy-shell.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit a62be2bb0ad051a60b99b02e39c58f96dd5b3b9e -Author: Xan Lopez -Date: Tue Jun 2 18:56:28 2009 +0300 - - Move load_url method to EphyWebView. - - embed/ephy-embed.c | 15 --------------- - embed/ephy-embed.h | 5 ----- - embed/ephy-web-view.c | 17 +++++++++++++++++ - embed/ephy-web-view.h | 3 +++ - embed/webkit/webkit-embed.c | 29 ++++------------------------- - src/ephy-shell.c | 3 +-- - src/ephy-window.c | 4 ++-- - src/epiphany.defs | 9 --------- - src/popup-commands.c | 8 ++++---- - 9 files changed, 31 insertions(+), 62 deletions(-) - -commit 9f4b66ef75418ea4f51179432f4d5aeca4e586ed -Author: Xan Lopez -Date: Mon Jun 1 18:47:48 2009 +0300 - - Remove ephy_embed_load, it's obsoleted by ephy_web_view_load_request. - - embed/ephy-embed.c | 17 ----------------- - embed/ephy-embed.h | 6 ------ - embed/webkit/webkit-embed.c | 11 ----------- - 3 files changed, 34 deletions(-) - -commit 09981137f2f8563e9936b38cd7f8bfbb8c5bc95a -Author: Xan Lopez -Date: Mon Jun 1 11:17:50 2009 +0300 - - ephy-web-view.c: use nil for false value in elisp, not 'f'. - - embed/ephy-web-view.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2aa3ce4a65e157968b159554ecb554a269a3915c -Author: Gustavo Noronha Silva -Date: Mon Jun 1 23:42:42 2009 -0300 - - Correctly handle the 'cancel' case in the download decision dialog - - Bug #583855 - - The code that handled responses for the download decision dialog was - getting the downloader view from the embed too early. This change - confines the request for the downloader view to the condition block - that actually uses it. - - embed/webkit/webkit-embed.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 184f7e5e525b404dafc6decfea9dff0586eaae37 -Author: Mario Blättermann -Date: Mon Jun 1 12:00:22 2009 +0200 - - Changed mail addresses in German doc translation - - help/de/de.po | 2075 ++++++++++++++++++++++++++++++++++++--------------------- - 1 file changed, 1323 insertions(+), 752 deletions(-) - -commit f25dc37fd237c7c211130e47a9bf5a243c6a5c5e -Author: Xan Lopez -Date: Sat May 30 20:50:38 2009 +0300 - - webkit-embed.c: we still do need to update loading_uri here. - - Fell through the cracks when moving the normalization higher on the - stack. - - embed/webkit/webkit-embed.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit a91b20c897807e39c3e05bd5f49b8bba03bd2e70 -Author: Xan Lopez -Date: Sat May 30 19:37:41 2009 +0300 - - ephy-shell.c: do not crash when loading about:blank ... - - src/ephy-shell.c | 11 +++++++---- - 1 file changed, 7 insertions(+), 4 deletions(-) - -commit 3191345e4aafa9ae92c676468e588b6d1df2862c -Author: Xan Lopez -Date: Sat May 30 19:21:03 2009 +0300 - - Move method to copy history between embeds/views to EphyWebView from EphyEmbed. - - Just part of the gradual progress to get rid of the Embed interface. - - doc/reference/epiphany-sections.txt | 4 --- - doc/reference/tmpl/ephy-embed.sgml | 1 - - doc/reference/tmpl/epiphany-unused.sgml | 35 ------------------------- - embed/ephy-embed.c | 22 ---------------- - embed/ephy-embed.h | 11 -------- - embed/ephy-web-view.c | 46 +++++++++++++++++++++++++++++++++ - embed/ephy-web-view.h | 3 +++ - embed/webkit/webkit-embed.c | 41 ----------------------------- - src/ephy-shell.c | 8 +++--- - src/ephy-window.c | 9 +++---- - src/epiphany.defs | 12 --------- - 11 files changed, 56 insertions(+), 136 deletions(-) - -commit d94e4eca61821f956c67e6a519c36be083dd794d -Author: Ask H. Larsen -Date: Sat May 30 17:32:42 2009 +0200 - - Updated Danish translation - - po/da.po | 2062 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1035 insertions(+), 1027 deletions(-) - -commit 0069cf09af9aade5290aba3a7fd1ac28b0d97c8c -Author: Diego Escalante Urrelo -Date: Fri May 29 23:31:57 2009 -0500 - - Include WebKit-1.0 in .gir creation - - src/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit f1785bf92adafcf633a22152c4eb38dcba1ab319 -Author: Gustavo Noronha Silva -Date: Wed Jan 14 22:52:10 2009 -0200 - - Remove LoadFlags - - They were used, it seems, to decide whether to allow Gecko to "fix" - the URL. WebKit has no such facility, and we are already doing our own - handling of URI normalization. - - embed/ephy-embed.c | 4 +--- - embed/ephy-embed.h | 8 -------- - embed/webkit/webkit-embed.c | 1 - - src/ephy-shell.c | 11 ----------- - src/ephy-window.c | 12 +----------- - 5 files changed, 2 insertions(+), 34 deletions(-) - -commit 0ce6fe842a2fc4c3155452f69247cdda97ab09d1 -Author: Gustavo Noronha Silva -Date: Sat Dec 27 16:33:40 2008 -0200 - - Move URL normalization out of embed, to a higher level - - We need this because not all code that loads URLs goes through embed - now. - - embed/webkit/webkit-embed.c | 14 +------------- - src/ephy-link.c | 19 ++++++++++++++++++- - 2 files changed, 19 insertions(+), 14 deletions(-) - -commit b8fbb465b2dd76b7fd27582fe9d376d870f404e0 -Author: Gustavo Noronha Silva -Date: Fri May 29 12:29:38 2009 -0300 - - Fix missing HTTP information when opening links in new tabs - - Bug #120341 - - This changeset reworks ephy_shell_new_tab_full (and its callers) to - use a WebKitNetworkRequest instead of an URL when handling openning - links in new tabs. This gains us the advantage of feeding the new - WebView with the same WebKitNetworkRequest WebKit would use to - navigate to the new address. - - src/ephy-session.c | 7 +++++-- - src/ephy-shell.c | 30 ++++++++++++++++++------------ - src/ephy-shell.h | 3 ++- - src/ephy-window.c | 14 +++++++------- - src/epiphany.defs | 2 +- - 5 files changed, 33 insertions(+), 23 deletions(-) - -commit 8f4747aa1731acf83f1bd7249b392d0cded08c4b -Author: Gustavo Noronha Silva -Date: Wed Jan 14 18:41:38 2009 -0200 - - Provide API to loading using WebKitNetworkRequest - - As the first API adition to out WebKitWebView subclass, we allow - Epiphany code to use a WebKitNetworkRequest to load pages. This way we - can use the full request information, not just the URI. - - embed/ephy-web-view.c | 19 +++++++++++++++++++ - embed/ephy-web-view.h | 3 +++ - 2 files changed, 22 insertions(+) - -commit 682bbd135a3cde308e5c067892ad43e2dcecb44f -Author: Gustavo Noronha Silva -Date: Wed Jan 14 11:31:17 2009 -0200 - - Adding a new EphyWebView object - - This is an object inheriting from WebKitWebView, and will be used to - house most of the functionality we move from EphyEmbed. - - embed/Makefile.am | 6 ++++- - embed/ephy-web-view.c | 57 +++++++++++++++++++++++++++++++++++++++ - embed/ephy-web-view.h | 65 +++++++++++++++++++++++++++++++++++++++++++++ - embed/webkit/webkit-embed.c | 5 ++-- - src/Makefile.am | 1 + - 5 files changed, 131 insertions(+), 3 deletions(-) - -commit 6eb907dcc69c4024bb86227522d6bb394028d670 -Author: drtvasudevan -Date: Fri May 29 11:08:06 2009 +0530 - - Updated Tamil translation - - po/ta.po | 114 +++++++++++++++++++++++++++++++++++++++++++++++++-------------- - 1 file changed, 90 insertions(+), 24 deletions(-) - -commit 4916b8718e065e37e45f5609ef1061f894fc71a0 -Author: Xan Lopez -Date: Thu May 28 19:16:39 2009 +0300 - - webkit-embed.c: do not reinvent ephy-embed-utils functions. - - embed/webkit/webkit-embed.c | 12 ++---------- - 1 file changed, 2 insertions(+), 10 deletions(-) - -commit 1a38edaef1a0f89e3964c82d321d9fd7db7dc6bf -Author: Xan Lopez -Date: Thu May 28 18:55:20 2009 +0300 - - webkit-embed: use C gettext macro for translation context. - - Patch by Claude Paroz, bug #583893 - - embed/webkit/webkit-embed.c | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -commit 5e83fc07ff785200e9dd5078ce903fb0b053e526 -Author: Xan Lopez -Date: Thu May 28 17:55:53 2009 +0300 - - Preserve back/forward history when opening links in new tabs/windows. - - Bug #583459. - - embed/ephy-embed-utils.h | 1 + - embed/webkit/webkit-embed.c | 31 +++++++++++++++++++++++++++++++ - src/ephy-navigation-action.c | 9 ++++----- - 3 files changed, 36 insertions(+), 5 deletions(-) - -commit 46fdef44c6e95fdaa841552a368d052b1164b983 -Author: Simos Xenitellis -Date: Tue May 26 22:48:55 2009 +0100 - - Fixed Greek translation for documentation. - - help/el/el.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7f7eb789c5967f5afe5a8413d178fd3398ea49ee -Author: Simos Xenitellis -Date: Tue May 26 22:36:25 2009 +0100 - - Fixed Greek translation for documentation. - - help/el/el.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ad9a3d7c097c9797ea6e1e28f5b4f3c5ecbae6f6 -Author: Claude Paroz -Date: Tue May 26 17:25:57 2009 +0200 - - Fix ne.po validity (Bug #521461) - - po/ne.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 5d28aa8f0c209182d947ce734c7bf39400ed89dc -Author: Xan Lopez -Date: Mon May 25 13:05:19 2009 +0300 - - configure.ac: post-release version bump. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7aba16ee241c41af183e865f5fab5765672bc4a4 -Author: Xan Lopez -Date: Mon May 25 09:59:40 2009 +0300 - - NEWS: update for 2.27.2 release. - - NEWS | 14 ++++++++++++++ - 1 file changed, 14 insertions(+) - -commit e07432e2b0abd294a334e40af6be49471ffd5b0f -Author: drtvasudevan -Date: Sun May 24 11:09:21 2009 +0530 - - Updated Tamil translation - - po/ta.po | 44 ++++++++++++++++++++++---------------------- - 1 file changed, 22 insertions(+), 22 deletions(-) - -commit 90d2483114256ead66009109a063af30378e8251 -Author: Xan Lopez -Date: Sat May 23 20:37:04 2009 +0300 - - configure.ac: bump required WebKitGTK+ version to 1.1.7 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d1418c5b1d28679d48ae0cba8ca10d18c6484c22 -Author: Jorge Gonzalez -Date: Sat May 23 19:48:43 2009 +0200 - - Updated Spanish translation - - po/es.po | 118 +++++++++++++++++++++++++++++++++++++++++++++++++-------------- - 1 file changed, 93 insertions(+), 25 deletions(-) - -commit 45cb67616a494da96eb93fa2678991b722f228fd -Author: Gustavo Noronha Silva -Date: Fri May 22 18:50:33 2009 -0300 - - Fix variable declaration mixed with the code. - - embed/webkit/webkit-embed.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 9365ffd004d6260e656453143eb32f333ae888a2 -Author: Gustavo Noronha Silva -Date: Fri May 22 18:42:46 2009 -0300 - - Reimplement the original download logic and dialog. - - We are still missing some of the MIME logic, pending on a WebKit - feature landing. - - embed/downloader-view.c | 51 +++++++++++++- - embed/downloader-view.h | 17 +++++ - embed/webkit/webkit-embed.c | 164 +++++++++++++++++++++++++++++++++++++++++++- - 3 files changed, 229 insertions(+), 3 deletions(-) - -commit 36a1ff182877766efa44d8b61eb0bc27e7716db1 -Author: Xan Lopez -Date: Thu May 21 19:47:47 2009 +0300 - - ephy-embed: remove scroll methods from embed - - The way to scroll now is through the adjustments bound to the view. - - embed/ephy-embed.h | 17 ----------------- - 1 file changed, 17 deletions(-) - -commit 0818bd6e0b90fe0ebefcc4556f36fb640c927ade -Author: drtvasudevan -Date: Wed May 20 17:27:52 2009 +0530 - - Updated Tamil translation - - po/ta.po | 2696 +++++++++++++++++++------------------------------------------- - 1 file changed, 807 insertions(+), 1889 deletions(-) - -commit 3c2e0c0f227e644064166a38be1a09d31693ed3e -Author: Nathan-J. Hirschauer -Date: Tue May 19 23:42:23 2009 +0200 - - Updated German translation. - - po/de.po | 5426 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 2562 insertions(+), 2864 deletions(-) - -commit caafbefceb2d2efdea4a558ade72b26b61377d4f -Author: Γιάννης Κατσαμπίρης -Date: Sat May 16 21:43:41 2009 +0100 - - updated Greek documentation translation - - help/el/el.po | 1169 +++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 635 insertions(+), 534 deletions(-) - -commit fed7af61fead91c87adb4fc2daa86ebe1036ae2c -Author: Simos Xenitellis -Date: Wed May 13 23:15:19 2009 +0100 - - Rectified Greek translation - - po/el.po | 4704 +++++++++++++++++++------------------------------------------- - 1 file changed, 1435 insertions(+), 3269 deletions(-) - -commit 25d8f4bc49b47c19081e22e6fc2873b2a85fb06a -Author: Ivar Smolin -Date: Tue May 12 09:20:15 2009 +0300 - - Updating Estonian translation - - po/et.po | 847 +-------------------------------------------------------------- - 1 file changed, 5 insertions(+), 842 deletions(-) - -commit 636947b0155ae6757a844bfd097d65dc42b151cc -Author: Tim Horton -Date: Sun May 10 16:06:43 2009 -0400 - - Update Seed extension wrapper to Seed API changes - - src/ephy-seed-extension.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit d169a54feebf6c3a92791fc8386080f6e5a061da -Author: Gil Forcada -Date: Sun May 10 11:00:39 2009 +0200 - - Fixed keyboard accelerator in Catalan translation - - po/ca.po | 1683 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 831 insertions(+), 852 deletions(-) - -commit 26a06d223a86521f5f22d786ea3e45b8e948002a -Author: Jorge Gonzalez -Date: Sun May 3 23:44:16 2009 +0200 - - Updated Spanish translation - - po/es.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 50e5645146d4b418b1033c23d3fde816d857d387 -Author: Jorge Gonzalez -Date: Sun May 3 13:38:03 2009 +0200 - - Updated Spanish translation - - po/es.po | 32 ++++++++++++++++---------------- - 1 file changed, 16 insertions(+), 16 deletions(-) - -commit c5c066c018d88220ca802125364b5a9f93da24f8 -Author: Jorge Gonzalez -Date: Sat May 2 12:57:29 2009 +0200 - - Updated Spanish translation - - po/es.po | 102 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 49 insertions(+), 53 deletions(-) - -commit 25a19724dd21c772fefde2398d65a7618c318cfb -Author: Yaron Shahrabani -Date: Fri May 1 00:53:44 2009 +0300 - - Updated Hebrew translation - - po/he.po | 3790 ++++++++++++++++++++++++-------------------------------------- - 1 file changed, 1465 insertions(+), 2325 deletions(-) - -commit f524d8dbcb85cdcbb7fc1fa309f9a893ef616458 -Author: Xan Lopez -Date: Tue Apr 28 10:50:46 2009 +0300 - - Implement caret browsing mode (bug #562621) - - embed/ephy-embed-prefs.h | 1 + - embed/webkit/webkit-embed-prefs.c | 5 ++++- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit dcae8dfd69b1052907b94fc300537a20999938dc -Author: Xan Lopez -Date: Tue Apr 28 11:35:20 2009 +0300 - - egg-editable-toolbar: sync to latest upstream version (bug #580557) - - lib/egg/egg-editable-toolbar.c | 20 ++++++++++++++++++-- - 1 file changed, 18 insertions(+), 2 deletions(-) - -commit 8951f7dc6b111e5297de24b868d12b5155241f3e -Author: Priit Laes -Date: Sat Apr 25 10:35:11 2009 +0300 - - ephy-embed: Mark favicon cache as dirty after deletion (bug #120826) - - embed/ephy-favicon-cache.c | 1 + - 1 file changed, 1 insertion(+) - -commit c1b05c09a100c3c9025b37143c89aa907a3c5d2a -Author: Xan Lopez -Date: Fri Apr 24 15:48:12 2009 +0300 - - webkit-embed: don use deprecated 'title-changed' signal, connect to notify::title instead. - - embed/webkit/webkit-embed.c | 25 ++++++++++++++----------- - 1 file changed, 14 insertions(+), 11 deletions(-) - -commit 141bafcfd567ec29264784f700573a966351d6ba -Author: Xan Lopez -Date: Thu Apr 23 23:36:40 2009 +0300 - - ephy-window: declare variables only if needed. - - src/ephy-window.c | 15 +++++++-------- - 1 file changed, 7 insertions(+), 8 deletions(-) - -commit eacd5c0fcb4b25024e2029e029af5b399887b805 -Author: Xan Lopez -Date: Thu Apr 23 23:32:12 2009 +0300 - - ephy-window: ignore chrome flags when opening new page in a tab. - - If we are forcing the creating of the new page in a tab ignore - whatever chrome flags the new window would try to set. - - src/ephy-window.c | 57 ++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 33 insertions(+), 24 deletions(-) - -commit 016c5452c2c16fca473e7b067ba89e5230ed7d46 -Author: Olav Vitters -Date: Thu Apr 23 18:36:07 2009 +0200 - - doap: Add desktop category - - epiphany.doap | 1 + - 1 file changed, 1 insertion(+) - -commit b7f534ac95a7d1fce61884286f0da067e67627e4 -Author: Xan Lopez -Date: Tue Apr 21 19:31:33 2009 +0300 - - Use GNOME settings for default font sizes. - - We were using WebKitGTK+ defaults now. - - embed/ephy-embed-prefs.h | 6 ++---- - embed/webkit/webkit-embed-prefs.c | 38 ++++++++++++++++++++++++++++++++++++++ - 2 files changed, 40 insertions(+), 4 deletions(-) - -commit 64ca17c616475c10e7d5ceb61c544b63f8b40165 -Author: Xan Lopez -Date: Fri Apr 17 15:54:47 2009 +0300 - - ephy-find-toolbar: fix backwards search, forward search was hardcoded. - - src/ephy-find-toolbar.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 6b7bbce3c241d948c3dc6b545e7abf84adb215d3 -Author: Xan Lopez -Date: Fri Apr 17 09:18:57 2009 +0300 - - Add epiphany.doap - - For the git web interface benefit. - - epiphany.doap | 20 ++++++++++++++++++++ - 1 file changed, 20 insertions(+) - -commit 0de8d96da91325add422a656cd8d010fae818dd4 -Author: Jorge Gonzalez Gonzalez -Date: Sun Apr 12 14:18:30 2009 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8958 - - po/es.po | 269 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 142 insertions(+), 127 deletions(-) - -commit 444321d959d3723cf9386551b925c06b9d3559fd -Author: Christian Persch -Date: Wed Apr 8 21:30:22 2009 +0000 - - Add the diff to smclient upstream also as a separate file, so people other than me can update from libegg - - svn path=/trunk/; revision=8953 - - lib/egg/eggsmclient.patch | 198 ++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 198 insertions(+) - -commit 98a77d35bedf5beff0f0dfef29674430f74c0102 -Author: Christian Persch -Date: Wed Apr 8 21:28:07 2009 +0000 - - Update smclient from libegg master - - svn path=/trunk/; revision=8952 - - lib/egg/eggdesktopfile.c | 15 +++++++++++++++ - lib/egg/eggsmclient-xsmp.c | 13 ++++++++++--- - 2 files changed, 25 insertions(+), 3 deletions(-) - -commit 7f0ac8bada128d5b6c51952613d2786a951f1e75 -Author: Simos Xenitellis -Date: Fri Apr 3 21:14:44 2009 +0000 - - Updated Greek translation by Marios Zindilis - - svn path=/trunk/; revision=8949 - - help/el/el.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 831f4d4a4adb351873c24f387341bd8b1d138362 -Author: Simos Xenitellis -Date: Fri Apr 3 21:08:58 2009 +0000 - - Undoing commit 8947 - - svn path=/trunk/; revision=8948 - - po/el.po | 8373 +++++++++++++++++++++++++++++++++++++++++--------------------- - 1 file changed, 5497 insertions(+), 2876 deletions(-) - -commit f1509a3cb72ea87a3457a56bc53d299c1ef258d6 -Author: Simos Xenitellis -Date: Fri Apr 3 20:58:59 2009 +0000 - - Updated Greek translation (Marios Zindilis), fixes #577531 - - svn path=/trunk/; revision=8947 - - po/el.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e6617039fee46a98e5078a4e8363c74c3f121d59 -Author: Simos Xenitellis -Date: Fri Apr 3 20:57:51 2009 +0000 - - Updated Greek translation (Marios Zindilis), fixes #577531 - - svn path=/trunk/; revision=8946 - - po/el.po | 6553 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 3211 insertions(+), 3342 deletions(-) - -commit 2b1c4a81c8feba0c269b8ebe2f66d19e1ae90d09 -Author: Gustavo Noronha Silva -Date: Fri Mar 27 14:35:54 2009 +0000 - - Remove unnecessary passing around of WebKitEmbed, and fix some style - issues. - - svn path=/trunk/; revision=8945 - - embed/webkit/webkit-embed.c | 19 ++++++------------- - 1 file changed, 6 insertions(+), 13 deletions(-) - -commit 0a13a6e6e4ad662a51dbf4439194b71504b21d84 -Author: Diego Escalante Urrelo -Date: Fri Mar 27 10:16:39 2009 +0000 - - ephy-location-entry: remove useless defines - - svn path=/trunk/; revision=8944 - - lib/widgets/ephy-location-entry.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit 4e8a1285d1c29777816c640b88702cc12d09cd53 -Author: Gustavo Noronha Silva -Date: Thu Mar 26 19:58:59 2009 +0000 - - Adding myself to the header as copyright holder, for earlier - contributions. - - svn path=/trunk/; revision=8943 - - embed/webkit/webkit-embed.c | 1 + - 1 file changed, 1 insertion(+) - -commit 05183dfb3e9bec404e8eb83694a5569ffa86daf9 -Author: Gustavo Noronha Silva -Date: Thu Mar 26 19:53:32 2009 +0000 - - Implementing auto-download, and respecting download lock-down. - - svn path=/trunk/; revision=8942 - - embed/webkit/webkit-embed.c | 118 +++++++++++++++++++++++++++++++++----------- - 1 file changed, 88 insertions(+), 30 deletions(-) - -commit c1b4f06d9d024ed062f2e71a98f5a23c732bd475 -Author: Gustavo Noronha Silva -Date: Thu Mar 26 15:36:02 2009 +0000 - - Check for NULL uri in ephy_file_delete_uri. - - svn path=/trunk/; revision=8941 - - lib/ephy-file-helpers.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit a551a219577761befd9450f487394013bad857d2 -Author: Gustavo Noronha Silva -Date: Thu Mar 26 15:29:32 2009 +0000 - - Remove downloading files when cancelling the download. - - svn path=/trunk/; revision=8940 - - embed/downloader-view.c | 1 + - embed/webkit/webkit-embed.c | 4 +++- - lib/ephy-file-helpers.c | 28 ++++++++++++++++++++++++++++ - lib/ephy-file-helpers.h | 1 + - 4 files changed, 33 insertions(+), 1 deletion(-) - -commit bd770032b47bdabac773b1158dde0dd9f76d2b20 -Author: Gustavo Noronha Silva -Date: Thu Mar 26 15:29:18 2009 +0000 - - Use Epiphany's profile directory to store the downloaded file - temporarily, instead of XDG's cache directory. - - svn path=/trunk/; revision=8939 - - embed/webkit/webkit-embed.c | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -commit 221a07a2af85385c1541239dd712068fbfb399c1 -Author: Xan Lopez -Date: Wed Mar 25 12:03:34 2009 +0000 - - ephy-window: use new-window-policy-decision-requested signal. - - Patch by Alejandro G. Castro. - - Allows to open links with target=_blank in a new tab by clicking with - the middle button. - - Requires WebKitGTK+ r41969. - - Fixes #573357. - - svn path=/trunk/; revision=8938 - - src/ephy-window.c | 39 +++++++++++++++++++++++++++++---------- - 1 file changed, 29 insertions(+), 10 deletions(-) - -commit 31e3c172dd500a0f7faee64e3bb1b34538b6f106 -Author: Christian Persch -Date: Tue Mar 24 22:01:53 2009 +0000 - - Update from libegg. - - svn path=/trunk/; revision=8934 - - lib/egg/eggdesktopfile.c | 19 ++++--------------- - lib/egg/eggsmclient.c | 10 +++++++++- - 2 files changed, 13 insertions(+), 16 deletions(-) - -commit 9da8ebd43ca88c3eba15a81b0a43f105077e886f -Author: Shankar Prasad -Date: Tue Mar 24 04:34:02 2009 +0000 - - updated kn.po - - svn path=/trunk/; revision=8932 - - po/ChangeLog.pre-2-23 | 4 ++++ - po/kn.po | 16 ++++++++++++---- - 2 files changed, 16 insertions(+), 4 deletions(-) - -commit 340d192979400529fd8aeab72eca3366543e095c -Author: Xan Lopez -Date: Mon Mar 23 07:49:43 2009 +0000 - - HACKING: add a couple more rules. - - svn path=/trunk/; revision=8931 - - HACKING | 2 ++ - 1 file changed, 2 insertions(+) - -commit 93b0c6873cba481f2efe02ee426641887c996bf3 -Author: Xan Lopez -Date: Sat Mar 21 16:14:57 2009 +0000 - - webkit-embed: 'foo ? foo : NULL' == 'foo' - - svn path=/trunk/; revision=8930 - - embed/webkit/webkit-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c8ca5773416ac44c40ce3caee36c04ad0865449d -Author: Gustavo Noronha Silva -Date: Sat Mar 21 14:23:53 2009 +0000 - - Removing unused variable - - svn path=/trunk/; revision=8929 - - embed/webkit/webkit-embed.c | 1 - - 1 file changed, 1 deletion(-) - -commit a3dfdca62e5b9d323169bae398f3102314d4ea30 -Author: Gustavo Noronha Silva -Date: Sat Mar 21 14:17:38 2009 +0000 - - Do not use gtk_dialog_run() for the file chooser dialog when - downloading. Start downloading early to a temporary location, and - change the target URI after the user has decided where to put the file - on. - - svn path=/trunk/; revision=8928 - - embed/downloader-view.c | 8 +++++ - embed/webkit/webkit-embed.c | 86 +++++++++++++++++++++++++++++++-------------- - 2 files changed, 68 insertions(+), 26 deletions(-) - -commit e3a8db10d71823511bdf62a4095500c044649c1c -Author: Xan Lopez -Date: Sat Mar 21 14:03:50 2009 +0000 - - ephy-topic-action: call gtk_activatable_get_related_action on the right widget. - - We set the action on the tool item, so fetch the action from there and - not its child button. Fixes bug #571178. - - svn path=/trunk/; revision=8926 - - src/bookmarks/ephy-topic-action.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit cf5b17a335c100614cd4b7db35c226a3b6b4b9a2 -Author: Xan Lopez -Date: Thu Mar 19 09:26:55 2009 +0000 - - ephy-window: try with a bigger z-index... - - svn path=/trunk/; revision=8922 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 97b8994477a1a88936924856f1a2f01b2a9bc53f -Author: Xan Lopez -Date: Thu Mar 19 08:06:42 2009 +0000 - - ephy-window: nasty hack to try to get the link-message on top of everything. - - Mmm, maybe I should use an actual GTK+ window after all :) - - svn path=/trunk/; revision=8921 - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 03448b35fc6e4bb4c2f2cc2939b89a4695edb452 -Author: Xan Lopez -Date: Thu Mar 19 00:53:50 2009 +0000 - - ephy-window: implement translucent link-message statusbar. - - 'Inspired' from Chrome, will show the link-message in a translucent - floating div on the bottom left corner of the web view if the normal - statusbar is hidden. - - svn path=/trunk/; revision=8920 - - src/ephy-window.c | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 1 file changed, 100 insertions(+), 3 deletions(-) - -commit 5113a420543ab72aa11e14ba653a425a6cf41bb5 -Author: Ignacio Casal Quinteiro -Date: Wed Mar 18 19:45:55 2009 +0000 - - Updated Galician Translation by Suso Baleato. - - svn path=/trunk/; revision=8918 - - po/gl.po | 2546 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1269 insertions(+), 1277 deletions(-) - -commit 982e3e5e4cea54a9463a57a67a4520f74660ace7 -Author: Xan Lopez -Date: Wed Mar 18 12:40:25 2009 +0000 - - configure.ac: remove duplicated bit. - - svn path=/trunk/; revision=8917 - - configure.ac | 3 --- - 1 file changed, 3 deletions(-) - -commit a219577f62f38ae5ff36380cddffd414d7a7750f -Author: Xan Lopez -Date: Wed Mar 18 12:11:42 2009 +0000 - - ephy-base-embed: remove note about using force reload when available. - - Turns out it's better not to, see bug #568108. - - svn path=/trunk/; revision=8916 - - embed/ephy-base-embed.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit f3ea06108f60019d48215e0f30423b83bf5a64ef -Author: Christian Persch -Date: Tue Mar 17 22:33:47 2009 +0000 - - Handover - - svn path=/trunk/; revision=8914 - - MAINTAINERS | 5 ----- - 1 file changed, 5 deletions(-) - -commit 52fc735e3579a1bc0e64d9dae244bea244357deb -Author: Petr Kovar -Date: Tue Mar 17 01:04:42 2009 +0000 - - Updated Czech translation by Lucas Lommer. - - 2009-03-17 Petr Kovar - - * cs.po: Updated Czech translation by Lucas Lommer. - - svn path=/trunk/; revision=8913 - - po/cs.po | 1922 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 953 insertions(+), 969 deletions(-) - -commit fc14f94dec44da36efd216df6785dc6a2cddd6d2 -Author: Xan Lopez -Date: Mon Mar 16 18:38:09 2009 +0000 - - configure.ac: post release version bump. - - svn path=/trunk/; revision=8912 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 246c15f243d18d4ba504eecfe4d27ec18fc07428 -Author: Xan Lopez -Date: Mon Mar 16 18:21:17 2009 +0000 - - NEWS: fix indentation. - - svn path=/trunk/; revision=8911 - - NEWS | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 43b1956f6bd63580337d314085d8476101b4b054 -Author: Xan Lopez -Date: Mon Mar 16 18:17:24 2009 +0000 - - NEWS: update. - - svn path=/trunk/; revision=8910 - - NEWS | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit 17cb83fb7684de52cfb35d0e7ed2a140131d7a21 -Author: Xan Lopez -Date: Mon Mar 16 18:11:20 2009 +0000 - - configure.ac: update libsoup requirement to 2.26.0. - - Among other things it has a SoupCookieJarSQLite that can create one - jar from scratch. - - svn path=/trunk/; revision=8909 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d8922d48fb5530cf80858ea6d4eaf4c3be82d077 -Author: Xan Lopez -Date: Mon Mar 16 08:03:30 2009 +0000 - - webkit-embed: re-add support for click-to-download. - - svn path=/trunk/; revision=8908 - - embed/webkit/webkit-embed.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 8f44b9bbb17e54c17dd58c894d131bbb33d4fb66 -Author: Xan Lopez -Date: Mon Mar 16 07:22:50 2009 +0000 - - configure.ac: update glib requirement to minimum required by gtk+ 2.16.0. - - svn path=/trunk/; revision=8907 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 544e73b996e29c257e84ce94f1b082ab4a6ad030 -Author: Xan Lopez -Date: Mon Mar 16 07:03:19 2009 +0000 - - configure.ac: post-release version bump. - - svn path=/trunk/; revision=8906 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b8784e78ad0bc6fb8b7ae35a377c29a7b76bfd23 -Author: Gustavo Noronha Silva -Date: Sun Mar 15 23:01:41 2009 +0000 - - Require WebKitGTK+ 1.1.3, since 1.1.2 had a bad soname. - - svn path=/trunk/; revision=8904 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e2524fcc914660277c71970322806a14f35eb5fc -Author: Claude Paroz -Date: Sun Mar 15 20:10:54 2009 +0000 - - Updated French translation. - - svn path=/trunk/; revision=8903 - - help/fr/fr.po | 1107 +++++++++++++++++++++++++++++---------------------------- - 1 file changed, 566 insertions(+), 541 deletions(-) - -commit 67e2b7b6cfdf8ce672a1553f3b71796f067923fb -Author: Xan Lopez -Date: Sun Mar 15 17:42:51 2009 +0000 - - configure.ac: update WebKitGTK+ requirement to 1.1.2. - - svn path=/trunk/; revision=8901 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4e91f4c60634b2dfc770f6a74b11186c19ed4ca4 -Author: Xan Lopez -Date: Sun Mar 15 14:37:05 2009 +0000 - - NEWS: forgot one word :) - - svn path=/trunk/; revision=8900 - - NEWS | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 09497920243fe40b99180caa6b3cd37176d6a991 -Author: Xan Lopez -Date: Sun Mar 15 14:36:39 2009 +0000 - - NEWS: update for release. - - svn path=/trunk/; revision=8899 - - NEWS | 17 +++++++++++++++++ - 1 file changed, 17 insertions(+) - -commit 6d74adaf6c7b4d7c11d0914c0acc64cb284f7cb9 -Author: Philip Withnall -Date: Sat Mar 14 17:32:22 2009 +0000 - - Updated British English translation by Bruce Cowan - . - - svn path=/trunk/; revision=8890 - - po/en_GB.po | 1051 ++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 526 insertions(+), 525 deletions(-) - -commit 6f5fbe8b109cc61a11516445ee279a90a3422658 -Author: Xan Lopez -Date: Sat Mar 14 15:35:44 2009 +0000 - - configure.ac: require GTK+ 2.16.0 so we get a change of having proper theming in entry. - - svn path=/trunk/; revision=8888 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a48391a0a8f8f4cc845afbfd07dd28de5114e9d6 -Author: Xan Lopez -Date: Fri Mar 13 21:26:11 2009 +0000 - - webkit-embed-single: couple of cleanups. - - svn path=/trunk/; revision=8886 - - embed/webkit/webkit-embed-single.c | 8 -------- - 1 file changed, 8 deletions(-) - -commit 823d079457d085780e5360caa0d17a6c886057c9 -Author: Xan Lopez -Date: Fri Mar 13 18:06:08 2009 +0000 - - ephy-profile-migration: and another. - - svn path=/trunk/; revision=8885 - - src/ephy-profile-migration.c | 1 + - 1 file changed, 1 insertion(+) - -commit e4e77e11f33bf13a3fa1ad07b75bec13fb26b2b7 -Author: Xan Lopez -Date: Fri Mar 13 18:04:11 2009 +0000 - - ephy-profile-migration: plug leak. - - svn path=/trunk/; revision=8884 - - src/ephy-profile-migration.c | 1 + - 1 file changed, 1 insertion(+) - -commit 2eccee1a93b59ef10709100c83d7dfcc26b87706 -Author: Xan Lopez -Date: Fri Mar 13 08:29:48 2009 +0000 - - Add profile migration. - - Migrate cookies from Mozilla, both sqlite and txt formats (sqlite has - priority in case both exist). - - svn path=/trunk/; revision=8880 - - po/POTFILES.in | 1 + - src/Makefile.am | 2 + - src/ephy-main.c | 7 ++- - src/ephy-profile-migration.c | 136 +++++++++++++++++++++++++++++++++++++++++++ - src/ephy-profile-migration.h | 25 ++++++++ - 5 files changed, 169 insertions(+), 2 deletions(-) - -commit ac544e0888eece59d80ed9bad42b07661fceefc9 -Author: Duarte Loreto -Date: Thu Mar 12 22:59:27 2009 +0000 - - Duarte Loreto Fixed an error on the Portuguese translation - - svn path=/trunk/; revision=8878 - - po/pt.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit dfa13997e07e01b9bfbc22b76ce1cd99e5f1c6ab -Author: Gustavo Noronha Silva -Date: Thu Mar 12 20:34:44 2009 +0000 - - Adapt WebKitDownload-related code to the changes done today in - WebKitGTK+. - - svn path=/trunk/; revision=8877 - - embed/downloader-view.c | 64 +++++++++++++++++++++++++++---------------------- - 1 file changed, 36 insertions(+), 28 deletions(-) - -commit 29aad3c2a7b24d0e7b01e38a5fe43ac468eaac82 -Author: Xan Lopez -Date: Thu Mar 12 15:58:44 2009 +0000 - - configure.ac: drop redundant AC_SUBST. - - PKG_CHECK_MODULES already does AC_SUBST on LIBS and CFLAGS for us, so - don't do it again. Thanks to Company for the tip. - - svn path=/trunk/; revision=8876 - - configure.ac | 9 --------- - 1 file changed, 9 deletions(-) - -commit 51cf7473e5f18cc62d0aec64d468d20b68b92452 -Author: Benjamin Otte -Date: Thu Mar 12 14:47:55 2009 +0000 - - detect NetworkManager using pkg-config - - svn path=/trunk/; revision=8873 - - configure.ac | 3 +-- - src/Makefile.am | 2 ++ - src/ephy-net-monitor.c | 2 +- - 3 files changed, 4 insertions(+), 3 deletions(-) - -commit e77131ccda31af1df0f1e979d6cd3588d869817f -Author: Xan Lopez -Date: Thu Mar 12 14:14:16 2009 +0000 - - POTFILES.in: remove deleted files. - - svn path=/trunk/; revision=8872 - - po/POTFILES.in | 2 -- - 1 file changed, 2 deletions(-) - -commit 10968f2b59143f15aadbd4f6be12a3f680216aa8 -Author: Xan Lopez -Date: Thu Mar 12 14:14:10 2009 +0000 - - configure.ac: require avahi-client explictly. - - avahi-client is in the private requiremenets of avahi-gobject, so we - need to ask for it to get the right libs at link time. - - svn path=/trunk/; revision=8871 - - configure.ac | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 8bac92b3be8a6cc75b8d5ea6179b4258638a38ff -Author: Xan Lopez -Date: Tue Mar 10 19:56:23 2009 +0000 - - Add SEED_LIBS when seed extensions are enabled. - - svn path=/trunk/; revision=8870 - - doc/reference/Makefile.am | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 79e1b874551b7bbf50232a3540c02edbbf600649 -Author: Xan Lopez -Date: Tue Mar 10 19:49:39 2009 +0000 - - Remove ephy-download leftovers. - - svn path=/trunk/; revision=8869 - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany.types | 2 -- - src/Makefile.am | 1 - - 3 files changed, 4 deletions(-) - -commit 68ccf87903c85ff005ce1ec843c5180cbb2d9388 -Author: Jorge Gonzalez Gonzalez -Date: Mon Mar 9 22:10:15 2009 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8867 - - po/ChangeLog.pre-2-23 | 4 ++++ - po/es.po | 66 +++++++++++++++++++++++++-------------------------- - 2 files changed, 37 insertions(+), 33 deletions(-) - -commit fda9672f8bee9617f3bc081acf108f860d378ff6 -Author: Xan Lopez -Date: Mon Mar 9 14:20:06 2009 +0000 - - ephy-location-entry: #if 0 the favicon column in completion. - - It makes the text in the completion jump like crazy, so disable until - we figure out what's going on. - - svn path=/trunk/; revision=8866 - - lib/widgets/ephy-location-entry.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - -commit 8d68232448dd1f3d531ece81b428cca30dec0b9d -Author: Xan Lopez -Date: Mon Mar 9 14:20:01 2009 +0000 - - ephy-location-entry: use g_object_connect for mass signal connection. - - svn path=/trunk/; revision=8865 - - lib/widgets/ephy-location-entry.c | 29 ++++++++++++----------------- - 1 file changed, 12 insertions(+), 17 deletions(-) - -commit c160cac94ca924bf764f557dabc73a6f0e9a457f -Author: miloc -Date: Sun Mar 8 21:59:44 2009 +0000 - - Updated Italian translation by Francesco Marletta - - svn path=/trunk/; revision=8860 - - po/it.po | 2449 ++++++++++++++++++++------------------------------------------ - 1 file changed, 768 insertions(+), 1681 deletions(-) - -commit b40215448bcc52ed3c19210a9d7e41503382a2a8 -Author: Xan Lopez -Date: Sat Mar 7 22:07:03 2009 +0000 - - ephy-stock-icons: remove unneeded includes. - - svn path=/trunk/; revision=8857 - - lib/ephy-stock-icons.c | 4 ---- - 1 file changed, 4 deletions(-) - -commit 625321cb6c94712e7b9429ca65e404940c74970e -Author: Xan Lopez -Date: Sat Mar 7 10:05:08 2009 +0000 - - ephy-net-monitor: remove unneeded includes, fix compiler warning. - - svn path=/trunk/; revision=8855 - - src/ephy-net-monitor.c | 11 +++++------ - 1 file changed, 5 insertions(+), 6 deletions(-) - -commit ff0bebae6b32d60db57ac7090336da921cd107b1 -Author: Diego Escalante Urrelo -Date: Fri Mar 6 08:46:22 2009 +0000 - - Update ephy-completion-model with some 2-26 things - - svn path=/trunk/; revision=8853 - - src/ephy-completion-model.c | 63 ++++++++++++--------------------------------- - 1 file changed, 16 insertions(+), 47 deletions(-) - -commit c75eef21622050e25bf0e4449b1068e6011b7826 -Author: Xan Lopez -Date: Fri Mar 6 06:31:35 2009 +0000 - - webkit-embed.c: set security information. - - Patch by Mario Sánchez Prada. - - Libsoup lacks the needed security API to do this properly, so for now - just set SECURITY_HIGH when a site with 'https' protocol reaches - load-committed. This at least means we are actually using SSL, - otherwise libosup would have failed to load. - - Bug #551106 - - svn path=/trunk/; revision=8852 - - embed/webkit/webkit-embed.c | 25 ++++++++++++++++++++++++- - 1 file changed, 24 insertions(+), 1 deletion(-) - -commit c2bde457bf24816a0b5be5a4ab46f3b999e2345f -Author: Xan Lopez -Date: Thu Mar 5 07:37:16 2009 +0000 - - Fix a few compiler warnings and coding style. - - svn path=/trunk/; revision=8851 - - embed/downloader-view.c | 2 +- - embed/webkit/webkit-embed.c | 23 +++++++++++++---------- - 2 files changed, 14 insertions(+), 11 deletions(-) - -commit 7806d4c72e4c79cbdea93c388eb9319189f17047 -Author: Shankar Prasad -Date: Thu Mar 5 04:20:36 2009 +0000 - - Updated Kannada(kn.po) translations - - svn path=/trunk/; revision=8849 - - po/ChangeLog.pre-2-23 | 4 + - po/kn.po | 2025 +++++++++++++++++++++++-------------------------- - 2 files changed, 956 insertions(+), 1073 deletions(-) - -commit 42a654901e1cdc2abf20feff9eb1d7128246d6a1 -Author: Gustavo Noronha Silva -Date: Wed Mar 4 23:59:35 2009 +0000 - - Basic download functionality for ephy/webkit. This update also removes - the EphyDownload wrapper, which should be no longer needed with the - advent of WebKitDownload. - - http://bugzilla.gnome.org/show_bug.cgi?id=570735 - - svn path=/trunk/; revision=8848 - - embed/Makefile.am | 2 - - embed/downloader-view.c | 179 ++++++++++++++++++++++-------------- - embed/downloader-view.h | 6 +- - embed/ephy-download.c | 215 -------------------------------------------- - embed/ephy-download.h | 114 ----------------------- - embed/webkit/webkit-embed.c | 57 ++++++++++++ - 6 files changed, 173 insertions(+), 400 deletions(-) - -commit 8f403c6207687e3ecdec6a40bbe16e02a6815bc1 -Author: Xan Lopez -Date: Wed Mar 4 07:25:33 2009 +0000 - - webkit-embed: increase default size of inspector window. - - svn path=/trunk/; revision=8843 - - embed/webkit/webkit-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit fa704b4fe42e56d97769f5262c04d37b60830365 -Author: Gustavo Noronha Silva -Date: Tue Mar 3 15:10:33 2009 +0000 - - Removing references to the now extint EphyCookieManager from the gtk-doc - files. - - svn path=/trunk/; revision=8842 - - doc/reference/epiphany-docs.sgml | 1 - - doc/reference/epiphany.types | 2 -- - 2 files changed, 3 deletions(-) - -commit bf4027081dd79cb6593aa9f0ef465f0be234888e -Author: Vincent Untz -Date: Tue Mar 3 13:07:11 2009 +0000 - - Fix the RDF bookmark importer (bug #129852). - - Correctly handle translations (for title, but also for localized URL). - Correctly handle bookmark topics. - - svn path=/trunk/; revision=8840 - - src/bookmarks/ephy-bookmarks-import.c | 122 +++++++++++++++++++++------------- - 1 file changed, 77 insertions(+), 45 deletions(-) - -commit 44a02e8cebe8bee54730e7954684b415ee797f08 -Author: Hendrik Richter -Date: Mon Mar 2 20:05:02 2009 +0000 - - Updated German translation. - - svn path=/trunk/; revision=8837 - - po/de.po | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 31bc40c11aee8ef98b0d80266b415704f5a22ad5 -Author: Timo Jyrinki -Date: Mon Mar 2 18:29:29 2009 +0000 - - typo fixes from #564485 - - svn path=/trunk/; revision=8836 - - po/fi.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 5b8d54f69ca170b59c7664e88ceb05f909f58e32 -Author: Jorge Gonzalez Gonzalez -Date: Mon Mar 2 09:21:48 2009 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8835 - - po/ChangeLog.pre-2-23 | 4 + - po/es.po | 225 +++++++++++++++++++++++++------------------------- - 2 files changed, 115 insertions(+), 114 deletions(-) - -commit 70e980e3b32b09be38bfbfd56c8f34ab6379ff3c -Author: Xan Lopez -Date: Sun Mar 1 20:18:06 2009 +0000 - - Remove ephy_embed_has_automatic_encoding, it's unused now. - - svn path=/trunk/; revision=8833 - - doc/reference/tmpl/ephy-embed.sgml | 12 ------------ - embed/ephy-embed.c | 16 ---------------- - embed/ephy-embed.h | 2 -- - embed/webkit/webkit-embed.c | 7 ------- - src/ephy-encoding-dialog.c | 2 -- - src/epiphany.defs | 6 ------ - 6 files changed, 45 deletions(-) - -commit 47ad1005ec007fc15b2ed83d78101a9785688afe -Author: Xan Lopez -Date: Sun Mar 1 19:47:02 2009 +0000 - - Use new get_encoding API to properly figure out automatic vs override encoding. - - svn path=/trunk/; revision=8832 - - src/ephy-encoding-dialog.c | 9 +++++++-- - src/ephy-encoding-menu.c | 13 +++++++------ - 2 files changed, 14 insertions(+), 8 deletions(-) - -commit 2594a1ecfee6163933953bfe9520fef351f13da1 -Author: Xan Lopez -Date: Sun Mar 1 19:16:42 2009 +0000 - - configure.ac: require WebKitGTK+ 1.1.1 - - svn path=/trunk/; revision=8831 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 694d3386191b330440807cf52d2f5420d882085f -Author: Xan Lopez -Date: Sun Mar 1 12:31:12 2009 +0000 - - ephy-file-chooser: cast parent_class properly. - - svn path=/trunk/; revision=8829 - - lib/ephy-file-chooser.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 97672832eb5830f252f69a015ddf1fab70cf12f7 -Author: Xan Lopez -Date: Sun Mar 1 12:30:04 2009 +0000 - - ephy-file-chooser: use G_DEFINE_TYPE. - - svn path=/trunk/; revision=8828 - - lib/ephy-file-chooser.c | 38 ++++---------------------------------- - 1 file changed, 4 insertions(+), 34 deletions(-) - -commit 44b5accafd19a1dfbc09b9b0318c371ab808b65b -Author: Xan Lopez -Date: Sun Mar 1 12:27:52 2009 +0000 - - ephy-module: use G_DEFINE_TYPE. - - svn path=/trunk/; revision=8827 - - lib/ephy-module.c | 34 ++-------------------------------- - 1 file changed, 2 insertions(+), 32 deletions(-) - -commit 2aa9925ca86d8e3cfb679049bb001c36fccd4985 -Author: Xan Lopez -Date: Sat Feb 28 16:12:01 2009 +0000 - - Remove CXX/C++ stuff from configure/Makefiles. - - We are just C now, so it should be OK. - - svn path=/trunk/; revision=8826 - - configure.ac | 14 -------------- - doc/reference/Makefile.am | 4 ++-- - 2 files changed, 2 insertions(+), 16 deletions(-) - -commit d68e5b3261be67d57eee2da5cab4d3428434e6cb -Author: Xan Lopez -Date: Sat Feb 28 10:17:46 2009 +0000 - - Remove get_backend function, there's only one possibility now. - - svn path=/trunk/; revision=8825 - - embed/ephy-embed-single.c | 17 ----------------- - embed/ephy-embed-single.h | 2 -- - embed/webkit/webkit-embed-single.c | 9 --------- - src/epiphany.defs | 6 ------ - src/window-commands.c | 7 +------ - 5 files changed, 1 insertion(+), 40 deletions(-) - -commit af49861cc569d77cab3469fd362cff19d24df49b -Author: Xan Lopez -Date: Sat Feb 28 09:03:11 2009 +0000 - - Remove gecko-only desktop-file plugin. - - svn path=/trunk/; revision=8824 - - Makefile.am | 1 - - configure.ac | 38 --- - plugins/Makefile.am | 7 - - plugins/desktop-file/Makefile.am | 37 --- - plugins/desktop-file/plugin.cpp | 553 ------------------------------------ - plugins/desktop-file/plugin.symbols | 4 - - 6 files changed, 640 deletions(-) - -commit 4c8655bd2fa1570aa825a3001077f3bd810d3440 -Author: Xan Lopez -Date: Sat Feb 28 08:56:47 2009 +0000 - - webkit-embed-prefs: use utils macro to get WebView from embed. - - svn path=/trunk/; revision=8823 - - embed/webkit/webkit-embed-prefs.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit a7deb6a2186b0db3c31f99307d5a3a093cace898 -Author: Xan Lopez -Date: Fri Feb 27 17:41:02 2009 +0000 - - MAINTAINERS: add myself, as agreed with Christian. - - svn path=/trunk/; revision=8821 - - MAINTAINERS | 5 +++++ - 1 file changed, 5 insertions(+) - -commit f5fdef8514912b100362033511c0507f1fb8c377 -Author: Cosimo Cecchi -Date: Fri Feb 27 12:13:08 2009 +0000 - - Remove the {_get,_set}_encoding functions from the python bindings definition, - so that we can compile cleanly with --enable-maintainer-mode. - - svn path=/trunk/; revision=8820 - - src/epiphany.defs | 15 --------------- - 1 file changed, 15 deletions(-) - -commit 984af6ebf45e9615c9aa8f7c3d97e776ed480502 -Author: Xan Lopez -Date: Fri Feb 27 11:23:44 2009 +0000 - - webkit-embed-prefs: support user style sheets. - - Bug #562628 - - svn path=/trunk/; revision=8819 - - embed/webkit/webkit-embed-prefs.c | 37 ++++++++++++++++++++++++++++++++++++- - 1 file changed, 36 insertions(+), 1 deletion(-) - -commit 629007ce134231d72cc85db3a411c0e3ec303c63 -Author: Xan Lopez -Date: Fri Feb 27 11:23:39 2009 +0000 - - Add FIXME about encodings. - - svn path=/trunk/; revision=8818 - - src/ephy-encoding-menu.c | 1 + - 1 file changed, 1 insertion(+) - -commit 026b90333c7c21998f1832c0e741937c6108d196 -Author: Xan Lopez -Date: Thu Feb 26 17:46:41 2009 +0000 - - Remove embedding APIs for set/get encoding. - - Use WebKit API directly. - - svn path=/trunk/; revision=8817 - - embed/ephy-embed.c | 35 ----------------------------------- - embed/ephy-embed.h | 11 +---------- - embed/webkit/webkit-embed.c | 17 ----------------- - src/ephy-encoding-dialog.c | 13 ++++++++++--- - src/ephy-encoding-menu.c | 16 ++++++++++++---- - 5 files changed, 23 insertions(+), 69 deletions(-) - -commit 887bf0716e88a3dea7b6c6a60c37d59d24f652a8 -Author: Xan Lopez -Date: Thu Feb 26 16:52:06 2009 +0000 - - webkit-embed: remove extra ';'. - - svn path=/trunk/; revision=8816 - - embed/webkit/webkit-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 524007db88546cf76a6d0a0c1c512dd93058bc63 -Author: Xan Lopez -Date: Thu Feb 26 16:37:43 2009 +0000 - - Implement get/set encoding for the embed. - - Bug #525265 - - svn path=/trunk/; revision=8815 - - embed/ephy-embed.c | 2 +- - embed/ephy-embed.h | 4 ++-- - embed/webkit/webkit-embed.c | 7 +++++-- - src/ephy-encoding-dialog.c | 4 +--- - src/ephy-encoding-menu.c | 4 +--- - 5 files changed, 10 insertions(+), 11 deletions(-) - -commit 01b36dd4aeebac60076b1e8d28dd1181129939bd -Author: Xan Lopez -Date: Thu Feb 26 15:13:09 2009 +0000 - - webkit-embed-single: use SoupProxyResolverGNOME to use GNOME proxy settings. - - svn path=/trunk/; revision=8814 - - embed/webkit/webkit-embed-single.c | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -commit 41b7f28a674d52637c63f4e0f55239120843ab29 -Author: Xan Lopez -Date: Thu Feb 26 15:06:49 2009 +0000 - - webkit-embed-single: unref cookie jar once it's added to the session. - - svn path=/trunk/; revision=8813 - - embed/webkit/webkit-embed-single.c | 1 + - 1 file changed, 1 insertion(+) - -commit 6e63719484801e93f2b570d8c416645d71815c8e -Author: Xan Lopez -Date: Mon Feb 23 11:48:51 2009 +0000 - - Use libsoup, getting the session from webkit, to handle cookies. - - Requires libsoup-gnome for SoupCookieJarSQLite storage. Depending on - 2.25.91, although we actually need trunk to get working code. - - svn path=/trunk/; revision=8811 - - configure.ac | 2 + - doc/reference/epiphany-sections.txt | 21 --- - doc/reference/tmpl/ephy-cookie-manager.sgml | 101 ----------- - embed/Makefile.am | 2 - - embed/ephy-cookie-manager.c | 257 ---------------------------- - embed/ephy-cookie-manager.h | 104 ----------- - embed/webkit/webkit-embed-single.c | 45 ++--- - src/Makefile.am | 2 - - src/epiphany.defs | 73 -------- - src/epiphany.h.in | 1 - - src/epiphany.override | 13 -- - src/pdm-dialog.c | 204 ++++++++++------------ - 12 files changed, 108 insertions(+), 717 deletions(-) - -commit 8256ad318861ef0fa4c4a9f88c915afc56ab09bb -Author: Wouter Bolsterlee -Date: Mon Feb 23 10:59:00 2009 +0000 - - Use – (en dash , U+2013) in copyright years. Also fixup surrounding whitespace. - - svn path=/trunk/; revision=8810 - - src/window-commands.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - -commit c00875cfeb3a0bb5a0fcb93f7ad43dedf24b963e -Author: Xan Lopez -Date: Mon Feb 23 07:22:15 2009 +0000 - - ephy-zoom-control: release references in dispose, not finalize. - - svn path=/trunk/; revision=8809 - - lib/widgets/ephy-zoom-control.c | 14 +++++++++----- - 1 file changed, 9 insertions(+), 5 deletions(-) - -commit 6d91806986ef863f087676d246f76fb50096b260 -Author: Xan Lopez -Date: Mon Feb 23 07:22:11 2009 +0000 - - ephy-zoom-control: use G_DEFINE_TYPE, remove unneeded includes. - - svn path=/trunk/; revision=8808 - - lib/widgets/ephy-zoom-control.c | 41 ++++------------------------------------- - 1 file changed, 4 insertions(+), 37 deletions(-) - -commit 20e78e3ebc2d902d601f0e5a440c107fc140cfdc -Author: Xan Lopez -Date: Mon Feb 23 07:14:05 2009 +0000 - - ephy-zoom-action: use G_DEFINE_TYPE, remove unneeded includes. - - svn path=/trunk/; revision=8807 - - lib/widgets/ephy-zoom-action.c | 42 +++++------------------------------------- - 1 file changed, 5 insertions(+), 37 deletions(-) - -commit e1f38b7cdc074914a5298b5aac6918195c889ec4 -Author: Xan Lopez -Date: Sun Feb 22 19:41:23 2009 +0000 - - ephy-search-entry: remove unneeded/redundant includes. - - svn path=/trunk/; revision=8806 - - lib/widgets/ephy-search-entry.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 4147ead952a5c31dbc3048a9b2cbad106fe3c6db -Author: Christian Persch -Date: Sun Feb 22 19:00:01 2009 +0000 - - Update year - - svn path=/trunk/; revision=8805 - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit fc6b5d1ba83eb848ed4ac4205f01f50d0e2e820c -Author: Xan Lopez -Date: Sun Feb 22 18:30:44 2009 +0000 - - ephy-password-dialog: remove, it's unused. - - svn path=/trunk/; revision=8803 - - lib/Makefile.am | 3 - - lib/ephy-password-dialog.c | 722 --------------------------------------------- - lib/ephy-password-dialog.h | 110 ------- - 3 files changed, 835 deletions(-) - -commit 94a0031fc35edf7ba35b153693eff03292ac776b -Author: Xan Lopez -Date: Sun Feb 22 16:31:03 2009 +0000 - - ephy-location-entry: fix security icon visibility. - - GtkEntry has no distinction between the visibility of the icons and - the icon to be used, meaning that the way to make them invisible is to - unset them. Keep a private boolean with the visibility status so we - can update our icon type without altering its visibility. - - svn path=/trunk/; revision=8802 - - lib/widgets/ephy-location-entry.c | 11 ++++++++--- - 1 file changed, 8 insertions(+), 3 deletions(-) - -commit 4258f8b222d90ade63d5dc545ebf52ce6fa208a5 -Author: Xan Lopez -Date: Sun Feb 22 16:08:52 2009 +0000 - - ephy-window: do not make code conditional on Gecko version. - - svn path=/trunk/; revision=8801 - - src/ephy-window.c | 12 ++++-------- - 1 file changed, 4 insertions(+), 8 deletions(-) - -commit b8a7057f4222ce8136b3d1bcf8656eec0e50a227 -Author: Petr Kovář -Date: Sun Feb 22 00:03:23 2009 +0000 - - Updated Czech translation of manual by Lucas Lommer. - - svn path=/trunk/; revision=8800 - - help/cs/cs.po | 31 ++++++++++++------------------- - 1 file changed, 12 insertions(+), 19 deletions(-) - -commit 526890f55fa70200968bbadc433ed773700b9588 -Author: Xan Lopez -Date: Sat Feb 21 08:18:32 2009 +0000 - - ephy-bookmarks: guard zeroconf dependent function declaration. - - svn path=/trunk/; revision=8797 - - src/bookmarks/ephy-bookmarks.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit b28fa1512893dd8714fdfa6c4d00a95fc2b919ae -Author: Xan Lopez -Date: Sat Feb 21 08:15:17 2009 +0000 - - downloader-view: use undeprecated gtk_status_icon_set_tooltip_text. - - svn path=/trunk/; revision=8796 - - embed/downloader-view.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 8ce694a511ccec498c1d3721a19aa99a9878b13a -Author: Daniel Nylander -Date: Thu Feb 19 19:46:51 2009 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=8794 - - po/sv.po | 138 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 73 insertions(+), 65 deletions(-) - -commit 0dc542e6f66143e11d20cd6e3cf45430415c2994 -Author: Xan Lopez -Date: Thu Feb 19 07:50:37 2009 +0000 - - ephy-window: do not show progress for pages that load very quickly (eg, about:blank). - - svn path=/trunk/; revision=8792 - - src/ephy-window.c | 10 +++++++++- - 1 file changed, 9 insertions(+), 1 deletion(-) - -commit 3bbc37ff26b4c29ce699691edf1035851bfbd171 -Author: Xan Lopez -Date: Tue Feb 17 18:19:12 2009 +0000 - - Fix finding extensions in system dir. - - Also use g_build_filename to build paths and plug a leak. - - Based on a patch by Diego Escalante Urrelo. - - Bug #571379 - - svn path=/trunk/; revision=8791 - - src/ephy-seed-extension.c | 12 +++++++----- - 1 file changed, 7 insertions(+), 5 deletions(-) - -commit 2e2debc0a6a83153763eb39f036e39f919b7674a -Author: Sweta Kothari -Date: Mon Feb 16 06:32:11 2009 +0000 - - Updated translation in gujarati - - svn path=/trunk/; revision=8784 - - po/gu.po | 26 ++++++++++++-------------- - 1 file changed, 12 insertions(+), 14 deletions(-) - -commit 60293e52bf139ae8b7e667efb3ee6b8576298a12 -Author: Xan Lopez -Date: Sun Feb 15 22:20:52 2009 +0000 - - Add option to open new windows in tabs. - - 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 - - data/epiphany.schemas.in | 12 ++++++++++++ - lib/ephy-prefs.h | 1 + - src/ephy-window.c | 22 +++++++++++++++++++--- - 3 files changed, 32 insertions(+), 3 deletions(-) - -commit 84b808dedd7821373c05bd43b8562670fbc620f4 -Author: Jorge Gonzalez Gonzalez -Date: Sat Feb 14 13:47:04 2009 +0000 - - Updated Spanish translation, fixes bug #569457 - - svn path=/trunk/; revision=8781 - - po/ChangeLog.pre-2-23 | 4 + - po/es.po | 1784 ++++++++++++++++++++++++------------------------- - 2 files changed, 881 insertions(+), 907 deletions(-) - -commit f7b763ca916dee034b98dbba8679ca77a55c2b1d -Author: Sweta Kothari -Date: Thu Feb 12 12:31:21 2009 +0000 - - Updated translation for gujarati - - svn path=/trunk/; revision=8780 - - po/gu.po | 1049 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 525 insertions(+), 524 deletions(-) - -commit 40eda8e2d6e949a543a34dfc954ac732d3a33890 -Author: Daniel Nylander -Date: Wed Feb 11 12:25:38 2009 +0000 - - Updated sv translation (Daniel Nylander) - - svn path=/trunk/; revision=8779 - - po/sv.po | 3502 +++++++++++++++++--------------------------------------------- - 1 file changed, 928 insertions(+), 2574 deletions(-) - -commit 26bbde384e5a7ea7be046e9a0dcc775e2157b248 -Author: Christian Persch -Date: Tue Feb 10 13:26:53 2009 +0000 - - Don't recurse into proxy item construction. Bug #570984 - - svn path=/trunk/; revision=8778 - - src/bookmarks/ephy-topic-action.c | 2 -- - 1 file changed, 2 deletions(-) - -commit b5fe8575a90dfbb9397a1eb69a2513b924bbe15a -Author: Xan Lopez -Date: Sun Feb 8 12:33:36 2009 +0000 - - And some more style fixes, should now follow the new code guidelines. - - svn path=/trunk/; revision=8777 - - src/ephy-seed-extension.c | 41 ++++++++++++++------------------ - src/ephy-seed-extension.h | 9 +++---- - src/ephy-seed-loader.c | 60 +++++++++++++++++++++++------------------------ - src/ephy-seed-loader.h | 9 +++---- - 4 files changed, 58 insertions(+), 61 deletions(-) - -commit aa8767eeecd7bd139cb68175a6fbe01d3759ccaf -Author: Xan Lopez -Date: Sun Feb 8 12:25:43 2009 +0000 - - ephy-seed-extension: untabify, delete-trailing-whitespace, ... - - svn path=/trunk/; revision=8776 - - src/ephy-seed-extension.c | 79 ++++++++++++++++++++++++----------------------- - 1 file changed, 40 insertions(+), 39 deletions(-) - -commit fe8a418b1a814b7e2b712281ea032ec7cc5a9fae -Author: Xan Lopez -Date: Sun Feb 8 12:23:18 2009 +0000 - - ephy-seed-extension: free this here. - - svn path=/trunk/; revision=8775 - - src/ephy-seed-extension.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit f5f1ae317d5aa4f1074c461832ac09ef6c9092c6 -Author: Xan Lopez -Date: Sun Feb 8 12:23:14 2009 +0000 - - ephy-seed-extension: do not return const pointer as char*. - - svn path=/trunk/; revision=8774 - - src/ephy-seed-extension.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7b0e36876fad8855227704258613d79d23036368 -Author: Xan Lopez -Date: Sun Feb 8 12:23:09 2009 +0000 - - ephy-seed-extension: add trailing NULL to g_strconcat. - - svn path=/trunk/; revision=8773 - - src/ephy-seed-extension.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ddcc086ab16083dd963a5d8cb59ff3ebada613c0 -Author: Xan Lopez -Date: Sun Feb 8 12:23:04 2009 +0000 - - ephy-seed-extensions: fix coding style. - - svn path=/trunk/; revision=8772 - - src/ephy-seed-extension.c | 68 +++++++++++++++++++++++------------------------ - 1 file changed, 34 insertions(+), 34 deletions(-) - -commit cbea51644e5143aaa535a972174a0269a63d2505 -Author: Xan Lopez -Date: Sun Feb 8 12:15:25 2009 +0000 - - Use gtk_activatable_get_related_action instead of the deprecated gtk_widget_get_action. - - svn path=/trunk/; revision=8771 - - src/bookmarks/ephy-bookmarks-ui.c | 8 ++++---- - src/bookmarks/ephy-topic-action.c | 2 +- - src/ephy-location-action.c | 6 +++--- - src/ephy-window.c | 4 ++-- - 4 files changed, 10 insertions(+), 10 deletions(-) - -commit 2d0e1157e413c2dfaf7101b025fa929513676bc9 -Author: Xan Lopez -Date: Sun Feb 8 09:38:56 2009 +0000 - - Update from libegg trunk. - - svn path=/trunk/; revision=8770 - - lib/egg/egg-toolbars-model.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ce0b3ec15d8f90ef748fd882cfd8eac591cfdd2f -Author: Christian Persch -Date: Sun Feb 8 00:34:28 2009 +0000 - - Prepend /data to PKG_CONFIG_PATH so g-ir-scanner can find our not-yet-installed pkg-config file - - svn path=/trunk/; revision=8769 - - src/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit 2b23f5b1fc49cee09c6b9eee981e846616e1e1c3 -Author: Christian Persch -Date: Sat Feb 7 23:43:24 2009 +0000 - - config.h must be the first include - - svn path=/trunk/; revision=8768 - - src/ephy-seed-extension.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit a3ce0ecd8a374c5ffaf03050a2faedab6f4dd637 -Author: Christian Persch -Date: Sat Feb 7 23:29:14 2009 +0000 - - Simply use g_irepository_get_option_group() - - svn path=/trunk/; revision=8767 - - src/ephy-main.c | 21 ++++----------------- - 1 file changed, 4 insertions(+), 17 deletions(-) - -commit bd29ad635f789b9b7b3283f0746f0d6fcbedd5ce -Author: Xan Lopez -Date: Sat Feb 7 17:17:15 2009 +0000 - - Add needed -I flags to build the Epiphany gir file. - - svn path=/trunk/; revision=8762 - - src/Makefile.am | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 84de52d327ebc179837a6503df2cb988647910fa -Author: Xan Lopez -Date: Sat Feb 7 15:42:34 2009 +0000 - - Use epiphany_LDADD for Seed libraries. - - svn path=/trunk/; revision=8761 - - src/Makefile.am | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 6a87231529aee6e98405ac97bb72d079d878d2b9 -Author: Christian Persch -Date: Sat Feb 7 15:33:27 2009 +0000 - - Fix python/seed exclusivity check - - svn path=/trunk/; revision=8760 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e9f35ceef4515f8526b301af3cf5c54923966ed6 -Author: Christian Persch -Date: Sat Feb 7 15:25:02 2009 +0000 - - Add closing ] in the right place - - svn path=/trunk/; revision=8759 - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 79e1583b8268128db3f96b8c2ddb0703002601d0 -Author: Xan Lopez -Date: Sat Feb 7 15:23:13 2009 +0000 - - configure.ac: add missing ']' - - svn path=/trunk/; revision=8758 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a22e27e2fb1e351e99e28bc0f37fc292c4a8a860 -Author: Christian Persch -Date: Sat Feb 7 15:15:25 2009 +0000 - - Fail if given --enable-seed without --enable-introspection. - - svn path=/trunk/; revision=8757 - - configure.ac | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 2e720b50fa23e3045d0869ba09a4d6a005e9e14c -Author: Christian Persch -Date: Sat Feb 7 15:13:33 2009 +0000 - - Add seed support; use --enable-seed to check it out. Patch by Robert Carr. - - svn path=/trunk/; revision=8756 - - configure.ac | 30 ++++- - src/Makefile.am | 15 +++ - src/ephy-extensions-manager.c | 18 +++ - src/ephy-seed-extension.c | 274 ++++++++++++++++++++++++++++++++++++++++++ - src/ephy-seed-extension.h | 60 +++++++++ - src/ephy-seed-loader.c | 108 +++++++++++++++++ - src/ephy-seed-loader.h | 60 +++++++++ - 7 files changed, 563 insertions(+), 2 deletions(-) - -commit 642eb45983933bf096844c0acb6b841fd5fa9ad3 -Author: Christian Persch -Date: Sat Feb 7 15:01:40 2009 +0000 - - Add gobject introspection support; use --enable-introspection. - - svn path=/trunk/; revision=8755 - - configure.ac | 44 +++++++++++++++++++++++++++++++++-- - src/Makefile.am | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++- - src/ephy-main.c | 21 +++++++++++++++++ - 3 files changed, 133 insertions(+), 3 deletions(-) - -commit 2e94ce01ab4c2e802e3123cdf325be4c10af6a59 -Author: Robert Carr -Date: Sat Feb 7 12:35:39 2009 +0000 - - Remove two unused get_type functions from public header files - - svn path=/trunk/; revision=8754 - - embed/ephy-embed-event.h | 2 -- - embed/ephy-embed.h | 2 -- - 2 files changed, 4 deletions(-) - -commit 4fe8435529506b8119e4a74c2cc0f06113c0c46b -Author: Gustavo Noronha Silva -Date: Fri Feb 6 00:00:25 2009 +0000 - - Make help buttons ids unique in glade file, so that the generated - GtkBuilder file doesn't cause problems when loading - - svn path=/trunk/; revision=8753 - - data/glade/epiphany.glade | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit c79424593c09321f173c67980afaa1b6a03b66a9 -Author: Runa Bhattacharjee -Date: Wed Feb 4 05:14:50 2009 +0000 - - Corrected gconf entries wrt bug: 569564 - - svn path=/trunk/; revision=8752 - - po/bn_IN.po | 3766 +++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1856 insertions(+), 1910 deletions(-) - -commit 728b870c3fe05b224b01256f62d0dff1f51da58f -Author: Christian Persch -Date: Tue Feb 3 21:01:11 2009 +0000 - - Respect the API version set above - - svn path=/trunk/; revision=8751 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 22ad85ad12dee80fefd2bc776f72d87af3ccdfaa -Author: Christian Persch -Date: Tue Feb 3 20:55:00 2009 +0000 - - Version update - - svn path=/trunk/; revision=8750 - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit cec6583c2879a7882df5087b592df8c70c2268f6 -Author: Christian Persch -Date: Tue Feb 3 19:53:49 2009 +0000 - - Only show the fixed toolbar when the leave-fullscreen button is to be shown. Shoudl fix bug #570349 - - svn path=/trunk/; revision=8749 - - src/ephy-toolbar.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 94954eccafcbcf86bf99bb3f10bb45720c77048d -Author: Gustavo Noronha Silva -Date: Tue Feb 3 00:47:36 2009 +0000 - - Set page title for history on title-changed - - svn path=/trunk/; revision=8747 - - embed/webkit/webkit-embed.c | 17 ++++++++--------- - 1 file changed, 8 insertions(+), 9 deletions(-) - -commit 40c4d719de524128ca4c3bc7cd39cc0fe751f7f8 -Author: Xan Lopez -Date: Fri Jan 30 20:25:45 2009 +0000 - - webkit-embed: add titles for history items when we know them. - - svn path=/trunk/; revision=8746 - - embed/webkit/webkit-embed.c | 15 +++++++++++++-- - 1 file changed, 13 insertions(+), 2 deletions(-) - -commit c2d3fd5f09e9283fb44f4db543db0ac816bb354d -Author: Xan Lopez -Date: Fri Jan 30 14:51:22 2009 +0000 - - ephy-session: plug memory leak. - - svn path=/trunk/; revision=8745 - - src/ephy-session.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit 6f4d3c9b01f2ea550402e3bc5de25b481638b803 -Author: Inaki Larranaga Murgoitio -Date: Thu Jan 29 11:58:19 2009 +0000 - - Fixed Bug 569546 and Updated Basque translation. - - - 2009-01-29 Inaki Larranaga Murgoitio - - * eu.po: Fixed Bug 569546 and Updated Basque translation. - - - svn path=/trunk/; revision=8744 - - po/ChangeLog.pre-2-23 | 4 + - po/eu.po | 1687 ++++++++++++++++++++++--------------------------- - 2 files changed, 746 insertions(+), 945 deletions(-) - -commit 344abac13a3ef1a3a7c123381da0d3be99d58f96 -Author: Raivis Dejus -Date: Thu Jan 29 08:53:38 2009 +0000 - - Updated latvian translation Bug 569558 - - 2009-01-29 Raivis Dejus - - * lv.po: Updated latvian translation Bug 569558 - - - svn path=/trunk/; revision=8742 - - po/ChangeLog.pre-2-23 | 4 +++ - po/lv.po | 78 +++++++++++++++++++++++++-------------------------- - 2 files changed, 42 insertions(+), 40 deletions(-) - -commit 4e9abd21e4dc41f5d5bd0dbaac78ff9d12cc6a4b -Author: Felix I -Date: Thu Jan 29 08:32:48 2009 +0000 - - tamil translation updated - - svn path=/trunk/; revision=8741 - - po/ChangeLog.pre-2-23 | 4 ++ - po/ta.po | 168 +++++++++++++++++++++++++------------------------- - 2 files changed, 87 insertions(+), 85 deletions(-) - -commit b9698509d8184c6ab8c15eef935a7ce48192afc4 -Author: Sandeep Shedmake -Date: Thu Jan 29 07:37:04 2009 +0000 - - Bug fix for #569559 - - svn path=/trunk/; revision=8740 - - po/ChangeLog.pre-2-23 | 4 + - po/mr.po | 571 ++++++++++++++------------------------------------ - 2 files changed, 162 insertions(+), 413 deletions(-) - -commit f166a8c35c1cde49005a12a8055ff54bd830728b -Author: Amanpreet Singh Alam -Date: Thu Jan 29 02:38:57 2009 +0000 - - updating for Punjabi by A S Alam: Bug: 569547 Fixed - - svn path=/trunk/; revision=8739 - - po/pa.po | 2045 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 1177 insertions(+), 868 deletions(-) - -commit ab58254e795ff7b0754681b8c7ada1b898944fec -Author: Xan Lopez -Date: Tue Jan 27 17:27:40 2009 +0000 - - ephy-find-toolbar: remove unused variable. - - svn path=/trunk/; revision=8737 - - src/ephy-find-toolbar.c | 2 -- - 1 file changed, 2 deletions(-) - -commit cd161d3195d27e0a10debc7851acc949a92f0db5 -Author: Xan Lopez -Date: Tue Jan 27 17:09:00 2009 +0000 - - ephy-find-toolbar: do not search for the empty string or NULL. - - Spews critical warnings on console and it's obviously useless. - - svn path=/trunk/; revision=8736 - - src/ephy-find-toolbar.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit e7e822df7228edd6af789aac78fb18a131f3f10c -Author: Xan Lopez -Date: Mon Jan 26 12:54:17 2009 +0000 - - Remove unused auto encoding stuff. - - Silences a few warnings when opening the prefs dialog. - - svn path=/trunk/; revision=8735 - - src/prefs-dialog.c | 15 --------------- - 1 file changed, 15 deletions(-) - -commit 462adbb39ee3dbf97e9516dc02081ea33107b06d -Author: Xan Lopez -Date: Mon Jan 26 12:34:03 2009 +0000 - - Remove unused function. - - svn path=/trunk/; revision=8734 - - src/prefs-dialog.c | 13 ------------- - 1 file changed, 13 deletions(-) - -commit 644680458e4bbe6950f50dd516ffedaa5c0cbcbc -Author: Gil Forcada Codinachs -Date: Mon Jan 26 07:38:09 2009 +0000 - - Added Pashto translation on behalf of Zabeeh Khan - - svn path=/trunk/; revision=8733 - - po/LINGUAS | 1 + - po/ps.po | 3353 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 3354 insertions(+) - -commit b1d5c36aa58f4b37387beb5bd2058e7dc8f04808 -Author: Christian Persch -Date: Sun Jan 25 21:03:32 2009 +0000 - - Remove unused fonts languages and autodetectors stuff. Bug #558407. - - svn path=/trunk/; revision=8731 - - data/Makefile.am | 1 - - data/epiphany.pc.in | 1 - - data/epiphany.schemas.in | 21 ---- - data/generate-font-schemas.py | 112 --------------------- - data/glade/prefs-dialog.glade | 46 +-------- - embed/ephy-encodings.c | 227 ++++++++++++++++-------------------------- - embed/ephy-encodings.h | 3 - - lib/ephy-langs.c | 97 ------------------ - lib/ephy-langs.h | 10 -- - src/prefs-dialog.c | 95 ------------------ - 10 files changed, 85 insertions(+), 528 deletions(-) - -commit 49db23e9c72747f8cf9d3a2859a19d14298755d5 -Author: Sandeep Shedmake -Date: Sat Jan 24 12:46:35 2009 +0000 - - Updated Marathi translations (767 translated messages) - - svn path=/trunk/; revision=8728 - - po/ChangeLog.pre-2-23 | 4 +++ - po/mr.po | 96 +++++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 97 insertions(+), 3 deletions(-) - -commit a3d937e826de204b0137c9c70a957cd7cf984787 -Author: Sandeep Shedmake -Date: Sat Jan 24 12:22:21 2009 +0000 - - Updated Marathi translations for bugid 521462, passes msgfmt check - - svn path=/trunk/; revision=8727 - - po/ChangeLog.pre-2-23 | 4 + - po/mr.po | 2549 ++++++++++++++++--------------------------------- - 2 files changed, 813 insertions(+), 1740 deletions(-) - -commit 9877e5b1d4225168897376640999c375fc4f4e0d -Author: Xan Lopez -Date: Fri Jan 23 18:00:25 2009 +0000 - - Update EggEditableToolbar from trunk. - - svn path=/trunk/; revision=8726 - - lib/egg/egg-editable-toolbar.c | 17 ++++++----------- - 1 file changed, 6 insertions(+), 11 deletions(-) - -commit 7856157fb1002cdbe3f03076f67fb1c9c5478f2e -Author: Xan Lopez -Date: Fri Jan 23 17:19:05 2009 +0000 - - Do not use 'gtk-action' object data to get the associated GtkAction for a widget. - - It's an implementation detail and will go away soon. Use documented APIs instead. - - svn path=/trunk/; revision=8723 - - src/bookmarks/ephy-bookmarks-ui.c | 8 ++++---- - src/bookmarks/ephy-topic-action.c | 6 +++--- - src/ephy-window.c | 4 ++-- - 3 files changed, 9 insertions(+), 9 deletions(-) - -commit ef807369e3fb6d96f6f0f03d9ed7ed4e73108b20 -Author: Changwoo Ryu -Date: Fri Jan 23 16:34:51 2009 +0000 - - Updated Korean translation - - svn path=/trunk/; revision=8722 - - po/ko.po | 1314 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 661 insertions(+), 653 deletions(-) - -commit 5f4f7285ba07e471755397fc64f7ae80b5d9fc20 -Author: Xan Lopez -Date: Fri Jan 23 02:43:00 2009 +0000 - - ephy-find-toolbar: make indentation homogenenous. - - svn path=/trunk/; revision=8721 - - src/ephy-find-toolbar.c | 73 ++++++++++++++++++++++++------------------------- - 1 file changed, 36 insertions(+), 37 deletions(-) - -commit 56d9b5384def19d10010096a6397e6a5e57b46d0 -Author: Xan Lopez -Date: Fri Jan 23 02:20:34 2009 +0000 - - Implement scrolling in EphyFindToolbar. - - svn path=/trunk/; revision=8720 - - doc/reference/tmpl/ephy-embed.sgml | 3 --- - embed/ephy-embed.c | 53 -------------------------------------- - embed/webkit/webkit-embed.c | 31 ---------------------- - src/ephy-find-toolbar.c | 50 +++++++++++++++++------------------ - 4 files changed, 23 insertions(+), 114 deletions(-) - -commit 61a9d4ce3f9f73f18de3243771ec5dcba70bed8f -Author: Xan Lopez -Date: Thu Jan 22 01:52:24 2009 +0000 - - Add dolt support. - - Patch by Priit Laes, bug #542501 - - svn path=/trunk/; revision=8719 - - Makefile.am | 2 + - configure.ac | 1 + - m4/dolt.m4 | 177 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 180 insertions(+) - -commit 49fda4594093b9539a5f495bfc6959c5885c3fbc -Author: Xan Lopez -Date: Thu Jan 22 01:52:19 2009 +0000 - - Update POTFILES.{skip,in}. - - svn path=/trunk/; revision=8718 - - po/POTFILES.in | 4 ++++ - po/POTFILES.skip | 37 +++++-------------------------------- - 2 files changed, 9 insertions(+), 32 deletions(-) - -commit 381b62ed212dbf41a16fd7a3267cf14b5fb14d00 -Author: Xan Lopez -Date: Thu Jan 22 01:52:13 2009 +0000 - - It's CLEANFILES, not CLEAN_FILES. - - svn path=/trunk/; revision=8717 - - data/glade/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bcb22ca3d7f896b18e91b72d63c595367e7a40e3 -Author: Xan Lopez -Date: Thu Jan 22 01:33:46 2009 +0000 - - Add the original files to EXTRA_DIST, not the generated ones. - - svn path=/trunk/; revision=8716 - - data/glade/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e1173b456686463c4819be53b77bf04547eac454 -Author: Xan Lopez -Date: Thu Jan 22 01:20:16 2009 +0000 - - Remove EphyIconEntry leftovers. - - svn path=/trunk/; revision=8715 - - doc/reference/epiphany-docs.sgml | 1 - - doc/reference/epiphany-sections.txt | 9 ------ - doc/reference/epiphany.types | 2 -- - lib/widgets/testiconentry.c | 64 ------------------------------------- - src/Makefile.am | 1 - - 5 files changed, 77 deletions(-) - -commit c0910bfcfcff2a79efa4e6d5bfe629f541cfa13b -Author: Xan Lopez -Date: Wed Jan 21 15:56:47 2009 +0000 - - ephy-window: do not set load progress on already loaded pages. - - Avoids setting the load progress to 100% when switching tabs. - - svn path=/trunk/; revision=8712 - - src/ephy-window.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit 49265f276b828acfaadc05fc288274f8b8b385b5 -Author: Gustavo Noronha Silva -Date: Tue Jan 20 15:42:18 2009 +0000 - - Avoid adding problematic search terms with spaces - - Adding spaces to the end of the location bar was adding bad search - terms. This fixes it. - - svn path=/trunk/; revision=8709 - - lib/widgets/ephy-location-entry.c | 13 +++++++++---- - 1 file changed, 9 insertions(+), 4 deletions(-) - -commit b6714cc33b570c46f4beb35710b5240eebdf4aa0 -Author: Gustavo Noronha Silva -Date: Tue Jan 20 15:42:05 2009 +0000 - - Handle end of line correctly on location bar search - - This change fixes the last character of the last search term being cut - off by special casing the end of the line. - - svn path=/trunk/; revision=8708 - - lib/widgets/ephy-location-entry.c | 14 ++++++++++++-- - 1 file changed, 12 insertions(+), 2 deletions(-) - -commit 204e4d53d1f29b4ed4c2b66ff16634aa9dbe25a4 -Author: Gustavo Noronha Silva -Date: Mon Jan 19 23:48:58 2009 +0000 - - Implement multiple keyword-based AND-search for the location bar - - Bug #568101 - - svn path=/trunk/; revision=8706 - - lib/widgets/ephy-location-entry.c | 151 ++++++++++++++++++++++++++++++-------- - lib/widgets/ephy-location-entry.h | 2 +- - src/ephy-location-action.c | 28 +++++-- - 3 files changed, 142 insertions(+), 39 deletions(-) - -commit 8ecf59b151f949cb9e2bf8edb849c3a6df13d7b5 -Author: Philip Withnall -Date: Mon Jan 19 23:30:25 2009 +0000 - - Use C_() instead of Q_() with context for translatable strings. - Note this bumps the GLib dependency to 2.18.0. - - (Helps: #558407) - - svn path=/trunk/; revision=8705 - - configure.ac | 2 +- - embed/downloader-view.c | 12 +++--------- - src/bookmarks/ephy-bookmarks.c | 22 +++++----------------- - src/ephy-toolbar-editor.c | 14 ++++++-------- - src/prefs-dialog.c | 16 +++++----------- - 5 files changed, 20 insertions(+), 46 deletions(-) - -commit d38f3c62a57f01785034e0b3861b937b3c815817 -Author: Diego Escalante Urrelo -Date: Mon Jan 19 13:07:35 2009 +0000 - - Remove useless LocationEntryAction struct - - svn path=/trunk/; revision=8700 - - src/ephy-location-action.c | 26 +++----------------------- - 1 file changed, 3 insertions(+), 23 deletions(-) - -commit bd6d6054be2a394da2d4f8491e20d14a3ee459af -Author: Åsmund Skjæveland -Date: Sun Jan 18 18:46:20 2009 +0000 - - Updated Norwegian Nynorsk translation. - - 2009-01-18 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - svn path=/trunk/; revision=8699 - - po/nn.po | 13 +++++-------- - 1 file changed, 5 insertions(+), 8 deletions(-) - -commit 653512a3d73455cddd91d1a584734d96d65c76d7 -Author: Åsmund Skjæveland -Date: Sun Jan 18 18:44:43 2009 +0000 - - Updated Norwegian Nynorsk translation. - - 2009-01-18 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - svn path=/trunk/; revision=8698 - - po/nn.po | 3060 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1394 insertions(+), 1666 deletions(-) - -commit 15afb7008f6c2d063936945aad0afc56cfff4e91 -Author: Thomas James Alexander Thurman -Date: Sun Jan 18 01:27:42 2009 +0000 - - Added Igbo and Yoruba - - svn path=/trunk/; revision=8696 - - po/ChangeLog.pre-2-23 | 6 + - po/LINGUAS | 2 + - po/ig.po | 4506 +++++++++++++++++++++++++++++++++++++++++++++++++ - po/yo.po | 4211 +++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 8725 insertions(+) - -commit 5b0b42e883f549b3f16c729c2149b7d7c664f244 -Author: Xan Lopez -Date: Fri Jan 16 07:23:50 2009 +0000 - - Remove $Id$ marker from source files. - - svn path=/trunk/; revision=8695 - - embed/downloader-view.c | 1 - - embed/downloader-view.h | 1 - - embed/ephy-adblock-manager.c | 1 - - embed/ephy-adblock-manager.h | 1 - - embed/ephy-adblock.c | 1 - - embed/ephy-adblock.h | 1 - - embed/ephy-command-manager.c | 1 - - embed/ephy-command-manager.h | 1 - - embed/ephy-cookie-manager.c | 1 - - embed/ephy-cookie-manager.h | 1 - - embed/ephy-download.c | 1 - - embed/ephy-download.h | 1 - - embed/ephy-embed-dialog.c | 1 - - embed/ephy-embed-dialog.h | 1 - - embed/ephy-embed-event.c | 1 - - embed/ephy-embed-event.h | 1 - - embed/ephy-embed-factory.c | 1 - - embed/ephy-embed-factory.h | 1 - - embed/ephy-embed-persist.c | 1 - - embed/ephy-embed-persist.h | 1 - - embed/ephy-embed-shell.c | 1 - - embed/ephy-embed-shell.h | 1 - - embed/ephy-embed-single.c | 1 - - embed/ephy-embed-single.h | 1 - - embed/ephy-embed.c | 1 - - embed/ephy-embed.h | 1 - - embed/ephy-encodings.c | 1 - - embed/ephy-encodings.h | 1 - - embed/ephy-favicon-cache.c | 1 - - embed/ephy-favicon-cache.h | 1 - - embed/ephy-history.c | 1 - - embed/ephy-history.h | 1 - - embed/ephy-password-manager.c | 1 - - embed/ephy-password-manager.h | 1 - - embed/ephy-permission-manager.c | 1 - - embed/ephy-permission-manager.h | 1 - - embed/webkit/webkit-embed-persist.h | 1 - - lib/eel-gconf-extensions.c | 1 - - lib/eel-gconf-extensions.h | 1 - - lib/ephy-debug.c | 1 - - lib/ephy-debug.h | 1 - - lib/ephy-dialog.c | 1 - - lib/ephy-dialog.h | 1 - - lib/ephy-dnd.c | 1 - - lib/ephy-dnd.h | 1 - - lib/ephy-file-chooser.c | 1 - - lib/ephy-file-chooser.h | 1 - - lib/ephy-file-helpers.c | 1 - - lib/ephy-file-helpers.h | 1 - - lib/ephy-gui.c | 1 - - lib/ephy-gui.h | 1 - - lib/ephy-langs.c | 1 - - lib/ephy-langs.h | 1 - - lib/ephy-loader.c | 1 - - lib/ephy-loader.h | 1 - - lib/ephy-module.c | 1 - - lib/ephy-module.h | 1 - - lib/ephy-node-common.h | 1 - - lib/ephy-node-db.c | 1 - - lib/ephy-node-db.h | 1 - - lib/ephy-node-filter.c | 1 - - lib/ephy-node-filter.h | 1 - - lib/ephy-node.c | 1 - - lib/ephy-node.h | 1 - - lib/ephy-object-helpers.c | 1 - - lib/ephy-object-helpers.h | 1 - - lib/ephy-password-dialog.h | 1 - - lib/ephy-prefs.h | 1 - - lib/ephy-print-utils.c | 1 - - lib/ephy-print-utils.h | 1 - - lib/ephy-shlib-loader.c | 1 - - lib/ephy-shlib-loader.h | 1 - - lib/ephy-signal-accumulator.c | 1 - - lib/ephy-signal-accumulator.h | 1 - - lib/ephy-spell-check.c | 1 - - lib/ephy-spell-check.h | 1 - - lib/ephy-state.c | 1 - - lib/ephy-state.h | 1 - - lib/ephy-stock-icons.c | 1 - - lib/ephy-stock-icons.h | 1 - - lib/ephy-string.c | 1 - - lib/ephy-string.h | 1 - - lib/ephy-zoom.c | 1 - - lib/ephy-zoom.h | 1 - - lib/widgets/ephy-location-entry.h | 1 - - lib/widgets/ephy-node-view.c | 1 - - lib/widgets/ephy-node-view.h | 1 - - lib/widgets/ephy-search-entry.h | 1 - - lib/widgets/ephy-spinner.c | 1 - - lib/widgets/ephy-spinner.h | 1 - - lib/widgets/ephy-tree-model-node.c | 1 - - lib/widgets/ephy-tree-model-node.h | 1 - - lib/widgets/ephy-tree-model-sort.c | 1 - - lib/widgets/ephy-tree-model-sort.h | 1 - - lib/widgets/ephy-zoom-action.c | 1 - - lib/widgets/ephy-zoom-action.h | 1 - - lib/widgets/ephy-zoom-control.c | 1 - - lib/widgets/ephy-zoom-control.h | 1 - - lib/widgets/testiconentry.c | 1 - - lib/widgets/testspinner.c | 1 - - src/bookmarks/ephy-bookmark-action-group.c | 1 - - src/bookmarks/ephy-bookmark-action-group.h | 1 - - src/bookmarks/ephy-bookmark-action.c | 1 - - src/bookmarks/ephy-bookmark-action.h | 1 - - src/bookmarks/ephy-bookmark-factory-action.c | 1 - - src/bookmarks/ephy-bookmark-factory-action.h | 1 - - src/bookmarks/ephy-bookmark-properties.c | 1 - - src/bookmarks/ephy-bookmark-properties.h | 1 - - src/bookmarks/ephy-bookmarks-editor.c | 1 - - src/bookmarks/ephy-bookmarks-editor.h | 1 - - src/bookmarks/ephy-bookmarks-export.c | 1 - - src/bookmarks/ephy-bookmarks-export.h | 1 - - src/bookmarks/ephy-bookmarks-import.c | 1 - - src/bookmarks/ephy-bookmarks-import.h | 1 - - src/bookmarks/ephy-bookmarks-menu.c | 1 - - src/bookmarks/ephy-bookmarks-menu.h | 1 - - src/bookmarks/ephy-bookmarks-ui.c | 1 - - src/bookmarks/ephy-bookmarks-ui.h | 1 - - src/bookmarks/ephy-bookmarks.c | 1 - - src/bookmarks/ephy-bookmarks.h | 1 - - src/bookmarks/ephy-nodes-cover.c | 1 - - src/bookmarks/ephy-nodes-cover.h | 1 - - src/bookmarks/ephy-open-tabs-action.c | 1 - - src/bookmarks/ephy-open-tabs-action.h | 1 - - src/bookmarks/ephy-related-action.c | 1 - - src/bookmarks/ephy-related-action.h | 1 - - src/bookmarks/ephy-topic-action-group.c | 1 - - src/bookmarks/ephy-topic-action-group.h | 1 - - src/bookmarks/ephy-topic-action.c | 1 - - src/bookmarks/ephy-topic-action.h | 1 - - src/bookmarks/ephy-topic-factory-action.c | 1 - - src/bookmarks/ephy-topic-factory-action.h | 1 - - src/bookmarks/ephy-topics-entry.h | 1 - - src/bookmarks/ephy-topics-palette.c | 1 - - src/bookmarks/ephy-topics-palette.h | 1 - - src/ephy-action-helper.c | 1 - - src/ephy-action-helper.h | 1 - - src/ephy-activation.c | 1 - - src/ephy-activation.h | 1 - - src/ephy-completion-model.c | 1 - - src/ephy-completion-model.h | 1 - - src/ephy-dbus.c | 1 - - src/ephy-dbus.h | 1 - - src/ephy-encoding-dialog.c | 1 - - src/ephy-encoding-dialog.h | 1 - - src/ephy-encoding-menu.c | 1 - - src/ephy-encoding-menu.h | 1 - - src/ephy-extension.c | 1 - - src/ephy-extension.h | 1 - - src/ephy-extensions-manager.c | 1 - - src/ephy-extensions-manager.h | 1 - - src/ephy-find-toolbar.h | 1 - - src/ephy-fullscreen-popup.c | 1 - - src/ephy-fullscreen-popup.h | 1 - - src/ephy-go-action.c | 1 - - src/ephy-go-action.h | 1 - - src/ephy-history-window.c | 1 - - src/ephy-history-window.h | 1 - - src/ephy-home-action.c | 1 - - src/ephy-home-action.h | 1 - - src/ephy-link-action.c | 1 - - src/ephy-link-action.h | 1 - - src/ephy-link.c | 1 - - src/ephy-link.h | 1 - - src/ephy-location-action.c | 1 - - src/ephy-location-action.h | 1 - - src/ephy-lockdown.c | 1 - - src/ephy-lockdown.h | 1 - - src/ephy-main.c | 1 - - src/ephy-navigation-action.c | 1 - - src/ephy-navigation-action.h | 1 - - src/ephy-net-monitor.c | 1 - - src/ephy-net-monitor.h | 1 - - src/ephy-notebook.h | 1 - - src/ephy-python-extension.c | 1 - - src/ephy-python-extension.h | 1 - - src/ephy-python-loader.c | 1 - - src/ephy-python-loader.h | 1 - - src/ephy-python.c | 1 - - src/ephy-python.h | 1 - - src/ephy-session.h | 1 - - src/ephy-shell.c | 1 - - src/ephy-shell.h | 1 - - src/ephy-statusbar.c | 1 - - src/ephy-statusbar.h | 1 - - src/ephy-tabs-menu.c | 1 - - src/ephy-tabs-menu.h | 1 - - src/ephy-toolbar-editor.c | 1 - - src/ephy-toolbar-editor.h | 1 - - src/ephy-toolbar.c | 1 - - src/ephy-toolbar.h | 1 - - src/ephy-toolbars-model.c | 1 - - src/ephy-toolbars-model.h | 1 - - src/ephy-window.h | 1 - - src/languages.h | 1 - - src/pdm-dialog.c | 1 - - src/pdm-dialog.h | 1 - - src/popup-commands.c | 1 - - src/popup-commands.h | 1 - - src/ppview-toolbar.c | 1 - - src/ppview-toolbar.h | 1 - - src/prefs-dialog.c | 1 - - src/prefs-dialog.h | 1 - - src/window-commands.h | 1 - - 204 files changed, 204 deletions(-) - -commit cde8e420e5626e545ebf2c28fadaaad516f2ebb6 -Author: Xan Lopez -Date: Fri Jan 16 06:01:37 2009 +0000 - - Fix indentation of previous commits. - - svn path=/trunk/; revision=8694 - - lib/widgets/ephy-location-entry.c | 40 +++++++++++++++++++-------------------- - 1 file changed, 20 insertions(+), 20 deletions(-) - -commit 5c4c64876f3f2b58809fd047abed1fba8265cfbf -Author: Diego Escalante Urrelo -Date: Thu Jan 15 22:07:08 2009 +0000 - - Include a bookmark indication in the woohoo bar - - If the result shown in the row is a bookmark, the epiphany bookmark icon will - be drawn to the right of it. - - svn path=/trunk/; revision=8693 - - lib/widgets/ephy-location-entry.c | 42 ++++++++++++++++++++++++++++++++++++++- - src/ephy-completion-model.c | 10 +++++----- - src/ephy-location-action.c | 2 -- - 3 files changed, 46 insertions(+), 8 deletions(-) - -commit 2fefd6be854823210b1f29462866656a92ae0331 -Author: Diego Escalante Urrelo -Date: Thu Jan 15 22:06:55 2009 +0000 - - Turn the location bar into the woohoo bar - - Enhance the completion popup by showing a two line cell containing the favicon, - the title of the page and the url. On top of this, there's a bookmark - indication patch. - - svn path=/trunk/; revision=8692 - - lib/widgets/ephy-location-entry.c | 109 ++++++++++++++++++++++++++------------ - src/ephy-completion-model.c | 19 ++----- - 2 files changed, 79 insertions(+), 49 deletions(-) - -commit 2d43e36cc1b900ef78412a1bbb7dbded55684a34 -Author: Gil Forcada Codinachs -Date: Tue Jan 13 20:16:45 2009 +0000 - - Updated Catalan translation - - svn path=/trunk/; revision=8688 - - po/ca.po | 559 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 283 insertions(+), 276 deletions(-) - -commit 374c991ae2df34a3b8a4ea46b1ec6519b97fcf18 -Author: Gustavo Noronha Silva -Date: Tue Jan 13 16:57:30 2009 +0000 - - We no longer need a separate pkg-config check for WEBKIT. - - Bug #567601 - - svn path=/trunk/; revision=8682 - - configure.ac | 8 -------- - doc/reference/Makefile.am | 2 -- - embed/Makefile.am | 1 - - embed/webkit/Makefile.am | 1 - - src/Makefile.am | 1 - - 5 files changed, 13 deletions(-) - -commit 744e5d0149971b61659a5ff3f5970c5c9540d43b -Author: Xan Lopez -Date: Mon Jan 12 15:22:58 2009 +0000 - - Port to use GtkBuilder. - - 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 - - configure.ac | 13 ++++++++++--- - data/glade/Makefile.am | 8 +++++++- - embed/downloader-view.c | 2 +- - lib/ephy-dialog.c | 25 ++++++++++++++++--------- - src/ephy-encoding-dialog.c | 2 +- - src/pdm-dialog.c | 2 +- - src/prefs-dialog.c | 4 ++-- - 7 files changed, 38 insertions(+), 18 deletions(-) - -commit 695622efe5aca6670b94f13189fcad5d5479f302 -Author: Kjartan Maraas -Date: Mon Jan 12 12:55:29 2009 +0000 - - Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=8677 - - po/nb.po | 1187 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 575 insertions(+), 612 deletions(-) - -commit d50d436f96ff9d204d0e0937dd10dc3155581786 -Author: Xan Lopez -Date: Sun Jan 11 21:01:41 2009 +0000 - - configure.ac: bump required webkit version to 1.1.0. - - Plus small cleanups to the file. - - svn path=/trunk/; revision=8675 - - configure.ac | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 2d5835066319b04a9a2cc73e4c5a2072078a71a3 -Author: Xan Lopez -Date: Thu Jan 8 13:27:52 2009 +0000 - - Allow to reload bypassing cache. - - Bug #540781 - - svn path=/trunk/; revision=8674 - - src/window-commands.c | 15 ++++++--------- - 1 file changed, 6 insertions(+), 9 deletions(-) - -commit eefa976cd1fe21fe2fcd6c82e08cba96055acc17 -Author: Nurali Abdurahmonov -Date: Thu Jan 8 02:22:59 2009 +0000 - - added uzbek translations by nurali - - svn path=/trunk/; revision=8673 - - po/ChangeLog.pre-2-23 | 6 + - po/LINGUAS | 2 + - po/uz.po | 3535 +++++++++++++++++++++++++++++++++++++++++++++++++ - po/uz@cyrillic.po | 3535 +++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 7078 insertions(+) - -commit 024a1e1e382c7ef65a080763b4a398eebd33b881 -Author: Simos Xenitellis -Date: Tue Jan 6 14:17:22 2009 +0000 - - Updated Greek translation by Marios Zindilis - - svn path=/trunk/; revision=8672 - - po/el.po | 2215 +++++++++++++++++--------------------------------------------- - 1 file changed, 602 insertions(+), 1613 deletions(-) - -commit e696b7635c2a141f2bc8b451d332d7720bc1ca13 -Author: Gabor Keleman -Date: Mon Jan 5 01:39:47 2009 +0000 - - Updated translation - - svn path=/trunk/; revision=8671 - - po/hu.po | 1994 +++++++++++++++++--------------------------------------------- - 1 file changed, 534 insertions(+), 1460 deletions(-) - -commit 391523a531c62514258301b87869191e7ab2fa18 -Author: Diego Escalante Urrelo -Date: Sun Jan 4 23:06:36 2009 +0000 - - Remove leftover search_entry_clear_cb function - - svn path=/trunk/; revision=8670 - - src/bookmarks/ephy-bookmarks-editor.c | 19 ------------------- - 1 file changed, 19 deletions(-) - -commit 2dd2cfc161aef09fc1310ea9750e948596b943ba -Author: Diego Escalante Urrelo -Date: Sun Jan 4 21:00:39 2009 +0000 - - Fix bookmark import of ff3 files - - ff3 now has some extra stuff in their .html files, so the importer is not - always working, the regexp has been improved to fix this. - Patch by Wouter Bolsterlee. Fixes bug #552997. - - svn path=/trunk/; revision=8668 - - src/bookmarks/ephy-bookmarks-import.c | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit fd926659f931d4aa7099aa2c3081d0745685ab09 -Author: Leonardo Ferreira Fontenelle -Date: Sun Jan 4 20:29:59 2009 +0000 - - 2009-01-04 Leonardo Ferreira Fontenelle leonardof@gnome.org - - * pt_BR.po: Updated Brazilian Portuguese translation. Contributed by - César Veiga. - - svn path=/trunk/; revision=8667 - - po/pt_BR.po | 318 +++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 163 insertions(+), 155 deletions(-) - -commit d6163a3115ce4b0b6a9d7c70f5900d215a6d081e -Author: Xan Lopez -Date: Sun Jan 4 16:22:48 2009 +0000 - - ephy-window: remove entry clear timeout without chaining finalize. - - svn path=/trunk/; revision=8666 - - src/ephy-window.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 40f095d25aaedd7e019c4b19c5b1a36a4ab9aed6 -Author: Xan Lopez -Date: Sun Jan 4 14:50:04 2009 +0000 - - ephy-window: g_object_get takes a gpointer as first argument. - - svn path=/trunk/; revision=8665 - - src/ephy-window.c | 13 ++++++------- - 1 file changed, 6 insertions(+), 7 deletions(-) - -commit 1ecd13da9865d272b02251f4c119ca7fe7113e64 -Author: Xan Lopez -Date: Sun Jan 4 14:46:33 2009 +0000 - - ephy-window: also open in new tab for ctrl+click. - - svn path=/trunk/; revision=8664 - - src/ephy-window.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit 75df77ae61aa3f2148d5a61eeef1c5f281e42864 -Author: Xan Lopez -Date: Sun Jan 4 12:41:22 2009 +0000 - - webkit-embed: do not prefix callbacks with 'webkit_embed', they are static functions. - - svn path=/trunk/; revision=8663 - - embed/webkit/webkit-embed.c | 66 ++++++++++++++++++++++----------------------- - 1 file changed, 33 insertions(+), 33 deletions(-) - -commit 63f013b592ea239f9404969e6392b215bb04d244 -Author: Xan Lopez -Date: Sun Jan 4 00:34:29 2009 +0000 - - Emit ge-document-type when the mime type of a page is known. - - svn path=/trunk/; revision=8662 - - embed/webkit/webkit-embed.c | 33 +++++++++++++++++++++++++++++++++ - 1 file changed, 33 insertions(+) - -commit e85e4ee5bbb8810a16e6b3b05fd1263f13e58881 -Author: Priit Laes -Date: Sat Jan 3 12:54:54 2009 +0000 - - Translation updated by Ivar Smolin - - 2009-01-03 Priit Laes - - * et.po: Translation updated by Ivar Smolin - - svn path=/trunk/; revision=8661 - - po/et.po | 845 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 422 insertions(+), 423 deletions(-) - -commit fce48612ebcf5cdb4b7b75378a4dc930b4db0e8c -Author: Cosimo Cecchi -Date: Fri Jan 2 11:51:19 2009 +0000 - - Adapt to the modified GTK+ API. - - svn path=/trunk/; revision=8659 - - lib/widgets/ephy-location-entry.c | 2 +- - lib/widgets/ephy-search-entry.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit e1c0aaa12f1d1e0f584a549f820d21de34e7b432 -Author: Xan Lopez -Date: Wed Dec 31 19:12:30 2008 +0000 - - Use connect_after when connecting to drag-begin so we can override the - pixmap that GtkEntry sets in DnD. - - svn path=/trunk/; revision=8658 - - lib/widgets/ephy-location-entry.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 34250839acccb7e92829eb2d67b96cb1cff5cd0e -Author: Reinout van Schouwen -Date: Tue Dec 30 22:51:51 2008 +0000 - - - po/nl.po: Updated Dutch translation - - 2008-12-30 Reinout van Schouwen - - - po/nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=8657 - - po/nl.po | 5792 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 2760 insertions(+), 3032 deletions(-) - -commit e90575839bf1c7118eda0a7dc5633218a5b50efa -Author: Xan Lopez -Date: Tue Dec 30 22:36:33 2008 +0000 - - Require GTK+ 2.15.0 - - svn path=/trunk/; revision=8656 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ddb6a105bb5a0de256ed8fbe676673cd74b3a551 -Author: Xan Lopez -Date: Tue Dec 30 22:33:08 2008 +0000 - - Delete EphyIconEntry, it's unused. - - svn path=/trunk/; revision=8655 - - lib/widgets/Makefile.am | 2 - - lib/widgets/ephy-icon-entry.c | 377 ------------------------------------------ - lib/widgets/ephy-icon-entry.h | 80 --------- - tests/Makefile.am | 7 - - tests/testephyiconentry.c | 117 ------------- - 5 files changed, 583 deletions(-) - -commit 6191d0ea18b36b108d64edcae7652aa3ec805482 -Author: Xan Lopez -Date: Tue Dec 30 22:33:01 2008 +0000 - - Update EphySearchEntry test. - - There's no 'internal entry' now. - - svn path=/trunk/; revision=8654 - - tests/testephysearchentry.c | 12 ++++-------- - 1 file changed, 4 insertions(+), 8 deletions(-) - -commit 48d5d818763a02134170f93b5a0e3ee04ae3fff1 -Author: Xan Lopez -Date: Tue Dec 30 22:32:55 2008 +0000 - - Port EphySearchEntry to use GtkEntry. - - Also fold into the widget the 'clear' icon instead of creating it - twice outside. - - svn path=/trunk/; revision=8653 - - lib/widgets/ephy-search-entry.c | 60 ++++++++++++++++++++++++----------- - lib/widgets/ephy-search-entry.h | 6 ++-- - src/bookmarks/ephy-bookmarks-editor.c | 17 ---------- - src/ephy-history-window.c | 38 +--------------------- - 4 files changed, 46 insertions(+), 75 deletions(-) - -commit 530d9f4f4056b57d0a90456aee036a4e61e6f7be -Author: Xan Lopez -Date: Tue Dec 30 22:32:49 2008 +0000 - - ephy-search-entry: use G_DEFINE_TYPE. - - svn path=/trunk/; revision=8652 - - lib/widgets/ephy-search-entry.c | 33 +-------------------------------- - 1 file changed, 1 insertion(+), 32 deletions(-) - -commit 8676779c654bf09dd9d055ae7a32cb8d7be8ab64 -Author: Xan Lopez -Date: Tue Dec 30 22:32:44 2008 +0000 - - Remove progress from statusbar now that we show it in the location entry. - - svn path=/trunk/; revision=8651 - - src/ephy-statusbar.c | 50 -------------------------------------------------- - src/ephy-statusbar.h | 3 --- - src/ephy-window.c | 3 --- - src/epiphany.defs | 9 --------- - 4 files changed, 65 deletions(-) - -commit c28e0ca2b0f81d934df5ab164d7630f7a9c03c2d -Author: Xan Lopez -Date: Tue Dec 30 22:32:38 2008 +0000 - - ephy-window: draw progress inside the location entry. - - svn path=/trunk/; revision=8650 - - src/ephy-window.c | 42 ++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 42 insertions(+) - -commit 06db1c68c142c3b24dd7027b8dca08faaf48c3ea -Author: Xan Lopez -Date: Tue Dec 30 22:32:31 2008 +0000 - - ephy-location-entry: port to use GtkEntry instead of EphyIconEntry. - - svn path=/trunk/; revision=8649 - - lib/widgets/ephy-location-entry.c | 304 +++++++++++++++++++------------------- - 1 file changed, 153 insertions(+), 151 deletions(-) - -commit 4260715c08026604082d297a1098f1a6555548c0 -Author: Xan Lopez -Date: Tue Dec 30 22:32:24 2008 +0000 - - ephy-location-entry: remove $Id$ marker. - - svn path=/trunk/; revision=8648 - - lib/widgets/ephy-location-entry.c | 1 - - 1 file changed, 1 deletion(-) - -commit 615bda46d3febea6cc81d3f917771b239515a37d -Author: Xan Lopez -Date: Tue Dec 30 22:32:19 2008 +0000 - - ephy-location-entry: use G_DEFINE_TYPE - - svn path=/trunk/; revision=8647 - - lib/widgets/ephy-location-entry.c | 38 ++++---------------------------------- - 1 file changed, 4 insertions(+), 34 deletions(-) - -commit 76fd9cebbf62666bb8639040f37ead9f2220937f -Author: Gustavo Noronha Silva -Date: Tue Dec 23 18:28:06 2008 +0000 - - Renamed the web inspector checkbutton widget's ID, so that it will be - found by the preferences dialog code. - - Bug #562446 is related - - svn path=/trunk/; revision=8642 - - data/glade/prefs-dialog.glade | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5bc6873fd45b015cad93d2986f32aa02a4e96b2e -Author: Gustavo Noronha Silva -Date: Tue Dec 23 18:03:24 2008 +0000 - - Web Inspector property missing from preferences enum. - - Bug #565485 - - svn path=/trunk/; revision=8641 - - src/prefs-dialog.c | 1 + - 1 file changed, 1 insertion(+) - -commit 4965a7adb047016d50a27de7891aca1f2260daa1 -Author: Gustavo Noronha Silva -Date: Tue Dec 23 16:54:12 2008 +0000 - - Check text_table for nullity before unrefing it in resolver_found_cb. - - Bug #565452 - - svn path=/trunk/; revision=8640 - - src/bookmarks/ephy-bookmarks.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 086140d4b7d8835f4b2928b515a4e3c783b81a50 -Author: Xan Lopez -Date: Sun Dec 21 15:54:49 2008 +0000 - - Open links in new tab with middle click. - - Bug #518338 - - svn path=/trunk/; revision=8639 - - src/ephy-window.c | 42 ++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 42 insertions(+) - -commit 73d1fa1b5df4b72953787da6eb1c5117ecd7c262 -Author: Matej Urbančič -Date: Wed Dec 17 18:50:11 2008 +0000 - - Updated Slovenian translation - - svn path=/trunk/; revision=8638 - - po/sl.po | 1278 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 628 insertions(+), 650 deletions(-) - -commit d43303db0007b8701a544de0ae41f3df0d055792 -Author: Jorge Gonzalez Gonzalez -Date: Mon Dec 15 20:24:52 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8637 - - po/es.po | 867 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 436 insertions(+), 431 deletions(-) - -commit f87212f7e918fd54ea6ec4eddcc2b87e5a98df73 -Author: Erdal Ronahi -Date: Fri Dec 12 23:53:10 2008 +0000 - - Updated Kurdish translation - - svn path=/trunk/; revision=8636 - - po/ku.po | 1052 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 527 insertions(+), 525 deletions(-) - -commit e3ee4502fee7f40dbbe06b8a7f90399e9b2f8938 -Author: Xan Lopez -Date: Fri Dec 12 11:44:53 2008 +0000 - - And re-add ephy-cookie-manager too. - - svn path=/trunk/; revision=8635 - - embed/ephy-cookie-manager.c | 258 ++++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-cookie-manager.h | 105 ++++++++++++++++++ - 2 files changed, 363 insertions(+) - -commit 666d79684f69b4ca1bc775dff0f157747c5e6204 -Author: Xan Lopez -Date: Fri Dec 12 00:14:24 2008 +0000 - - Enable Web Inspector. - - Bug #562446 - - svn path=/trunk/; revision=8634 - - data/epiphany.schemas.in | 11 +++++ - data/glade/prefs-dialog.glade | 84 +++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed-prefs.h | 1 + - embed/webkit/webkit-embed-prefs.c | 5 ++- - embed/webkit/webkit-embed.c | 64 +++++++++++++++++++++++++++++ - src/prefs-dialog.c | 13 +++--- - 6 files changed, 171 insertions(+), 7 deletions(-) - -commit 6bc97bfc06e1ab3ca9041cae66c1524b7c14284a -Author: Xan Lopez -Date: Fri Dec 12 00:13:54 2008 +0000 - - Revert cookies stuff, didn't want to commit that. - - svn path=/trunk/; revision=8633 - - configure.ac | 2 - - embed/Makefile.am | 2 + - embed/webkit/webkit-embed-single.c | 31 ++++++ - src/Makefile.am | 1 + - src/epiphany.defs | 73 +++++++++++++ - src/epiphany.h.in | 1 + - src/epiphany.override | 13 +++ - src/pdm-dialog.c | 203 ++++++++++++++++++++----------------- - 8 files changed, 232 insertions(+), 94 deletions(-) - -commit c4d95ec8b49d437f3372390f1662c67bfd56b64b -Author: Xan Lopez -Date: Fri Dec 12 00:09:41 2008 +0000 - - Port ephy to use libsoup for cookies. - - svn path=/trunk/; revision=8632 - - configure.ac | 2 + - embed/Makefile.am | 2 - - embed/ephy-cookie-manager.c | 258 ------------------------------------- - embed/ephy-cookie-manager.h | 105 --------------- - embed/webkit/webkit-embed-single.c | 31 ----- - src/Makefile.am | 1 - - src/epiphany.defs | 73 ----------- - src/epiphany.h.in | 1 - - src/epiphany.override | 13 -- - src/pdm-dialog.c | 203 +++++++++++++---------------- - 10 files changed, 94 insertions(+), 595 deletions(-) - -commit d9316c22dde31d8fe2907ca30f23532412363d01 -Author: Xan Lopez -Date: Thu Dec 11 20:10:09 2008 +0000 - - window-commands: fix Send Link by Email for URLs with '&' - - Bug #549357, patch by Susana Pereira with small modifications. - - svn path=/trunk/; revision=8631 - - src/window-commands.c | 46 ++++++++++++++++++++++++++-------------------- - 1 file changed, 26 insertions(+), 20 deletions(-) - -commit bef98049462193ddbf06ef9b792fb357ec7415da -Author: Xan Lopez -Date: Sat Dec 6 00:50:32 2008 +0000 - - webkit-embed: lose not needed casts to GObject. - - svn path=/trunk/; revision=8630 - - embed/webkit/webkit-embed.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 96e097ef0c93c7a1037f3141efeeaf301fc3c265 -Author: Diego Escalante Urrelo -Date: Wed Dec 3 01:34:13 2008 +0000 - - Implement chrome visibility control in popups - - Fixes bug #562714. Fullscreen, scrollbar and location bar left out for - security/usability. Location bar might be enabled later with something - ala-firefox. - - svn path=/trunk/; revision=8629 - - src/ephy-window.c | 36 ++++++++++++++++++++++++++++++++---- - 1 file changed, 32 insertions(+), 4 deletions(-) - -commit 0ed3933fdf105e7b9ecfd384190f155b225d3630 -Author: Xan Lopez -Date: Sun Nov 30 20:48:17 2008 +0000 - - ephy-window: connect web view to web-view-ready signal when it's created. - - Otherwise we rely on the view to be in the active tab in order for us - to be listening to the signal. That's the case right now, but could - change if we implement "always open in new tab" functionality. - - svn path=/trunk/; revision=8628 - - src/ephy-window.c | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit a7714b9a77a7edc00383d0b2f9b803b8d5bfdaa7 -Author: Gil Forcada Codinachs -Date: Sun Nov 30 12:49:33 2008 +0000 - - Minor fix to Catalan translation thanks to Sílvia Miranda - - svn path=/trunk/; revision=8627 - - po/ca.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 77e3f89f65528dc69e71d4ee19378836dae7f1f4 -Author: Diego Escalante Urrelo -Date: Sat Nov 29 20:04:31 2008 +0000 - - Add --enable-tests to configure - - tests/ will be build by default. - - svn path=/trunk/; revision=8625 - - Makefile.am | 6 +++++- - configure.ac | 13 ++++++++++++- - 2 files changed, 17 insertions(+), 2 deletions(-) - -commit db47da036dd918084f0f738fa87b1e2ba4dd10a4 -Author: Diego Escalante Urrelo -Date: Sat Nov 29 20:04:16 2008 +0000 - - Enable docs for ephy-spinner - - svn path=/trunk/; revision=8624 - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 10 +++++++ - doc/reference/epiphany.types | 2 ++ - doc/reference/tmpl/ephy-embed.sgml | 3 -- - doc/reference/tmpl/ephy-spinner.sgml | 58 ++++++++++++++++++++++++++++++++++++ - 6 files changed, 71 insertions(+), 4 deletions(-) - -commit 61a018fad384a370391ab35e291ebd6ce9eaeb7d -Author: Diego Escalante Urrelo -Date: Sat Nov 29 20:04:04 2008 +0000 - - Update documentation for lib/widgets/ephy-spinner.c - - svn path=/trunk/; revision=8623 - - lib/widgets/ephy-spinner.c | 169 +++++++++++++++++++++++---------------------- - 1 file changed, 86 insertions(+), 83 deletions(-) - -commit 62eb7a495d0eb5dcbbb5b4c59e56b256660b67c0 -Author: Diego Escalante Urrelo -Date: Sat Nov 29 20:03:51 2008 +0000 - - Document lib/widgets/ephy-zoom-control.c - - svn path=/trunk/; revision=8622 - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 8 +++++ - doc/reference/tmpl/ephy-embed.sgml | 3 -- - doc/reference/tmpl/ephy-zoom-control.sgml | 56 +++++++++++++++++++++++++++++++ - lib/widgets/ephy-zoom-control.c | 17 ++++++++++ - 6 files changed, 82 insertions(+), 4 deletions(-) - -commit baa23249c25bde67614b4231a0e35042955dd186 -Author: Diego Escalante Urrelo -Date: Sat Nov 29 20:03:38 2008 +0000 - - Add testephyzoomcontrol.c - - svn path=/trunk/; revision=8621 - - tests/Makefile.am | 10 +++++- - tests/testephyzoomcontrol.c | 80 +++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 89 insertions(+), 1 deletion(-) - -commit 3c970a2230d2bc841e26f55d9bacc707e8bc9529 -Author: Xan Lopez -Date: Sat Nov 29 19:14:21 2008 +0000 - - ephy-window: use new webkit API to create windows on request. - - svn path=/trunk/; revision=8620 - - src/ephy-window.c | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 52 insertions(+) - -commit 06eb49ff9adc6a5038abe630da95ffa2f99d91a9 -Author: Xan Lopez -Date: Sat Nov 29 19:14:13 2008 +0000 - - window: zoom in/out with ctrl+scroll-{up,down} - - We connect to the scroll-event of the view directly because - GtkScrolledWindow eats all the GdkEventScroll it gets without checking - the modifier keys mask, making it impossible to set-up our own handler - for scroll-event. - - svn path=/trunk/; revision=8619 - - src/ephy-window.c | 30 ++++++++++++++++++++++++++++++ - 1 file changed, 30 insertions(+) - -commit 1c6fdb2761de494f6ce4c6cd2e2e57c03827c88f -Author: Xan Lopez -Date: Sat Nov 29 19:14:05 2008 +0000 - - ephy-toolbar: remove useless realize/unrealize methods. - - svn path=/trunk/; revision=8618 - - src/ephy-toolbar.c | 16 ---------------- - 1 file changed, 16 deletions(-) - -commit b3e2c58756062f07bf47df3fea7af81190c38b08 -Author: Diego Escalante Urrelo -Date: Wed Nov 26 19:43:23 2008 +0000 - - Remove legacy ephy-history-item from epiphany.h - - It was breaking the build of things including epiphany.h - - svn path=/trunk/; revision=8617 - - src/epiphany.h.in | 1 - - 1 file changed, 1 deletion(-) - -commit 130c23eedea8a6b073d770c9d123dc1fc3e3eb77 -Author: Diego Escalante Urrelo -Date: Wed Nov 26 19:08:05 2008 +0000 - - Don't do single includes in lib/egg/egg-toolbars - - svn path=/trunk/; revision=8616 - - lib/egg/egg-toolbars-model.c | 2 +- - lib/egg/egg-toolbars-model.h | 3 +-- - 2 files changed, 2 insertions(+), 3 deletions(-) - -commit 8f2bf1669a234927647ee5eede8427b489e37d49 -Author: Christian Persch -Date: Mon Nov 17 11:17:42 2008 +0000 - - Correct version - - svn path=/trunk/; revision=8610 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d5ee66d6445306ee66c61bfce2d5e52a4e11c260 -Author: Claude Paroz -Date: Sat Nov 15 20:57:21 2008 +0000 - - Add translator comment for ISO-8859-1 default value (bug #351163). - - svn path=/trunk/; revision=8609 - - data/epiphany.schemas.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5e1461d192a1c1db2661d6fedb339837ed8e5fb2 -Author: Christian Persch -Date: Tue Nov 11 12:36:12 2008 +0000 - - Remove libpython check that fails with libtool 2 - - svn path=/trunk/; revision=8608 - - configure.ac | 25 ------------------------- - 1 file changed, 25 deletions(-) - -commit 0d171694caba5c8f01779c01fc0cdfdea4f120fa -Author: Christian Persch -Date: Wed Nov 5 14:53:32 2008 +0000 - - Fix multi-dnd with gtk 2.14 - - svn path=/trunk/; revision=8607 - - lib/egg/eggtreemultidnd.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit 03030bfe606c72c883c346324ac3c357901db751 -Author: Maxim V. Dziumanenko -Date: Thu Oct 30 09:28:18 2008 +0000 - - Maxim Dziumanenko - - * Update Ukrainian translation - - - svn path=/trunk/; revision=8604 - - po/uk.po | 2944 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1335 insertions(+), 1609 deletions(-) - -commit a679dca6f9426d8a73b8d75dcfcb0999462eafe9 -Author: Og B. Maciel -Date: Mon Oct 27 12:54:17 2008 +0000 - - Updated Brazilian Portuguese translation. - - svn path=/trunk/; revision=8602 - - po/ChangeLog.pre-2-23 | 5 +++ - po/pt_BR.po | 122 +++++++++++++++++++++++++------------------------- - 2 files changed, 67 insertions(+), 60 deletions(-) - -commit c70620c8e49aac1f84f6facabc83d3bd3af27445 -Author: Daniel Nylander -Date: Mon Oct 27 00:06:34 2008 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=8600 - - po/sv.po | 5255 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 2736 insertions(+), 2519 deletions(-) - -commit 916866e835d18b79def26e533104205e931b644c -Author: Xan Lopez -Date: Sun Oct 26 20:44:38 2008 +0000 - - ephy-home-action: plug leak. - - Use gtk_action_get_name instead of g_object_get to get the action name - so the string isn't duped. - - svn path=/trunk/; revision=8599 - - src/ephy-home-action.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 961e60405b4c55c85a462c527cf895dc5e143ee6 -Author: Gil Forcada Codinachs -Date: Thu Oct 23 13:57:53 2008 +0000 - - Added Asturian translation on behalf of Mikel González - - svn path=/trunk/; revision=8597 - - po/LINGUAS | 1 + - po/ast.po | 4283 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 4284 insertions(+) - -commit 3c29cb0e80e9cdea700b1fe578de4827fa33b540 -Author: Gil Forcada Codinachs -Date: Mon Oct 20 00:01:06 2008 +0000 - - Updated Catalan documentation - - svn path=/trunk/; revision=8593 - - help/ca/ca.po | 1225 +++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 708 insertions(+), 517 deletions(-) - -commit 836b002beb4081f5ea9bbcd1d327af47ddce0ecb -Author: Gil Forcada Codinachs -Date: Sun Oct 19 10:02:38 2008 +0000 - - Updated Catalan translation by Sílvia Miranda - - svn path=/trunk/; revision=8585 - - po/ca.po | 3064 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1394 insertions(+), 1670 deletions(-) - -commit c4f0f138e21b189ce04cfe07ccbd5184205c8df9 -Author: Christian Persch -Date: Fri Oct 17 21:54:51 2008 +0000 - - Update from libegg - - svn path=/trunk/; revision=8584 - - lib/egg/eggdesktopfile.c | 159 +++++++++++++++++++++++++++++++++++---------- - lib/egg/eggdesktopfile.h | 43 ++++++++++-- - lib/egg/eggsmclient-xsmp.c | 110 +++++++++++++++---------------- - lib/egg/eggsmclient.c | 28 ++++++-- - 4 files changed, 232 insertions(+), 108 deletions(-) - -commit efbf42491d8a8c99db911be9c20cba68424c0b3f -Author: Diego Escalante Urrelo -Date: Thu Oct 16 13:51:02 2008 +0000 - - Use the correct return type for ephy_embed_get_link_message and - ephy_embed_get_title - - svn path=/trunk/; revision=8583 - - src/epiphany.defs | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 0de5a02e111e4572f643229f5acea2647cecb290 -Author: Xan Lopez -Date: Tue Oct 14 08:36:48 2008 +0000 - - tests: fix compilation when builddir != srcdir - - svn path=/trunk/; revision=8581 - - tests/Makefile.am | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit c99de0b359dd9b23c7a31a9f8c10ae4cde51fb7b -Author: Diego Escalante Urrelo -Date: Sun Oct 12 22:35:44 2008 +0000 - - Fix conflicting mnemonics in Clear All Personal Data - - Reuse existing strings, closes: bug #549892. Patch by Juan Percy Rojas Cruz. - - svn path=/trunk/; revision=8579 - - src/pdm-dialog.c | 15 ++++++++++++--- - 1 file changed, 12 insertions(+), 3 deletions(-) - -commit fc707a3cd5c79dc3d770e9b6e93f71056979721c -Author: Jorge Gonzalez Gonzalez -Date: Sun Oct 12 20:48:53 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8577 - - help/ChangeLog.pre-2-23 | 4 + - help/es/es.po | 1145 +++++++++++++++++++++++++---------------------- - 2 files changed, 620 insertions(+), 529 deletions(-) - -commit 46c7a529c9a02d062e3f52f3964ebcd989f2352b -Author: Luca Ferretti -Date: Mon Oct 6 14:12:10 2008 +0000 - - Updated it translation (Francesco Marletta). - - svn path=/trunk/; revision=8575 - - po/it.po | 725 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 361 insertions(+), 364 deletions(-) - -commit c093c1d377509b142deb072e522bc9aeee54f28b -Author: Petr Kovář -Date: Mon Sep 29 13:33:15 2008 +0000 - - Fixed Czech UI & manual translation by Lucas Lommer (bug #554110). - - svn path=/trunk/; revision=8571 - - help/cs/cs.po | 1117 ++++++++++++++++++++++++++++++--------------------------- - po/cs.po | 727 +++++++++++++++++++------------------ - 2 files changed, 950 insertions(+), 894 deletions(-) - -commit 14554e3f29aba4b727b4f89f4465b04871a6c3ee -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:56:34 2008 +0000 - - Add missing config.h - - svn path=/trunk/; revision=8569 - - tests/testephylocationentry.c | 1 + - 1 file changed, 1 insertion(+) - -commit 393573604441bda839eb17a7c205b96bd3d73c8b -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:56:21 2008 +0000 - - Regenerate docs templates, after new docs added - - svn path=/trunk/; revision=8568 - - doc/reference/tmpl/ephy-embed.sgml | 113 ------------------------ - doc/reference/tmpl/epiphany-unused.sgml | 149 ++++++++++++++++++++++++++++++++ - 2 files changed, 149 insertions(+), 113 deletions(-) - -commit 9309c43bb0fe7f3dd3a5fba9b1509f7956c7fb32 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:56:07 2008 +0000 - - Correctly title Ephy*Entry widgets in docs - - svn path=/trunk/; revision=8567 - - doc/reference/epiphany-sections.txt | 6 ++++ - doc/reference/tmpl/ephy-embed.sgml | 1 - - doc/reference/tmpl/ephy-icon-entry.sgml | 9 +++++- - doc/reference/tmpl/ephy-location-entry.sgml | 48 ++++++++++++++++++++++++++++- - doc/reference/tmpl/ephy-search-entry.sgml | 16 +++++++++- - 5 files changed, 76 insertions(+), 4 deletions(-) - -commit 83baedd031a257d3bbabab007d6c0b2d703f6555 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:55:52 2008 +0000 - - Enable ephy-search-entry docs build - - Also, create a new Widgets section. - - svn path=/trunk/; revision=8566 - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 6 +++++- - doc/reference/epiphany-sections.txt | 6 ++++++ - doc/reference/epiphany.types | 2 ++ - doc/reference/tmpl/ephy-embed.sgml | 9 -------- - doc/reference/tmpl/ephy-icon-entry.sgml | 2 +- - doc/reference/tmpl/ephy-search-entry.sgml | 35 +++++++++++++++++++++++++++++++ - 7 files changed, 49 insertions(+), 12 deletions(-) - -commit 049164e25784d902bd69439b62da8eaf17db6d0b -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:55:37 2008 +0000 - - Minor nitpick in the .h files - - svn path=/trunk/; revision=8565 - - lib/widgets/ephy-location-entry.h | 2 +- - lib/widgets/ephy-search-entry.h | 16 ++++++++-------- - 2 files changed, 9 insertions(+), 9 deletions(-) - -commit d38bc67fc77f6511f0bfec314ca20c35b422390e -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:55:24 2008 +0000 - - Enable ephy-icon-entry docs build - - svn path=/trunk/; revision=8564 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 7 +++++ - doc/reference/epiphany.types | 2 ++ - doc/reference/tmpl/ephy-embed.sgml | 5 ---- - doc/reference/tmpl/ephy-icon-entry.sgml | 46 +++++++++++++++++++++++++++++++++ - doc/reference/tmpl/epiphany-unused.sgml | 41 ----------------------------- - 6 files changed, 56 insertions(+), 46 deletions(-) - -commit dfed96e7931b6fae29dee53629c0e6c8608af1f5 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:55:10 2008 +0000 - - Correctly mark doc comments for parsing - - svn path=/trunk/; revision=8563 - - lib/widgets/ephy-search-entry.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 8100ee0f3d23693d4b129f66c0ed32ce32684700 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:54:57 2008 +0000 - - Include missing Returns: in comments - - svn path=/trunk/; revision=8562 - - embed/ephy-embed.c | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit 7d32cee09736b1a02c75adc8974ffeb763cc7ce8 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:54:41 2008 +0000 - - Sync comment parameters with actual parameters - - svn path=/trunk/; revision=8561 - - src/ephy-extensions-manager.c | 8 ++++---- - src/ephy-session.c | 4 ++-- - 2 files changed, 6 insertions(+), 6 deletions(-) - -commit 3b0ff58340c2464bf5df073e86f51e15c3cceaaa -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:54:24 2008 +0000 - - Avoid the parsing of non doc comments - - svn path=/trunk/; revision=8560 - - embed/ephy-encodings.c | 2 +- - lib/ephy-password-dialog.c | 2 +- - src/bookmarks/ephy-bookmarks-import.c | 2 +- - src/ephy-link-action.c | 6 +++--- - src/pdm-dialog.c | 2 +- - 5 files changed, 7 insertions(+), 7 deletions(-) - -commit 1252239ef90a65845487fddbe620996533a4faa3 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:54:12 2008 +0000 - - Update docs for ephy-icon-entry - - svn path=/trunk/; revision=8559 - - lib/widgets/ephy-icon-entry.c | 16 ++++++++++++---- - 1 file changed, 12 insertions(+), 4 deletions(-) - -commit 5e8354c9b2d7f8826148f2c8e341af14cdf87f8c -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:54:00 2008 +0000 - - Enable documentation build for ephy-location-entry - - Conflicts: - - doc/reference/epiphany-sections.txt - doc/reference/tmpl/EphySingle.sgml - doc/reference/tmpl/ephy-embed.sgml - doc/reference/tmpl/epiphany-unused.sgml - - svn path=/trunk/; revision=8558 - - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 20 ++++ - doc/reference/tmpl/EphySingle.sgml | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 115 ++++++++++++++++--- - doc/reference/tmpl/ephy-location-entry.sgml | 171 ++++++++++++++++++++++++++++ - doc/reference/tmpl/epiphany-unused.sgml | 94 +++++++-------- - 7 files changed, 341 insertions(+), 63 deletions(-) - -commit 829422676119b9409fab423f481a5a43d9838e45 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:53:48 2008 +0000 - - Sync argument names in ephy-location-entry and update docs - - There were inconsistencies between the .h file and the .c file. Now all the - arguments are named 'entry'. - Also add documentation for ephy_location_entry_set_match_func and - ephy_location_entry_set_completion. - - svn path=/trunk/; revision=8557 - - lib/widgets/ephy-location-entry.c | 71 +++++++++++++++++++++++++++------------ - lib/widgets/ephy-location-entry.h | 12 +++---- - 2 files changed, 56 insertions(+), 27 deletions(-) - -commit 9139d341cbdb2fa8fac7ab8e419dccee8f07cfa2 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:53:37 2008 +0000 - - Document lib/widgets/ephy-location-entry.c - - svn path=/trunk/; revision=8556 - - lib/widgets/ephy-location-entry.c | 133 ++++++++++++++++++++++++++++++++++++++ - 1 file changed, 133 insertions(+) - -commit 9edd54c2d241a6c3a3a5d46ca68520ecc92c57f5 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:53:25 2008 +0000 - - Document lib/widgets/ephy-icon-entry.c - - Functions ephy_icon_entry_pack_widget and ephy_icon_entry_get_entry. Not sure - how to extract that to proper gtk-docs and stuff. - - Document lib/widgets/ephy-search-entry.c - - svn path=/trunk/; revision=8555 - - lib/widgets/ephy-icon-entry.c | 19 +++++++++++++++++++ - lib/widgets/ephy-search-entry.c | 14 ++++++++++++++ - 2 files changed, 33 insertions(+) - -commit 9557a60883d347029dbd29f433ab21eef2833ef1 -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:53:14 2008 +0000 - - tephylocationentry.c: can_undo and can_redo tests - - svn path=/trunk/; revision=8554 - - tests/testephylocationentry.c | 41 +++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 41 insertions(+) - -commit 17f0f1a53b2fab996b735c6d3dc395c07699983c -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:53:03 2008 +0000 - - Reindent to 2 spaces and improve the existing tests - - Add vim modelines to the files. - - svn path=/trunk/; revision=8553 - - tests/testephyiconentry.c | 99 ++++++++++++++++++++-------------- - tests/testephylocationentry.c | 120 +++++++++++++++++++++--------------------- - tests/testephysearchentry.c | 56 ++++++++++++++------ - 3 files changed, 161 insertions(+), 114 deletions(-) - -commit f550b712fc1f930080fc240e2a30c60cd231d36f -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:52:51 2008 +0000 - - Add testephylocationentry.c - - See the FIXME about the mystery crasher, it's probably some kind of leak. - - svn path=/trunk/; revision=8552 - - tests/Makefile.am | 20 +++++-- - tests/testephyiconentry.c | 24 +++++--- - tests/testephylocationentry.c | 135 ++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 166 insertions(+), 13 deletions(-) - -commit a57cdc7eaabdb5e148cbb67a3a27acc4dce764ec -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:52:40 2008 +0000 - - Revert "Makefile fixes." - - This reverts commit 58afaf81fbf64dfcb779ef2e7531afb4c11693e1. - - svn path=/trunk/; revision=8551 - - tests/Makefile.am | 40 +++++++++++++--------------------------- - 1 file changed, 13 insertions(+), 27 deletions(-) - -commit 9c4b573fa79495d2b577e2a5776c7e5783004e2e -Author: Diego Escalante Urrelo -Date: Mon Sep 29 05:52:23 2008 +0000 - - Remove useless ephy-node #include - - svn path=/trunk/; revision=8550 - - lib/widgets/ephy-location-entry.h | 2 -- - 1 file changed, 2 deletions(-) - -commit de2dfe657480fa496dc64f74e513b5a29258e71c -Author: Norayr Chilingaryan -Date: Sat Sep 27 21:08:08 2008 +0000 - - Norayr Chilingaryan - 2008-09-28 fixed bug - - svn path=/trunk/; revision=8549 - - po/hy.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 72f0064c759970287149058a64dae501ddcc1b24 -Author: Norayr Chilingaryan -Date: Sat Sep 27 21:06:02 2008 +0000 - - Added epiphany armenian translation - - svn path=/trunk/; revision=8548 - - po/LINGUAS | 1 + - po/hy.po | 3419 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 3420 insertions(+) - -commit 63a912ec71d397951da464d151d92424c826aa45 -Author: Christian Persch -Date: Fri Sep 26 19:30:06 2008 +0000 - - Print version to stdout, not stderr. - - svn path=/trunk/; revision=8547 - - src/ephy-main.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 611afe354dd1e4c92a1985af31760c1cd5624e0b -Author: Christian Persch -Date: Fri Sep 26 17:51:18 2008 +0000 - - Readd --version which was lost when removing libgnome usage. - - svn path=/trunk/; revision=8546 - - src/ephy-main.c | 16 +++++++++++++++- - 1 file changed, 15 insertions(+), 1 deletion(-) - -commit 90e98d936dd961b638045403e3502168c02749f4 -Author: Og B. Maciel -Date: Thu Sep 25 20:06:18 2008 +0000 - - Updated Brazilian Portuguese translation. - - svn path=/trunk/; revision=8545 - - po/pt_BR.po | 3251 +++++++++++++++++++++++++++-------------------------------- - 1 file changed, 1494 insertions(+), 1757 deletions(-) - -commit 659169914fa8da235b35730c688a23c3caca8b3a -Author: Christian Persch -Date: Wed Sep 24 20:02:55 2008 +0000 - - Remove libgnome and libgnomeui dependency, using EggSMClient instead of GnomeClient. - - svn path=/trunk/; revision=8541 - - configure.ac | 11 +- - embed/downloader-view.c | 10 +- - lib/Makefile.am | 1 + - lib/egg/Makefile.am | 18 +- - lib/egg/eggdesktopfile.c | 1386 ++++++++++++++++++++++++++++++++ - lib/egg/eggdesktopfile.h | 130 +++ - lib/egg/eggsmclient-private.h | 53 ++ - lib/egg/eggsmclient-xsmp.c | 1406 +++++++++++++++++++++++++++++++++ - lib/egg/eggsmclient.c | 588 ++++++++++++++ - lib/egg/eggsmclient.h | 123 +++ - lib/ephy-file-helpers.c | 5 - - lib/ephy-file-helpers.h | 3 + - lib/ephy-gui.c | 76 +- - lib/ephy-gui.h | 5 - - lib/ephy-password-dialog.c | 20 +- - lib/ephy-password-dialog.h | 11 +- - src/Makefile.am | 1 + - src/bookmarks/ephy-bookmarks-editor.c | 1 - - src/bookmarks/ephy-bookmarks.c | 2 +- - src/bookmarks/ephy-open-tabs-action.c | 12 +- - src/ephy-find-toolbar.c | 2 + - src/ephy-history-window.c | 1 - - src/ephy-main.c | 75 +- - src/ephy-session.c | 161 ++-- - src/ephy-window.c | 1 - - src/window-commands.c | 2 + - 26 files changed, 3934 insertions(+), 170 deletions(-) - -commit e1d7349c1c0191c371c11a9011eb288187e2cc9d -Author: Christian Persch -Date: Wed Sep 24 13:10:30 2008 +0000 - - Remove this - - svn path=/trunk/; revision=8540 - - po/ChangeLog | 3 --- - 1 file changed, 3 deletions(-) - -commit 9467a2efd06c42735b169f24bd3efc66dc5a4ac4 -Author: Reinout van Schouwen -Date: Tue Sep 23 22:50:08 2008 +0000 - - C/epiphany.xml: Port 2.24 documentation fixes to trunk - - 2008-09-24 Reinout van Schouwen - - C/epiphany.xml: Port 2.24 documentation fixes to trunk - - - svn path=/trunk/; revision=8533 - - help/C/epiphany.xml | 28 ++++++++++++++++++++++------ - 1 file changed, 22 insertions(+), 6 deletions(-) - -commit d8033d40bd5b800620bc46285cdc0d897c075cfb -Author: Kenneth Nielsen -Date: Tue Sep 23 22:37:54 2008 +0000 - - Updated Danish translation, fixes by Ask H. Larsen - - svn path=/trunk/; revision=8532 - - po/da.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 88e6eb9e80535964d7c55cd931c0bcede545e74b -Author: Felix I -Date: Tue Sep 23 12:03:42 2008 +0000 - - 2008-09-23 I. Felix ta translation error corrected - - svn path=/trunk/; revision=8528 - - po/ta.po | 2450 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1316 insertions(+), 1134 deletions(-) - -commit 1b41fe4f200debd6d24f24e43a1c317be0a1cc45 -Author: Vincent Untz -Date: Mon Sep 22 14:15:22 2008 +0000 - - Fix for GTK+ adjustment policy enforcement: - - 2008-09-22 Vincent Untz - - * 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 - - data/glade/prefs-dialog.glade | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit f438506201a2ee5beff58755b71113f261c4296e -Author: Mugurel Tudor -Date: Sun Sep 21 21:25:08 2008 +0000 - - Updated Romanian translation by Mişu Moldovan - - 2008-09-22 Mugurel Tudor - - * ro.po: Updated Romanian translation by - Mişu Moldovan - - svn path=/trunk/; revision=8518 - - po/ro.po | 3476 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 2040 insertions(+), 1436 deletions(-) - -commit 47d85c7a54842e92c03fb927903bffe2665cf77a -Author: Nickolay V. Shmyrev -Date: Sun Sep 21 20:29:02 2008 +0000 - - Updated Russian translation. - - 2008-09-21 Nickolay V. Shmyrev - - * ru.po: Updated Russian translation. - - - svn path=/trunk/; revision=8516 - - po/ru.po | 2876 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1301 insertions(+), 1575 deletions(-) - -commit 86a55177a9139e28095a3dd015f836833ea98694 -Author: Gabor Keleman -Date: Sun Sep 21 11:38:05 2008 +0000 - - Translation updated - - svn path=/trunk/; revision=8515 - - po/hu.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 1c8d9dacceacd00217a3d678a4df28c118f4945b -Author: Christian Persch -Date: Sun Sep 21 11:27:01 2008 +0000 - - Remove po/ChangeLog, and depend on intltool 0.40.4 in svn builds. - - svn path=/trunk/; revision=8513 - - autogen.sh | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 20f465e606ef11929ab9ce711d163f9b7cb4ea1e -Author: Kenneth Nielsen -Date: Sun Sep 21 01:59:55 2008 +0000 - - Updated Danish translation by Kenneth Nielsen - - svn path=/trunk/; revision=8511 - - po/da.po | 2866 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1299 insertions(+), 1567 deletions(-) - -commit 67b8618a4584138cc65b1d72649e6c727667ca87 -Author: Petr Kovář -Date: Sat Sep 20 20:51:56 2008 +0000 - - Updated Czech translation by Lucas Lommer. Added Czech translation of manual by Lucas Lommer. - - svn path=/trunk/; revision=8508 - - help/Makefile.am | 2 +- - help/cs/cs.po | 3208 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - po/ChangeLog | 29 - - po/cs.po | 195 ++-- - 4 files changed, 3300 insertions(+), 134 deletions(-) - -commit 5ae7dd04461b392fbca020feef67582c6ea1c4e5 -Author: Alexander Shopov -Date: Fri Sep 19 19:01:52 2008 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2008-09-19 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - svn path=/trunk/; revision=8505 - - po/bg.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 10fb5b21dc26f2d38348ece39587c6bcbd4c08a5 -Author: Alexander Shopov -Date: Fri Sep 19 19:01:10 2008 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2008-09-19 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - svn path=/trunk/; revision=8504 - - po/ChangeLog | 5 + - po/bg.po | 2628 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 1179 insertions(+), 1454 deletions(-) - -commit 6d9ff0c538ae7aa1d5debc3c03da176f236d818d -Author: Funda Wang -Date: Fri Sep 19 00:25:11 2008 +0000 - - Updated zh_CN translation. - - svn path=/trunk/; revision=8500 - - po/ChangeLog | 4 + - po/zh_CN.po | 1004 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 506 insertions(+), 502 deletions(-) - -commit 28758b92dbf620d244a2387dfbe5d3b7bbdfb034 -Author: Theppitak Karoonboonyanan -Date: Wed Sep 17 10:38:29 2008 +0000 - - Updated Thai translation (merge from gnome-2-24 branch). - - 2008-09-17 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation (merge from gnome-2-24 branch). - - - svn path=/trunk/; revision=8494 - - po/th.po | 166 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 81 insertions(+), 85 deletions(-) - -commit 86d6167796da5456d0403642a2ef0380489e63b8 -Author: Gabor Keleman -Date: Tue Sep 16 17:03:58 2008 +0000 - - Small update - - svn path=/trunk/; revision=8491 - - po/hu.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 01b06955d2e58f3dad9333f254ad6d0143983bce -Author: Gabor Keleman -Date: Tue Sep 16 11:07:03 2008 +0000 - - Small update - - svn path=/trunk/; revision=8490 - - po/hu.po | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 769600ed3a19bf52e2f81ec27de7fcb06b61284b -Author: Gabor Keleman -Date: Sun Sep 14 11:52:01 2008 +0000 - - Hungarian translation updated - - svn path=/trunk/; revision=8484 - - po/hu.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 57555e050d2e5736759180fd6cb79a5a98269431 -Author: Gabor Keleman -Date: Sun Sep 14 11:46:05 2008 +0000 - - Hungarian translation updated - - svn path=/trunk/; revision=8483 - - po/hu.po | 1012 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 502 insertions(+), 510 deletions(-) - -commit 7dbc1d46cf4556079e2b937981b88be548802083 -Author: Arangel Angov -Date: Sun Sep 14 08:50:21 2008 +0000 - - Arangel Angov * mk.po: Updated Macedonian translation - - svn path=/trunk/; revision=8480 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit e38527ac7581c0e8e8a04a8eef0c6435a499c305 -Author: Arangel Angov -Date: Sun Sep 14 08:49:15 2008 +0000 - - Arangel Angov * mk.po: Updated Macedonian translation - - svn path=/trunk/; revision=8479 - - po/mk.po | 1258 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 628 insertions(+), 630 deletions(-) - -commit 093d2e778c337c9ed461c832a65ec503583215b5 -Author: Baris Cicek -Date: Sat Sep 13 03:16:03 2008 +0000 - - Updated Turkish Translation - - svn path=/trunk/; revision=8477 - - po/ChangeLog | 4 + - po/tr.po | 2651 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 1194 insertions(+), 1461 deletions(-) - -commit 992a25caca7ad92edd462eb67745d4aaf5ac3421 -Author: Duarte Loreto -Date: Fri Sep 12 00:16:46 2008 +0000 - - Fixed Portuguese terminology (Duarte Loreto ) - - svn path=/trunk/; revision=8474 - - po/pt.po | 56 ++++++++++++++++++++++++++------------------------------ - 1 file changed, 26 insertions(+), 30 deletions(-) - -commit 02a5a1babd9449fd89fa3f4bf3e0ce827c1b4a93 -Author: Rajesh Ranjan -Date: Tue Sep 9 10:35:08 2008 +0000 - - hindi update by Rajesh Ranjan - - svn path=/trunk/; revision=8468 - - po/ChangeLog | 4 + - po/hi.po | 1539 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 713 insertions(+), 830 deletions(-) - -commit 1389e78fdd515c89b5478baec3536a126a8ea35d -Author: Robert Sedak -Date: Mon Sep 8 20:05:32 2008 +0000 - - Update: Croatian Language - - svn path=/trunk/; revision=8467 - - po/hr.po | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 209a3e52bf7f530d9efbdd5c3f12922eb0d0846f -Author: Praveen Arimbrathodiyil -Date: Mon Sep 8 02:46:16 2008 +0000 - - Malayalm translation updated - - svn path=/trunk/; revision=8465 - - po/ml.po | 2200 +++++++++++++++++++++----------------------------------------- - 1 file changed, 749 insertions(+), 1451 deletions(-) - -commit 9bff8420982ff85dfc1e2b68968e7790cc5eaa22 -Author: Robert Sedak -Date: Sun Sep 7 21:03:17 2008 +0000 - - Update: Croatian Language - - svn path=/trunk/; revision=8464 - - po/hr.po | 4640 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 2547 insertions(+), 2093 deletions(-) - -commit 2013b3f8442e183e8348720c9dc9db3adf056b6e -Author: Claude Paroz -Date: Sun Sep 7 20:24:44 2008 +0000 - - Updated French translation (synched with gnome-2-24). - - svn path=/trunk/; revision=8463 - - help/fr/fr.po | 1244 +++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 671 insertions(+), 573 deletions(-) - -commit 420faede86f79b7a430a2104e0fb9ad194120aca -Author: Cosimo Cecchi -Date: Sun Sep 7 12:04:55 2008 +0000 - - Remove eel-app-launch-context.c from POTFILES.in - - svn path=/trunk/; revision=8460 - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit c445dfd01935d073d73cb6f1d758a7e08d7d25fe -Author: Cosimo Cecchi -Date: Thu Sep 4 23:23:03 2008 +0000 - - Drop usage of EelAppLaunchContext; replace it with GdkAppLaunchContext. - Bug #550883. - - svn path=/trunk/; revision=8457 - - lib/egg/Makefile.am | 6 +- - lib/egg/eel-app-launch-context.c | 613 --------------------------------------- - lib/egg/eel-app-launch-context.h | 77 ----- - lib/ephy-file-helpers.c | 24 +- - src/window-commands.c | 1 - - 5 files changed, 15 insertions(+), 706 deletions(-) - -commit 27896c9da1c67ad4da2112fcfd4fa9e5ecd028a0 -Author: Reinout van Schouwen -Date: Wed Sep 3 22:43:52 2008 +0000 - - 2008-09-04 Reinout van Schouwen - - * 2008-09-04 Reinout van Schouwen - - - C/epiphany.xml: Update documentation to reflect topic chooser. - Fixes bug #448613. - - - svn path=/trunk/; revision=8455 - - help/C/epiphany.xml | 30 +++++++++++++++++++++++------- - 1 file changed, 23 insertions(+), 7 deletions(-) - -commit 57f5730f36cf6b5a93dc6f8fbf7ad10a064b8425 -Author: Loic Minier -Date: Tue Sep 2 19:58:18 2008 +0000 - - Revert special handling of double click in the LocationEntry; bug #426349. - - svn path=/trunk/; revision=8452 - - lib/widgets/ephy-location-entry.c | 14 -------------- - 1 file changed, 14 deletions(-) - -commit 44ece2fb423ed9af5925ed87452807be6f005a22 -Author: Christian Persch -Date: Mon Sep 1 11:59:17 2008 +0000 - - Remove deprecated Encoding line. - - svn path=/trunk/; revision=8448 - - data/bme.desktop.in.in | 1 - - data/epiphany.desktop.in.in | 1 - - 2 files changed, 2 deletions(-) - -commit a4164db480c4ad06e22675f134187b8eecda1ecd -Author: Laurent Dhima -Date: Sun Aug 31 16:03:28 2008 +0000 - - Updated Translation - - svn path=/trunk/; revision=8444 - - po/ChangeLog | 4 + - po/sq.po | 3260 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 1387 insertions(+), 1877 deletions(-) - -commit cd4623f05c1b0999de14554e149815fcedfb2159 -Author: Christian Persch -Date: Fri Aug 29 17:20:38 2008 +0000 - - Makefile fixes. - - svn path=/trunk/; revision=8439 - - tests/Makefile.am | 40 +++++++++++++++++++++++++++------------- - 1 file changed, 27 insertions(+), 13 deletions(-) - -commit dbaa4d85a0a663765edf09359a34b77e4b62ecd2 -Author: Gintautas Miliauskas -Date: Thu Aug 28 16:41:38 2008 +0000 - - Updated Lithuanian translation. - - 2008-08-28 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - - - - svn path=/trunk/; revision=8438 - - po/lt.po | 528 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 260 insertions(+), 268 deletions(-) - -commit f16c7e091c5b0de64ae4c01f41af39f96f0efc0d -Author: Pema Geyleg -Date: Wed Aug 27 04:24:03 2008 +0000 - - Updated Dzongkha Translation - - svn path=/trunk/; revision=8436 - - po/dz.po | 1805 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1002 insertions(+), 803 deletions(-) - -commit 89bb616f27e82d7a51d7a7d9b6c519bec2bfb3ba -Author: Robert-André Mauchin -Date: Mon Aug 25 09:30:11 2008 +0000 - - Updated French translation. - - 2008-08-25 Robert-André Mauchin - - * fr.po: Updated French translation. - - - svn path=/trunk/; revision=8430 - - po/fr.po | 3014 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1370 insertions(+), 1644 deletions(-) - -commit 96a39d924a8bdc5d2a386f377917866cbabcfc8c -Author: Chao-Hsiung Liao -Date: Thu Aug 21 12:02:46 2008 +0000 - - Updated Traditional Chinese translation (Hong Kong). Updated Traditional - - 2008-08-21 Chao-Hsiung Liao - - * zh_HK.po: Updated Traditional Chinese translation (Hong - Kong). - * zh_TW.po: Updated Traditional Chinese translation (Taiwan). - - - svn path=/trunk/; revision=8429 - - po/zh_HK.po | 2806 +++++++++++++++++++++++++++------------------------------- - po/zh_TW.po | 2820 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 2548 insertions(+), 3078 deletions(-) - -commit 0a4fe41863f5422cb6090b3909c2e3f7f417398c -Author: Inaki Larranaga Murgoitio -Date: Wed Aug 20 17:25:07 2008 +0000 - - Updated Basque translation. - - 2008-08-20 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - - - svn path=/trunk/; revision=8428 - - po/eu.po | 1990 +++++++++++++++++--------------------------------------------- - 1 file changed, 539 insertions(+), 1451 deletions(-) - -commit 2a1ba14c1c15a8d0bace82a2da299c8bddc5bc5f -Author: Theppitak Karoonboonyanan -Date: Fri Aug 15 10:02:33 2008 +0000 - - Updated Thai translation, merged from gnome-2-24 branch. - - 2008-08-15 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation, merged from gnome-2-24 branch. - - - svn path=/trunk/; revision=8421 - - po/th.po | 2833 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1279 insertions(+), 1554 deletions(-) - -commit dae7a937636809bb90487c539ffac7185e5c1299 -Author: Diego Escalante Urrelo -Date: Thu Aug 14 22:55:51 2008 +0000 - - Bump GTK+ requirement to be able to build tests/. - - svn path=/trunk/; revision=8420 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit aefbb7f4a30188b281becee9d61b4b519c625a9f -Author: Diego Escalante Urrelo -Date: Thu Aug 14 22:47:39 2008 +0000 - - Port the location bar to use GRegex. - - Use a simple regex matching the input text, implements the same behaviour of - the current bar, plus: - - substring suggestions (closes: #151932) - - unicode support (closes: #343906) - - diacritics in topic keywords (closes: #328162) - - completion on history items titles (closes: #534218) - - Also, of course, closes: #517960 - port the url bar to GRegex. - - - svn path=/trunk/; revision=8419 - - lib/widgets/ephy-location-entry.c | 52 +++++++++++++-- - lib/widgets/ephy-location-entry.h | 9 ++- - src/ephy-location-action.c | 135 ++++++++++++-------------------------- - 3 files changed, 92 insertions(+), 104 deletions(-) - -commit 82a8ea1c5dbe7e892763d1f7395fe7d69c7a485d -Author: Diego Escalante Urrelo -Date: Thu Aug 14 11:43:23 2008 +0000 - - Remove the sort_func for the location entry. - - It is not really needed, since the values in comparison are simple numbers that - don't need any thought on top. - - svn path=/trunk/; revision=8416 - - lib/widgets/ephy-location-entry.c | 25 +++++-------------------- - 1 file changed, 5 insertions(+), 20 deletions(-) - -commit c3463bf64ddd607326384f6134fc38b9710887b8 -Author: Diego Escalante Urrelo -Date: Thu Aug 14 10:50:27 2008 +0000 - - Make the order in which we name the cols consistent. - - Just a minor reordering of *_col variables, no code changed. - - - svn path=/trunk/; revision=8414 - - lib/widgets/ephy-location-entry.c | 8 ++++---- - lib/widgets/ephy-location-entry.h | 4 ++-- - src/ephy-completion-model.h | 2 +- - src/ephy-location-action.c | 4 ++-- - 4 files changed, 9 insertions(+), 9 deletions(-) - -commit 08f119db46c4de4d5d52f40563f427f830783f7e -Author: Diego Escalante Urrelo -Date: Thu Aug 14 10:30:41 2008 +0000 - - Remove an unneeded cast to pointer. - - There's an uneeded GUINT_TO_POINTER in gtk_cell_layout_set_cell_data_func for - extracell_data_func. We can use the le pointer to get the cols we want. - - - svn path=/trunk/; revision=8412 - - lib/widgets/ephy-location-entry.c | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -commit bf27146de73f7e855ee9ae1cea7631face0622af -Author: Ilkka Tuohela -Date: Wed Aug 13 12:14:06 2008 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=8409 - - po/ChangeLog | 4 + - po/fi.po | 2897 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 1317 insertions(+), 1584 deletions(-) - -commit 0f25c3c21bde1ce2ddd969a1d05cfa3596256045 -Author: Takeshi AIHANA -Date: Mon Aug 11 14:02:08 2008 +0000 - - Updated Japanese translation. - - 2008-08-11 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - - - svn path=/trunk/; revision=8405 - - po/ja.po | 2008 +++++++++++++++++--------------------------------------------- - 1 file changed, 542 insertions(+), 1466 deletions(-) - -commit 155d8311905e5588a302eecfa8b9c1bfbea644d6 -Author: Duarte Loreto -Date: Sun Aug 10 09:27:08 2008 +0000 - - Updated Portuguese (pt) translation by Duarte Loreto - - svn path=/trunk/; revision=8403 - - po/pt.po | 2917 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1325 insertions(+), 1592 deletions(-) - -commit f1b1dcfeb64afda0018d032c196f2f3650117476 -Author: Petr Kovář -Date: Fri Aug 8 20:41:39 2008 +0000 - - cs.po: Updated Czech translation by Lucas Lommer. - - svn path=/trunk/; revision=8401 - - po/cs.po | 1610 +++++++++++++++++++------------------------------------------- - 1 file changed, 481 insertions(+), 1129 deletions(-) - -commit b60a57620807f2d7096a3c84430c8f625f603833 -Author: Erdal Ronahi -Date: Fri Aug 8 03:27:03 2008 +0000 - - Updated translations - - svn path=/trunk/; revision=8399 - - po/ku.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit fb7387e40ff0fb3bf95c44446b34c75cec98c5b0 -Author: Erdal Ronahi -Date: Fri Aug 8 03:25:24 2008 +0000 - - Updated translations by Erdal Ronahi - - svn path=/trunk/; revision=8398 - - po/ku.po | 55 ++++++++++++++++++++----------------------------------- - 1 file changed, 20 insertions(+), 35 deletions(-) - -commit 146b8fadb45f8613d8dc4d003bfe566011a3467a -Author: Erdal Ronahi -Date: Fri Aug 8 03:06:56 2008 +0000 - - Updated translations by Erdal Ronahi - - svn path=/trunk/; revision=8397 - - po/ku.po | 2921 ++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 1298 insertions(+), 1623 deletions(-) - -commit 79410dea9641b92d27dd19329e00247ec74b8949 -Author: Christian Persch -Date: Mon Aug 4 18:14:22 2008 +0000 - - Re-add po/ChangeLog; intltool breaks without it. - - svn path=/trunk/; revision=8390 - - po/ChangeLog | 3 +++ - 1 file changed, 3 insertions(+) - -commit 5310add9c8f1d47b30aaba789892174d9a850e22 -Author: Christian Persch -Date: Mon Aug 4 17:35:11 2008 +0000 - - Also remove ChangeLog from po/ and help/, and dist the old ones. - - svn path=/trunk/; revision=8386 - - ChangeLog.README | 5 + - Makefile.am | 2 + - help/ChangeLog | 379 --- - help/ChangeLog.pre-2-23 | 379 +++ - po/ChangeLog | 8209 ----------------------------------------------- - po/ChangeLog.pre-2-23 | 8209 +++++++++++++++++++++++++++++++++++++++++++++++ - 6 files changed, 8595 insertions(+), 8588 deletions(-) - -commit 9ee872c28e02711f162d5f40f6e0ebeaffe52e48 -Author: Diego Escalante Urrelo -Date: Mon Aug 4 13:31:06 2008 +0000 - - Add testephyiconentry.c to tests/ - - Part of #544642. - - svn path=/trunk/; revision=8385 - - tests/Makefile.am | 22 ++++++++---- - tests/testephyiconentry.c | 88 +++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 103 insertions(+), 7 deletions(-) - -commit d0d48357cf641635b6bf09222de38059113ffb32 -Author: Diego Escalante Urrelo -Date: Mon Aug 4 13:30:55 2008 +0000 - - Add the base for tests/ support. - - Include a test for ephysearchentry, need to make them optional too. - Part of #544642. - - svn path=/trunk/; revision=8384 - - Makefile.am | 2 +- - configure.ac | 1 + - tests/Makefile.am | 18 +++++++++++++++ - tests/testephysearchentry.c | 53 +++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 73 insertions(+), 1 deletion(-) - -commit 3c6a471e1ac91a23e98533bba0548c3a61ecc44d -Author: Diego Escalante Urrelo -Date: Mon Aug 4 13:21:11 2008 +0000 - - Move libnotify initialization to ephy-main - - This should fix the crash when libnotify was uninit before the notification was - actually shown. Fix suggested by Colin Walters, closes: #536768. - - svn path=/trunk/; revision=8380 - - embed/downloader-view.c | 12 ------------ - src/ephy-main.c | 13 +++++++++++++ - 2 files changed, 13 insertions(+), 12 deletions(-) - -commit 666c60bb7f33b5288677e923a0ddadeea0cdc6f5 -Author: Diego Escalante Urrelo -Date: Mon Aug 4 13:19:57 2008 +0000 - - Fix the keyword search for tabs/windows created from toolbar. - - Add EPHY_LINK_ALLOW_FIXUP to the flags when openning new tabs and windows from - their toolbar buttons so the text is not always treated as an url, - closes: #523296. - - svn path=/trunk/; revision=8379 - - src/ephy-home-action.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 7d3d5a080c57bfbb1fb3a556dc1d3d278eff404c -Author: Cosimo Cecchi -Date: Mon Aug 4 13:17:47 2008 +0000 - - Bug #378165: do not activate the smart bookmark entry after middle-clicking - paste text into it. - - svn path=/trunk/; revision=8377 - - src/bookmarks/ephy-bookmark-action.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 06c29da2ba72a8277191ee2acded2414462c07c1 -Author: Cosimo Cecchi -Date: Fri Aug 1 13:10:07 2008 +0000 - - Bug #328710. Re-focus the "Remove" button after the selection has been deleted. - - svn path=/trunk/; revision=8372 - - src/pdm-dialog.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 997b86ef5709178f1029240169e54e3838c50a61 -Author: Diego Escalante Urrelo -Date: Thu Jul 31 09:39:47 2008 +0000 - - Fix a typo in src/ephy-main.c and remove a FIXME. - - Patch by Bruce Cowan, closes: #545614. FIXME removed by me. - - - svn path=/trunk/; revision=8370 - - src/ephy-main.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 0fafc2d1f058025a8e8bc6ef301b4b578e630974 -Author: Leonardo Ferreira Fontenelle -Date: Fri Jul 25 01:25:51 2008 +0000 - - Terminology fixes by Fabrício Godoy. - - 2008-07-24 Leonardo Ferreira Fontenelle - - * pt_BR.po: Terminology fixes by Fabrício Godoy. - - svn path=/trunk/; revision=8363 - - po/ChangeLog | 4 ++++ - po/pt_BR.po | 21 +++++++++++---------- - 2 files changed, 15 insertions(+), 10 deletions(-) - -commit caee7f04d803ca3a2b5fca7817f92ea31f56da72 -Author: Wouter Bolsterlee -Date: Mon Jul 21 21:46:44 2008 +0000 - - Move plugins/desktop-file/plugin.cpp to POTFILES.skip to fix distcheck. - - - svn path=/trunk/; revision=8341 - - po/POTFILES.in | 1 - - po/POTFILES.skip | 2 +- - 2 files changed, 1 insertion(+), 2 deletions(-) - -commit 0ff7e67fbad756f54e175a9e0ee7035af16ac3ba -Author: Wouter Bolsterlee -Date: Mon Jul 21 21:38:59 2008 +0000 - - Bump intltool requirement to 0.40.0 - - Removed the intltool.* lines in the toplevel Makefile.am as well for make dist - to work. - - svn path=/trunk/; revision=8340 - - Makefile.am | 6 ------ - configure.ac | 2 +- - 2 files changed, 1 insertion(+), 7 deletions(-) - -commit 0a997dfa02688b0cf79d45d2028c6dc5d63db655 -Author: Jorge Gonzalez Gonzalez -Date: Sun Jul 13 18:59:48 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8339 - - help/ChangeLog | 4 ++++ - help/es/es.po | 76 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 44 insertions(+), 36 deletions(-) - -commit 44775154325057174258a71115b7116fbe6b1232 -Author: Theppitak Karoonboonyanan -Date: Thu Jul 10 05:43:36 2008 +0000 - - Updated Thai translation from gnome-2-22 branch. - - 2008-07-10 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation from gnome-2-22 branch. - - - svn path=/trunk/; revision=8338 - - po/ChangeLog | 4 ++++ - po/th.po | 16 ++++++++-------- - 2 files changed, 12 insertions(+), 8 deletions(-) - -commit f21179c9ad1dc346f72f0164f5a715843eb2732d -Author: Diego Escalante Urrelo -Date: Wed Jul 9 13:03:01 2008 +0000 - - Renamed Smart Bookmarks to Bookmarked Searches in user documentation, closes: #457475 - - svn path=/trunk/; revision=8336 - - help/C/epiphany.xml | 34 +++++++++++++++++----------------- - 1 file changed, 17 insertions(+), 17 deletions(-) - -commit dc0cabf299ed300615623df894a03b3b1caf1304 -Author: Christian Persch -Date: Sun Jul 6 19:02:11 2008 +0000 - - Update year - - svn path=/trunk/; revision=8335 - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8ccec658a9f5e819782951c9ba707e20433ee1a7 -Author: Maciej Katafiasz -Date: Thu Jul 3 19:30:06 2008 +0000 - - Add webkit-1.0 dependency to out .pc file. Fixes build breakage of - epiphany-extensions caused by the recent surgery introducing WebKit as - public dep. - - svn path=/trunk/; revision=8334 - - data/epiphany.pc.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 80ca8f5b3c9625cabc6f2fa295cda37041131c6c -Author: Yannig MARCHEGAY -Date: Thu Jul 3 07:36:07 2008 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=8333 - - help/oc/oc.po | 2 +- - po/ChangeLog | 4 + - po/oc.po | 1983 ++++++++++++++++++--------------------------------------- - 3 files changed, 622 insertions(+), 1367 deletions(-) - -commit c5f616f5c4e904d4fc57f49290952db3cd8a68d8 -Author: Xan Lopez -Date: Wed Jul 2 19:25:25 2008 +0000 - - embed: remove ephy_embed_close. - - Just destroy the embed widget. - - svn path=/trunk/; revision=8332 - - doc/reference/tmpl/ephy-embed.sgml | 1 - - embed/ephy-embed.c | 13 ------------- - embed/ephy-embed.h | 3 --- - embed/webkit/webkit-embed.c | 7 ------- - src/ephy-window.c | 2 +- - src/epiphany.defs | 6 ------ - 6 files changed, 1 insertion(+), 31 deletions(-) - -commit 1a2c45a09867791d52cd74b280395dd646162523 -Author: Xan Lopez -Date: Wed Jul 2 19:18:59 2008 +0000 - - embed: forgot to uncomment this when re-enabling restore zoom. - - svn path=/trunk/; revision=8331 - - embed/webkit/webkit-embed.c | 8 +------- - 1 file changed, 1 insertion(+), 7 deletions(-) - -commit 9dc44b16830dfa9f1b82f6af82ff4578beb6bc36 -Author: Xan Lopez -Date: Mon Jun 30 21:27:22 2008 +0000 - - embed: restore restore_zoom_level. - - svn path=/trunk/; revision=8328 - - embed/ephy-base-embed.c | 35 ----------------------------------- - embed/webkit/webkit-embed.c | 39 +++++++++++++++++++++++++++++++++++++++ - 2 files changed, 39 insertions(+), 35 deletions(-) - -commit 1e829eefa511c3463deddb7c3d99d4c27960e077 -Author: Xan Lopez -Date: Mon Jun 30 21:27:18 2008 +0000 - - embed: remove ephy_embed_{set,get}_zoom. - - Set zoom-level on the WebKitWebView directly. - - svn path=/trunk/; revision=8327 - - doc/reference/epiphany-sections.txt | 2 -- - doc/reference/tmpl/ephy-embed.sgml | 21 --------------------- - embed/ephy-embed.c | 35 ----------------------------------- - embed/ephy-embed.h | 9 --------- - embed/webkit/webkit-embed.c | 19 ------------------- - src/ephy-window.c | 7 +++++-- - src/epiphany.defs | 15 --------------- - 7 files changed, 5 insertions(+), 103 deletions(-) - -commit 76dd77e2f40b6e2de50716117c3abd2c49e528a4 -Author: Xan Lopez -Date: Mon Jun 30 21:27:12 2008 +0000 - - embed: remove ge-zoom-changed and zoom property. - - Use zoom-level property in WebKit directly. - - svn path=/trunk/; revision=8326 - - doc/reference/tmpl/ephy-embed.sgml | 9 ------ - embed/ephy-base-embed.c | 58 ++------------------------------------ - embed/ephy-embed.c | 21 -------------- - embed/ephy-embed.h | 2 -- - embed/webkit/webkit-embed.c | 45 ++++++++++++++++++++++++++++- - src/ephy-window.c | 36 +++++++++++++++-------- - 6 files changed, 72 insertions(+), 99 deletions(-) - -commit 751d86d728c53a39887036e8e85ab4b8600ec60d -Author: Jakub Steiner -Date: Mon Jun 30 19:01:29 2008 +0000 - - Even though an inappropriate metaphor, update the lock graphics to - comply with the tango style guidelines. - - - svn path=/trunk/; revision=8325 - - data/icons/hicolor_status_16x16_lock-broken.png | Bin 693 -> 805 bytes - data/icons/hicolor_status_16x16_lock-broken.svg | 413 +++++++++ - data/icons/hicolor_status_16x16_lock-insecure.png | Bin 693 -> 640 bytes - data/icons/hicolor_status_16x16_lock-insecure.svg | 560 ++++++++++++ - .../hicolor_status_16x16_lock-secure-checked.png | Bin 821 -> 831 bytes - .../hicolor_status_16x16_lock-secure-checked.svg | 478 +++++++++++ - data/icons/hicolor_status_16x16_lock-secure.png | Bin 729 -> 709 bytes - data/icons/hicolor_status_16x16_lock-secure.svg | 407 +++++++++ - data/icons/hicolor_status_24x24_lock-broken.png | Bin 1554 -> 1081 bytes - data/icons/hicolor_status_24x24_lock-broken.svg | 607 +++++++++++++ - data/icons/hicolor_status_24x24_lock-insecure.png | Bin 1197 -> 1010 bytes - data/icons/hicolor_status_24x24_lock-insecure.svg | 618 ++++++++++++++ - .../hicolor_status_24x24_lock-secure-checked.png | Bin 1306 -> 1155 bytes - .../hicolor_status_24x24_lock-secure-checked.svg | 506 +++++++++++ - data/icons/hicolor_status_24x24_lock-secure.png | Bin 1224 -> 961 bytes - data/icons/hicolor_status_24x24_lock-secure.svg | 470 ++++++++++ - data/icons/hicolor_status_48x48_lock-broken.png | Bin 4310 -> 2922 bytes - data/icons/hicolor_status_48x48_lock-broken.svg | 943 ++++++++++++++++++++ - data/icons/hicolor_status_48x48_lock-insecure.png | Bin 2913 -> 3000 bytes - data/icons/hicolor_status_48x48_lock-insecure.svg | 616 +++++++++++++ - .../hicolor_status_48x48_lock-secure-checked.png | Bin 3313 -> 3110 bytes - .../hicolor_status_48x48_lock-secure-checked.svg | 950 +++++++++++++++++++++ - data/icons/hicolor_status_48x48_lock-secure.png | Bin 2978 -> 2849 bytes - data/icons/hicolor_status_48x48_lock-secure.svg | 573 +++++++++++++ - 24 files changed, 7141 insertions(+) - -commit a00937a9f3789ef3118b7a570e3bc6cb1582a791 -Author: Christian Persch -Date: Mon Jun 30 18:18:28 2008 +0000 - - Bug 529634 – ga_client_start() called twice - - svn path=/trunk/; revision=8317 - - src/bookmarks/ephy-bookmarks.c | 25 ++++++++++++++++--------- - 1 file changed, 16 insertions(+), 9 deletions(-) - -commit 9d4fb5100eaeac5bb304c33d05f9e2d2dc967828 -Author: Christian Persch -Date: Mon Jun 30 17:49:01 2008 +0000 - - Guard against the current filename being NULL. Bug #535483. - - svn path=/trunk/; revision=8316 - - lib/ephy-file-chooser.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 170bb497d473817ca1811f5745021b1cf8c3863e -Author: Christian Persch -Date: Mon Jun 30 10:39:14 2008 +0000 - - Support git for the ChangeLog generation rule. - - svn path=/trunk/; revision=8315 - - Makefile.am | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 930d8c836af03046b56e016182ab0bb7f28b9e72 -Author: Xan Lopez -Date: Mon Jun 30 07:24:01 2008 +0000 - - embed: remove history item abstraction from embed. - - Not needed anymore. - - svn path=/trunk/; revision=8314 - - embed/Makefile.am | 2 - - embed/ephy-embed.h | 1 - - embed/ephy-history-item.c | 58 ----------------------- - embed/ephy-history-item.h | 57 ---------------------- - embed/webkit/Makefile.am | 4 +- - embed/webkit/webkit-embed.c | 2 - - embed/webkit/webkit-history-item.c | 97 -------------------------------------- - embed/webkit/webkit-history-item.h | 58 ----------------------- - src/ephy-navigation-action.c | 1 - - 9 files changed, 1 insertion(+), 279 deletions(-) - -commit d0ccaa5cfa129113f6359b1be98ef9cb0db3e8e4 -Author: Xan Lopez -Date: Mon Jun 30 07:23:57 2008 +0000 - - embed: remove ephy_embed_go_to_history_item. - - Use WebKit API directly. - - svn path=/trunk/; revision=8313 - - embed/ephy-embed.c | 15 --------------- - embed/ephy-embed.h | 5 ----- - embed/webkit/webkit-embed.c | 10 ---------- - src/ephy-navigation-action.c | 6 +++--- - 4 files changed, 3 insertions(+), 33 deletions(-) - -commit 0238a377973ad82bd73e4e8f12a291b62359e9c1 -Author: Xan Lopez -Date: Mon Jun 30 07:23:52 2008 +0000 - - embed: remove ephy_embed_get_{next,previous}_history_item. - - Use WebKit APIs directly. - - svn path=/trunk/; revision=8312 - - doc/reference/tmpl/ephy-embed.sgml | 2 -- - embed/ephy-embed.c | 30 ---------------------------- - embed/ephy-embed.h | 4 ---- - embed/webkit/webkit-embed.c | 40 -------------------------------------- - src/ephy-window.c | 24 +++++++++++------------ - 5 files changed, 12 insertions(+), 88 deletions(-) - -commit faf45b0b6340ea93e9d4e8cfef7862885fc816c5 -Author: Xan Lopez -Date: Mon Jun 30 07:23:47 2008 +0000 - - embed: remove ephy_embed_get_{backward,forward}_history. - - Use WebKit APIs directly. - - svn path=/trunk/; revision=8311 - - doc/reference/tmpl/ephy-embed.sgml | 2 -- - embed/ephy-embed.c | 32 ------------------- - embed/ephy-embed.h | 4 --- - embed/webkit/webkit-embed.c | 47 --------------------------- - src/ephy-navigation-action.c | 65 +++++++++++++++++++++++++++----------- - 5 files changed, 46 insertions(+), 104 deletions(-) - -commit 4a90a2c33e4dd205aed50cd89a18bca5a8721995 -Author: Xan Lopez -Date: Sun Jun 29 18:24:11 2008 +0000 - - misc: add reference to webkit bug about reload_bypass_cache - - svn path=/trunk/; revision=8310 - - embed/ephy-base-embed.c | 1 + - src/window-commands.c | 1 + - 2 files changed, 2 insertions(+) - -commit 8cad69642ad84471f9c80b47cba5ec3697a4e56a -Author: Xan Lopez -Date: Sun Jun 29 18:16:16 2008 +0000 - - embed: remove ephy_embed_print. - - And use the WebKit API directly. - - svn path=/trunk/; revision=8309 - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-embed.sgml | 9 --------- - embed/ephy-embed.c | 14 -------------- - embed/ephy-embed.h | 3 --- - embed/webkit/webkit-embed.c | 7 ------- - src/epiphany.defs | 6 ------ - src/window-commands.c | 2 +- - 7 files changed, 1 insertion(+), 41 deletions(-) - -commit 69481e1a7b0835dcc595320af2195fe4c8c35fb3 -Author: Xan Lopez -Date: Sun Jun 29 18:16:12 2008 +0000 - - docs: forgot to remove these. - - svn path=/trunk/; revision=8308 - - doc/reference/tmpl/ephy-embed.sgml | 4 ---- - 1 file changed, 4 deletions(-) - -commit ec517d71f6e381764ed8624151ad12519bf21aa6 -Author: Xan Lopez -Date: Sun Jun 29 18:16:08 2008 +0000 - - embed: remove ephy_embed_can_go_back. - - Use WebKit API directly. - - svn path=/trunk/; revision=8307 - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-embed.sgml | 9 --------- - embed/ephy-base-embed.c | 2 +- - embed/ephy-embed.c | 13 ------------- - embed/ephy-embed.h | 3 --- - embed/webkit/webkit-embed.c | 7 ------- - src/epiphany.defs | 6 ------ - 7 files changed, 1 insertion(+), 40 deletions(-) - -commit 83c145ca0bdf9c659f808a1485ad2f580c6b439f -Author: Xan Lopez -Date: Sun Jun 29 18:16:03 2008 +0000 - - embed: remove ephy_embed_can_go_forward. - - Use WebKit API directly. - - svn path=/trunk/; revision=8306 - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-embed.sgml | 10 ---------- - embed/ephy-base-embed.c | 3 ++- - embed/ephy-embed.c | 13 ------------- - embed/ephy-embed.h | 3 --- - embed/webkit/webkit-embed.c | 7 ------- - src/epiphany.defs | 6 ------ - 7 files changed, 2 insertions(+), 41 deletions(-) - -commit 3c310a6753141eb1a01acdacc3d2286080183d0f -Author: Xan Lopez -Date: Sun Jun 29 18:15:58 2008 +0000 - - embed: remove ephy_embed_go_forward. - - Use WebKit API directly. - - svn path=/trunk/; revision=8305 - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-embed.sgml | 8 -------- - embed/ephy-embed.c | 14 -------------- - embed/ephy-embed.h | 3 --- - embed/webkit/webkit-embed.c | 7 ------- - src/ephy-navigation-action.c | 2 +- - src/epiphany.defs | 6 ------ - 7 files changed, 1 insertion(+), 40 deletions(-) - -commit 21608abec6b897869c73009d5ffaf2e4a6a5bf90 -Author: Xan Lopez -Date: Sun Jun 29 18:15:53 2008 +0000 - - embed: remove ephy_embed_go_back. - - Use WebKit API directly. - - svn path=/trunk/; revision=8304 - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-embed.sgml | 8 -------- - embed/ephy-embed.c | 13 ------------- - embed/ephy-embed.h | 3 --- - embed/webkit/webkit-embed.c | 7 ------- - src/ephy-navigation-action.c | 6 +++++- - src/epiphany.defs | 7 ------- - 7 files changed, 5 insertions(+), 40 deletions(-) - -commit 5aac39ff9672fb14e03ff33b99ab4853955a5592 -Author: Xan Lopez -Date: Sun Jun 29 18:15:48 2008 +0000 - - embed: remove ephy_embed_reload. - - Use WebKit API directly. - - svn path=/trunk/; revision=8303 - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-embed.sgml | 9 --------- - embed/ephy-base-embed.c | 6 ++++-- - embed/ephy-embed.c | 18 ------------------ - embed/ephy-embed.h | 5 ----- - embed/webkit/webkit-embed.c | 8 -------- - src/epiphany.defs | 9 --------- - src/window-commands.c | 6 +++++- - 8 files changed, 9 insertions(+), 53 deletions(-) - -commit a2c6d61b3e04f6c77c9f1ffd853831b51e0a0042 -Author: Xan Lopez -Date: Sun Jun 29 18:15:43 2008 +0000 - - embed: remove ephy_embed_stop_load. - - Use webkit API directly in window-commands.c - - svn path=/trunk/; revision=8302 - - doc/reference/epiphany-sections.txt | 1 - - doc/reference/tmpl/ephy-embed.sgml | 9 --------- - embed/ephy-embed.c | 13 ------------- - embed/ephy-embed.h | 3 --- - embed/webkit/webkit-embed.c | 7 ------- - src/epiphany.defs | 6 ------ - src/window-commands.c | 3 ++- - 7 files changed, 2 insertions(+), 40 deletions(-) - -commit 898961c9a4cacc9379a3fe871a5f173baf69b866 -Author: Xan Lopez -Date: Sun Jun 29 18:15:38 2008 +0000 - - ephy-embed-utils: add macro to get webkitwebview from embed. - - Will be used in the process to get rid of the embedding abstraction. - - svn path=/trunk/; revision=8301 - - embed/Makefile.am | 1 + - embed/ephy-embed-utils.h | 4 ++++ - src/ephy-find-toolbar.c | 3 +-- - 3 files changed, 6 insertions(+), 2 deletions(-) - -commit 42bc2e2079a240286b5f3e3891ec942f341a88f7 -Author: Xan Lopez -Date: Sat Jun 28 13:59:33 2008 +0000 - - ephy-find-toolbar: remove trailing whitespace. - - svn path=/trunk/; revision=8300 - - src/ephy-find-toolbar.c | 34 +++++++++++++++++----------------- - 1 file changed, 17 insertions(+), 17 deletions(-) - -commit 48faeea7024967be1bdfbbf9b92cc60cf7ee59b0 -Author: Xan Lopez -Date: Sat Jun 28 13:59:29 2008 +0000 - - ephy-find-toolbar: remove obsolete comment. - - svn path=/trunk/; revision=8299 - - src/ephy-find-toolbar.c | 1 - - 1 file changed, 1 deletion(-) - -commit 591c29f4e3a1915be8843e6907278e983bf9f6be -Author: Xan Lopez -Date: Sat Jun 28 13:59:25 2008 +0000 - - ephy-find-toolbar: copy over embed scroll functionality. - - Only used here. - - svn path=/trunk/; revision=8298 - - src/ephy-find-toolbar.c | 57 +++++++++++++++++++++++++++++++++++++++---------- - 1 file changed, 46 insertions(+), 11 deletions(-) - -commit 4c7481550ace75a5ee93aa5afdcc3ae789fad6d2 -Author: Xan Lopez -Date: Sat Jun 28 13:59:20 2008 +0000 - - ephy-find-toolbar: remove $Id$ from license comment. - - CVS is long gone... - - svn path=/trunk/; revision=8297 - - src/ephy-find-toolbar.c | 1 - - 1 file changed, 1 deletion(-) - -commit eb22ece42e0587ce1e932296254e14220f084756 -Author: Xan Lopez -Date: Sat Jun 28 13:59:16 2008 +0000 - - ephy-find-toolbar: rename impl_* functions to ephy_find_toolbar_* - - svn path=/trunk/; revision=8296 - - src/ephy-find-toolbar.c | 38 +++++++++++++++++++------------------- - 1 file changed, 19 insertions(+), 19 deletions(-) - -commit 85fcdd9d27b4ceab098c8b5ca45c8ca476aade8d -Author: Xan Lopez -Date: Sat Jun 28 13:59:12 2008 +0000 - - ephy-find-toolbar: M-x tabify - - svn path=/trunk/; revision=8295 - - src/ephy-find-toolbar.c | 56 ++++++++++++++++++++++++------------------------- - 1 file changed, 28 insertions(+), 28 deletions(-) - -commit ed6a30627761eaf0b462e79ecdd85d85f3545939 -Author: Xan Lopez -Date: Sat Jun 28 13:59:07 2008 +0000 - - ephy-find-toolbar: add FIXME about ge-search-key-press never being emitted. - - svn path=/trunk/; revision=8294 - - src/ephy-find-toolbar.c | 1 + - 1 file changed, 1 insertion(+) - -commit 2650175cd9aa1f01c65f9caa01345462de2f7524 -Author: Xan Lopez -Date: Sat Jun 28 13:59:03 2008 +0000 - - ephy-find-toolbar: remove _EMBED_ from find results enum. - - svn path=/trunk/; revision=8293 - - src/ephy-find-toolbar.c | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit 92a7cf00b53402be364d8cf3d51f7ec8487d7065 -Author: Xan Lopez -Date: Sat Jun 28 13:58:59 2008 +0000 - - embed: remove ephy-embed-find and the webkit implementation. - - svn path=/trunk/; revision=8292 - - embed/Makefile.am | 2 - - embed/ephy-embed-factory.c | 6 -- - embed/ephy-embed-find.c | 128 ---------------------------- - embed/ephy-embed-find.h | 101 ---------------------- - embed/webkit/Makefile.am | 2 - - embed/webkit/webkit-embed-find.c | 179 --------------------------------------- - embed/webkit/webkit-embed-find.h | 57 ------------- - src/ephy-find-toolbar.c | 1 - - 8 files changed, 476 deletions(-) - -commit bc9b9dc4e72be532630f2c484c0684bf30f96d2d -Author: Xan Lopez -Date: Sat Jun 28 13:58:54 2008 +0000 - - ephy-find-toolbar: port to use webkit API directly. - - Copy the code from embeb/webkit mostly verbatim for now. - - svn path=/trunk/; revision=8291 - - src/Makefile.am | 1 + - src/ephy-find-toolbar.c | 173 +++++++++++++++++++++++++++++++++++------------- - 2 files changed, 129 insertions(+), 45 deletions(-) - -commit 0c902f0d3c673af94f75b321046891882ce81585 -Author: Danilo Šegan -Date: Thu Jun 26 18:36:51 2008 +0000 - - Updated Serbian translations. - - svn path=/trunk/; revision=8290 - - po/ChangeLog | 4 + - po/sr.po | 4993 ++++++++++++++++++++++++++++----------------------------- - po/sr@Latn.po | 4993 ++++++++++++++++++++++++++++----------------------------- - 3 files changed, 4890 insertions(+), 5100 deletions(-) - -commit c0769b5249c60a4d0d4cf0fbdb11015c5efd2c1a -Author: Gintautas Miliauskas -Date: Tue Jun 24 10:40:45 2008 +0000 - - Updated Lithuanian translation. - - 2008-06-24 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - - - - svn path=/trunk/; revision=8288 - - po/ChangeLog | 4 + - po/lt.po | 974 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 496 insertions(+), 482 deletions(-) - -commit ed7253ebae54b9e0d786ac81196e9cc98dfe68c7 -Author: Priit Laes -Date: Wed Jun 18 17:07:39 2008 +0000 - - Translation updated by Ivar Smolin - - 2008-06-18 Priit Laes - - * et.po: Translation updated by Ivar Smolin - - svn path=/trunk/; revision=8285 - - po/ChangeLog | 4 + - po/et.po | 1980 ++++++++++++++++------------------------------------------ - 2 files changed, 540 insertions(+), 1444 deletions(-) - -commit 1a5f7ff8a8fad7b80324f45bcc99076462bd7dd3 -Author: Cosimo Cecchi -Date: Tue Jun 17 14:47:01 2008 +0000 - - Implement search in page for the WebKit embed. - - svn path=/trunk/; revision=8284 - - embed/webkit/webkit-embed-find.c | 90 ++++++++++++++++++++++++++++++++++++---- - 1 file changed, 81 insertions(+), 9 deletions(-) - -commit 6b624c65e1394a72ae33e3d29b2b990943eb24a4 -Author: Alp Toker -Date: Tue Jun 17 13:31:56 2008 +0000 - - Apply clamping for pixel scroll - - svn path=/trunk/; revision=8283 - - embed/webkit/webkit-embed.c | 7 ++----- - 1 file changed, 2 insertions(+), 5 deletions(-) - -commit 56a66d5199051672a5887c0120a86f14a463dba7 -Author: Alp Toker -Date: Tue Jun 17 12:14:38 2008 +0000 - - Emit zoom change signal and implement pixel scrolling - - svn path=/trunk/; revision=8282 - - embed/webkit/webkit-embed.c | 17 +++++++++++++++++ - 1 file changed, 17 insertions(+) - -commit 4adbd86dc2be3a90d57fed5c3bfc0a71305ba0e0 -Author: Ignacio Casal Quinteiro -Date: Sat Jun 14 16:57:00 2008 +0000 - - Updated Galician Translation. - - svn path=/trunk/; revision=8281 - - po/ChangeLog | 4 + - po/gl.po | 2860 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 1305 insertions(+), 1559 deletions(-) - -commit 5998f9bc0d502a1907c9b70dc8a970c89333b625 -Author: Jorge Gonzalez Gonzalez -Date: Fri Jun 13 23:03:57 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8280 - - po/ChangeLog | 4 + - po/es.po | 1957 ++++++++++++++++------------------------------------------ - 2 files changed, 538 insertions(+), 1423 deletions(-) - -commit 66b802b53a6be466dd91bbb98ea3cca25440a55d -Author: Christian Persch -Date: Thu Jun 12 17:21:16 2008 +0000 - - Reimplement tabs detaching and tabs DND. - - svn path=/trunk/; revision=8278 - - data/ui/epiphany-ui.xml | 2 +- - lib/ephy-module.c | 3 +++ - src/ephy-lockdown.c | 3 +++ - src/ephy-notebook.c | 35 ++++++++++++++++++++++++----------- - src/ephy-window.c | 42 ++++++++++++++++++++++++++++++++++++++++++ - src/window-commands.c | 24 ++++++++++++++++++++++++ - 6 files changed, 97 insertions(+), 12 deletions(-) - -commit a397eafd27b12b528de6e6a13f16b86deb37f99c -Author: Djihed Afifi -Date: Wed Jun 11 21:34:46 2008 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=8277 - - po/ChangeLog | 4 + - po/ar.po | 945 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 476 insertions(+), 473 deletions(-) - -commit 38a22b79072f8ea0e42dde90f433c26200294150 -Author: Luca Ferretti -Date: Tue Jun 10 11:58:47 2008 +0000 - - Import updated translation from 2.22 branch - - 2008-06-10 Luca Ferretti - - * it.po: Import updated translation from 2.22 branch - - - svn path=/trunk/; revision=8276 - - po/ChangeLog | 4 + - po/it.po | 2917 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 1328 insertions(+), 1593 deletions(-) - -commit 10f3e0f58ae032a3836b5249ff717fced84ffa0d -Author: Sanlig Badral -Date: Tue Jun 10 00:21:17 2008 +0000 - - Updated Mongolian translation - - svn path=/trunk/; revision=8275 - - po/ChangeLog | 4 + - po/mn.po | 2793 +++++++++++++++++++++++----------------------------------- - 2 files changed, 1091 insertions(+), 1706 deletions(-) - -commit e6d988259788b5d5eb1e2fda40cfb9c0f5c1700f -Author: Cosimo Cecchi -Date: Mon Jun 9 22:37:20 2008 +0000 - - Fix some build warnings. Bug #537487. - - svn path=/trunk/; revision=8274 - - embed/ephy-adblock-manager.c | 2 -- - embed/ephy-embed-shell.c | 1 + - embed/ephy-favicon-cache.c | 1 + - lib/ephy-module.c | 4 ++-- - 4 files changed, 4 insertions(+), 4 deletions(-) - -commit 5296c935bf1faa6da9c4893060b2642e9a69962b -Author: Xan Lopez -Date: Wed Jun 4 20:16:19 2008 +0000 - - Add pages to ephy history on load-committed. - - On load-started there's no guarantee that the page actually exists. - - svn path=/trunk/; revision=8272 - - embed/webkit/webkit-embed.c | 11 +++++------ - 1 file changed, 5 insertions(+), 6 deletions(-) - -commit 282547494197ff2750eb98eb8c75f8f5ff7a196c -Author: Diego Escalante Urrelo -Date: Tue Jun 3 19:18:31 2008 +0000 - - Do not do single includes in lib/egg/, bug #536090 - - svn path=/trunk/; revision=8271 - - lib/egg/eel-app-launch-context.c | 5 ++--- - lib/egg/eel-app-launch-context.h | 2 +- - lib/egg/egg-editable-toolbar.c | 21 +-------------------- - lib/egg/egg-editable-toolbar.h | 7 +------ - lib/egg/egg-toolbar-editor.c | 8 -------- - lib/egg/egg-toolbar-editor.h | 3 +-- - lib/egg/eggtreemultidnd.c | 5 +---- - lib/egg/eggtreemultidnd.h | 4 +--- - lib/ephy-gui.c | 1 + - 9 files changed, 9 insertions(+), 47 deletions(-) - -commit e8cd46c348bce4fb638c3e37008882443cb29533 -Author: Diego Escalante Urrelo -Date: Tue Jun 3 18:32:26 2008 +0000 - - Do not do single includes in src/bookmarks/, bug #536090 - - svn path=/trunk/; revision=8270 - - src/bookmarks/ephy-bookmark-action-group.c | 3 +-- - src/bookmarks/ephy-bookmark-action-group.h | 2 +- - src/bookmarks/ephy-bookmark-action.c | 13 +------------ - src/bookmarks/ephy-bookmark-action.h | 2 +- - src/bookmarks/ephy-bookmark-factory-action.c | 2 +- - src/bookmarks/ephy-bookmark-factory-action.h | 2 -- - src/bookmarks/ephy-bookmark-properties.c | 10 ---------- - src/bookmarks/ephy-bookmark-properties.h | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 21 +-------------------- - src/bookmarks/ephy-bookmarks-editor.h | 2 +- - src/bookmarks/ephy-bookmarks-ui.c | 3 +-- - src/bookmarks/ephy-bookmarks.c | 3 +-- - src/bookmarks/ephy-bookmarks.h | 2 +- - src/bookmarks/ephy-open-tabs-action.c | 2 +- - src/bookmarks/ephy-open-tabs-action.h | 2 +- - src/bookmarks/ephy-related-action.c | 2 -- - src/bookmarks/ephy-related-action.h | 3 +-- - src/bookmarks/ephy-topic-action-group.c | 3 +-- - src/bookmarks/ephy-topic-action-group.h | 3 +-- - src/bookmarks/ephy-topic-action.c | 13 +------------ - src/bookmarks/ephy-topic-action.h | 3 +-- - src/bookmarks/ephy-topic-factory-action.c | 2 +- - src/bookmarks/ephy-topic-factory-action.h | 2 -- - src/bookmarks/ephy-topics-entry.c | 4 +--- - src/bookmarks/ephy-topics-entry.h | 2 +- - src/bookmarks/ephy-topics-palette.c | 2 +- - 26 files changed, 22 insertions(+), 88 deletions(-) - -commit a0656f1db8e8e4a67187f875090fd05b081575f3 -Author: Diego Escalante Urrelo -Date: Tue Jun 3 18:32:15 2008 +0000 - - Do not do single includes in plugins/desktop-file/, bug #536090 - - svn path=/trunk/; revision=8269 - - plugins/desktop-file/plugin.cpp | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -commit cde5bad8ce74ad65ccbed7798e1050e4a4bc62f1 -Author: Diego Escalante Urrelo -Date: Tue Jun 3 18:32:11 2008 +0000 - - Do not do single includes in lib/widgets/, bug #536090 - - svn path=/trunk/; revision=8268 - - lib/widgets/ephy-icon-entry.c | 4 +--- - lib/widgets/ephy-icon-entry.h | 2 +- - lib/widgets/ephy-location-entry.c | 19 +------------------ - lib/widgets/ephy-location-entry.h | 5 +---- - lib/widgets/ephy-node-view.c | 9 +-------- - lib/widgets/ephy-node-view.h | 3 +-- - lib/widgets/ephy-search-entry.c | 3 +-- - lib/widgets/ephy-spinner.c | 4 +--- - lib/widgets/ephy-spinner.h | 3 +-- - lib/widgets/ephy-tree-model-node.h | 2 +- - lib/widgets/ephy-tree-model-sort.c | 3 +-- - lib/widgets/ephy-tree-model-sort.h | 2 +- - lib/widgets/ephy-zoom-action.c | 5 +---- - lib/widgets/ephy-zoom-action.h | 2 +- - lib/widgets/ephy-zoom-control.c | 1 - - lib/widgets/ephy-zoom-control.h | 2 +- - lib/widgets/testiconentry.c | 1 - - 17 files changed, 15 insertions(+), 55 deletions(-) - -commit 86302e2a81681eb353f686c51b419015b6e03bd8 -Author: Diego Escalante Urrelo -Date: Tue Jun 3 18:32:01 2008 +0000 - - Do not do single includes in lib/, bug #536090 - - svn path=/trunk/; revision=8267 - - lib/ephy-debug.c | 2 +- - lib/ephy-dialog.c | 11 ++--------- - lib/ephy-dialog.h | 2 +- - lib/ephy-dnd.c | 3 +-- - lib/ephy-dnd.h | 3 +-- - lib/ephy-file-chooser.c | 3 +-- - lib/ephy-file-chooser.h | 4 +--- - lib/ephy-file-helpers.c | 2 +- - lib/ephy-file-helpers.h | 2 +- - lib/ephy-gui.c | 13 ++----------- - lib/ephy-gui.h | 6 +----- - lib/ephy-password-dialog.h | 2 +- - lib/ephy-print-utils.c | 2 +- - lib/ephy-print-utils.h | 3 +-- - lib/ephy-state.c | 5 +---- - lib/ephy-state.h | 2 +- - 16 files changed, 18 insertions(+), 47 deletions(-) - -commit 11cbcc66524a3a7a9a4d1b26ee0ad01054ebe0a6 -Author: Diego Escalante Urrelo -Date: Tue Jun 3 18:31:53 2008 +0000 - - Do not do single includes in embed/, bug #536090 - - svn path=/trunk/; revision=8266 - - embed/downloader-view.c | 17 +---------------- - embed/ephy-embed-dialog.h | 2 +- - embed/ephy-embed-event.c | 4 ++-- - embed/ephy-embed-persist.c | 2 +- - embed/ephy-embed-persist.h | 2 +- - embed/ephy-embed-shell.c | 3 +-- - embed/ephy-embed-shell.h | 3 +-- - embed/ephy-embed.h | 2 +- - embed/ephy-favicon-cache.c | 2 +- - 9 files changed, 10 insertions(+), 27 deletions(-) - -commit 489212b0f9980d88f638251b436bb934d2505a73 -Author: Diego Escalante Urrelo -Date: Tue Jun 3 18:31:47 2008 +0000 - - Do not do single includes for GTK+, bug #536090 - - svn path=/trunk/; revision=8265 - - src/ephy-action-helper.h | 2 +- - src/ephy-completion-model.h | 2 +- - src/ephy-encoding-dialog.c | 7 +------ - src/ephy-encoding-menu.c | 5 +---- - src/ephy-find-toolbar.c | 11 ----------- - src/ephy-find-toolbar.h | 2 +- - src/ephy-fullscreen-popup.c | 10 +--------- - src/ephy-fullscreen-popup.h | 2 +- - src/ephy-go-action.c | 3 +-- - src/ephy-history-window.c | 22 +--------------------- - src/ephy-history-window.h | 2 +- - src/ephy-home-action.c | 3 +-- - src/ephy-link-action.c | 5 +---- - src/ephy-link-action.h | 3 +-- - src/ephy-location-action.c | 8 +------- - src/ephy-lockdown.c | 3 +-- - src/ephy-main.c | 4 +--- - src/ephy-navigation-action.c | 10 +--------- - src/ephy-notebook.c | 10 +--------- - src/ephy-notebook.h | 2 +- - src/ephy-session.c | 10 +--------- - src/ephy-session.h | 2 +- - src/ephy-shell.c | 2 +- - src/ephy-statusbar.c | 8 +------- - src/ephy-statusbar.h | 2 +- - src/ephy-tabs-menu.c | 8 +------- - src/ephy-toolbar-editor.c | 10 +--------- - src/ephy-toolbar-editor.h | 2 +- - src/ephy-toolbar.c | 7 +------ - src/ephy-window.c | 6 ------ - src/ephy-window.h | 2 +- - src/pdm-dialog.c | 16 +--------------- - src/popup-commands.c | 3 +-- - src/popup-commands.h | 2 +- - src/ppview-toolbar.c | 6 +----- - src/ppview-toolbar.h | 2 +- - src/prefs-dialog.c | 19 +------------------ - src/window-commands.c | 7 +------ - src/window-commands.h | 2 +- - 39 files changed, 37 insertions(+), 195 deletions(-) - -commit 5a7ec338866c251a26cd4558452e412881060b9a -Author: Diego Escalante Urrelo -Date: Fri May 30 19:11:46 2008 +0000 - - Make the bookmarks editor search in urls and titles, closes: #328489. - - svn path=/trunk/; revision=8263 - - src/bookmarks/ephy-bookmarks-editor.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 1e9c0447beb82be6e6f01f63b0726193cee7948b -Author: Alp Toker -Date: Fri May 30 16:24:28 2008 +0000 - - Add printing support. - - svn path=/trunk/; revision=8262 - - embed/webkit/webkit-embed.c | 1 + - 1 file changed, 1 insertion(+) - -commit cf5105f09f590efaf9d56b1593c6e00e15f002f6 -Author: Alp Toker -Date: Fri May 30 05:25:29 2008 +0000 - - Bring back zoom support using the zoom-level property added in WebKit r34249. - - svn path=/trunk/; revision=8261 - - embed/webkit/webkit-embed.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 9a64743c43fd9586bff36d24989e6b293399f9e1 -Author: Jorge Gonzalez Gonzalez -Date: Wed May 28 17:04:51 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8260 - - help/ChangeLog | 4 + - help/es/es.po | 896 ++++++++++++++++++++++++++++----------------------------- - 2 files changed, 447 insertions(+), 453 deletions(-) - -commit 870f0c23a477d7c80fda40612c546d75ef5cb7bd -Author: Reinout van Schouwen -Date: Sun May 25 23:02:23 2008 +0000 - - Correct the paragraph about Page Setup. Fixes bug #534744. - - 2008-05-26 Reinout van Schouwen - - * C/epiphany.xml: Correct the paragraph about - Page Setup. Fixes bug #534744. - - - svn path=/trunk/; revision=8255 - - help/C/epiphany.xml | 22 ++++++++++++++++------ - help/ChangeLog | 5 +++++ - 2 files changed, 21 insertions(+), 6 deletions(-) - -commit 181a433b19ec30223eaf1c717fa553624ce0fea7 -Author: Christian Persch -Date: Sun May 25 20:02:43 2008 +0000 - - Plug a mem leak. - - svn path=/trunk/; revision=8254 - - src/ephy-tabs-menu.c | 1 + - 1 file changed, 1 insertion(+) - -commit 3842b63790b9b33d833ac7cffb110239e0e70482 -Author: Clytie Siddall -Date: Sun May 25 07:53:35 2008 +0000 - - Updated Vietnamese translation - - svn path=/trunk/; revision=8252 - - po/ChangeLog | 4 + - po/vi.po | 1513 +++++++++++++--------------------------------------------- - 2 files changed, 324 insertions(+), 1193 deletions(-) - -commit 4543832a9b546ee50415e0a93a229864d58b8f4b -Author: Diego Escalante Urrelo -Date: Sat May 24 12:27:34 2008 +0000 - - Fix the window title copying status bar's text, closes: #524587 - - svn path=/trunk/; revision=8250 - - embed/ephy-embed-utils.c | 21 ++++++++------------- - 1 file changed, 8 insertions(+), 13 deletions(-) - -commit 489a5a9563f723aefe67f9f4dfcf98199991939a -Author: Diego Escalante Urrelo -Date: Sat May 24 12:18:28 2008 +0000 - - Rewrite the bookmark HTML importer, it now uses GRegex, this is bug #533986. - Testing in trunk before committing to 2.22 branch. - - svn path=/trunk/; revision=8249 - - src/bookmarks/ephy-bookmarks-import.c | 130 +++++++++++++++++++--------------- - 1 file changed, 74 insertions(+), 56 deletions(-) - -commit 7d9ba33c392c5d349262cdad0a00c96ca700b741 -Author: Jorge Gonzalez Gonzalez -Date: Fri May 23 19:10:21 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8243 - - help/ChangeLog | 4 + - help/es/es.po | 921 ++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 493 insertions(+), 432 deletions(-) - -commit 85c28418d0dfbb08ea1d8ddc22ea02d4451719fc -Author: Djihed Afifi -Date: Thu May 22 22:55:52 2008 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=8242 - - po/ChangeLog | 4 ++++ - po/ar.po | 16 ++++++++-------- - 2 files changed, 12 insertions(+), 8 deletions(-) - -commit ba17f5316ff437e7656f87c8a022bbbc077b4c51 -Author: Diego Escalante Urrelo -Date: Tue May 20 06:03:23 2008 +0000 - - Don't free file_info too soon or the pointer to file_type will be lost. This - fixes bookmark imports not working (note that HTML import is not working, only - RDF). Patch by Sebastian Keller, closes: #523414. - - svn path=/trunk/; revision=8241 - - src/bookmarks/ephy-bookmarks-import.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ef289f5590cb8d65361e022a1e8af73a84602250 -Author: Cosimo Cecchi -Date: Mon May 19 19:36:47 2008 +0000 - - Block updates of the location entry while it is keyboard-focused. - This is to avoid deletion of the text while the user is typing. - Close bug #488680. - - svn path=/trunk/; revision=8239 - - src/ephy-location-action.c | 53 ++++++++++++++++++++++++++++++++++++++++++++-- - 1 file changed, 51 insertions(+), 2 deletions(-) - -commit 53038cbd0c89c5cbda216b16db41f9f7c8038010 -Author: Djihed Afifi -Date: Mon May 19 01:05:56 2008 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=8238 - - po/ChangeLog | 4 + - po/ar.po | 2672 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 1213 insertions(+), 1463 deletions(-) - -commit 70105c5bb805dd519c1953db388f59fea62e2cca -Author: Diego Escalante Urrelo -Date: Sun May 18 22:54:25 2008 +0000 - - Make the properties button in the Cookies tab of Personal Data dialog not - sensitive by default. Patch by Michael Wolf, closes: #504136. - - - svn path=/trunk/; revision=8237 - - data/glade/epiphany.glade | 1 + - 1 file changed, 1 insertion(+) - -commit 9ac89ee43b63b431886c289eca4a5eee510ee2e5 -Author: Diego Escalante Urrelo -Date: Sun May 18 22:23:13 2008 +0000 - - Fix the check for a valid LSB_DISTRIBUTOR string. Patch by Josselin Mouette, - closes: #529778. - - - svn path=/trunk/; revision=8235 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9a3d5911355838c5b20e1cdb139d324fbd1ec390 -Author: Reinout van Schouwen -Date: Sun May 18 21:45:17 2008 +0000 - - 2008-05-18 Reinout van Schouwen - - * 2008-05-18 Reinout van Schouwen - - - help/C/epiphany.xml: fix documentation bug #503698 - (patch by Loic Froidmont) - - - svn path=/trunk/; revision=8225 - - help/C/epiphany.xml | 20 +++++++++++++++++--- - 1 file changed, 17 insertions(+), 3 deletions(-) - -commit 67edf57236cdd745be61c7fa719b26273b49a6c3 -Author: Gintautas Miliauskas -Date: Sat May 17 13:01:05 2008 +0000 - - Updated Lithuanian translation. - - 2008-05-17 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - - - - svn path=/trunk/; revision=8224 - - po/ChangeLog | 4 + - po/lt.po | 1818 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 780 insertions(+), 1042 deletions(-) - -commit fe80a68d62dd2d3b001eec9c34638778263580f7 -Author: Diego Escalante Urrelo -Date: Fri May 16 21:02:13 2008 +0000 - - Remove a forgotten env var in ephy-main.c, it was a leftover of r8192 (removal - of Pango checks). - - svn path=/trunk/; revision=8222 - - src/ephy-main.c | 1 - - 1 file changed, 1 deletion(-) - -commit cb7ab79a20119f1d83fb0a79d0323781d743bdd0 -Author: Petr Kovář -Date: Tue May 13 17:39:50 2008 +0000 - - cs.po: Fixed Czech translation, thanks to Pavel Sefranek and Lucas Lommer (bug #531247). - - svn path=/trunk/; revision=8221 - - po/ChangeLog | 5 + - po/cs.po | 1762 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 754 insertions(+), 1013 deletions(-) - -commit 40604eee6792815c75808718446bbfee4ae2a648 -Author: Gabor Kelemen -Date: Fri May 9 09:15:11 2008 +0000 - - Translation updated. - - 2008-05-09 Gabor Kelemen - - * hu.po: Translation updated. - - svn path=/trunk/; revision=8219 - - po/ChangeLog | 4 ++++ - po/hu.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit d0758d0e941112cdeefa0380b80f1e505be28e29 -Author: Kjartan Maraas -Date: Tue May 6 16:24:50 2008 +0000 - - Updated Norwegian bokmål translation. - - 2008-05-06 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=8218 - - po/ChangeLog | 4 + - po/nb.po | 1183 +++++++--------------------------------------------------- - 2 files changed, 146 insertions(+), 1041 deletions(-) - -commit 251221af3782893a02d1c28f1cd49cddfec2b6ee -Author: Nikos Charonitakis -Date: Sun May 4 21:08:06 2008 +0000 - - Updated Greek translation - - svn path=/trunk/; revision=8217 - - help/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 8b94328249080a4173ef7ff281fc7b3d68ecae9f -Author: Nikos Charonitakis -Date: Sun May 4 21:06:51 2008 +0000 - - Updated Greek translation by Giannis Katsampirhs - - svn path=/trunk/; revision=8216 - - help/el/el.po | 1645 +++++++++++++++++++++++++++++---------------------------- - 1 file changed, 823 insertions(+), 822 deletions(-) - -commit 351a6113ba9aa86f436c61054ca717d2799675d7 -Author: Stanislav Brabec -Date: Wed Apr 16 13:42:21 2008 +0000 - - cs.po: Typo fix. - - svn path=/trunk/; revision=8213 - - po/ChangeLog | 4 ++++ - po/cs.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 930a85b9539887a7a70136b6d442f25fb0a6ed82 -Author: Matej Urbančič -Date: Sat Apr 12 16:36:21 2008 +0000 - - Updated Slovenian translation - - svn path=/trunk/; revision=8212 - - po/sl.po | 1105 +++++++++----------------------------------------------------- - 1 file changed, 146 insertions(+), 959 deletions(-) - -commit bc3acca7eed4f90a33f43b624b4a49d09a75160e -Author: Christian Persch -Date: Sat Apr 12 15:22:57 2008 +0000 - - Add epiphany.h. Only allow including epiphany.h; all other headers are private - - svn path=/trunk/; revision=8211 - - configure.ac | 4 +- - doc/reference/Makefile.am | 4 +- - doc/reference/tmpl/EphyContentPolicy.sgml | 21 -------- - doc/reference/tmpl/ephy-embed.sgml | 1 - - doc/reference/tmpl/epiphany-unused.sgml | 82 +++++++++++++++++++++++++++++++ - embed/Makefile.am | 4 ++ - embed/ephy-adblock-manager.h | 4 ++ - embed/ephy-adblock.h | 4 ++ - embed/ephy-base-embed.h | 4 ++ - embed/ephy-command-manager.h | 4 ++ - embed/ephy-cookie-manager.h | 4 ++ - embed/ephy-download.h | 4 ++ - embed/ephy-embed-container.h | 4 ++ - embed/ephy-embed-dialog.h | 4 ++ - embed/ephy-embed-event.h | 4 ++ - embed/ephy-embed-factory.h | 4 ++ - embed/ephy-embed-find.h | 4 ++ - embed/ephy-embed-persist.h | 4 ++ - embed/ephy-embed-prefs.h | 4 ++ - embed/ephy-embed-shell.h | 4 ++ - embed/ephy-embed-single.h | 4 ++ - embed/ephy-embed-utils.h | 4 ++ - embed/ephy-embed.h | 4 ++ - embed/ephy-encodings.h | 4 ++ - embed/ephy-favicon-cache.h | 4 ++ - embed/ephy-history-item.h | 4 ++ - embed/ephy-history.h | 4 ++ - embed/ephy-password-manager.h | 4 ++ - embed/ephy-permission-manager.h | 4 ++ - embed/webkit/webkit-embed-persist.c | 2 + - embed/webkit/webkit-embed-prefs.c | 2 + - lib/Makefile.am | 4 ++ - lib/egg/Makefile.am | 1 + - lib/ephy-debug.h | 4 ++ - lib/ephy-dialog.h | 4 ++ - lib/ephy-dnd.h | 4 ++ - lib/ephy-file-chooser.h | 4 ++ - lib/ephy-file-helpers.h | 4 ++ - lib/ephy-glib-compat.h | 4 ++ - lib/ephy-gui.h | 4 ++ - lib/ephy-langs.h | 4 ++ - lib/ephy-loader.h | 4 ++ - lib/ephy-module.h | 4 ++ - lib/ephy-node-common.h | 4 ++ - lib/ephy-node-db.h | 4 ++ - lib/ephy-node-filter.h | 4 ++ - lib/ephy-node.h | 4 ++ - lib/ephy-object-helpers.h | 4 ++ - lib/ephy-password-dialog.h | 4 ++ - lib/ephy-prefs.h | 4 ++ - lib/ephy-print-utils.h | 4 ++ - lib/ephy-shlib-loader.h | 4 ++ - lib/ephy-signal-accumulator.h | 4 ++ - lib/ephy-spell-check.h | 4 ++ - lib/ephy-state.h | 4 ++ - lib/ephy-stock-icons.h | 4 ++ - lib/ephy-string.h | 4 ++ - lib/ephy-time-helpers.h | 4 ++ - lib/ephy-zoom.h | 4 ++ - lib/widgets/ephy-icon-entry.h | 4 ++ - lib/widgets/ephy-location-entry.h | 4 ++ - lib/widgets/ephy-node-view.h | 4 ++ - lib/widgets/ephy-search-entry.h | 4 ++ - lib/widgets/ephy-spinner.h | 4 ++ - lib/widgets/ephy-tree-model-node.h | 4 ++ - lib/widgets/ephy-tree-model-sort.h | 4 ++ - lib/widgets/ephy-zoom-action.h | 4 ++ - lib/widgets/ephy-zoom-control.h | 4 ++ - 68 files changed, 333 insertions(+), 24 deletions(-) - -commit 4cdf2b787c92977a7883c2f4eae8c5e5f97dfd54 -Author: Christian Persch -Date: Fri Apr 11 20:05:25 2008 +0000 - - Add epiphany.h. Only allow including epiphany/epiphany.h; all other - - Add epiphany.h. - Only allow including epiphany/epiphany.h; all other headers are internal. - - svn path=/trunk/; revision=8210 - - src/Makefile.am | 6 ++- - src/bookmarks/Makefile.am | 4 ++ - src/bookmarks/ephy-bookmark-action-group.h | 4 ++ - src/bookmarks/ephy-bookmark-action.h | 4 ++ - src/bookmarks/ephy-bookmark-factory-action.h | 4 ++ - src/bookmarks/ephy-bookmark-properties.h | 4 ++ - src/bookmarks/ephy-bookmarks-editor.h | 4 ++ - src/bookmarks/ephy-bookmarks-export.h | 4 ++ - src/bookmarks/ephy-bookmarks-import.h | 4 ++ - src/bookmarks/ephy-bookmarks-menu.h | 4 ++ - src/bookmarks/ephy-bookmarks-ui.h | 4 ++ - src/bookmarks/ephy-bookmarks.h | 4 ++ - src/bookmarks/ephy-nodes-cover.h | 4 ++ - src/bookmarks/ephy-open-tabs-action.h | 4 ++ - src/bookmarks/ephy-related-action.h | 4 ++ - src/bookmarks/ephy-topic-action-group.h | 4 ++ - src/bookmarks/ephy-topic-action.h | 4 ++ - src/bookmarks/ephy-topic-factory-action.h | 4 ++ - src/bookmarks/ephy-topics-entry.h | 4 ++ - src/bookmarks/ephy-topics-palette.h | 4 ++ - src/ephy-action-helper.h | 4 ++ - src/ephy-activation.h | 4 ++ - src/ephy-completion-model.h | 4 ++ - src/ephy-dbus.h | 4 ++ - src/ephy-encoding-dialog.h | 4 ++ - src/ephy-encoding-menu.h | 4 ++ - src/ephy-extension.h | 4 ++ - src/ephy-extensions-manager.h | 4 ++ - src/ephy-find-toolbar.h | 4 ++ - src/ephy-fullscreen-popup.h | 4 ++ - src/ephy-go-action.h | 4 ++ - src/ephy-history-window.h | 4 ++ - src/ephy-home-action.h | 4 ++ - src/ephy-link-action.h | 4 ++ - src/ephy-link.h | 4 ++ - src/ephy-location-action.h | 4 ++ - src/ephy-lockdown.h | 4 ++ - src/ephy-navigation-action.h | 4 ++ - src/ephy-net-monitor.h | 4 ++ - src/ephy-notebook.h | 4 ++ - src/ephy-python-extension.h | 4 ++ - src/ephy-python-loader.h | 4 ++ - src/ephy-python.h | 4 ++ - src/ephy-session.h | 4 ++ - src/ephy-shell.h | 4 ++ - src/ephy-statusbar.h | 4 ++ - src/ephy-tabs-menu.h | 4 ++ - src/ephy-toolbar-editor.h | 4 ++ - src/ephy-toolbar.h | 4 ++ - src/ephy-toolbars-model.h | 4 ++ - src/ephy-version.h.in | 35 ------------- - src/ephy-window.h | 4 ++ - src/epiphany.h.in | 75 ++++++++++++++++++++++++++++ - src/epiphany.override | 1 + - 54 files changed, 281 insertions(+), 36 deletions(-) - -commit 0f850ad05322a65ac6e845543d370ecbe6a0d46c -Author: Xan Lopez -Date: Tue Apr 8 11:55:51 2008 +0000 - - Small cleanup. - - svn path=/trunk/; revision=8202 - - embed/ephy-adblock-manager.c | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -commit 34e9ae232601a9a31a9627264bded85b81a5c3b3 -Author: Xan Lopez -Date: Tue Apr 8 11:55:47 2008 +0000 - - Small cleanups and correct return value of popup-menu callback. - - svn path=/trunk/; revision=8201 - - embed/downloader-view.c | 12 +++++------- - 1 file changed, 5 insertions(+), 7 deletions(-) - -commit cc4ecb65c54a08bd33acf76e459b5df901a0a29b -Author: Christian Persch -Date: Mon Apr 7 16:27:21 2008 +0000 - - More gecko exorcism - - svn path=/trunk/; revision=8197 - - doc/reference/epiphany-sections.txt | 10 ---------- - doc/reference/epiphany.types | 4 ---- - 2 files changed, 14 deletions(-) - -commit fb6e965b470e8a57bfcf8bbbfd59c64539eb8fa7 -Author: Christian Persch -Date: Mon Apr 7 16:25:07 2008 +0000 - - Remove nonexistent files - - svn path=/trunk/; revision=8196 - - doc/reference/Makefile.am | 20 -------------------- - 1 file changed, 20 deletions(-) - -commit e90d5034188890532768cc40403fac471cbc31d3 -Author: Christian Persch -Date: Mon Apr 7 09:35:45 2008 +0000 - - Remove MOZ_DISABLE_PANGO checks. - - svn path=/trunk/; revision=8192 - - src/ephy-main.c | 17 ----------------- - 1 file changed, 17 deletions(-) - -commit 4b3aa285c5d8b9efe79466e9de0f28a94f745bad -Author: Christian Persch -Date: Mon Apr 7 09:34:49 2008 +0000 - - Remove detailed font prefs, they're obsolete on webkit. - Remove the epiphany-pango schemas file, same reason. - - svn path=/trunk/; revision=8191 - - data/Makefile.am | 7 +- - data/epiphany-fonts.schemas | 1435 ----------------------------------------- - data/epiphany-pango.schemas | 55 -- - data/glade/prefs-dialog.glade | 423 +----------- - src/prefs-dialog.c | 323 +--------- - 5 files changed, 33 insertions(+), 2210 deletions(-) - -commit 0da28ea4f41ad46b53c3347c0794a8fe0dff04cd -Author: Christian Persch -Date: Thu Apr 3 21:10:09 2008 +0000 - - Update - - svn path=/trunk/; revision=8185 - - po/POTFILES.in | 17 ----------------- - 1 file changed, 17 deletions(-) - -commit 39e984581c9ff4531e527456facf30f74574a64f -Author: Christian Persch -Date: Thu Apr 3 21:09:48 2008 +0000 - - Remove this too - - svn path=/trunk/; revision=8184 - - embed/mozilla/AutoJSContextStack.cpp | 47 - - embed/mozilla/AutoJSContextStack.h | 41 - - embed/mozilla/AutoModalDialog.cpp | 183 --- - embed/mozilla/AutoModalDialog.h | 70 - - embed/mozilla/AutoWindowModalState.cpp | 61 - - embed/mozilla/AutoWindowModalState.h | 38 - - embed/mozilla/ContentHandler.cpp | 490 ------ - embed/mozilla/ContentHandler.h | 81 - - embed/mozilla/EphyAboutModule.cpp | 755 ---------- - embed/mozilla/EphyAboutModule.h | 65 - - embed/mozilla/EphyBadCertRejector.cpp | 68 - - embed/mozilla/EphyBadCertRejector.h | 36 - - embed/mozilla/EphyBrowser.cpp | 1900 ------------------------ - embed/mozilla/EphyBrowser.h | 238 --- - embed/mozilla/EphyContentPolicy.cpp | 250 ---- - embed/mozilla/EphyContentPolicy.h | 76 - - embed/mozilla/EphyDirectoryProvider.cpp | 123 -- - embed/mozilla/EphyDirectoryProvider.h | 37 - - embed/mozilla/EphyFind.cpp | 267 ---- - embed/mozilla/EphyFind.h | 60 - - embed/mozilla/EphyHeaderSniffer.cpp | 446 ------ - embed/mozilla/EphyHeaderSniffer.h | 95 -- - embed/mozilla/EphyHistoryListener.cpp | 170 --- - embed/mozilla/EphyHistoryListener.h | 49 - - embed/mozilla/EphyPromptService.cpp | 1117 -------------- - embed/mozilla/EphyPromptService.h | 77 - - embed/mozilla/EphyRedirectChannel.cpp | 32 - - embed/mozilla/EphyRedirectChannel.h | 50 - - embed/mozilla/EphySidebar.cpp | 168 --- - embed/mozilla/EphySidebar.h | 66 - - embed/mozilla/EphySingle.cpp | 396 ----- - embed/mozilla/EphySingle.h | 67 - - embed/mozilla/EphyUtils.cpp | 222 --- - embed/mozilla/EphyUtils.h | 71 - - embed/mozilla/EventContext.cpp | 1105 -------------- - embed/mozilla/EventContext.h | 78 - - embed/mozilla/FilePicker.cpp | 457 ------ - embed/mozilla/FilePicker.h | 62 - - embed/mozilla/GeckoCookiePromptService.cpp | 157 -- - embed/mozilla/GeckoCookiePromptService.h | 43 - - embed/mozilla/GeckoFormSigningDialog.cpp | 156 -- - embed/mozilla/GeckoFormSigningDialog.h | 42 - - embed/mozilla/GeckoPrintService.cpp | 755 ---------- - embed/mozilla/GeckoPrintService.h | 54 - - embed/mozilla/GeckoPrintSession.cpp | 629 -------- - embed/mozilla/GeckoPrintSession.h | 94 -- - embed/mozilla/GeckoSpellCheckEngine.cpp | 205 --- - embed/mozilla/GeckoSpellCheckEngine.h | 52 - - embed/mozilla/GlobalHistory.cpp | 225 --- - embed/mozilla/GlobalHistory.h | 68 - - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 284 ---- - embed/mozilla/GtkNSSClientAuthDialogs.h | 45 - - embed/mozilla/GtkNSSDialogs.cpp | 1725 --------------------- - embed/mozilla/GtkNSSDialogs.h | 67 - - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 211 --- - embed/mozilla/GtkNSSKeyPairDialogs.h | 45 - - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 285 ---- - embed/mozilla/GtkNSSSecurityWarningDialogs.h | 83 -- - embed/mozilla/Makefile.am | 176 --- - embed/mozilla/MozDownload.cpp | 844 ----------- - embed/mozilla/MozDownload.h | 153 -- - embed/mozilla/MozRegisterComponents.cpp | 341 ----- - embed/mozilla/MozRegisterComponents.h | 28 - - embed/mozilla/ephyIAddCertExceptionParams.h | 123 -- - embed/mozilla/ephyIAddCertExceptionParams.idl | 8 - - embed/mozilla/epiphany.xpt | Bin 228 -> 0 bytes - embed/mozilla/mozilla-download.cpp | 283 ---- - embed/mozilla/mozilla-download.h | 61 - - embed/mozilla/mozilla-embed-event.cpp | 182 --- - embed/mozilla/mozilla-embed-event.h | 74 - - embed/mozilla/mozilla-embed-find.cpp | 165 -- - embed/mozilla/mozilla-embed-find.h | 57 - - embed/mozilla/mozilla-embed-persist.cpp | 387 ----- - embed/mozilla/mozilla-embed-persist.h | 63 - - embed/mozilla/mozilla-embed-single.cpp | 1454 ------------------ - embed/mozilla/mozilla-embed-single.h | 57 - - embed/mozilla/mozilla-embed.cpp | 1530 ------------------- - embed/mozilla/mozilla-embed.h | 79 - - embed/mozilla/mozilla-history-item.cpp | 133 -- - embed/mozilla/mozilla-history-item.h | 39 - - embed/mozilla/mozilla-notifiers.cpp | 1257 ---------------- - embed/mozilla/mozilla-notifiers.h | 58 - - 82 files changed, 22391 deletions(-) - -commit 18325ac0850ff053477580b448fc6d1b7f21afa8 -Author: Christian Persch -Date: Thu Apr 3 21:00:23 2008 +0000 - - Exorcise gecko configure & build stuff - - svn path=/trunk/; revision=8183 - - Makefile.am | 9 +- - configure.ac | 339 ++--------------- - data/Makefile.am | 22 +- - data/chrome/Makefile.am | 31 -- - data/chrome/about.xhtml | 99 ----- - data/chrome/app-chrome.manifest.in | 4 - - data/chrome/brand.dtd.in | 7 - - data/chrome/brand.properties.in | 4 - - data/chrome/netError.dtd | 9 - - data/default-prefs-common.js | 173 --------- - data/weasel-ua-pref.js.in | 6 - - doc/reference/Makefile.am | 32 +- - embed/Makefile.am | 20 +- - embed/ephy-embed-factory.c | 40 +- - m4/gecko.m4 | 721 ------------------------------------- - m4/libxul.m4 | 566 ----------------------------- - src/Makefile.am | 60 +-- - src/epiphany.defs | 226 ++++++------ - src/epiphany.override | 54 +-- - 19 files changed, 192 insertions(+), 2230 deletions(-) - -commit c0267b1c65c216a3f1e4743be20b7175ac903b50 -Author: Christian Persch -Date: Thu Apr 3 14:47:00 2008 +0000 - - Decruftify - - svn path=/trunk/; revision=8182 - - embed/xulrunner/AUTHORS | 2 - - embed/xulrunner/COPYRIGHT | 6 - - embed/xulrunner/ChangeLog-preEphy | 548 ------- - embed/xulrunner/HACKING | 10 - - embed/xulrunner/MAINTAINERS | 2 - - embed/xulrunner/Makefile.am | 12 - - embed/xulrunner/NEWS | 0 - embed/xulrunner/PLAN | 26 - - embed/xulrunner/README | 0 - embed/xulrunner/STATUS | 2 - - embed/xulrunner/TODO | 1 - - embed/xulrunner/bindings/Makefile.am | 7 - - embed/xulrunner/bindings/python/Makefile.am | 62 - - .../xulrunner/bindings/python/gnomegeckoembed.defs | 294 ---- - .../bindings/python/gnomegeckoembed.override | 19 - - .../bindings/python/gnomegeckoembedmodule.c | 29 - - embed/xulrunner/bindings/python/test.py | 32 - - embed/xulrunner/components/ContentHandler.cpp | 481 ------ - embed/xulrunner/components/ContentHandler.h | 81 - - embed/xulrunner/components/EphyAboutModule.cpp | 724 --------- - embed/xulrunner/components/EphyAboutModule.h | 65 - - embed/xulrunner/components/EphyContentPolicy.cpp | 244 --- - embed/xulrunner/components/EphyContentPolicy.h | 76 - - embed/xulrunner/components/EphyHistoryListener.cpp | 170 -- - embed/xulrunner/components/EphyHistoryListener.h | 49 - - embed/xulrunner/components/EphyRedirectChannel.cpp | 32 - - embed/xulrunner/components/EphyRedirectChannel.h | 50 - - embed/xulrunner/components/EphySidebar.cpp | 161 -- - embed/xulrunner/components/EphySidebar.h | 66 - - embed/xulrunner/components/FilePicker.cpp | 453 ------ - embed/xulrunner/components/FilePicker.h | 62 - - .../components/GeckoCookiePromptService.cpp | 160 -- - .../components/GeckoCookiePromptService.h | 43 - - .../components/GeckoFormSigningDialog.cpp | 158 -- - .../xulrunner/components/GeckoFormSigningDialog.h | 42 - - embed/xulrunner/components/GeckoPrintService.cpp | 714 --------- - embed/xulrunner/components/GeckoPrintService.h | 54 - - embed/xulrunner/components/GeckoPrintSession.cpp | 629 -------- - embed/xulrunner/components/GeckoPrintSession.h | 94 -- - embed/xulrunner/components/GeckoPromptService.cpp | 907 ----------- - embed/xulrunner/components/GeckoPromptService.h | 48 - - .../xulrunner/components/GeckoSpellCheckEngine.cpp | 200 --- - embed/xulrunner/components/GeckoSpellCheckEngine.h | 52 - - embed/xulrunner/components/GlobalHistory.cpp | 221 --- - embed/xulrunner/components/GlobalHistory.h | 68 - - .../components/GtkNSSClientAuthDialogs.cpp | 284 ---- - .../xulrunner/components/GtkNSSClientAuthDialogs.h | 45 - - embed/xulrunner/components/GtkNSSDialogs.cpp | 1695 -------------------- - embed/xulrunner/components/GtkNSSDialogs.h | 61 - - .../xulrunner/components/GtkNSSKeyPairDialogs.cpp | 216 --- - embed/xulrunner/components/GtkNSSKeyPairDialogs.h | 45 - - .../components/GtkNSSSecurityWarningDialogs.cpp | 285 ---- - .../components/GtkNSSSecurityWarningDialogs.h | 83 - - embed/xulrunner/components/Makefile.am | 104 -- - embed/xulrunner/components/MozDownload.cpp | 824 ---------- - embed/xulrunner/components/MozDownload.h | 153 -- - .../xulrunner/components/MozRegisterComponents.cpp | 330 ---- - embed/xulrunner/components/MozRegisterComponents.h | 28 - - embed/xulrunner/data/Makefile.am | 2 - - embed/xulrunner/data/gnome-gecko-embed.pc.in | 11 - - embed/xulrunner/embed/EphyBrowser.cpp | 1612 ------------------- - embed/xulrunner/embed/EphyBrowser.h | 223 --- - embed/xulrunner/embed/EphyDirectoryProvider.cpp | 101 -- - embed/xulrunner/embed/EphyDirectoryProvider.h | 37 - - embed/xulrunner/embed/EphyFind.cpp | 222 --- - embed/xulrunner/embed/EphyFind.h | 60 - - embed/xulrunner/embed/EphyHeaderSniffer.cpp | 441 ----- - embed/xulrunner/embed/EphyHeaderSniffer.h | 95 -- - embed/xulrunner/embed/EphySingle.cpp | 394 ----- - embed/xulrunner/embed/EphySingle.h | 67 - - embed/xulrunner/embed/EventContext.cpp | 1105 ------------- - embed/xulrunner/embed/EventContext.h | 78 - - embed/xulrunner/embed/Makefile.am | 57 - - embed/xulrunner/embed/mozilla-download.cpp | 313 ---- - embed/xulrunner/embed/mozilla-download.h | 61 - - embed/xulrunner/embed/mozilla-embed-event.cpp | 221 --- - embed/xulrunner/embed/mozilla-embed-event.h | 74 - - embed/xulrunner/embed/mozilla-embed-find.cpp | 198 --- - embed/xulrunner/embed/mozilla-embed-find.h | 57 - - embed/xulrunner/embed/mozilla-embed-persist.cpp | 416 ----- - embed/xulrunner/embed/mozilla-embed-persist.h | 63 - - embed/xulrunner/embed/mozilla-embed-single.cpp | 1389 ---------------- - embed/xulrunner/embed/mozilla-embed-single.h | 57 - - embed/xulrunner/embed/mozilla-embed.cpp | 1271 --------------- - embed/xulrunner/embed/mozilla-embed.h | 66 - - embed/xulrunner/embed/mozilla-notifiers.cpp | 1257 --------------- - embed/xulrunner/embed/mozilla-notifiers.h | 58 - - embed/xulrunner/src/EmbedContentListener.cpp | 159 -- - embed/xulrunner/src/EmbedContentListener.h | 63 - - embed/xulrunner/src/EmbedEventListener.cpp | 183 --- - embed/xulrunner/src/EmbedEventListener.h | 102 -- - embed/xulrunner/src/EmbedProgress.cpp | 224 --- - embed/xulrunner/src/EmbedProgress.h | 63 - - embed/xulrunner/src/EmbedStream.cpp | 311 ---- - embed/xulrunner/src/EmbedStream.h | 79 - - embed/xulrunner/src/EmbedWindow.cpp | 467 ------ - embed/xulrunner/src/EmbedWindow.h | 97 -- - embed/xulrunner/src/EmbedWindowCreator.cpp | 108 -- - embed/xulrunner/src/EmbedWindowCreator.h | 51 - - embed/xulrunner/src/GeckoBrowser.cpp | 676 -------- - embed/xulrunner/src/GeckoBrowser.h | 159 -- - embed/xulrunner/src/GeckoSingle.cpp | 122 -- - embed/xulrunner/src/GeckoSingle.h | 97 -- - embed/xulrunner/src/Makefile.am | 132 -- - embed/xulrunner/src/gecko-dom-event-internal.h | 28 - - embed/xulrunner/src/gecko-dom-event-private.h | 38 - - embed/xulrunner/src/gecko-dom-event.cpp | 78 - - embed/xulrunner/src/gecko-dom-event.h | 40 - - embed/xulrunner/src/gecko-embed-marshal.list | 10 - - embed/xulrunner/src/gecko-embed-private.h | 54 - - embed/xulrunner/src/gecko-embed-signals.h | 82 - - embed/xulrunner/src/gecko-embed-single-private.h | 59 - - embed/xulrunner/src/gecko-embed-single.cpp | 182 --- - embed/xulrunner/src/gecko-embed-single.h | 88 - - embed/xulrunner/src/gecko-embed-types.h | 118 -- - embed/xulrunner/src/gecko-embed.cpp | 1029 ------------ - embed/xulrunner/src/gecko-embed.h | 151 -- - embed/xulrunner/src/gecko-init-internal.h | 30 - - embed/xulrunner/src/gecko-init-private.h | 33 - - embed/xulrunner/src/gecko-init.cpp | 372 ----- - embed/xulrunner/src/gecko-init.h | 35 - - embed/xulrunner/tests/Makefile.am | 30 - - embed/xulrunner/tests/TestGtkEmbedNotebook.cpp | 49 - - embed/xulrunner/tests/testgeckoembed.cpp | 1145 ------------- - embed/xulrunner/utils/AutoJSContextStack.cpp | 48 - - embed/xulrunner/utils/AutoJSContextStack.h | 41 - - embed/xulrunner/utils/AutoWindowModalState.cpp | 43 - - embed/xulrunner/utils/AutoWindowModalState.h | 38 - - embed/xulrunner/utils/EphyBadCertRejector.cpp | 68 - - embed/xulrunner/utils/EphyBadCertRejector.h | 36 - - embed/xulrunner/utils/EphyUtils.cpp | 203 --- - embed/xulrunner/utils/EphyUtils.h | 66 - - embed/xulrunner/utils/GeckoUtils.cpp | 87 - - embed/xulrunner/utils/GeckoUtils.h | 34 - - embed/xulrunner/utils/Makefile.am | 43 - - embed/xulrunner/utils/ggeAutoModalDialog.cpp | 189 --- - embed/xulrunner/utils/ggeAutoModalDialog.h | 70 - - embed/xulrunner/utils/ggeAutoSurvivalArea.cpp | 42 - - embed/xulrunner/utils/ggeAutoSurvivalArea.h | 44 - - xulapp/Makefile.am | 0 - xulapp/application.ini.in | 18 - - 141 files changed, 29129 deletions(-) - -commit bfe81e9680d7520a4bca4429bc02d5db45245212 -Author: Philip Withnall -Date: Wed Apr 2 19:49:11 2008 +0000 - - Fixed British English translation. - - 2008-04-02 Philip Withnall - - * en_GB.po: Fixed British English translation. - - - svn path=/trunk/; revision=8180 - - po/ChangeLog | 4 ++++ - po/en_GB.po | 66 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 37 insertions(+), 33 deletions(-) - -commit e1ca61e10f476bff2373196dd6260b3b9a4f4602 -Author: Eskild Hustvedt -Date: Wed Apr 2 12:32:17 2008 +0000 - - Updated Norwegian Nynorsk translation - - svn path=/trunk/; revision=8179 - - po/ChangeLog | 4 + - po/nn.po | 265 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 152 insertions(+), 117 deletions(-) - -commit 2288a1db2389b57ba825be0539e9f0c5f3f8a7c6 -Author: Christian Persch -Date: Tue Apr 1 00:27:48 2008 +0000 - - Try harder to fix the build with gecko 1.8 - - svn path=/trunk/; revision=8177 - - embed/mozilla/EphyBrowser.cpp | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit c1d5bd5d710ff5acdcd096a46b759589c535f131 -Author: Christian Persch -Date: Mon Mar 31 21:54:37 2008 +0000 - - Try to fix the build with gecko 1.8 - - svn path=/trunk/; revision=8175 - - embed/mozilla/EphyBrowser.cpp | 4 ++++ - embed/mozilla/EphyBrowser.h | 6 ++++++ - 2 files changed, 10 insertions(+) - -commit de8872ec4800156389fc4a124ceb3f8d15743ad7 -Author: Christian Persch -Date: Mon Mar 31 00:03:45 2008 +0000 - - Make the extra column pack-end so that when we hide it when it's empty, the other column expands. This makes bookmarks take up all the space instead of being truncated at the half. - - svn path=/trunk/; revision=8173 - - lib/widgets/ephy-location-entry.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit c6b37a79901386932d5018e8e282b4faa775816c -Author: Jorge Gonzalez Gonzalez -Date: Sun Mar 30 11:36:16 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8172 - - help/ChangeLog | 4 + - help/es/es.po | 974 +++++++++++++++++++++++++++++---------------------------- - 2 files changed, 494 insertions(+), 484 deletions(-) - -commit 26bb4e40a8ffdf36aec20da023eae2b1950d6cb9 -Author: Alexander Shopov -Date: Sat Mar 29 18:52:51 2008 +0000 - - Updated Bulgarian translation by Yavor Doganov - - 2008-03-29 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Yavor Doganov - - svn path=/trunk/; revision=8170 - - po/ChangeLog | 5 + - po/bg.po | 1659 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 906 insertions(+), 758 deletions(-) - -commit 03793a315a44f8e5ca9b717dc65837d0aa6b96bb -Author: Yair Hershkovitz -Date: Sat Mar 29 08:28:45 2008 +0000 - - updated hebrew translation - - svn path=/trunk/; revision=8168 - - po/ChangeLog | 4 + - po/he.po | 1039 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 527 insertions(+), 516 deletions(-) - -commit dbf9f29d85f41147744f8d2e1d9703439a579fa0 -Author: Xan Lopez -Date: Fri Mar 28 15:38:07 2008 +0000 - - Remove the ephy-spinner from the toolbar.c, there's enough feeback - with the spinners in the tabs and the progress bar. (#524809) - - svn path=/trunk/; revision=8166 - - lib/widgets/Makefile.am | 2 - - lib/widgets/ephy-spinner-tool-item.c | 115 ----------------------------------- - lib/widgets/ephy-spinner-tool-item.h | 62 ------------------- - src/ephy-toolbar.c | 53 ---------------- - src/ephy-toolbar.h | 3 - - src/ephy-window.c | 2 - - 6 files changed, 237 deletions(-) - -commit b71c1cec6d7e3d03736ee7d93e999b80822d0566 -Author: Christian Persch -Date: Thu Mar 27 22:31:31 2008 +0000 - - Do use a 1.9 xpidl for this - - svn path=/trunk/; revision=8139 - - embed/mozilla/ephyIAddCertExceptionParams.h | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 3a7446c1c66f32f6196016841c4ce0b2a4ccfe33 -Author: Christian Persch -Date: Thu Mar 27 22:29:36 2008 +0000 - - Renegerate this with an older xpidl version, so it compiles on xr1.9 beta release - - svn path=/trunk/; revision=8138 - - embed/mozilla/ephyIAddCertExceptionParams.h | 38 ++++++++++++++--------------- - 1 file changed, 18 insertions(+), 20 deletions(-) - -commit 76d26bb44656e5ab42a3f8c86865de25fb58c3ab -Author: Christian Persch -Date: Wed Mar 26 22:52:32 2008 +0000 - - Remove the useless "Get me out of here!" button. - - svn path=/trunk/; revision=8137 - - data/chrome/netError.dtd | 1 - - 1 file changed, 1 deletion(-) - -commit e79c75124f76b097b6e79f3a039813d37125df0b -Author: Christian Persch -Date: Wed Mar 26 22:26:04 2008 +0000 - - Comment out useless stuff - - svn path=/trunk/; revision=8136 - - configure.ac | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 43677165c94609018dc9150e1e2fa1a4c5e904f5 -Author: Christian Persch -Date: Wed Mar 26 22:25:35 2008 +0000 - - Next try to get cert exception addition working. This too isn't not working correctly though; it fails to get any properties from my |arguments| object. - - svn path=/trunk/; revision=8135 - - embed/mozilla/EphyBrowser.cpp | 274 ++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 10 + - embed/mozilla/EphyDirectoryProvider.cpp | 2 +- - embed/mozilla/Makefile.am | 9 + - embed/mozilla/ephyAddCertException.h | 99 ---------- - embed/mozilla/ephyAddCertException.idl | 8 - - embed/mozilla/ephyAddCertException.js | 105 ---------- - embed/mozilla/ephyAddCertException.xpt | Bin 211 -> 0 bytes - embed/mozilla/ephyIAddCertExceptionParams.h | 123 ++++++++++++ - embed/mozilla/ephyIAddCertExceptionParams.idl | 8 + - embed/mozilla/epiphany.xpt | Bin 0 -> 228 bytes - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 12 files changed, 426 insertions(+), 214 deletions(-) - -commit 8e162912682fb133ecdd5dbba3afd27620804c1d -Author: Diego Escalante Urrelo -Date: Wed Mar 26 22:08:10 2008 +0000 - - Fix changelog generation to consider only the current branch. - - - svn path=/trunk/; revision=8134 - - Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ed52f7b2601b69c134e7843276f9aaa94f4cfa07 -Author: Philip Withnall -Date: Tue Mar 25 22:56:32 2008 +0000 - - Updated British English translation. - - 2008-03-25 Philip Withnall - - * en_GB.po: Updated British English translation. - - - svn path=/trunk/; revision=8132 - - po/ChangeLog | 4 ++++ - po/en_GB.po | 54 +++++++++++++++++++++++++++--------------------------- - 2 files changed, 31 insertions(+), 27 deletions(-) - -commit be30e4924cca0abeb93f4a348f8c68425dfad7d7 -Author: Nickolay V. Shmyrev -Date: Tue Mar 25 20:38:28 2008 +0000 - - Updated Russian translation. - - 2008-03-25 Nickolay V. Shmyrev - - * ru.po: Updated Russian translation. - - - svn path=/trunk/; revision=8130 - - po/ru.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 5cf2b10408f4e5f77e1723a690821641af480958 -Author: Diego Escalante Urrelo -Date: Tue Mar 25 01:29:16 2008 +0000 - - Update description of the Epiphany manual. Patch by Diana Horqque. - Fixes bug #500771. - - - svn path=/trunk/; revision=8128 - - help/C/epiphany.xml | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -commit 0074191acdc41b83c62c6619958ef13c813ced20 -Author: Nguyễn Thái Ngọc Duy -Date: Sun Mar 23 12:05:54 2008 +0000 - - Update Vietnamese translation - - 2008-03-23 Nguyễn Thái Ngọc Duy - - * vi.po: Update Vietnamese translation - - - svn path=/trunk/; revision=8126 - - po/ChangeLog | 4 + - po/vi.po | 2004 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1028 insertions(+), 980 deletions(-) - -commit f47727e067e4e8fc8ed4714b1dcdabba453f675d -Author: Kostas Papadimas -Date: Wed Mar 19 15:38:22 2008 +0000 - - Updated Greek translation - - svn path=/trunk/; revision=8124 - - po/ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7828a18272cd614985e62fec5a6947436f599750 -Author: Kostas Papadimas -Date: Wed Mar 19 15:29:48 2008 +0000 - - Updated Greek translation - - svn path=/trunk/; revision=8122 - - po/ChangeLog | 4 + - po/el.po | 860 ++++++++++++++++++++++++++++++++++++++++------------------- - 2 files changed, 585 insertions(+), 279 deletions(-) - -commit 1e3d17128e9818fbb580248dfef86b31078d6a1a -Author: Nikos Charonitakis -Date: Mon Mar 17 23:16:19 2008 +0000 - - Updated Greek translation - - svn path=/trunk/; revision=8118 - - help/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 11072d2fe5f72790a5b0f7038ac58a90e9f6544c -Author: Nikos Charonitakis -Date: Mon Mar 17 23:13:27 2008 +0000 - - Updated Greek translation - - svn path=/trunk/; revision=8117 - - help/el/el.po | 2119 +++++++++++++++++++++------------------------------------ - 1 file changed, 775 insertions(+), 1344 deletions(-) - -commit 0a83300b74cca44e97d6701f6c10f675e26db17d -Author: Christian Persch -Date: Mon Mar 17 22:42:37 2008 +0000 - - Add this - - svn path=/trunk/; revision=8116 - - data/chrome/netError.dtd | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 0e9350d154444e6581d9cae6c663b8c67bfc31aa -Author: Christian Persch -Date: Sun Mar 16 21:05:22 2008 +0000 - - Fix the build - - svn path=/trunk/; revision=8115 - - embed/mozilla/EphyPromptService.cpp | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit f1a1ce1cc271bda70164adcc7465e96a3c774fdb -Author: Christian Persch -Date: Sun Mar 16 21:00:39 2008 +0000 - - Try to fix the build on 1.8. - - svn path=/trunk/; revision=8114 - - embed/mozilla/EphyPromptService.cpp | 24 +++++++++++++++++------- - embed/mozilla/EphyPromptService.h | 16 ++++++++++++++-- - 2 files changed, 31 insertions(+), 9 deletions(-) - -commit 37aa29f5c43a29c7ad0a56181409877686578435 -Author: Diego Escalante Urrelo -Date: Sun Mar 16 20:57:04 2008 +0000 - - Revert the history/bookmark no-dup patch. It was slowing ephy. - - - svn path=/trunk/; revision=8113 - - src/ephy-location-action.c | 12 ------------ - 1 file changed, 12 deletions(-) - -commit d548860413ac5cea45610bd4c846c846c1619ec7 -Author: Christian Persch -Date: Fri Mar 14 21:58:08 2008 +0000 - - Add a service to open the cert exception dialogue. - - svn path=/trunk/; revision=8110 - - embed/mozilla/ephyAddCertException.h | 99 +++++++++++++++++++++++++++++++ - embed/mozilla/ephyAddCertException.idl | 8 +++ - embed/mozilla/ephyAddCertException.js | 105 +++++++++++++++++++++++++++++++++ - embed/mozilla/ephyAddCertException.xpt | Bin 0 -> 211 bytes - 4 files changed, 212 insertions(+) - -commit f9a8a26f862069c0ca841e1ee5b798e9a625d65e -Author: Christian Persch -Date: Fri Mar 14 21:57:03 2008 +0000 - - Add netError overrides for the cert exception dialogue. - - svn path=/trunk/; revision=8109 - - data/chrome/Makefile.am | 4 ++++ - data/chrome/app-chrome.manifest.in | 1 + - 2 files changed, 5 insertions(+) - -commit f839b9ebca7ec2b32ef8e59806be54a919eb3322 -Author: Christian Persch -Date: Fri Mar 14 16:39:43 2008 +0000 - - Fix the build with 1.9b4. - - svn path=/trunk/; revision=8108 - - embed/mozilla/FilePicker.cpp | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 3f113c243f397cfb15562f8924fee86673240d82 -Author: Christian Persch -Date: Fri Mar 14 16:38:41 2008 +0000 - - Only build EphyDirectoryProvider on < 1.9; it's unused on 1.9. - - svn path=/trunk/; revision=8107 - - embed/mozilla/Makefile.am | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 23e91b40fa63f80ed4bb5e3c2eb44d485974dd67 -Author: Christian Persch -Date: Fri Mar 14 16:28:03 2008 +0000 - - Remove the unnecessary setting of the preffered action in the casees that action was going to be the default one anyway. Don't open twice, just let gecko handle opening in the preferred application. - Browse-to doesn't seem to work yet. - - svn path=/trunk/; revision=8106 - - embed/mozilla/ContentHandler.cpp | 24 ++++++++++++++++-------- - embed/mozilla/MozDownload.cpp | 36 ++++++++++++++++-------------------- - 2 files changed, 32 insertions(+), 28 deletions(-) - -commit 857bd1e30ed30708dbb5b8d30a80bb438d048d15 -Author: Christian Persch -Date: Fri Mar 14 14:59:12 2008 +0000 - - Make this inclusion conditionally, since we don't use our directory provider on xr 1.9. - - svn path=/trunk/; revision=8105 - - embed/mozilla/mozilla-embed-single.cpp | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 7232daf06e51edf6781de26c6d8fd308fa70a55f -Author: Christian Persch -Date: Thu Mar 13 22:57:33 2008 +0000 - - Typo fix - - svn path=/trunk/; revision=8104 - - embed/mozilla/EphyContentPolicy.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d6283ddb95db1767357cf37d628c6fded623de1e -Author: Christian Persch -Date: Thu Mar 13 16:20:09 2008 +0000 - - Fix the branding bundle registration by providing the app chrome manifest in the right directory, and set that directory as the component directory with gtk_moz_embed_set_comp_path. - - svn path=/trunk/; revision=8103 - - data/chrome/Makefile.am | 2 +- - data/chrome/app-chrome.manifest.in | 3 +++ - data/chrome/epiphany.manifest.in | 3 --- - embed/mozilla/mozilla-embed-single.cpp | 7 +++++-- - 4 files changed, 9 insertions(+), 6 deletions(-) - -commit de1fa499ba85d8f8d0e108eb1596f7ae646048ff -Author: Christian Persch -Date: Thu Mar 13 14:09:36 2008 +0000 - - Fix multiple crashers in the zeroconf bookmarks. Bug #516008; partially based on a patch by Cosimo Cecchi. - - svn path=/trunk/; revision=8102 - - src/bookmarks/ephy-bookmarks.c | 330 +++++++++++++++++++---------------------- - 1 file changed, 151 insertions(+), 179 deletions(-) - -commit fdffd322181be333e39c2a039e37295587cf3284 -Author: Christian Persch -Date: Wed Mar 12 21:38:55 2008 +0000 - - Try again to fix the directory provider for 1.9. Branding still fails though - - svn path=/trunk/; revision=8101 - - embed/mozilla/ContentHandler.cpp | 10 +- - embed/mozilla/EphyPromptService.cpp | 228 ++++++++++++++++++++++++++++++++- - embed/mozilla/EphyPromptService.h | 14 +- - embed/mozilla/MozDownload.cpp | 22 +++- - embed/mozilla/MozDownload.h | 2 + - embed/mozilla/mozilla-embed-single.cpp | 9 +- - 6 files changed, 271 insertions(+), 14 deletions(-) - -commit 40174913b001abad51dd5a4d4c0ce142b0ace2f9 -Author: Christian Persch -Date: Wed Mar 12 21:19:23 2008 +0000 - - Try to fix the gecko 1.8 backend, and this also might fix the branding bundle not working on 1.9 - - svn path=/trunk/; revision=8100 - - embed/mozilla/mozilla-embed-single.cpp | 8 +++----- - 1 file changed, 3 insertions(+), 5 deletions(-) - -commit b46cc50c0935c57676449c71e6f4101128f27ce6 -Author: Xan Lopez -Date: Wed Mar 12 10:10:51 2008 +0000 - - Use GChecksum to calculate the MD5 of favicons. - - svn path=/trunk/; revision=8099 - - configure.ac | 2 +- - embed/ephy-favicon-cache.c | 5 ++--- - 2 files changed, 3 insertions(+), 4 deletions(-) - -commit 6b05ed0478c278f42f2c2cd8cae67bb8463eb451 -Author: Priit Laes -Date: Wed Mar 12 07:24:53 2008 +0000 - - Translation updated by Ivar Smolin - - 2008-03-12 Priit Laes - - * et.po: Translation updated by Ivar Smolin - - svn path=/trunk/; revision=8098 - - po/ChangeLog | 4 ++++ - po/et.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 2842b450d1bda5a1c357b7550afc5c96ed546d51 -Author: Christian Persch -Date: Tue Mar 11 10:28:18 2008 +0000 - - Don't use AM_CONDITIONAL conditionally - - svn path=/trunk/; revision=8097 - - m4/gecko.m4 | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 4d1cbbc2c27070b3e26b452834219b9d1da33e84 -Author: Christian Persch -Date: Tue Mar 11 10:17:54 2008 +0000 - - Fix - - svn path=/trunk/; revision=8096 - - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f26a212542b73730f869991e28720744d62e445c -Author: Christian Persch -Date: Tue Mar 11 10:15:17 2008 +0000 - - Try to fix the build with 1.8 - - svn path=/trunk/; revision=8095 - - configure.ac | 11 +++++++++-- - 1 file changed, 9 insertions(+), 2 deletions(-) - -commit 7720c783b8a8f8911a79b965d9176aba839829e6 -Author: Christian Persch -Date: Mon Mar 10 21:57:45 2008 +0000 - - Allow building with xulrunner 1.9. Patch by Alexander Sack; part of bug #503657 - - svn path=/trunk/; revision=8094 - - configure.ac | 40 +++++- - doc/reference/Makefile.am | 4 +- - embed/Makefile.am | 1 + - embed/ephy-password-manager.c | 4 + - embed/ephy-password-manager.h | 5 + - embed/mozilla/AutoModalDialog.cpp | 1 - - embed/mozilla/EphyBrowser.cpp | 1 + - embed/mozilla/GtkNSSDialogs.cpp | 4 +- - embed/mozilla/Makefile.am | 8 ++ - embed/mozilla/mozilla-embed-single.cpp | 250 ++++++++++++++++++++++++++++++--- - m4/gecko.m4 | 141 +++++++++++++++---- - plugins/desktop-file/Makefile.am | 7 +- - src/Makefile.am | 15 ++ - 13 files changed, 424 insertions(+), 57 deletions(-) - -commit 888c589bd3ee139571fccf55d2b4bdfee27c2c7f -Author: Xan Lopez -Date: Mon Mar 10 19:57:45 2008 +0000 - - Add visited pages to history. - - svn path=/trunk/; revision=8093 - - embed/webkit/webkit-embed.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 47ed2de5329c3338c086cf396d8b296a0b58cf37 -Author: Rahul Bhalerao -Date: Mon Mar 10 11:27:38 2008 +0000 - - Updated Marathi Translations - - svn path=/trunk/; revision=8091 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 37668f854fd54fa8f6c7f98e62850a426b817ff6 -Author: Guntupalli Karunakar -Date: Mon Mar 10 04:32:50 2008 +0000 - - Merge with latest POT - - svn path=/trunk/; revision=8083 - - po/hi.po | 2257 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 1306 insertions(+), 951 deletions(-) - -commit 9765ceb77a2e24e9b9bcffe1e422d491e3b19270 -Author: Vasiliy Faronov -Date: Sun Mar 9 22:20:05 2008 +0000 - - Updated Russian translation. - - 2008-03-09 Vasiliy Faronov - - * ru.po: Updated Russian translation. - - - svn path=/trunk/; revision=8080 - - po/ChangeLog | 4 + - po/ru.po | 1777 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1010 insertions(+), 771 deletions(-) - -commit 8685a754735df57d2b0cb6858827e2ac7fe2eaaf -Author: Sigurd Gartmann -Date: Sun Mar 9 20:54:31 2008 +0000 - - Fix typo. - - 2008-03-09 Sigurd Gartmann - - * nb.po: Fix typo. - - - svn path=/trunk/; revision=8077 - - po/ChangeLog | 4 + - po/nb.po | 1081 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 549 insertions(+), 536 deletions(-) - -commit 0280a43394e584c8d09d67318dc6e89d75437a8b -Author: Artur Flinta -Date: Sun Mar 9 11:12:53 2008 +0000 - - Updated Polish translation by GNOME PL Team. - - 2008-03-09 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - - svn path=/trunk/; revision=8071 - - po/ChangeLog | 4 + - po/pl.po | 1017 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 515 insertions(+), 506 deletions(-) - -commit 29d53b4bb1125726ba517afff7363efe3dbcb4a5 -Author: Gabor Kelemen -Date: Sun Mar 9 04:28:29 2008 +0000 - - Translation updated - - 2008-03-09 Gabor Kelemen - - * hu.po: Translation updated - - - svn path=/trunk/; revision=8067 - - po/ChangeLog | 4 ++++ - po/hu.po | 8 ++++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit fc30e96abb03411ec0607b64fb12d346d6c372f1 -Author: Kenneth Nielsen -Date: Sat Mar 8 18:50:04 2008 +0000 - - Updated Danish translation - - svn path=/trunk/; revision=8063 - - po/ChangeLog | 4 +++ - po/da.po | 82 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 47 insertions(+), 39 deletions(-) - -commit c151414a2e52af580fdd59a0b263896f923eb74f -Author: Chao-Hsiung Liao -Date: Sat Mar 8 15:09:48 2008 +0000 - - Updated Traditional Chinese translation(Hong Kong). Updated Traditional - - 2008-03-08 Chao-Hsiung Liao - - * zh_HK.po: Updated Traditional Chinese translation(Hong Kong). - * zh_TW.po: Updated Traditional Chinese translation(Taiwan). - - - - svn path=/trunk/; revision=8060 - - po/ChangeLog | 5 + - po/zh_HK.po | 1226 ++++++++++++++++++++++++---------------------------------- - po/zh_TW.po | 1226 ++++++++++++++++++++++++---------------------------------- - 3 files changed, 1031 insertions(+), 1426 deletions(-) - -commit bd3889007ac14648730d4ff1f439501ef5ea6fe4 -Author: Theppitak Karoonboonyanan -Date: Sat Mar 8 11:39:11 2008 +0000 - - Merged Thai translation from gnome-2-22 branch. - - 2008-03-08 Theppitak Karoonboonyanan - - * th.po: Merged Thai translation from gnome-2-22 branch. - - - svn path=/trunk/; revision=8059 - - po/ChangeLog | 4 + - po/th.po | 1017 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 515 insertions(+), 506 deletions(-) - -commit 2687b596d9b788f6e7630f0625cd6dd8945efde0 -Author: Guntupalli Karunakar -Date: Sat Mar 8 10:17:51 2008 +0000 - - Fix fuzzy and plurals - - svn path=/trunk/; revision=8058 - - po/ChangeLog | 4 +++ - po/hi.po | 79 +++++++++++++++++++++++++++--------------------------------- - 2 files changed, 39 insertions(+), 44 deletions(-) - -commit 7b76ae20f69a6c6bad80afd62bdf804b94c2fae0 -Author: Praveen Arimbrathodiyil -Date: Fri Mar 7 19:06:25 2008 +0000 - - restored 100% - - svn path=/trunk/; revision=8055 - - po/ml.po | 20 ++++++++++++-------- - 1 file changed, 12 insertions(+), 8 deletions(-) - -commit 7cd6d10e29c0d54783c33992f596faaac7f1ebd5 -Author: Xan Lopez -Date: Fri Mar 7 18:09:32 2008 +0000 - - Use g_slice for EphyPasswordInfo, EphyPermissionInfo, PixbufCacheEntry. (#521017) - - svn path=/trunk/; revision=8054 - - embed/ephy-favicon-cache.c | 4 ++-- - embed/ephy-password-manager.c | 6 +++--- - embed/ephy-permission-manager.c | 6 +++--- - 3 files changed, 8 insertions(+), 8 deletions(-) - -commit 93b01f4ed0944cf698d59be3b8455f6034c39052 -Author: Daniel Nylander -Date: Fri Mar 7 17:20:40 2008 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=8053 - - po/ChangeLog | 4 ++++ - po/sv.po | 20 ++++++++++++-------- - 2 files changed, 16 insertions(+), 8 deletions(-) - -commit e107e109221a9e4dfd1761a88fddf67d8d30c10f -Author: Hendrik Richter -Date: Fri Mar 7 16:44:14 2008 +0000 - - Updated German translation. - - svn path=/trunk/; revision=8051 - - po/de.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e4319f83fe7d4633d86ef83051414c1f44fd9d6c -Author: Maxim Dziumanenko -Date: Fri Mar 7 11:58:37 2008 +0000 - - Update Ukrainian translation. - - 2008-03-07 Maxim Dziumanenko - - * Update Ukrainian translation. - - svn path=/trunk/; revision=8047 - - po/ChangeLog | 4 + - po/uk.po | 1040 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 528 insertions(+), 516 deletions(-) - -commit 9102c824d598deebb2c1cb84e36687c1a96ec870 -Author: Hendrik Richter -Date: Thu Mar 6 16:57:15 2008 +0000 - - Updated German translation. - - 2008-03-06 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=8045 - - po/ChangeLog | 4 + - po/de.po | 759 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 386 insertions(+), 377 deletions(-) - -commit 6dc3f43fc4e6365146859ce04f470dcab8d49e37 -Author: Xan Lopez -Date: Wed Mar 5 19:04:02 2008 +0000 - - Use g_slice for EphyCookie allocation. (#520560) - - svn path=/trunk/; revision=8044 - - embed/ephy-cookie-manager.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit b4f8f721cb430ea8e9bc553495457f810ac79818 -Author: Christian Persch -Date: Wed Mar 5 19:00:37 2008 +0000 - - Post branching version update - - svn path=/trunk/; revision=8042 - - configure.ac | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 22217b9f48b04cb4b9eebb108109e0b758a905e9 -Author: Rahul Bhalerao -Date: Wed Mar 5 13:41:46 2008 +0000 - - Updated Marathi Translations - - svn path=/trunk/; revision=8039 - - po/mr.po | 1256 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 669 insertions(+), 587 deletions(-) - -commit 586f3ab3c18df0462c4867f8aac66f74e093100e -Author: Rahul Bhalerao -Date: Wed Mar 5 13:40:53 2008 +0000 - - Updated Marathi Translations - - svn path=/trunk/; revision=8038 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 2adec2b34baba87cdb06d8c8ca3a94666c02eb82 -Author: Priit Laes -Date: Wed Mar 5 11:11:26 2008 +0000 - - Translation updated by Ivar Smolin - - 2008-03-05 Priit Laes - - * et.po: Translation updated by Ivar Smolin - - svn path=/trunk/; revision=8037 - - po/ChangeLog | 4 + - po/et.po | 1019 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 517 insertions(+), 506 deletions(-) - -commit 6fee84237dd8a470dd5b139c32b16cd9863e6e5a -Author: Luca Ferretti -Date: Wed Mar 5 09:01:18 2008 +0000 - - Fixed a typo in my latest commit - - - svn path=/trunk/; revision=8036 - - po/it.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 113594508096ecd933d8a13372a707cbe502c147 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Mar 5 08:59:46 2008 +0000 - - Updated Translation - - svn path=/trunk/; revision=8035 - - po/ChangeLog | 4 + - po/gu.po | 1637 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 914 insertions(+), 727 deletions(-) - -commit 239f1f2adac5098a22e7addd90e5ec1564596ad3 -Author: Luca Ferretti -Date: Wed Mar 5 08:55:41 2008 +0000 - - Updated Italian translation. - - 2008-03-05 Luca Ferretti - - * it.po: Updated Italian translation. - - svn path=/trunk/; revision=8034 - - po/ChangeLog | 4 ++++ - po/it.po | 8 +++++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 376ac43d46db28ab51a17ac56e46068be6265913 -Author: Leonardo Ferreira Fontenelle -Date: Wed Mar 5 03:24:11 2008 +0000 - - Updated Brazilian Portuguese translation. - - svn path=/trunk/; revision=8033 - - po/ChangeLog | 4 + - po/pt_BR.po | 1020 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 518 insertions(+), 506 deletions(-) - -commit 4bfebd89bc4d5df934d6366a8927794adc750ca5 -Author: Reinout van Schouwen -Date: Wed Mar 5 00:59:23 2008 +0000 - - - nl.po: Updated Dutch translation of documentation - - 2008-03-04 Reinout van Schouwen - - - nl.po: Updated Dutch translation of documentation - - - svn path=/trunk/; revision=8032 - - help/nl/nl.po | 2656 +++++++++++++++------------------------------------------ - 1 file changed, 698 insertions(+), 1958 deletions(-) - -commit b313aba4d21126462bf936d00d429e3e7419b750 -Author: Petr Kovář -Date: Tue Mar 4 22:49:15 2008 +0000 - - cs.po: Updated Czech translation by Lucas Lommer. - - svn path=/trunk/; revision=8031 - - po/ChangeLog | 4 +++ - po/cs.po | 80 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 46 insertions(+), 38 deletions(-) - -commit c1f29e3b6ceabc13c8b29dc06b412d61edce7790 -Author: Wouter Bolsterlee -Date: Tue Mar 4 20:21:38 2008 +0000 - - Fix build with latest glib. - - svn path=/trunk/; revision=8030 - - doc/reference/tmpl/EphySingle.sgml | 2 +- - lib/ephy-file-helpers.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit fc08c288043103ec01a409ed20269807290ba0f1 -Author: Inaki Larranaga Murgoitio -Date: Tue Mar 4 17:27:26 2008 +0000 - - Updated Basque translation. - - 2008-03-04 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - - - svn path=/trunk/; revision=8029 - - po/ChangeLog | 4 + - po/eu.po | 1019 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 517 insertions(+), 506 deletions(-) - -commit de72e067edad750b798b93b978cb33dd32846c0b -Author: Ignacio Casal Quinteiro -Date: Tue Mar 4 15:22:58 2008 +0000 - - Updated Galician Translation. - - svn path=/trunk/; revision=8028 - - po/ChangeLog | 4 + - po/gl.po | 713 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 374 insertions(+), 343 deletions(-) - -commit 950c87e52392fee8964a84598cae5e157bca16c8 -Author: Takeshi AIHANA -Date: Tue Mar 4 14:09:32 2008 +0000 - - Updated Japanese translation. - - 2008-03-04 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - - svn path=/trunk/; revision=8027 - - po/ChangeLog | 4 ++++ - po/ja.po | 78 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 45 insertions(+), 37 deletions(-) - -commit fa3e2b13f10efd0d6eb3df65dc430c0368eca72e -Author: Jorge Gonzalez Gonzalez -Date: Tue Mar 4 13:52:11 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8026 - - help/ChangeLog | 5 +++ - help/es/es.po | 39 +++++++++++---------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 5421 -> 4083 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 2826 -> 2214 bytes - help/es/figures/ephy-history-window-screenshot.png | Bin 54277 -> 151659 bytes - help/es/figures/ephy-screenshot.png | Bin 80770 -> 80121 bytes - 6 files changed, 25 insertions(+), 19 deletions(-) - -commit d1f1f61a193abc909813bddb65d6b572dd6e73dd -Author: Wouter Bolsterlee -Date: Tue Mar 4 13:31:05 2008 +0000 - - Dutch translation updated by Wouter Bolsterlee. - - 2008-03-04 Wouter Bolsterlee - - * nl.po: Dutch translation updated by Wouter Bolsterlee. - - svn path=/trunk/; revision=8025 - - po/ChangeLog | 364 +++++++++++++++++---------------- - po/nl.po | 653 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 514 insertions(+), 503 deletions(-) - -commit bc4fef30da595f492f17f19452df20025ed4d411 -Author: Timo Jyrinki -Date: Tue Mar 4 13:09:57 2008 +0000 - - update fi.po translations - - svn path=/trunk/; revision=8024 - - po/fi.po | 647 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 326 insertions(+), 321 deletions(-) - -commit ac5e4e84ad6b0d13b9fc68f3cb2db7af76ece883 -Author: Gabor Kelemen -Date: Tue Mar 4 11:29:38 2008 +0000 - - Translation updated - - 2008-03-04 Gabor Kelemen - - * hu.po: Translation updated - - - svn path=/trunk/; revision=8023 - - po/ChangeLog | 4 + - po/hu.po | 1097 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 567 insertions(+), 534 deletions(-) - -commit ff08bf6203e07cee869df67b0e350b62969c066d -Author: Claude Paroz -Date: Tue Mar 4 09:22:04 2008 +0000 - - Updated French translation. - - 2008-03-04 Claude Paroz - - * fr.po: Updated French translation. - - svn path=/trunk/; revision=8022 - - po/ChangeLog | 4 + - po/fr.po | 349 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 181 insertions(+), 172 deletions(-) - -commit 9f4def0e6b2e663dc5f7063295c4888f6f9e6dc6 -Author: Yang Zhang -Date: Tue Mar 4 07:58:45 2008 +0000 - - Updated zh_CN translation - - svn path=/trunk/; revision=8021 - - po/zh_CN.po | 1034 ++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 520 insertions(+), 514 deletions(-) - -commit ef80e9f3ceb16147b9c20a19beccd2f2afaac24e -Author: Duarte Loreto -Date: Tue Mar 4 00:01:18 2008 +0000 - - Updated Portuguese translation. - - 2008-03-04 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - svn path=/trunk/; revision=8020 - - po/ChangeLog | 4 + - po/pt.po | 1017 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 515 insertions(+), 506 deletions(-) - -commit 55bdff78cad36831513e6afbfdb3acb6cd69cf06 -Author: Gil Forcada Codinachs -Date: Mon Mar 3 23:34:35 2008 +0000 - - Updated Catalan translation - - svn path=/trunk/; revision=8019 - - po/ChangeLog | 4 + - po/ca.po | 1017 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 515 insertions(+), 506 deletions(-) - -commit ae56e91da2c0381a149ee510e4d0a6b5fac7aaf8 -Author: Nikos Charonitakis -Date: Mon Mar 3 21:55:48 2008 +0000 - - Updated Greek translation - - svn path=/trunk/; revision=8018 - - po/ChangeLog | 4 + - po/el.po | 1708 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 943 insertions(+), 769 deletions(-) - -commit b19b76b282e33f477a563199d3e8ff124c4f9402 -Author: Luca Ferretti -Date: Mon Mar 3 21:38:14 2008 +0000 - - Updated Italian translation. - - 2008-03-03 Luca Ferretti - - * it.po: Updated Italian translation. - - svn path=/trunk/; revision=8017 - - po/ChangeLog | 4 ++++ - po/it.po | 34 +++++++++++++++++++++------------- - 2 files changed, 25 insertions(+), 13 deletions(-) - -commit 4af48e8232d739851f95ee579935116efbb21ab7 -Author: Ihar Hrachyshka -Date: Mon Mar 3 21:35:22 2008 +0000 - - Updated Belarusian Latin translation. - - svn path=/trunk/; revision=8016 - - po/ChangeLog | 4 + - po/be@latin.po | 399 +++++++++++++++++++++++++++------------------------------ - 2 files changed, 192 insertions(+), 211 deletions(-) - -commit c883ac8804345e129da8032eb1d006e666614ec9 -Author: Philip Withnall -Date: Mon Mar 3 21:16:30 2008 +0000 - - Updated British English translation. - - 2008-03-03 Philip Withnall - - * en_GB.po: Updated British English translation. - - - svn path=/trunk/; revision=8015 - - po/ChangeLog | 4 ++++ - po/en_GB.po | 18 +++++++++++------- - 2 files changed, 15 insertions(+), 7 deletions(-) - -commit 04ea743081affa4b5025f357d5c57845f46cf776 -Author: Jorge Gonzalez Gonzalez -Date: Mon Mar 3 21:01:42 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8014 - - po/ChangeLog | 4 + - po/es.po | 1033 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 525 insertions(+), 512 deletions(-) - -commit c7f761aa142be04709a234284619170bd3064adb -Author: Luca Ferretti -Date: Mon Mar 3 20:43:13 2008 +0000 - - Mark "Clear All" string in Personal Data dialog for - translation (bug 519908) - - - svn path=/trunk/; revision=8013 - - data/glade/epiphany.glade | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c0dd2754ce72dd9c6267916c5118731180cbcf66 -Author: Philip Withnall -Date: Mon Mar 3 07:06:07 2008 +0000 - - Updated British English translation. - - 2008-03-03 Philip Withnall - - * en_GB.po: Updated British English translation. - - - svn path=/trunk/; revision=8012 - - po/ChangeLog | 4 + - po/en_GB.po | 2499 ++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 1575 insertions(+), 928 deletions(-) - -commit 836c0bc97ab989c702a5dde92fdac3b42c7dc314 -Author: Luca Ferretti -Date: Sun Mar 2 14:27:07 2008 +0000 - - Updated Italian translation. - - 2008-03-02 Luca Ferretti - - * it.po: Updated Italian translation. - - svn path=/trunk/; revision=8011 - - po/ChangeLog | 4 + - po/it.po | 1489 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 789 insertions(+), 704 deletions(-) - -commit 007e5bf924b8d61d357ac62862ebad9bcd34a222 -Author: Åsmund Skjæveland -Date: Sun Mar 2 01:01:24 2008 +0000 - - Updated Norwegian Nynorsk translation. - - 2008-03-02 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - svn path=/trunk/; revision=8010 - - po/ChangeLog | 4 + - po/nn.po | 2235 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1231 insertions(+), 1008 deletions(-) - -commit 8f97fc71819e1ec11b15dd11123dfe8d6f5983fb -Author: Daniel Nylander -Date: Sat Mar 1 18:36:28 2008 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=8009 - - po/sv.po | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit 053ff19d8f8347f844b1ca776375f94769a70228 -Author: Jorge Gonzalez Gonzalez -Date: Sat Mar 1 17:11:30 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=8008 - - po/ChangeLog | 4 ++++ - po/es.po | 18 +++++++++--------- - 2 files changed, 13 insertions(+), 9 deletions(-) - -commit 7480ba618d90059edf80fa298166c56df4d70697 -Author: Daniel Nylander -Date: Sat Mar 1 15:59:36 2008 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=8007 - - po/ChangeLog | 4 + - po/sv.po | 1061 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 535 insertions(+), 530 deletions(-) - -commit 17e4edb332497973d22912d5b30e6ace770f1817 -Author: Praveen Arimbrathodiyil -Date: Sat Mar 1 15:52:49 2008 +0000 - - updated to latest pot file, reviewed and completed translation - - svn path=/trunk/; revision=8006 - - po/ml.po | 2766 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1412 insertions(+), 1354 deletions(-) - -commit 83595e1254f3af0f123c7e9fa5124404b5ebfaa1 -Author: Xan Lopez -Date: Fri Feb 29 17:33:47 2008 +0000 - - Use g_object_connect for multiple signal connections to the same object. - - svn path=/trunk/; revision=8005 - - embed/webkit/webkit-embed.c | 20 ++++++++------------ - 1 file changed, 8 insertions(+), 12 deletions(-) - -commit 71545e0b7bcceb6eee0b2333e531be7676ff0f8d -Author: Xan Lopez -Date: Fri Feb 29 17:26:05 2008 +0000 - - Do not set to NULL private members in init, memory is already zeroed. - - svn path=/trunk/; revision=8004 - - embed/webkit/webkit-embed.c | 1 - - 1 file changed, 1 deletion(-) - -commit d73f76cc0e6ba121be020a6173594b0b737b3890 -Author: Timo Jyrinki -Date: Fri Feb 29 15:07:39 2008 +0000 - - protokolla -> yhteyskäytäntö and small fixes - - svn path=/trunk/; revision=8003 - - po/fi.po | 38 ++++++++++++++++++++------------------ - 1 file changed, 20 insertions(+), 18 deletions(-) - -commit 95918bcefecf6f1454273751c6a908563356085f -Author: Jens Granseuer -Date: Thu Feb 28 22:13:49 2008 +0000 - - Strip anchors from URIs before trying to turn them into a GFile, and properly - handle get_file_info failing. Fixes a crash when using URLs like - file:///path#anchor. Bug #519370. - - svn path=/trunk/; revision=8002 - - embed/ephy-base-embed.c | 25 +++++++++++++++++++++---- - 1 file changed, 21 insertions(+), 4 deletions(-) - -commit 2a59317dbd2fe3be837263157e84e3a0e01707d5 -Author: Christian Persch -Date: Thu Feb 28 14:29:22 2008 +0000 - - Initialise variable. Bug #519173. - - svn path=/trunk/; revision=8001 - - embed/mozilla/AutoModalDialog.cpp | 2 ++ - 1 file changed, 2 insertions(+) - -commit 9c05690457018bc53b6a320d3dc7e12ec9d90152 -Author: Christian Persch -Date: Thu Feb 28 14:18:16 2008 +0000 - - updates - - svn path=/trunk/; revision=8000 - - doc/reference/tmpl/ephy-embed.sgml | 1 - - 1 file changed, 1 deletion(-) - -commit 04dd082a20d83a015cf999ad4cb27aca752c5e80 -Author: Christian Persch -Date: Thu Feb 28 14:17:11 2008 +0000 - - Fix AutoModalDialog::ShouldShow(). Bug #519173. - - svn path=/trunk/; revision=7999 - - embed/mozilla/AutoModalDialog.h | 6 +++--- - embed/mozilla/GtkNSSDialogs.h | 4 +--- - 2 files changed, 4 insertions(+), 6 deletions(-) - -commit ed8b102cd57527cd90f4f9d0c5bf5425a7c5938c -Author: Amitakhya Phukan -Date: Thu Feb 28 11:35:14 2008 +0000 - - updated assamese translations - - svn path=/trunk/; revision=7998 - - po/ChangeLog | 4 ++ - po/as.po | 200 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 104 insertions(+), 100 deletions(-) - -commit eacce4e539df53feec35e4e850e21f1004417df8 -Author: Gabor Kelemen -Date: Thu Feb 28 01:44:11 2008 +0000 - - Translation updated - - 2008-02-28 Gabor Kelemen - - * hu.po: Translation updated - - - svn path=/trunk/; revision=7997 - - po/hu.po | 299 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 140 insertions(+), 159 deletions(-) - -commit 1843cc9ea58dc7e8379f756a7b7fb5a6d3cdb218 -Author: Gabor Kelemen -Date: Thu Feb 28 01:43:08 2008 +0000 - - Translation updated - - 2008-02-28 Gabor Kelemen - - * hu.po: Translation updated - - - svn path=/trunk/; revision=7996 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit d0a7abadec446165edb7f45f647b48576eeb2c9b -Author: Xan Lopez -Date: Wed Feb 27 21:55:16 2008 +0000 - - Support more preferences in the WebKit backend and add code to easily add - support for more (in theory..). - - svn path=/trunk/; revision=7995 - - embed/webkit/webkit-embed-prefs.c | 109 +++++++++++++++++++++++++++++++------- - 1 file changed, 91 insertions(+), 18 deletions(-) - -commit f58dd0321e97f331e5e5660ccd6a4014c72706b8 -Author: Carlos Garcia Campos -Date: Wed Feb 27 19:13:46 2008 +0000 - - Fix a crash when downloading a file. (Bug #519121) - - svn path=/trunk/; revision=7994 - - embed/downloader-view.c | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 0739cde20855ff52142eadedad857553e67ab51f -Author: Djihed Afifi -Date: Wed Feb 27 14:38:09 2008 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=7993 - - po/ChangeLog | 4 ++++ - po/ar.po | 12 ++++++------ - 2 files changed, 10 insertions(+), 6 deletions(-) - -commit 10624ce98b4f8daa35a2754c16147e82d1e7a29a -Author: Christian Persch -Date: Tue Feb 26 21:25:13 2008 +0000 - - Fix build - - svn path=/trunk/; revision=7992 - - Makefile.am | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit e25503a9bc2098c686e5843927c98709ca673779 -Author: Jens Granseuer -Date: Tue Feb 26 21:12:46 2008 +0000 - - Declare variable at the beginning of the function to fix build with - compilers that only understand C89. Bug #518890. - - svn path=/trunk/; revision=7991 - - lib/egg/egg-toolbar-editor.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit ebe63f46bd51ea845bae5bcbc6bb7fd3de04f65d -Author: Christian Persch -Date: Tue Feb 26 20:13:24 2008 +0000 - - Remove cruft - - svn path=/trunk/; revision=7990 - - configure.ac | 93 ++--- - data/glade/Makefile.am | 7 +- - data/glade/certs-manager.glade | 530 ---------------------------- - embed/Makefile.am | 10 - - embed/ephy-certificate-manager.c | 72 ---- - embed/ephy-certificate-manager.h | 68 ---- - embed/ephy-x509-cert.c | 53 --- - embed/ephy-x509-cert.h | 61 ---- - embed/mozilla/Makefile.am | 6 - - embed/mozilla/mozilla-embed-single.cpp | 158 --------- - embed/mozilla/mozilla-x509-cert.cpp | 219 ------------ - embed/mozilla/mozilla-x509-cert.h | 63 ---- - embed/xulrunner/embed/Makefile.am | 6 - - embed/xulrunner/embed/mozilla-x509-cert.cpp | 261 -------------- - embed/xulrunner/embed/mozilla-x509-cert.h | 63 ---- - po/POTFILES.skip | 2 - - src/Makefile.am | 8 - - src/ephy-cert-manager-dialog.c | 488 ------------------------- - src/ephy-cert-manager-dialog.h | 59 ---- - src/ephy-window.c | 2 +- - src/window-commands.c | 13 +- - 21 files changed, 25 insertions(+), 2217 deletions(-) - -commit 752ecd8cb341d8be15a6d5b638a94a1f5c4d13a1 -Author: Žygimantas Beručka -Date: Tue Feb 26 16:20:26 2008 +0000 - - Updated Lithuanian translation. - - svn path=/trunk/; revision=7989 - - po/ChangeLog | 4 + - po/lt.po | 1652 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 925 insertions(+), 731 deletions(-) - -commit 74f53e3d6dcb35891046435b03f2df83e552d407 -Author: Christian Persch -Date: Mon Feb 25 21:16:09 2008 +0000 - - The cert manager is useless and doesn't build; remove --enable-certificate-manager from distcheck flags. - - svn path=/trunk/; revision=7987 - - Makefile.am | 1 - - 1 file changed, 1 deletion(-) - -commit 3e86e9015735ecf1e2698c29fe4c8fa618424138 -Author: Christian Persch -Date: Mon Feb 25 21:06:48 2008 +0000 - - Add new types from xr 1.9. - - svn path=/trunk/; revision=7986 - - embed/ephy-adblock.h | 10 +++++++++- - 1 file changed, 9 insertions(+), 1 deletion(-) - -commit 1d5dcb8f9617d724db9345a8c14f2a5d6909251e -Author: Christian Persch -Date: Mon Feb 25 21:00:48 2008 +0000 - - Connect the signal before unreffing the action, just to be absolutely safe. - - svn path=/trunk/; revision=7985 - - src/bookmarks/ephy-bookmark-action-group.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit d8cd94758db14e98051db785ab90094e64ece264 -Author: Christian Persch -Date: Mon Feb 25 20:42:36 2008 +0000 - - Update for added nsIContentPolicy constants in 1.9. - - svn path=/trunk/; revision=7984 - - embed/mozilla/EphyContentPolicy.cpp | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit fdb56c8ae221e85e843efcdc9ae0b0bb83c0a507 -Author: Christian Persch -Date: Mon Feb 25 20:41:32 2008 +0000 - - Remove duplicate bookmarks property update, which is superflous since it was already updated when the node was set into the action on construction. Might fix bug #516008, where for unknown reasons the action seems to be finalised when we get here. - - svn path=/trunk/; revision=7983 - - src/bookmarks/ephy-bookmark-action-group.c | 2 -- - 1 file changed, 2 deletions(-) - -commit f0c9a1218925074be201882b7eb41c3c5902bfda -Author: Christian Persch -Date: Mon Feb 25 20:38:15 2008 +0000 - - Accept empty password to unlock a token; and allow empty new password if the requested password quality allows it. Bug #515096, patch by Thomas Wendt. - - svn path=/trunk/; revision=7982 - - lib/ephy-password-dialog.c | 18 +++++------------- - 1 file changed, 5 insertions(+), 13 deletions(-) - -commit d21357e5d65e5e06710cdece80e66970f68cbd19 -Author: Christian Persch -Date: Mon Feb 25 19:37:26 2008 +0000 - - Adapt to gio API change - - svn path=/trunk/; revision=7981 - - configure.ac | 2 +- - embed/ephy-history.c | 2 +- - src/bookmarks/ephy-bookmark-action.c | 4 ++-- - src/bookmarks/ephy-bookmarks-export.c | 4 ++-- - src/popup-commands.c | 2 +- - 5 files changed, 7 insertions(+), 7 deletions(-) - -commit 1640ccb99f6b590bd639d907f656c9e6d41c36c7 -Author: Christian Persch -Date: Mon Feb 25 19:36:48 2008 +0000 - - Version bump - - svn path=/trunk/; revision=7980 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit cd0291f55761eb5105cfca05f4909e56eab57077 -Author: Xan Lopez -Date: Sun Feb 24 20:06:41 2008 +0000 - - Remove unused struct member. - - svn path=/trunk/; revision=7979 - - embed/mozilla/mozilla-embed-single.cpp | 2 -- - 1 file changed, 2 deletions(-) - -commit e217fd856a5a14387bc3e007cd349afab07af2c0 -Author: Xan Lopez -Date: Sun Feb 24 09:54:42 2008 +0000 - - Make epiphany/webkit start in online mode (though there is no difference - between online and offline mode at this point). - - svn path=/trunk/; revision=7978 - - embed/webkit/webkit-embed-single.c | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit fc43621cb4331515c1cd2559e39557b40fec131a -Author: Takeshi AIHANA -Date: Sun Feb 24 00:44:15 2008 +0000 - - Updated Japanese translation. - - 2008-02-24 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - - svn path=/trunk/; revision=7977 - - po/ChangeLog | 4 + - po/ja.po | 1680 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 939 insertions(+), 745 deletions(-) - -commit 657e25ef3b3a930caa92199827bac8bf38ab8ecc -Author: Yair Hershkovitz -Date: Sat Feb 23 11:48:15 2008 +0000 - - updated hebrew translation - - svn path=/trunk/; revision=7976 - - po/he.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 1c9a1b34187af2b16c78551b35d60869278180ce -Author: Yair Hershkovitz -Date: Sat Feb 23 11:04:00 2008 +0000 - - updated hebrew translation - - svn path=/trunk/; revision=7975 - - po/ChangeLog | 4 + - po/he.po | 532 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 281 insertions(+), 255 deletions(-) - -commit 81a9cefb24f9ceaeac8e26445e403883e264cbbd -Author: Yang Zhang -Date: Sat Feb 23 02:05:03 2008 +0000 - - Updated zh_CN translation - - svn path=/trunk/; revision=7974 - - po/zh_CN.po | 69 ++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 38 insertions(+), 31 deletions(-) - -commit 9abf5bcdd250540c38b36bcce6af4ee7aefe4442 -Author: Petr Kovář -Date: Fri Feb 22 23:07:29 2008 +0000 - - cs.po: Updated Czech translation by Lucas Lommer. - - svn path=/trunk/; revision=7973 - - po/ChangeLog | 4 + - po/cs.po | 2042 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1136 insertions(+), 910 deletions(-) - -commit ac208579ea1df0de409d70cdcb15061e6d753941 -Author: Xan Lopez -Date: Wed Feb 20 20:19:50 2008 +0000 - - Make EphyUtils::FindEmbed return the parent of the mozembed, as it is now contained - inside EphyEmbed instead of being its parent class. (#517149) - - svn path=/trunk/; revision=7972 - - embed/mozilla/EphyUtils.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5481eff1428f9d7345b0e2b71d47d9f7aaa1ada3 -Author: Christian Persch -Date: Wed Feb 20 12:07:10 2008 +0000 - - Remove obsolete check. Bug #333445 - - svn path=/trunk/; revision=7971 - - configure.ac | 34 ---------------------------------- - 1 file changed, 34 deletions(-) - -commit d87b36fae3835c1071abace8cb490c81f16d9e7d -Author: Yannig MARCHEGAY -Date: Tue Feb 19 22:36:59 2008 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7970 - - po/oc.po | 1023 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 521 insertions(+), 502 deletions(-) - -commit c913633ae91bcf40a94e9888119ae98c4bfc02d0 -Author: Kenneth Nielsen -Date: Tue Feb 19 22:15:52 2008 +0000 - - Updated Danish translation - - svn path=/trunk/; revision=7969 - - po/ChangeLog | 4 + - po/da.po | 1598 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 890 insertions(+), 712 deletions(-) - -commit a9b93d45663ff1d32cc1bdf98fa980d5a903045c -Author: Matej Urbančič -Date: Tue Feb 19 13:53:52 2008 +0000 - - Updated Slovenian translation - - svn path=/trunk/; revision=7968 - - po/sl.po | 1427 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 744 insertions(+), 683 deletions(-) - -commit b3924f2a5509596645492d232c9b3dcf1ad35965 -Author: Christian Persch -Date: Mon Feb 18 13:40:59 2008 +0000 - - Fix prompt service for xr 1.9 wrt. DOM notifications. Bug #504445. - - svn path=/trunk/; revision=7967 - - doc/reference/tmpl/EphySingle.sgml | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 63 +++++---- - embed/mozilla/AutoModalDialog.cpp | 182 +++++++++++++++++++++++++ - embed/mozilla/AutoModalDialog.h | 70 ++++++++++ - embed/mozilla/ContentHandler.cpp | 20 ++- - embed/mozilla/EphyPromptService.cpp | 14 +- - embed/mozilla/FilePicker.cpp | 17 ++- - embed/mozilla/GeckoCookiePromptService.cpp | 23 ++-- - embed/mozilla/GeckoFormSigningDialog.cpp | 16 +-- - embed/mozilla/GeckoPrintService.cpp | 19 +-- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 22 +-- - embed/mozilla/GtkNSSDialogs.cpp | 155 +++++++++++---------- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 19 +-- - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 28 ++-- - embed/mozilla/Makefile.am | 2 + - 15 files changed, 449 insertions(+), 203 deletions(-) - -commit 72305c8033e66e792bde1060b7d7377935cedfb4 -Author: Christian Persch -Date: Sun Feb 17 23:29:21 2008 +0000 - - Fix the docs build. - - svn path=/trunk/; revision=7965 - - doc/reference/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit f0f2a211a474b2b5fccdaa5a15a5e3fb27866f3a -Author: Xan Lopez -Date: Sun Feb 17 23:23:36 2008 +0000 - - Use G_DEFINE_TYPE* where possible in embed/* (#517090) - - svn path=/trunk/; revision=7964 - - embed/downloader-view.c | 34 ++------------------ - embed/ephy-download.c | 34 ++------------------ - embed/ephy-embed-dialog.c | 34 ++------------------ - embed/ephy-embed-persist.c | 34 ++------------------ - embed/ephy-embed-shell.c | 38 +++------------------- - embed/ephy-encodings.c | 34 ++------------------ - embed/ephy-favicon-cache.c | 36 ++------------------- - embed/ephy-history.c | 36 ++------------------- - embed/mozilla/mozilla-download.cpp | 34 ++------------------ - embed/mozilla/mozilla-embed-event.cpp | 47 +++------------------------ - embed/mozilla/mozilla-embed-find.cpp | 57 +++++++-------------------------- - embed/mozilla/mozilla-embed-persist.cpp | 39 +++------------------- - embed/mozilla/mozilla-x509-cert.cpp | 56 ++++---------------------------- - 13 files changed, 50 insertions(+), 463 deletions(-) - -commit 2f3e9b5994ebec0a15f6c3ba691732b38a4fbe22 -Author: Christian Persch -Date: Sun Feb 17 21:03:03 2008 +0000 - - Comment this out; it's unreliable - - svn path=/trunk/; revision=7963 - - embed/mozilla/EphyUtils.cpp | 4 ++++ - 1 file changed, 4 insertions(+) - -commit a04c292acc1e650f5d9bfef58c43c80235f167cb -Author: Baris Cicek -Date: Sun Feb 17 20:41:05 2008 +0000 - - Updated Turkish Translation - - svn path=/trunk/; revision=7962 - - po/ChangeLog | 4 + - po/tr.po | 2167 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1208 insertions(+), 963 deletions(-) - -commit 90e0214427ec0e371c603aec6c752dca0b877f51 -Author: Xan Lopez -Date: Sun Feb 17 18:35:45 2008 +0000 - - Add our own reference to the webkit history item. - - svn path=/trunk/; revision=7961 - - embed/webkit/webkit-history-item.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9a49d09baacec3da332b6473590f26ab459c9bd8 -Author: Christian Persch -Date: Sun Feb 17 18:23:56 2008 +0000 - - No need to implement nsIBadCertListener2 here - - svn path=/trunk/; revision=7960 - - embed/mozilla/GtkNSSDialogs.cpp | 17 ++--------------- - embed/mozilla/GtkNSSDialogs.h | 8 ++------ - 2 files changed, 4 insertions(+), 21 deletions(-) - -commit 861720c0698e978b8278ab17f003c297f44beff4 -Author: Xan Lopez -Date: Sun Feb 17 18:20:39 2008 +0000 - - Add ephy-embed::new-document-now signal, does the same than old - ge-content-change (used by adblock extension). - - Part of #502283 - - svn path=/trunk/; revision=7959 - - doc/reference/tmpl/ephy-embed.sgml | 5 +++++ - embed/ephy-embed.c | 20 ++++++++++++++++++++ - embed/ephy-embed.h | 3 +++ - embed/mozilla/mozilla-embed.cpp | 1 + - embed/webkit/webkit-embed.c | 4 ++++ - 5 files changed, 33 insertions(+) - -commit 8b6ad442626717a523b284720ba2545cbeb84181 -Author: Xan Lopez -Date: Sun Feb 17 18:08:13 2008 +0000 - - Add EPHY_CHECK_VERSION (#513128) - - svn path=/trunk/; revision=7958 - - configure.ac | 6 ++++++ - src/Makefile.am | 1 + - src/ephy-version.h.in | 35 +++++++++++++++++++++++++++++++++++ - 3 files changed, 42 insertions(+) - -commit 6ae094e511afd9b3fda7041b998299a395cd6f14 -Author: Christian Persch -Date: Sun Feb 17 18:05:51 2008 +0000 - - Add stub for displayProtectedAuth - - svn path=/trunk/; revision=7957 - - embed/mozilla/GtkNSSDialogs.cpp | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 52611b4a94324d30335ee85c337cd8661c7cc4d2 -Author: Christian Persch -Date: Sun Feb 17 17:56:33 2008 +0000 - - Add translator comment. - - svn path=/trunk/; revision=7956 - - embed/mozilla/EphyAboutModule.cpp | 1 + - 1 file changed, 1 insertion(+) - -commit 8a752647dae7ee579cb6a8744f9bbf54073c0065 -Author: Christian Persch -Date: Sun Feb 17 17:56:19 2008 +0000 - - Disable about:config warning page. - - svn path=/trunk/; revision=7955 - - data/default-prefs-common.js | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1878cd788ff21d686cf64d6323d0d5d57ac8bdd8 -Author: Changwoo Ryu -Date: Sun Feb 17 16:31:33 2008 +0000 - - Updated Korean translation - - svn path=/trunk/; revision=7954 - - po/ChangeLog | 4 + - po/ko.po | 913 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 471 insertions(+), 446 deletions(-) - -commit b8985147944c34c7e32aa82d5b7985809208026e -Author: Nguyễn Thái Ngọc Duy -Date: Sun Feb 17 03:36:49 2008 +0000 - - Updated Vietnamese translation - - 2008-02-17 Nguyễn Thái Ngọc Duy - - * vi.po: Updated Vietnamese translation - - - svn path=/trunk/; revision=7953 - - po/ChangeLog | 4 ++++ - po/vi.po | 18 +++++++++--------- - 2 files changed, 13 insertions(+), 9 deletions(-) - -commit a2b3b25a570a38b30af0d5f90cb69ca11cb709a1 -Author: Ihar Hrachyshka -Date: Sat Feb 16 21:58:12 2008 +0000 - - Updated Belarusian Latin translation. - - svn path=/trunk/; revision=7952 - - po/ChangeLog | 4 + - po/be@latin.po | 894 +++++++++++++++++++++++++++++---------------------------- - 2 files changed, 457 insertions(+), 441 deletions(-) - -commit d319184747703c98c026039aa4752bb37812328c -Author: Xan Lopez -Date: Sat Feb 16 11:39:15 2008 +0000 - - Remove unneeded embed list for prefs. - - svn path=/trunk/; revision=7951 - - embed/webkit/webkit-embed-prefs.c | 10 ---------- - embed/webkit/webkit-embed-prefs.h | 1 - - embed/webkit/webkit-embed.c | 11 ----------- - 3 files changed, 22 deletions(-) - -commit 5adf13540f457c0a0a945705399636da72753ba8 -Author: Claude Paroz -Date: Fri Feb 15 15:56:05 2008 +0000 - - Updated French translation by Robert-André Mauchin and Claude Paroz. - - 2008-02-15 Claude Paroz - - * fr.po: Updated French translation by Robert-André Mauchin and Claude - Paroz. - - svn path=/trunk/; revision=7950 - - po/ChangeLog | 5 + - po/fr.po | 1582 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 887 insertions(+), 700 deletions(-) - -commit 8971aef12c734eea2cca0b35d0e86033ef9a4e92 -Author: Runa Bhattacharjee -Date: Fri Feb 15 13:35:25 2008 +0000 - - Added Entry for Kannada Translation addition and addition to LINGUAS - - svn path=/trunk/; revision=7949 - - po/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit aa7ba8371af391461e4e5090f411d67f3b10fda7 -Author: Runa Bhattacharjee -Date: Fri Feb 15 13:34:43 2008 +0000 - - Added Kannada (kn) to the List of Languages - - svn path=/trunk/; revision=7948 - - po/LINGUAS | 1 + - 1 file changed, 1 insertion(+) - -commit cd910ce57a45190ce6f96d3e617da76b7bb5ef9f -Author: Runa Bhattacharjee -Date: Fri Feb 15 13:32:38 2008 +0000 - - Added Kannada Translations by Shankar Prasad - - svn path=/trunk/; revision=7947 - - po/kn.po | 4523 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 4523 insertions(+) - -commit 501aee760283533703d8c8cfa23599915ff0da68 -Author: Cosimo Cecchi -Date: Fri Feb 15 10:34:48 2008 +0000 - - Make Go Up recognize HTML anchors. Bug #335631. - - svn path=/trunk/; revision=7946 - - embed/mozilla/mozilla-embed.cpp | 12 +++++++++++- - 1 file changed, 11 insertions(+), 1 deletion(-) - -commit 7411f596afe064f52e49e778f81d0e88f0b13d3c -Author: Cosimo Cecchi -Date: Fri Feb 15 01:10:36 2008 +0000 - - Add Undo/Redo commands to the location entry, both in the context menu - and linked to the main window commands. Bug #171179. - - svn path=/trunk/; revision=7945 - - lib/widgets/ephy-location-entry.c | 104 +++++++++++++++++++++++++++++++++----- - lib/widgets/ephy-location-entry.h | 6 +++ - src/ephy-window.c | 27 ++++++++-- - src/window-commands.c | 40 +++++++++++---- - 4 files changed, 151 insertions(+), 26 deletions(-) - -commit 3bb5f859cf406cec4e562c17afe276db2ef92b4b -Author: Xan Lopez -Date: Thu Feb 14 20:14:02 2008 +0000 - - GConf option to disable messagebox about unsubmitted form data. (#516170) - - Left undocumented on schema because we are in string freeze, will document - for 2.24. - - Patch by Jake Nelson - - svn path=/trunk/; revision=7944 - - data/epiphany.schemas.in | 11 +++++++++++ - lib/ephy-prefs.h | 1 + - src/ephy-window.c | 17 +++++++++++------ - 3 files changed, 23 insertions(+), 6 deletions(-) - -commit fb54867e1f8fc420905e0bbd58e8626c7bf7ce5d -Author: Xan Lopez -Date: Thu Feb 14 19:24:05 2008 +0000 - - Do not apply prefs to a view more than once. - - svn path=/trunk/; revision=7943 - - embed/webkit/webkit-embed-prefs.c | 11 ----------- - 1 file changed, 11 deletions(-) - -commit dcd3ffd455ff7b0e4e6ebed4be4d53552c7596a4 -Author: Xan Lopez -Date: Thu Feb 14 19:13:40 2008 +0000 - - Plug leaks in webkit-embed-prefs.c - - svn path=/trunk/; revision=7942 - - embed/webkit/webkit-embed-prefs.c | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 8e74c8efab1f8e0a1bc2e6e50943b8729260f11a -Author: Xan Lopez -Date: Thu Feb 14 17:15:40 2008 +0000 - - Remove internal library dependencies from pc file. - - svn path=/trunk/; revision=7941 - - data/epiphany.pc.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 34ac56cc9af0eb9464f9d207c6a726d5481ec495 -Author: Xan Lopez -Date: Thu Feb 14 16:48:13 2008 +0000 - - Initial implementation of WebKit preferences. - - svn path=/trunk/; revision=7940 - - embed/webkit/Makefile.am | 2 + - embed/webkit/webkit-embed-prefs.c | 103 +++++++++++++++++++++++++++++++++++++ - embed/webkit/webkit-embed-prefs.h | 34 ++++++++++++ - embed/webkit/webkit-embed-single.c | 5 ++ - embed/webkit/webkit-embed.c | 14 +++++ - 5 files changed, 158 insertions(+) - -commit 16cc4b4c0607cceb98fe898b6393441769510402 -Author: Ignacio Casal Quinteiro -Date: Thu Feb 14 13:18:28 2008 +0000 - - Updated Galician Translation. - - svn path=/trunk/; revision=7939 - - po/ChangeLog | 4 + - po/gl.po | 445 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 232 insertions(+), 217 deletions(-) - -commit cdd71c367e5f2c9ba3f5f6036058ab1b7008915f -Author: Xan Lopez -Date: Thu Feb 14 11:58:56 2008 +0000 - - Update dependencies in epiphany.pc.in, remove bonobo leftovers. - - svn path=/trunk/; revision=7938 - - data/epiphany.pc.in | 2 +- - src/ephy-automation.c | 224 -------------------------------------------------- - 2 files changed, 1 insertion(+), 225 deletions(-) - -commit 9916ce10a9520062709046b28d0f49bd685792ec -Author: Xan Lopez -Date: Thu Feb 14 11:58:47 2008 +0000 - - Small cleanups in webki-embed-single.c - - svn path=/trunk/; revision=7937 - - embed/webkit/webkit-embed-single.c | 25 +++++++++++++------------ - 1 file changed, 13 insertions(+), 12 deletions(-) - -commit 07df8f870db003e80ec01d82f157bed56471d9ca -Author: Pawan Chitrakar -Date: Thu Feb 14 07:59:29 2008 +0000 - - Updated Nepali Translation - - svn path=/trunk/; revision=7936 - - po/ChangeLog | 4 + - po/ne.po | 2503 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1395 insertions(+), 1112 deletions(-) - -commit 4d2a9a16117598734998306f0535dbac1af4cafa -Author: Ilkka Tuohela -Date: Wed Feb 13 05:45:23 2008 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=7935 - - po/ChangeLog | 4 + - po/fi.po | 1532 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 858 insertions(+), 678 deletions(-) - -commit 16ee92ceeeb37336e87573db40fa9c3893fd38d7 -Author: Reinout van Schouwen -Date: Wed Feb 13 00:48:38 2008 +0000 - - Updated Dutch translation - - 2008-02-13 Reinout van Schouwen - * nl.po: Updated Dutch translation - - svn path=/trunk/; revision=7934 - - po/ChangeLog | 4 + - po/nl.po | 652 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 337 insertions(+), 319 deletions(-) - -commit 10239b43bd9a54bba93f5e3e5ed17a8c34806a03 -Author: Reinout van Schouwen -Date: Wed Feb 13 00:10:29 2008 +0000 - - 2008-02-13 Reinout van Schouwen - * Add KiBi and cosimoc to about.ini - - svn path=/trunk/; revision=7933 - - data/about.ini | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit df50ed8d9cb314b1f9cefbfeee0c6717430f579c -Author: Xan Lopez -Date: Tue Feb 12 23:07:11 2008 +0000 - - Use G_DEFINE_TYPE* macros in src/bookmarks/ when possible. (#516138) - - svn path=/trunk/; revision=7932 - - src/bookmarks/ephy-bookmark-action.c | 40 ++++--------------------- - src/bookmarks/ephy-bookmark-factory-action.c | 40 ++++++------------------- - src/bookmarks/ephy-bookmark-properties.c | 37 +++-------------------- - src/bookmarks/ephy-bookmarks-editor.c | 42 ++++---------------------- - src/bookmarks/ephy-related-action.c | 45 ++++++++-------------------- - src/bookmarks/ephy-topic-action.c | 44 +++------------------------ - src/bookmarks/ephy-topic-factory-action.c | 40 ++++++------------------- - src/bookmarks/ephy-topics-entry.c | 41 ++++--------------------- - src/bookmarks/ephy-topics-palette.c | 37 +++-------------------- - 9 files changed, 59 insertions(+), 307 deletions(-) - -commit e8202438b62f78e58e8c95c65214b1ea1678c1f0 -Author: Hendrik Richter -Date: Tue Feb 12 18:05:50 2008 +0000 - - Updated German translation. - - 2008-02-12 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=7931 - - po/ChangeLog | 4 ++++ - po/de.po | 8 ++++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit d3c2b1a5118a4a6138b5907d4c3c233f39f3e082 -Author: Hendrik Richter -Date: Tue Feb 12 18:04:05 2008 +0000 - - Fix #513538, patch by Mart Raudsepp - - svn path=/trunk/; revision=7930 - - help/de/de.po | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit b16dc94f7657f4ce1ad21aa336748e5e61e4dbc0 -Author: Hendrik Richter -Date: Tue Feb 12 09:30:52 2008 +0000 - - Updated German translation. - - 2008-02-12 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=7929 - - po/ChangeLog | 4 + - po/de.po | 1513 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 844 insertions(+), 673 deletions(-) - -commit 27812a3a88003cd92d8198298273bc2bacdaa9ef -Author: Rahul Bhalerao -Date: Mon Feb 11 14:41:45 2008 +0000 - - Updated Marathi translations - - svn path=/trunk/; revision=7928 - - po/ChangeLog | 4 + - po/mr.po | 2744 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1474 insertions(+), 1274 deletions(-) - -commit a6753733856e098e2500487fee87620f72dea530 -Author: Xan Lopez -Date: Sun Feb 10 18:26:22 2008 +0000 - - Use G_DEFINE_TYPE* when possible in src/ (#515601) - - svn path=/trunk/; revision=7927 - - src/ephy-cert-manager-dialog.c | 35 +------ - src/ephy-completion-model.c | 45 +-------- - src/ephy-dbus.c | 77 +++++----------- - src/ephy-encoding-dialog.c | 34 +------ - src/ephy-encoding-menu.c | 34 +------ - src/ephy-extensions-manager.c | 47 +--------- - src/ephy-find-toolbar.c | 38 +------- - src/ephy-fullscreen-popup.c | 49 ++-------- - src/ephy-go-action.c | 43 ++------- - src/ephy-history-window.c | 38 +------- - src/ephy-home-action.c | 38 ++------ - src/ephy-link-action.c | 94 +++++-------------- - src/ephy-link.c | 2 +- - src/ephy-location-action.c | 40 +------- - src/ephy-lockdown.c | 48 ++-------- - src/ephy-navigation-action.c | 36 +------- - src/ephy-net-monitor.c | 34 +------ - src/ephy-python-extension.c | 205 +++++++++++++++++------------------------ - src/ephy-python-loader.c | 43 +-------- - src/ephy-session.c | 49 +--------- - src/ephy-shell.c | 38 +------- - src/ephy-statusbar.c | 31 +------ - src/ephy-toolbar-editor.c | 39 +------- - src/ephy-toolbar.c | 65 ++++--------- - src/ephy-toolbars-model.c | 35 +------ - src/pdm-dialog.c | 34 +------ - src/ppview-toolbar.c | 34 +------ - src/prefs-dialog.c | 34 +------ - 28 files changed, 243 insertions(+), 1096 deletions(-) - -commit 9a3e4ebc55e11c3b00b0e7464b11ecec121bc6f2 -Author: Xan Lopez -Date: Sun Feb 10 14:52:00 2008 +0000 - - Do not use history API if we only want to go back or forward, only use it - when necessary (ie, when we want to open item in new tab). - - Bug #515554 - - svn path=/trunk/; revision=7926 - - src/ephy-navigation-action.c | 16 ++-------------- - 1 file changed, 2 insertions(+), 14 deletions(-) - -commit 5b70a8c93a239a38de86f4426200fbec36fabca3 -Author: Xan Lopez -Date: Sat Feb 9 19:21:57 2008 +0000 - - Cleanups in webkit-embed.c - - svn path=/trunk/; revision=7925 - - embed/webkit/webkit-embed.c | 39 +++++++++++++++------------------------ - 1 file changed, 15 insertions(+), 24 deletions(-) - -commit 8915093c3be8fa0b584000e270822f0013e513d2 -Author: Theppitak Karoonboonyanan -Date: Sat Feb 9 05:47:08 2008 +0000 - - Fix typos. - - 2008-02-09 Theppitak Karoonboonyanan - - * th.po: Fix typos. - - - svn path=/trunk/; revision=7924 - - po/ChangeLog | 4 ++ - po/th.po | 124 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 66 insertions(+), 62 deletions(-) - -commit dbb98ae8f866ec4f5fee7e7dd7303d27b718f391 -Author: Gil Forcada Codinachs -Date: Fri Feb 8 23:57:27 2008 +0000 - - Updated Catalan translation - - svn path=/trunk/; revision=7923 - - po/ChangeLog | 4 + - po/ca.po | 1457 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 816 insertions(+), 645 deletions(-) - -commit 4259e123e9761f1d5ec878f39053aa9a8f78c979 -Author: Inaki Larranaga Murgoitio -Date: Fri Feb 8 16:52:34 2008 +0000 - - Updated Basque translation. - - 2008-02-08 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - - - svn path=/trunk/; revision=7922 - - po/ChangeLog | 4 ++++ - po/eu.po | 70 ++++++++++++++++++++++++------------------------------------ - 2 files changed, 32 insertions(+), 42 deletions(-) - -commit 64f488e31e9e10d6d1315a5f4e0761cef4ff8089 -Author: Artur Flinta -Date: Thu Feb 7 21:24:17 2008 +0000 - - Updated Polish translation by GNOME PL Team. - - 2008-02-07 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - - svn path=/trunk/; revision=7921 - - po/ChangeLog | 4 + - po/pl.po | 1445 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 813 insertions(+), 636 deletions(-) - -commit 63d6ae698c4b52f645218759a514f0329234d6b5 -Author: Priit Laes -Date: Tue Feb 5 19:57:45 2008 +0000 - - Translation updated by Ivar Smolin - - 2008-02-05 Priit Laes - - * et.po: Translation updated by Ivar Smolin - - svn path=/trunk/; revision=7920 - - po/ChangeLog | 4 ++++ - po/et.po | 54 +++++++++++++++++++++++++++--------------------------- - 2 files changed, 31 insertions(+), 27 deletions(-) - -commit 81f02a7cc0745a75ce3c35eb497a324c94379bd4 -Author: Xan Lopez -Date: Tue Feb 5 00:17:27 2008 +0000 - - Fix encoding for webkit-history-item.* - - svn path=/trunk/; revision=7919 - - embed/webkit/webkit-history-item.c | 2 +- - embed/webkit/webkit-history-item.h | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit c5bd666a3593f479e3b98a3d9cc7b66ae26a50e3 -Author: Xan Lopez -Date: Tue Feb 5 00:08:43 2008 +0000 - - Implement back and forward history, patch by Jan Alonzo - with several cleanups. (#506566) - - svn path=/trunk/; revision=7918 - - embed/webkit/Makefile.am | 4 +- - embed/webkit/webkit-embed.c | 82 ++++++++++++++++++++++++++++---- - embed/webkit/webkit-history-item.c | 97 ++++++++++++++++++++++++++++++++++++++ - embed/webkit/webkit-history-item.h | 58 +++++++++++++++++++++++ - 4 files changed, 231 insertions(+), 10 deletions(-) - -commit ca956826690a02f63da4befc2ff17c1700f1c570 -Author: Cosimo Cecchi -Date: Mon Feb 4 19:05:27 2008 +0000 - - Fix back button looping through history. - Bug #513803. - - svn path=/trunk/; revision=7917 - - src/ephy-navigation-action.c | 34 +++++++++++++++++++--------------- - 1 file changed, 19 insertions(+), 15 deletions(-) - -commit 3fc4676d136b6c40f4c3ce3a91e4d0dde149d6b7 -Author: Leonardo Ferreira Fontenelle -Date: Mon Feb 4 01:48:19 2008 +0000 - - Minor update by Vladimir Melo. - - 2008-02-03 Leonardo Ferreira Fontenelle - - * pt_BR.po: Minor update by Vladimir Melo. - - svn path=/trunk/; revision=7916 - - po/ChangeLog | 5 ++++- - po/pt_BR.po | 7 +++---- - 2 files changed, 7 insertions(+), 5 deletions(-) - -commit 5f6be0cbb72fabf02b0cd9d2a42c4e5c2ce00d9c -Author: Arangel Angov -Date: Sun Feb 3 16:16:26 2008 +0000 - - Arangel Angov * mk.po: Updated Macedonian Translation - - svn path=/trunk/; revision=7915 - - po/ChangeLog | 5 ++++ - po/mk.po | 84 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 47 insertions(+), 42 deletions(-) - -commit f3ba3048a6b46756847c1af916a691fb69eec09f -Author: Yannig MARCHEGAY -Date: Sun Feb 3 09:41:54 2008 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7914 - - po/ChangeLog | 4 ++++ - po/oc.po | 56 ++++++++++++++++++-------------------------------------- - 2 files changed, 22 insertions(+), 38 deletions(-) - -commit 9ff79d785a34561739a2296c76967fe5e5940dfe -Author: Duarte Loreto -Date: Sat Feb 2 23:02:23 2008 +0000 - - Updated Portuguese translation. - - 2008-02-02 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - svn path=/trunk/; revision=7913 - - po/ChangeLog | 13 +- - po/pt.po | 1452 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 818 insertions(+), 647 deletions(-) - -commit cffc1e66b9c991f08ac218a6d00a4b69c0b85cb0 -Author: Yannig MARCHEGAY -Date: Sat Feb 2 21:02:34 2008 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7912 - - po/ChangeLog | 5 +- - po/oc.po | 653 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 361 insertions(+), 297 deletions(-) - -commit d4f1126477fc18a8cc3e7a98780f79b08e31e712 -Author: Kjartan Maraas -Date: Sat Feb 2 20:18:44 2008 +0000 - - Updated Norwegian bokmål translation. - - 2008-02-02 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7911 - - po/ChangeLog | 4 ++++ - po/nb.po | 12 ++++++------ - 2 files changed, 10 insertions(+), 6 deletions(-) - -commit 1b3eaf4c5fa59e0a7f27aa21613d1981602311d1 -Author: Leonardo Ferreira Fontenelle -Date: Sat Feb 2 17:14:37 2008 +0000 - - Brazilian Portuguese translation updated by Vladimir Melo. - - 2008-02-02 Leonardo Ferreira Fontenelle - - * pt_BR.po: Brazilian Portuguese translation updated by Vladimir Melo. - - svn path=/trunk/; revision=7910 - - po/ChangeLog | 4 + - po/pt_BR.po | 1898 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 868 insertions(+), 1034 deletions(-) - -commit 0a71b3aa7e53919d6f3741b7f7bfaa984db43993 -Author: Theppitak Karoonboonyanan -Date: Sat Feb 2 10:02:40 2008 +0000 - - Updated Thai translation. - - 2008-02-02 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=7909 - - po/ChangeLog | 4 + - po/th.po | 1507 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 860 insertions(+), 651 deletions(-) - -commit 7b0d469dffce0f5e5f6a9f14b8c4cd3589c41f42 -Author: Cosimo Cecchi -Date: Sat Feb 2 01:46:47 2008 +0000 - - Popup the completion dropdown menu when we're focusing the location bar - with the cursor at the end of entry and we press down. Bug #340572. - - svn path=/trunk/; revision=7908 - - lib/widgets/ephy-location-entry.c | 15 +++++++++++++++ - 1 file changed, 15 insertions(+) - -commit 0fe299806d65b2982fb7dad83ad1a5cfb5e8e53e -Author: Djihed Afifi -Date: Sat Feb 2 00:39:13 2008 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=7907 - - po/ChangeLog | 4 ++++ - po/ar.po | 45 ++++++++++++++++----------------------------- - 2 files changed, 20 insertions(+), 29 deletions(-) - -commit 33890e700b3da4f13522b019707de137c6d12c29 -Author: Chao-Hsiung Liao -Date: Fri Feb 1 14:32:32 2008 +0000 - - Updated Traditional Chinese translation(Hong Kong). Updated Traditional - - 2008-02-01 Chao-Hsiung Liao - - * zh_HK.po: Updated Traditional Chinese translation(Hong Kong). - * zh_TW.po: Updated Traditional Chinese translation(Taiwan). - - - - svn path=/trunk/; revision=7906 - - po/ChangeLog | 5 + - po/zh_HK.po | 1715 +++++++++++++++++++++++++++++++++------------------------- - po/zh_TW.po | 1692 +++++++++++++++++++++++++++++++++------------------------ - 3 files changed, 1958 insertions(+), 1454 deletions(-) - -commit 76bc4516537c83d1c717e88e403f93a22909ba99 -Author: Alp Toker -Date: Fri Feb 1 07:07:26 2008 +0000 - - Track WebKit r29909 pkg-config rename - - svn path=/trunk/; revision=7905 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 60f3791d7bb069610daa9ad191e4653426fb7b8f -Author: Amitakhya Phukan -Date: Fri Feb 1 07:05:03 2008 +0000 - - updated assamese translations - - svn path=/trunk/; revision=7904 - - po/ChangeLog | 5 + - po/LINGUAS | 1 + - po/as.po | 4473 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 4479 insertions(+) - -commit 28f21a63da9ecf36ec2b32e9070071b9e1678ec7 -Author: Cosimo Cecchi -Date: Fri Feb 1 00:36:34 2008 +0000 - - Make middle clicking on Back/Forward toolbar buttons open again in - a new tab, as it was in 2.20. Bug #513029. - - svn path=/trunk/; revision=7903 - - src/ephy-navigation-action.c | 32 +++++++++++++++++++++++++++++--- - 1 file changed, 29 insertions(+), 3 deletions(-) - -commit 75a235884d12d5aac27f2a51fe0a6e0820f880b2 -Author: Alp Toker -Date: Fri Feb 1 00:36:27 2008 +0000 - - Track header location change in WebKit r29898 - - svn path=/trunk/; revision=7902 - - embed/webkit/webkit-embed-single.c | 2 +- - embed/webkit/webkit-embed.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit ed22d5d8b50898683b9fd6a44fd327d98a83af5e -Author: Daniel Nylander -Date: Fri Feb 1 00:23:37 2008 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=7901 - - po/ChangeLog | 4 ++++ - po/sv.po | 54 +++++++++++++++++++++++++++--------------------------- - 2 files changed, 31 insertions(+), 27 deletions(-) - -commit ec3b5390984fb1b5ca976af0f95b1c9893aacf60 -Author: Cosimo Cecchi -Date: Thu Jan 31 18:53:57 2008 +0000 - - Fix keyboard focus remaining in the location entry after entering - the address. Bug #513345. - - svn path=/trunk/; revision=7900 - - embed/mozilla/mozilla-embed.cpp | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit e866a8847fcce0f6bec94c79ab3c90c462f06993 -Author: Djihed Afifi -Date: Thu Jan 31 08:18:04 2008 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=7899 - - po/ChangeLog | 4 ++++ - po/ar.po | 13 +++++++------ - 2 files changed, 11 insertions(+), 6 deletions(-) - -commit d43375a812a8708960789f14488a8f70c475fa7c -Author: Jorge Gonzalez Gonzalez -Date: Tue Jan 29 13:00:50 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7898 - - po/ChangeLog | 4 ++++ - po/es.po | 56 ++++++++++++++++++++++++++++---------------------------- - 2 files changed, 32 insertions(+), 28 deletions(-) - -commit d23503d2cc3da25b6a1fc32fa091bfd77921df77 -Author: Cosimo Cecchi -Date: Mon Jan 28 20:43:52 2008 +0000 - - HIG fixes for menu. Bug #483312, patch by Luca Ferretti. - - HIG fixes for menu. - Bug #483312, patch by Luca Ferretti. - - svn path=/trunk/; revision=7897 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1ae87d9257e17f591584d50289a339e64926477b -Author: Cosimo Cecchi -Date: Mon Jan 28 20:37:51 2008 +0000 - - Fix compilation error with gcc4.3. - Patch by Sebastien Bacher, bug #512027. - - svn path=/trunk/; revision=7896 - - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/mozilla-x509-cert.h | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit f1d49b63046435fc035cc50829fe92b8a406612a -Author: Christian Persch -Date: Mon Jan 28 19:41:22 2008 +0000 - - Post release version bump - - svn path=/trunk/; revision=7895 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5ae979d62df73d91ad2ccc827f6967e0439be597 -Author: Christian Persch -Date: Mon Jan 28 19:40:47 2008 +0000 - - Release 2.21.90 - - svn path=/trunk/; revision=7893 - - configure.ac | 1 - - 1 file changed, 1 deletion(-) - -commit 5e816445eb4c7162b808a3a5efa838b3cc4c25eb -Author: Diego Escalante Urrelo -Date: Mon Jan 28 18:35:41 2008 +0000 - - Draft for NEWS of 2.21.90. - - - svn path=/trunk/; revision=7892 - - NEWS | 25 +++++++++++++++++++++++++ - 1 file changed, 25 insertions(+) - -commit 993d83a22b8ad4ad0a0e3ce16ba2c2fdb1f1eecc -Author: Maxim Dziumanenko -Date: Sun Jan 27 21:52:16 2008 +0000 - - Update Ukrainian translation. - - 2008-01-27 Maxim Dziumanenko - - * Update Ukrainian translation. - - svn path=/trunk/; revision=7891 - - po/ChangeLog | 4 + - po/uk.po | 1437 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 809 insertions(+), 632 deletions(-) - -commit 5a5be30352f52a9162bcf362b6c1573cf9e8c7c0 -Author: Kjartan Maraas -Date: Sun Jan 27 13:38:43 2008 +0000 - - Updated Norwegian bokmål translation. - - 2008-01-27 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7890 - - po/ChangeLog | 4 ++++ - po/nb.po | 78 ++++++++++++++++++++++++++++-------------------------------- - 2 files changed, 41 insertions(+), 41 deletions(-) - -commit e83a7dbd88ea5b7b807df63a0a1cc8e312cbb406 -Author: Jovan Naumovski -Date: Sun Jan 27 13:24:24 2008 +0000 - - 2008-01-27 Jovan Naumovski *mk.po: Updated Macedonian translation. - - svn path=/trunk/; revision=7889 - - po/ChangeLog | 4 + - po/mk.po | 1691 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 971 insertions(+), 724 deletions(-) - -commit 7aefac15c53fdecdf97dc62e39b15642097af3eb -Author: Cosimo Cecchi -Date: Thu Jan 24 19:14:16 2008 +0000 - - Better fix for bug #511759. - - svn path=/trunk/; revision=7888 - - embed/mozilla/MozDownload.cpp | 5 ++++- - embed/xulrunner/components/MozDownload.cpp | 6 +++++- - lib/ephy-file-helpers.c | 6 ++---- - lib/ephy-file-helpers.h | 2 +- - src/popup-commands.c | 9 +++++++-- - 5 files changed, 19 insertions(+), 9 deletions(-) - -commit 03f88794174a3e34b45da41befe217766b3fea09 -Author: Claude Paroz -Date: Thu Jan 24 18:32:49 2008 +0000 - - Updated French translation. - - 2008-01-24 Claude Paroz - - * fr/fr.po: Updated French translation. - - svn path=/trunk/; revision=7887 - - help/ChangeLog | 4 + - help/fr/fr.po | 566 +++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 317 insertions(+), 253 deletions(-) - -commit 8a9b52b0d79eb9ba3568d04a698845e233e07043 -Author: Cosimo Cecchi -Date: Thu Jan 24 16:23:39 2008 +0000 - - Use g_file_new_for_uri () instead of g_file_new_for_path () in - ephy_file_browse_to (). - Fix bug #511759. - - svn path=/trunk/; revision=7886 - - lib/ephy-file-helpers.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit e543cf818c78c949d3495e9767f39560e921e909 -Author: Wouter Bolsterlee -Date: Thu Jan 24 16:00:54 2008 +0000 - - Generated doc files and ignore patterns - - svn path=/trunk/; revision=7885 - - doc/reference/tmpl/EphySingle.sgml | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 1 - - 2 files changed, 1 insertion(+), 2 deletions(-) - -commit 2b26bcfe077275145b1184b667f6ab7dda15d872 -Author: Wouter Bolsterlee -Date: Thu Jan 24 15:53:44 2008 +0000 - - Make ViewZoomNormal button available from the toolbar editor. - (It's not on the default toolbar, though). - - svn path=/trunk/; revision=7884 - - data/ui/epiphany-toolbar.xml | 1 + - 1 file changed, 1 insertion(+) - -commit 64b678e8d648810b2fe02f745a8bddeef5753f28 -Author: Ignacio Casal Quinteiro -Date: Thu Jan 24 11:58:42 2008 +0000 - - Updated Galician Translation. - - svn path=/trunk/; revision=7881 - - po/ChangeLog | 4 + - po/gl.po | 846 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 461 insertions(+), 389 deletions(-) - -commit 7ba8fa45110a0b803e26b2327b290706212fbf1c -Author: Wouter Bolsterlee -Date: Wed Jan 23 20:26:21 2008 +0000 - - Fix typos in Dutch translation - - svn path=/trunk/; revision=7880 - - po/nl.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit cbd5824fa39d0b1d75a44cc45bebe8c0ab63be13 -Author: Priit Laes -Date: Wed Jan 23 13:35:54 2008 +0000 - - Translation updated by Ivar Smolin - - 2008-01-23 Priit Laes - - * et.po: Translation updated by Ivar Smolin - - svn path=/trunk/; revision=7879 - - po/ChangeLog | 4 + - po/et.po | 507 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 265 insertions(+), 246 deletions(-) - -commit d30a8f664029df5044a67490cd5a229381a28af2 -Author: Kjartan Maraas -Date: Mon Jan 21 18:58:05 2008 +0000 - - Updated Norwegian bokmål translation. - - 2008-01-21 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7878 - - po/ChangeLog | 4 ++++ - po/nb.po | 40 ++++++++++++++++++++-------------------- - 2 files changed, 24 insertions(+), 20 deletions(-) - -commit 0c8a69b62fd5ad12d559461ebb3432fa87041757 -Author: Djihed Afifi -Date: Sun Jan 20 23:35:22 2008 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=7877 - - po/ChangeLog | 4 + - po/ar.po | 1047 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 523 insertions(+), 528 deletions(-) - -commit 9c0a7efcffdce88f347aa635ed6d432581092f99 -Author: Yang Zhang -Date: Sun Jan 20 07:56:39 2008 +0000 - - Updated zh_CN translation - - svn path=/trunk/; revision=7876 - - po/zh_CN.po | 1419 +++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 795 insertions(+), 624 deletions(-) - -commit 013ae67f7c09549e2cb9824e075d26462470cc16 -Author: Xan Lopez -Date: Sat Jan 19 14:17:59 2008 +0000 - - Fix build for builddir != srcdir - - svn path=/trunk/; revision=7875 - - lib/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit 468ba6640fb691c169d28b351b03f85874dc2f36 -Author: Gil Forcada Codinachs -Date: Fri Jan 18 20:14:42 2008 +0000 - - Updated Turkish translation to pass msgfmt -cv - - svn path=/trunk/; revision=7874 - - po/ChangeLog | 4 ++++ - po/tr.po | 7 +------ - 2 files changed, 5 insertions(+), 6 deletions(-) - -commit 3d8f6bf82fbfc155ff3eddc79c450c84efb690b7 -Author: Inaki Larranaga Murgoitio -Date: Fri Jan 18 17:07:58 2008 +0000 - - Updated Basque translation. - - 2008-01-18 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - - - svn path=/trunk/; revision=7873 - - po/ChangeLog | 4 + - po/eu.po | 323 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 179 insertions(+), 148 deletions(-) - -commit da6d2b270e45fbbfd24cbac926324e74a12b973d -Author: Alp Toker -Date: Fri Jan 18 03:56:25 2008 +0000 - - Track upstream API change in WebKit r29550 - - svn path=/trunk/; revision=7872 - - embed/webkit/webkit-embed.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit f89897d3d48a644b61c586de68e49581e45725fd -Author: Gabor Kelemen -Date: Wed Jan 16 15:08:22 2008 +0000 - - Translation updated - - 2008-01-16 Gabor Kelemen - - * hu.po: Translation updated - - - svn path=/trunk/; revision=7871 - - po/ChangeLog | 4 + - po/hu.po | 903 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 522 insertions(+), 385 deletions(-) - -commit 5d45f5d29528a1cd18ad2c3bbf214a7629c157c0 -Author: Raivis Dejus -Date: Tue Jan 15 14:13:58 2008 +0000 - - Updated Latvian Translation. - - svn path=/trunk/; revision=7870 - - po/ChangeLog | 4 +++ - po/lv.po | 96 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 52 insertions(+), 48 deletions(-) - -commit d4322d98647c0bafa3b160bb0701b22a81686741 -Author: Xan Lopez -Date: Tue Jan 15 07:56:31 2008 +0000 - - Fix compilation when debug is enabled. Patch by Joseph Sacco (#509541) - - svn path=/trunk/; revision=7869 - - src/bookmarks/ephy-bookmarks-export.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9d90ba66bc6cbc8dc980bf0620e78c8a1d0bd943 -Author: Christian Persch -Date: Mon Jan 14 23:32:47 2008 +0000 - - Post release version bump - - svn path=/trunk/; revision=7868 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e4f73934ba57b0d2a58d5f73f5c1fc3cdeba3be8 -Author: Christian Persch -Date: Mon Jan 14 23:30:54 2008 +0000 - - Release 2.21.5 - - svn path=/trunk/; revision=7866 - - configure.ac | 21 ++++++++++---- - doc/reference/tmpl/ephy-embed.sgml | 50 ++++----------------------------- - doc/reference/tmpl/ephy-shell.sgml | 1 + - doc/reference/tmpl/epiphany-unused.sgml | 35 +++++++++++++++++++++++ - 4 files changed, 57 insertions(+), 50 deletions(-) - -commit db1ee3594adb541f39a1aab477e952157a0be4ad -Author: Cosimo Cecchi -Date: Mon Jan 14 20:50:23 2008 +0000 - - Fix cropped close button on tab labels with gnome-icon-theme 2.21.x. - Bug #499983. - - svn path=/trunk/; revision=7865 - - src/ephy-notebook.c | 14 ++++++++++---- - 1 file changed, 10 insertions(+), 4 deletions(-) - -commit fb8e45c04b50563e4b3a752af8b357925dd1b83b -Author: Cosimo Cecchi -Date: Mon Jan 14 20:26:23 2008 +0000 - - Update to new glib 2.15.2 API, bump glib dep and remove a - remaining gnome-vfs bit from configure.ac. - - svn path=/trunk/; revision=7864 - - configure.ac | 5 ++--- - embed/ephy-base-embed.c | 4 ++-- - embed/mozilla/mozilla-embed-single.cpp | 3 ++- - embed/xulrunner/embed/mozilla-embed-single.cpp | 3 ++- - src/ephy-extensions-manager.c | 2 +- - 5 files changed, 9 insertions(+), 8 deletions(-) - -commit bf67cfd6ac01107cd4d400a604ccd76b41dfb48e -Author: Cosimo Cecchi -Date: Mon Jan 14 19:29:31 2008 +0000 - - Add #ifdef for Avahi includes in ephy-bookmarks.c. - Bug #509325. - - svn path=/trunk/; revision=7863 - - src/bookmarks/ephy-bookmarks.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit ec2a1d72cfbf97b18060a0381dd27a9e07d66fef -Author: Daniel Nylander -Date: Mon Jan 14 17:43:28 2008 +0000 - - sv.po: Swedish translation updated - - svn path=/trunk/; revision=7862 - - po/ChangeLog | 4 + - po/sv.po | 285 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 153 insertions(+), 136 deletions(-) - -commit 0b70f0a8fd29a06785cc8235662c8d222f6ea3a8 -Author: Jorge Gonzalez Gonzalez -Date: Mon Jan 14 14:57:41 2008 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7861 - - po/ChangeLog | 4 + - po/es.po | 509 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 266 insertions(+), 247 deletions(-) - -commit ad801b1af0a22b641321ea8f8c7caf8b344b219e -Author: Kjartan Maraas -Date: Mon Jan 14 09:23:53 2008 +0000 - - add missing files updated Norwegian bokmål translation. - - 2008-01-14 Kjartan Maraas - - * POTFILES.in: add missing files - * nb.po: updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7860 - - po/ChangeLog | 5 + - po/POTFILES.in | 2 + - po/nb.po | 285 ++++++++++++++++++++++++++++++--------------------------- - 3 files changed, 159 insertions(+), 133 deletions(-) - -commit c89d684e3696a6861f08961ce08cddb1a4bcadf8 -Author: Cosimo Cecchi -Date: Sun Jan 13 20:42:52 2008 +0000 - - Missing files from last commit. - - svn path=/trunk/; revision=7859 - - lib/egg/eel-app-launch-context.c | 614 +++++++++++++++++++++++++++++++++++++++ - lib/egg/eel-app-launch-context.h | 77 +++++ - 2 files changed, 691 insertions(+) - -commit af1c2ceaef7d949e36a7680f463c5e25f79c43d6 -Author: Cosimo Cecchi -Date: Sun Jan 13 20:42:01 2008 +0000 - - Drop gnome-vfs dependency. Now Epiphany depends on glib >= 2.15.1. - Also, optional Zeroconf support depends on Avahi >= 0.6.22. - Bug #507152. - - svn path=/trunk/; revision=7858 - - configure.ac | 19 +- - embed/downloader-view.c | 5 +- - embed/ephy-base-embed.c | 132 ++--- - embed/ephy-download.c | 11 +- - embed/ephy-favicon-cache.c | 118 +++-- - embed/ephy-history.c | 25 +- - embed/mozilla/ContentHandler.cpp | 19 +- - embed/mozilla/ContentHandler.h | 4 +- - embed/mozilla/EphyHeaderSniffer.cpp | 4 +- - embed/mozilla/MozDownload.cpp | 16 +- - embed/mozilla/MozDownload.h | 2 - - embed/mozilla/mozilla-embed-single.cpp | 43 +- - embed/webkit/webkit-embed-single.c | 1 - - embed/webkit/webkit-embed.c | 2 - - embed/xulrunner/components/ContentHandler.cpp | 17 +- - embed/xulrunner/components/ContentHandler.h | 2 +- - embed/xulrunner/components/MozDownload.cpp | 16 +- - embed/xulrunner/embed/EphyHeaderSniffer.cpp | 3 +- - embed/xulrunner/embed/mozilla-embed-single.cpp | 38 +- - lib/Makefile.am | 1 + - lib/egg/Makefile.am | 6 +- - lib/ephy-file-chooser.c | 6 +- - lib/ephy-file-helpers.c | 708 ++++--------------------- - lib/ephy-file-helpers.h | 35 +- - lib/ephy-node-db.c | 17 +- - lib/ephy-string.c | 240 +++++++++ - lib/ephy-string.h | 6 + - src/bookmarks/Makefile.am | 9 + - src/bookmarks/ephy-bookmark-action.c | 59 ++- - src/bookmarks/ephy-bookmarks-export.c | 98 ++-- - src/bookmarks/ephy-bookmarks-import.c | 20 +- - src/bookmarks/ephy-bookmarks.c | 364 +++++++++---- - src/bookmarks/ephy-topic-action.c | 1 - - src/ephy-extensions-manager.c | 47 +- - src/ephy-main.c | 31 +- - src/ephy-session.c | 79 +-- - src/ephy-window.c | 12 +- - src/popup-commands.c | 41 +- - src/prefs-dialog.c | 17 +- - src/window-commands.c | 72 ++- - 40 files changed, 1174 insertions(+), 1172 deletions(-) - -commit 12d96e8a6fc9eddaffdbad58754e712af5fc5fef -Author: Changwoo Ryu -Date: Sat Jan 12 18:46:36 2008 +0000 - - Updated Korean translation. - - svn path=/trunk/; revision=7857 - - po/ChangeLog | 4 + - po/ko.po | 786 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 433 insertions(+), 357 deletions(-) - -commit f7d3936f5ec8297531b32d973a39750ed182809b -Author: Cosimo Cecchi -Date: Thu Jan 10 20:40:35 2008 +0000 - - Open externally opened link in current tab if it is blank. - Fix bug #499613. - - svn path=/trunk/; revision=7856 - - src/ephy-activation.c | 6 +++++- - src/ephy-main.c | 2 +- - src/ephy-session.c | 4 ++++ - src/ephy-shell.c | 39 +++++++++++++++++++++++++++------------ - src/ephy-shell.h | 1 + - 5 files changed, 38 insertions(+), 14 deletions(-) - -commit 00a6ae4ccf4be271165755d6866211c708cc09f7 -Author: Xan Lopez -Date: Tue Jan 8 21:22:06 2008 +0000 - - Don't use net-stop signal, it's gone. Switch to notify::load-status - - svn path=/trunk/; revision=7855 - - src/ephy-encoding-dialog.c | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) - -commit d5b9f2e35a4b297e30ce01ed0a8567b0f979375e -Author: Yair Hershkovitz -Date: Tue Jan 8 12:12:09 2008 +0000 - - updated hebrew translation - - svn path=/trunk/; revision=7854 - - po/ChangeLog | 4 + - po/he.po | 1131 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 643 insertions(+), 492 deletions(-) - -commit f5b3dd75f5a26a9aaad92b6ef946e8ceeb47432b -Author: Ihar Hrachyshka -Date: Sun Jan 6 00:07:03 2008 +0000 - - Updated Belarusian Latin translation. - - svn path=/trunk/; revision=7851 - - po/ChangeLog | 4 + - po/be@latin.po | 709 ++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 399 insertions(+), 314 deletions(-) - -commit 20cc615eecccc6e7eae149f018e8d47f6ed0defe -Author: Xan Lopez -Date: Fri Jan 4 20:02:23 2008 +0000 - - Update to new coding guidelines. - - svn path=/trunk/; revision=7850 - - embed/webkit/webkit-embed-find.c | 38 ++++++++++++++++++++------------------ - 1 file changed, 20 insertions(+), 18 deletions(-) - -commit 0c16fc376caf357532140f9c0d8d68b41891e2f5 -Author: Erdal Ronahi -Date: Fri Jan 4 16:27:37 2008 +0000 - - Updated Kurdish translation - - svn path=/trunk/; revision=7849 - - po/ChangeLog | 4 +++ - po/ku.po | 114 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 56 insertions(+), 62 deletions(-) - -commit 189657f932bbd880f7815ec6ab2eb3a599c0ad19 -Author: Clytie Siddall -Date: Fri Jan 4 13:04:31 2008 +0000 - - Updated Vietnamese translation - - svn path=/trunk/; revision=7848 - - po/ChangeLog | 4 + - po/vi.po | 2042 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1091 insertions(+), 955 deletions(-) - -commit f2bb1920ee490805dc6f9e86ed2d7757e192b97c -Author: Kjartan Maraas -Date: Thu Jan 3 20:39:38 2008 +0000 - - Updated Norwegian bokmål translation. - - 2008-01-03 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7847 - - po/ChangeLog | 14 +- - po/nb.po | 554 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 308 insertions(+), 260 deletions(-) - -commit 397ebcfafab65bcb6c7039caa809b9f985376bed -Author: Ani Peter -Date: Thu Jan 3 04:10:42 2008 +0000 - - Updated Malayalam Translation - - svn path=/trunk/; revision=7846 - - po/ChangeLog | 3 +++ - 1 file changed, 3 insertions(+) - -commit 459e4ef1a784e66abfc0c8ff9a5366c5e39fb54b -Author: Ani Peter -Date: Thu Jan 3 04:10:26 2008 +0000 - - Updated Malayalam Translation - - svn path=/trunk/; revision=7845 - - po/ml.po | 3068 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 1585 insertions(+), 1483 deletions(-) - -commit afe326f6e40c373f636ebcdddd83c39eddccec66 -Author: Daniel Nylander -Date: Wed Jan 2 18:17:54 2008 +0000 - - Updated Swedish translation. - - * sv/sv.po: Updated Swedish translation. - - - svn path=/trunk/; revision=7844 - - help/ChangeLog | 4 + - help/sv/sv.po | 540 ++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 284 insertions(+), 260 deletions(-) - -commit fdedc9295c04f90d87350771ad9e9f758510d30a -Author: Yannig MARCHEGAY -Date: Mon Dec 31 22:13:21 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7842 - - help/oc/oc.po | 14 +- - po/ChangeLog | 5 +- - po/oc.po | 1036 ++++++++++++++++++++++++++++++++------------------------- - 3 files changed, 599 insertions(+), 456 deletions(-) - -commit 29300e1bd8cb09273ea1f0345c1c155b9e8ca845 -Author: Inaki Larranaga Murgoitio -Date: Mon Dec 31 14:44:52 2007 +0000 - - Updated Basque translation. - - 2007-12-31 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - - - svn path=/trunk/; revision=7841 - - po/ChangeLog | 4 + - po/eu.po | 1491 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 826 insertions(+), 669 deletions(-) - -commit 33f868fe858736df45cf2943ec5b962634a123f0 -Author: Jan Michael C. Alonzo -Date: Mon Dec 31 13:35:27 2007 +0000 - - Fix typo when building the back/forward history menu - - http://bugzilla.gnome.org/show_bug.cgi?id=506563 - - modified: src/ephy-navigation-action.c - - svn path=/trunk/; revision=7840 - - src/ephy-navigation-action.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3806b7bf9acde8cfdfd03accf252991dadac9327 -Author: Djihed Afifi -Date: Mon Dec 31 09:11:51 2007 +0000 - - Updated Arabic Translation by Djihed Afifi. - - svn path=/trunk/; revision=7839 - - po/ChangeLog | 4 + - po/ar.po | 1003 ++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 627 insertions(+), 380 deletions(-) - -commit 1c001edf9fd35531ba9d5a61bb04b9207190a0d8 -Author: Daniel Nylander -Date: Sun Dec 30 22:18:37 2007 +0000 - - sv.po: Swedish translation updated - - svn path=/trunk/; revision=7838 - - po/ChangeLog | 4 + - po/sv.po | 995 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 561 insertions(+), 438 deletions(-) - -commit 34ace2ac288b1eaa6c63a7d4966952f245e149b3 -Author: Xan Lopez -Date: Sun Dec 30 00:36:00 2007 +0000 - - Stub new history interfaces in WebKit until the needed API lands - on trunk. - - svn path=/trunk/; revision=7837 - - embed/webkit/webkit-embed.c | 67 +++++++++++++++++++++++---------------------- - 1 file changed, 34 insertions(+), 33 deletions(-) - -commit e63a085bb01b783057e0cba91725f3af884d3292 -Author: Xan Lopez -Date: Sun Dec 30 00:24:40 2007 +0000 - - Port ephy-window.c to the new API, remove old API. - - Closes bug #506005 - - svn path=/trunk/; revision=7836 - - embed/ephy-embed.c | 75 ----------------------------------------- - embed/ephy-embed.h | 22 ------------ - embed/mozilla/mozilla-embed.cpp | 59 +++++--------------------------- - src/ephy-window.c | 22 ++++++------ - src/epiphany.defs | 33 ------------------ - src/epiphany.override | 54 ----------------------------- - 6 files changed, 19 insertions(+), 246 deletions(-) - -commit 2a776b7f4ea30e814b2703a50633143b5b0ebc95 -Author: Xan Lopez -Date: Sat Dec 29 23:39:23 2007 +0000 - - Make MozillaHistoryItem create url and title on demand. - Adapt code to the API change. - - svn path=/trunk/; revision=7835 - - embed/ephy-history-item.c | 6 ++- - embed/ephy-history-item.h | 8 +-- - embed/mozilla/mozilla-embed.cpp | 35 ++++--------- - embed/mozilla/mozilla-embed.h | 9 ++++ - embed/mozilla/mozilla-history-item.cpp | 91 +++++++++++++++++++++++++++++----- - embed/mozilla/mozilla-history-item.h | 7 +-- - src/ephy-navigation-action.c | 11 ++-- - 7 files changed, 116 insertions(+), 51 deletions(-) - -commit 8fdb4086efaad93d0c9349520081a9608853fca0 -Author: Xan Lopez -Date: Sat Dec 29 16:59:25 2007 +0000 - - Use the new interfaces for backward/forward menus. - - Store nth data in the HistoryItem itself. - - Try to use HISTORY_ITEM_DATA_KEY data from object in navigation action - before falling back to URL_DATA_KEY. - - Bug #506005 - - svn path=/trunk/; revision=7834 - - embed/mozilla/mozilla-embed.cpp | 5 +- - embed/mozilla/mozilla-history-item.cpp | 3 +- - embed/mozilla/mozilla-history-item.h | 3 +- - src/ephy-navigation-action.c | 91 ++++++++++++++-------------------- - 4 files changed, 41 insertions(+), 61 deletions(-) - -commit eeecbfedf3b0a9c1bdf3f17981dc885603d268af -Author: Xan Lopez -Date: Sat Dec 29 16:59:00 2007 +0000 - - Mozilla implementation of the embed history interfaces. - - svn path=/trunk/; revision=7833 - - embed/Makefile.am | 4 +- - embed/mozilla/Makefile.am | 2 + - embed/mozilla/mozilla-embed.cpp | 109 ++++++++++++++++++++++++++++++++- - embed/mozilla/mozilla-history-item.cpp | 69 +++++++++++++++++++++ - embed/mozilla/mozilla-history-item.h | 39 ++++++++++++ - 5 files changed, 219 insertions(+), 4 deletions(-) - -commit 845fb8717fa53f67893f5f4b17bbdb711e11da2f -Author: Xan Lopez -Date: Sat Dec 29 16:58:41 2007 +0000 - - Add new embed history interfaces. - - svn path=/trunk/; revision=7832 - - embed/Makefile.am | 4 +- - embed/ephy-embed.c | 79 ++++++++++++++++++++- - embed/ephy-embed.h | 171 +++++++++++++++++++++++++--------------------- - embed/ephy-history-item.c | 56 +++++++++++++++ - embed/ephy-history-item.h | 53 ++++++++++++++ - 5 files changed, 282 insertions(+), 81 deletions(-) - -commit 9c053200d3fbc1f8d7b6a0a70dab807d7461b716 -Author: Reinout van Schouwen -Date: Thu Dec 27 23:04:45 2007 +0000 - - Updated Dutch translation - - 2007-12-28 Reinout van Schouwen - * nl.po: Updated Dutch translation - - svn path=/trunk/; revision=7831 - - po/ChangeLog | 4 + - po/nl.po | 622 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 362 insertions(+), 264 deletions(-) - -commit 2be4f127d60eb3251edddec9fe3b3eeaf60cde6f -Author: Priit Laes -Date: Thu Dec 27 20:55:17 2007 +0000 - - Translation updated by Ivar Smolin - - 2007-12-27 Priit Laes - - * et.po: Translation updated by Ivar Smolin - - svn path=/trunk/; revision=7830 - - po/ChangeLog | 3 ++ - po/et.po | 158 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 97 insertions(+), 64 deletions(-) - -commit 820490d66240bd04ece59683f6584ac1bcaa3add -Author: Xan Lopez -Date: Wed Dec 26 19:07:03 2007 +0000 - - If is_blank is TRUE then set title to Blank page without checking whether - title was NULL or not. Fixes (again!) empty new tabs. - - svn path=/trunk/; revision=7829 - - embed/ephy-base-embed.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 7236ef4936158ed4f713d5d5da061e0696e9ea76 -Author: Diego Escalante Urrelo -Date: Wed Dec 26 19:00:00 2007 +0000 - - Catch bookmarks and history in EphyLocationActionPrivate, it's smarter. - Fixes bug #505777. - - - svn path=/trunk/; revision=7828 - - lib/widgets/ephy-location-entry.c | 5 +++-- - lib/widgets/ephy-location-entry.h | 3 ++- - src/ephy-location-action.c | 19 ++++++++++--------- - 3 files changed, 15 insertions(+), 12 deletions(-) - -commit 0b39aeca159fdd8126cb7423dbe8753bf1b5c1e7 -Author: Diego Escalante Urrelo -Date: Wed Dec 26 18:38:42 2007 +0000 - - Have the completion func also check the bookmark URLs for matches as it does - with history items. - Fixes bug #505683. - - - svn path=/trunk/; revision=7827 - - src/ephy-location-action.c | 17 ++++++++++++++--- - 1 file changed, 14 insertions(+), 3 deletions(-) - -commit 621364b0b056eabdd791f12c7f3bd5bc218cb605 -Author: Diego Escalante Urrelo -Date: Wed Dec 26 18:32:54 2007 +0000 - - Avoid duplicated history and bookmark entries for the same url in the - completion popup. - Fixes bug #392979. - - - svn path=/trunk/; revision=7826 - - src/ephy-location-action.c | 24 ++++++++++++++++++++++++ - 1 file changed, 24 insertions(+) - -commit 0005d0a070767a4860bc8c99c20b200818312101 -Author: Diego Escalante Urrelo -Date: Wed Dec 26 18:29:52 2007 +0000 - - Make libnotify optional, completes the previous commit by chpe. - - - svn path=/trunk/; revision=7825 - - embed/downloader-view.c | 42 ++++++++++++++++++++++++++++++++++++++---- - 1 file changed, 38 insertions(+), 4 deletions(-) - -commit 9de343be1c92795b70a41f7a77d41081ac094313 -Author: Xan Lopez -Date: Wed Dec 26 18:22:21 2007 +0000 - - Whitespace fixes. - - svn path=/trunk/; revision=7824 - - embed/ephy-base-embed.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit b3db2b35a492fc1560632bf54ddef6585048c289 -Author: Christian Persch -Date: Wed Dec 26 18:03:14 2007 +0000 - - Make libnotify dep optional. - - svn path=/trunk/; revision=7823 - - configure.ac | 10 +++++++++- - 1 file changed, 9 insertions(+), 1 deletion(-) - -commit 9b52f831cf88a43363b1f2ca3af9e3eb099fb696 -Author: Diego Escalante Urrelo -Date: Wed Dec 26 06:48:07 2007 +0000 - - Remove a trailing whitespace. - - - svn path=/trunk/; revision=7822 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4ccad4249c928907f8b9a0f089b47ddb5c7bbfae -Author: Diego Escalante Urrelo -Date: Tue Dec 25 23:38:48 2007 +0000 - - Moves the completion_func from lib/widgets/ephy-location-entry.c to - src/ephy-location-action.c. - Adds a function to set the completion_func in - lib/widgets/ephy-location-entry.c|h. - - Part of bug #392979. - - - svn path=/trunk/; revision=7821 - - lib/widgets/ephy-location-entry.c | 113 ++++---------------------------------- - lib/widgets/ephy-location-entry.h | 4 ++ - src/ephy-location-action.c | 105 +++++++++++++++++++++++++++++++++++ - 3 files changed, 121 insertions(+), 101 deletions(-) - -commit 2ac5ef454443b113eb54a1b1ce21065db295d8c7 -Author: Jorge Gonzalez Gonzalez -Date: Tue Dec 25 22:54:31 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7820 - - help/ChangeLog | 10 +- - help/es/es.po | 522 ++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 281 insertions(+), 251 deletions(-) - -commit 36cdc39b68e29625a4eea55804e319a72b7ac1ad -Author: Xan Lopez -Date: Tue Dec 25 14:23:28 2007 +0000 - - Implement "select all" for WebKit backend. (#505569) - - Patch by Luca Bruno. - - svn path=/trunk/; revision=7819 - - embed/webkit/webkit-embed.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 826724c278a218d528d254ca5631267a83c5a48f -Author: Cosimo Cecchi -Date: Mon Dec 24 23:48:02 2007 +0000 - - Display a single host entry in the History Window also when the same host - is visited with different protocols (http and https). - Fix bug #313481. - - svn path=/trunk/; revision=7818 - - embed/ephy-history.c | 31 +++++++++++++++++++++---------- - 1 file changed, 21 insertions(+), 10 deletions(-) - -commit 4b350bc5522d5040998ac09271c9318549ff4d07 -Author: Cosimo Cecchi -Date: Mon Dec 24 23:42:13 2007 +0000 - - Fix missing tab title on empty page. - Bug #503854. - - svn path=/trunk/; revision=7817 - - embed/ephy-base-embed.c | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit 8a8564547627447b6405085b80cd196394f0f234 -Author: Cosimo Cecchi -Date: Mon Dec 24 12:58:47 2007 +0000 - - Add instructions on how to resize the text entry box of a smart bookmark - on the toolbar. Bug #415473. - - svn path=/trunk/; revision=7816 - - help/C/epiphany.xml | 14 ++++++++++++++ - 1 file changed, 14 insertions(+) - -commit 93ad58fd9b6b73a2d32d7fc7f079faba7e87563f -Author: Jorge Gonzalez Gonzalez -Date: Mon Dec 24 10:08:39 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7815 - - po/ChangeLog | 4 ++ - po/es.po | 158 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 98 insertions(+), 64 deletions(-) - -commit 6d9288b9d23c5b056425785bd85dde153f082ccf -Author: Diego Escalante Urrelo -Date: Mon Dec 24 05:36:13 2007 +0000 - - Quick fix for a warning produced by my previous update to epiphany.defs, - ephy_embed_get_loading_title is actually const-char* not char*. - - - svn path=/trunk/; revision=7814 - - src/epiphany.defs | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bc9eb44bd3de68c4c624527e7629ec538d1fa3b1 -Author: Diego Escalante Urrelo -Date: Mon Dec 24 01:43:56 2007 +0000 - - Add extra methods to EphyEmbed object: - - get_go_up_list - get_security_level - get_zoom - get_document_type - get_load_percent - get_load_status - get_navigation_flags - get_typed_address - get_address - get_status_message - get_icon - get_icon_address - get_is_blank - get_loading_title - get_encoding - - - svn path=/trunk/; revision=7813 - - src/epiphany.defs | 121 ++++++++++++++++++++++++++++++++++++++++++------------ - 1 file changed, 94 insertions(+), 27 deletions(-) - -commit 4569f7e7b9f250790af6fa1855d0e521450d24d0 -Author: Diego Escalante Urrelo -Date: Mon Dec 24 01:29:11 2007 +0000 - - Enable multiple selection in download dialog, now you can cancel more than one - download at a time. Note that this has no effect over the Pause button, only - over Stop. - Bug #327734. - - - svn path=/trunk/; revision=7812 - - embed/downloader-view.c | 64 ++++++++++++++++++++++++++++++++++--------------- - 1 file changed, 45 insertions(+), 19 deletions(-) - -commit a8dc9d8db013e0ecd2ed4ac310f6a1e7478116e3 -Author: Christian Persch -Date: Sun Dec 23 22:58:50 2007 +0000 - - Xr 1.9 fixes. Bug #503657. - - svn path=/trunk/; revision=7811 - - embed/mozilla/Makefile.am | 10 ++++++++-- - 1 file changed, 8 insertions(+), 2 deletions(-) - -commit 65b3580c827a17a02357fee824d54ae67a200dd6 -Author: Christian Persch -Date: Sun Dec 23 22:56:24 2007 +0000 - - Xr 1.9 fixes. Bug #503657. - - svn path=/trunk/; revision=7810 - - embed/mozilla/EphyAboutModule.cpp | 45 ++++++++++++++++++++++++++++++++------- - 1 file changed, 37 insertions(+), 8 deletions(-) - -commit 31e0e354c2e6430b7979e74a416ed8c7ed11a8f7 -Author: Christian Persch -Date: Sun Dec 23 22:39:56 2007 +0000 - - Xr 1.9 fixes. Bug #503657. - - svn path=/trunk/; revision=7809 - - embed/mozilla/EphyFind.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2ba7016f4b42ec9e8b7d5ef38b1c2a48ec390d4f -Author: Christian Persch -Date: Sun Dec 23 22:38:56 2007 +0000 - - Xr 1.9 fixes. Bug #503657. - - svn path=/trunk/; revision=7808 - - embed/mozilla/MozRegisterComponents.cpp | 14 +++++++++++--- - 1 file changed, 11 insertions(+), 3 deletions(-) - -commit a29474a22ebb70a760712605ad738c6117661d22 -Author: Christian Persch -Date: Sun Dec 23 22:35:34 2007 +0000 - - Xr 1.9 fixes. Bug #503657. - - svn path=/trunk/; revision=7807 - - embed/mozilla/EphyHeaderSniffer.cpp | 4 ++++ - embed/mozilla/MozDownload.cpp | 6 +++++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 8ffe4f1d013547bb9e3d38c5061a5e2a2ec75015 -Author: Christian Persch -Date: Sun Dec 23 22:33:52 2007 +0000 - - Xr 1.9 fixes. Bug #503657. - - svn path=/trunk/; revision=7806 - - embed/mozilla/EphyUtils.cpp | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 357b0c05ce39abe15fe90f424b72942130b8ee56 -Author: Christian Persch -Date: Sun Dec 23 22:31:01 2007 +0000 - - Fixes for xr 1.9. Bug #503657. - - svn path=/trunk/; revision=7805 - - embed/mozilla/EphyDirectoryProvider.cpp | 19 ++++++++++++++++++- - 1 file changed, 18 insertions(+), 1 deletion(-) - -commit 0b0de463f1ffb1a209607f79589c8f1a7a9235de -Author: Christian Persch -Date: Sun Dec 23 22:02:02 2007 +0000 - - Xr 1.9 fixes. Bug #503657. - - svn path=/trunk/; revision=7804 - - embed/mozilla/GeckoPrintService.cpp | 3 +++ - 1 file changed, 3 insertions(+) - -commit 4ebb2a25c1e2ec41e1f951dfb64312f9aec204dd -Author: Christian Persch -Date: Sun Dec 23 22:00:12 2007 +0000 - - Add ifdefs for xr 1.9. Part of bug #503657. - - svn path=/trunk/; revision=7803 - - embed/mozilla/GtkNSSDialogs.cpp | 30 ++++++++++++++++++++++++++---- - embed/mozilla/GtkNSSDialogs.h | 18 +++++++++++++++--- - 2 files changed, 41 insertions(+), 7 deletions(-) - -commit f21ba0f6e9ec1d4234484d278c57b5c8b69eea3e -Author: Diego Escalante Urrelo -Date: Sun Dec 23 17:36:17 2007 +0000 - - download-dialog hidden state is now saved to gconf. New downloads started while - 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 - - configure.ac | 2 + - data/epiphany.schemas.in | 12 +++++ - data/glade/epiphany.glade | 2 + - embed/downloader-view.c | 110 ++++++++++++++++++++++++++++++++++++++++------ - lib/ephy-prefs.h | 1 + - 5 files changed, 114 insertions(+), 13 deletions(-) - -commit d30314a1863659ada0f49a3b2ed930466057c5ec -Author: Priit Laes -Date: Sun Dec 23 14:06:44 2007 +0000 - - Translation updated by Ivar Smolin - - 2007-12-23 Priit Laes - - * et.po: Translation updated by Ivar Smolin - - svn path=/trunk/; revision=7801 - - po/ChangeLog | 3 + - po/et.po | 306 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 177 insertions(+), 132 deletions(-) - -commit 18718080946c4148f29c5e27b825ad14ea543136 -Author: Djihed Afifi -Date: Sun Dec 23 13:40:51 2007 +0000 - - Updated Arabic Translation by Djihed Afifi. - - svn path=/trunk/; revision=7800 - - po/ChangeLog | 4 + - po/ar.po | 845 ++++++++++++++++++++++++----------------------------------- - 2 files changed, 342 insertions(+), 507 deletions(-) - -commit b9102ade3c15c45b662543a0a89fe3e3c5f94e86 -Author: Jorge Gonzalez Gonzalez -Date: Sun Dec 23 12:59:11 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7799 - - help/ChangeLog | 4 + - help/es/es.po | 407 +++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 224 insertions(+), 187 deletions(-) - -commit cbae98f4fc0dd4986b0086ea881e5bfd3ecb2914 -Author: Jorge Gonzalez Gonzalez -Date: Sun Dec 23 12:39:10 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7798 - - po/ChangeLog | 4 ++ - po/es.po | 180 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 103 insertions(+), 81 deletions(-) - -commit f80bb17f45f986594db9cbfdfb5c4af070c7fa5e -Author: Xan Lopez -Date: Sat Dec 22 18:26:10 2007 +0000 - - Also fix parent instance/class for MozillaEmbed. - - svn path=/trunk/; revision=7797 - - embed/mozilla/mozilla-embed.cpp | 1 - - embed/mozilla/mozilla-embed.h | 5 +++-- - 2 files changed, 3 insertions(+), 3 deletions(-) - -commit 3a7d27a4a1e80c7beadebd36905363dc9488fe9d -Author: Xan Lopez -Date: Sat Dec 22 02:14:34 2007 +0000 - - Fix parent class/instance types. - - svn path=/trunk/; revision=7796 - - embed/webkit/webkit-embed.h | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 9bcf221c42b75b4fcedbbbbc5b7e9ec040d70efd -Author: Xan Lopez -Date: Sat Dec 22 02:14:19 2007 +0000 - - Implement clipboard operations for WebKit. - - svn path=/trunk/; revision=7795 - - embed/ephy-command-manager.c | 87 ++++++++++++++++++++++++-------------------- - embed/webkit/webkit-embed.c | 17 +++++++++ - 2 files changed, 65 insertions(+), 39 deletions(-) - -commit 6adb4570e797dcafcd865fd67e489766294a2f8b -Author: Cosimo Cecchi -Date: Fri Dec 21 08:55:25 2007 +0000 - - Adds a "Clear All" dialog to clear all the privacy information, and a help - section explaining its usage. Close bug #148314. - - svn path=/trunk/; revision=7793 - - data/glade/epiphany.glade | 226 ++++++++--------------- - help/C/epiphany.xml | 15 ++ - src/pdm-dialog.c | 446 ++++++++++++++++++++++++++++------------------ - src/pdm-dialog.h | 13 ++ - src/prefs-dialog.c | 17 +- - 5 files changed, 385 insertions(+), 332 deletions(-) - -commit bcc23108bc5e8653a31744b3d758334681d899f2 -Author: Matej Urbančič -Date: Thu Dec 20 14:01:08 2007 +0000 - - Updated Slovenian translation - - svn path=/trunk/; revision=7792 - - po/sl.po | 192 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 99 insertions(+), 93 deletions(-) - -commit ea01b45780e5e3eecb2a55b94af5b541c20322be -Author: Cosimo Cecchi -Date: Wed Dec 19 21:46:55 2007 +0000 - - Middle click on entries in History Window and Bookmark Editor opens the page - in a new tab. Close bug #385037. - - svn path=/trunk/; revision=7791 - - src/bookmarks/ephy-bookmarks-editor.c | 23 +++++++++++++++++++++++ - src/ephy-history-window.c | 23 +++++++++++++++++++++++ - 2 files changed, 46 insertions(+) - -commit 77a871ac0d7fe76058362e081a150d09f1b92873 -Author: Kjartan Maraas -Date: Wed Dec 19 13:52:31 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-12-19 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7790 - - po/ChangeLog | 4 ++ - po/nb.po | 153 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 88 insertions(+), 69 deletions(-) - -commit 0bc6ffc2af135696f6c83f995f3a32c863cb0a7a -Author: Cosimo Cecchi -Date: Tue Dec 18 22:50:00 2007 +0000 - - Hide the Toolbar Editor, if active, when switching to Fullscreen mode. - Bug #163762. - - svn path=/trunk/; revision=7789 - - src/window-commands.c | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -commit 673feea53e857516a0e77ab2eefe21aba98708e0 -Author: Reinout van Schouwen -Date: Tue Dec 18 21:48:27 2007 +0000 - - Updated Dutch translation - - 2007-12-18 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=7788 - - po/ChangeLog | 4 + - po/nl.po | 277 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 174 insertions(+), 107 deletions(-) - -commit 7f230dfb6f7b03f9fa915a239f306f4ff639e1e4 -Author: Jorge Gonzalez Gonzalez -Date: Tue Dec 18 20:26:54 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7787 - - po/ChangeLog | 4 ++ - po/es.po | 126 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 70 insertions(+), 60 deletions(-) - -commit c11f1cdf6ca0da2844899675f2578892e05d29d7 -Author: Cosimo Cecchi -Date: Tue Dec 18 18:45:27 2007 +0000 - - Readd "Add to Bookmark" entry to the document context menu. - Bug #332968. - - svn path=/trunk/; revision=7786 - - data/ui/epiphany-ui.xml | 2 ++ - src/ephy-window.c | 5 +++++ - 2 files changed, 7 insertions(+) - -commit 530408cbb0c062810157d74ee80c4255cc1e86a3 -Author: Cosimo Cecchi -Date: Tue Dec 18 18:41:48 2007 +0000 - - Indentation fix for previous commit. - - svn path=/trunk/; revision=7785 - - src/bookmarks/ephy-bookmark-action.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit d5791e21d37596e3592f04951829edf982e036cd -Author: Cosimo Cecchi -Date: Tue Dec 18 18:38:45 2007 +0000 - - Add middle-click-paste for smart bookmarks, as it is for new tab/window - buttons. Close bug #378165. - - svn path=/trunk/; revision=7784 - - src/bookmarks/ephy-bookmark-action.c | 69 ++++++++++++++++++++++++++++++++++++ - 1 file changed, 69 insertions(+) - -commit b9a140070c403f21637c4713d070c99ad0d05fcb -Author: Priit Laes -Date: Tue Dec 18 09:31:36 2007 +0000 - - Translation updated by Ivar Smolin. - - 2007-12-18 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - svn path=/trunk/; revision=7783 - - po/ChangeLog | 4 ++++ - po/et.po | 67 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 41 insertions(+), 30 deletions(-) - -commit 09f44a93f017dd0d703d967a4fec043fa4d9986e -Author: Alp Toker -Date: Mon Dec 17 23:40:13 2007 +0000 - - Track WebKit upstream API changes r28817, r28818 - - This makes current location and page title updates work more consistently. - - svn path=/trunk/; revision=7782 - - embed/webkit/webkit-embed.c | 22 ++++++++++++++++------ - 1 file changed, 16 insertions(+), 6 deletions(-) - -commit 9b1d0da2bce4dbf9996f82c6647d079e9b4c15a0 -Author: Xan Lopez -Date: Mon Dec 17 22:58:59 2007 +0000 - - Constify char* parameter for ephy_base_embed_location_changed. - - svn path=/trunk/; revision=7781 - - embed/ephy-base-embed.c | 2 +- - embed/ephy-base-embed.h | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 0d1b48d97783fd0b798b4ff4878d30eb1ad4524d -Author: Luca Ferretti -Date: Mon Dec 17 13:23:08 2007 +0000 - - "Backported" Italian translation from gnome-2-20 - - 2007-12-17 Luca Ferretti - - * it.po: "Backported" Italian translation from gnome-2-20 - - - svn path=/trunk/; revision=7780 - - po/ChangeLog | 4 + - po/it.po | 1550 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 898 insertions(+), 656 deletions(-) - -commit 96b552b0fe9b2d8260c872915ab7146cdfe86780 -Author: Diego Escalante Urrelo -Date: Mon Dec 17 00:27:18 2007 +0000 - - Enable our filechooser by default, now the default builds will have nice image - previews in the filechooser. Read: nice previews when uploading pictures. - - - svn path=/trunk/; revision=7779 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2effa8540bf73f1e9b9d6d9e79c7fa70669cd02b -Author: Christian Persch -Date: Sun Dec 16 13:28:52 2007 +0000 - - Post release version bump. - - svn path=/trunk/; revision=7778 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c7eb6ec2b2cc81b24acfe2b838ce2a941011258e -Author: Christian Persch -Date: Sun Dec 16 13:28:09 2007 +0000 - - Release 2.21.4. - - svn path=/trunk/; revision=7776 - - configure.ac | 2 +- - doc/reference/epiphany-sections.txt | 26 --- - doc/reference/epiphany.types | 2 - - doc/reference/tmpl/EphySingle.sgml | 1 + - doc/reference/tmpl/ephy-embed.sgml | 51 ++--- - doc/reference/tmpl/ephy-shell.sgml | 2 +- - doc/reference/tmpl/ephy-window.sgml | 85 --------- - doc/reference/tmpl/epiphany-unused.sgml | 326 ++++++++++++++++++++++++++++++++ - embed/xulrunner/Makefile.am | 2 + - 9 files changed, 344 insertions(+), 153 deletions(-) - -commit d0aed0ccbcb643becd76083b9dfc2cd5bfa35119 -Author: Christian Persch -Date: Sun Dec 16 12:55:42 2007 +0000 - - Add comment. - - svn path=/trunk/; revision=7775 - - data/default-prefs-common.js | 1 + - 1 file changed, 1 insertion(+) - -commit 06a06271154d13ab82f33fa94fc3c77f224ee620 -Author: Christian Persch -Date: Sun Dec 16 12:55:20 2007 +0000 - - Don't store the tabs menu accels in the accel map file. - - svn path=/trunk/; revision=7774 - - src/ephy-tabs-menu.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit dab0cdaea31817d068bf6920442625151219975d -Author: Christian Persch -Date: Sun Dec 16 12:55:03 2007 +0000 - - Fix comment. - - svn path=/trunk/; revision=7773 - - embed/mozilla/GeckoPrintService.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7032f54c0a80919ed03f99ebb352c14af84b44f9 -Author: Reinout van Schouwen -Date: Sun Dec 16 01:11:57 2007 +0000 - - Update NEWS for 2.21.4 - - svn path=/trunk/; revision=7772 - - NEWS | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----- - 1 file changed, 81 insertions(+), 6 deletions(-) - -commit 0b3aed6f73d1fd39483d643a2c7a668169b55071 -Author: Xan Lopez -Date: Sat Dec 15 23:32:46 2007 +0000 - - Update NEWS. - - svn path=/trunk/; revision=7771 - - NEWS | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 54 insertions(+) - -commit 35091c520945311fce0b010127bf90b2d93a08a9 -Author: Kjartan Maraas -Date: Sat Dec 15 11:17:35 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-12-15 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7770 - - po/ChangeLog | 4 ++++ - po/nb.po | 67 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 38 insertions(+), 33 deletions(-) - -commit 5a27dd89dd6f0740828407b11476164a529e0eaf -Author: Xan Lopez -Date: Sat Dec 15 00:02:06 2007 +0000 - - Do not call webkit_init() (it's going away soon) and only - include . - - svn path=/trunk/; revision=7769 - - embed/webkit/webkit-embed-single.c | 4 +--- - embed/webkit/webkit-embed.c | 3 +-- - 2 files changed, 2 insertions(+), 5 deletions(-) - -commit f8efeac9084ebe30118e0fcaeab727b4790fa4a6 -Author: Leonardo Ferreira Fontenelle -Date: Fri Dec 14 00:03:06 2007 +0000 - - Translation of "status bar" fixed by Rodrigo Flores. - - 2007-12-13 Leonardo Ferreira Fontenelle - - * pt_BR.po: Translation of "status bar" fixed by Rodrigo Flores. - - svn path=/trunk/; revision=7768 - - po/ChangeLog | 4 ++++ - po/pt_BR.po | 9 +++++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit bc8153955ea7f7daaff1125cd793d4df093c3092 -Author: Matej Urbančič -Date: Mon Dec 10 15:23:05 2007 +0000 - - Updated Slovenian translation - - svn path=/trunk/; revision=7766 - - po/ChangeLog | 4 + - po/sl.po | 360 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 216 insertions(+), 148 deletions(-) - -commit f61efccd9e03b0a3d0a9f88d236eae91d95f9eb3 -Author: Xan Lopez -Date: Sun Dec 9 23:02:45 2007 +0000 - - Small cleanup in webkit-embed-persist.c - - svn path=/trunk/; revision=7765 - - embed/webkit/webkit-embed-persist.c | 57 ++++++++++++++----------------------- - 1 file changed, 21 insertions(+), 36 deletions(-) - -commit 04d807546492d1dc26d75faf184e1face508a128 -Author: Xan Lopez -Date: Sun Dec 9 22:05:34 2007 +0000 - - Rename cpp files to c in the WebKit backend; they are pure C. - - Also fix a couple of compiler warnings. - - svn path=/trunk/; revision=7764 - - embed/webkit/Makefile.am | 8 +- - embed/webkit/webkit-embed-find.c | 105 +++++++ - embed/webkit/webkit-embed-find.cpp | 105 ------- - embed/webkit/webkit-embed-persist.c | 92 ++++++ - embed/webkit/webkit-embed-persist.cpp | 90 ------ - embed/webkit/webkit-embed-single.c | 361 ++++++++++++++++++++++++ - embed/webkit/webkit-embed-single.cpp | 361 ------------------------ - embed/webkit/webkit-embed.c | 516 ++++++++++++++++++++++++++++++++++ - embed/webkit/webkit-embed.cpp | 516 ---------------------------------- - 9 files changed, 1078 insertions(+), 1076 deletions(-) - -commit 98ca0fc609810f0024179654484f8428fa50d020 -Author: Jorge Gonzalez Gonzalez -Date: Sun Dec 9 18:56:59 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7763 - - po/ChangeLog | 4 ++++ - po/es.po | 64 ++++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 40 insertions(+), 28 deletions(-) - -commit 34b80c1f8b7baf32d4cdb15c9f9b27a9a7db1843 -Author: Cosimo Cecchi -Date: Sat Dec 8 01:21:52 2007 +0000 - - Add "node-middle-clicked" signal to EphyNodeView. - Part of bug #385037. - - svn path=/trunk/; revision=7762 - - lib/widgets/ephy-node-view.c | 37 +++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-node-view.h | 1 + - 2 files changed, 38 insertions(+) - -commit 54c4609eb6687162156907152a34e2f7c6f29e8c -Author: Cosimo Cecchi -Date: Sat Dec 8 01:17:29 2007 +0000 - - Add secondary text in confirmation dialogs for "Remove All" items in the PDM. - Fix bug #499074. - - svn path=/trunk/; revision=7761 - - src/pdm-dialog.c | 18 ++++++++++++------ - 1 file changed, 12 insertions(+), 6 deletions(-) - -commit 458857bb5003820eefa9880901cd9b4e388b5898 -Author: Diego Escalante Urrelo -Date: Fri Dec 7 21:46:20 2007 +0000 - - Remove a FIXME in ephy_file_delete_directory. The function is already - implemented. - - - svn path=/trunk/; revision=7760 - - lib/ephy-file-helpers.c | 1 - - 1 file changed, 1 deletion(-) - -commit ea3896d0f1b35d4b9cdab9332ab14e0f4c465fe0 -Author: Kjartan Maraas -Date: Thu Dec 6 18:54:29 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-12-06 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7759 - - po/ChangeLog | 4 + - po/nb.po | 1037 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 470 insertions(+), 571 deletions(-) - -commit c0edc319578af1b133ee5576c1ff56e0aabacf81 -Author: Jorge Gonzalez Gonzalez -Date: Thu Dec 6 13:15:36 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7758 - - po/ChangeLog | 4 ++++ - po/es.po | 12 ++++++------ - 2 files changed, 10 insertions(+), 6 deletions(-) - -commit 209601dc4749df3cbc4e9dd88b04106c3abc349e -Author: Vasiliy Faronov -Date: Thu Dec 6 08:53:07 2007 +0000 - - Updated Russian translation. - - 2007-12-06 Vasiliy Faronov - - * ru.po: Updated Russian translation. - - - svn path=/trunk/; revision=7757 - - po/ChangeLog | 4 ++++ - po/ru.po | 41 +++++++++++++++++++++-------------------- - 2 files changed, 25 insertions(+), 20 deletions(-) - -commit 73cdd6dd2086669f2bccc29d25b364f5b4932a87 -Author: Vasiliy Faronov -Date: Thu Dec 6 08:38:06 2007 +0000 - - Updated Russian translation. - - 2007-12-06 Vasiliy Faronov - - * ru/ru.po: Updated Russian translation. - - - svn path=/trunk/; revision=7756 - - help/ChangeLog | 4 + - help/ru/ru.po | 3058 +++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1586 insertions(+), 1476 deletions(-) - -commit d0d11ae9735f6fa291763148eff44fee48c8fa1b -Author: Leonardo Ferreira Fontenelle -Date: Wed Dec 5 22:25:02 2007 +0000 - - Fixes in Brazilian Portugues translation. This version was imported from - - 2007-12-05 Leonardo Ferreira Fontenelle - - * pt_BR.po: Fixes in Brazilian Portugues translation. This version was - imported from trunk gnome-2-20. - - svn path=/trunk/; revision=7755 - - po/ChangeLog | 5 + - po/pt_BR.po | 1091 ++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 729 insertions(+), 367 deletions(-) - -commit 0133466dd531d41384946a27bd3719dbe381433c -Author: Gil Forcada Codinachs -Date: Tue Dec 4 19:49:42 2007 +0000 - - Updated Catalan translation - - svn path=/trunk/; revision=7753 - - help/ChangeLog | 4 + - help/ca/ca.po | 3067 ++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 2190 insertions(+), 881 deletions(-) - -commit ce1e46ef7e12e05d498de1a2942452f5567f4417 -Author: Priit Laes -Date: Mon Dec 3 09:26:17 2007 +0000 - - Translation updated by Priit Laes. - - 2007-12-03 Priit Laes - - * et.po: Translation updated by Priit Laes. - - svn path=/trunk/; revision=7752 - - po/ChangeLog | 4 ++++ - po/et.po | 8 ++++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit 4244ab79a122a171c97f3eded1f02e7aaa754d5c -Author: Priit Laes -Date: Mon Dec 3 09:17:20 2007 +0000 - - Translation updated by Ivar Smolin. - - 2007-12-03 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - svn path=/trunk/; revision=7751 - - po/ChangeLog | 4 ++++ - po/et.po | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++-------- - 2 files changed, 71 insertions(+), 10 deletions(-) - -commit 1a91dfd77a2e28d6785d50f6039e52bc6902c383 -Author: Djihed Afifi -Date: Sun Dec 2 22:18:18 2007 +0000 - - Updated Arabic Translation by Djihed Afifi. - - svn path=/trunk/; revision=7750 - - po/ar.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e96a303943ca7873a91ab9b51270684c7ece28ad -Author: Djihed Afifi -Date: Sun Dec 2 22:14:42 2007 +0000 - - Updated Arabic Translation by Djihed Afifi. - - svn path=/trunk/; revision=7749 - - po/ChangeLog | 4 + - po/ar.po | 1348 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 823 insertions(+), 529 deletions(-) - -commit e257581d0c4c91106de72c5a4e7b80f3e26f5062 -Author: Jan Michael C. Alonzo -Date: Sun Dec 2 21:31:33 2007 +0000 - - configure.ac: remove leading Xs in conditionals (with 2 exceptions) - - http://bugzilla.gnome.org/show_bug.cgi?id=501108 - - modified: configure.ac - - svn path=/trunk/; revision=7748 - - configure.ac | 36 ++++++++++++++++++------------------ - 1 file changed, 18 insertions(+), 18 deletions(-) - -commit e49a834ebf6d29f1ec19e96bdc2b77182157ce7a -Author: Jan Michael C. Alonzo -Date: Sun Dec 2 20:19:33 2007 +0000 - - Fix configure summary output for both mozilla and webkit - - http://bugzilla.gnome.org/show_bug.cgi?id=478196 - - modified: configure.ac - - svn path=/trunk/; revision=7747 - - configure.ac | 36 +++++++++++++++++++++++------------- - 1 file changed, 23 insertions(+), 13 deletions(-) - -commit 3233547f85c9f6776c63605b889b808174b17b94 -Author: Cosimo Cecchi -Date: Sun Dec 2 20:11:21 2007 +0000 - - Update epiphany.schemas.in according to the changes in bug #380156. - Fix bug #132808. - - svn path=/trunk/; revision=7746 - - data/epiphany.schemas.in | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 75936de9b8d6f91ba8f58b715e0858b1cda4cce8 -Author: Changwoo Ryu -Date: Sun Dec 2 15:41:52 2007 +0000 - - Updated Korean translation. - - svn path=/trunk/; revision=7745 - - po/ChangeLog | 4 + - po/ko.po | 1562 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 866 insertions(+), 700 deletions(-) - -commit 120dd13132c3c4a9472bf3d3a02069dcba7b8b4e -Author: Jan Michael C. Alonzo -Date: Sat Dec 1 19:19:07 2007 +0000 - - Squashed commit of the following: - - commit 8ee24f8e307d08d90a7caedf570831c1cab9f708 - Author: Jan Michael Alonzo - Date: Sun Dec 2 06:19:44 2007 +1100 - - wrap EphyEmbedContainer interface - - - http://bugzilla.gnome.org/show_bug.cgi?id=500729 - - svn path=/trunk/; revision=7744 - - src/epiphany.defs | 6 ++++++ - src/epiphany.override | 1 + - 2 files changed, 7 insertions(+) - -commit 3103aeda512d83cbf7217c768839307bd902eb9e -Author: Jorge Gonzalez Gonzalez -Date: Sat Dec 1 13:16:35 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7743 - - po/ChangeLog | 4 ++++ - po/es.po | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++------ - 2 files changed, 71 insertions(+), 7 deletions(-) - -commit cf99c5c81f975529a52437a1071b35a756986a36 -Author: Ihar Hrachyshka -Date: Sat Dec 1 12:49:40 2007 +0000 - - Updated Belarusian Latin translation. - - svn path=/trunk/; revision=7742 - - po/ChangeLog | 4 + - po/be@latin.po | 319 +++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 188 insertions(+), 135 deletions(-) - -commit b2abecbc72ff6497c3bea29f9e7b9cc1c2e68b7a -Author: Ignacio Casal Quinteiro -Date: Sat Dec 1 10:59:24 2007 +0000 - - Updated Galician Translation. Updated. - - 2007-12-01 Ignacio Casal Quinteiro - - * gl.po: Updated Galician Translation. - * POTFILES.in: Updated. - - - svn path=/trunk/; revision=7741 - - po/ChangeLog | 5 + - po/POTFILES.in | 2 + - po/gl.po | 848 +++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 471 insertions(+), 384 deletions(-) - -commit df3cc79505791b7e4734081063cf86cef07cb1ec -Author: Alp Toker -Date: Sat Dec 1 04:50:17 2007 +0000 - - Match WebKit/GTK+ API changes made in WebKit SVN r28273 - - http://bugs.webkit.org/show_bug.cgi?id=15691 - [GTK] Public API does not follow GTK+ conventions - - This change is part of the current API stabilization effort. - - svn path=/trunk/; revision=7740 - - embed/webkit/webkit-embed-single.cpp | 2 +- - embed/webkit/webkit-embed.cpp | 66 ++++++++++++++++++------------------ - 2 files changed, 34 insertions(+), 34 deletions(-) - -commit 390ae1dcd34b51ee017ff4e61358610112dbe155 -Author: Christian Persch -Date: Wed Nov 28 20:35:21 2007 +0000 - - Need to put the parent struct first. - - svn path=/trunk/; revision=7739 - - embed/ephy-embed-container.h | 2 ++ - 1 file changed, 2 insertions(+) - -commit 5b940502348437401c52b30226cc2bcfe20b3669 -Author: Xan Lopez -Date: Mon Nov 26 19:37:14 2007 +0000 - - Initialize the title property to "Blank page" in EphyBaseEmbed. - - Bug #499803 - - svn path=/trunk/; revision=7732 - - embed/ephy-base-embed.c | 1 + - 1 file changed, 1 insertion(+) - -commit a7e817b014d1f6230bf1b3ce11a7bdf1bfc16439 -Author: Alexander Shopov -Date: Mon Nov 26 06:06:58 2007 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2007-11-26 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - svn path=/trunk/; revision=7731 - - po/ChangeLog | 5 + - po/bg.po | 829 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 434 insertions(+), 400 deletions(-) - -commit dcf754740e427c738db36f07f9f870fde51dfa85 -Author: Cosimo Cecchi -Date: Sun Nov 25 13:47:48 2007 +0000 - - Fix empty line on bookmark tooltip when bookmark has no title. - Close bug #499226. - - svn path=/trunk/; revision=7730 - - src/bookmarks/ephy-bookmark-action.c | 26 +++++++++++++++++++++----- - 1 file changed, 21 insertions(+), 5 deletions(-) - -commit 3fe2c03487ea3931f78c25dd4c090ffe89ed8d28 -Author: Priit Laes -Date: Sun Nov 25 11:21:00 2007 +0000 - - Translation updated by Ivar Smolin. - - 2007-11-25 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - svn path=/trunk/; revision=7729 - - po/ChangeLog | 4 + - po/et.po | 234 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 123 insertions(+), 115 deletions(-) - -commit 3f41f4032491af706e3f89eddded12de2db8c3fa -Author: Gabor Kelemen -Date: Sat Nov 24 19:26:26 2007 +0000 - - Translation updated - - 2007-11-24 Gabor Kelemen - - * hu.po: Translation updated - - - svn path=/trunk/; revision=7728 - - po/ChangeLog | 4 + - po/hu.po | 838 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 438 insertions(+), 404 deletions(-) - -commit 6e82388abf621337e90b6928bc6c30251c3d7e2f -Author: Jorge Gonzalez Gonzalez -Date: Fri Nov 23 18:24:04 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7727 - - po/ChangeLog | 4 + - po/es.po | 237 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 123 insertions(+), 118 deletions(-) - -commit 5686847d5d0e859d410520b5e423b90da32a20b6 -Author: Reinout van Schouwen -Date: Thu Nov 22 23:44:37 2007 +0000 - - nl.po: U - - svn path=/trunk/; revision=7726 - - po/nl.po | 839 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 444 insertions(+), 395 deletions(-) - -commit b2087f41f64679f3f300ed5af74aef285327d6b8 -Author: Reinout van Schouwen -Date: Thu Nov 22 21:17:26 2007 +0000 - - 2007-11-22 Reinout van Schouwen - - * 2007-11-22 Reinout van Schouwen - - - bookmarks/ephy-bookmark-action.c: - unbreak the build. Use g_strdup_printf. - - - svn path=/trunk/; revision=7725 - - src/bookmarks/ephy-bookmark-action.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 350d1f313fe81a3962c8546c4c98e4298a5c579b -Author: Reinout van Schouwen -Date: Thu Nov 22 20:58:58 2007 +0000 - - 2007-11-22 Reinout van Schouwen - - * 2007-11-22 Reinout van Schouwen - - - bookmarks/ephy-bookmark-action.c: reword tooltip. - Followup to http://bugzilla.gnome.org/show_bug.cgi?id=492695 - - - svn path=/trunk/; revision=7724 - - src/bookmarks/ephy-bookmark-action.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 24c1522eeda698e258940fe4dd44aae1af2d5fc9 -Author: Yannig MARCHEGAY -Date: Wed Nov 21 18:38:00 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7723 - - help/oc/oc.po | 27 +++++++++++++-------------- - po/ChangeLog | 4 ++++ - po/oc.po | 15 +++++++-------- - 3 files changed, 24 insertions(+), 22 deletions(-) - -commit ab574dad7a0d2ab8d3cb3da744b96265c17e0b07 -Author: Hendrik Richter -Date: Wed Nov 21 11:51:59 2007 +0000 - - Updated German translation. - - 2007-11-21 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=7721 - - po/de.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit e012a997f830f572d52b3540db9888f59fe5edcf -Author: Yannig MARCHEGAY -Date: Tue Nov 20 21:27:11 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7720 - - help/oc/oc.po | 58 ++++++++++++++++++++++-------------------------- - po/oc.po | 71 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 60 insertions(+), 69 deletions(-) - -commit 251fa13144d46959620edfcac81f968281dafff5 -Author: Cosimo Cecchi -Date: Sun Nov 18 23:53:16 2007 +0000 - - Adds a EPHY_NODE_VIEW_ELLIPSIZED flag and make history window and - bookmarks editor views use it to display address and title columns. - Fix bug #132808. - - svn path=/trunk/; revision=7719 - - lib/widgets/ephy-node-view.c | 6 ++++++ - lib/widgets/ephy-node-view.h | 3 ++- - src/bookmarks/ephy-bookmarks-editor.c | 7 +++++-- - src/ephy-history-window.c | 6 ++++-- - 4 files changed, 17 insertions(+), 5 deletions(-) - -commit 017dbb24e54f1afe065543ab1d6de5ea9a698be2 -Author: Cosimo Cecchi -Date: Sun Nov 18 23:51:54 2007 +0000 - - Fix a bug in EphyNodeView which caused weird problems when setting columns - as resizable; thanks to Kristian Rietveld for finding out the cause. - Make history window columns resizable and bookmarks editor columns resizable - and sortable. Part of bug #132808. - - svn path=/trunk/; revision=7718 - - lib/widgets/ephy-node-view.c | 5 +++++ - src/bookmarks/ephy-bookmarks-editor.c | 11 +++++++++-- - src/ephy-history-window.c | 9 ++++++--- - 3 files changed, 20 insertions(+), 5 deletions(-) - -commit d0b69001b4244546c0a2f3adf45bb0401b2d7454 -Author: Xan Lopez -Date: Sun Nov 18 01:18:06 2007 +0000 - - Move EphyNotebook to G_DEFINE_TYPE. - - svn path=/trunk/; revision=7717 - - src/ephy-notebook.c | 75 ++++++++++++++--------------------------------------- - 1 file changed, 19 insertions(+), 56 deletions(-) - -commit af850aee2ba02a59abe0f4e4292b7782a64ea975 -Author: Xan Lopez -Date: Sat Nov 17 21:10:59 2007 +0000 - - Use go_back and go_forward methods for navigation. - - Instead of jumping to -1 and +1 in the history. Less code, - and it even works in WebKit :) - - svn path=/trunk/; revision=7716 - - src/ephy-navigation-action.c | 7 ++----- - 1 file changed, 2 insertions(+), 5 deletions(-) - -commit 64ba9717557ffe2428b29d79c8efed6fcbf4bbd7 -Author: Xan Lopez -Date: Sat Nov 17 20:53:31 2007 +0000 - - Remove unused variable in WebKitEmbed class_init. - - svn path=/trunk/; revision=7715 - - embed/webkit/webkit-embed.cpp | 1 - - 1 file changed, 1 deletion(-) - -commit 7e745ce0ba0c2033a17bff04eb71e14ac59495c7 -Author: Xan Lopez -Date: Sat Nov 17 20:51:33 2007 +0000 - - Fix vfunc for get_visibility in EphyEmbed interface. - - svn path=/trunk/; revision=7714 - - embed/ephy-embed.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 063c5e84a89f8c14e56bcf53741cbd173eb6444d -Author: Xan Lopez -Date: Sat Nov 17 20:42:46 2007 +0000 - - Move size-to code to the gecko backend. - - Last part of bug #490672 - - svn path=/trunk/; revision=7713 - - embed/mozilla/mozilla-embed.cpp | 137 ++++++++++++++++++++++++++++++++++++++++ - src/ephy-window.c | 75 +--------------------- - 2 files changed, 138 insertions(+), 74 deletions(-) - -commit adfea7bd0eb8a34d64d98cc215a0c97bf9465633 -Author: Xan Lopez -Date: Sat Nov 17 17:11:40 2007 +0000 - - Put visibility property into EphyBaseEmbed, we need it for popups. - - svn path=/trunk/; revision=7712 - - embed/ephy-base-embed.c | 33 +++++++++++++++++++++++++++++++++ - embed/ephy-base-embed.h | 2 ++ - embed/ephy-embed.c | 16 ++++++++++++++++ - embed/ephy-embed.h | 2 ++ - embed/mozilla/mozilla-embed.cpp | 16 +++++++++++++++- - src/ephy-window.c | 19 +++++++++++++++++++ - 6 files changed, 87 insertions(+), 1 deletion(-) - -commit 44b538bb4dfcdd9d8989b8777c699f08dd034061 -Author: Xan Lopez -Date: Sat Nov 17 13:51:42 2007 +0000 - - Re-enable popup management code in EphyBaseEmbed. - - Plus a small bugfix in MozillaEmbed about GtkMozembed vs. EphyEmbed - confusion. - - svn path=/trunk/; revision=7711 - - embed/ephy-base-embed.c | 618 ++++++++++++++++++++-------------------- - embed/ephy-base-embed.h | 3 + - embed/mozilla/mozilla-embed.cpp | 8 +- - 3 files changed, 312 insertions(+), 317 deletions(-) - -commit 5d59fe5c78d81f6bdb110376e6657a157e1a5623 -Author: Xan Lopez -Date: Fri Nov 16 23:52:33 2007 +0000 - - Rename EphyEmbedContainer implementations in EphyWindow. - - Do not use the ephy_window prefix for them, it's confusing. - Also, save the function call for get_active_child. - - svn path=/trunk/; revision=7710 - - src/ephy-window.c | 71 ++++++++++++++++++++++++++++--------------------------- - 1 file changed, 36 insertions(+), 35 deletions(-) - -commit 0ca10a9d903db72abe211959894721ea97e33de3 -Author: Xan Lopez -Date: Fri Nov 16 23:32:41 2007 +0000 - - Move print-preview property to EphyEmbedContainer interface. - - Also make it read-only and make the setter in EphyWindow semi-private for - now (should be removed eventually, making the window be notified from the - embed of the status). - - svn path=/trunk/; revision=7709 - - embed/ephy-embed-container.c | 4 ++ - src/ephy-window.c | 103 +++++++++++++++++++++---------------------- - src/ephy-window.h | 2 +- - src/epiphany.defs | 9 ---- - src/ppview-toolbar.c | 2 +- - src/window-commands.c | 2 +- - 6 files changed, 57 insertions(+), 65 deletions(-) - -commit b509828635066e0ce051fe77333acfb7d29d500f -Author: Christian Persch -Date: Fri Nov 16 19:40:51 2007 +0000 - - Rename param to "set_active". - - svn path=/trunk/; revision=7708 - - embed/ephy-embed-container.c | 8 +++++--- - embed/ephy-embed-container.h | 4 ++-- - 2 files changed, 7 insertions(+), 5 deletions(-) - -commit c8e725445775b36f1e25ff7148b4927ae24e8b89 -Author: Xan Lopez -Date: Fri Nov 16 19:16:23 2007 +0000 - - Yes, tabs. - - svn path=/trunk/; revision=7707 - - embed/ephy-embed-container.c | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit 7eadb5acd98f20acabb002f7975804dc5c5c8200 -Author: Xan Lopez -Date: Fri Nov 16 19:14:38 2007 +0000 - - Add type checkings in the EmbedContainer interface, not in the implementations. - - svn path=/trunk/; revision=7706 - - embed/ephy-embed-container.c | 47 +++++++++++++++++++++++++++++++++++++------- - src/ephy-window.c | 25 ++--------------------- - 2 files changed, 42 insertions(+), 30 deletions(-) - -commit bb91baf251c755a40fc3a167741797680fba5efb -Author: Xan Lopez -Date: Fri Nov 16 18:56:49 2007 +0000 - - Do not change session saving format ;) - - svn path=/trunk/; revision=7705 - - src/ephy-session.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 3a501b5211ea21b19b93a1574c916c5b3c375d3b -Author: Christian Persch -Date: Fri Nov 16 18:54:25 2007 +0000 - - Return the new tab's position. - - svn path=/trunk/; revision=7704 - - src/ephy-window.c | 6 ++---- - 1 file changed, 2 insertions(+), 4 deletions(-) - -commit bbc813a37feca5e67d2a69e6aba1cd39458660a6 -Author: Xan Lopez -Date: Fri Nov 16 18:53:41 2007 +0000 - - Move active-tab property to the embed-container interface. - - Rename it to active-child and fix a bug in the set_property function in - EphyWindow, where the wrong function was being called for this property. - - svn path=/trunk/; revision=7703 - - embed/ephy-embed-container.c | 4 ++++ - src/ephy-encoding-dialog.c | 2 +- - src/ephy-session.c | 4 ++-- - src/ephy-tabs-menu.c | 6 +++--- - src/ephy-window.c | 20 +++++++++----------- - 5 files changed, 19 insertions(+), 17 deletions(-) - -commit 7a04f9035bafcbaab6d01fe0cb65b0fa7bc7b6ad -Author: Xan Lopez -Date: Fri Nov 16 18:53:17 2007 +0000 - - Unbreak the build... - - svn path=/trunk/; revision=7702 - - src/ephy-window.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 1e2163bff26a32c04dc3f0df5d43b4f723929ca0 -Author: Cosimo Cecchi -Date: Fri Nov 16 18:11:40 2007 +0000 - - Use right GtkPaned API to pack history window vbox. - Fix bug #422947. - - svn path=/trunk/; revision=7701 - - src/ephy-history-window.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit c9587f416cc719e537c0f931531c1a64f2ce1ddc -Author: Xan Lopez -Date: Fri Nov 16 18:06:54 2007 +0000 - - Make EphyEmbedContainer add_child method return the child's new position inside the container. - - svn path=/trunk/; revision=7700 - - embed/ephy-embed-container.c | 5 +++-- - embed/ephy-embed-container.h | 4 ++-- - src/ephy-window.c | 4 +++- - 3 files changed, 8 insertions(+), 5 deletions(-) - -commit 41ca258bfd0ee58b63e4ac9dfb8d62c9a696f105 -Author: Xan Lopez -Date: Fri Nov 16 15:26:14 2007 +0000 - - Rename ephy_embed_container_jump_to_child to ephy_embed_container_set_active_child. - - svn path=/trunk/; revision=7699 - - embed/ephy-embed-container.c | 10 +++++----- - embed/ephy-embed-container.h | 8 ++++---- - src/ephy-tabs-menu.c | 2 +- - src/ephy-window.c | 10 +++++----- - src/epiphany.defs | 4 ++-- - 5 files changed, 17 insertions(+), 17 deletions(-) - -commit 7d550e78174ac29246872d51d25697cff4b837e8 -Author: Christian Persch -Date: Fri Nov 16 15:09:30 2007 +0000 - - Bump API version - - svn path=/trunk/; revision=7698 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit cbbff369a8192095890eaf27a31705048d8c7ee1 -Author: Xan Lopez -Date: Fri Nov 16 15:05:25 2007 +0000 - - Do not expose {add,remove}_child methods from EphyEmbedContainer to bindings. - - svn path=/trunk/; revision=7697 - - src/epiphany.defs | 20 -------------------- - 1 file changed, 20 deletions(-) - -commit f3996e6f0c634748adc7f43cd931b34d8e69aa63 -Author: Xan Lopez -Date: Fri Nov 16 15:03:19 2007 +0000 - - Untabify ephy-embed-container.h - - svn path=/trunk/; revision=7696 - - embed/ephy-embed-container.h | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit b7d6a7384621691379618b0be22bef0f58b30414 -Author: Xan Lopez -Date: Fri Nov 16 15:03:10 2007 +0000 - - And port all the callers in src/ - - svn path=/trunk/; revision=7695 - - src/ephy-encoding-dialog.c | 4 +++- - src/ephy-encoding-menu.c | 9 ++++++--- - src/ephy-extensions-manager.c | 11 ++++++++--- - src/ephy-location-action.c | 8 ++++++-- - src/ephy-lockdown.c | 4 +++- - src/ephy-navigation-action.c | 12 ++++++----- - src/ephy-session.c | 16 +++++++++------ - src/ephy-shell.c | 3 ++- - src/ephy-tabs-menu.c | 12 ++++++----- - src/ephy-toolbar.c | 3 ++- - src/popup-commands.c | 20 ++++++++++++------- - src/ppview-toolbar.c | 21 ++++++++++++-------- - src/prefs-dialog.c | 5 ++++- - src/window-commands.c | 46 +++++++++++++++++++++++++++---------------- - 14 files changed, 113 insertions(+), 61 deletions(-) - -commit 1b8bf4b88fb016020c822e5a9208a89ed8ebbdc4 -Author: Xan Lopez -Date: Fri Nov 16 15:03:01 2007 +0000 - - Change epiphany.defs - - svn path=/trunk/; revision=7694 - - src/epiphany.defs | 100 +++++++++++++++++++++++++++++------------------------- - 1 file changed, 53 insertions(+), 47 deletions(-) - -commit 2e808e88af575ff8900e97f1aab841f9bb6c9c2f -Author: Xan Lopez -Date: Fri Nov 16 15:02:54 2007 +0000 - - Port EphyWindow to the new interface. - - svn path=/trunk/; revision=7693 - - src/ephy-window.c | 396 ++++++++++++++++++++++++++---------------------------- - src/ephy-window.h | 17 --- - 2 files changed, 193 insertions(+), 220 deletions(-) - -commit 71adcae5c0d2fb7e7a9dad338f720be1e323e8a3 -Author: Xan Lopez -Date: Fri Nov 16 15:02:45 2007 +0000 - - Add EphyEmbedContainer. - - svn path=/trunk/; revision=7692 - - embed/Makefile.am | 2 + - embed/ephy-embed-container.c | 179 +++++++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed-container.h | 85 ++++++++++++++++++++ - 3 files changed, 266 insertions(+) - -commit 0fb9997e9b831c507e6ac60861eadc4b394c9659 -Author: Xan Lopez -Date: Fri Nov 16 15:02:36 2007 +0000 - - Use G_DEFINE_TYPE for EphyWindow. - - svn path=/trunk/; revision=7691 - - src/ephy-window.c | 69 ++++++++++++------------------------------------------- - 1 file changed, 15 insertions(+), 54 deletions(-) - -commit 2c76cc7dcc7dec0cb12db9f6115b728affa3da4e -Author: Christian Persch -Date: Thu Nov 15 16:20:29 2007 +0000 - - Remove EphyTab - - svn path=/trunk/; revision=7690 - - po/POTFILES.in | 1 - - 1 file changed, 1 deletion(-) - -commit ecea13e1e5b22120a70d30065a418b6138ac1b20 -Author: Priit Laes -Date: Thu Nov 15 11:59:50 2007 +0000 - - Translation updated by Ivar Smolin. - - 2007-11-15 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - svn path=/trunk/; revision=7689 - - po/ChangeLog | 4 ++++ - po/et.po | 47 +++++++++++------------------------------------ - 2 files changed, 15 insertions(+), 36 deletions(-) - -commit 9ea789cc3f50164fe524bdccbfa7bc13caff7870 -Author: Jan Michael C. Alonzo -Date: Wed Nov 14 10:43:50 2007 +0000 - - embed/ephy-history.h: build fix, missing comma - - svn path=/trunk/; revision=7688 - - embed/ephy-history.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d6350b598732e34420261238b01d2bfb187349c1 -Author: Xan Lopez -Date: Tue Nov 13 23:15:57 2007 +0000 - - Add icon-updated signal to EphyHistory. - - Use it to update the bookmarks icon, as it was done in EphyTab before. - - svn path=/trunk/; revision=7687 - - embed/ephy-base-embed.c | 5 ----- - embed/ephy-history.c | 16 ++++++++++++++- - embed/ephy-history.h | 45 ++++++++++++++++++++++-------------------- - src/bookmarks/ephy-bookmarks.c | 11 +++++++++++ - 4 files changed, 50 insertions(+), 27 deletions(-) - -commit 68a134b7bbdf147afca4d3b2ba361c73155bbeba -Author: Xan Lopez -Date: Tue Nov 13 22:36:43 2007 +0000 - - Uncomment icon update for history in EphyBaseEmbed, it works just fine. - - svn path=/trunk/; revision=7686 - - embed/ephy-base-embed.c | 13 +++++-------- - 1 file changed, 5 insertions(+), 8 deletions(-) - -commit 344bc7be01a6bcd2f6bdcf7346ce9a376877d304 -Author: Jorge Gonzalez Gonzalez -Date: Mon Nov 12 22:32:12 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7685 - - po/ChangeLog | 4 ++++ - po/es.po | 23 ++++++++++++----------- - 2 files changed, 16 insertions(+), 11 deletions(-) - -commit d7310bb0ae59995d04d97e8399406efddc7d94a6 -Author: Xan Lopez -Date: Mon Nov 12 22:06:45 2007 +0000 - - Remove last remainings of EphyTab. - - svn path=/trunk/; revision=7684 - - src/Makefile.am | 1 - - src/ephy-tab.c | 425 -------------------------------------------------------- - 2 files changed, 426 deletions(-) - -commit 7ceba0533fa430d7d84b08537f05f72ba56cf7e7 -Author: Jan Michael C. Alonzo -Date: Mon Nov 12 22:04:04 2007 +0000 - - Fix: http being appended to 'about' pages. (Bug #496136) - - svn path=/trunk/; revision=7683 - - embed/webkit/webkit-embed.cpp | 7 ++++--- - 1 file changed, 4 insertions(+), 3 deletions(-) - -commit 37ac990f35a9c94d37e79aaeedbb14c6f38afdbd -Author: Ihar Hrachyshka -Date: Mon Nov 12 21:55:16 2007 +0000 - - Updated Belarusian Latin translation. - - svn path=/trunk/; revision=7682 - - po/ChangeLog | 4 + - po/be@latin.po | 365 ++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 212 insertions(+), 157 deletions(-) - -commit 0536a421e1c6647e8d665a291a119588699a36d1 -Author: Xan Lopez -Date: Mon Nov 12 21:36:38 2007 +0000 - - Use load-status instead of net-stop in EphySession. - - Also added a type check in ephy_session_save for the session object. - - svn path=/trunk/; revision=7680 - - src/ephy-session.c | 53 ++++++++++++++++++++++++++++++----------------------- - 1 file changed, 30 insertions(+), 23 deletions(-) - -commit f6af5f861e72801975fbf03db9db66d75508645e -Author: Xan Lopez -Date: Mon Nov 12 20:50:19 2007 +0000 - - Don't connect to destroy-browser, we do nothing in the cb and it's GtkMozEmbed specific. - - svn path=/trunk/; revision=7679 - - src/ephy-window.c | 12 ------------ - 1 file changed, 12 deletions(-) - -commit 0777997cc8ede06e71e2b1783adb51d95705e11c -Author: Xan Lopez -Date: Mon Nov 12 20:41:16 2007 +0000 - - Fix backend name for WebKit and update docs in ephy_embed_single_get_backend_name. - - svn path=/trunk/; revision=7678 - - embed/ephy-embed-single.c | 2 +- - embed/webkit/webkit-embed-single.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 9345f8419eb679a8d1417c3f808fbb870c924d9a -Author: Jorge Gonzalez Gonzalez -Date: Mon Nov 12 19:43:38 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7677 - - po/ChangeLog | 4 ++ - po/es.po | 119 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 66 insertions(+), 57 deletions(-) - -commit 47896728c58048b0c81b3d94cec12679fd9af83b -Author: Priit Laes -Date: Mon Nov 12 19:20:51 2007 +0000 - - Translation updated by Ivar Smolin. - - 2007-11-12 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - svn path=/trunk/; revision=7676 - - po/ChangeLog | 4 ++ - po/et.po | 124 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 71 insertions(+), 57 deletions(-) - -commit 9ef14d370718dba8a9d2fdc4a163bec9e8e2660a -Author: Matej Urbančič -Date: Mon Nov 12 15:05:11 2007 +0000 - - Updated Slovenian translation - - svn path=/trunk/; revision=7675 - - po/ChangeLog | 4 + - po/sl.po | 749 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 380 insertions(+), 373 deletions(-) - -commit 39fb4a9ef1624004a7df24a79a403fa0d36dfd3c -Author: Jan Michael C. Alonzo -Date: Mon Nov 12 12:37:41 2007 +0000 - - Call webkit_init in engine initialization to avoid crashes. (Bug #496114) - - svn path=/trunk/; revision=7674 - - embed/webkit/webkit-embed-single.cpp | 4 ++++ - embed/webkit/webkit-embed.cpp | 2 -- - 2 files changed, 4 insertions(+), 2 deletions(-) - -commit 233e0a3956148836b879560954fb6dc22af72d27 -Author: Reinout van Schouwen -Date: Mon Nov 12 00:45:53 2007 +0000 - - 2007-11-12 Reinout van Schouwen - - * 2007-11-12 Reinout van Schouwen - - - mozilla/EphyAboutModule.cpp: - move comment one line down so it shows up in the .po files - - - svn path=/trunk/; revision=7673 - - embed/mozilla/EphyAboutModule.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 68d7ca69ec4f9d42563eb79c0e92a756943f83e1 -Author: Reinout van Schouwen -Date: Mon Nov 12 00:27:32 2007 +0000 - - 2007-11-12 Reinout van Schouwen - - * 2007-11-12 Reinout van Schouwen - - - mozilla/EphyAboutModule.cpp: - s/Epiphany/the web browser and add translator comment to - indicate that %s means LSB_DISTRIBUTOR - - - svn path=/trunk/; revision=7671 - - embed/mozilla/EphyAboutModule.cpp | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 4d37060f1f4c649bd67042aab4741935e21194c6 -Author: Cosimo Cecchi -Date: Mon Nov 12 00:26:36 2007 +0000 - - Sets page header and footer margins to a reasonable value when printing. - Workaround for bug #346110. Patch by Dale Parquette. - - svn path=/trunk/; revision=7670 - - data/default-prefs-common.js | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 3f9e582370ff438eecd77096b07de259e2e8561e -Author: Reinout van Schouwen -Date: Sun Nov 11 23:46:59 2007 +0000 - - 2007-11-12 Reinout van Schouwen - - * 2007-11-12 Reinout van Schouwen - - - glade/prefs-dialog.glade: add explanation label to "Only from sites you visit" radio button. - Fixes bug 493422. - - - svn path=/trunk/; revision=7669 - - data/glade/prefs-dialog.glade | 39 +++++++++++++++++++++++++++++++++++++++ - 1 file changed, 39 insertions(+) - -commit de2c912fc1e7a43022933d03e095af3fcb90b775 -Author: Xan Lopez -Date: Sun Nov 11 23:22:34 2007 +0000 - - Implement grab_focus in EphyBaseEmbed. - - We still need a custom implementation in MozillaEmbed because - the child of the embed won't exist until the widget is realized, - so there is no point in grabbing focus until then. - - svn path=/trunk/; revision=7668 - - embed/ephy-base-embed.c | 12 ++++++++++++ - embed/mozilla/mozilla-embed.cpp | 32 ++++++++++++++------------------ - embed/webkit/webkit-embed.cpp | 7 ------- - 3 files changed, 26 insertions(+), 25 deletions(-) - -commit a212aa82d4a2ceed4079543269f39c87dd35dbe0 -Author: Xan Lopez -Date: Sun Nov 11 23:19:05 2007 +0000 - - We don't inherit nothing from GtkMozEmbed anymore. - - svn path=/trunk/; revision=7667 - - embed/ephy-embed.h | 14 -------------- - 1 file changed, 14 deletions(-) - -commit d6a39a6a3d10867f31f73a6246e32404d9dc17d5 -Author: Xan Lopez -Date: Sun Nov 11 23:18:59 2007 +0000 - - Remove unused ge_content_changed. - - svn path=/trunk/; revision=7666 - - embed/ephy-embed.c | 20 -------------------- - embed/ephy-embed.h | 2 -- - embed/mozilla/mozilla-embed.cpp | 1 - - 3 files changed, 23 deletions(-) - -commit 0d4e69b6f75a8d341d83c7a8752254bc28d8dade -Author: Xan Lopez -Date: Sun Nov 11 23:18:49 2007 +0000 - - Remove unused ge_net_state and ge_security_change. - - svn path=/trunk/; revision=7665 - - embed/ephy-embed.c | 38 -------------------------------------- - embed/ephy-embed.h | 5 ----- - embed/mozilla/mozilla-embed.cpp | 2 -- - embed/webkit/webkit-embed.cpp | 3 --- - 4 files changed, 48 deletions(-) - -commit d698eb5b87aa10c888944fbf2db066af2df987bd -Author: Xan Lopez -Date: Sun Nov 11 23:18:40 2007 +0000 - - Remove unused ge-location signal. - - svn path=/trunk/; revision=7664 - - embed/ephy-embed.c | 21 --------------------- - embed/ephy-embed.h | 2 -- - embed/mozilla/mozilla-embed.cpp | 1 - - 3 files changed, 24 deletions(-) - -commit ec328b5c31da2accae0a52e47a259fb15c07ad8c -Author: Cyril Brulebois -Date: Sun Nov 11 22:37:37 2007 +0000 - - Hide Back/Forward buttons when disable_history lockdown key is enabled. Make - the call to gtk_widget_show() in editable toolbar's create_item_from_action() - conditional. Fixes bug #394795. - - svn path=/trunk/; revision=7663 - - lib/egg/egg-editable-toolbar.c | 6 +++++- - src/ephy-lockdown.c | 2 ++ - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e36d7612882a26dfafbf4aafb0a74a73af116a50 -Author: Daniel Nylander -Date: Sun Nov 11 19:09:06 2007 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=7662 - - po/sv.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit e3a8e6af7e74ba0cd72570442d5db2ccad0e2223 -Author: Jorge Gonzalez Gonzalez -Date: Sun Nov 11 12:55:04 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7661 - - po/ChangeLog | 4 +++ - po/es.po | 84 +++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 59 insertions(+), 29 deletions(-) - -commit 86d89b909f38fe697c07408ce4807ee22c055167 -Author: Daniel Nylander -Date: Sun Nov 11 10:43:57 2007 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=7660 - - po/ChangeLog | 4 + - po/sv.po | 712 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 375 insertions(+), 341 deletions(-) - -commit e8c24d29f7e029ccb1f271db4298785f8daa6436 -Author: Cyril Brulebois -Date: Sat Nov 10 22:06:43 2007 +0000 - - Add GTK_DISABLE_DEPRECATED back in DEPRECATION_FLAGS. Move the last - calls to gtk_entry_set_editable, gtk_menu_item_remove_submenu, and - gtk_tool_item_set_tooltip to the appropriate replacements in Gtk 2.12. - - svn path=/trunk/; revision=7659 - - configure.ac | 3 +-- - src/bookmarks/ephy-bookmark-properties.c | 7 ++++--- - src/bookmarks/ephy-topic-action.c | 2 +- - src/ephy-find-toolbar.c | 10 ++++------ - 4 files changed, 10 insertions(+), 12 deletions(-) - -commit 1d85bcfd7c4bbbebec88e7e33ca91937e67225c7 -Author: Xan Lopez -Date: Sat Nov 10 19:04:08 2007 +0000 - - Oops, readd missing variable. - - svn path=/trunk/; revision=7658 - - embed/webkit/webkit-embed.cpp | 1 + - 1 file changed, 1 insertion(+) - -commit c21c05379976d0ae9e2b77be596575dc9d9cd45d -Author: Xan Lopez -Date: Sat Nov 10 19:04:00 2007 +0000 - - Don't use mozilla-like variable names for parameters. - - svn path=/trunk/; revision=7657 - - embed/webkit/webkit-embed.cpp | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit eac6eeada11a90b7c6188709bdfeb3bcb1edc2e8 -Author: Xan Lopez -Date: Sat Nov 10 18:47:14 2007 +0000 - - Implement close for WebKitEmbed (simply destroys the widget). - - svn path=/trunk/; revision=7656 - - embed/webkit/webkit-embed.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 306de544871c8354af5a63e002633c2e987a1de2 -Author: Priit Laes -Date: Sat Nov 10 16:03:51 2007 +0000 - - Translation updated by Ivar Smolin. - - 2007-11-10 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - svn path=/trunk/; revision=7655 - - po/ChangeLog | 4 + - po/et.po | 547 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 295 insertions(+), 256 deletions(-) - -commit 9984e55435747f983fb2abc3491649af996fa196 -Author: Xan Lopez -Date: Sat Nov 10 15:17:16 2007 +0000 - - ge-search-key-press is in EphyEmbed, not GtkMozEmbed. - - svn path=/trunk/; revision=7654 - - embed/mozilla/mozilla-embed.cpp | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 604773e2759bc82dd4dd2ba7f68bc23dcaaf2f14 -Author: Cyril Brulebois -Date: Fri Nov 9 23:46:37 2007 +0000 - - Add a checkbox to enable case-sensitive search (disabled by default). No longer - rely on the presence of uppercase characters to activate case-sensitive search. - - svn path=/trunk/; revision=7653 - - src/ephy-find-toolbar.c | 92 ++++++++++++++++++++++++++++++++++++++++++++----- - 1 file changed, 84 insertions(+), 8 deletions(-) - -commit 606c5ee53ae91cd9f81939531d29b51ce73cf185 -Author: Cyril Brulebois -Date: Thu Nov 8 23:57:58 2007 +0000 - - Add a "Remove all" button to the Personal Data Manager for both the cookies and - the passwords. A confirmation dialogue is used. Addresses bug #148314. - - svn path=/trunk/; revision=7652 - - data/glade/epiphany.glade | 153 ++++++++++++++++++++++++++++++++++++++++- - src/pdm-dialog.c | 170 ++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 321 insertions(+), 2 deletions(-) - -commit ba3b608a5dafcd2efed4813815891829b223d9ca -Author: Jorge Gonzalez Gonzalez -Date: Thu Nov 8 14:21:35 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7651 - - po/ChangeLog | 4 ++++ - po/es.po | 8 ++++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit b9201a7443b185a4fb9279ae83f91c3a6addd384 -Author: Cyril Brulebois -Date: Thu Nov 8 03:23:36 2007 +0000 - - Add a space to the reload page alert - - svn path=/trunk/; revision=7650 - - embed/mozilla/EphyAboutModule.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ba11585ef79098af3658e0282faa1aba699f0983 -Author: Cyril Brulebois -Date: Thu Nov 8 00:09:43 2007 +0000 - - Trigger the ChangeLog generation during "make dist". - - svn path=/trunk/; revision=7649 - - Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -commit e566532e0f8a93bfa0595e112f170a61a022206b -Author: Cyril Brulebois -Date: Wed Nov 7 22:53:43 2007 +0000 - - Ship epiphany.{defs,override} regardless of whether python is enabled. Fixes bug #310811 - - svn path=/trunk/; revision=7648 - - src/Makefile.am | 14 +++----------- - 1 file changed, 3 insertions(+), 11 deletions(-) - -commit 04b24174b60f26d6c358945d3de12d668af1a6f7 -Author: Cosimo Cecchi -Date: Wed Nov 7 19:39:36 2007 +0000 - - Fix invalid cast and make the find toolbar work again after EphyBaseEmbed - transition. - - svn path=/trunk/; revision=7647 - - embed/mozilla/EphyFind.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit dab79777d8e125b7e7b472a93c1cf0188d7ccfca -Author: Jorge Gonzalez Gonzalez -Date: Wed Nov 7 08:46:52 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7645 - - po/ChangeLog | 4 + - po/es.po | 448 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 221 insertions(+), 231 deletions(-) - -commit e7844f9c20776b5417d22ba9f119546dad526982 -Author: Cosimo Cecchi -Date: Tue Nov 6 21:20:11 2007 +0000 - - Adds a NULL check to avoid passing illegal values to strtol in ephy-session. - Patch by Ed Catmur. Fix bug #493148. - - svn path=/trunk/; revision=7644 - - src/ephy-session.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 89a162f0b69c856e31d12350e1eb59935fd8e7ef -Author: Cyril Brulebois -Date: Tue Nov 6 20:19:12 2007 +0000 - - Enable a --with-distributor-name configure option, defaulting to Epiphany. - Use it on an error page to designate the distributors/developers to contact. - Fixes bug #433796. - - svn path=/trunk/; revision=7643 - - configure.ac | 18 ++++++++++++++++++ - embed/mozilla/EphyAboutModule.cpp | 7 ++++--- - 2 files changed, 22 insertions(+), 3 deletions(-) - -commit 77da5499bd2341cebf8e315478ec95432fa78765 -Author: Cosimo Cecchi -Date: Tue Nov 6 20:15:01 2007 +0000 - - Make the password dialog use ephy-time-helpers instead of stock strftime. - Fix bug #494158. - - svn path=/trunk/; revision=7642 - - src/pdm-dialog.c | 7 ++----- - 1 file changed, 2 insertions(+), 5 deletions(-) - -commit a93d14f5580f252ff7eafea2f83aa835cca40f10 -Author: Cosimo Cecchi -Date: Tue Nov 6 19:56:42 2007 +0000 - - Adds a column in the history window showing the date and the time of the - 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 - - data/ui/epiphany-history-window-ui.xml | 2 +- - lib/Makefile.am | 2 + - lib/ephy-time-helpers.c | 283 +++++++++++++++++++++++++++++++++ - lib/ephy-time-helpers.h | 38 +++++ - src/ephy-history-window.c | 190 +++++++++++++++------- - 5 files changed, 455 insertions(+), 60 deletions(-) - -commit ebd3378c3fc433823cf614528745a8e66f56543a -Author: Ihar Hrachyshka -Date: Tue Nov 6 18:48:52 2007 +0000 - - Fixed a bug in be@latin translation. - - svn path=/trunk/; revision=7640 - - po/be@latin.po | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit 15a2859c78526fd88586b5f84500f129ad3299c3 -Author: Cosimo Cecchi -Date: Tue Nov 6 18:41:43 2007 +0000 - - Connect to "hovering-over-link" signal in WebKit to set link_message. - - svn path=/trunk/; revision=7638 - - embed/webkit/webkit-embed.cpp | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -commit 7635194ece94dc3235fa557ecae8c3a7e838eddd -Author: Ihar Hrachyshka -Date: Tue Nov 6 18:30:42 2007 +0000 - - Added Belarusian Latin translation by Aleś Navicki. - - svn path=/trunk/; revision=7637 - - po/ChangeLog | 5 + - po/LINGUAS | 1 + - po/be@latin.po | 4353 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 4359 insertions(+) - -commit a3c185e796190610eee690c103a927bf7cfcfa4d -Author: Xan Lopez -Date: Mon Nov 5 23:01:23 2007 +0000 - - Make ephy_base_embed_set_{title,address} dup their parameters internally. - - svn path=/trunk/; revision=7636 - - embed/ephy-base-embed.c | 11 +++++++---- - embed/ephy-base-embed.h | 5 +++-- - embed/mozilla/mozilla-embed.cpp | 4 +++- - embed/webkit/webkit-embed.cpp | 2 +- - 4 files changed, 14 insertions(+), 8 deletions(-) - -commit da8c41fefb8dbffb346842d7d516632cce3ab374 -Author: Xan Lopez -Date: Mon Nov 5 20:26:14 2007 +0000 - - Fix webkit backend build, and modify indentation to match new style. - - svn path=/trunk/; revision=7635 - - embed/webkit/webkit-embed-single.cpp | 175 +++++++++++++++++------------------ - embed/webkit/webkit-embed-single.h | 36 ++++--- - embed/webkit/webkit-embed.cpp | 2 +- - embed/webkit/webkit-embed.h | 36 ++++--- - 4 files changed, 121 insertions(+), 128 deletions(-) - -commit 26b8fe7f8b784b156c600006e006110962d1c79c -Author: Xan Lopez -Date: Mon Nov 5 20:11:25 2007 +0000 - - Modify HACKING file to reflect changes in default indent style. - - svn path=/trunk/; revision=7634 - - HACKING | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 70673bbc1936b74449c0a651730d3f52c0867d32 -Author: Xan Lopez -Date: Mon Nov 5 20:11:20 2007 +0000 - - Add uncrustify kr-gnome-indent.cfg file. - - File used to convert source files with uncrustify to new indentation style. - - svn path=/trunk/; revision=7633 - - data/kr-gnome-indent.cfg | 100 +++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 100 insertions(+) - -commit 85b31a5071cc3e9fe50324e2ec81cc01fcf75c66 -Author: Xan Lopez -Date: Mon Nov 5 19:55:27 2007 +0000 - - Use ephy_embed_utils_address_has_web_scheme instead of our own copy. - - svn path=/trunk/; revision=7632 - - embed/ephy-base-embed.c | 22 ++-------------------- - 1 file changed, 2 insertions(+), 20 deletions(-) - -commit e536dd57924f9f0af06ebd5650bc8313d90aeed2 -Author: Xan Lopez -Date: Mon Nov 5 19:55:20 2007 +0000 - - Use K&R (pseudo) indentation style for new files. - - svn path=/trunk/; revision=7631 - - embed/ephy-base-embed.c | 821 +++++++++++++++++++++--------------------------- - embed/ephy-base-embed.h | 32 +- - 2 files changed, 391 insertions(+), 462 deletions(-) - -commit 54deead24517e888803185d6cbdfb2108aa86802 -Author: Xan Lopez -Date: Mon Nov 5 19:55:13 2007 +0000 - - Update the WebKit backend to use EphyBaseEmbed. - - The way both backends track progress seem to be very different, - so I've exported the set_load_percent to get this going for now. - - svn path=/trunk/; revision=7630 - - embed/ephy-base-embed.c | 2 +- - embed/ephy-base-embed.h | 2 + - embed/webkit/webkit-embed.cpp | 459 +++--------------------------------------- - 3 files changed, 32 insertions(+), 431 deletions(-) - -commit bb54d7c84793003d90685a7210fb9614adedb77f -Author: Xan Lopez -Date: Mon Nov 5 19:55:05 2007 +0000 - - Put size_allocate hack in MozillaEmbed now. - - svn path=/trunk/; revision=7629 - - embed/mozilla/mozilla-embed.cpp | 23 +++++++++++++++++++++++ - 1 file changed, 23 insertions(+) - -commit d73b100991cd2b294365bf5cc5f9627fdaa979a9 -Author: Xan Lopez -Date: Mon Nov 5 19:54:57 2007 +0000 - - Move all common functionality from MozillaEmbed to EphyBaseEmbed. - - svn path=/trunk/; revision=7628 - - embed/ephy-base-embed.c | 1438 ++++++++++++++++++++++++++++++++++- - embed/ephy-base-embed.h | 28 +- - embed/mozilla/mozilla-embed.cpp | 1579 ++------------------------------------- - 3 files changed, 1484 insertions(+), 1561 deletions(-) - -commit d166fac07ccf16fba79aadb092d9c0ad95d3ab02 -Author: Xan Lopez -Date: Mon Nov 5 19:54:49 2007 +0000 - - Put the properties in EphyBaseEmbed rather than in the interface. - - Backends still override them completely at this point. - - svn path=/trunk/; revision=7627 - - embed/ephy-base-embed.c | 160 +++++++++++++++++++++++++++++++++++++++++++++++- - embed/ephy-embed.c | 102 ------------------------------ - 2 files changed, 159 insertions(+), 103 deletions(-) - -commit e4d46bcca6d53a474cef868790c306d13c3b0ee9 -Author: Xan Lopez -Date: Mon Nov 5 19:54:41 2007 +0000 - - Create EphyBaseEmbed, make MozillaEmbed a subclass of it. - - EphyBaseEmbed is an abstract class that will implement the generic bits - common to any Epiphany backend. In this first commit it does nothing but - serve as the parent class for the mozilla embedding widget. - - svn path=/trunk/; revision=7626 - - embed/Makefile.am | 2 + - embed/ephy-base-embed.c | 114 ++++++++++++++++++++++++++++++++++++++++ - embed/ephy-base-embed.h | 34 ++++++++++++ - embed/mozilla/EphyBrowser.cpp | 6 +-- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/mozilla-embed.cpp | 110 ++++++++++++++++++++++---------------- - 6 files changed, 218 insertions(+), 50 deletions(-) - -commit 7f5b4500369c010da69160e4494bafd37d807599 -Author: Cyril Brulebois -Date: Mon Nov 5 18:40:44 2007 +0000 - - Get rid of the AM_CHECK_PYMOD underquoted definition warning - - svn path=/trunk/; revision=7625 - - m4/python.m4 | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 539774323ba2ffda2f272914567c47a35fa11bf3 -Author: Jordi Mas -Date: Mon Nov 5 10:42:12 2007 +0000 - - Fixes to Catalan translation - - svn path=/trunk/; revision=7624 - - help/ca/ca.po | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit cce4921f040c9756af1cbc573e1a7efcebe6a02a -Author: Cosimo Cecchi -Date: Sun Nov 4 23:35:28 2007 +0000 - - Add remove_all_passwords method to EphyPasswordManager and implement it - in Mozilla and XulRunner backends. - Bug #476411. - - svn path=/trunk/; revision=7623 - - embed/ephy-password-manager.c | 13 +++++++++ - embed/ephy-password-manager.h | 3 ++ - embed/mozilla/mozilla-embed-single.cpp | 40 ++++++++++++++++++++++++++ - embed/webkit/webkit-embed-single.cpp | 6 ++++ - embed/xulrunner/embed/mozilla-embed-single.cpp | 19 ++++++++++++ - 5 files changed, 81 insertions(+) - -commit 42ccd4ec827aed6f2145c2a3bf5613d7c521fa77 -Author: Cosimo Cecchi -Date: Sun Nov 4 23:00:35 2007 +0000 - - Move "address_has_web_scheme" to ephy-embed-utils. - - svn path=/trunk/; revision=7622 - - embed/ephy-embed-utils.c | 17 +++++++++++++++++ - embed/ephy-embed-utils.h | 1 + - src/ephy-window.c | 22 ++-------------------- - 3 files changed, 20 insertions(+), 20 deletions(-) - -commit a5b20741d26dff5f0bb702455e0e4aee366b5686 -Author: Cosimo Cecchi -Date: Sun Nov 4 22:48:27 2007 +0000 - - Moved dom_mouse_click from EphyTab to EphyWindow. - This also makes Modifiers+Click shortcuts work again. - - svn path=/trunk/; revision=7621 - - src/ephy-tab.c | 175 ---------------------------------------------- - src/ephy-window.c | 205 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 205 insertions(+), 175 deletions(-) - -commit edd96383847c6e7fcb9bf0d41b0a08c6e52fb06f -Author: Priit Laes -Date: Sun Nov 4 11:21:51 2007 +0000 - - Translation updated by Priit Laes. - - 2007-11-04 Priit Laes - - * et.po: Translation updated by Priit Laes. - - svn path=/trunk/; revision=7620 - - po/ChangeLog | 4 + - po/et.po | 427 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 220 insertions(+), 211 deletions(-) - -commit def60a9cefca3430326f2e529bd32273aa54b786 -Author: Felix Riemann -Date: Sat Nov 3 22:20:59 2007 +0000 - - Update to latest EggToolbarEditor code. - This supports changing the editor's model during runtime and - tries to avoid some possibly leaking signal handlers. Fixes bug #493149. - - svn path=/trunk/; revision=7619 - - lib/egg/egg-toolbar-editor.c | 70 +++++++++++++++++++++++++++++++++++++------- - lib/egg/egg-toolbar-editor.h | 2 ++ - 2 files changed, 62 insertions(+), 10 deletions(-) - -commit 7e2c73fd2eb91e2f66d90daaacc3d57c8011f7ef -Author: Jorge Gonzalez Gonzalez -Date: Sat Nov 3 12:46:35 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7618 - - po/ChangeLog | 4 + - po/es.po | 423 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 218 insertions(+), 209 deletions(-) - -commit 3595f0ba5307a448da3673bdb8409db4b4a9eebe -Author: Ignacio Casal Quinteiro -Date: Sat Nov 3 11:34:35 2007 +0000 - - Updated Galician Translation. - - svn path=/trunk/; revision=7617 - - po/ChangeLog | 4 + - po/gl.po | 661 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 351 insertions(+), 314 deletions(-) - -commit 510f3f9be3675a59670e6f50a5f857da9aba86f1 -Author: Cosimo Cecchi -Date: Sat Nov 3 01:23:19 2007 +0000 - - Display "Javascript scriptlet" string as tooltip for bookmark action instead - of the whole javascript code when bookmarking a scriptlet. - Fix bug #492695. - - svn path=/trunk/; revision=7616 - - src/bookmarks/ephy-bookmark-action.c | 32 +++++++++++++++++++------------- - 1 file changed, 19 insertions(+), 13 deletions(-) - -commit 12e20fe014010a689599c528624774966428c1f3 -Author: Cosimo Cecchi -Date: Thu Nov 1 23:46:11 2007 +0000 - - Store the engine in the .pc file. - Bug #463956, patch by Cyril Brulebois. - - svn path=/trunk/; revision=7615 - - data/epiphany.pc.in | 1 + - 1 file changed, 1 insertion(+) - -commit 51c759304409f2c159d5669aa22c2ce14b23c365 -Author: Xan Lopez -Date: Thu Nov 1 00:24:27 2007 +0000 - - Remove trailing whitespace, patch by Cyril Brulebois. - - svn path=/trunk/; revision=7614 - - embed/webkit/webkit-embed.cpp | 58 +++++++++++++++++++++---------------------- - 1 file changed, 29 insertions(+), 29 deletions(-) - -commit 1c5d177a94575f10373e46d73a290c893ba650fb -Author: Christian Persch -Date: Mon Oct 29 15:44:50 2007 +0000 - - These files shouldn't be in POTFILES.in yet - - svn path=/trunk/; revision=7613 - - po/POTFILES.in | 13 ------------- - po/POTFILES.skip | 14 ++++++++++++++ - 2 files changed, 14 insertions(+), 13 deletions(-) - -commit 635076b04e3c57df289fd757b61d74a506cbe6fe -Author: Kjartan Maraas -Date: Mon Oct 29 14:55:46 2007 +0000 - - Add a whole bunch of new files. Updated Norwegian bokmål translation. - - 2007-10-29 Kjartan Maraas - - * POTFILES.in: Add a whole bunch of new files. - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7612 - - po/ChangeLog | 5 + - po/POTFILES.in | 16 +++ - po/nb.po | 345 ++++++++++++++++++++++++++++++++++++++++++++++----------- - 3 files changed, 304 insertions(+), 62 deletions(-) - -commit 40db54e58581a80d7623e4db2cdf27fc8c03ba49 -Author: Xan Lopez -Date: Sun Oct 28 22:17:59 2007 +0000 - - Update title property on title-changed signal from webkit. - - svn path=/trunk/; revision=7611 - - embed/webkit/webkit-embed.cpp | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 3adb6f3fb97c70a762bd690a51e7659e35c5e46c -Author: Xan Lopez -Date: Sun Oct 28 22:17:40 2007 +0000 - - Add dummy popup management properties to the webkit backend. - - Also, untabify. - - svn path=/trunk/; revision=7610 - - embed/webkit/webkit-embed.cpp | 84 ++++++++++++++++++++++++------------------- - 1 file changed, 48 insertions(+), 36 deletions(-) - -commit d70fe359790fdf1441a9161b391590618d10635a -Author: Christian Persch -Date: Sun Oct 28 14:30:43 2007 +0000 - - Use -1 as tab size here - - svn path=/trunk/; revision=7609 - - src/ephy-window.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit a95515a311b453e59f9c3baaacd9374d5b9dddc5 -Author: Christian Persch -Date: Sun Oct 28 14:18:11 2007 +0000 - - Can't use an interface type in signal registration - - svn path=/trunk/; revision=7608 - - src/ephy-notebook.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d4ba140f239d4ebba1d898d86547a920a350a726 -Author: Christian Persch -Date: Sun Oct 28 14:17:29 2007 +0000 - - Can't use an interface type in property registration - - svn path=/trunk/; revision=7607 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 5eaacd5bd34687ad7dc63f3bddf8b8f140bf2101 -Author: Christian Persch -Date: Sun Oct 28 14:16:50 2007 +0000 - - Can't use an interface type in signal registration - - svn path=/trunk/; revision=7606 - - src/ephy-link.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 6da9791d18dd9949cb0ff8ad3d56fb0d7a6b16ee -Author: Christian Persch -Date: Sun Oct 28 14:13:31 2007 +0000 - - Remove EphyTab - - svn path=/trunk/; revision=7605 - - src/epiphany.defs | 84 ++++++++------------------------------------------- - src/epiphany.override | 13 -------- - 2 files changed, 12 insertions(+), 85 deletions(-) - -commit 35925e961588881d616c570936702c7c43a9a54c -Author: Christian Persch -Date: Sun Oct 28 14:11:44 2007 +0000 - - Remove EphyTab - - svn path=/trunk/; revision=7604 - - src/ephy-python-extension.c | 21 ++++++++++----------- - 1 file changed, 10 insertions(+), 11 deletions(-) - -commit 6809f50e315eccf31bcf92e56791675a39924e2d -Author: Christian Persch -Date: Sun Oct 28 14:10:17 2007 +0000 - - Remove EphyTab - - svn path=/trunk/; revision=7603 - - src/window-commands.c | 56 ++++++++++++++++++++------------------------------- - 1 file changed, 22 insertions(+), 34 deletions(-) - -commit 21da984c078527c6eb2dce85b308b8685d1123d6 -Author: Christian Persch -Date: Sun Oct 28 14:07:43 2007 +0000 - - Remove EphyTab - - svn path=/trunk/; revision=7602 - - src/ppview-toolbar.c | 14 +++++++------- - 1 file changed, 7 insertions(+), 7 deletions(-) - -commit 6fedc1d89f49191c0d7cc9a3cb6b47a253e88ca6 -Author: Christian Persch -Date: Sun Oct 28 14:06:49 2007 +0000 - - Remove EphyTab - - svn path=/trunk/; revision=7601 - - src/prefs-dialog.c | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -commit 7a8d61ebfd3e23715395e6e5955aabc7812c504e -Author: Christian Persch -Date: Sun Oct 28 14:06:02 2007 +0000 - - Remove EphyTab - - svn path=/trunk/; revision=7600 - - src/popup-commands.c | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - -commit bf46efe23435f5892ddd58b76168e11e3de49834 -Author: Christian Persch -Date: Sun Oct 28 14:04:14 2007 +0000 - - Remove EphyTab - - svn path=/trunk/; revision=7599 - - src/ephy-session.c | 39 +++++++++++++++++++-------------------- - 1 file changed, 19 insertions(+), 20 deletions(-) - -commit a8f58c18b35696da3281c3447abb07faab7ddddf -Author: Christian Persch -Date: Sun Oct 28 14:02:06 2007 +0000 - - Remove EPhyTab. - - svn path=/trunk/; revision=7598 - - src/ephy-navigation-action.c | 24 ++++++++---------------- - 1 file changed, 8 insertions(+), 16 deletions(-) - -commit 7ac279fb909e69b040aeba85188b095f4f831176 -Author: Christian Persch -Date: Sun Oct 28 13:59:20 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7597 - - src/ephy-lockdown.c | 10 +++------- - 1 file changed, 3 insertions(+), 7 deletions(-) - -commit 037763011566438d8a54bebca23c783b5b625b49 -Author: Christian Persch -Date: Sun Oct 28 13:58:23 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7596 - - src/ephy-location-action.c | 13 ++++++------- - 1 file changed, 6 insertions(+), 7 deletions(-) - -commit 19e94245678000610dec21482045b43126ba45cc -Author: Christian Persch -Date: Sun Oct 28 13:57:04 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7595 - - src/ephy-encoding-menu.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 2d31856488c173071fdf560d206f0df604a6a860 -Author: Christian Persch -Date: Sun Oct 28 13:56:14 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7594 - - src/ephy-encoding-dialog.c | 2 +- - src/ephy-tab.c | 1 - - 2 files changed, 1 insertion(+), 2 deletions(-) - -commit 73d4e8e1b354b5c0f7ef799d2622f03473b1038e -Author: Christian Persch -Date: Sun Oct 28 13:54:32 2007 +0000 - - Remove Ephytab. - - svn path=/trunk/; revision=7593 - - src/bookmarks/ephy-open-tabs-action.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 2fe15f38d304307a2de41248481648209c17637c -Author: Christian Persch -Date: Sun Oct 28 13:53:29 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7592 - - src/bookmarks/ephy-related-action.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit c1d8eb89fdfdfbd2138083ee68fcfa6d3b736521 -Author: Christian Persch -Date: Sun Oct 28 13:52:44 2007 +0000 - - Remove EPhyTab. - - svn path=/trunk/; revision=7591 - - src/bookmarks/ephy-bookmarks-editor.c | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 409732e8cce09d628fc9905866468992094086f4 -Author: Christian Persch -Date: Sun Oct 28 13:49:01 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7590 - - src/ephy-window.c | 297 ++++++++++++++++++++++-------------------------------- - 1 file changed, 121 insertions(+), 176 deletions(-) - -commit 88854c804f3713bd5570d5481c49265cb31a4da2 -Author: Christian Persch -Date: Sun Oct 28 13:48:11 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7589 - - src/Makefile.am | 3 --- - 1 file changed, 3 deletions(-) - -commit 4205b930178d83277654437e52449b17bc29dc93 -Author: Christian Persch -Date: Sun Oct 28 13:26:42 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7588 - - src/ephy-toolbar.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 0021ea0c8715fb868a82869d7ee16b13815356c9 -Author: Christian Persch -Date: Sun Oct 28 13:25:28 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7587 - - src/ephy-notebook.c | 67 +++++++++++++++++++++++++---------------------------- - src/ephy-notebook.h | 8 +++---- - 2 files changed, 36 insertions(+), 39 deletions(-) - -commit 97cfee6bcb76fd13839443723ff63c0dc00ca186 -Author: Christian Persch -Date: Sun Oct 28 13:24:23 2007 +0000 - - Remove EphYTab. - - svn path=/trunk/; revision=7586 - - src/ephy-link.c | 20 ++++++++++---------- - src/ephy-link.h | 15 ++++++++------- - 2 files changed, 18 insertions(+), 17 deletions(-) - -commit f0a1b394de9c9b7810ec67a1cee0e4906f4abcc5 -Author: Christian Persch -Date: Sun Oct 28 13:16:18 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7585 - - src/ephy-tabs-menu.c | 52 ++++++++++++++++++++++++++-------------------------- - 1 file changed, 26 insertions(+), 26 deletions(-) - -commit 392fae1137c081f8d8d8446b9145d298f9dd4e7b -Author: Christian Persch -Date: Sun Oct 28 13:10:04 2007 +0000 - - Renamed ephy_tab_get_active_embed to _tab. - - svn path=/trunk/; revision=7584 - - src/ephy-window.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a8580644cdf7ae694f89957e595b145e849d946f -Author: Christian Persch -Date: Sun Oct 28 13:08:16 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7583 - - src/ephy-extensions-manager.c | 22 +++++++++++----------- - 1 file changed, 11 insertions(+), 11 deletions(-) - -commit 38451480082fbd0c3f13fee6e782861db2a7b26c -Author: Christian Persch -Date: Sun Oct 28 13:04:07 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7582 - - src/ephy-window.h | 9 +++------ - 1 file changed, 3 insertions(+), 6 deletions(-) - -commit c03be31edd709462b77aa7031c6d8e5ae5c0ffd7 -Author: Christian Persch -Date: Sun Oct 28 13:03:54 2007 +0000 - - Remove EphyTab. - - svn path=/trunk/; revision=7581 - - src/ephy-extension.c | 8 ++++---- - src/ephy-extension.h | 8 ++++---- - 2 files changed, 8 insertions(+), 8 deletions(-) - -commit fc27c98728df1fb7699668049cadef8a8ff842b0 -Author: Christian Persch -Date: Sun Oct 28 13:02:28 2007 +0000 - - Remove EphyTab use. - - svn path=/trunk/; revision=7580 - - src/ephy-shell.c | 47 ++++++++++++++++++++--------------------------- - src/ephy-shell.h | 10 +++++----- - 2 files changed, 25 insertions(+), 32 deletions(-) - -commit ecf681be3b8cae7de89d361f3ffef909c8e15114 -Author: Christian Persch -Date: Sun Oct 28 13:02:13 2007 +0000 - - Remove ephy-tab.h. This breaks the build; we'll fix it step by step. - - svn path=/trunk/; revision=7579 - - src/ephy-tab.h | 73 ---------------------------------------------------------- - 1 file changed, 73 deletions(-) - -commit 08b179d94af391e7a93e14fc42cf6e471111a385 -Author: Christian Persch -Date: Sun Oct 28 12:08:33 2007 +0000 - - Move tab ID from EphyTab to EphyTabsMenu which is the only user of it. - - svn path=/trunk/; revision=7578 - - src/ephy-tab.c | 59 -------------------------------- - src/ephy-tab.h | 3 -- - src/ephy-tabs-menu.c | 96 ++++++++++++++++++++++++++++++++++++++++++++++++---- - 3 files changed, 89 insertions(+), 69 deletions(-) - -commit f98b98d689156205c04c36a94657545b5c8d4a1c -Author: Christian Persch -Date: Sat Oct 27 18:43:57 2007 +0000 - - Use G_DEFINE_TYPE. - - svn path=/trunk/; revision=7577 - - src/ephy-tabs-menu.c | 31 +++---------------------------- - src/ephy-tabs-menu.h | 2 -- - 2 files changed, 3 insertions(+), 30 deletions(-) - -commit e9beebba13c5de23a01cbcc919914cb200a4daa1 -Author: Christian Persch -Date: Sat Oct 27 18:43:36 2007 +0000 - - Fix the build with --enable-debug. - - svn path=/trunk/; revision=7576 - - embed/mozilla/mozilla-embed.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3df8ead647f1b25704e33d7e81ce9959d30a065c -Author: Xan Lopez -Date: Sat Oct 27 15:40:04 2007 +0000 - - Move popups-allowed and hidden-popup-count from EphyTab to EphyEmbed. - - Popup management is non-working now, see bug #490672 - - svn path=/trunk/; revision=7575 - - embed/ephy-embed.c | 15 ++ - embed/mozilla/mozilla-embed.cpp | 351 +++++++++++++++++++++++++++++++++- - src/ephy-tab.c | 414 ---------------------------------------- - src/ephy-window.c | 29 ++- - 4 files changed, 376 insertions(+), 433 deletions(-) - -commit 13f17264d9757eaf01eaa1ff2842812872385c56 -Author: Kjartan Maraas -Date: Sat Oct 27 15:24:25 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-10-27 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7574 - - po/ChangeLog | 4 + - po/nb.po | 724 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 362 insertions(+), 366 deletions(-) - -commit 0987a1d045308fd0284d4410e80ea85f331a5832 -Author: Xan Lopez -Date: Fri Oct 26 18:58:50 2007 +0000 - - Add placeholders for all the new properties in embed. - - The backend now compiles and runs. - - svn path=/trunk/; revision=7573 - - embed/webkit/webkit-embed.cpp | 207 +++++++++++++++++++++++++++++++++++++++--- - 1 file changed, 192 insertions(+), 15 deletions(-) - -commit a0677fc29ac5e82760e4c820078b822af4970a97 -Author: Xan Lopez -Date: Fri Oct 26 18:55:13 2007 +0000 - - Remove non-existing functions in the embed interface from the _init function. - - svn path=/trunk/; revision=7572 - - embed/webkit/webkit-embed.cpp | 3 --- - 1 file changed, 3 deletions(-) - -commit d2cf56a86066a37849f061892449555d5e893a4d -Author: Xan Lopez -Date: Fri Oct 26 18:54:34 2007 +0000 - - get_link_message returns const char * now. - - svn path=/trunk/; revision=7571 - - embed/webkit/webkit-embed.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 29543c6eebf0712e7c2006d41201d43f1c8028ad -Author: Xan Lopez -Date: Thu Oct 25 22:55:17 2007 +0000 - - get_title returns const char * now. - - svn path=/trunk/; revision=7570 - - embed/webkit/webkit-embed.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit e5bd6a33e596a94e6a33fcb4b3f13134b679dcf2 -Author: Xan Lopez -Date: Thu Oct 25 20:02:08 2007 +0000 - - Tabify modified files. - - svn path=/trunk/; revision=7569 - - embed/ephy-embed.c | 52 ++++---- - embed/ephy-embed.h | 22 ++-- - embed/mozilla/mozilla-embed.cpp | 258 ++++++++++++++++++++-------------------- - 3 files changed, 166 insertions(+), 166 deletions(-) - -commit 06ce4525c0bd84caac67829eed3df9daa9c51074 -Author: Xan Lopez -Date: Thu Oct 25 20:01:58 2007 +0000 - - Bump configure.ac version to 2.21.1 - - svn path=/trunk/; revision=7568 - - configure.ac | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 7af817960075883fccf2337e27aa485935965fd6 -Author: Xan Lopez -Date: Thu Oct 25 20:01:48 2007 +0000 - - Add config.h in ephy-embed-utils.c - - svn path=/trunk/; revision=7567 - - embed/ephy-embed-utils.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit f81e06a9dd460b7a65bfc1476cd9dfa476f30ce6 -Author: Xan Lopez -Date: Thu Oct 25 20:01:42 2007 +0000 - - Fix more issues left with the refactoring. - - Fix double free in link_message property. - Fix title by connecting to embed and not to tab in EphyWindow. - Fix progress by passing the correct parameter to update_embed_from_net_state. - - Also use the link_message parsing function in utils. - - svn path=/trunk/; revision=7566 - - embed/ephy-embed-utils.c | 2 +- - embed/mozilla/mozilla-embed.cpp | 69 +++++++++++------------------------------ - src/ephy-window.c | 2 +- - 3 files changed, 20 insertions(+), 53 deletions(-) - -commit 01b8291ec0dbdb52400a21cda7d8785b8fb6da4e -Author: Xan Lopez -Date: Thu Oct 25 20:01:31 2007 +0000 - - Fix the remaining breakage. - - Implement get_icon and get_icon_address. - Fix status-message canonical name. - Properly assign private pointer in MozillaEmbed (...) - - svn path=/trunk/; revision=7565 - - embed/ephy-embed.c | 4 +++- - embed/mozilla/mozilla-embed.cpp | 27 ++++++++++++++++++++++++--- - src/ephy-window.c | 2 +- - 3 files changed, 28 insertions(+), 5 deletions(-) - -commit cc62537ebba1ba9ab31cc3da32ddf51556045caa -Author: Xan Lopez -Date: Thu Oct 25 20:01:20 2007 +0000 - - Port src/ to the new properties in EphyEmbed. - - svn path=/trunk/; revision=7564 - - src/ephy-location-action.c | 2 +- - src/ephy-notebook.c | 4 +-- - src/ephy-session.c | 2 +- - src/ephy-tab.h | 19 ------------ - src/ephy-tabs-menu.c | 3 +- - src/ephy-window.c | 73 +++++++++++++++++++++++----------------------- - src/epiphany.defs | 63 +-------------------------------------- - src/prefs-dialog.c | 2 +- - src/window-commands.c | 10 +++---- - 9 files changed, 50 insertions(+), 128 deletions(-) - -commit be872c7f830e2789c9dd5968b2a66d7ddf06f60b -Author: Xan Lopez -Date: Thu Oct 25 20:01:09 2007 +0000 - - Move file_monitor_cancel on dispose from EphyTab to EphyEmbed. - - svn path=/trunk/; revision=7563 - - embed/mozilla/mozilla-embed.cpp | 11 +++++++++++ - src/ephy-tab.c | 2 -- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 6638472fdbeee7c135c822ada01d09f407ca18e6 -Author: Xan Lopez -Date: Thu Oct 25 20:01:00 2007 +0000 - - Move title/address update on open-uri signal to EphyEmbed. - - Also refactor some common code in ephy-embed-utils.c - - svn path=/trunk/; revision=7562 - - embed/Makefile.am | 2 + - embed/ephy-embed-utils.c | 119 ++++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed-utils.h | 37 +++++++++++++ - embed/ephy-embed.c | 21 +++++++ - embed/ephy-embed.h | 8 ++- - embed/mozilla/mozilla-embed.cpp | 44 +++++++++++++++ - src/ephy-tab.c | 64 --------------------- - 7 files changed, 230 insertions(+), 65 deletions(-) - -commit 2be1a6942311c3f8fd0d9335820919d281b437db -Author: Xan Lopez -Date: Thu Oct 25 20:00:48 2007 +0000 - - Move icon and icon-address to EphyEmbed. - - There's a snippet that needs to be moved elsewhere I think: - - eb = ephy_shell_get_bookmarks (ephy_shell); - ephy_bookmarks_set_icon (eb, priv->address, - priv->icon_address); - - It's done in mozilla_embed_set_icon_address. - - svn path=/trunk/; revision=7561 - - embed/ephy-embed.c | 44 +++++++++++ - embed/ephy-embed.h | 7 ++ - embed/mozilla/mozilla-embed.cpp | 145 ++++++++++++++++++++++++++++++++--- - src/ephy-tab.c | 164 ---------------------------------------- - 4 files changed, 184 insertions(+), 176 deletions(-) - -commit 929c43cd4cadadb2d1ddc26fd2d0500867d9ea75 -Author: Xan Lopez -Date: Thu Oct 25 20:00:34 2007 +0000 - - Move status-message and logic of link-message to EphyEmbed. - - Create a property for link-message in EphyEmbed too. - - svn path=/trunk/; revision=7560 - - embed/ephy-embed.c | 37 +++- - embed/ephy-embed.h | 8 +- - embed/mozilla/mozilla-embed.cpp | 322 ++++++++++++++++++++++++++++++++++- - src/ephy-tab.c | 362 ---------------------------------------- - 4 files changed, 357 insertions(+), 372 deletions(-) - -commit 51a7dc7dd4e0871d0da50228a163a1b124aeda1c -Author: Xan Lopez -Date: Thu Oct 25 20:00:20 2007 +0000 - - Change ephy_embed_get_title to return const char*. - - Also replace all ephy_tab_get_title by ephy_embed_get_title. - - svn path=/trunk/; revision=7559 - - embed/ephy-embed.c | 2 +- - embed/ephy-embed.h | 4 ++-- - embed/mozilla/mozilla-embed.cpp | 4 ++-- - src/ephy-location-action.c | 2 +- - src/ephy-notebook.c | 2 +- - src/ephy-session.c | 2 +- - src/ephy-tab.h | 2 -- - src/ephy-tabs-menu.c | 2 +- - src/ephy-window.c | 2 +- - src/epiphany.defs | 8 +------- - src/window-commands.c | 2 +- - 11 files changed, 12 insertions(+), 20 deletions(-) - -commit f083f631bc0c22a990c87215583b3237fa886426 -Author: Xan Lopez -Date: Thu Oct 25 20:00:01 2007 +0000 - - Move title from EphyTab to EphyEmbed. - - EphyTab still borken. - - svn path=/trunk/; revision=7558 - - embed/ephy-embed.c | 159 ++++++++---------- - embed/ephy-embed.h | 12 +- - embed/mozilla/mozilla-embed.cpp | 346 ++++++++++++++++++++++++++++++++++++-- - src/ephy-tab.c | 358 +--------------------------------------- - 4 files changed, 400 insertions(+), 475 deletions(-) - -commit fdacbe229e0defe6ef64068066a13369cce2ec27 -Author: Xan Lopez -Date: Thu Oct 25 19:59:36 2007 +0000 - - Move address and typed-address from EphyTab to EphyEmbed - - ephy-tab.c is totally broken now, will fix in next patches. - - svn path=/trunk/; revision=7557 - - embed/ephy-embed.c | 75 ++++++++++++++++++- - embed/ephy-embed.h | 22 ++++++ - embed/mozilla/mozilla-embed.cpp | 110 +++++++++++++++++++++++++--- - src/ephy-lockdown.c | 4 +- - src/ephy-shell.c | 4 +- - src/ephy-tab.c | 154 +--------------------------------------- - src/ephy-tab.h | 19 ----- - src/ephy-toolbar.c | 4 +- - src/epiphany.defs | 28 ++++---- - 9 files changed, 221 insertions(+), 199 deletions(-) - -commit 461af43a1c1f2e0506fb49d15b01b7a76e43579e -Author: Priit Laes -Date: Thu Oct 25 15:27:52 2007 +0000 - - Translation updated by Ivar Smolin. - - 2007-10-25 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - svn path=/trunk/; revision=7556 - - po/ChangeLog | 4 + - po/et.po | 489 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 256 insertions(+), 237 deletions(-) - -commit c58b8b908ec6893bf8289fdc6cbed3e6965f55c3 -Author: Djihed Afifi -Date: Wed Oct 24 20:20:01 2007 +0000 - - Updated Arabic Translation by Djihed Afifi. - - svn path=/trunk/; revision=7555 - - po/ChangeLog | 4 + - po/ar.po | 590 ++++++++++++++++++++--------------------------------------- - 2 files changed, 200 insertions(+), 394 deletions(-) - -commit 521e6d117b60cf5441041e75b4889da79ad390e0 -Author: Cosimo Cecchi -Date: Tue Oct 23 23:33:16 2007 +0000 - - Adds a check for NULL pointer in ephy-session.c, fixing wrong behaviour when - restoring Epiphany in some cases. - Fix for bug #488718, patch by Leonardo Boshell. - - svn path=/trunk/; revision=7553 - - src/ephy-session.c | 22 +++++++++++++--------- - 1 file changed, 13 insertions(+), 9 deletions(-) - -commit b92a4fb914719d4b6bbee8eb45b7a7a0b584c911 -Author: Djihed Afifi -Date: Tue Oct 23 20:51:16 2007 +0000 - - Updated Arabic Translation by Djihed Afifi. - - svn path=/trunk/; revision=7552 - - po/ChangeLog | 4 + - po/ar.po | 982 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 609 insertions(+), 377 deletions(-) - -commit 62b46e98c7697c93677452ecde31c3c1ddb8b6b9 -Author: Cosimo Cecchi -Date: Mon Oct 22 17:46:22 2007 +0000 - - Update WebKit backend to EphyEmbed and EphyTab changes, and implements load progress for WebKit. - - svn path=/trunk/; revision=7551 - - embed/webkit/webkit-embed.cpp | 209 ++++++++++++++++++++++++++++++++++++++++-- - 1 file changed, 203 insertions(+), 6 deletions(-) - -commit 51088dcca08b8899ce5c3d22a9869a44960e3e26 -Author: Matej Urbančič -Date: Mon Oct 22 14:07:31 2007 +0000 - - Updated Slovenian translation - - svn path=/trunk/; revision=7550 - - po/ChangeLog | 4 +- - po/sl.po | 1060 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 574 insertions(+), 490 deletions(-) - -commit 21970860f6d87a62764bdafadae76f4d2f9a1691 -Author: Xan Lopez -Date: Sun Oct 21 22:23:35 2007 +0000 - - Move navigation property from EphyTab to EphyEmbed. - - svn path=/trunk/; revision=7549 - - embed/ephy-embed.c | 30 ++++++++++++++++-- - embed/ephy-embed.h | 18 +++++++++-- - embed/mozilla/mozilla-embed.cpp | 45 +++++++++++++++++++++++++++ - src/ephy-tab.c | 67 ++--------------------------------------- - src/ephy-tab.h | 9 ------ - src/ephy-window.c | 30 ++++++++---------- - src/epiphany.defs | 38 ++++++++++------------- - 7 files changed, 121 insertions(+), 116 deletions(-) - -commit 20abb0405c42012e470173fc82dba03d7d4fe268 -Author: Xan Lopez -Date: Sun Oct 21 19:22:57 2007 +0000 - - Move load-status from EphyTab to EphyEmbed. - - svn path=/trunk/; revision=7547 - - embed/ephy-embed.c | 35 +++++++++++++++++++- - embed/ephy-embed.h | 10 ++++-- - embed/mozilla/mozilla-embed.cpp | 37 +++++++++++++++++++++ - src/ephy-notebook.c | 10 +++--- - src/ephy-session.c | 2 +- - src/ephy-tab.c | 73 +++++++++++------------------------------ - src/ephy-window.c | 22 ++++++------- - src/epiphany.defs | 6 ---- - 8 files changed, 114 insertions(+), 81 deletions(-) - -commit fa4959e1e013b0ba0f526397fc835e950abe9888 -Author: Xan Lopez -Date: Sun Oct 21 18:09:44 2007 +0000 - - Use correct property enum. - - svn path=/trunk/; revision=7545 - - embed/mozilla/mozilla-embed.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 568af9a8d3dfa62be38bce6204d0d13bf4fa9e1e -Author: Xan Lopez -Date: Sun Oct 21 18:09:23 2007 +0000 - - Move load-progress from EphyTab to EphyEmbed - - svn path=/trunk/; revision=7544 - - embed/ephy-embed.c | 38 +++++++++++++++++++++++++ - embed/ephy-embed.h | 8 +++++- - embed/mozilla/mozilla-embed.cpp | 31 +++++++++++++++++++++ - src/ephy-tab.c | 61 ++--------------------------------------- - src/ephy-window.c | 20 +++++++------- - src/epiphany.defs | 6 ---- - 6 files changed, 89 insertions(+), 75 deletions(-) - -commit 1a1e303ced1a791dc691aeebb460a98ca3a1800d -Author: Djihed Afifi -Date: Sun Oct 21 16:42:19 2007 +0000 - - Updated Arabic Translation by Djihed Afifi. - - svn path=/trunk/; revision=7543 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 44f0f0b9e7f1de89a7c83a9c404ed50d6f3b57f0 -Author: Xan Lopez -Date: Sun Oct 21 15:43:49 2007 +0000 - - Move zoom from EphyTab to EphyEmbed. - - svn path=/trunk/; revision=7542 - - embed/ephy-embed.c | 9 +++ - embed/mozilla/mozilla-embed.cpp | 112 ++++++++++++++++++++++++++++++++++++- - src/ephy-tab.c | 119 +--------------------------------------- - src/ephy-window.c | 26 ++++----- - src/epiphany.defs | 8 --- - 5 files changed, 134 insertions(+), 140 deletions(-) - -commit a657333db5a36e5377bdb29157d9ac99e86ceefb -Author: Xan Lopez -Date: Sun Oct 21 15:43:38 2007 +0000 - - Move document-type property from EphyTab to EphyEmbed. - - svn path=/trunk/; revision=7541 - - embed/ephy-embed.c | 23 ++++++++++++++++++++ - embed/ephy-embed.h | 32 +++++++++++++++------------ - embed/mozilla/mozilla-embed.cpp | 47 +++++++++++++++++++++++++++++++++++----- - src/ephy-tab.c | 48 ----------------------------------------- - src/ephy-tab.h | 2 -- - src/ephy-window.c | 31 ++++++++++++++------------ - src/epiphany.defs | 6 ------ - 7 files changed, 100 insertions(+), 89 deletions(-) - -commit 2be42c2960138a7997af6d8363235c9db90abe0b -Author: Xan Lopez -Date: Sun Oct 21 15:43:28 2007 +0000 - - Tabify mozilla-embed.cpp and make it use G_DEFINE_*. - - Also, remove one extra ephy_tab_get_embed from EphyWindow. - - svn path=/trunk/; revision=7540 - - embed/mozilla/mozilla-embed.cpp | 249 ++++++++++++++++------------------------ - src/ephy-window.c | 2 - - 2 files changed, 102 insertions(+), 149 deletions(-) - -commit a78af5ef50e7ee33d0e5c3e8652280fe9081eb99 -Author: Xan Lopez -Date: Sun Oct 21 15:43:19 2007 +0000 - - Add security-level property to embed and fix EphyWindow. - - svn path=/trunk/; revision=7539 - - embed/mozilla/mozilla-embed.cpp | 69 +++++++++++++++++++++++++++++++++++++++-- - src/ephy-window.c | 21 +++++++------ - 2 files changed, 78 insertions(+), 12 deletions(-) - -commit b9edf3436f43a8df14192aae61b33bdaf459fe45 -Author: Xan Lopez -Date: Sun Oct 21 15:43:01 2007 +0000 - - Remove security data from EphyTab. - - svn path=/trunk/; revision=7538 - - embed/ephy-embed.c | 8 ++++++++ - src/ephy-tab.c | 55 ------------------------------------------------------ - src/epiphany.defs | 6 ------ - 3 files changed, 8 insertions(+), 61 deletions(-) - -commit b9cf74cb0fce7bde8feccbe7ea0ecf8579d8c77c -Author: Xan Lopez -Date: Sat Oct 20 15:39:26 2007 +0000 - - Completely remove usage of visibility signal from src/ - - svn path=/trunk/; revision=7537 - - src/ephy-tab.c | 54 ------------------------------------------------------ - src/ephy-tab.h | 2 -- - src/ephy-window.c | 33 --------------------------------- - src/epiphany.defs | 6 ------ - 4 files changed, 95 deletions(-) - -commit c0e3df7630afa1ea61a9a0e76976f0df042122a5 -Author: Cosimo Cecchi -Date: Thu Oct 18 19:15:05 2007 +0000 - - Updates to new NetworkManager API signals for status monitoring. - Patch by Matthias Clasen, fix for bug #486881. - - svn path=/trunk/; revision=7535 - - src/ephy-net-monitor.c | 14 ++------------ - 1 file changed, 2 insertions(+), 12 deletions(-) - -commit 29b0550f41d11bdcf359ad1d706bb3edaee347de -Author: Jorge Gonzalez Gonzalez -Date: Tue Oct 16 11:53:24 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7534 - - po/ChangeLog | 4 ++ - po/es.po | 188 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 98 insertions(+), 94 deletions(-) - -commit d8c3f2dce60775fdc42f72b1ee36db80eca53451 -Author: Yair Hershkovitz -Date: Mon Oct 15 23:04:26 2007 +0000 - - updated hebrew translation - - svn path=/trunk/; revision=7533 - - po/ChangeLog | 4 + - po/he.po | 601 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 325 insertions(+), 280 deletions(-) - -commit b9c8cbde66842e440c13261179678a8517fde5b2 -Author: Claude Paroz -Date: Mon Oct 15 19:32:57 2007 +0000 - - Accelerator correction. Fixes bug #484780. - - 2007-10-15 Claude Paroz - - * fr.po: Accelerator correction. Fixes bug #484780. - - svn path=/trunk/; revision=7530 - - po/ChangeLog | 4 ++++ - po/fr.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 4a63f3304677cecf7d23943c90eac68bc2e2adf7 -Author: Christian Persch -Date: Thu Oct 11 10:45:50 2007 +0000 - - Take the page orientation from the page setup, not from the print settings. - Bug #485670 (see also gtk+ bug #485685). - - svn path=/trunk/; revision=7527 - - embed/mozilla/GeckoPrintService.cpp | 3 ++- - embed/xulrunner/components/GeckoPrintService.cpp | 3 ++- - 2 files changed, 4 insertions(+), 2 deletions(-) - -commit 4d5377061da49f84df7406ac5008ea66dcbc292a -Author: Christian Persch -Date: Mon Oct 8 18:36:17 2007 +0000 - - Also check for libxul-1.9.pc, which exists in ubuntu's xulrunner-1.9-dev. - - svn path=/trunk/; revision=7526 - - m4/libxul.m4 | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 219463337c1ca677c80d1da7ab849f803bba35f8 -Author: Christian Persch -Date: Mon Oct 8 18:36:07 2007 +0000 - - Make sure PRBool only contains PR_FALSE or PR_TRUE. Bug moz#398599. - - svn path=/trunk/; revision=7525 - - embed/xulrunner/src/EmbedContentListener.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d4d71ddbfe706b2c5e2b7747919cbb3dffd83b58 -Author: Christian Persch -Date: Mon Oct 8 18:35:57 2007 +0000 - - Add application.ini file. - - svn path=/trunk/; revision=7524 - - Makefile.am | 4 ++++ - configure.ac | 6 ++++++ - xulapp/Makefile.am | 0 - xulapp/application.ini.in | 18 ++++++++++++++++++ - 4 files changed, 28 insertions(+) - -commit 5bab0972ef7fb33da8b1000d049dc12638f73d9e -Author: Christian Persch -Date: Mon Oct 8 18:35:47 2007 +0000 - - Fix code style. - - svn path=/trunk/; revision=7523 - - embed/xulrunner/utils/ggeAutoModalDialog.cpp | 17 ++++++++--------- - embed/xulrunner/utils/ggeAutoModalDialog.h | 2 +- - 2 files changed, 9 insertions(+), 10 deletions(-) - -commit f9fc60cc505114328f9fbf5b4dd480f4087ff51c -Author: Diego Escalante Urrelo -Date: Sun Oct 7 14:19:01 2007 +0000 - - Makes the Go button behaviour consistent with the "Enter" behaviour. Both - - * window-commands.c: - Makes the Go button behaviour consistent with the "Enter" behaviour. Both - actions search for keywords or load the url. Fixes #484178. - - - svn path=/trunk/; revision=7521 - - src/window-commands.c | 12 ++++++++++-- - 1 file changed, 10 insertions(+), 2 deletions(-) - -commit cd1e5423e98b5a79204e7bce140f18167e73bb36 -Author: Xan Lopez -Date: Sun Oct 7 14:06:19 2007 +0000 - - Update HACKING file with new indentation style. - - svn path=/trunk/; revision=7520 - - HACKING | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 580e6c4e467f35224cf335cdfc603add1b2bb461 -Author: Felix Riemann -Date: Sun Oct 7 10:28:11 2007 +0000 - - Remove unneeded marshallers. Fixes bug #484060. - - svn path=/trunk/; revision=7519 - - lib/egg/eggmarshalers.list | 19 ------------------- - 1 file changed, 19 deletions(-) - -commit 6ce6dcec222876facc94b64747ca10e6d6144591 -Author: Xan Lopez -Date: Sat Oct 6 19:46:44 2007 +0000 - - Do not bother emitting signal we don't have. - - svn path=/trunk/; revision=7518 - - embed/webkit/webkit-embed.cpp | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -commit 843b31a0eddb2e88e565abb657f32f85994b0c0f -Author: Xan Lopez -Date: Sat Oct 6 19:21:14 2007 +0000 - - Implement several missing methods. - - Based on the patch by Cosimo Cecchi. - - This adds the stubs for proper net status notification, - implements get_title, get_location and workarounds the bug - in webkit that will make pages not load images if the protocol - is not specified in the url (it will only work for http though). - - Fixes bug #461652 - - svn path=/trunk/; revision=7517 - - embed/webkit/webkit-embed.cpp | 176 +++++++++++++++++++++++++++++------------- - 1 file changed, 122 insertions(+), 54 deletions(-) - -commit 9d1f50379b55fad9062eb6ee21c35f138ca29d60 -Author: Cosimo Cecchi -Date: Fri Oct 5 08:34:00 2007 +0000 - - Remove ellipses from View -> Page Security Information, as it does not require - further user interaction to complete. - Fix for bug #483312. One-liner by Michael Monreal. - - svn path=/trunk/; revision=7516 - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit eb6ec19e00bfc29bb6bd366c20133af472662e91 -Author: Cosimo Cecchi -Date: Thu Oct 4 14:39:04 2007 +0000 - - Fixes wrong use of EphySearchEntry in the history window. Bug #483150. Initial patch by Diego Escalante Urrelo. - - svn path=/trunk/; revision=7515 - - src/ephy-history-window.c | 20 +++++++++++++++----- - 1 file changed, 15 insertions(+), 5 deletions(-) - -commit 1b132604165d1f0c68d9810b3780b09debb6e2cb -Author: Alp Toker -Date: Wed Oct 3 17:44:21 2007 +0000 - - Match the WebKit/Gtk+ API changes made in WebKit SVN r26022 - - svn path=/trunk/; revision=7514 - - embed/webkit/webkit-embed.cpp | 32 ++++++++++++++++---------------- - 1 file changed, 16 insertions(+), 16 deletions(-) - -commit 9bfd724c5c20a172cbcb28a3cb92266027fdc0a3 -Author: Yannig MARCHEGAY -Date: Wed Oct 3 16:54:25 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7513 - - po/oc.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 51009be41fb22ed858d36cdf3421f2bb9401bcba -Author: Reinout van Schouwen -Date: Tue Oct 2 20:42:42 2007 +0000 - - Updated Dutch translation - - 2007-10-02 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=7512 - - po/ChangeLog | 4 ++ - po/nl.po | 132 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 73 insertions(+), 63 deletions(-) - -commit ab91fe04eeae9d4d6a28e84bc6f184cfcb16731d -Author: Cosimo Cecchi -Date: Tue Oct 2 12:45:02 2007 +0000 - - Make "Up" button dropdown menu show titles instead of URLs for already visited pages. - Fix for bug #323764. - - svn path=/trunk/; revision=7511 - - src/ephy-navigation-action.c | 15 ++++++++++++++- - 1 file changed, 14 insertions(+), 1 deletion(-) - -commit 1a4490212d92f74a6aa42c3b361d980dcf2524e3 -Author: Cosimo Cecchi -Date: Sun Sep 30 21:50:03 2007 +0000 - - Change the "Powered by" name in the About dialog according to the used - backend. Patch by Nicholas E. Manley. Fix for bug #478196. - - svn path=/trunk/; revision=7510 - - src/window-commands.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit df2795b7d741135fe4be18285e8a7e3d4a419234 -Author: Diego Escalante Urrelo -Date: Sun Sep 30 13:18:16 2007 +0000 - - Changes g_value_set_string to g_value_take_string to avoid a leak. Also add the - g_value_unset calls for text and visible vars on extracell_data_func. - - - svn path=/trunk/; revision=7509 - - lib/widgets/ephy-location-entry.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 8c8b026fc6c22677eb05255eb4e1bbf1bda7dae3 -Author: Diego Escalante Urrelo -Date: Sun Sep 30 12:58:24 2007 +0000 - - Make the location entry completion cells smarter, now bookmarks take the full - width of the popup. Also make the extracell (titles of history entries) align - to the left so it's less messy and easier to browse a lot of entries with - similar titles. - - Almost-fixes bug #419475. - - - svn path=/trunk/; revision=7508 - - lib/widgets/ephy-location-entry.c | 38 +++++++++++++++++++++++++++++++++++--- - src/ephy-completion-model.c | 5 ++++- - 2 files changed, 39 insertions(+), 4 deletions(-) - -commit d09bb750b80c245545bb8e97ce9070d9f3d31310 -Author: Xan Lopez -Date: Sun Sep 30 11:51:32 2007 +0000 - - Implement size_request for EphyTab. Fixes bug #476120 - - svn path=/trunk/; revision=7507 - - src/ephy-tab.c | 19 +++++++++++++++++++ - 1 file changed, 19 insertions(+) - -commit 6d689d6e0030c76ce74518af374cfbb0d0960a4c -Author: Diego Escalante Urrelo -Date: Fri Sep 28 21:45:48 2007 +0000 - - Implement ephy_file_delete_directory in lib/ephy-file-helpers.c so private - instances of Epiphany remove the profile dir on exit. - Note that the profile dir won't be deleted if it's a custom path. - Fixes bug #329680. - - - svn path=/trunk/; revision=7506 - - lib/ephy-file-helpers.c | 32 ++++++++++++++++++++++++++++---- - src/ephy-main.c | 2 +- - 2 files changed, 29 insertions(+), 5 deletions(-) - -commit bfd1d5ab3539021b0e759756f748ac205f1eb645 -Author: Christian Persch -Date: Fri Sep 28 15:17:48 2007 +0000 - - Make it build. - - svn path=/trunk/; revision=7505 - - embed/xulrunner/utils/Makefile.am | 2 ++ - embed/xulrunner/utils/ggeAutoModalDialog.cpp | 35 ++++++++++++++++------------ - embed/xulrunner/utils/ggeAutoModalDialog.h | 6 ++--- - 3 files changed, 25 insertions(+), 18 deletions(-) - -commit f3a7cf8b0223fdc39993d6da985dd3fe32a0740e -Author: Christian Persch -Date: Fri Sep 28 15:17:35 2007 +0000 - - A new class designed to handle everything we need to run a modal dialogue. - - svn path=/trunk/; revision=7504 - - embed/xulrunner/utils/ggeAutoModalDialog.cpp | 185 +++++++++++++++++++++++++++ - embed/xulrunner/utils/ggeAutoModalDialog.h | 70 ++++++++++ - 2 files changed, 255 insertions(+) - -commit 9ed7fe2fa947377e603168dd4e4fe02f87daa3c4 -Author: Christian Persch -Date: Fri Sep 28 15:17:21 2007 +0000 - - Add app lifecycle helper class. - - svn path=/trunk/; revision=7503 - - embed/xulrunner/utils/Makefile.am | 2 ++ - embed/xulrunner/utils/ggeAutoSurvivalArea.cpp | 42 +++++++++++++++++++++++++ - embed/xulrunner/utils/ggeAutoSurvivalArea.h | 44 +++++++++++++++++++++++++++ - 3 files changed, 88 insertions(+) - -commit 0ab8d7a8cc5ba8bf9ccf805a0a16111049d79c5b -Author: Diego Escalante Urrelo -Date: Fri Sep 28 04:59:47 2007 +0000 - - Add a preview for the FileChooser. The default size is 150x150. Fixes bug - - * lib/ephy-file-chooser.c: - - Add a preview for the FileChooser. The default size is 150x150. - Fixes bug #440859. - - - svn path=/trunk/; revision=7502 - - lib/ephy-file-chooser.c | 39 +++++++++++++++++++++++++++++++++++++++ - 1 file changed, 39 insertions(+) - -commit c4c9521c8138c8d14ceb8f1959f8b9ce314b6f5b -Author: Cosimo Cecchi -Date: Thu Sep 27 17:15:15 2007 +0000 - - Use g_idle to call embed_find_find_again, to give the time to the embed to - sync with the size change due to toolbar being shown. Fixes bug #415074 and - part of bug #333661. - - svn path=/trunk/; revision=7500 - - src/ephy-find-toolbar.c | 74 ++++++++++++++++++++++++++++++++++++++++++------- - 1 file changed, 64 insertions(+), 10 deletions(-) - -commit 365a2dc852c4b86aa9d8cce729634821b0c0e231 -Author: Josselin Mouette -Date: Thu Sep 27 12:42:57 2007 +0000 - - EphyContentPolicy::ShouldLoad: use the same content policy for - http and https, allowing adblock to work on https. - Patch reviewed by Christian Persch, fixes bug#471583. - - svn path=/trunk/; revision=7498 - - embed/mozilla/EphyContentPolicy.cpp | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 8fda40e760bd44bd5815a1c2ff85f6c05c1f8a60 -Author: Jorge Gonzalez Gonzalez -Date: Thu Sep 27 10:22:45 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7497 - - po/ChangeLog | 4 ++ - po/es.po | 155 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 86 insertions(+), 73 deletions(-) - -commit e6c95fa2995fc1ba2fbc21a82d530ada4f877703 -Author: Diego Escalante Urrelo -Date: Wed Sep 26 23:55:40 2007 +0000 - - Fix the build of the custom GTK+ filepicker so we can add nice previews - - * embed/xulrunner/components/FilePicker.cpp: - * embed/mozilla/FilePicker.cpp: - - Fix the build of the custom GTK+ filepicker so we can add nice previews - and other stuff. - - - svn path=/trunk/; revision=7496 - - embed/mozilla/FilePicker.cpp | 55 +++++-------------------------- - embed/xulrunner/components/FilePicker.cpp | 55 +++++-------------------------- - 2 files changed, 16 insertions(+), 94 deletions(-) - -commit 497d90e04609907bb709828c93f73e75c7f118a2 -Author: Cosimo Cecchi -Date: Tue Sep 25 22:59:55 2007 +0000 - - Make Epiphany properly remember the last saved location in the FileChooser. - Fix for bug #336251. - - svn path=/trunk/; revision=7494 - - lib/ephy-file-chooser.c | 26 ++++++++++++++++++++++++++ - 1 file changed, 26 insertions(+) - -commit 4d955b0a676fe88d57997b99911080999461461f -Author: Nikos Charonitakis -Date: Tue Sep 25 16:45:26 2007 +0000 - - Updated Greek tranlation - - svn path=/trunk/; revision=7493 - - po/ChangeLog | 4 + - po/el.po | 1422 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 616 insertions(+), 810 deletions(-) - -commit d45ffbca233cbd1d726769c5c91308df12fb3b29 -Author: Christian Persch -Date: Tue Sep 25 15:14:00 2007 +0000 - - Fix the icon name to use EPHY_STOCK_EPHY - - svn path=/trunk/; revision=7490 - - embed/mozilla/GeckoCookiePromptService.cpp | 3 ++- - embed/xulrunner/components/GeckoCookiePromptService.cpp | 3 ++- - 2 files changed, 4 insertions(+), 2 deletions(-) - -commit 2834b5e8bc68d03848bf55ab8f61376c816252eb -Author: Christian Persch -Date: Tue Sep 25 14:43:07 2007 +0000 - - Add more mime types - - svn path=/trunk/; revision=7488 - - data/mime-types-permissions.xml | 1 + - 1 file changed, 1 insertion(+) - -commit fab88d3402eb7bc03f3877b90d940d69c6c1389c -Author: Cosimo Cecchi -Date: Mon Sep 24 18:22:16 2007 +0000 - - Rename WebKitGdk to WebKitGtk to follow upstream change and fix build against - WebKit. Fixes bug #479852. One-liner by Cyril Brulebois. - - - svn path=/trunk/; revision=7485 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8ec2bc009ba7457a05818481f7f968cb134ce0ea -Author: Christian Persch -Date: Mon Sep 24 14:19:09 2007 +0000 - - Add LIBXUL_VERSION defines, and support using libxul-embedding instead of libxul. - - svn path=/trunk/; revision=7484 - - m4/libxul.m4 | 23 +++++++++++++++++------ - 1 file changed, 17 insertions(+), 6 deletions(-) - -commit 7e9557a4ec83055168bebb4244446816e0e88e50 -Author: Cosimo Cecchi -Date: Sun Sep 23 17:59:09 2007 +0000 - - Change the hint of the bookmarking properties dialog to DIALOG, instead - of NORMAL. Make bookmarking work in fullscreen mode and does not put - bookmark properties windows in the taskbar. Fixes bug #478928. - - - svn path=/trunk/; revision=7482 - - src/bookmarks/ephy-bookmark-properties.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 339bc0df22701ab3b0e2c8ce109fe1a719ec5911 -Author: Ilkka Tuohela -Date: Sun Sep 23 06:00:27 2007 +0000 - - Updated Finnish translation (fix for bug #479242) - - svn path=/trunk/; revision=7481 - - po/ChangeLog | 4 ++++ - po/fi.po | 22 +++++++++++----------- - 2 files changed, 15 insertions(+), 11 deletions(-) - -commit 010bcf7705bdbce88eb81b39c02fd95e4742d466 -Author: Christian Persch -Date: Wed Sep 19 18:07:53 2007 +0000 - - Add defines for major/minor/micro version. - Add SVN branch name, and use it in the ChangeLog generation rule. - - svn path=/trunk/; revision=7477 - - Makefile.am | 4 ++-- - configure.ac | 23 +++++++++++++++++++---- - 2 files changed, 21 insertions(+), 6 deletions(-) - -commit b92fbf15e1841ea4d4e7cc70818d0a60a86f67f3 -Author: Christian Persch -Date: Wed Sep 19 12:11:50 2007 +0000 - - Add ChangeLog.README to explain the ChangeLog policy - - svn path=/trunk/; revision=7476 - - ChangeLog.README | 28 ++++++++++++++++++++++++++++ - HACKING | 26 +++----------------------- - 2 files changed, 31 insertions(+), 23 deletions(-) - -commit 3cc1c9a50b252cb64773e6dadf059a9687a5216c -Author: Diego Escalante Urrelo -Date: Wed Sep 19 02:06:39 2007 +0000 - - Add a somewhat tricky fix for url titles not visible on the completion - - 2007-09-18 Diego Escalante Urrelo - - * lib/widgets/ephy-location-entry.c: - - Add a somewhat tricky fix for url titles not visible on the completion - popup of the location entry when using a dark theme (like Darkilouche). - We are using GTK_STATE_INSENSITIVE, rationale on the bug report. - Fixes bug #446898. - - Also replaced some spaces for tabs. - - - - svn path=/trunk/; revision=7474 - - lib/widgets/ephy-location-entry.c | 67 +++++++++++++++++++++------------------ - 1 file changed, 37 insertions(+), 30 deletions(-) - -commit aab89188814c81a886d890d1706d55e3930fba7a -Author: Djihed Afifi -Date: Mon Sep 17 10:53:42 2007 +0000 - - Updated Arabic Translation by Djihed Afifi. - - svn path=/trunk/; revision=7469 - - po/ChangeLog | 4 ++ - po/ar.po | 214 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 113 insertions(+), 105 deletions(-) - -commit 9069e40d9478d8d3081b8b87458b5cf52b797235 -Author: Kenneth Nielsen -Date: Sun Sep 16 20:48:56 2007 +0000 - - Updated Danish translation - - svn path=/trunk/; revision=7466 - - po/ChangeLog | 4 ++ - po/da.po | 210 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 123 insertions(+), 91 deletions(-) - -commit 8556e0ef04f254cfe2af54ec7a182d18905a3372 -Author: Daniel Nylander -Date: Sun Sep 16 18:27:11 2007 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=7464 - - po/ChangeLog | 14780 +++++++++++++++++++++++++++++---------------------------- - po/sv.po | 125 +- - 2 files changed, 7458 insertions(+), 7447 deletions(-) - -commit b1dd43a83e875bcf2d9457b2ded6f176d5602c05 -Author: Gil Forcada Codinachs -Date: Sun Sep 16 17:04:28 2007 +0000 - - Updated Catalan translation - - svn path=/trunk/; revision=7463 - - po/ChangeLog | 4 ++ - po/ca.po | 207 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 118 insertions(+), 93 deletions(-) - -commit de89c05611efe770d1e330ec01704361ada8b201 -Author: Ilkka Tuohela -Date: Sun Sep 16 14:40:17 2007 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=7460 - - po/ChangeLog | 4 ++++ - po/fi.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 39c643a98687d638244ff62822d2b18298af847c -Author: Alexander Shopov -Date: Sun Sep 16 14:10:24 2007 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2007-09-16 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - svn path=/trunk/; revision=7459 - - po/ChangeLog | 5 + - po/bg.po | 994 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 542 insertions(+), 457 deletions(-) - -commit 92773385d4920973591270d10fde361a75f74863 -Author: Christian Persch -Date: Sun Sep 16 12:49:15 2007 +0000 - - Mark ChangeLog rule as PHONY. - - svn path=/trunk/; revision=7455 - - Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -commit ec183c883b340ae82f5ba22689e5d1a3b9dfa511 -Author: Christian Persch -Date: Sun Sep 16 12:46:49 2007 +0000 - - Make PromptService QI to nsIPromptService2 (not implemented yet, though). - - svn path=/trunk/; revision=7454 - - embed/xulrunner/components/GeckoPromptService.cpp | 41 ++++++++++++++++++----- - embed/xulrunner/components/GeckoPromptService.h | 13 +++---- - 2 files changed, 36 insertions(+), 18 deletions(-) - -commit bd9419b2f2ef5a17763f740fedb94d27e10281a8 -Author: Christian Persch -Date: Sun Sep 16 12:46:36 2007 +0000 - - Build ChangeLog from SVN history at dist time. XSL copied from gnucash and modified - to output UTF-8. - - svn path=/trunk/; revision=7453 - - ChangeLog | 3 - - Makefile.am | 10 +++ - svn2cl.xsl | 295 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 305 insertions(+), 3 deletions(-) - -commit 0c63d5983df779d4f4001a711978e072ee715840 -Author: Cosimo Cecchi -Date: Sun Sep 16 12:10:34 2007 +0000 - - Use friendly display for mailto: links; shows a nice text in status bar - when hovering a mailto: link. Initial patch by Diego Escalante Urrelo, - fixes bug #339161. - - - svn path=/trunk/; revision=7452 - - src/ephy-tab.c | 41 ++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 40 insertions(+), 1 deletion(-) - -commit 84ded07f18c026bd3e2c0e1f45535b9f6baced2e -Author: Yannig MARCHEGAY -Date: Sun Sep 16 09:24:46 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7451 - - help/ChangeLog | 4 +++ - help/oc/oc.po | 16 +++++----- - po/ChangeLog | 4 +++ - po/oc.po | 94 ++++++++++++++++++++++++++++------------------------------ - 4 files changed, 61 insertions(+), 57 deletions(-) - -commit fc2a317b5a6323e5af44d5d9f4dba8f002d1b7d9 -Author: Ilkka Tuohela -Date: Sun Sep 16 08:30:00 2007 +0000 - - Updated Finnish translation (spellchecked) - - svn path=/trunk/; revision=7449 - - po/ChangeLog | 4 ++++ - po/fi.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit b3c719f3a99fb115b695a861b6db5c23c1556d4f -Author: Christian Persch -Date: Sat Sep 15 19:17:44 2007 +0000 - - Add gvfs check. - - svn path=/trunk/; revision=7447 - - configure.ac | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 7288cdfe973ef5cb954b48fddee046821fa5a5ad -Author: Christian Persch -Date: Sat Sep 15 19:17:34 2007 +0000 - - Consistent spacing. - - svn path=/trunk/; revision=7446 - - data/glade/epiphany.glade | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a27dd84d97b7ac2ff318d79fb16f70f6b547779b -Author: Christian Persch -Date: Sat Sep 15 18:26:36 2007 +0000 - - Use nsILoginManager. - - svn path=/trunk/; revision=7445 - - embed/xulrunner/embed/mozilla-embed-single.cpp | 112 +++++++++++-------------- - 1 file changed, 50 insertions(+), 62 deletions(-) - -commit 8443a993d5b27899a56ebe0e87f7a8d0ac582a9b -Author: Artur Flinta -Date: Sat Sep 15 14:52:07 2007 +0000 - - Updated Polish translation by GNOME PL Team. - - 2007-09-15 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - - svn path=/trunk/; revision=7443 - - po/ChangeLog | 4 ++ - po/pl.po | 185 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 108 insertions(+), 81 deletions(-) - -commit 9beff541dd10f3bd31bca94dd6887a2c51a1e028 -Author: Christian Persch -Date: Fri Sep 14 19:04:24 2007 +0000 - - Link to the XPCOM glue and set GRE_HOME on startup, until I can figure out - what's our linking story wrt. XPCOM glue. - - svn path=/trunk/; revision=7440 - - embed/xulrunner/embed/Makefile.am | 1 + - embed/xulrunner/embed/mozilla-embed-single.cpp | 3 +++ - src/Makefile.am | 2 +- - 3 files changed, 5 insertions(+), 1 deletion(-) - -commit a0dfce74bd24097c0f12dee6f403e82c45fa6ca6 -Author: Christian Persch -Date: Fri Sep 14 19:04:13 2007 +0000 - - Fix missing symbol on link. - - svn path=/trunk/; revision=7439 - - embed/xulrunner/components/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit 6a94088eabd214f410b648c3990d341c87c6b58e -Author: Christian Persch -Date: Fri Sep 14 19:04:02 2007 +0000 - - Add libephyxulrunnerembed.la so LDADD. - - svn path=/trunk/; revision=7438 - - embed/xulrunner/components/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit 73dfdccb77d9de0081b91b10c7484dea40443b4e -Author: Christian Persch -Date: Fri Sep 14 19:03:48 2007 +0000 - - Move EphyHistoryListener from embed/ to components/ since it's only used by GlobalHistory code. - - svn path=/trunk/; revision=7437 - - embed/xulrunner/components/EphyHistoryListener.cpp | 170 +++++++++++++++++++++ - embed/xulrunner/components/EphyHistoryListener.h | 49 ++++++ - embed/xulrunner/components/Makefile.am | 2 + - embed/xulrunner/embed/EphyHistoryListener.cpp | 170 --------------------- - embed/xulrunner/embed/EphyHistoryListener.h | 49 ------ - embed/xulrunner/embed/Makefile.am | 2 - - 6 files changed, 221 insertions(+), 221 deletions(-) - -commit 97e986150af1792ca00489ffa96c1454790562a8 -Author: Clytie Siddall -Date: Fri Sep 14 12:07:13 2007 +0000 - - 2007-09-14 vi.po Updated Vietnamese translation - - Clytie Siddall - - svn path=/trunk/; revision=7436 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 51e30117558c69dd23f4ea073a282a2f6b40eedf -Author: Djihed Afifi -Date: Thu Sep 13 22:33:36 2007 +0000 - - Updated Arabic Translation by Youssef Chahibi. - - svn path=/trunk/; revision=7435 - - po/ChangeLog | 4 + - po/ar.po | 1102 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 467 insertions(+), 639 deletions(-) - -commit 033a9214932e228af131a35322461d3a3e7e06ae -Author: Christian Persch -Date: Thu Sep 13 20:36:04 2007 +0000 - - Move EphyUtils and GeckoUtils to utils/. - - svn path=/trunk/; revision=7434 - - embed/xulrunner/embed/EphyUtils.cpp | 207 ----------------------------------- - embed/xulrunner/embed/EphyUtils.h | 66 ----------- - embed/xulrunner/embed/Makefile.am | 2 - - embed/xulrunner/src/GeckoUtils.cpp | 87 --------------- - embed/xulrunner/src/GeckoUtils.h | 34 ------ - embed/xulrunner/src/Makefile.am | 2 - - embed/xulrunner/utils/EphyUtils.cpp | 203 ++++++++++++++++++++++++++++++++++ - embed/xulrunner/utils/EphyUtils.h | 66 +++++++++++ - embed/xulrunner/utils/GeckoUtils.cpp | 87 +++++++++++++++ - embed/xulrunner/utils/GeckoUtils.h | 34 ++++++ - embed/xulrunner/utils/Makefile.am | 5 + - 11 files changed, 395 insertions(+), 398 deletions(-) - -commit 8d92314d3772cdb4fe0240a19743ca1cf7c93267 -Author: Christian Persch -Date: Thu Sep 13 20:35:53 2007 +0000 - - Add utils to LDADD to try to fix the linking. - - svn path=/trunk/; revision=7433 - - embed/xulrunner/components/Makefile.am | 1 + - embed/xulrunner/embed/Makefile.am | 1 + - src/Makefile.am | 4 +++- - 3 files changed, 5 insertions(+), 1 deletion(-) - -commit 5c1e1426581eded08cc5d2506e342bc386a92ab7 -Author: Christian Persch -Date: Thu Sep 13 20:35:44 2007 +0000 - - Add separate pkg config checks for some modules. - - svn path=/trunk/; revision=7432 - - configure.ac | 5 +++++ - 1 file changed, 5 insertions(+) - -commit c7751489980a228c7b0270fcec2823b030d2ac77 -Author: Christian Persch -Date: Thu Sep 13 20:35:29 2007 +0000 - - Move components from embed/ to components/ and fix the build. - - svn path=/trunk/; revision=7431 - - embed/xulrunner/Makefile.am | 2 +- - embed/xulrunner/components/ContentHandler.cpp | 480 ++++++ - embed/xulrunner/components/ContentHandler.h | 81 + - embed/xulrunner/components/EphyAboutModule.cpp | 724 +++++++++ - embed/xulrunner/components/EphyAboutModule.h | 65 + - embed/xulrunner/components/EphyContentPolicy.cpp | 244 +++ - embed/xulrunner/components/EphyContentPolicy.h | 76 + - embed/xulrunner/components/EphyRedirectChannel.cpp | 32 + - embed/xulrunner/components/EphyRedirectChannel.h | 50 + - embed/xulrunner/components/EphySidebar.cpp | 161 ++ - embed/xulrunner/components/EphySidebar.h | 66 + - embed/xulrunner/components/FilePicker.cpp | 492 ++++++ - embed/xulrunner/components/FilePicker.h | 62 + - .../components/GeckoCookiePromptService.cpp | 159 ++ - .../components/GeckoCookiePromptService.h | 43 + - .../components/GeckoFormSigningDialog.cpp | 158 ++ - .../xulrunner/components/GeckoFormSigningDialog.h | 42 + - embed/xulrunner/components/GeckoPrintService.cpp | 713 ++++++++ - embed/xulrunner/components/GeckoPrintService.h | 54 + - embed/xulrunner/components/GeckoPrintSession.cpp | 629 ++++++++ - embed/xulrunner/components/GeckoPrintSession.h | 94 ++ - .../xulrunner/components/GeckoSpellCheckEngine.cpp | 200 +++ - embed/xulrunner/components/GeckoSpellCheckEngine.h | 52 + - embed/xulrunner/components/GlobalHistory.cpp | 221 +++ - embed/xulrunner/components/GlobalHistory.h | 68 + - .../components/GtkNSSClientAuthDialogs.cpp | 284 ++++ - .../xulrunner/components/GtkNSSClientAuthDialogs.h | 45 + - embed/xulrunner/components/GtkNSSDialogs.cpp | 1695 ++++++++++++++++++++ - embed/xulrunner/components/GtkNSSDialogs.h | 61 + - .../xulrunner/components/GtkNSSKeyPairDialogs.cpp | 216 +++ - embed/xulrunner/components/GtkNSSKeyPairDialogs.h | 45 + - .../components/GtkNSSSecurityWarningDialogs.cpp | 285 ++++ - .../components/GtkNSSSecurityWarningDialogs.h | 83 + - embed/xulrunner/components/Makefile.am | 73 +- - embed/xulrunner/components/MozDownload.cpp | 812 ++++++++++ - embed/xulrunner/components/MozDownload.h | 153 ++ - .../xulrunner/components/MozRegisterComponents.cpp | 330 ++++ - embed/xulrunner/components/MozRegisterComponents.h | 28 + - embed/xulrunner/embed/ContentHandler.cpp | 480 ------ - embed/xulrunner/embed/ContentHandler.h | 81 - - embed/xulrunner/embed/EphyAboutModule.cpp | 724 --------- - embed/xulrunner/embed/EphyAboutModule.h | 65 - - embed/xulrunner/embed/EphyBadCertRejector.cpp | 68 - - embed/xulrunner/embed/EphyBadCertRejector.h | 36 - - embed/xulrunner/embed/EphyContentPolicy.cpp | 244 --- - embed/xulrunner/embed/EphyContentPolicy.h | 76 - - embed/xulrunner/embed/EphyRedirectChannel.cpp | 32 - - embed/xulrunner/embed/EphyRedirectChannel.h | 50 - - embed/xulrunner/embed/EphySidebar.cpp | 161 -- - embed/xulrunner/embed/EphySidebar.h | 66 - - embed/xulrunner/embed/FilePicker.cpp | 492 ------ - embed/xulrunner/embed/FilePicker.h | 62 - - embed/xulrunner/embed/GeckoCookiePromptService.cpp | 159 -- - embed/xulrunner/embed/GeckoCookiePromptService.h | 43 - - embed/xulrunner/embed/GeckoFormSigningDialog.cpp | 158 -- - embed/xulrunner/embed/GeckoFormSigningDialog.h | 42 - - embed/xulrunner/embed/GeckoPrintService.cpp | 713 -------- - embed/xulrunner/embed/GeckoPrintService.h | 54 - - embed/xulrunner/embed/GeckoPrintSession.cpp | 629 -------- - embed/xulrunner/embed/GeckoPrintSession.h | 94 -- - embed/xulrunner/embed/GeckoSpellCheckEngine.cpp | 200 --- - embed/xulrunner/embed/GeckoSpellCheckEngine.h | 52 - - embed/xulrunner/embed/GlobalHistory.cpp | 221 --- - embed/xulrunner/embed/GlobalHistory.h | 68 - - embed/xulrunner/embed/GtkNSSClientAuthDialogs.cpp | 284 ---- - embed/xulrunner/embed/GtkNSSClientAuthDialogs.h | 45 - - embed/xulrunner/embed/GtkNSSDialogs.cpp | 1695 -------------------- - embed/xulrunner/embed/GtkNSSDialogs.h | 61 - - embed/xulrunner/embed/GtkNSSKeyPairDialogs.cpp | 216 --- - embed/xulrunner/embed/GtkNSSKeyPairDialogs.h | 45 - - .../embed/GtkNSSSecurityWarningDialogs.cpp | 285 ---- - .../xulrunner/embed/GtkNSSSecurityWarningDialogs.h | 83 - - embed/xulrunner/embed/Makefile.am | 52 +- - embed/xulrunner/embed/MozDownload.cpp | 812 ---------- - embed/xulrunner/embed/MozDownload.h | 153 -- - embed/xulrunner/embed/MozRegisterComponents.cpp | 330 ---- - embed/xulrunner/embed/MozRegisterComponents.h | 28 - - embed/xulrunner/utils/EphyBadCertRejector.cpp | 68 + - embed/xulrunner/utils/EphyBadCertRejector.h | 36 + - embed/xulrunner/utils/Makefile.am | 10 +- - 80 files changed, 9186 insertions(+), 9165 deletions(-) - -commit aa53ef8dd2c8174a2428b2aa360c8dd0e045543e -Author: Christian Persch -Date: Thu Sep 13 20:35:11 2007 +0000 - - Fix the build. We don't need to manually add the window to the window group, - since set_transient_for does that for us since gtk 2.10. - - svn path=/trunk/; revision=7430 - - embed/xulrunner/components/GeckoPromptService.cpp | 11 +++++------ - 1 file changed, 5 insertions(+), 6 deletions(-) - -commit fd25a11c2326c54d1c9e538cd39911223a46134f -Author: Christian Persch -Date: Thu Sep 13 20:34:59 2007 +0000 - - Fix for move of GeckoPromptService. - - svn path=/trunk/; revision=7429 - - embed/xulrunner/src/gecko-init.cpp | 26 +++----------------------- - 1 file changed, 3 insertions(+), 23 deletions(-) - -commit 582bcd3f48e7fe43f8072ec2f03109a3f4d5fe12 -Author: Christian Persch -Date: Thu Sep 13 13:25:50 2007 +0000 - - Move prompt service implementation to components/ and remove the - duplicate implementations in src/ and embed/. Doesn't build yet. - - svn path=/trunk/; revision=7427 - - embed/xulrunner/COPYRIGHT | 3 + - embed/xulrunner/Makefile.am | 2 +- - embed/xulrunner/components/GeckoPromptService.cpp | 885 +++++++++++++++++++++ - embed/xulrunner/components/GeckoPromptService.h | 53 ++ - embed/xulrunner/components/Makefile.am | 30 + - embed/xulrunner/embed/EphyPromptService.cpp | 888 --------------------- - embed/xulrunner/embed/EphyPromptService.h | 53 -- - embed/xulrunner/embed/Makefile.am | 2 - - embed/xulrunner/src/GeckoPromptService.cpp | 891 ---------------------- - embed/xulrunner/src/GeckoPromptService.h | 53 -- - embed/xulrunner/src/Makefile.am | 2 - - 11 files changed, 972 insertions(+), 1890 deletions(-) - -commit 7049570b8392a6c78c5669b96f170b02b1237f73 -Author: Christian Persch -Date: Thu Sep 13 13:18:57 2007 +0000 - - Revert the change from r7406; see bug #476540. - - svn path=/trunk/; revision=7426 - - embed/mozilla/AutoJSContextStack.cpp | 2 +- - embed/mozilla/AutoWindowModalState.cpp | 2 +- - embed/mozilla/ContentHandler.cpp | 2 +- - embed/mozilla/EphyAboutModule.cpp | 2 +- - embed/mozilla/EphyBadCertRejector.cpp | 2 +- - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyContentPolicy.cpp | 2 +- - embed/mozilla/EphyDirectoryProvider.cpp | 2 +- - embed/mozilla/EphyFind.cpp | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/EphyHistoryListener.cpp | 2 +- - embed/mozilla/EphyPromptService.cpp | 2 +- - embed/mozilla/EphyRedirectChannel.cpp | 2 +- - embed/mozilla/EphySidebar.cpp | 2 +- - embed/mozilla/EphySingle.cpp | 2 +- - embed/mozilla/EphyUtils.cpp | 2 +- - embed/mozilla/EventContext.cpp | 2 +- - embed/mozilla/FilePicker.cpp | 2 +- - embed/mozilla/GeckoCookiePromptService.cpp | 2 +- - embed/mozilla/GeckoFormSigningDialog.cpp | 2 +- - embed/mozilla/GeckoPrintService.cpp | 2 +- - embed/mozilla/GeckoPrintSession.cpp | 2 +- - embed/mozilla/GeckoSpellCheckEngine.cpp | 2 +- - embed/mozilla/GlobalHistory.cpp | 2 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 +- - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 2 +- - embed/mozilla/MozDownload.cpp | 2 +- - embed/mozilla/MozRegisterComponents.cpp | 2 +- - embed/mozilla/mozilla-download.cpp | 2 +- - embed/mozilla/mozilla-embed-event.cpp | 2 +- - embed/mozilla/mozilla-embed-find.cpp | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 2 +- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - embed/mozilla/mozilla-x509-cert.cpp | 2 +- - 38 files changed, 38 insertions(+), 38 deletions(-) - -commit b2b21ff61d8949be9876e30bffd4891e3cc386e4 -Author: Christian Persch -Date: Thu Sep 13 13:17:58 2007 +0000 - - Revert the change from r7407; see bug #476540. - - svn path=/trunk/; revision=7425 - - embed/mozilla/ContentHandler.cpp | 2 +- - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyContentPolicy.cpp | 2 +- - embed/mozilla/EphyDirectoryProvider.cpp | 2 +- - embed/mozilla/EphyFind.cpp | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/EphyHistoryListener.cpp | 2 +- - embed/mozilla/EphyPromptService.cpp | 2 +- - embed/mozilla/EphySidebar.cpp | 2 +- - embed/mozilla/EphySingle.cpp | 2 +- - embed/mozilla/EphyUtils.cpp | 2 +- - embed/mozilla/EventContext.cpp | 2 +- - embed/mozilla/FilePicker.cpp | 2 +- - embed/mozilla/GeckoCookiePromptService.cpp | 2 +- - embed/mozilla/GeckoFormSigningDialog.cpp | 2 +- - embed/mozilla/GeckoPrintService.cpp | 2 +- - embed/mozilla/GeckoPrintSession.cpp | 2 +- - embed/mozilla/GeckoSpellCheckEngine.cpp | 2 +- - embed/mozilla/GlobalHistory.cpp | 2 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - embed/mozilla/MozDownload.cpp | 2 +- - embed/mozilla/MozRegisterComponents.cpp | 2 +- - embed/mozilla/mozilla-download.cpp | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 2 +- - embed/mozilla/mozilla-x509-cert.cpp | 2 +- - 28 files changed, 28 insertions(+), 28 deletions(-) - -commit 4fe73188e1d1acf72a346d939a86691c73bb6ebd -Author: Christian Persch -Date: Thu Sep 13 13:09:13 2007 +0000 - - Move AutoJSContextStack and AutoWindowModalState helpers to - embed/xulrunner/utils instead of having two copies of it in src - and embed. - - svn path=/trunk/; revision=7424 - - embed/xulrunner/embed/AutoJSContextStack.cpp | 47 ------------------------- - embed/xulrunner/embed/AutoJSContextStack.h | 41 ---------------------- - embed/xulrunner/embed/AutoWindowModalState.cpp | 43 ----------------------- - embed/xulrunner/embed/AutoWindowModalState.h | 38 -------------------- - embed/xulrunner/embed/Makefile.am | 5 +-- - embed/xulrunner/src/AutoJSContextStack.cpp | 48 -------------------------- - embed/xulrunner/src/AutoJSContextStack.h | 41 ---------------------- - embed/xulrunner/src/AutoWindowModalState.cpp | 39 --------------------- - embed/xulrunner/src/AutoWindowModalState.h | 38 -------------------- - embed/xulrunner/src/Makefile.am | 5 +-- - embed/xulrunner/utils/AutoJSContextStack.cpp | 48 ++++++++++++++++++++++++++ - embed/xulrunner/utils/AutoJSContextStack.h | 41 ++++++++++++++++++++++ - embed/xulrunner/utils/AutoWindowModalState.cpp | 43 +++++++++++++++++++++++ - embed/xulrunner/utils/AutoWindowModalState.h | 38 ++++++++++++++++++++ - embed/xulrunner/utils/Makefile.am | 32 +++++++++++++++++ - 15 files changed, 204 insertions(+), 343 deletions(-) - -commit 0651f74cfd3a68649a96c2f2b70a93c48451c010 -Author: Christian Persch -Date: Thu Sep 13 13:05:35 2007 +0000 - - Create Makefiles for embed/xulrunner/utils and components. - - svn path=/trunk/; revision=7423 - - configure.ac | 8 +++++--- - 1 file changed, 5 insertions(+), 3 deletions(-) - -commit 1888e07c858231148e739cff54e122492899c9aa -Author: Christian Persch -Date: Thu Sep 13 13:00:45 2007 +0000 - - Add utils/ and components/ directories. - - svn path=/trunk/; revision=7422 - - embed/xulrunner/Makefile.am | 2 +- - embed/xulrunner/components/Makefile.am | 0 - embed/xulrunner/utils/Makefile.am | 0 - 3 files changed, 1 insertion(+), 1 deletion(-) - -commit 0557525fa843d8009d18298a74aff869df641541 -Author: Christian Persch -Date: Thu Sep 13 12:58:09 2007 +0000 - - More build fixes for the xulrunner backend. - - svn path=/trunk/; revision=7421 - - embed/Makefile.am | 7 +++++-- - src/Makefile.am | 9 +++++++-- - 2 files changed, 12 insertions(+), 4 deletions(-) - -commit cebaf7e49b3fb99ea90e24e080680df68b7d64c3 -Author: Christian Persch -Date: Thu Sep 13 12:57:54 2007 +0000 - - Assert that constructing the single succeeded. - - svn path=/trunk/; revision=7420 - - embed/ephy-embed-shell.c | 1 + - 1 file changed, 1 insertion(+) - -commit 726e2bcf255966c6eab86a04d437edc797375606 -Author: Christian Persch -Date: Thu Sep 13 12:57:15 2007 +0000 - - Define WITH_XULRUNNER_ENGINE. - - svn path=/trunk/; revision=7419 - - configure.ac | 2 ++ - 1 file changed, 2 insertions(+) - -commit 0d23d7861fb49507256d67ea6fbf3e0d9701626d -Author: Christian Persch -Date: Thu Sep 13 12:56:15 2007 +0000 - - Build libgnomegeckoembed.la as noinst_LTLIBRARIES for now. - - svn path=/trunk/; revision=7418 - - embed/xulrunner/embed/Makefile.am | 2 +- - embed/xulrunner/src/Makefile.am | 12 ++++++------ - 2 files changed, 7 insertions(+), 7 deletions(-) - -commit 7318b742df4c762c07c2d96e290481f96e743a37 -Author: Christian Persch -Date: Thu Sep 13 12:52:15 2007 +0000 - - Add visibility stuff from mozilla configure, and try to fix the libdir. - - svn path=/trunk/; revision=7417 - - m4/libxul.m4 | 149 +++++++++++++++++++++++++++++++++++++++++++++++++++++++---- - 1 file changed, 140 insertions(+), 9 deletions(-) - -commit eb0cfc9d2eabe58beff4945b80dc7b4a12d3ecea -Author: Gabor Kelemen -Date: Thu Sep 13 12:39:37 2007 +0000 - - Translation updated. - - 2007-09-13 Gabor Kelemen - - * hu.po: Translation updated. - - - svn path=/trunk/; revision=7416 - - po/ChangeLog | 4 ++ - po/hu.po | 205 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 116 insertions(+), 93 deletions(-) - -commit a788b44e862e4bcacb6ed23cef9466eeeb0cd683 -Author: Christian Persch -Date: Thu Sep 13 12:32:50 2007 +0000 - - Use G_DEFINE_TYPE. - - svn path=/trunk/; revision=7414 - - embed/xulrunner/embed/mozilla-embed-single.cpp | 114 ++++++------------------- - 1 file changed, 25 insertions(+), 89 deletions(-) - -commit 48de2b65aa0b577a15bc3c3dd404d3c4dfce7f72 -Author: Duarte Loreto -Date: Thu Sep 13 08:21:08 2007 +0000 - - Updated Portuguese translation. - - 2007-09-13 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - svn path=/trunk/; revision=7411 - - po/ChangeLog | 4 ++ - po/pt.po | 188 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 106 insertions(+), 86 deletions(-) - -commit 43a2183069dc76f819eb517fef731eb734b2f8f3 -Author: Christian Persch -Date: Wed Sep 12 21:02:16 2007 +0000 - - Port to frozen string API by using nsINetUtil - - svn path=/trunk/; revision=7410 - - embed/xulrunner/embed/EphyAboutModule.cpp | 21 +++++++++++---------- - 1 file changed, 11 insertions(+), 10 deletions(-) - -commit 97c6ff6f592c835873a11ebc216f407dd365b90d -Author: Christian Persch -Date: Wed Sep 12 20:50:11 2007 +0000 - - Remove check for MOZILLA_INTERNAL_API - - svn path=/trunk/; revision=7409 - - embed/xulrunner/embed/EphyUtils.h | 5 ----- - 1 file changed, 5 deletions(-) - -commit 986b8bf0b4c523325cd7a70c6a05278d6c139494 -Author: Christian Persch -Date: Wed Sep 12 20:47:12 2007 +0000 - - Add embed directory - - svn path=/trunk/; revision=7408 - - embed/xulrunner/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit abbc4e8bbba9f32f6b8a74288f090c38ffc1fc9f -Author: Christian Persch -Date: Wed Sep 12 20:41:48 2007 +0000 - - Include nsStringGlue.h instead of nsStringAPI.h - - svn path=/trunk/; revision=7407 - - embed/mozilla/ContentHandler.cpp | 2 +- - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyContentPolicy.cpp | 2 +- - embed/mozilla/EphyDirectoryProvider.cpp | 2 +- - embed/mozilla/EphyFind.cpp | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/EphyHistoryListener.cpp | 2 +- - embed/mozilla/EphyPromptService.cpp | 2 +- - embed/mozilla/EphySidebar.cpp | 2 +- - embed/mozilla/EphySingle.cpp | 2 +- - embed/mozilla/EphyUtils.cpp | 2 +- - embed/mozilla/EventContext.cpp | 2 +- - embed/mozilla/FilePicker.cpp | 2 +- - embed/mozilla/GeckoCookiePromptService.cpp | 2 +- - embed/mozilla/GeckoFormSigningDialog.cpp | 2 +- - embed/mozilla/GeckoPrintService.cpp | 2 +- - embed/mozilla/GeckoPrintSession.cpp | 2 +- - embed/mozilla/GeckoSpellCheckEngine.cpp | 2 +- - embed/mozilla/GlobalHistory.cpp | 2 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - embed/mozilla/MozDownload.cpp | 2 +- - embed/mozilla/MozRegisterComponents.cpp | 2 +- - embed/mozilla/mozilla-download.cpp | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 2 +- - embed/mozilla/mozilla-x509-cert.cpp | 2 +- - embed/xulrunner/embed/ContentHandler.cpp | 2 +- - embed/xulrunner/embed/EphyBrowser.cpp | 2 +- - embed/xulrunner/embed/EphyContentPolicy.cpp | 2 +- - embed/xulrunner/embed/EphyFind.cpp | 2 +- - embed/xulrunner/embed/EphyHeaderSniffer.cpp | 2 +- - embed/xulrunner/embed/EphyHistoryListener.cpp | 2 +- - embed/xulrunner/embed/EphyPromptService.cpp | 2 +- - embed/xulrunner/embed/EphySidebar.cpp | 2 +- - embed/xulrunner/embed/EphySingle.cpp | 2 +- - embed/xulrunner/embed/EphyUtils.cpp | 2 +- - embed/xulrunner/embed/EventContext.cpp | 2 +- - embed/xulrunner/embed/FilePicker.cpp | 2 +- - embed/xulrunner/embed/GeckoCookiePromptService.cpp | 2 +- - embed/xulrunner/embed/GeckoFormSigningDialog.cpp | 2 +- - embed/xulrunner/embed/GeckoPrintService.cpp | 2 +- - embed/xulrunner/embed/GeckoPrintSession.cpp | 2 +- - embed/xulrunner/embed/GeckoSpellCheckEngine.cpp | 2 +- - embed/xulrunner/embed/GlobalHistory.cpp | 2 +- - embed/xulrunner/embed/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/xulrunner/embed/GtkNSSDialogs.cpp | 2 +- - embed/xulrunner/embed/MozDownload.cpp | 2 +- - embed/xulrunner/embed/MozRegisterComponents.cpp | 2 +- - embed/xulrunner/embed/mozilla-download.cpp | 2 +- - embed/xulrunner/embed/mozilla-embed-persist.cpp | 2 +- - embed/xulrunner/embed/mozilla-embed-single.cpp | 2 +- - embed/xulrunner/embed/mozilla-embed.cpp | 2 +- - embed/xulrunner/embed/mozilla-x509-cert.cpp | 2 +- - embed/xulrunner/src/GeckoPromptService.cpp | 2 +- - embed/xulrunner/tests/testgeckoembed.cpp | 2 +- - 57 files changed, 57 insertions(+), 57 deletions(-) - -commit f9682ce4d2a1e2a5ec4647b09b41ecfee682817a -Author: Christian Persch -Date: Wed Sep 12 20:40:13 2007 +0000 - - Include xpcom-config.h, not mozilla-config.h - - svn path=/trunk/; revision=7406 - - embed/mozilla/AutoJSContextStack.cpp | 2 +- - embed/mozilla/AutoWindowModalState.cpp | 2 +- - embed/mozilla/ContentHandler.cpp | 2 +- - embed/mozilla/EphyAboutModule.cpp | 2 +- - embed/mozilla/EphyBadCertRejector.cpp | 2 +- - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyContentPolicy.cpp | 2 +- - embed/mozilla/EphyDirectoryProvider.cpp | 2 +- - embed/mozilla/EphyFind.cpp | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/EphyHistoryListener.cpp | 2 +- - embed/mozilla/EphyPromptService.cpp | 2 +- - embed/mozilla/EphyRedirectChannel.cpp | 2 +- - embed/mozilla/EphySidebar.cpp | 2 +- - embed/mozilla/EphySingle.cpp | 2 +- - embed/mozilla/EphyUtils.cpp | 2 +- - embed/mozilla/EventContext.cpp | 2 +- - embed/mozilla/FilePicker.cpp | 2 +- - embed/mozilla/GeckoCookiePromptService.cpp | 2 +- - embed/mozilla/GeckoFormSigningDialog.cpp | 2 +- - embed/mozilla/GeckoPrintService.cpp | 2 +- - embed/mozilla/GeckoPrintSession.cpp | 2 +- - embed/mozilla/GeckoSpellCheckEngine.cpp | 2 +- - embed/mozilla/GlobalHistory.cpp | 2 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 +- - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 2 +- - embed/mozilla/MozDownload.cpp | 2 +- - embed/mozilla/MozRegisterComponents.cpp | 2 +- - embed/mozilla/mozilla-download.cpp | 2 +- - embed/mozilla/mozilla-embed-event.cpp | 2 +- - embed/mozilla/mozilla-embed-find.cpp | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 2 +- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - embed/mozilla/mozilla-x509-cert.cpp | 2 +- - embed/xulrunner/embed/AutoJSContextStack.cpp | 2 +- - embed/xulrunner/embed/AutoWindowModalState.cpp | 2 +- - embed/xulrunner/embed/ContentHandler.cpp | 2 +- - embed/xulrunner/embed/EphyAboutModule.cpp | 2 +- - embed/xulrunner/embed/EphyBadCertRejector.cpp | 2 +- - embed/xulrunner/embed/EphyBrowser.cpp | 2 +- - embed/xulrunner/embed/EphyContentPolicy.cpp | 2 +- - embed/xulrunner/embed/EphyDirectoryProvider.cpp | 2 +- - embed/xulrunner/embed/EphyFind.cpp | 2 +- - embed/xulrunner/embed/EphyHeaderSniffer.cpp | 2 +- - embed/xulrunner/embed/EphyHistoryListener.cpp | 2 +- - embed/xulrunner/embed/EphyPromptService.cpp | 2 +- - embed/xulrunner/embed/EphyRedirectChannel.cpp | 2 +- - embed/xulrunner/embed/EphySidebar.cpp | 2 +- - embed/xulrunner/embed/EphySingle.cpp | 2 +- - embed/xulrunner/embed/EphyUtils.cpp | 2 +- - embed/xulrunner/embed/EventContext.cpp | 2 +- - embed/xulrunner/embed/FilePicker.cpp | 2 +- - embed/xulrunner/embed/GeckoCookiePromptService.cpp | 2 +- - embed/xulrunner/embed/GeckoFormSigningDialog.cpp | 2 +- - embed/xulrunner/embed/GeckoPrintService.cpp | 2 +- - embed/xulrunner/embed/GeckoPrintSession.cpp | 2 +- - embed/xulrunner/embed/GeckoSpellCheckEngine.cpp | 2 +- - embed/xulrunner/embed/GlobalHistory.cpp | 2 +- - embed/xulrunner/embed/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/xulrunner/embed/GtkNSSDialogs.cpp | 2 +- - embed/xulrunner/embed/GtkNSSKeyPairDialogs.cpp | 2 +- - embed/xulrunner/embed/GtkNSSSecurityWarningDialogs.cpp | 2 +- - embed/xulrunner/embed/MozDownload.cpp | 2 +- - embed/xulrunner/embed/MozRegisterComponents.cpp | 2 +- - embed/xulrunner/embed/mozilla-download.cpp | 2 +- - embed/xulrunner/embed/mozilla-embed-event.cpp | 2 +- - embed/xulrunner/embed/mozilla-embed-find.cpp | 2 +- - embed/xulrunner/embed/mozilla-embed-persist.cpp | 2 +- - embed/xulrunner/embed/mozilla-embed-single.cpp | 2 +- - embed/xulrunner/embed/mozilla-embed.cpp | 2 +- - embed/xulrunner/embed/mozilla-notifiers.cpp | 2 +- - embed/xulrunner/embed/mozilla-x509-cert.cpp | 2 +- - embed/xulrunner/src/AutoJSContextStack.cpp | 2 +- - embed/xulrunner/src/AutoWindowModalState.cpp | 2 +- - embed/xulrunner/src/EmbedContentListener.cpp | 2 +- - embed/xulrunner/src/EmbedEventListener.cpp | 2 +- - embed/xulrunner/src/EmbedProgress.cpp | 2 +- - embed/xulrunner/src/EmbedStream.cpp | 2 +- - embed/xulrunner/src/EmbedWindow.cpp | 2 +- - embed/xulrunner/src/EmbedWindowCreator.cpp | 2 +- - embed/xulrunner/src/GeckoBrowser.cpp | 2 +- - embed/xulrunner/src/GeckoPromptService.cpp | 2 +- - embed/xulrunner/src/GeckoSingle.cpp | 2 +- - embed/xulrunner/src/GeckoUtils.cpp | 2 +- - embed/xulrunner/src/gecko-dom-event.cpp | 2 +- - embed/xulrunner/src/gecko-embed-single.cpp | 2 +- - embed/xulrunner/src/gecko-embed.cpp | 2 +- - embed/xulrunner/src/gecko-init.cpp | 2 +- - embed/xulrunner/tests/testgeckoembed.cpp | 2 +- - m4/libxul.m4 | 2 +- - plugins/desktop-file/plugin.cpp | 2 +- - 95 files changed, 95 insertions(+), 95 deletions(-) - -commit 8d53d634f2e2a96495b05657e278a2e8d47efec4 -Author: Christian Persch -Date: Wed Sep 12 20:33:52 2007 +0000 - - We know we do have gecko 1.9, so remove all HAVE_GECKO_* defines. - - svn path=/trunk/; revision=7405 - - embed/xulrunner/embed/AutoWindowModalState.cpp | 18 ---------- - embed/xulrunner/embed/EphyAboutModule.cpp | 2 -- - embed/xulrunner/embed/EphyBrowser.cpp | 2 -- - embed/xulrunner/embed/EphyFind.cpp | 39 +-------------------- - embed/xulrunner/embed/EphySidebar.cpp | 4 --- - embed/xulrunner/embed/EphySingle.cpp | 2 -- - embed/xulrunner/embed/EphyUtils.cpp | 19 +++------- - embed/xulrunner/embed/GeckoPrintService.cpp | 46 ++----------------------- - embed/xulrunner/embed/GeckoSpellCheckEngine.cpp | 5 --- - embed/xulrunner/embed/GlobalHistory.cpp | 6 +--- - embed/xulrunner/embed/MozDownload.cpp | 2 -- - embed/xulrunner/embed/mozilla-embed-single.cpp | 2 +- - embed/xulrunner/embed/mozilla-embed.cpp | 2 -- - embed/xulrunner/src/AutoWindowModalState.cpp | 4 --- - 14 files changed, 9 insertions(+), 144 deletions(-) - -commit 6db24e97b7e87d4ea7cff0c99f80338ce51eea6f -Author: Christian Persch -Date: Wed Sep 12 19:53:17 2007 +0000 - - More xulrunner build fixes - - svn path=/trunk/; revision=7404 - - m4/libxul.m4 | 3 ++- - src/Makefile.am | 2 +- - 2 files changed, 3 insertions(+), 2 deletions(-) - -commit 59989884443d3514a3da81c0106d1d64a6e6809a -Author: Christian Persch -Date: Wed Sep 12 19:52:56 2007 +0000 - - Disable tests directory for now. - - svn path=/trunk/; revision=7403 - - embed/xulrunner/Makefile.am | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 7e0056c88d3377e2fe1086ed4c3f54b6d41c57fe -Author: Christian Persch -Date: Wed Sep 12 19:35:36 2007 +0000 - - Make the xulrunner backend build: change C/CXX/LDFLAGS, comment out - some code that isn't ported to gecko 1.9 yet. Doesn't link yet! - - svn path=/trunk/; revision=7402 - - embed/xulrunner/bindings/Makefile.am | 8 ++- - embed/xulrunner/bindings/python/Makefile.am | 13 ++--- - embed/xulrunner/data/Makefile.am | 1 - - embed/xulrunner/embed/ContentHandler.cpp | 3 +- - embed/xulrunner/embed/EphyDirectoryProvider.cpp | 7 +-- - embed/xulrunner/embed/EphyFind.cpp | 10 +--- - embed/xulrunner/embed/EphySidebar.cpp | 5 +- - embed/xulrunner/embed/GeckoPrintService.cpp | 1 - - embed/xulrunner/embed/GtkNSSDialogs.cpp | 1 + - embed/xulrunner/embed/Makefile.am | 77 ++++++------------------- - embed/xulrunner/embed/MozDownload.cpp | 3 +- - embed/xulrunner/embed/MozRegisterComponents.cpp | 5 +- - embed/xulrunner/embed/mozilla-embed-single.cpp | 17 ++---- - embed/xulrunner/src/Makefile.am | 42 +++----------- - embed/xulrunner/tests/Makefile.am | 39 ++++++------- - 15 files changed, 68 insertions(+), 164 deletions(-) - -commit 4cc435aa4cb1d683f03ad529d9d4891c8886771b -Author: Christian Persch -Date: Wed Sep 12 19:25:58 2007 +0000 - - Move ChangeLog - - svn path=/trunk/; revision=7401 - - embed/xulrunner/ChangeLog | 545 ------------------------------------- - embed/xulrunner/ChangeLog-preEphy | 548 ++++++++++++++++++++++++++++++++++++++ - 2 files changed, 548 insertions(+), 545 deletions(-) - -commit daeeba36086528531a4ca6886a40566627672325 -Author: Christian Persch -Date: Wed Sep 12 19:07:32 2007 +0000 - - Update version and API version to 2.21 - - svn path=/trunk/; revision=7398 - - configure.ac | 4 ++-- - src/ephy-notebook.c | 3 +-- - 2 files changed, 3 insertions(+), 4 deletions(-) - -commit 67c7003ef91fa462386f474fd28c92c5f77efb49 -Author: Christian Persch -Date: Wed Sep 12 19:06:42 2007 +0000 - - Add ChangeLog stub pointing to HACKING file for policy - - svn path=/trunk/; revision=7397 - - ChangeLog | 3 +++ - 1 file changed, 3 insertions(+) - -commit 6b697aa9ff3e87b4fdab572146ecb1e10ffec6a0 -Author: Christian Persch -Date: Wed Sep 12 19:06:24 2007 +0000 - - Style fixes - - svn path=/trunk/; revision=7396 - - HACKING | 1 + - 1 file changed, 1 insertion(+) - -commit 444297ce6ab76f35774c9ce434c32ff42972f630 -Author: Christian Persch -Date: Wed Sep 12 18:44:22 2007 +0000 - - Fix the LIBXUL_INCLUDES variable - - svn path=/trunk/; revision=7395 - - m4/libxul.m4 | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 638af2df837e0049c7f505443b1db27f9c3b2b2f -Author: Christian Persch -Date: Wed Sep 12 18:42:57 2007 +0000 - - Move old ChangeLog to ChangeLog-20070912, and dist it. - Update HACKING file for no-ChangeLog policy. - - svn path=/trunk/; revision=7394 - - ChangeLog | 2251 ---------------------------------------------------- - ChangeLog-20070912 | 2251 ++++++++++++++++++++++++++++++++++++++++++++++++++++ - HACKING | 38 +- - Makefile.am | 10 +- - 4 files changed, 2279 insertions(+), 2271 deletions(-) - -commit 85e48eed9e19e82448ad60d4252edec04ad8dbd0 -Author: Cosimo Cecchi -Date: Wed Sep 12 17:36:53 2007 +0000 - - Make session recovery focus work properly and remember the active tab. - - 2007-09-12 Cosimo Cecchi - - * src/ephy-session.c: (write_active_tab), (write_ephy_window), - (ephy_session_load): - - Make session recovery focus work properly and remember the active tab. - Fixes bug #317272. - - - svn path=/trunk/; revision=7393 - - ChangeLog | 8 ++++++++ - src/ephy-session.c | 36 +++++++++++++++++++++++++++++++++++- - 2 files changed, 43 insertions(+), 1 deletion(-) - -commit 662bc04565b5f871500166b3e86ee3f6fbb2b429 -Author: Cosimo Cecchi -Date: Wed Sep 12 15:30:03 2007 +0000 - - Fix disable_toolbar_editing lockdown not respected for Remove and Move - - 2007-09-12 Cosimo Cecchi - - * src/ephy-lockdown.c: (update_window): - - Fix disable_toolbar_editing lockdown not respected for Remove and Move - actions on toolbar buttons. Bug #475641. Patch by Cyril Brulebois. - - - svn path=/trunk/; revision=7392 - - ChangeLog | 7 +++++++ - src/ephy-lockdown.c | 27 +++++++++++++++++++-------- - 2 files changed, 26 insertions(+), 8 deletions(-) - -commit 996340290e12fa08e92787b87f724b0a9d6bccc5 -Author: Cosimo Cecchi -Date: Wed Sep 12 15:24:21 2007 +0000 - - Adapt EphyHistoryWindow to the iconified EphySearchEntry and adds a - - 2007-09-12 Cosimo Cecchi - - * src/ephy-history-window.c: (search_entry_clear_cb), - (build_search_box): - - Adapt EphyHistoryWindow to the iconified EphySearchEntry and adds - a cleaner button in its search entry, like in Bookmarks Editor. - Fixes bug #476179. - - - svn path=/trunk/; revision=7391 - - ChangeLog | 9 +++++++++ - src/ephy-history-window.c | 40 ++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 47 insertions(+), 2 deletions(-) - -commit c1fc79ecff20dbdd4f79055f7d87e6b9253c22ce -Author: Cosimo Cecchi -Date: Wed Sep 12 14:50:34 2007 +0000 - - Find toolbar now remembers last pattern searched also when opened with - - 2007-09-12 Cosimo Cecchi - - * src/ephy-find-toolbar.c: (ephy_find_toolbar_open): - - Find toolbar now remembers last pattern searched also when opened with - GDK_slash or GDK_apostrophe. Fixes bug #343337. - - - svn path=/trunk/; revision=7390 - - ChangeLog | 7 +++++++ - src/ephy-find-toolbar.c | 10 +--------- - 2 files changed, 8 insertions(+), 9 deletions(-) - -commit 8f1f21106f06ebdd8baf1d7263e7d19c2e22dec9 -Author: Yang Zhang -Date: Wed Sep 12 13:02:10 2007 +0000 - - Updated zh_CN translation - - svn path=/trunk/; revision=7389 - - po/zh_CN.po | 62 ++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 39 insertions(+), 23 deletions(-) - -commit 240c391b1c0f3dd1ecdd4056322cde83b14a66c9 -Author: Stéphane Raimbault -Date: Wed Sep 12 00:41:41 2007 +0000 - - Updated French translation by Cyril Brulebois and Robert-André Mauchin. - - svn path=/trunk/; revision=7386 - - po/ChangeLog | 5 + - po/fr.po | 294 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 167 insertions(+), 132 deletions(-) - -commit b05dac16d80580171961933431b239a83431b813 -Author: Jonh Wendell -Date: Tue Sep 11 12:48:17 2007 +0000 - - Updated Brazilian Portuguese translation by Og Maciel. - - 2007-09-11 Jonh Wendell - - * pt_BR.po: Updated Brazilian Portuguese translation by Og Maciel. - - - svn path=/trunk/; revision=7384 - - po/ChangeLog | 4 + - po/pt_BR.po | 854 ++++++++++++++++++----------------------------------------- - 2 files changed, 263 insertions(+), 595 deletions(-) - -commit 44a63e712da2b69162a0387ac05ee23a35aec479 -Author: Cosimo Cecchi -Date: Mon Sep 10 22:46:48 2007 +0000 - - Adds drag-and-drop of URLs onto "New Tab" and "New Window" buttons in the - - 2007-09-11 Cosimo Cecchi - - * src/ephy-home-action.c: (action_name_association), - (ephy_home_action_activate), (home_action_drag_data_received_cb), - (connect_proxy), (disconnect_proxy), (ephy_home_action_class_init): - - Adds drag-and-drop of URLs onto "New Tab" and "New Window" buttons in - the toolbar. Fixes bug #382383. - - - svn path=/trunk/; revision=7382 - - ChangeLog | 9 +++ - src/ephy-home-action.c | 161 ++++++++++++++++++++++++++++++++++++++++++++----- - 2 files changed, 156 insertions(+), 14 deletions(-) - -commit 5606ae245b489fed230a65cce0a46be5e15ea298 -Author: Reinout van Schouwen -Date: Mon Sep 10 20:44:28 2007 +0000 - - Updated Dutch translation - - 2007-09-10 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=7381 - - po/ChangeLog | 7425 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- - po/nl.po | 303 +-- - 2 files changed, 7552 insertions(+), 176 deletions(-) - -commit 78cf8506d6b018e8c305a835cdf34227871e1637 -Author: Christian Persch -Date: Mon Sep 10 19:42:07 2007 +0000 - - Make sure the gecko version is set to 0 if we're not compiling with the - - 2007-09-10 Christian Persch - - * m4/gecko.m4: - - Make sure the gecko version is set to 0 if we're not compiling with - the gecko backend. Bug #475461, patch by Cyril Brulebois. - - svn path=/trunk/; revision=7379 - - ChangeLog | 7 +++++++ - m4/gecko.m4 | 4 ++++ - 2 files changed, 11 insertions(+) - -commit 5419e4d4d29bf4896fcf194af4a7f98a24841e16 -Author: Christian Persch -Date: Mon Sep 10 19:37:33 2007 +0000 - - Error out if the C++ compiler wasn't found. Bug #475360. - - 2007-09-10 Christian Persch - - * configure.ac: - - Error out if the C++ compiler wasn't found. Bug #475360. - - svn path=/trunk/; revision=7378 - - ChangeLog | 6 ++++++ - configure.ac | 11 ++++++++++- - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit 3bfcd08768b43b69dadc9aa0dabbff7a0f3e395c -Author: Jorge Gonzalez Gonzalez -Date: Mon Sep 10 16:11:26 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7376 - - po/ChangeLog | 4 + - po/es.po | 302 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 161 insertions(+), 145 deletions(-) - -commit f434e29fadd59052b3fb25385bd38de385e5593b -Author: Priit Laes -Date: Mon Sep 10 14:12:53 2007 +0000 - - Updated Estonian translation. - - 2007-09-10 Priit Laes - - * et.po: Updated Estonian translation. - - svn path=/trunk/; revision=7373 - - po/ChangeLog | 4 ++++ - po/et.po | 14 +++++++++++++- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit 962e06487d9d07caa7d5935f26baa53f6f639279 -Author: Maxim Dziumanenko -Date: Mon Sep 10 09:44:30 2007 +0000 - - Update Ukrainian translation. - - 2007-09-10 Maxim Dziumanenko - - * Update Ukrainian translation. - - svn path=/trunk/; revision=7369 - - po/ChangeLog | 4 + - po/uk.po | 819 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 460 insertions(+), 363 deletions(-) - -commit 3c118673db951bcfc65573f6641315157cb600d1 -Author: Hendrik Richter -Date: Mon Sep 10 09:40:58 2007 +0000 - - Updated German translation. - - 2007-09-10 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=7368 - - po/ChangeLog | 4 ++ - po/de.po | 145 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 84 insertions(+), 65 deletions(-) - -commit 3c3d1706767df1b0d30134f802935ca7dc1e050c -Author: Ilkka Tuohela -Date: Mon Sep 10 03:40:03 2007 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=7366 - - po/ChangeLog | 4 ++ - po/fi.po | 137 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 83 insertions(+), 58 deletions(-) - -commit 8344bc78c1bfc2e200c4525f07c4e50ba77f279d -Author: Cosimo Cecchi -Date: Sun Sep 9 22:43:58 2007 +0000 - - Makes tooltips for Back and Forward buttons display the titles of relative - - 2007-09-10 Cosimo Cecchi - - * src/ephy-toolbar.c: (ephy_toolbar_set_navigation_tooltips): - * src/ephy-toolbar.h: - * src/ephy-window.c: (sync_tab_navigation): - - Makes tooltips for Back and Forward buttons display the titles of - relative pages. Fixes bug #341400. Patch by Cyril Brulebois. - - - svn path=/trunk/; revision=7364 - - ChangeLog | 9 +++++++++ - src/ephy-toolbar.c | 20 ++++++++++++++++++++ - src/ephy-toolbar.h | 4 ++++ - src/ephy-window.c | 30 ++++++++++++++++++++++++++++++ - 4 files changed, 63 insertions(+) - -commit 7a9491270389f22445a70f56aadf25d140960836 -Author: Cosimo Cecchi -Date: Sun Sep 9 22:36:29 2007 +0000 - - Forces the display of "Close print preview" on the relative toolbar button - - 2007-09-10 Cosimo Cecchi - - * src/ppview-toolbar.c: (ppview_toolbar_set_window): - - Forces the display of "Close print preview" on the relative toolbar - button in the print preview window. See bug #109063. Patch by - Cyril Brulebois. - - - svn path=/trunk/; revision=7363 - - ChangeLog | 8 ++++++++ - src/ppview-toolbar.c | 24 ++++++++++++++++++++++++ - 2 files changed, 32 insertions(+) - -commit ae3696a199b3ba3a6641956bbf95049ecfdacd68 -Author: Daniel Nylander -Date: Sun Sep 9 22:34:17 2007 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=7361 - - po/ChangeLog | 4 + - po/sv.po | 341 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 182 insertions(+), 163 deletions(-) - -commit b3a75061677399de19355802c54c4d355653f284 -Author: Christian Persch -Date: Sun Sep 9 21:11:39 2007 +0000 - - A m4/libxul.m4: Integrate the "xulrunner" backend with configure. Not - - 2007-09-09 Christian Persch - - * configure.ac: - * embed/Makefile.am: - * embed/ephy-embed-factory.c: (ephy_embed_factory_new_object): - * m4/gecko.m4: - A m4/libxul.m4: - * src/Makefile.am: Integrate the "xulrunner" backend with configure. - Not building yet. - - svn path=/trunk/; revision=7359 - - ChangeLog | 10 ++ - configure.ac | 67 ++++++-- - embed/Makefile.am | 14 +- - embed/ephy-embed-factory.c | 23 ++- - m4/gecko.m4 | 24 ++- - m4/libxul.m4 | 417 +++++++++++++++++++++++++++++++++++++++++++++ - src/Makefile.am | 12 +- - 7 files changed, 541 insertions(+), 26 deletions(-) - -commit 0e3d0325dab1bfa25b1af72cc8b1f8dcddfa9dc7 -Author: Cosimo Cecchi -Date: Sun Sep 9 17:49:34 2007 +0000 - - Modifies the EphySearchEntry to inherit from EphyIconEntry instead of - - 2007-09-09 Cosimo Cecchi - - * lib/widgets/ephy-search-entry.c: (ephy_search_entry_get_type), - (ephy_search_entry_timeout_cb), (ephy_search_entry_changed_cb), - (ephy_search_entry_init), (ephy_search_entry_clear): - * lib/widgets/ephy-search-entry.h: - * src/bookmarks/ephy-bookmarks-editor.c: (search_entry_clear_cb), - (build_search_box): - - Modifies the EphySearchEntry to inherit from EphyIconEntry instead of - GtkEntry, to have icons on it. Adds a cleaner icon in the search - entry of Bookmarks Editor. Fixes bug #463469. - - - svn path=/trunk/; revision=7358 - - ChangeLog | 13 ++++++++++++ - lib/widgets/ephy-search-entry.c | 18 +++++++++++----- - lib/widgets/ephy-search-entry.h | 6 +++--- - src/bookmarks/ephy-bookmarks-editor.c | 40 ++++++++++++++++++++++++++++++++++- - 4 files changed, 68 insertions(+), 9 deletions(-) - -commit 56a321d56e13c6ba2b635e2b2066d4337a5046ad -Author: Cosimo Cecchi -Date: Sun Sep 9 12:45:20 2007 +0000 - - Marks as translatable some toolbar editor strings and removes references - - 2007-09-09 Cosimo Cecchi - - * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_constructor): - - Marks as translatable some toolbar editor strings and removes - references to old Control Center gettext domain. Fixes bug #474429. - Patch by Cyril Brulebois. - - - svn path=/trunk/; revision=7357 - - ChangeLog | 8 ++++++++ - src/ephy-toolbar-editor.c | 21 +++++---------------- - 2 files changed, 13 insertions(+), 16 deletions(-) - -commit 97d914c35732490d84fa6228d565efa0a9d2a99b -Author: Cosimo Cecchi -Date: Sun Sep 9 12:37:41 2007 +0000 - - Fixes bad state syncing when adding zoom controls to the toolbar. Fixes - - 2007-09-09 Cosimo Cecchi - - * lib/widgets/ephy-zoom-action.c: (connect_proxy): - - Fixes bad state syncing when adding zoom controls to the toolbar. - Fixes bug #338005. Patch by Cyril Brulebois. - - - svn path=/trunk/; revision=7355 - - ChangeLog | 7 +++++++ - lib/widgets/ephy-zoom-action.c | 4 ++++ - 2 files changed, 11 insertions(+) - -commit bc3c4b0089e0c3502f4f6ef87e0e646b0769bcfb -Author: Cosimo Cecchi -Date: Sat Sep 8 23:27:43 2007 +0000 - - Make 'Not found' on find toolbar temporairly bold and fires - - 2007-09-09 Cosimo Cecchi - - * src/ephy-find-toolbar.c: (set_status_notfound_cb), (set_status), - (ephy_find_toolbar_dispose): - - Make 'Not found' on find toolbar temporairly bold and fires - gtk_widget_error_bell () when searching on a page and no results are - found. Fixes bug #363004. - - - svn path=/trunk/; revision=7354 - - ChangeLog | 9 +++++++++ - src/ephy-find-toolbar.c | 37 ++++++++++++++++++++++++++++++++++++- - 2 files changed, 45 insertions(+), 1 deletion(-) - -commit 753299c1380ba2feb4866c4079c4d48b033887b1 -Author: Cosimo Cecchi -Date: Fri Sep 7 23:33:54 2007 +0000 - - Fix runtime warnings when downloading small files, due to bad handling of - - 2007-09-08 Cosimo Cecchi - - * embed/downloader-view.c: (downloader_view_finalize), - (update_buttons_timeout_cb), (downloader_view_add_download): - - Fix runtime warnings when downloading small files, due to bad handling - of g_timeout in DownloaderView. Fixes bug #473566. - - - svn path=/trunk/; revision=7351 - - ChangeLog | 8 ++++++++ - embed/downloader-view.c | 12 ++++++++++-- - 2 files changed, 18 insertions(+), 2 deletions(-) - -commit e8faacfe408e53b529f11b826cd3d60a94fb7041 -Author: Clytie Siddall -Date: Fri Sep 7 12:27:08 2007 +0000 - - 2007-09-07 vi.po Updated Vietnamese translation - - Clytie Siddall - - svn path=/trunk/; revision=7350 - - po/ChangeLog | 4 + - po/vi.po | 916 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 462 insertions(+), 458 deletions(-) - -commit f3a9d0e3b4076697146985b38d93cebeed0ee629 -Author: Goran Rakic -Date: Fri Sep 7 08:02:38 2007 +0000 - - Updated Serbian translation - - svn path=/trunk/; revision=7348 - - po/sr.po | 4 ++-- - po/sr@Latn.po | 4 ++-- - 2 files changed, 4 insertions(+), 4 deletions(-) - -commit aae4339a0234ce07abb25618885e5f55c411e236 -Author: Goran Rakic -Date: Fri Sep 7 07:39:48 2007 +0000 - - Updated Serbian translation - - svn path=/trunk/; revision=7347 - - po/ChangeLog | 6 +- - po/sr.po | 724 ++++++++++++++++++++++++++++--------------------------- - po/sr@Latn.po | 761 +++++++++++++++++++++++++++++++--------------------------- - 3 files changed, 793 insertions(+), 698 deletions(-) - -commit 2d4777bbda58df6256c231ce5658c8ca1fe6b030 -Author: Hendrik Richter -Date: Thu Sep 6 06:43:47 2007 +0000 - - Updated German translation. - - 2007-09-06 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=7344 - - po/ChangeLog | 4 ++++ - po/de.po | 12 +++++++----- - 2 files changed, 11 insertions(+), 5 deletions(-) - -commit 7d6ee3d47c3bb8ab8104cd08168bdbdd45118c47 -Author: Jan Arne Petersen -Date: Thu Sep 6 01:16:45 2007 +0000 - - Added German translation from 2.20 branch. - - 2007-09-06 Jan Arne Petersen - - * Makefile.am: - * de/de.po: Added German translation from 2.20 branch. - - - svn path=/trunk/; revision=7343 - - help/ChangeLog | 5 + - help/Makefile.am | 2 +- - help/de/de.po | 2846 ++++++++++++++++++++ - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 3278 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 1994 bytes - help/de/figures/ephy-history-window-screenshot.png | Bin 0 -> 37216 bytes - help/de/figures/ephy-screenshot.png | Bin 0 -> 73939 bytes - 7 files changed, 2852 insertions(+), 1 deletion(-) - -commit 1c273a80801a56bf5d0cde9fa4f1785876f116ab -Author: Ignacio Casal Quinteiro -Date: Wed Sep 5 20:03:09 2007 +0000 - - Updated Galician Translation. - - svn path=/trunk/; revision=7341 - - po/ChangeLog | 7341 +--------------------------------------------------------- - po/gl.po | 723 +++--- - 2 files changed, 369 insertions(+), 7695 deletions(-) - -commit b950adbaf5050f9bc17121c026461d1e47ab222f -Author: Hendrik Richter -Date: Wed Sep 5 10:54:06 2007 +0000 - - Updated German translation. - - 2007-09-05 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=7339 - - po/ChangeLog | 4 ++ - po/de.po | 158 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 83 insertions(+), 79 deletions(-) - -commit f00a089bf9acd08a0b2a7f93c3c45d1e27b972a7 -Author: Clytie Siddall -Date: Sun Sep 2 12:40:37 2007 +0000 - - 2007-09-02 vi.po Updated Vietnamese translation - - Clytie Siddall - - svn path=/trunk/; revision=7334 - - po/ChangeLog | 2 +- - po/vi.po | 688 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 383 insertions(+), 307 deletions(-) - -commit 7994f7cdf07b079d6494cc2a74a920c33e43d52a -Author: Artur Flinta -Date: Sun Sep 2 12:24:14 2007 +0000 - - Updated Polish translation by GNOME PL Team. - - 2007-09-02 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - - svn path=/trunk/; revision=7333 - - po/ChangeLog | 4 ++++ - po/pl.po | 36 +++++++++++++++++------------------- - 2 files changed, 21 insertions(+), 19 deletions(-) - -commit 240d47eedb2b8fbaf236de5c9a39d91a08f56e80 -Author: Funda Wang -Date: Sun Sep 2 08:30:36 2007 +0000 - - Updated epiphany trunk translation - - svn path=/trunk/; revision=7330 - - po/ChangeLog | 4 + - po/zh_CN.po | 742 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 400 insertions(+), 346 deletions(-) - -commit 28a0f90f054b31f3e642e69d273dff84321ebe43 -Author: Yannig MARCHEGAY -Date: Sat Sep 1 20:07:05 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7329 - - po/oc.po | 48 ++++++++++++++++++++++++++---------------------- - 1 file changed, 26 insertions(+), 22 deletions(-) - -commit 6957743003e0096f7470ee28db1b48538556e0b3 -Author: Gil Forcada Codinachs -Date: Sat Sep 1 17:25:31 2007 +0000 - - Updated catalan translation - - svn path=/trunk/; revision=7327 - - po/ChangeLog | 4 + - po/ca.po | 725 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 374 insertions(+), 355 deletions(-) - -commit 3ee3f9a93c36d317264964d45f85ddc014f363fa -Author: Christian Persch -Date: Wed Aug 29 18:13:45 2007 +0000 - - More mime types. - - 2007-08-28 Christian Persch - - * data/mime-types-permissions.xml: - - More mime types. - - svn path=/trunk/; revision=7324 - - data/mime-types-permissions.xml | 1 + - 1 file changed, 1 insertion(+) - -commit 1e61bcbd2602e1bc1c3f36f05ad38d3968373d39 -Author: Ilkka Tuohela -Date: Wed Aug 29 04:37:05 2007 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=7319 - - po/ChangeLog | 4 + - po/fi.po | 412 ++++++++++++----------------------------------------------- - 2 files changed, 84 insertions(+), 332 deletions(-) - -commit ce33901c53274d563ecf01c4ffde7d0b3548a64d -Author: Christian Persch -Date: Tue Aug 28 18:56:44 2007 +0000 - - More mime types. - - 2007-08-28 Christian Persch - - * data/mime-types-permissions.xml: - - More mime types. - - svn path=/trunk/; revision=7316 - - data/mime-types-permissions.xml | 1 + - 1 file changed, 1 insertion(+) - -commit 045cb14eaf0e8886701bce8a81d1850b3d8939a1 -Author: Christian Persch -Date: Tue Aug 28 18:43:44 2007 +0000 - - More mime types. - - 2007-08-28 Christian Persch - - * data/mime-types-permissions.xml: - - More mime types. - - svn path=/trunk/; revision=7314 - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit db0012460be774d942117cf2746f230fc4b6e87a -Author: Žygimantas Beručka -Date: Tue Aug 28 14:16:40 2007 +0000 - - Small fix. - - svn path=/trunk/; revision=7313 - - po/ChangeLog | 4 ++++ - po/lt.po | 14 +++++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit 2285b3f1b8afa4ce6d4ba695e15cbaba68435ba1 -Author: Žygimantas Beručka -Date: Tue Aug 28 14:10:13 2007 +0000 - - Updated Lithuanian translation. - - svn path=/trunk/; revision=7312 - - po/ChangeLog | 4 + - po/lt.po | 535 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 271 insertions(+), 268 deletions(-) - -commit 8619e52c1617341233a169769885d49f82ecf7e7 -Author: Claude Paroz -Date: Mon Aug 27 20:48:14 2007 +0000 - - Updated French translation. - - 2007-08-27 Claude Paroz - - * fr/fr.po: Updated French translation. - - svn path=/trunk/; revision=7310 - - help/ChangeLog | 4 + - help/fr/fr.po | 396 ++++++++++++++++++++++++++++----------------------------- - 2 files changed, 198 insertions(+), 202 deletions(-) - -commit 7491fa62f9d5adcd6b7dbe0c5c72b05b9ec92a3f -Author: Christian Persch -Date: Mon Aug 27 20:36:58 2007 +0000 - - Bump version, but not API version yet (wait until e-e is branched too) - - svn path=/trunk/; revision=7309 - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 528612649e4fc47122f8fd34923f898e56427713 -Author: Christian Persch -Date: Mon Aug 27 20:26:33 2007 +0000 - - Merged from embed/mozilla - - svn path=/trunk/; revision=7306 - - embed/xulrunner/embed/MozDownload.cpp | 36 ++++++++++++++++++++++++++++++----- - embed/xulrunner/embed/MozDownload.h | 1 + - 2 files changed, 32 insertions(+), 5 deletions(-) - -commit 437e1b0d173f8c09ab7e5d0db9f6f3889fc5aacc -Author: Duarte Loreto -Date: Sun Aug 26 23:15:14 2007 +0000 - - Updated Portuguese translation. - - 2007-08-27 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - svn path=/trunk/; revision=7302 - - po/ChangeLog | 4 + - po/pt.po | 765 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 418 insertions(+), 351 deletions(-) - -commit c18c59e4065b0a40cea93bb69976d40d6f34c7dd -Author: Diego Escalante Urrelo -Date: Sun Aug 26 21:57:37 2007 +0000 - - Fix the Go button signal handler so it doesn't stop the propagation of the - - 2007-08-26 Diego Escalante Urrelo - - * src/ephy-go-action.c: - - Fix the Go button signal handler so it doesn't stop the propagation of - the event due to a bad signal handler. Fixes bug #469845. Patch by - Cosimo Cecchi. - - - svn path=/trunk/; revision=7301 - - ChangeLog | 8 ++++++++ - src/ephy-go-action.c | 4 +++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 3e87142caf4b143d59ebae348ace706917b7eb51 -Author: Diego Escalante Urrelo -Date: Sun Aug 26 21:49:58 2007 +0000 - - Add saved files to the GtkRecent list, gnome-panel is broken so don't - - 2007-08-26 Diego Escalante Urrelo - - * lib/ephy-file-helpers.c: - * lib/ephy-file-helpers.h: - * embed/mozilla/MozDownload.h: - * embed/mozilla/MozDownload.cpp: - - Add saved files to the GtkRecent list, gnome-panel is broken so don't - expect to see the effects of this working there, you can use it on the - GtkFileChooser dialog however. Fixes Bug #148401. Original patch by - Christian Persch, updated by Cosimo Cecchi. - - - svn path=/trunk/; revision=7300 - - ChangeLog | 12 ++++++++++++ - embed/mozilla/MozDownload.cpp | 36 +++++++++++++++++++++++++++++++----- - embed/mozilla/MozDownload.h | 1 + - lib/ephy-file-helpers.c | 12 ++++++++++++ - lib/ephy-file-helpers.h | 3 +++ - 5 files changed, 59 insertions(+), 5 deletions(-) - -commit 53075e8f45b40da4260a9d46ce2b41668381dacb -Author: Gabor Kelemen -Date: Sun Aug 26 20:15:20 2007 +0000 - - Translation updated. - - 2007-08-26 Gabor Kelemen - - * hu.po: Translation updated. - - - svn path=/trunk/; revision=7299 - - po/ChangeLog | 4 + - po/hu.po | 250 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 131 insertions(+), 123 deletions(-) - -commit cf93919bb1664c0e615541a11655e90536d659ef -Author: Christian Persch -Date: Sun Aug 26 19:32:08 2007 +0000 - - Skip these files - - svn path=/trunk/; revision=7298 - - po/POTFILES.skip | 18 ++++++++++++++++++ - 1 file changed, 18 insertions(+) - -commit 6deabce61b1758b0c395678bf5c2769ee4ca17c6 -Author: Christian Persch -Date: Sat Aug 25 20:59:04 2007 +0000 - - Initial checkin: merged embed/gecko from xulrunner branch to embed/xulrunner, and svn copied embed/mozilla to embed/xulrunner/embed. Not integreated with the build yet. - - svn path=/trunk/; revision=7297 - - embed/xulrunner/AUTHORS | 2 + - embed/xulrunner/COPYRIGHT | 3 + - embed/xulrunner/ChangeLog | 545 +++++++ - embed/xulrunner/HACKING | 10 + - embed/xulrunner/MAINTAINERS | 2 + - embed/xulrunner/Makefile.am | 9 + - embed/xulrunner/NEWS | 0 - embed/xulrunner/PLAN | 26 + - embed/xulrunner/README | 0 - embed/xulrunner/STATUS | 2 + - embed/xulrunner/TODO | 1 + - embed/xulrunner/bindings/Makefile.am | 5 + - embed/xulrunner/bindings/python/Makefile.am | 63 + - .../xulrunner/bindings/python/gnomegeckoembed.defs | 294 ++++ - .../bindings/python/gnomegeckoembed.override | 19 + - .../bindings/python/gnomegeckoembedmodule.c | 29 + - embed/xulrunner/bindings/python/test.py | 32 + - embed/xulrunner/data/Makefile.am | 3 + - embed/xulrunner/data/gnome-gecko-embed.pc.in | 11 + - embed/xulrunner/embed/AutoJSContextStack.cpp | 47 + - embed/xulrunner/embed/AutoJSContextStack.h | 41 + - embed/xulrunner/embed/AutoWindowModalState.cpp | 61 + - embed/xulrunner/embed/AutoWindowModalState.h | 38 + - embed/xulrunner/embed/ContentHandler.cpp | 479 ++++++ - embed/xulrunner/embed/ContentHandler.h | 81 + - embed/xulrunner/embed/EphyAboutModule.cpp | 725 +++++++++ - embed/xulrunner/embed/EphyAboutModule.h | 65 + - embed/xulrunner/embed/EphyBadCertRejector.cpp | 68 + - embed/xulrunner/embed/EphyBadCertRejector.h | 36 + - embed/xulrunner/embed/EphyBrowser.cpp | 1614 +++++++++++++++++++ - embed/xulrunner/embed/EphyBrowser.h | 223 +++ - embed/xulrunner/embed/EphyContentPolicy.cpp | 244 +++ - embed/xulrunner/embed/EphyContentPolicy.h | 76 + - embed/xulrunner/embed/EphyDirectoryProvider.cpp | 106 ++ - embed/xulrunner/embed/EphyDirectoryProvider.h | 37 + - embed/xulrunner/embed/EphyFind.cpp | 267 +++ - embed/xulrunner/embed/EphyFind.h | 60 + - embed/xulrunner/embed/EphyHeaderSniffer.cpp | 442 +++++ - embed/xulrunner/embed/EphyHeaderSniffer.h | 95 ++ - embed/xulrunner/embed/EphyHistoryListener.cpp | 170 ++ - embed/xulrunner/embed/EphyHistoryListener.h | 49 + - embed/xulrunner/embed/EphyPromptService.cpp | 888 ++++++++++ - embed/xulrunner/embed/EphyPromptService.h | 53 + - embed/xulrunner/embed/EphyRedirectChannel.cpp | 32 + - embed/xulrunner/embed/EphyRedirectChannel.h | 50 + - embed/xulrunner/embed/EphySidebar.cpp | 168 ++ - embed/xulrunner/embed/EphySidebar.h | 66 + - embed/xulrunner/embed/EphySingle.cpp | 396 +++++ - embed/xulrunner/embed/EphySingle.h | 67 + - embed/xulrunner/embed/EphyUtils.cpp | 218 +++ - embed/xulrunner/embed/EphyUtils.h | 71 + - embed/xulrunner/embed/EventContext.cpp | 1105 +++++++++++++ - embed/xulrunner/embed/EventContext.h | 78 + - embed/xulrunner/embed/FilePicker.cpp | 492 ++++++ - embed/xulrunner/embed/FilePicker.h | 62 + - embed/xulrunner/embed/GeckoCookiePromptService.cpp | 159 ++ - embed/xulrunner/embed/GeckoCookiePromptService.h | 43 + - embed/xulrunner/embed/GeckoFormSigningDialog.cpp | 158 ++ - embed/xulrunner/embed/GeckoFormSigningDialog.h | 42 + - embed/xulrunner/embed/GeckoPrintService.cpp | 756 +++++++++ - embed/xulrunner/embed/GeckoPrintService.h | 54 + - embed/xulrunner/embed/GeckoPrintSession.cpp | 629 ++++++++ - embed/xulrunner/embed/GeckoPrintSession.h | 94 ++ - embed/xulrunner/embed/GeckoSpellCheckEngine.cpp | 205 +++ - embed/xulrunner/embed/GeckoSpellCheckEngine.h | 52 + - embed/xulrunner/embed/GlobalHistory.cpp | 225 +++ - embed/xulrunner/embed/GlobalHistory.h | 68 + - embed/xulrunner/embed/GtkNSSClientAuthDialogs.cpp | 284 ++++ - embed/xulrunner/embed/GtkNSSClientAuthDialogs.h | 45 + - embed/xulrunner/embed/GtkNSSDialogs.cpp | 1694 ++++++++++++++++++++ - embed/xulrunner/embed/GtkNSSDialogs.h | 61 + - embed/xulrunner/embed/GtkNSSKeyPairDialogs.cpp | 216 +++ - embed/xulrunner/embed/GtkNSSKeyPairDialogs.h | 45 + - .../embed/GtkNSSSecurityWarningDialogs.cpp | 285 ++++ - .../xulrunner/embed/GtkNSSSecurityWarningDialogs.h | 83 + - embed/xulrunner/embed/Makefile.am | 159 ++ - embed/xulrunner/embed/MozDownload.cpp | 787 +++++++++ - embed/xulrunner/embed/MozDownload.h | 152 ++ - embed/xulrunner/embed/MozRegisterComponents.cpp | 333 ++++ - embed/xulrunner/embed/MozRegisterComponents.h | 28 + - embed/xulrunner/embed/mozilla-download.cpp | 313 ++++ - embed/xulrunner/embed/mozilla-download.h | 61 + - embed/xulrunner/embed/mozilla-embed-event.cpp | 221 +++ - embed/xulrunner/embed/mozilla-embed-event.h | 74 + - embed/xulrunner/embed/mozilla-embed-find.cpp | 198 +++ - embed/xulrunner/embed/mozilla-embed-find.h | 57 + - embed/xulrunner/embed/mozilla-embed-persist.cpp | 416 +++++ - embed/xulrunner/embed/mozilla-embed-persist.h | 63 + - embed/xulrunner/embed/mozilla-embed-single.cpp | 1445 +++++++++++++++++ - embed/xulrunner/embed/mozilla-embed-single.h | 57 + - embed/xulrunner/embed/mozilla-embed.cpp | 1273 +++++++++++++++ - embed/xulrunner/embed/mozilla-embed.h | 66 + - embed/xulrunner/embed/mozilla-notifiers.cpp | 1257 +++++++++++++++ - embed/xulrunner/embed/mozilla-notifiers.h | 58 + - embed/xulrunner/embed/mozilla-x509-cert.cpp | 261 +++ - embed/xulrunner/embed/mozilla-x509-cert.h | 63 + - embed/xulrunner/src/AutoJSContextStack.cpp | 48 + - embed/xulrunner/src/AutoJSContextStack.h | 41 + - embed/xulrunner/src/AutoWindowModalState.cpp | 43 + - embed/xulrunner/src/AutoWindowModalState.h | 38 + - embed/xulrunner/src/EmbedContentListener.cpp | 159 ++ - embed/xulrunner/src/EmbedContentListener.h | 63 + - embed/xulrunner/src/EmbedEventListener.cpp | 183 +++ - embed/xulrunner/src/EmbedEventListener.h | 102 ++ - embed/xulrunner/src/EmbedProgress.cpp | 224 +++ - embed/xulrunner/src/EmbedProgress.h | 63 + - embed/xulrunner/src/EmbedStream.cpp | 311 ++++ - embed/xulrunner/src/EmbedStream.h | 79 + - embed/xulrunner/src/EmbedWindow.cpp | 467 ++++++ - embed/xulrunner/src/EmbedWindow.h | 97 ++ - embed/xulrunner/src/EmbedWindowCreator.cpp | 108 ++ - embed/xulrunner/src/EmbedWindowCreator.h | 51 + - embed/xulrunner/src/GeckoBrowser.cpp | 676 ++++++++ - embed/xulrunner/src/GeckoBrowser.h | 159 ++ - embed/xulrunner/src/GeckoPromptService.cpp | 891 ++++++++++ - embed/xulrunner/src/GeckoPromptService.h | 53 + - embed/xulrunner/src/GeckoSingle.cpp | 122 ++ - embed/xulrunner/src/GeckoSingle.h | 97 ++ - embed/xulrunner/src/GeckoUtils.cpp | 87 + - embed/xulrunner/src/GeckoUtils.h | 34 + - embed/xulrunner/src/Makefile.am | 167 ++ - embed/xulrunner/src/gecko-dom-event-internal.h | 28 + - embed/xulrunner/src/gecko-dom-event-private.h | 38 + - embed/xulrunner/src/gecko-dom-event.cpp | 78 + - embed/xulrunner/src/gecko-dom-event.h | 40 + - embed/xulrunner/src/gecko-embed-marshal.list | 10 + - embed/xulrunner/src/gecko-embed-private.h | 54 + - embed/xulrunner/src/gecko-embed-signals.h | 82 + - embed/xulrunner/src/gecko-embed-single-private.h | 59 + - embed/xulrunner/src/gecko-embed-single.cpp | 182 +++ - embed/xulrunner/src/gecko-embed-single.h | 88 + - embed/xulrunner/src/gecko-embed-types.h | 118 ++ - embed/xulrunner/src/gecko-embed.cpp | 1029 ++++++++++++ - embed/xulrunner/src/gecko-embed.h | 151 ++ - embed/xulrunner/src/gecko-init-internal.h | 30 + - embed/xulrunner/src/gecko-init-private.h | 33 + - embed/xulrunner/src/gecko-init.cpp | 392 +++++ - embed/xulrunner/src/gecko-init.h | 35 + - embed/xulrunner/tests/Makefile.am | 35 + - embed/xulrunner/tests/TestGtkEmbedNotebook.cpp | 49 + - embed/xulrunner/tests/testgeckoembed.cpp | 1145 +++++++++++++ - 141 files changed, 30405 insertions(+) - -commit d2bc7076ca31996d4a5b80b74e4380e6f2f56321 -Author: Christian Persch -Date: Sat Aug 25 20:28:37 2007 +0000 - - More mime types. - - 2007-08-25 Christian Persch - - * data/mime-types-permissions.xml: - - More mime types. - - svn path=/trunk/; revision=7296 - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 2 ++ - 2 files changed, 8 insertions(+) - -commit c8883e3241f1ceb43514e66aa28e661e5cfd3013 -Author: Christian Persch -Date: Wed Aug 22 19:54:35 2007 +0000 - - Enable printing to PDF file on gecko 1.9, now that moz#367907 is fixed. - - 2007-08-22 Christian Persch - - * embed/mozilla/GeckoPrintService.cpp: - - Enable printing to PDF file on gecko 1.9, now that moz#367907 is - fixed. - - svn path=/trunk/; revision=7295 - - ChangeLog | 7 +++++++ - embed/mozilla/GeckoPrintService.cpp | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 16db7bb6abe165b89b5382676de8e22f8cf9ebe1 -Author: Satoru Satoh -Date: Tue Aug 21 21:11:55 2007 +0000 - - Fixed a invalid XML tagging in help/ja/ja.po. - - svn path=/trunk/; revision=7294 - - help/ChangeLog | 4 ++++ - help/ja/ja.po | 10 +++++----- - 2 files changed, 9 insertions(+), 5 deletions(-) - -commit e9397d50fc59efbe8a7ed605398e9bb93d173668 -Author: Yannig MARCHEGAY -Date: Tue Aug 21 19:20:23 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7293 - - help/oc/oc.po | 2517 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 2517 insertions(+) - -commit cc57d63751379176e3d6c01a201f1ec413dd2bc2 -Author: Yannig MARCHEGAY -Date: Tue Aug 21 19:19:53 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7291 - - help/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f837d6fb4b4f4eb8a751042487ee40b43be9467d -Author: Yannig MARCHEGAY -Date: Tue Aug 21 10:50:45 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7290 - - po/oc.po | 788 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 390 insertions(+), 398 deletions(-) - -commit 9e09dcd80e5b91219e003667be17fd89a41ac2ac -Author: Raphael Higino -Date: Tue Aug 21 03:11:45 2007 +0000 - - Updated Brazilian Portuguese translation - - svn path=/trunk/; revision=7289 - - po/ChangeLog | 5 ++ - po/pt_BR.po | 211 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 111 insertions(+), 105 deletions(-) - -commit 813f5ce61c0186297c3a741504aa463ec974ba1e -Author: Daniel Nylander -Date: Mon Aug 20 19:45:07 2007 +0000 - - Updated screenshot. - - * sv/figures/*png: Updated screenshot. - - - svn path=/trunk/; revision=7288 - - help/ChangeLog | 4 ++++ - help/sv/figures/ephy-screenshot.png | Bin 86783 -> 74258 bytes - 2 files changed, 4 insertions(+) - -commit 3d6f90d634c5a378d97da140960e20abb77c6849 -Author: Stéphane Raimbault -Date: Mon Aug 20 10:07:06 2007 +0000 - - Updated French translation. - - svn path=/trunk/; revision=7287 - - po/ChangeLog | 4 ++ - po/fr.po | 141 ++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 96 insertions(+), 49 deletions(-) - -commit 66b2ec993e2382301b874e93ccc8588fc3abd6d8 -Author: Kenneth Nielsen -Date: Sun Aug 19 21:31:34 2007 +0000 - - Updated Danish translation - - svn path=/trunk/; revision=7286 - - po/ChangeLog | 4 + - po/da.po | 818 +++++++++++++++++++++-------------------------------------- - 2 files changed, 299 insertions(+), 523 deletions(-) - -commit 581c7eb1504dd1b6c701319ca918d4e5899f70bc -Author: Christian Persch -Date: Sun Aug 19 20:54:36 2007 +0000 - - Remove cruft - - svn path=/trunk/; revision=7285 - - src/ephy-notebook.c | 3 --- - 1 file changed, 3 deletions(-) - -commit a2b0a05e5da83fc860e8c4b487463d01d4c23e12 -Author: Artur Flinta -Date: Sun Aug 19 14:38:51 2007 +0000 - - Updated Polish translation by GNOME PL Team. - - 2007-08-19 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - - svn path=/trunk/; revision=7284 - - po/ChangeLog | 4 + - po/pl.po | 432 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 228 insertions(+), 208 deletions(-) - -commit e7da3e158d89997931664cdc4271bd2ac988cef2 -Author: Diego Escalante Urrelo -Date: Sun Aug 19 07:43:17 2007 +0000 - - Make cursor be at the end of the URL when selecting entries from the - - 2007-08-19 Diego Escalante Urrelo - - * lib/widgets/ephy-location-entry.c: - - Make cursor be at the end of the URL when selecting entries from the - completion popup. Fixes bug #466344. - - - svn path=/trunk/; revision=7283 - - ChangeLog | 7 +++++++ - lib/widgets/ephy-location-entry.c | 1 + - 2 files changed, 8 insertions(+) - -commit dd3501d4650524fa9ec1c05349c2bdf225d35be7 -Author: Yannig MARCHEGAY -Date: Fri Aug 17 15:17:43 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7282 - - po/oc.po | 40 ++++++++++++++++++++-------------------- - 1 file changed, 20 insertions(+), 20 deletions(-) - -commit 0143f2b8e1e72cc2f2cdcc182165916f8960d0af -Author: Xan Lopez -Date: Thu Aug 16 20:46:43 2007 +0000 - - Implement reload. - - svn path=/trunk/; revision=7281 - - ChangeLog | 4 ++++ - embed/webkit/webkit-embed.cpp | 1 + - 2 files changed, 5 insertions(+) - -commit 1a07ddef537bf9789b7ea6e123cf78468061d05f -Author: Priit Laes -Date: Thu Aug 16 09:50:00 2007 +0000 - - Estonian translation update by Ivar Smolin. - - 2007-08-16 Priit Laes - - * et.po: Estonian translation update by Ivar Smolin. - - svn path=/trunk/; revision=7280 - - po/ChangeLog | 4 ++ - po/et.po | 227 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 116 insertions(+), 115 deletions(-) - -commit bfff564b9f7e666de0ce9acce66f351ed21d9810 -Author: Carlos Garcia Campos -Date: Thu Aug 16 08:15:30 2007 +0000 - - Fix multihead problems in toolbar editor. - - 2007-08-16 Carlos Garcia Campos - * lib/egg/egg-toolbar-editor.c: (set_drag_cursor): - * lib/egg/egg-editable-toolbar.c: (configure_item_cursor), - (new_pixbuf_from_widget): - Fix multihead problems in toolbar editor. - - svn path=/trunk/; revision=7279 - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 13 ++++++++++--- - lib/egg/egg-toolbar-editor.c | 8 +++++--- - 3 files changed, 23 insertions(+), 6 deletions(-) - -commit 30c6a6045363b1031307db565bcd20b7074afd4b -Author: Adam Weinberger -Date: Wed Aug 15 20:37:39 2007 +0000 - - Updated Canadian English translation. - - 2007-08-15 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - - - svn path=/trunk/; revision=7278 - - po/ChangeLog | 4 + - po/en_CA.po | 2577 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1419 insertions(+), 1162 deletions(-) - -commit 1146c5da2d98e34387341d8d9ecf52fccb5e9a7e -Author: Stéphane Raimbault -Date: Wed Aug 15 19:52:29 2007 +0000 - - Updated French translation. - - svn path=/trunk/; revision=7277 - - po/ChangeLog | 4 + - po/fr.po | 808 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 390 insertions(+), 422 deletions(-) - -commit 73495153dd7ded5657ce69ba1d6bcaa5e12dd3ab -Author: Diego Escalante Urrelo -Date: Wed Aug 15 08:14:59 2007 +0000 - - Fix download-icon toolip updates, patch by Cosimo Cecchi. Fixes bug - - 2007-08-15 Diego Escalante Urrelo - - * embed/downloader-view.c: - - Fix download-icon toolip updates, patch by Cosimo Cecchi. - Fixes bug #343238. - - - svn path=/trunk/; revision=7276 - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 12 +++++++++--- - 2 files changed, 16 insertions(+), 3 deletions(-) - -commit f615d984849907b54f21ff1b6de0872913d0e6b5 -Author: Diego Escalante Urrelo -Date: Wed Aug 15 08:04:05 2007 +0000 - - Default to Cancel on Cert dialogues, patch by Cosimo Cecchi. Fixes bug - - 2007-08-15 Diego Escalante Urrelo - - * embed/mozilla/GtkNSSDialogs.cpp: - - Default to Cancel on Cert dialogues, patch by Cosimo Cecchi. - Fixes bug #163379. - - - svn path=/trunk/; revision=7275 - - ChangeLog | 7 +++++++ - embed/mozilla/GtkNSSDialogs.cpp | 11 +++++------ - 2 files changed, 12 insertions(+), 6 deletions(-) - -commit ec96881f6e30e029c308eefe982a30da6fdca779 -Author: Diego Escalante Urrelo -Date: Wed Aug 15 07:46:04 2007 +0000 - - Fix strict-aliasing warnings, patch by Cosimo Cecchi. Happy 10 years - - 2007-08-15 Diego Escalante Urrelo - - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/MozDownload.cpp: - - Fix strict-aliasing warnings, patch by Cosimo Cecchi. - Happy 10 years GNOME!. Fixes bug #433173. - - - svn path=/trunk/; revision=7274 - - ChangeLog | 9 +++++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 6 ++++-- - embed/mozilla/EphyUtils.cpp | 3 ++- - embed/mozilla/MozDownload.cpp | 4 +++- - 4 files changed, 18 insertions(+), 4 deletions(-) - -commit cb1f9910f188e2db04be62a2c41fbe95255348c3 -Author: Satoru Satoh -Date: Tue Aug 14 15:49:18 2007 +0000 - - Corrected Japanese help translation. - - svn path=/trunk/; revision=7273 - - help/ChangeLog | 4 ++++ - help/ja/ja.po | 33 +++++++++++++++++---------------- - 2 files changed, 21 insertions(+), 16 deletions(-) - -commit 5b94b6af15d81afc45d2624871822799e0514aed -Author: Hendrik Richter -Date: Tue Aug 14 14:30:50 2007 +0000 - - Updated German translation. - - 2007-08-14 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=7272 - - po/ChangeLog | 4 ++++ - po/de.po | 55 +++++++++++++++++++++++++++++-------------------------- - 2 files changed, 33 insertions(+), 26 deletions(-) - -commit d37f9cf8ee2f2b1470405b37bd77f2e0b7411388 -Author: Hendrik Richter -Date: Tue Aug 14 13:50:14 2007 +0000 - - intltool-update de - - 2007-08-14 Hendrik Richter - - * de.po: intltool-update de - - svn path=/trunk/; revision=7271 - - po/ChangeLog | 4 + - po/de.po | 565 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 299 insertions(+), 270 deletions(-) - -commit 5a0e4ae9bf3616449f019a50fbc5dcc21900ff7b -Author: Felix I -Date: Tue Aug 14 08:54:10 2007 +0000 - - updated ta translation - - svn path=/trunk/; revision=7270 - - po/ChangeLog | 4 + - po/ta.po | 798 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 499 insertions(+), 303 deletions(-) - -commit f519d14be7fdf05831b095f9a251a88d5bdf749f -Author: Christian Persch -Date: Mon Aug 13 21:11:55 2007 +0000 - - Post release version bump - - svn path=/trunk/; revision=7269 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8075908e09746f4168f2988fa2b0d250cc5f0fea -Author: Christian Persch -Date: Mon Aug 13 21:06:17 2007 +0000 - - === Release 2.19.90 === - - 2007-08-13 Christian Persch - - === Release 2.19.90 === - - * Makefile.am: - - svn path=/trunk/; revision=7267 - - ChangeLog | 8 ++++++++ - Makefile.am | 3 +++ - 2 files changed, 11 insertions(+) - -commit dfc784e60f9a8146c810813a0c9e895deb7e68aa -Author: Satoru Satoh -Date: Mon Aug 13 17:26:57 2007 +0000 - - Moved a wrongly added log in po/ChangeLog to help/ChangeLog. - - svn path=/trunk/; revision=7266 - - help/ChangeLog | 4 ++++ - po/ChangeLog | 4 ---- - 2 files changed, 4 insertions(+), 4 deletions(-) - -commit 252ab3929bb78de90fe4d3e5a895880fd7e14914 -Author: Satoru Satoh -Date: Mon Aug 13 17:25:37 2007 +0000 - - Updated Japanese help translation. - - svn path=/trunk/; revision=7265 - - help/ja/ja.po | 2622 ++++++++++++++++++++++++++++++++------------------------- - po/ChangeLog | 4 + - 2 files changed, 1478 insertions(+), 1148 deletions(-) - -commit 1ceff7a538f85efb6bedf8f5b727e3ee1ecad66f -Author: Claude Paroz -Date: Mon Aug 13 14:21:24 2007 +0000 - - Corrected Malay translation, on behalf of Hasbullah Bin Pit - - 2007-08-13 Claude Paroz - - * ms.po: Corrected Malay translation, on behalf of Hasbullah Bin Pit - . Fixes #167405. - - svn path=/trunk/; revision=7264 - - po/ChangeLog | 5 + - po/ms.po | 5392 +++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 3441 insertions(+), 1956 deletions(-) - -commit 435ce6b4136312d604070aed3404855a3b2e66bc -Author: Christian Persch -Date: Sun Aug 12 20:58:27 2007 +0000 - - Add low contrast app icon. - - 2007-08-12 Christian Persch - - * data/icons/Makefile.am: - - Add low contrast app icon. - - svn path=/trunk/; revision=7263 - - ChangeLog | 6 ++++++ - ...owContrastLargePrint_apps_48x48_gnome-web-browser.png | Bin 0 -> 3335 bytes - data/icons/Makefile.am | 2 ++ - 3 files changed, 8 insertions(+) - -commit 770585ecf66e19519267b3eabe8145096ec7240a -Author: Inaki Larranaga Murgoitio -Date: Sat Aug 11 15:32:14 2007 +0000 - - Updated Basque translation. - - 2007-08-11 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation. - - - svn path=/trunk/; revision=7262 - - po/ChangeLog | 4 ++ - po/eu.po | 210 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 121 insertions(+), 93 deletions(-) - -commit ac87a226e000f6b9f839e40cd072f0aca81e82ab -Author: Daniel Nylander -Date: Sat Aug 11 10:55:53 2007 +0000 - - sv.po: Swedish translation updated - - svn path=/trunk/; revision=7261 - - help/ChangeLog | 4 ++++ - help/sv/sv.po | 8 ++++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit b5f66de9a8dcc6f03698d174ed4417d408c3877a -Author: Christian Persch -Date: Thu Aug 9 20:28:44 2007 +0000 - - Fix icons install paths. - - 2007-08-09 Christian Persch - - * data/icons/Makefile.am: - - Fix icons install paths. - - svn path=/trunk/; revision=7260 - - ChangeLog | 6 ++++++ - data/icons/Makefile.am | 51 ++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 41 insertions(+), 16 deletions(-) - -commit c6f808a44535df882955f0e8348aaebe55bece22 -Author: Ilkka Tuohela -Date: Thu Aug 9 04:50:46 2007 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=7259 - - po/ChangeLog | 4 ++++ - po/fi.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 4b69f20e2d426628772774c92553129d658c6434 -Author: Christian Persch -Date: Wed Aug 8 23:08:46 2007 +0000 - - Fix icon cache update command. - - 2007-08-09 Christian Persch - - * data/icons/Makefile.am: - - Fix icon cache update command. - - svn path=/trunk/; revision=7258 - - ChangeLog | 6 ++++++ - data/icons/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4b55229ff8259532a1ec85bbfc469a14f2601640 -Author: Christian Persch -Date: Wed Aug 8 22:38:32 2007 +0000 - - Add a11y theme icons for our apps icon. - - 2007-08-09 Christian Persch - - * 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 - - ChangeLog | 7 +++++++ - ...astLargePrintInverse_apps_48x48_gnome-web-browser.png | Bin 0 -> 2749 bytes - ...ghContrastLargePrint_apps_48x48_gnome-web-browser.png | Bin 0 -> 2715 bytes - data/icons/Makefile.am | 4 ++++ - 4 files changed, 11 insertions(+) - -commit 1adf85635f982bac8f84e31c26d7232d46fa7e9a -Author: Christian Persch -Date: Wed Aug 8 22:33:14 2007 +0000 - - A data/icons/*: R data/icons/*/*/*: - - 2007-08-09 Christian Persch - - * configure.ac: - A data/icons/*: - R data/icons/*/*/*: - - Reorganise icons. - - svn path=/trunk/; revision=7256 - - ChangeLog | 8 + - configure.ac | 27 +- - data/icons/16x16/Makefile.am | 5 - - data/icons/16x16/actions/Makefile.am | 18 - - data/icons/16x16/actions/bookmark-view.png | Bin 474 -> 0 bytes - data/icons/16x16/actions/bookmark-view.xcf | Bin 1969 -> 0 bytes - data/icons/16x16/actions/history-view.png | Bin 842 -> 0 bytes - data/icons/16x16/actions/history-view.svg | 153 --- - data/icons/16x16/actions/location-entry.png | Bin 540 -> 0 bytes - data/icons/16x16/apps/Makefile.am | 15 - - data/icons/16x16/apps/gnome-web-browser.png | Bin 982 -> 0 bytes - data/icons/16x16/apps/gnome-web-browser.svg | 853 --------------- - data/icons/16x16/places/Makefile.am | 15 - - data/icons/16x16/places/bookmark-web.png | Bin 576 -> 0 bytes - data/icons/16x16/places/bookmark-web.svg | 121 --- - data/icons/16x16/status/Makefile.am | 19 - - data/icons/16x16/status/lock-broken.png | Bin 693 -> 0 bytes - data/icons/16x16/status/lock-insecure.png | Bin 693 -> 0 bytes - data/icons/16x16/status/lock-secure-checked.png | Bin 821 -> 0 bytes - data/icons/16x16/status/lock-secure.png | Bin 729 -> 0 bytes - data/icons/16x16/status/popup-hidden.png | Bin 327 -> 0 bytes - data/icons/16x16/status/popup-hidden.xcf | Bin 2282 -> 0 bytes - data/icons/22x22/Makefile.am | 5 - - data/icons/22x22/actions/Makefile.am | 18 - - data/icons/22x22/actions/bookmark-view.png | Bin 595 -> 0 bytes - data/icons/22x22/actions/bookmark-view.xcf | Bin 2461 -> 0 bytes - data/icons/22x22/actions/history-view.png | Bin 1498 -> 0 bytes - data/icons/22x22/actions/history-view.svg | 255 ----- - data/icons/22x22/actions/location-entry.png | Bin 814 -> 0 bytes - data/icons/22x22/apps/Makefile.am | 15 - - data/icons/22x22/apps/gnome-web-browser.png | Bin 1585 -> 0 bytes - data/icons/22x22/apps/gnome-web-browser.svg | 1069 ------------------- - data/icons/22x22/places/Makefile.am | 15 - - data/icons/22x22/places/bookmark-web.png | Bin 989 -> 0 bytes - data/icons/22x22/places/bookmark-web.svg | 134 --- - data/icons/22x22/status/Makefile.am | 15 - - data/icons/22x22/status/popup-hidden.png | Bin 325 -> 0 bytes - data/icons/22x22/status/popup-hidden.xcf | Bin 2879 -> 0 bytes - data/icons/24x24/Makefile.am | 5 - - data/icons/24x24/actions/Makefile.am | 14 - - data/icons/24x24/actions/README | 13 - - data/icons/24x24/actions/bookmark-view.png | Bin 585 -> 0 bytes - data/icons/24x24/actions/history-view.png | Bin 1511 -> 0 bytes - data/icons/24x24/actions/location-entry.png | Bin 877 -> 0 bytes - data/icons/24x24/apps/Makefile.am | 14 - - data/icons/24x24/apps/gnome-web-browser.png | Bin 1601 -> 0 bytes - data/icons/24x24/places/Makefile.am | 14 - - data/icons/24x24/places/bookmark-web.png | Bin 1025 -> 0 bytes - data/icons/24x24/status/Makefile.am | 14 - - data/icons/24x24/status/lock-broken.png | Bin 1554 -> 0 bytes - data/icons/24x24/status/lock-insecure.png | Bin 1197 -> 0 bytes - data/icons/24x24/status/lock-secure-checked.png | Bin 1306 -> 0 bytes - data/icons/24x24/status/lock-secure.png | Bin 1224 -> 0 bytes - data/icons/24x24/status/popup-hidden.png | Bin 378 -> 0 bytes - data/icons/32x32/Makefile.am | 4 - - data/icons/32x32/actions/Makefile.am | 19 - - data/icons/32x32/actions/bookmark-view.png | Bin 934 -> 0 bytes - data/icons/32x32/actions/bookmark-view.svg | 299 ------ - data/icons/32x32/actions/history-view.png | Bin 2426 -> 0 bytes - data/icons/32x32/actions/history-view.svg | 266 ----- - data/icons/32x32/actions/location-entry.png | Bin 1591 -> 0 bytes - data/icons/32x32/actions/location-entry.svg | 1024 ------------------ - data/icons/32x32/apps/Makefile.am | 15 - - data/icons/32x32/apps/gnome-web-browser.png | Bin 2645 -> 0 bytes - data/icons/32x32/apps/gnome-web-browser.svg | 1082 -------------------- - data/icons/32x32/status/Makefile.am | 15 - - data/icons/32x32/status/popup-hidden.png | Bin 1028 -> 0 bytes - data/icons/32x32/status/popup-hidden.svg | 372 ------- - data/icons/48x48/Makefile.am | 2 - - data/icons/48x48/status/Makefile.am | 15 - - data/icons/48x48/status/lock-broken.png | Bin 4310 -> 0 bytes - data/icons/48x48/status/lock-insecure.png | Bin 2913 -> 0 bytes - data/icons/48x48/status/lock-secure-checked.png | Bin 3313 -> 0 bytes - data/icons/48x48/status/lock-secure.png | Bin 2978 -> 0 bytes - data/icons/Makefile.am | 113 +- - data/icons/README | 13 + - data/icons/hicolor_actions_16x16_bookmark-view.png | Bin 0 -> 474 bytes - data/icons/hicolor_actions_16x16_bookmark-view.xcf | Bin 0 -> 1969 bytes - data/icons/hicolor_actions_16x16_history-view.png | Bin 0 -> 842 bytes - data/icons/hicolor_actions_16x16_history-view.svg | 153 +++ - .../icons/hicolor_actions_16x16_location-entry.png | Bin 0 -> 540 bytes - data/icons/hicolor_actions_22x22_bookmark-view.png | Bin 0 -> 595 bytes - data/icons/hicolor_actions_22x22_bookmark-view.xcf | Bin 0 -> 2461 bytes - data/icons/hicolor_actions_22x22_history-view.png | Bin 0 -> 1498 bytes - data/icons/hicolor_actions_22x22_history-view.svg | 255 +++++ - .../icons/hicolor_actions_22x22_location-entry.png | Bin 0 -> 814 bytes - data/icons/hicolor_actions_24x24_bookmark-view.png | Bin 0 -> 585 bytes - data/icons/hicolor_actions_24x24_history-view.png | Bin 0 -> 1511 bytes - .../icons/hicolor_actions_24x24_location-entry.png | Bin 0 -> 877 bytes - data/icons/hicolor_actions_32x32_bookmark-view.png | Bin 0 -> 934 bytes - data/icons/hicolor_actions_32x32_bookmark-view.svg | 299 ++++++ - data/icons/hicolor_actions_32x32_history-view.png | Bin 0 -> 2426 bytes - data/icons/hicolor_actions_32x32_history-view.svg | 266 +++++ - .../icons/hicolor_actions_32x32_location-entry.png | Bin 0 -> 1591 bytes - .../icons/hicolor_actions_32x32_location-entry.svg | 1024 ++++++++++++++++++ - .../hicolor_actions_scalable_bookmark-view.svg | 355 +++++++ - .../hicolor_actions_scalable_history-view.svg | 299 ++++++ - .../hicolor_actions_scalable_location-entry.svg | 1050 +++++++++++++++++++ - .../icons/hicolor_apps_16x16_gnome-web-browser.png | Bin 0 -> 982 bytes - .../icons/hicolor_apps_16x16_gnome-web-browser.svg | 853 +++++++++++++++ - .../icons/hicolor_apps_22x22_gnome-web-browser.png | Bin 0 -> 1585 bytes - .../icons/hicolor_apps_22x22_gnome-web-browser.svg | 1069 +++++++++++++++++++ - .../icons/hicolor_apps_24x24_gnome-web-browser.png | Bin 0 -> 1601 bytes - .../icons/hicolor_apps_32x32_gnome-web-browser.png | Bin 0 -> 2645 bytes - .../icons/hicolor_apps_32x32_gnome-web-browser.svg | 1082 ++++++++++++++++++++ - .../hicolor_apps_scalable_gnome-web-browser.svg | 917 +++++++++++++++++ - data/icons/hicolor_places_16x16_bookmark-web.png | Bin 0 -> 576 bytes - data/icons/hicolor_places_16x16_bookmark-web.svg | 121 +++ - data/icons/hicolor_places_22x22_bookmark-web.png | Bin 0 -> 989 bytes - data/icons/hicolor_places_22x22_bookmark-web.svg | 134 +++ - data/icons/hicolor_places_24x24_bookmark-web.png | Bin 0 -> 1025 bytes - data/icons/hicolor_status_16x16_lock-broken.png | Bin 0 -> 693 bytes - data/icons/hicolor_status_16x16_lock-insecure.png | Bin 0 -> 693 bytes - .../hicolor_status_16x16_lock-secure-checked.png | Bin 0 -> 821 bytes - data/icons/hicolor_status_16x16_lock-secure.png | Bin 0 -> 729 bytes - data/icons/hicolor_status_16x16_popup-hidden.png | Bin 0 -> 327 bytes - data/icons/hicolor_status_16x16_popup-hidden.xcf | Bin 0 -> 2282 bytes - data/icons/hicolor_status_22x22_popup-hidden.png | Bin 0 -> 325 bytes - data/icons/hicolor_status_22x22_popup-hidden.xcf | Bin 0 -> 2879 bytes - data/icons/hicolor_status_24x24_lock-broken.png | Bin 0 -> 1554 bytes - data/icons/hicolor_status_24x24_lock-insecure.png | Bin 0 -> 1197 bytes - .../hicolor_status_24x24_lock-secure-checked.png | Bin 0 -> 1306 bytes - data/icons/hicolor_status_24x24_lock-secure.png | Bin 0 -> 1224 bytes - data/icons/hicolor_status_24x24_popup-hidden.png | Bin 0 -> 378 bytes - data/icons/hicolor_status_32x32_popup-hidden.png | Bin 0 -> 1028 bytes - data/icons/hicolor_status_32x32_popup-hidden.svg | 372 +++++++ - data/icons/hicolor_status_48x48_lock-broken.png | Bin 0 -> 4310 bytes - data/icons/hicolor_status_48x48_lock-insecure.png | Bin 0 -> 2913 bytes - .../hicolor_status_48x48_lock-secure-checked.png | Bin 0 -> 3313 bytes - data/icons/hicolor_status_48x48_lock-secure.png | Bin 0 -> 2978 bytes - .../icons/hicolor_status_scalable_popup-hidden.svg | 367 +++++++ - data/icons/scalable/Makefile.am | 4 - - data/icons/scalable/actions/Makefile.am | 13 - - data/icons/scalable/actions/bookmark-view.svg | 355 ------- - data/icons/scalable/actions/history-view.svg | 299 ------ - data/icons/scalable/actions/location-entry.svg | 1050 ------------------- - data/icons/scalable/apps/Makefile.am | 14 - - data/icons/scalable/apps/gnome-web-browser.svg | 917 ----------------- - data/icons/scalable/status/Makefile.am | 11 - - data/icons/scalable/status/popup-hidden.svg | 367 ------- - 140 files changed, 8740 insertions(+), 8979 deletions(-) - -commit 2fb797db59a752b9bc75e4c383d65fc907113351 -Author: Christian Persch -Date: Wed Aug 8 20:56:26 2007 +0000 - - Update - - svn path=/trunk/; revision=7255 - - MAINTAINERS | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit c93d9e8cb6cbbe36e476a0ea96b10064cdd6da33 -Author: Ankitkumar Rameshchandra Patel -Date: Tue Aug 7 11:53:01 2007 +0000 - - Updated Translation - - svn path=/trunk/; revision=7253 - - po/ChangeLog | 4 ++ - po/gu.po | 134 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 69 insertions(+), 69 deletions(-) - -commit 37095cc6496abc9bd0c9b68c3630c3c5d4741816 -Author: Jorge Gonzalez Gonzalez -Date: Tue Aug 7 10:23:21 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7252 - - help/ChangeLog | 4 ++++ - help/es/es.po | 21 +++++++++++---------- - 2 files changed, 15 insertions(+), 10 deletions(-) - -commit c972fffee532a2453d8e2e4ec5933f48f2f67495 -Author: Christian Persch -Date: Mon Aug 6 21:44:43 2007 +0000 - - Direct bugs coming in from bb to their own Component, for easy filtering. - - 2007-08-06 Christian Persch - - * 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 - - ChangeLog | 8 ++++++++ - data/bme.desktop.in.in | 2 +- - data/epiphany.desktop.in.in | 2 +- - 3 files changed, 10 insertions(+), 2 deletions(-) - -commit 1e611a83a05f80713fea7ccc60bf248ca5cbe8ff -Author: Reinout van Schouwen -Date: Mon Aug 6 19:20:53 2007 +0000 - - updated Dutch translation. update revision number - - 2007-08-06 Reinout van Schouwen - - * help/nl/nl.po: updated Dutch translation. - * help/C/epiphany.xml: update revision number - - - svn path=/trunk/; revision=7250 - - help/C/epiphany.xml | 6 +- - help/ChangeLog | 4 + - help/nl/nl.po | 1246 ++++++++++++++++++++++++++------------------------- - 3 files changed, 634 insertions(+), 622 deletions(-) - -commit e696192388f97f019daf84c6a349dd3a9eadf2c5 -Author: Sunil Mohan Adapa -Date: Mon Aug 6 18:10:16 2007 +0000 - - Updated Telugu translation done by Pramod - - 2007-08-06 Sunil Mohan Adapa - - * te.po: Updated Telugu translation done by - Pramod - - - svn path=/trunk/; revision=7249 - - po/ChangeLog | 5 + - po/te.po | 4312 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 2473 insertions(+), 1844 deletions(-) - -commit 9dd6cedeb5a1faf20bbb21c7e4a9242f99bb4519 -Author: Ilkka Tuohela -Date: Mon Aug 6 13:41:25 2007 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=7248 - - po/ChangeLog | 4 + - po/fi.po | 295 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 160 insertions(+), 139 deletions(-) - -commit 102a2fb3565cff194a1c8901d6018c084831b987 -Author: SANDRA MARAKKALA DANISHKA NAVIN -Date: Mon Aug 6 10:11:55 2007 +0000 - - Added si entries for sinhala - - svn path=/trunk/; revision=7247 - - po/LINGUAS | 1 + - 1 file changed, 1 insertion(+) - -commit 6b6b508abb1bdf50e937763d4ab2542969490458 -Author: SANDRA MARAKKALA DANISHKA NAVIN -Date: Mon Aug 6 10:10:31 2007 +0000 - - Added Changelog entries for sinhala - - svn path=/trunk/; revision=7246 - - po/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit dae9401d2b4c301cfdf00fb16cbfccc39e4c5c22 -Author: SANDRA MARAKKALA DANISHKA NAVIN -Date: Mon Aug 6 10:09:10 2007 +0000 - - si.po updated - - svn path=/trunk/; revision=7245 - - po/si.po | 4260 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 4260 insertions(+) - -commit 6f07210d4d0e04a50dd64ca447952ef18ce07b8b -Author: Diego Escalante Urrelo -Date: Mon Aug 6 09:16:45 2007 +0000 - - Make ephy_history_set_enabled actually disable history and not delete it. - - 2007-08-06 Diego Escalante Urrelo - - * embed/ephy-history.c: - * embed/ephy-history.h: - - Make ephy_history_set_enabled actually disable history and not delete - it. Also make it public. - - - svn path=/trunk/; revision=7244 - - ChangeLog | 8 ++++++++ - embed/ephy-history.c | 56 +++++++++++++++++++++++++++++++++++----------------- - embed/ephy-history.h | 3 +++ - 3 files changed, 49 insertions(+), 18 deletions(-) - -commit c4af7e945b595f32014b856a9a9a40af2d50e860 -Author: Leonardo Ferreira Fontenelle -Date: Sun Aug 5 22:03:10 2007 +0000 - - Same as last commit, but this time done right. - - svn path=/trunk/; revision=7243 - - po/pt_BR.po | 648 +++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 356 insertions(+), 292 deletions(-) - -commit a61eb57ea3611d24b7bbd3f2446dfe3cb9f50c20 -Author: Leonardo Ferreira Fontenelle -Date: Sun Aug 5 19:58:46 2007 +0000 - - s/_Conteúdo/S_umário; see bug #461308. - - 2007-08-05 Leonardo Ferreira Fontenelle - - * pt_BR.po: s/_Conteúdo/S_umário; see bug #461308. - - svn path=/trunk/; revision=7242 - - po/ChangeLog | 4 ++++ - po/pt_BR.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit fe9aa386c87c47fbc00d3d1c2e06b16741c138eb -Author: Takeshi AIHANA -Date: Sat Aug 4 16:36:10 2007 +0000 - - Updated Japanese translation. - - 2007-08-04 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - - svn path=/trunk/; revision=7241 - - po/ChangeLog | 4 + - po/ja.po | 273 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 142 insertions(+), 135 deletions(-) - -commit aefe1b1d6d07cff6182a61e6735e920681110085 -Author: Reinout van Schouwen -Date: Sat Aug 4 00:11:53 2007 +0000 - - updated Dutch translation. updated Dutch translation - - 2007-08-04 Reinout van Schouwen - - * help/nl/nl.po: updated Dutch translation. - * po/nl.po: updated Dutch translation - - - svn path=/trunk/; revision=7240 - - help/ChangeLog | 4 ++ - help/nl/nl.po | 117 +++++++++++++++++++++++++------------------- - po/ChangeLog | 4 ++ - po/nl.po | 150 +++++++++++++++++++++++++++++---------------------------- - 4 files changed, 152 insertions(+), 123 deletions(-) - -commit fcd68f8832d3a534748efb50b166afbc40397a19 -Author: Diego Escalante Urrelo -Date: Thu Aug 2 19:39:24 2007 +0000 - - Remove "Add bookmark" and "Save as" from the document context menu. Patch - - 2007-08-02 Diego Escalante Urrelo - - * 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 - - ChangeLog | 9 +++++++++ - data/ui/epiphany-ui.xml | 3 --- - src/ephy-lockdown.c | 2 -- - src/ephy-window.c | 5 ----- - 4 files changed, 9 insertions(+), 10 deletions(-) - -commit 4502bbce6ccfe88f9a45692eb56d91317916c35e -Author: Daniel Nylander -Date: Wed Aug 1 19:47:33 2007 +0000 - - sv.po: Swedish translation updated - - svn path=/trunk/; revision=7238 - - help/ChangeLog | 4 + - help/sv/sv.po | 2009 ++++++++++++-------------------------------------------- - 2 files changed, 436 insertions(+), 1577 deletions(-) - -commit dc850b25413c84f78fbeed2b2c86710c33be0b53 -Author: Daniel Nylander -Date: Wed Aug 1 17:29:52 2007 +0000 - - sv.po: Swedish translation updated - - svn path=/trunk/; revision=7237 - - po/ChangeLog | 4 ++++ - po/sv.po | 35 ++++++++++++++++++++--------------- - 2 files changed, 24 insertions(+), 15 deletions(-) - -commit 6d8cb5e06877a796361a3f9d2ffab2006a94f27b -Author: Kjartan Maraas -Date: Wed Aug 1 13:19:12 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-08-01 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7236 - - po/ChangeLog | 4 + - po/nb.po | 251 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 133 insertions(+), 122 deletions(-) - -commit 6bc0d2b5b8ae465ce88f8c537ea48df63c6618c1 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Aug 1 13:18:37 2007 +0000 - - Updated Translation - - svn path=/trunk/; revision=7235 - - po/ChangeLog | 4 ++ - po/gu.po | 199 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 109 insertions(+), 94 deletions(-) - -commit 56c74f6fa25ec4587565e6843ac38c3bafd2a0b6 -Author: Jorge Gonzalez Gonzalez -Date: Wed Aug 1 13:08:53 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7234 - - po/ChangeLog | 6 +++- - po/es.po | 98 +++++++++++++++++++++++++++++------------------------------- - 2 files changed, 53 insertions(+), 51 deletions(-) - -commit 2e2245bdc10e8ef53112f395d2b8047314fe7b10 -Author: Diego Escalante Urrelo -Date: Wed Aug 1 12:31:43 2007 +0000 - - Fix completion model to show icons for history items too, - - 2007-08-01 Diego Escalante Urrelo - - * src/ephy-completion-model.c: - * embed/ephy-history.c: - - Fix completion model to show icons for history items too, - istory/bookmarks/favicon_cache service objects are now stored in the - completion priv. Patch by Imran Patel. Fixes bug #459811. - - - svn path=/trunk/; revision=7233 - - ChangeLog | 9 +++++++++ - embed/ephy-history.c | 11 ++++++++--- - src/ephy-completion-model.c | 42 ++++++++++++++++++++++++++---------------- - 3 files changed, 43 insertions(+), 19 deletions(-) - -commit ed4e14dc5fd743ae81abf66424eb0fbe04d5be75 -Author: Jorge Gonzalez Gonzalez -Date: Wed Aug 1 12:27:58 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7232 - - help/ChangeLog | 6 +++++- - help/es/es.po | 57 +++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 36 insertions(+), 27 deletions(-) - -commit 99e86c846dca540f69b7d7d3d62bb7a213d1983a -Author: Diego Escalante Urrelo -Date: Wed Aug 1 12:19:55 2007 +0000 - - Remove misleading text from hide menu bar lockdown. Fixes bug #321989. - - 2007-08-01 Diego Escalante Urrelo - - * data/epiphany-lockdown.schemas.in: - - Remove misleading text from hide menu bar lockdown. Fixes bug #321989. - - - svn path=/trunk/; revision=7231 - - ChangeLog | 6 ++++++ - data/epiphany-lockdown.schemas.in | 3 +-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 2bdef81123494fbb31a9d7cefcb1207487b68acf -Author: Priit Laes -Date: Wed Aug 1 07:09:23 2007 +0000 - - Estonian translation update by Ivar Smolin. - - 2007-08-01 Priit Laes - - * et.po: Estonian translation update by Ivar Smolin. - - svn path=/trunk/; revision=7230 - - po/ChangeLog | 4 +++ - po/et.po | 84 ++++++++++++++++++++++++++++-------------------------------- - 2 files changed, 43 insertions(+), 45 deletions(-) - -commit 0e0a25cdec7b72bbe1a24870d2dc5efa42f367d0 -Author: Reinout van Schouwen -Date: Tue Jul 31 23:43:19 2007 +0000 - - 2007-08-01 Reinout van Schouwen - - * 2007-08-01 Reinout van Schouwen - - - don't forget to update the ChangeLog... - - - svn path=/trunk/; revision=7229 - - help/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit f38b01affc6ab238ace15c2d33e6380e0fa03391 -Author: Reinout van Schouwen -Date: Tue Jul 31 23:41:06 2007 +0000 - - 2007-08-01 Reinout van Schouwen - - * 2007-08-01 Reinout van Schouwen - - - minor documentation update - - updated Dutch documentation translation - - - svn path=/trunk/; revision=7228 - - help/C/epiphany.xml | 12 ++--- - help/nl/nl.po | 136 +++++++++++++++++++++++----------------------------- - 2 files changed, 65 insertions(+), 83 deletions(-) - -commit 82c27cc3c0d02fb2db779dfb7c4b3b572e2c9d6f -Author: Diego Escalante Urrelo -Date: Tue Jul 31 03:48:08 2007 +0000 - - Add a missing space in ge_content_change description. - - 2007-07-30 Diego Escalante Urrelo - - * embed/ephy-embed.c: - - Add a missing space in ge_content_change description. - - - svn path=/trunk/; revision=7227 - - ChangeLog | 6 ++++++ - embed/ephy-embed.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a0d180634e13b6b42e4d13494c2c3afcd69caef7 -Author: Diego Escalante Urrelo -Date: Mon Jul 30 23:52:26 2007 +0000 - - Remove an unused variable. One-liner by Cosimo Cecchi. Part of Bug - - 2007-07-30 Diego Escalante Urrelo - - * lib/ephy-file-helpers.c: - - Remove an unused variable. One-liner by Cosimo Cecchi. - Part of Bug #433173. - - - svn path=/trunk/; revision=7226 - - ChangeLog | 7 +++++++ - lib/ephy-file-helpers.c | 1 - - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 135ff4cef6e8a9ae834b9e461ea13e11710409f0 -Author: Xan Lopez -Date: Mon Jul 30 21:50:44 2007 +0000 - - Do not use #ifdef inside macros, ancient compilers don't like it - - 2007-07-31 Xan Lopez - - * embed/mozilla/mozilla-embed-single.cpp: - * embed/webkit/webkit-embed-single.cpp: - - Do not use #ifdef inside macros, ancient compilers - don't like it - - svn path=/trunk/; revision=7225 - - ChangeLog | 8 ++++++++ - embed/mozilla/mozilla-embed-single.cpp | 17 +++++++++++++++-- - embed/webkit/webkit-embed-single.cpp | 16 ++++++++++++++-- - 3 files changed, 37 insertions(+), 4 deletions(-) - -commit 7de8aaac02cd46f58fc28df90460d7db7a558d5f -Author: Christian Persch -Date: Mon Jul 30 20:55:39 2007 +0000 - - Release marker - - svn path=/trunk/; revision=7224 - - ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 04a3b9e155b438d413543b7d840fc5ddd669e17c -Author: Christian Persch -Date: Mon Jul 30 20:55:08 2007 +0000 - - post-release version bump - - svn path=/trunk/; revision=7223 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ae4ef592e64a2c4bf3bf0842da0812f011253ed3 -Author: Christian Persch -Date: Mon Jul 30 20:54:06 2007 +0000 - - update - - svn path=/trunk/; revision=7221 - - doc/reference/tmpl/ephy-embed.sgml | 1 - - 1 file changed, 1 deletion(-) - -commit 4283631f3a415fcc8027e4f978d253371e1bdde4 -Author: Christian Persch -Date: Mon Jul 30 20:43:23 2007 +0000 - - And make it link, too - - svn path=/trunk/; revision=7220 - - doc/reference/Makefile.am | 40 +++++++++++++++++++++++----------------- - 1 file changed, 23 insertions(+), 17 deletions(-) - -commit 2e02c0900389932464ed067dfbf7c55f0b61a1e0 -Author: Christian Persch -Date: Mon Jul 30 20:37:55 2007 +0000 - - Trying to fix the docs build - - svn path=/trunk/; revision=7219 - - doc/reference/Makefile.am | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - -commit 64c801a78ec58a8818e0c2701201442ae4789ea4 -Author: Reinout van Schouwen -Date: Mon Jul 30 19:56:36 2007 +0000 - - 2007-07-30 Reinout van Schouwen - - * 2007-07-30 Reinout van Schouwen - - - Update NEWS for 2.19.6 - - - svn path=/trunk/; revision=7218 - - NEWS | 47 +++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 47 insertions(+) - -commit fc61e7ad674b26d45eab84c264aa48517796ba32 -Author: Priit Laes -Date: Mon Jul 30 19:15:12 2007 +0000 - - Estonian translation update by Ivar Smolin. - - 2007-07-30 Priit Laes - - * et.po: Estonian translation update by Ivar Smolin. - - svn path=/trunk/; revision=7217 - - po/ChangeLog | 4 ++ - po/et.po | 129 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 75 insertions(+), 58 deletions(-) - -commit f6d020a4a48d457a6397ad229ec7ef15f43d6fe7 -Author: Diego Escalante Urrelo -Date: Mon Jul 30 07:40:49 2007 +0000 - - can_go methods now work, WebKit was missing the implementations for those - - 2007-07-30 Diego Escalante Urrelo - - * embed/webkit/webkit-embed.cpp: - - can_go methods now work, WebKit was missing the implementations for - those functions, it's fixed now so we can use can_go methods. - Note that they are useless without the ge_location signal being - emitted (dummy code included, commented). - - Part of Bug #461652. - - - svn path=/trunk/; revision=7216 - - ChangeLog | 11 +++++++++++ - embed/webkit/webkit-embed.cpp | 29 +++++++++++++++++++++++++---- - 2 files changed, 36 insertions(+), 4 deletions(-) - -commit 924ebebc760524a00409bf88cfd241b3e5281a4a -Author: Xan Lopez -Date: Mon Jul 30 07:16:01 2007 +0000 - - Add returns where needed, remove unnecessary variables. - - 2007-07-30 Xan Lopez - - * embed/webkit/webkit-embed-persist.cpp: - * embed/webkit/webkit-embed.cpp: - - Add returns where needed, remove unnecessary variables. - - svn path=/trunk/; revision=7215 - - ChangeLog | 7 +++++++ - embed/webkit/webkit-embed-persist.cpp | 1 + - embed/webkit/webkit-embed.cpp | 10 ++++------ - 3 files changed, 12 insertions(+), 6 deletions(-) - -commit 50cc83d5972863c9c7b079b6ad8c51049fc5aaa4 -Author: Diego Escalante Urrelo -Date: Mon Jul 30 06:58:32 2007 +0000 - - Rename Webkit to WebKit. Used sed -i 's/Webkit/WebKit/'. Fixes bug - - 2007-07-30 Diego Escalante Urrelo - - * embed/webkit/webkit-embed-single.cpp: - * embed/webkit/webkit-embed.cpp: - * embed/webkit/webkit-embed-find.h: - * embed/webkit/webkit-embed-single.h: - * embed/webkit/webkit-embed.h: - * embed/webkit/webkit-embed-persist.cpp: - * embed/webkit/webkit-embed-persist.h: - * embed/webkit/webkit-embed-find.cpp: - - Rename Webkit to WebKit. Used sed -i 's/Webkit/WebKit/'. - Fixes bug #461689. - - - svn path=/trunk/; revision=7214 - - ChangeLog | 14 ++++++++++++ - embed/webkit/webkit-embed-find.cpp | 12 +++++------ - embed/webkit/webkit-embed-find.h | 18 ++++++++-------- - embed/webkit/webkit-embed-persist.cpp | 18 ++++++++-------- - embed/webkit/webkit-embed-persist.h | 20 +++++++++--------- - embed/webkit/webkit-embed-single.cpp | 16 +++++++------- - embed/webkit/webkit-embed-single.h | 18 ++++++++-------- - embed/webkit/webkit-embed.cpp | 40 +++++++++++++++++------------------ - embed/webkit/webkit-embed.h | 18 ++++++++-------- - 9 files changed, 94 insertions(+), 80 deletions(-) - -commit 9b81da4a70431e104dbcf7b40c8f14d61faa5a6c -Author: Diego Escalante Urrelo -Date: Mon Jul 30 05:13:42 2007 +0000 - - Fix some strict aliasing warnings. Patch by Cosimo Cecchi. Bug #433173. - - 2007-07-30 Diego Escalante Urrelo - - * lib/ephy-password-dialog.c: - - Fix some strict aliasing warnings. Patch by Cosimo Cecchi. - Bug #433173. - - - svn path=/trunk/; revision=7213 - - ChangeLog | 7 +++++++ - lib/ephy-password-dialog.c | 6 ------ - 2 files changed, 7 insertions(+), 6 deletions(-) - -commit 0fe0543f49d24020f3e3151bb8c56ed6b44bc5ba -Author: Carlos Garcia Campos -Date: Sun Jul 29 16:38:40 2007 +0000 - - Fix memory leak. - - 2007-07-29 Carlos Garcia Campos - * lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_dispose): - Fix memory leak. - - svn path=/trunk/; revision=7212 - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 3 +++ - 2 files changed, 9 insertions(+) - -commit 4ecbab9acdfe0e618d280da50e38bf33a6392e53 -Author: Yannig MARCHEGAY -Date: Sun Jul 29 07:42:29 2007 +0000 - - Updated Occitan translation - - svn path=/trunk/; revision=7211 - - po/oc.po | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -commit 6352763c043ec6c1db1387815599578141e6024d -Author: Inaki Larranaga Murgoitio -Date: Sat Jul 28 13:49:40 2007 +0000 - - Updated Basque translation - - 2007-07-28 Inaki Larranaga Murgoitio - - * eu.po: Updated Basque translation - - - svn path=/trunk/; revision=7210 - - po/ChangeLog | 4 + - po/eu.po | 1682 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 866 insertions(+), 820 deletions(-) - -commit 6899e8e28577071c6cb036202d087b558f4fb891 -Author: Xan Lopez -Date: Fri Jul 27 21:48:58 2007 +0000 - - Implement stop loading method, for some reason can_go methods will fail to - - 2007-07-28 Xan Lopez - - * embed/webkit/webkit-embed.cpp: - - Implement stop loading method, for some reason can_go - methods will fail to link. - - * src/epiphany.override: - - Remove mozilla include. - - svn path=/trunk/; revision=7209 - - ChangeLog | 11 +++++++++++ - embed/webkit/webkit-embed.cpp | 3 +++ - src/epiphany.override | 3 --- - 3 files changed, 14 insertions(+), 3 deletions(-) - -commit c75bf8633191306efc4120fd589d0c375f286e71 -Author: Xan Lopez -Date: Fri Jul 27 20:27:56 2007 +0000 - - Add support for the WebKit engine, compile with --with-engine=webkit to - - 2007-07-27 Xan Lopez - - * Makefile.am: - * configure.ac: - * doc/reference/Makefile.am: - * embed/Makefile.am: - * embed/ephy-embed-factory.c: (ephy_embed_factory_new_object): - * embed/ephy-embed-persist.c: - * embed/ephy-embed-shell.c: - * embed/ephy-embed.c: - * embed/webkit/Makefile.am: - * embed/webkit/webkit-embed-find.cpp: - * embed/webkit/webkit-embed-find.h: - * embed/webkit/webkit-embed-persist.cpp: - * embed/webkit/webkit-embed-persist.h: - * embed/webkit/webkit-embed-single.cpp: - * embed/webkit/webkit-embed-single.h: - * embed/webkit/webkit-embed.cpp: - * embed/webkit/webkit-embed.h: - * src/Makefile.am: - - Add support for the WebKit engine, compile with - --with-engine=webkit to activate. - - * embed/mozilla/mozilla-embed-single.cpp: - - Move to the G_DEFINE_TYPE_WITH_CODE macro. - - svn path=/trunk/; revision=7208 - - ChangeLog | 28 +++ - Makefile.am | 2 +- - configure.ac | 62 ++++- - doc/reference/Makefile.am | 24 +- - embed/Makefile.am | 12 +- - embed/ephy-embed-factory.c | 23 ++ - embed/ephy-embed-persist.c | 1 - - embed/ephy-embed-shell.c | 1 - - embed/ephy-embed.c | 2 - - embed/mozilla/mozilla-embed-single.cpp | 103 +------- - embed/webkit/Makefile.am | 23 ++ - embed/webkit/webkit-embed-find.cpp | 105 ++++++++ - embed/webkit/webkit-embed-find.h | 57 +++++ - embed/webkit/webkit-embed-persist.cpp | 89 +++++++ - embed/webkit/webkit-embed-persist.h | 60 +++++ - embed/webkit/webkit-embed-single.cpp | 342 +++++++++++++++++++++++++ - embed/webkit/webkit-embed-single.h | 57 +++++ - embed/webkit/webkit-embed.cpp | 441 +++++++++++++++++++++++++++++++++ - embed/webkit/webkit-embed.h | 59 +++++ - src/Makefile.am | 38 ++- - 20 files changed, 1407 insertions(+), 122 deletions(-) - -commit ec7067fd30fe1bd5d0b69a648359d8085328f398 -Author: Jorge Gonzalez Gonzalez -Date: Fri Jul 27 11:45:28 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7207 - - po/ChangeLog | 4 ++++ - po/es.po | 10 +++++----- - 2 files changed, 9 insertions(+), 5 deletions(-) - -commit 9603782c0fd68e7d723566f2a0ef8b06e6899aa0 -Author: Daniel Nylander -Date: Fri Jul 27 07:08:01 2007 +0000 - - sv.po: Swedish translation updated - - svn path=/trunk/; revision=7206 - - po/ChangeLog | 4 + - po/sv.po | 1045 ++++++++++++++++------------------------------------------ - 2 files changed, 295 insertions(+), 754 deletions(-) - -commit f9aefa9cfa1b588c4dd4d46810dad15d96b7eaae -Author: Diego Escalante Urrelo -Date: Fri Jul 27 04:57:59 2007 +0000 - - Make "Customise toolbars" insensitive when toolbars are hidden. Patch by - - 2007-07-26 Diego Escalante Urrelo - - * src/ephy-window.c: - - Make "Customise toolbars" insensitive when toolbars are hidden. Patch - by René Stadler. Fixes bug #164227. - - - svn path=/trunk/; revision=7205 - - ChangeLog | 7 +++++++ - src/ephy-window.c | 12 +++++++++--- - 2 files changed, 16 insertions(+), 3 deletions(-) - -commit 062aef7e7ab36e5ee19c10d5953661c2dad05cda -Author: Theppitak Karoonboonyanan -Date: Fri Jul 27 01:22:06 2007 +0000 - - Updated Thai translation. - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=7204 - - po/ChangeLog | 4 ++++ - po/th.po | 74 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 44 insertions(+), 34 deletions(-) - -commit 13be3f324ca6c6d2c9be9fcaba14429d8f74ef20 -Author: Reinout van Schouwen -Date: Thu Jul 26 20:58:43 2007 +0000 - - Updated Dutch translation - - 2007-06-26 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=7203 - - po/ChangeLog | 4 ++ - po/nl.po | 121 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 71 insertions(+), 54 deletions(-) - -commit 9ba06a48bc0ecb80b427d9badab8b3aee2d35bc1 -Author: Reinout van Schouwen -Date: Thu Jul 26 20:56:17 2007 +0000 - - Don't mention 'Epiphany' in the message introduced in the patch for bug - - 2007-07-26 Reinout van Schouwen - - * embed/mozilla/EphyAboutModule.cpp: - - Don't mention 'Epiphany' in the message introduced in the patch for - bug #459552. - - - svn path=/trunk/; revision=7202 - - ChangeLog | 7 +++++++ - embed/mozilla/EphyAboutModule.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 76e8b9c8d4b2253fcefe95200a07408ae7787b73 -Author: Jorge Gonzalez Gonzalez -Date: Thu Jul 26 09:11:18 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7201 - - po/ChangeLog | 4 ++ - po/es.po | 126 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 74 insertions(+), 56 deletions(-) - -commit 73809fe66807023f7d28baa982cceb8d88d2fdf2 -Author: Theppitak Karoonboonyanan -Date: Thu Jul 26 08:15:42 2007 +0000 - - Updated Thai translation. - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=7200 - - po/ChangeLog | 4 ++ - po/th.po | 184 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 88 insertions(+), 100 deletions(-) - -commit 8d7cecf11762702ce2201cb7663e0a4c280ba0b8 -Author: Diego Escalante Urrelo -Date: Thu Jul 26 07:55:50 2007 +0000 - - Improve the restricted ports message, patch by Cosimo Cecchi. Fixes bug - - 2007-07-26 Diego Escalante Urrelo - - * embed/mozilla/EphyAboutModule.cpp: - - Improve the restricted ports message, patch by Cosimo Cecchi. - Fixes bug #459552. - - - svn path=/trunk/; revision=7199 - - ChangeLog | 7 +++++++ - embed/mozilla/EphyAboutModule.cpp | 16 +++++++--------- - 2 files changed, 14 insertions(+), 9 deletions(-) - -commit a16299d8110ff4b3e72aac0862c754a2c5200949 -Author: Diego Escalante Urrelo -Date: Thu Jul 26 04:14:07 2007 +0000 - - Make the status icon clickable so it shows/hides the download window, - - 2007-07-25 Diego Escalante Urrelo - - * embed/downloader-view.c: - - Make the status icon clickable so it shows/hides the download window, - works across workspaces. Patch by Kraai. Fixes bug #448610. - - - svn path=/trunk/; revision=7198 - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 9 ++++++++- - 2 files changed, 15 insertions(+), 1 deletion(-) - -commit 4eee87dd91ed05b2f636433d356b2450e1a535b1 -Author: Diego Escalante Urrelo -Date: Wed Jul 25 21:04:10 2007 +0000 - - Update tab title when the statusbar text is updated, so we don't have out - - 2007-07-25 Diego Escalante Urrelo - - * src/ephy-tab.c: - - Update tab title when the statusbar text is updated, so we don't have - out of sync messages (like "Loading "). Fixes - bug #318947. - - - svn path=/trunk/; revision=7197 - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 3 +++ - 2 files changed, 11 insertions(+) - -commit 0217086af0c7ec95f972fe3a8a922cf245001fd0 -Author: Diego Escalante Urrelo -Date: Wed Jul 25 20:46:37 2007 +0000 - - Checks that if we are dragging an element of type EPHY_DND_URI_LIST_TYPE - - 2007-07-25 Diego Escalante Urrelo - - * src/ephy-notebook.c: - - Checks that if we are dragging an element of type - EPHY_DND_URI_LIST_TYPE we don't reuse an already existing tab to open - the first element of the list. Fixes bug #313636. - - - svn path=/trunk/; revision=7196 - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 4 ++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit d9eabc283b3c3022e93923416eeb7b160029bb12 -Author: Diego Escalante Urrelo -Date: Wed Jul 25 20:34:25 2007 +0000 - - Added a checkbox for smooth scrolling. Fixes bug #162489. - - 2007-07-25 Diego Escalante Urrelo - - * src/prefs-dialog.c: - * data/glade/prefs-dialog.glade: - - Added a checkbox for smooth scrolling. Fixes bug #162489. - - - svn path=/trunk/; revision=7195 - - ChangeLog | 7 +++++++ - data/glade/prefs-dialog.glade | 20 ++++++++++++++++++++ - src/prefs-dialog.c | 2 ++ - 3 files changed, 29 insertions(+) - -commit cf55db8fc5cef03f7fa967fe72de613441108da5 -Author: Priit Laes -Date: Tue Jul 24 09:20:51 2007 +0000 - - Estonian translation update by Ivar Smolin. - - 2007-07-24 Priit Laes - - * et.po: Estonian translation update by Ivar Smolin. - - svn path=/trunk/; revision=7194 - - po/ChangeLog | 4 ++++ - po/et.po | 28 ++++++++++++++++------------ - 2 files changed, 20 insertions(+), 12 deletions(-) - -commit bc796847b2da5e8d3aeca3182566497e34750127 -Author: Gabor Kelemen -Date: Sat Jul 21 19:48:17 2007 +0000 - - Translation updated. - - 2007-07-21 Gabor Kelemen - - * hu.po: Translation updated. - - - svn path=/trunk/; revision=7193 - - po/hu.po | 103 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 51 insertions(+), 52 deletions(-) - -commit 76ecd86eb17e62f1c6e6531ed8657f3c00145cfe -Author: Gabor Kelemen -Date: Sat Jul 21 19:15:02 2007 +0000 - - Translation updated. - - 2007-07-21 Gabor Kelemen - - * hu.po: Translation updated. - - - svn path=/trunk/; revision=7192 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit e0c5d7077a9492a0dd3142e3b43dfacc79f23eb1 -Author: Wouter Bolsterlee -Date: Sat Jul 21 13:36:40 2007 +0000 - - Remove some icons from the context menu, and use better ones for some menu - - 2007-07-21 Wouter Bolsterlee - - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * lib/ephy-stock-icons.h: - * src/ephy-window.c: - - Remove some icons from the context menu, and use better - ones for some menu items. Reported by Andreas Nilsson. - Patch by Cosimo Cecchi. Fixes bug #410223. - - svn path=/trunk/; revision=7191 - - ChangeLog | 10 ++++++++++ - lib/ephy-stock-icons.c | 1 + - lib/ephy-stock-icons.h | 9 +++++---- - src/ephy-window.c | 10 +++++----- - 4 files changed, 21 insertions(+), 9 deletions(-) - -commit f4b9624a2e90b4656053fb282f4c3805ac71a1c1 -Author: Theppitak Karoonboonyanan -Date: Sat Jul 21 12:48:17 2007 +0000 - - Updated Thai translation. - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=7190 - - po/ChangeLog | 4 ++++ - po/th.po | 73 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 42 insertions(+), 35 deletions(-) - -commit 394f7d30939ad30a20e7fc484d352ce56760179e -Author: Wouter Bolsterlee -Date: Wed Jul 18 16:48:10 2007 +0000 - - Translation updated by Wouter Bolsterlee. - - 2007-07-18 Wouter Bolsterlee - - * nl.po: Translation updated by Wouter Bolsterlee. - - svn path=/trunk/; revision=7187 - - po/ChangeLog | 6 +++++- - po/nl.po | 46 ++++++++++++++++++++++++++-------------------- - 2 files changed, 31 insertions(+), 21 deletions(-) - -commit 8248d894052c7f03bbd2f51e173c68cc3a6f84ac -Author: Daniel Nylander -Date: Tue Jul 17 15:16:37 2007 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=7177 - - po/ChangeLog | 4 + - po/sv.po | 972 ++++++++++++++++++++++++++++++++++++++++++++--------------- - 2 files changed, 725 insertions(+), 251 deletions(-) - -commit 096e152245011a17bcebfa4b6b197988baae377b -Author: Jorge Gonzalez Gonzalez -Date: Tue Jul 17 10:31:10 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7176 - - po/ChangeLog | 4 ++++ - po/es.po | 22 ++++++++++------------ - 2 files changed, 14 insertions(+), 12 deletions(-) - -commit 50046a16c48c97cb93060f7ca702738d97110a82 -Author: Wouter Bolsterlee -Date: Mon Jul 16 20:22:51 2007 +0000 - - String changes based on user feedback: - "Local sites" -> "Nearby sites" - - 2007-07-16 Wouter Bolsterlee - - * src/bookmarks/ephy-bookmark-factory-action.c: - (ephy_bookmark_factory_action_new): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init), - (ephy_bookmarks_get_topic_uri): - * src/bookmarks/ephy-topic-factory-action.c: - (ephy_topic_factory_action_new): - - String changes based on user feedback: - - "Local sites" -> "Nearby sites" (because it is a - better description) - - Drop the "Quick" prefix from Topic/Bookmark items in - toolbar editor, because it has no function besides - confusing users. - - svn path=/trunk/; revision=7175 - - ChangeLog | 38 ++++++++++++++++++++-------- - src/bookmarks/ephy-bookmark-factory-action.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 3 ++- - src/bookmarks/ephy-topic-factory-action.c | 2 +- - 4 files changed, 31 insertions(+), 14 deletions(-) - -commit a8371ea0c611812d579611294b97003a6f61098e -Author: Christian Persch -Date: Mon Jul 16 20:12:58 2007 +0000 - - s/MOZILLA/GECKO/g for consistency with gge. - - 2007-07-16 Christian Persch - - * configure.ac: - * doc/reference/Makefile.am: - * embed/Makefile.am: - * embed/mozilla/Makefile.am: - * plugins/desktop-file/Makefile.am: - * src/Makefile.am: - - s/MOZILLA/GECKO/g for consistency with gge. - - svn path=/trunk/; revision=7173 - - ChangeLog | 11 +++++++++++ - configure.ac | 24 ++++++++++++------------ - doc/reference/Makefile.am | 10 +++++----- - embed/Makefile.am | 4 ++-- - embed/mozilla/Makefile.am | 6 +++--- - plugins/desktop-file/Makefile.am | 4 ++-- - src/Makefile.am | 6 +++--- - 7 files changed, 38 insertions(+), 27 deletions(-) - -commit 8c0a1d2d985e6d34e8a78384cdad6dd82db3d55f -Author: Wouter Bolsterlee -Date: Mon Jul 16 16:48:33 2007 +0000 - - Translation updated by Wouter Bolsterlee. - - 2007-07-16 Wouter Bolsterlee - - * nl.po: Translation updated by Wouter Bolsterlee. - - - svn path=/trunk/; revision=7172 - - po/ChangeLog | 34 +++++++++++++++------------- - po/nl.po | 73 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 55 insertions(+), 52 deletions(-) - -commit c37f9e13a3ed5662205a3e53e8b765f72cc4b49a -Author: Ilkka Tuohela -Date: Mon Jul 16 16:07:29 2007 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=7171 - - po/ChangeLog | 4 ++++ - po/fi.po | 65 +++++++++++++++++++++++++++++------------------------------- - 2 files changed, 35 insertions(+), 34 deletions(-) - -commit 49da267e312095a83f8ea03a01f018445ea210cd -Author: Christian Persch -Date: Mon Jul 16 15:30:58 2007 +0000 - - updated - - svn path=/trunk/; revision=7168 - - doc/reference/tmpl/ephy-embed.sgml | 1 - - 1 file changed, 1 deletion(-) - -commit 1db11e752f255d692f98fdced6360828131f1a3e -Author: Christian Persch -Date: Mon Jul 16 15:30:51 2007 +0000 - - Remove FIXME - - svn path=/trunk/; revision=7167 - - src/popup-commands.c | 1 - - 1 file changed, 1 deletion(-) - -commit 897c314dffc4a71d0fba525a7a70039c75f6851d -Author: Christian Persch -Date: Sun Jul 15 10:19:27 2007 +0000 - - Use C++ casts. Script from bmo#348748. - - 2007-07-15 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHistoryListener.cpp: - * embed/mozilla/EphyPromptService.cpp: - * embed/mozilla/GeckoFormSigningDialog.cpp: - * embed/mozilla/GeckoPrintService.cpp: - * embed/mozilla/GeckoPrintSession.cpp: - * embed/mozilla/mozilla-embed-event.cpp: - * embed/mozilla/mozilla-embed.cpp: - * plugins/desktop-file/plugin.cpp: - - Use C++ casts. Script from bmo#348748. - - svn path=/trunk/; revision=7166 - - ChangeLog | 15 +++++++++++++++ - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/EphyHistoryListener.cpp | 2 +- - embed/mozilla/EphyPromptService.cpp | 4 ++-- - embed/mozilla/GeckoFormSigningDialog.cpp | 2 +- - embed/mozilla/GeckoPrintService.cpp | 2 +- - embed/mozilla/GeckoPrintSession.cpp | 2 +- - embed/mozilla/mozilla-embed-event.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 2 +- - plugins/desktop-file/plugin.cpp | 2 +- - 11 files changed, 26 insertions(+), 11 deletions(-) - -commit 843c8e008f30143d928aef1fc41f6fa6499c277c -Author: Christian Persch -Date: Sat Jul 14 22:43:55 2007 +0000 - - Make sure postscript printing is enabled, and the printer list empty (so - - 2007-07-15 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Make sure postscript printing is enabled, and the printer list empty - (so we only get the PostScript/default printer). - - svn path=/trunk/; revision=7165 - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 3 +++ - 2 files changed, 10 insertions(+) - -commit 0f5899cc261673d76f5304daddcf917fd72e025e -Author: Christian Persch -Date: Sat Jul 14 22:42:57 2007 +0000 - - More prefs fixes - - svn path=/trunk/; revision=7164 - - data/default-prefs-common.js | 3 +++ - 1 file changed, 3 insertions(+) - -commit 5446caa158d25c32c7b3aeeb47f6c5af94d854a0 -Author: Christian Persch -Date: Sat Jul 14 22:38:41 2007 +0000 - - Use the right icon name. Bug #385872. - - 2007-07-15 Christian Persch - - * 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 - - data/chrome/about.xhtml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 614f31ffb410e21f18181d2c4d5f0c22ac8289af -Author: Christian Persch -Date: Sat Jul 14 22:37:25 2007 +0000 - - Use the right icon name. Bug #385872. - - 2007-07-15 Christian Persch - - * 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 - - ChangeLog | 1 + - data/icons/scalable/apps/Makefile.am | 2 +- - data/icons/scalable/apps/epiphany.svg | 917 ------------------------- - data/icons/scalable/apps/gnome-web-browser.svg | 917 +++++++++++++++++++++++++ - 4 files changed, 919 insertions(+), 918 deletions(-) - -commit f13e7c8c0b8a28d37147c6091e932d81e4eecc06 -Author: Christian Persch -Date: Sat Jul 14 22:36:14 2007 +0000 - - Use the right icon name. Bug #385872. - - 2007-07-15 Christian Persch - - * 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 - - ChangeLog | 1 + - data/icons/24x24/apps/Makefile.am | 2 +- - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit 635f43e25f3e7708cd73623cf69070a0e1a3e213 -Author: Christian Persch -Date: Sat Jul 14 22:32:34 2007 +0000 - - Use the right icon name. Bug #385872. - - 2007-07-15 Christian Persch - - * 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 - - ChangeLog | 11 + - data/epiphany.desktop.in.in | 2 +- - data/icons/16x16/apps/Makefile.am | 4 +- - data/icons/16x16/apps/epiphany.png | Bin 982 -> 0 bytes - data/icons/16x16/apps/epiphany.svg | 853 --------------------- - data/icons/16x16/apps/gnome-web-browser.png | Bin 0 -> 982 bytes - data/icons/16x16/apps/gnome-web-browser.svg | 853 +++++++++++++++++++++ - data/icons/22x22/apps/Makefile.am | 4 +- - data/icons/22x22/apps/epiphany.png | Bin 1585 -> 0 bytes - data/icons/22x22/apps/epiphany.svg | 1069 -------------------------- - data/icons/22x22/apps/gnome-web-browser.png | Bin 0 -> 1585 bytes - data/icons/22x22/apps/gnome-web-browser.svg | 1069 ++++++++++++++++++++++++++ - data/icons/24x24/apps/epiphany.png | Bin 1601 -> 0 bytes - data/icons/24x24/apps/gnome-web-browser.png | Bin 0 -> 1601 bytes - data/icons/32x32/apps/Makefile.am | 4 +- - data/icons/32x32/apps/epiphany.png | Bin 2645 -> 0 bytes - data/icons/32x32/apps/epiphany.svg | 1082 --------------------------- - data/icons/32x32/apps/gnome-web-browser.png | Bin 0 -> 2645 bytes - data/icons/32x32/apps/gnome-web-browser.svg | 1082 +++++++++++++++++++++++++++ - lib/ephy-stock-icons.h | 2 +- - 20 files changed, 3023 insertions(+), 3012 deletions(-) - -commit a6348fb84c37377a1c3a61f9f973c2d099d0ca73 -Author: Christian Persch -Date: Sat Jul 14 22:21:57 2007 +0000 - - Load the appearance capplet. Doesn't seem to work yet, see bug #456337. - - 2007-07-15 Christian Persch - - * src/popup-commands.c: (background_download_completed): - - Load the appearance capplet. Doesn't seem to work yet, see bug - #456337. - - svn path=/trunk/; revision=7159 - - ChangeLog | 7 +++++++ - src/popup-commands.c | 23 ++++++++++++++--------- - 2 files changed, 21 insertions(+), 9 deletions(-) - -commit 92a7c6b8b3dc7b618c36d29332fc7d2bbee22681 -Author: Christian Persch -Date: Sat Jul 14 22:20:22 2007 +0000 - - It's yet another API change! - - 2007-07-14 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/MozDownload.cpp: - - It's yet another API change! - - svn path=/trunk/; revision=7158 - - ChangeLog | 8 ++++++++ - embed/mozilla/ContentHandler.cpp | 3 +++ - embed/mozilla/EphySingle.cpp | 2 +- - embed/mozilla/MozDownload.cpp | 5 +++++ - 4 files changed, 17 insertions(+), 1 deletion(-) - -commit c98708b8012ec81f3bc055eeb0be5a20f87a743a -Author: Takeshi AIHANA -Date: Sat Jul 14 07:52:45 2007 +0000 - - Updated Japanese translation. - - 2007-07-14 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - - svn path=/trunk/; revision=7157 - - po/ChangeLog | 4 ++++ - po/ja.po | 71 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 39 insertions(+), 36 deletions(-) - -commit 731508e8e2d5203475de05d9cec258a5033410df -Author: Christian Persch -Date: Fri Jul 13 17:03:12 2007 +0000 - - remove conflict marker - - svn path=/trunk/; revision=7156 - - ChangeLog | 1 - - 1 file changed, 1 deletion(-) - -commit a00a43493616ac39e72fdd64e94742a14bee513b -Author: Žygimantas Beručka -Date: Fri Jul 13 13:18:33 2007 +0000 - - Updated Lithuanian translation. - - svn path=/trunk/; revision=7155 - - po/ChangeLog | 4 + - po/lt.po | 465 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 272 insertions(+), 197 deletions(-) - -commit 40feaca51ff910f04a2f2ee9a41fb40b6dcdc628 -Author: Priit Laes -Date: Fri Jul 13 10:39:25 2007 +0000 - - Estonian translation update by Ivar Smolin. - - 2007-07-13 Priit Laes - - * et.po: Estonian translation update by Ivar Smolin. - - svn path=/trunk/; revision=7154 - - po/ChangeLog | 4 ++++ - po/et.po | 75 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 41 insertions(+), 38 deletions(-) - -commit 0382d87f3aec12f1b2aa5313d4b2050b867d516a -Author: Felix I -Date: Fri Jul 13 06:03:42 2007 +0000 - - updated ta translation - - svn path=/trunk/; revision=7153 - - po/ChangeLog | 4 ++++ - po/ta.po | 75 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 41 insertions(+), 38 deletions(-) - -commit 4a3c5f66b1214795ba0f93e09118994d5a3ffbfc -Author: Jorge Gonzalez Gonzalez -Date: Thu Jul 12 07:42:26 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7152 - - po/ChangeLog | 4 +++ - po/es.po | 81 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 45 insertions(+), 40 deletions(-) - -commit 2f0d425780b73d51897552f3d6d0fe19be979b23 -Author: Nguyen Thai Ngoc Duy -Date: Wed Jul 11 13:23:33 2007 +0000 - - Fixes bug #452707 - - svn path=/trunk/; revision=7151 - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 19 ++++++++++++------- - 2 files changed, 19 insertions(+), 7 deletions(-) - -commit 2f2d7c441a41193f0dd2fcf2818d523ea4d551bd -Author: Christian Persch -Date: Wed Jul 11 13:21:53 2007 +0000 - - Use the right prefs to disable CUPS. - - 2007-07-11 Christian Persch - - * data/default-prefs-common.js: - - Use the right prefs to disable CUPS. - - svn path=/trunk/; revision=7149 - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 9c42d891e3cf2ce4f8710cac00985a53b7639b57 -Author: Luca Ferretti -Date: Wed Jul 11 07:19:51 2007 +0000 - - Use new "epiphany" icon here (thanks to Rodney Dawes). - - 2007-07-11 Luca Ferretti - - * 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 - - ChangeLog | 12 + - data/chrome/about.xhtml | 2 +- - data/icons/32x32/apps/Makefile.am | 6 +- - data/icons/32x32/apps/epiphany.png | Bin 0 -> 2645 bytes - data/icons/32x32/apps/epiphany.svg | 1082 ++++++++++++++++++++++++++++++++++++ - 5 files changed, 1099 insertions(+), 3 deletions(-) - -commit 3a33de61e0e61e55e8f0d5051ecd43f601606f24 -Author: Gabor Kelemen -Date: Tue Jul 10 22:42:21 2007 +0000 - - Translation updated. - - 2007-07-11 Gabor Kelemen - - * hu.po: Translation updated. - - - svn path=/trunk/; revision=7147 - - po/ChangeLog | 4 + - po/hu.po | 394 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 226 insertions(+), 172 deletions(-) - -commit 625c8a7fb9ea583c0e2df1ce42f3c58bf22eb464 -Author: Christian Persch -Date: Tue Jul 10 22:15:04 2007 +0000 - - Update glib req to 2.13.4 so we can use g_get_user_special_dir. - - 2007-07-11 Christian Persch - - * configure.ac: - - Update glib req to 2.13.4 so we can use g_get_user_special_dir. - - * lib/ephy-file-helpers.c: (ephy_file_downloads_dir), - (ephy_file_desktop_dir): - - Use g_get_user_special_dir to get the Desktop and Downloads directory - location. - - svn path=/trunk/; revision=7146 - - ChangeLog | 12 ++++ - configure.ac | 2 +- - lib/ephy-file-helpers.c | 171 +++--------------------------------------------- - 3 files changed, 22 insertions(+), 163 deletions(-) - -commit 3050e8c161fe8014ec1757e170b4e6a54ca99d12 -Author: Christian Persch -Date: Tue Jul 10 18:50:48 2007 +0000 - - Use gtk_widget_set_has_tooltip here. - - 2007-07-10 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (connect_proxy): - - Use gtk_widget_set_has_tooltip here. - - svn path=/trunk/; revision=7145 - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmark-action.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e87efd3cf2ee40071d643f54451461a6ecea8e85 -Author: Christian Persch -Date: Tue Jul 10 18:46:08 2007 +0000 - - Use the new gtk functions to persist and load the print settings and page - - 2007-07-10 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_set_page_setup), - (ephy_embed_shell_get_page_setup), - (ephy_embed_shell_set_print_settings), - (ephy_embed_shell_get_print_settings): - * lib/ephy-print-utils.c: - * lib/ephy-print-utils.h: - - Use the new gtk functions to persist and load the print settings and - page setup. Migrate our old settings, if present. - - svn path=/trunk/; revision=7144 - - embed/ephy-embed-shell.c | 76 +++++++++++++++++++++++++++++++++++++----------- - 1 file changed, 59 insertions(+), 17 deletions(-) - -commit dd039744f9f164ac9afeaa39ca13cf5db37f422a -Author: Christian Persch -Date: Tue Jul 10 18:45:59 2007 +0000 - - Use the new gtk functions to persist and load the print settings and page - - 2007-07-10 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_set_page_setup), - (ephy_embed_shell_get_page_setup), - (ephy_embed_shell_set_print_settings), - (ephy_embed_shell_get_print_settings): - * lib/ephy-print-utils.c: - * lib/ephy-print-utils.h: - - Use the new gtk functions to persist and load the print settings and - page setup. Migrate our old settings, if present. - - svn path=/trunk/; revision=7143 - - ChangeLog | 12 ++++ - lib/ephy-print-utils.c | 169 ------------------------------------------------- - lib/ephy-print-utils.h | 14 ---- - 3 files changed, 12 insertions(+), 183 deletions(-) - -commit 538c11a68c3f5ff52399bda39c880cd8cf33761d -Author: Christian Persch -Date: Tue Jul 10 18:13:48 2007 +0000 - - Remove NULL-check here. - - 2007-07-10 Christian Persch - - * src/ephy-notebook.c: (sync_label): - - Remove NULL-check here. - - svn path=/trunk/; revision=7142 - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 0d6951194256b3b3f54a2f350ab434d9b04c3d97 -Author: Christian Persch -Date: Tue Jul 10 13:46:49 2007 +0000 - - Port to new tooltips API. Fixes bug #347637. - - 2007-07-10 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (query_tooltip_cb), - (connect_proxy), (ephy_bookmark_action_updated), - (ephy_bookmark_action_class_init): - - Port to new tooltips API. Fixes bug #347637. - - svn path=/trunk/; revision=7141 - - ChangeLog | 8 +++++ - src/bookmarks/ephy-bookmark-action.c | 70 +++++++++++++++++------------------- - 2 files changed, 40 insertions(+), 38 deletions(-) - -commit fa0ce02c6b9e4f9ee3710b65f2b530a4145a67ab -Author: Christian Persch -Date: Tue Jul 10 13:15:41 2007 +0000 - - Remove gtk version check since we now depend on 2.11. - - 2007-07-10 Christian Persch - - * embed/mozilla/GeckoPrintService.cpp: - - Remove gtk version check since we now depend on 2.11. - - svn path=/trunk/; revision=7140 - - ChangeLog | 6 ++++++ - embed/mozilla/GeckoPrintService.cpp | 9 --------- - 2 files changed, 6 insertions(+), 9 deletions(-) - -commit eaec7f0ac35867c5749b4d6f221bdf10f3c22a24 -Author: Christian Persch -Date: Tue Jul 10 13:14:58 2007 +0000 - - update - - svn path=/trunk/; revision=7139 - - doc/reference/tmpl/ephy-embed.sgml | 1 - - 1 file changed, 1 deletion(-) - -commit a8ccd1aa2ba3bb025627f0d0d46274a67c014505 -Author: Christian Persch -Date: Tue Jul 10 13:14:52 2007 +0000 - - Remove gtk version check since we now depend on 2.11. - - 2007-07-10 Christian Persch - - * lib/widgets/ephy-location-entry.c: (cursor_on_match_cb), - (ephy_location_entry_set_completion): - - Remove gtk version check since we now depend on 2.11. - - svn path=/trunk/; revision=7138 - - ChangeLog | 7 +++++++ - lib/widgets/ephy-location-entry.c | 5 ----- - 2 files changed, 7 insertions(+), 5 deletions(-) - -commit 1f582511944d0dbb4e99c8c48b18c311fd7cb2b3 -Author: Christian Persch -Date: Tue Jul 10 13:05:23 2007 +0000 - - Port to new tooltips API. - - 2007-07-10 Christian Persch - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_finalize), (ephy_location_entry_class_init), - (ephy_location_entry_construct_contents), - (ephy_location_entry_init), (ephy_location_entry_set_lock_tooltip): - - Port to new tooltips API. - - svn path=/trunk/; revision=7137 - - ChangeLog | 9 +++++++++ - lib/widgets/ephy-location-entry.c | 30 +++--------------------------- - lib/widgets/testiconentry.c | 1 - - 3 files changed, 12 insertions(+), 28 deletions(-) - -commit eb8cdb0537d915671d7caea311e3d74d24b03085 -Author: Christian Persch -Date: Tue Jul 10 13:01:12 2007 +0000 - - Port to new tooltips API. - - 2007-07-10 Christian Persch - - * lib/widgets/ephy-zoom-action.c: (ephy_zoom_action_class_init): - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_class_init): - - Port to new tooltips API. - - svn path=/trunk/; revision=7136 - - ChangeLog | 7 +++++ - lib/widgets/ephy-zoom-action.c | 6 ++-- - lib/widgets/ephy-zoom-control.c | 61 ++--------------------------------------- - 3 files changed, 11 insertions(+), 63 deletions(-) - -commit 89d4455a3bb8f1f230364c2cd83cd251d3d4244e -Author: Christian Persch -Date: Tue Jul 10 12:52:35 2007 +0000 - - Port to new tooltips API. - - 2007-07-10 Christian Persch - - * src/ephy-navigation-action.c: (connect_proxy), - (ephy_navigation_action_class_init): - - Port to new tooltips API. - - - svn path=/trunk/; revision=7135 - - ChangeLog | 7 +++++++ - src/ephy-navigation-action.c | 43 ++++++++++++------------------------------- - 2 files changed, 19 insertions(+), 31 deletions(-) - -commit 95ac5a2bd737019b90c6c530eb80577286cbcc30 -Author: Christian Persch -Date: Tue Jul 10 12:49:44 2007 +0000 - - Port to new tooltips API. - - 2007-07-10 Christian Persch - - * src/ephy-fullscreen-popup.c: - (ephy_fullscreen_popup_set_security_state), - (ephy_fullscreen_popup_constructor), - (ephy_fullscreen_popup_finalize): - - Port to new tooltips API. - - svn path=/trunk/; revision=7134 - - ChangeLog | 9 +++++++++ - src/ephy-fullscreen-popup.c | 11 ++--------- - 2 files changed, 11 insertions(+), 9 deletions(-) - -commit cef2549d68c0dbb4aa19269b3978b573c473411b -Author: Luca Ferretti -Date: Tue Jul 10 12:42:26 2007 +0000 - - Use new icon here too - - 2007-07-10 Luca Ferretti - - * data/epiphany.desktop.in.in: - - Use new icon here too - - - svn path=/trunk/; revision=7133 - - ChangeLog | 6 ++++++ - data/epiphany.desktop.in.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4d659d60fb2fe93bef12d870897f5d70c6fd1f20 -Author: Christian Persch -Date: Tue Jul 10 12:32:39 2007 +0000 - - Port to new tooltips API. - - 2007-07-10 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_switch_page_cb), - (update_tabs_visibility), (ephy_notebook_init), - (ephy_notebook_finalize), (sync_icon), (sync_label), - (build_tab_label), (ephy_notebook_set_show_tabs), - (ephy_notebook_remove): - - Port to new tooltips API. - - svn path=/trunk/; revision=7132 - - ChangeLog | 10 ++++ - src/ephy-notebook.c | 164 +++++++++++++++++++++------------------------------- - 2 files changed, 77 insertions(+), 97 deletions(-) - -commit 50d2f21f239148de7bb88c211ce025a1d53e51f4 -Author: Luca Ferretti -Date: Tue Jul 10 12:31:51 2007 +0000 - - Add 32x32/apps to build. But currently there are no icons. - - 2007-07-10 Luca Ferretti - - * 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 - - ChangeLog | 7 +++++++ - data/icons/32x32/Makefile.am | 3 ++- - data/icons/32x32/apps/Makefile.am | 13 +++++++++++++ - 3 files changed, 22 insertions(+), 1 deletion(-) - -commit 808b11ab8d7a5976b03cd783e6ba5b8274471334 -Author: Luca Ferretti -Date: Tue Jul 10 12:25:36 2007 +0000 - - Add more info about previous commit in ChangeLog and - fix image names (epiphany, not epiphnay)... - - - svn path=/trunk/; revision=7130 - - ChangeLog | 4 +- - data/icons/16x16/apps/epiphany.png | Bin 0 -> 982 bytes - data/icons/16x16/apps/epiphany.svg | 853 ++++++++++++++++++++++++++ - data/icons/16x16/apps/epiphnay.png | Bin 982 -> 0 bytes - data/icons/16x16/apps/epiphnay.svg | 853 -------------------------- - data/icons/22x22/apps/epiphany.png | Bin 0 -> 1585 bytes - data/icons/22x22/apps/epiphany.svg | 1069 +++++++++++++++++++++++++++++++++ - data/icons/22x22/apps/epiphnay.png | Bin 1585 -> 0 bytes - data/icons/22x22/apps/epiphnay.svg | 1069 --------------------------------- - data/icons/24x24/apps/epiphany.png | Bin 0 -> 1601 bytes - data/icons/24x24/apps/epiphnay.png | Bin 1601 -> 0 bytes - data/icons/scalable/apps/epiphany.svg | 917 ++++++++++++++++++++++++++++ - data/icons/scalable/apps/epiphnay.svg | 917 ---------------------------- - 13 files changed, 2842 insertions(+), 2840 deletions(-) - -commit 4f2991ef0cf68e2e270a879b109e3b464f0e376d -Author: Luca Ferretti -Date: Tue Jul 10 12:22:17 2007 +0000 - - Install under hicolor and use "epiphany" named icon as application icon - - 2007-07-10 Luca Ferretti - - * 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 - - ChangeLog | 26 + - configure.ac | 5 + - data/icons/16x16/Makefile.am | 1 + - data/icons/16x16/apps/Makefile.am | 15 + - data/icons/16x16/apps/epiphnay.png | Bin 0 -> 982 bytes - data/icons/16x16/apps/epiphnay.svg | 853 ++++++++++++++++++++++++++ - data/icons/22x22/Makefile.am | 1 + - data/icons/22x22/apps/Makefile.am | 15 + - data/icons/22x22/apps/epiphnay.png | Bin 0 -> 1585 bytes - data/icons/22x22/apps/epiphnay.svg | 1069 +++++++++++++++++++++++++++++++++ - data/icons/24x24/Makefile.am | 1 + - data/icons/24x24/apps/Makefile.am | 14 + - data/icons/24x24/apps/epiphnay.png | Bin 0 -> 1601 bytes - data/icons/Makefile.am | 13 + - data/icons/scalable/Makefile.am | 3 +- - data/icons/scalable/apps/Makefile.am | 14 + - data/icons/scalable/apps/epiphnay.svg | 917 ++++++++++++++++++++++++++++ - lib/ephy-stock-icons.h | 2 +- - 18 files changed, 2947 insertions(+), 2 deletions(-) - -commit 9df9d33bde9ce4a5c4eea0cafae5f376b5371c87 -Author: Luca Ferretti -Date: Tue Jul 10 12:00:21 2007 +0000 - - Kill old "download" icon. Fix bug 450904 - - 2007-07-10 Luca Ferretti - - * 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 - - ChangeLog | 11 + - data/icons/16x16/actions/Makefile.am | 2 - - data/icons/16x16/actions/download.png | Bin 687 -> 0 bytes - data/icons/16x16/actions/download.xcf | Bin 2075 -> 0 bytes - data/icons/22x22/actions/Makefile.am | 2 - - data/icons/22x22/actions/download.png | Bin 1127 -> 0 bytes - data/icons/22x22/actions/download.xcf | Bin 4638 -> 0 bytes - data/icons/24x24/actions/Makefile.am | 1 - - data/icons/24x24/actions/download.png | Bin 1197 -> 0 bytes - data/icons/32x32/actions/Makefile.am | 2 - - data/icons/32x32/actions/download.png | Bin 1920 -> 0 bytes - data/icons/32x32/actions/download.svg | 985 ------------------------------- - data/icons/scalable/actions/Makefile.am | 1 - - data/icons/scalable/actions/download.svg | 982 ------------------------------ - 14 files changed, 11 insertions(+), 1975 deletions(-) - -commit c2f115303625175ec4d3936c7121501193f5f630 -Author: Christian Persch -Date: Tue Jul 10 11:56:30 2007 +0000 - - Update gtk+ req to 2.11.6. - - 2007-07-10 Christian Persch - - * configure.ac: - - Update gtk+ req to 2.11.6. - - * src/ephy-statusbar.c: (ephy_statusbar_class_init), - (create_caret_indicator), (ephy_statusbar_init), - (ephy_statusbar_set_security_state), - (ephy_statusbar_set_popups_state): - * src/ephy-statusbar.h: - * src/epiphany.defs: - - Port EphyStatusbar to the new tooltips API. - - svn path=/trunk/; revision=7127 - - ChangeLog | 15 +++++++++ - configure.ac | 2 +- - src/ephy-statusbar.c | 93 +++++++--------------------------------------------- - src/ephy-statusbar.h | 6 ---- - src/epiphany.defs | 9 ----- - 5 files changed, 28 insertions(+), 97 deletions(-) - -commit b9c8581d793e52e73c99d41e83f5b33bd20b1af5 -Author: Luca Ferretti -Date: Tue Jul 10 02:41:25 2007 +0000 - - Kill EPHY_STOCK_DOWNLOAD and add STOCK_DOWNLOAD, using "emblem-download" - - 2007-07-10 Luca Ferretti - - * embed/downloader-view.c: (show_status_icon), - (downloader_view_build_ui): - * embed/mozilla/ContentHandler.cpp: - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * lib/ephy-stock-icons.h: - * src/ephy-window.c: - - Kill EPHY_STOCK_DOWNLOAD and add STOCK_DOWNLOAD, using - "emblem-download" named icon. Partially fix 450904. - - Note: you need latest svn version of gnome-icon-theme - to have the download icon @ 16x16 pixels - - - svn path=/trunk/; revision=7126 - - ChangeLog | 15 +++++++++++++++ - embed/downloader-view.c | 4 ++-- - embed/mozilla/ContentHandler.cpp | 2 +- - lib/ephy-stock-icons.c | 2 +- - lib/ephy-stock-icons.h | 2 +- - src/ephy-window.c | 2 +- - 6 files changed, 21 insertions(+), 6 deletions(-) - -commit f0b96d2a26d92216e84dcf21f2875b5d567f1843 -Author: Christian Persch -Date: Mon Jul 9 18:55:13 2007 +0000 - - Post-release version bump - - svn path=/trunk/; revision=7125 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 925d3a1e4adc56c5c2b8423be05556866d0da912 -Author: Christian Persch -Date: Mon Jul 9 18:53:40 2007 +0000 - - Remove empty files - - svn path=/trunk/; revision=7123 - - embed/mozilla/GnomeKeyringService.cpp | 0 - embed/mozilla/GnomeKeyringService.h | 0 - 2 files changed, 0 insertions(+), 0 deletions(-) - -commit bcdc5eea32491fbac68820a9b2317bbd66af786c -Author: Christian Persch -Date: Mon Jul 9 18:50:28 2007 +0000 - - === Release 2.19.5 === - - 2007-07-09 Christian Persch - - === Release 2.19.5 === - - svn path=/trunk/; revision=7122 - - ChangeLog | 4 ++++ - embed/mozilla/GnomeKeyringService.cpp | 0 - embed/mozilla/GnomeKeyringService.h | 0 - 3 files changed, 4 insertions(+) - -commit b85462f1b243f5ccd1731b8c6d604d1cb45677a8 -Author: Reinout van Schouwen -Date: Mon Jul 9 18:26:54 2007 +0000 - - 2007-07-09 Reinout van Schouwen - - * 2007-07-09 Reinout van Schouwen - - - Small update to Dutch documentation translation - - Update NEWS to 2.19.5 - - - svn path=/trunk/; revision=7121 - - NEWS | 36 ++++++++++++++- - help/nl/nl.po | 146 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 106 insertions(+), 76 deletions(-) - -commit df9e4715e1f1c2070d3955ce9c5a43b136a736ea -Author: Christian Persch -Date: Mon Jul 9 17:08:42 2007 +0000 - - Bump version - - svn path=/trunk/; revision=7120 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit fd93a2dd527de9acb39746d109e218d9215ba4e2 -Author: Christian Persch -Date: Mon Jul 9 16:37:50 2007 +0000 - - Copy the lock icons from g-i-t 2.16 into epiphany, since the new ones in - - 2007-07-09 Christian Persch - - * 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 - - ChangeLog | 14 ++++++++++++++ - configure.ac | 2 ++ - data/icons/16x16/status/Makefile.am | 4 ++++ - data/icons/16x16/status/lock-broken.png | Bin 0 -> 693 bytes - data/icons/16x16/status/lock-insecure.png | Bin 0 -> 693 bytes - data/icons/16x16/status/lock-secure-checked.png | Bin 0 -> 821 bytes - data/icons/16x16/status/lock-secure.png | Bin 0 -> 729 bytes - data/icons/24x24/status/Makefile.am | 4 ++++ - data/icons/24x24/status/lock-broken.png | Bin 0 -> 1554 bytes - data/icons/24x24/status/lock-insecure.png | Bin 0 -> 1197 bytes - data/icons/24x24/status/lock-secure-checked.png | Bin 0 -> 1306 bytes - data/icons/24x24/status/lock-secure.png | Bin 0 -> 1224 bytes - data/icons/48x48/Makefile.am | 2 ++ - data/icons/48x48/status/Makefile.am | 15 +++++++++++++++ - data/icons/48x48/status/lock-broken.png | Bin 0 -> 4310 bytes - data/icons/48x48/status/lock-insecure.png | Bin 0 -> 2913 bytes - data/icons/48x48/status/lock-secure-checked.png | Bin 0 -> 3313 bytes - data/icons/48x48/status/lock-secure.png | Bin 0 -> 2978 bytes - data/icons/Makefile.am | 1 + - lib/ephy-stock-icons.c | 8 ++++---- - lib/ephy-stock-icons.h | 8 +++----- - 21 files changed, 49 insertions(+), 9 deletions(-) - -commit 011d13707a281767849f8227b7440193da6d31a6 -Author: Theppitak Karoonboonyanan -Date: Mon Jul 9 14:00:08 2007 +0000 - - Updated Thai translation. - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=7118 - - po/ChangeLog | 4 ++ - po/th.po | 167 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 93 insertions(+), 78 deletions(-) - -commit 4f69197250c17461774de3bace56b1fb7fd21b87 -Author: Felix I -Date: Mon Jul 9 06:20:22 2007 +0000 - - updated ta translation - - svn path=/trunk/; revision=7117 - - po/ChangeLog | 4 + - po/ta.po | 666 ++++++++++++++++++++++------------------------------------- - 2 files changed, 251 insertions(+), 419 deletions(-) - -commit 4cd9002d0273797ef2acafb0494a446b2036cb20 -Author: Ankitkumar Rameshchandra Patel -Date: Fri Jul 6 11:26:45 2007 +0000 - - Updated Translation - - svn path=/trunk/; revision=7116 - - po/ChangeLog | 4 + - po/gu.po | 403 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 231 insertions(+), 176 deletions(-) - -commit b530495974abdc9e6b588bf958999d9188a6b0d8 -Author: Jaap Haitsma -Date: Tue Jul 3 21:29:09 2007 +0000 - - removed added Rename to update-toolbareditor-from-libegg.sh Also updated - - 2007-07-03 Jaap Haitsma - - * lib/egg/update-toolbareditor-from-libegg: removed - * lib/egg/update-toolbareditor-from-libegg.sh: added - Rename to update-toolbareditor-from-libegg.sh - Also updated the script such it updates itself - * lib/egg/egg*: - Sync with latest libegg toolbareditor - - svn path=/trunk/; revision=7115 - - ChangeLog | 9 +++++++ - lib/egg/egg-editable-toolbar.c | 35 ++---------------------- - lib/egg/egg-toolbar-editor.c | 36 +++---------------------- - lib/egg/egg-toolbars-model.c | 41 ++++------------------------- - lib/egg/eggtreemultidnd.c | 2 +- - lib/egg/update-toolbareditor-from-libegg | 21 --------------- - lib/egg/update-toolbareditor-from-libegg.sh | 35 ++++++++++++++++++++++++ - 7 files changed, 55 insertions(+), 124 deletions(-) - -commit bb54e3c30ebc5a187fba5d0740d4138fdb6e1ab0 -Author: Ilkka Tuohela -Date: Tue Jul 3 14:56:52 2007 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=7114 - - po/ChangeLog | 4 + - po/fi.po | 397 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 228 insertions(+), 173 deletions(-) - -commit c0040d33eaad0c12e453675ae1df93cf16f2257e -Author: Josep Puigdemont i Casamajó -Date: Mon Jul 2 21:40:42 2007 +0000 - - Updated Catalan translation. - - svn path=/trunk/; revision=7113 - - po/ChangeLog | 4 + - po/ca.po | 391 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 225 insertions(+), 170 deletions(-) - -commit 72fb44d96f7e8aef7a34b4d22acab0b5c45d1e57 -Author: Artur Flinta -Date: Mon Jul 2 19:51:58 2007 +0000 - - Updated Polish translation by GNOME PL Team. - - 2007-07-02 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - - svn path=/trunk/; revision=7111 - - po/ChangeLog | 4 + - po/pl.po | 395 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 229 insertions(+), 170 deletions(-) - -commit 4e797cd3a540df3a44f5955a3295bba2e8f1c679 -Author: Nguyen Thai Ngoc Duy -Date: Sun Jul 1 23:39:28 2007 +0000 - - updated vi.po - - svn path=/trunk/; revision=7110 - - po/ChangeLog | 4 + - po/vi.po | 300 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 154 insertions(+), 150 deletions(-) - -commit 293caeaba8a7bbc6af0492f759f9641088229a6c -Author: Takeshi AIHANA -Date: Sun Jul 1 15:07:57 2007 +0000 - - Updated Japanese translation. - - 2007-07-01 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - - svn path=/trunk/; revision=7109 - - po/ChangeLog | 4 + - po/ja.po | 385 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 221 insertions(+), 168 deletions(-) - -commit 597ebe83b215c306e9787ae35d7f6d80c4c5dc03 -Author: Jaap Haitsma -Date: Sun Jul 1 14:04:43 2007 +0000 - - Use GTK_STOCK_ABOUT icon i.s.o GNOME_STOCK_ABOUT Fixes bug #452769 - - 2007-07-01 Jaap Haitsma - - * src/ephy-history-window.c, src/bookmarks/ephy-bookmarks-editor.c, - src/ephy-window.c: Use GTK_STOCK_ABOUT icon i.s.o GNOME_STOCK_ABOUT - Fixes bug #452769 - - svn path=/trunk/; revision=7108 - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-window.c | 2 +- - 4 files changed, 9 insertions(+), 3 deletions(-) - -commit 4b930398fb4744e0099fc07fde5a9118f1b70662 -Author: Jaap Haitsma -Date: Sun Jul 1 14:01:56 2007 +0000 - - Changelog entry from the previous commit. I accidently changed the wrong - - 2007-07-01 Jaap Haitsma - - Changelog entry from the previous commit. I accidently changed the - wrong Changelog file - * lib/egg/update-toolbareditor-from-libegg: script that syncs local - toolbar editor copy with the one in libegg SVN - * lib/egg/egg*: sync with toolbar editor in libegg. Sync obtained by - running update-toolbareditor-from-libegg - * lib/egg/eggintl.h: removed not needed anymore by egg-toolbareditor - * lib/egg/Makefile.am: remove eggintl.h - - svn path=/trunk/; revision=7107 - - ChangeLog | 11 +++++++++++ - 1 file changed, 11 insertions(+) - -commit 4b28dd2019b62d460840d7bf29767f86ed985869 -Author: Jaap Haitsma -Date: Sun Jul 1 13:45:39 2007 +0000 - - script that syncs local toolbar editor copy with the one in libegg SVN - - 2007-07-01 Jaap Haitsma - - * lib/egg/update-toolbareditor-from-libegg: script that syncs local - toolbar editor copy with the one in libegg SVN - * lib/egg/egg*: sync with toolbar editor in libegg. Sync obtained by - running update-toolbareditor-from-libegg - * lib/egg/eggintl.h: removed not needed anymore by egg-toolbareditor - * lib/egg/Makefile.am: remove eggintl.h - - svn path=/trunk/; revision=7106 - - lib/egg/Makefile.am | 3 +- - lib/egg/egg-editable-toolbar.c | 75 ++++++++++++++++++++++++++++---- - lib/egg/egg-editable-toolbar.h | 6 +-- - lib/egg/egg-toolbar-editor.c | 8 ++-- - lib/egg/egg-toolbar-editor.h | 4 +- - lib/egg/egg-toolbars-model.c | 8 ++-- - lib/egg/egg-toolbars-model.h | 4 +- - lib/egg/eggintl.h | 10 ----- - lib/egg/eggtreemultidnd.c | 10 ++--- - lib/egg/eggtreemultidnd.h | 6 +-- - lib/egg/update-toolbareditor-from-libegg | 21 +++++++++ - 11 files changed, 111 insertions(+), 44 deletions(-) - -commit 826e46081e71c48e304f9f358207909e4e364b04 -Author: Daniel Nylander -Date: Fri Jun 29 13:04:18 2007 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=7103 - - po/ChangeLog | 4 ++ - po/sv.po | 145 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 81 insertions(+), 68 deletions(-) - -commit 319cb5e4e0994843ef43427a17fc9cec2e3ad49c -Author: Pema Geyleg -Date: Fri Jun 29 08:43:39 2007 +0000 - - Updated dzongkha translation - - svn path=/trunk/; revision=7102 - - po/ChangeLog | 4 + - po/dz.po | 246 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 129 insertions(+), 121 deletions(-) - -commit 71cc504d256eefd65e1de82c41b79325713d779c -Author: Christian Persch -Date: Thu Jun 28 11:14:16 2007 +0000 - - A data/weasel-ua-pref.js.in: - - 2007-06-28 Christian Persch - - * 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 - - ChangeLog | 11 +++++++++++ - configure.ac | 19 +++++++++++++++++++ - data/Makefile.am | 5 +++++ - data/weasel-ua-pref.js.in | 6 ++++++ - 4 files changed, 41 insertions(+) - -commit 3fe4549839878cb97d604fde8fdc769f8dd0cf89 -Author: Luca Ferretti -Date: Tue Jun 26 15:56:18 2007 +0000 - - use "document-page-setup" named icon for STOCK_PRINT_SETUP (now available - - 2007-06-26 Luca Ferretti - - * lib/ephy-stock-icons.h: use "document-page-setup" named icon for - STOCK_PRINT_SETUP (now available on gnome-icon-theme trunk); add - comments to explain icons origin (icon naming spec, custom, - deprecated...) - - - svn path=/trunk/; revision=7099 - - ChangeLog | 7 +++++++ - lib/ephy-stock-icons.h | 6 +++++- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 2290385dc8e655a6bea011aff1dde14f832e07a4 -Author: Clytie Siddall -Date: Tue Jun 26 11:55:00 2007 +0000 - - Updated Vietnamese translation. - - svn path=/trunk/; revision=7098 - - po/vi.po | 939 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 487 insertions(+), 452 deletions(-) - -commit 1d0db53112b984f26abc6eeb6189e7ee623a2890 -Author: Clytie Siddall -Date: Tue Jun 26 06:54:53 2007 +0000 - - Updated Vietnamese translation. - - svn path=/trunk/; revision=7097 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 07d195c96103ab490f97f5bf914c9f6e6a748612 -Author: Felix Riemann -Date: Mon Jun 25 14:41:06 2007 +0000 - - Make named drag-icons toolbar-sized like the others. Part of bug #450590. - - 2007-06-25 Felix Riemann - - * lib/egg/egg-toolbar-editor.c: (event_box_realize_cb): - Make named drag-icons toolbar-sized like the others. - Part of bug #450590. - - svn path=/trunk/; revision=7096 - - ChangeLog | 6 ++++++ - lib/egg/egg-toolbar-editor.c | 26 +++++++++++++++++++++++++- - 2 files changed, 31 insertions(+), 1 deletion(-) - -commit eff03238a993ff0af0d79f8abb5dbae7f02e1c75 -Author: Felix Riemann -Date: Sun Jun 24 19:13:19 2007 +0000 - - Correct ChangeLog entry. - - svn path=/trunk/; revision=7095 - - ChangeLog | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 03fd7c00cad8b25195c1ffd9f5026aa219811c08 -Author: Felix Riemann -Date: Sun Jun 24 19:10:17 2007 +0000 - - Cleanups to my last commit. Fixes bug 450590 (Felix Riemann, Jaap Haitsma) - - 2007-06-24 Felix Riemann - - * lib/egg/egg-toolbar-editor.c: (editor_create_item_from_name): - Cleanups to my last commit. - Fixes bug 450590 (Felix Riemann, Jaap Haitsma) - - svn path=/trunk/; revision=7094 - - ChangeLog | 6 ++++++ - lib/egg/egg-toolbar-editor.c | 43 +++++++++++++++---------------------------- - 2 files changed, 21 insertions(+), 28 deletions(-) - -commit db02570a8627588efe5ed3479573bdf48e20ba30 -Author: Felix Riemann -Date: Sun Jun 24 12:00:15 2007 +0000 - - Add a workaround to take into account that Gtk{Radio,Toggle}Actions only - - 2007-06-24 Felix Riemann - - * lib/egg/egg-toolbar-editor.c: (editor_create_item_from_name): - Add a workaround to take into account that Gtk{Radio,Toggle}Actions - only set either the stock-id or the icon-name property depending on - the image type. This makes it possible to display the icon of such - actions in the toolbar editor. (bug #450590) - - svn path=/trunk/; revision=7093 - - ChangeLog | 8 ++++++++ - lib/egg/egg-toolbar-editor.c | 15 +++++++++++++-- - 2 files changed, 21 insertions(+), 2 deletions(-) - -commit f8605d62e2f4540134f2fca9496f12dd00c97476 -Author: Daniel Nylander -Date: Sat Jun 23 17:59:51 2007 +0000 - - sv/sv.po: Updated Swedish translation - - svn path=/trunk/; revision=7092 - - help/ChangeLog | 4 + - help/sv/sv.po | 2307 ++++++++++++++++++++++++++++++++++++++++++-------------- - 2 files changed, 1726 insertions(+), 585 deletions(-) - -commit 2f39c640593cf9339730dad9b55732916da073ce -Author: Kjartan Maraas -Date: Sat Jun 23 08:52:16 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-06-23 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7091 - - po/ChangeLog | 4 ++ - po/nb.po | 131 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 73 insertions(+), 62 deletions(-) - -commit b0a1720fcbb55cac52926c703df9528bd05e4b7f -Author: Gabor Kelemen -Date: Fri Jun 22 19:10:30 2007 +0000 - - Use g_option_group_set_translation_domain to translate commandline - - 2007-06-22 Gabor Kelemen - - * src/ephy-main.c: Use g_option_group_set_translation_domain to - translate commandline options. Fixes bug #450146 - - - svn path=/trunk/; revision=7090 - - ChangeLog | 5 +++++ - src/ephy-main.c | 3 +++ - 2 files changed, 8 insertions(+) - -commit 6ecb9db9e4f568b79123977da9eec079d771cadb -Author: Priit Laes -Date: Wed Jun 20 10:04:56 2007 +0000 - - Estonian translation update by Ivar Smolin. - - 2007-06-20 Priit Laes - - * et.po: Estonian translation update by Ivar Smolin. - - svn path=/trunk/; revision=7089 - - po/ChangeLog | 4 ++ - po/et.po | 141 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 79 insertions(+), 66 deletions(-) - -commit d0389c9e24f268dabe96d1caa74d876f9e4f11de -Author: Jorge Gonzalez Gonzalez -Date: Mon Jun 18 21:36:40 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7088 - - help/ChangeLog | 4 + - help/es/es.po | 361 +++++++++++++++++++++++++++------------------------------ - 2 files changed, 178 insertions(+), 187 deletions(-) - -commit c17e460d0fc49a7d4b52c031a07e9b8db98371e1 -Author: Jorge Gonzalez Gonzalez -Date: Mon Jun 18 18:57:12 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7087 - - po/ChangeLog | 4 ++ - po/es.po | 139 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 77 insertions(+), 66 deletions(-) - -commit 6f8ebed7d1387e2f594a94f6033316cf28e91e45 -Author: Reinout van Schouwen -Date: Sun Jun 17 19:45:49 2007 +0000 - - 2007-06-17 Reinout van Schouwen - - * 2007-06-17 Reinout van Schouwen - - - NEWS updated for 2.19.4 - - Updated Dutch translation - - - svn path=/trunk/; revision=7086 - - NEWS | 481 +++++++++++++++++++++++++++++++++-------------------------- - po/ChangeLog | 4 + - po/nl.po | 152 ++++++++++--------- - 3 files changed, 360 insertions(+), 277 deletions(-) - -commit b407005318f6f5946bacd85682b4e4208dbbe811 -Author: Diego Escalante Urrelo -Date: Sun Jun 17 05:56:03 2007 +0000 - - Modified first-time dialog when visiting a secure page, to mention the - - 2007-06-07 Diego Escalante Urrelo - - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - * help/C/epiphany.xml: - - Modified first-time dialog when visiting a secure page, to mention - the color and padlock icon in the address entry. - Patch by Jared Moore. Fixes bug #346243. - - - svn path=/trunk/; revision=7085 - - ChangeLog | 9 +++++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 5 ++++- - help/C/epiphany.xml | 13 ++++--------- - 3 files changed, 17 insertions(+), 10 deletions(-) - -commit 6bb1272c1569968ac109d8e1d612f24e13bd084f -Author: Christian Persch -Date: Sat Jun 16 20:24:24 2007 +0000 - - Add debugging.txt to EXTRA_DIST. - - 2007-06-16 Christian Persch - - * doc/Makefile.am: - - Add debugging.txt to EXTRA_DIST. - - svn path=/trunk/; revision=7084 - - ChangeLog | 6 ++++++ - doc/Makefile.am | 7 ++++++- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 9155e8cd98bc489df8a2093d1769b0b1c46981d7 -Author: Christian Persch -Date: Thu Jun 14 12:17:29 2007 +0000 - - Set the print as cancelled in the print settings too, see - - 2007-06-14 Christian Persch - - * embed/mozilla/GeckoPrintService.cpp: - * embed/mozilla/GeckoPrintSession.cpp: - * embed/mozilla/GeckoPrintSession.h: - - Set the print as cancelled in the print settings too, see - https://bugzilla.mozilla.org/show_bug.cgi?id=253926. - - svn path=/trunk/; revision=7081 - - ChangeLog | 9 +++++++++ - embed/mozilla/GeckoPrintService.cpp | 2 +- - embed/mozilla/GeckoPrintSession.cpp | 13 +++++++++++-- - embed/mozilla/GeckoPrintSession.h | 3 ++- - 4 files changed, 23 insertions(+), 4 deletions(-) - -commit a6a2cd926bc435e0dfbaf1c3d3535c0f2ba47410 -Author: Pema Geyleg -Date: Wed Jun 13 10:05:06 2007 +0000 - - updated dzongkha translation - - svn path=/trunk/; revision=7080 - - po/ChangeLog | 4 ++ - po/dz.po | 212 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 131 insertions(+), 85 deletions(-) - -commit 0087c0f5bd23dffbb826e8e5c79bda3582028aae -Author: Yair Hershkovitz -Date: Tue Jun 12 22:44:33 2007 +0000 - - updated hebrew translation - - svn path=/trunk/; revision=7079 - - po/ChangeLog | 4 + - po/he.po | 361 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 209 insertions(+), 156 deletions(-) - -commit 2103cd524e5d3df2a8c37eee9c30293eb411a0c8 -Author: Christian Persch -Date: Sun Jun 10 17:55:28 2007 +0000 - - Disable PAPI too. - - 2007-06-10 Christian Persch - - * data/default-prefs-common.js: - - Disable PAPI too. - - svn path=/trunk/; revision=7078 - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 3f9aed81356fe0b69b77675b12195d5e8c9572ff -Author: Diego Escalante Urrelo -Date: Fri Jun 8 01:53:08 2007 +0000 - - Adds SelectAll stock icon. - - 2007-06-07 Diego Escalante Urrelo - - * src/ephy-history-window.c: - * src/bookmarks/ephy-bookmarks-editor.c: - - Adds SelectAll stock icon. - - - svn path=/trunk/; revision=7077 - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit 2927156b3956b2d5f7b8057fa9ebbcdd9a34745b -Author: Diego Escalante Urrelo -Date: Tue Jun 5 21:54:47 2007 +0000 - - src/ephy-history-window.c src/bookmarks/ephy-bookmarks-editor.c - - 2007-06-05 Diego Escalante Urrelo - - * 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 - - ChangeLog | 10 ++++++++++ - data/ui/epiphany-bookmark-editor-ui.xml | 3 ++- - data/ui/epiphany-history-window-ui.xml | 5 +++-- - src/bookmarks/ephy-bookmarks-editor.c | 6 +++--- - src/ephy-history-window.c | 6 +++--- - 5 files changed, 21 insertions(+), 9 deletions(-) - -commit d54d3f7e2d5be6c3fd5b2f11962e3106c1614153 -Author: Diego Escalante Urrelo -Date: Tue Jun 5 21:45:42 2007 +0000 - - Last commit reverted. - - 2007-06-05 Diego Escalante Urrelo - - * embed/mozilla/EphyAboutModule.cpp: - - Last commit reverted. - - - svn path=/trunk/; revision=7075 - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutModule.cpp | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit d10f8e48853a17f9cbfaacb03152045fb790e14a -Author: Diego Escalante Urrelo -Date: Tue Jun 5 20:53:32 2007 +0000 - - Change the "The page was not fully loaded when the crash ocurred" message - - 2007-06-05 Diego Escalante Urrelo - - * embed/mozilla/EphyAboutModule.cpp: - - Change the "The page was not fully loaded when the crash ocurred" - message to something better. Patch by Thomas Presthus. Bug #433796. - - - svn path=/trunk/; revision=7074 - - ChangeLog | 7 +++++++ - embed/mozilla/EphyAboutModule.cpp | 8 ++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit 802553e5dc142514f762570d712f4ca4eef78ad1 -Author: Diego Escalante Urrelo -Date: Tue Jun 5 20:20:24 2007 +0000 - - Fix go button behaviour to react to button-release-event and not - - 2007-06-05 Diego Escalante Urrelo - - * src/ephy-go-action.c: - - Fix go button behaviour to react to button-release-event and not - button-press-event. Patch by Sebastiaan Samyn. Bug #441419. - - - svn path=/trunk/; revision=7072 - - ChangeLog | 7 +++++++ - src/ephy-go-action.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit a648b3de0a6d8d5a4a34bebb6bb8950805662e1b -Author: Diego Escalante Urrelo -Date: Tue Jun 5 19:41:29 2007 +0000 - - Added GTK_STOCK_SELECT_ALL to SelectAll action. - - 2007-06-05 Diego Escalante Urrelo - - * src/ephy-window.c: - - Added GTK_STOCK_SELECT_ALL to SelectAll action. - - - svn path=/trunk/; revision=7071 - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 98190e1a3d9473be5bfb2567d868d5368004a2d2 -Author: Christian Persch -Date: Tue Jun 5 13:00:23 2007 +0000 - - Fix docs build on xulrunner trunk. - - 2007-06-05 Christian Persch - - * doc/reference/Makefile.am: - - Fix docs build on xulrunner trunk. - - svn path=/trunk/; revision=7070 - - ChangeLog | 6 ++++++ - doc/reference/Makefile.am | 10 ++-------- - doc/reference/tmpl/ephy-embed.sgml | 3 --- - 3 files changed, 8 insertions(+), 11 deletions(-) - -commit 4ffb4c787fccb7090bbec4d3884ba9ec156d245a -Author: Wouter Bolsterlee -Date: Tue Jun 5 11:20:31 2007 +0000 - - Shameless plug: added Reinout van Schouwen and myself. - - 2007-06-05 Wouter Bolsterlee - - * data/about.ini: - - Shameless plug: added Reinout van Schouwen and myself. - - svn path=/trunk/; revision=7069 - - ChangeLog | 6 ++++++ - data/about.ini | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 83ee11c946e6584a54ee4a5a15116b9b4126b16d -Author: Jared Moore -Date: Tue Jun 5 11:18:01 2007 +0000 - - Reviewed by: Christian Persch Committed by: Wouter - - 2007-06-05 Jared Moore - - Reviewed by: Christian Persch - Committed by: Wouter Bolsterlee - - * data/ui/epiphany-ui.xml: - - Added 'select all' to context menu for text input areas. Bug #336739. - - svn path=/trunk/; revision=7068 - - ChangeLog | 9 +++++++++ - data/ui/epiphany-ui.xml | 2 ++ - 2 files changed, 11 insertions(+) - -commit 2cdefaae53a66ee800e4e9b1df85a4d5caa942f4 -Author: Kjartan Maraas -Date: Mon Jun 4 12:36:21 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-06-04 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=7067 - - po/ChangeLog | 4 ++ - po/nb.po | 136 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 74 insertions(+), 66 deletions(-) - -commit 86bdeecd987f67f687ed15eb06d6e2a1a949d37a -Author: Felix I -Date: Mon Jun 4 07:01:50 2007 +0000 - - updated ta translation - - svn path=/trunk/; revision=7066 - - po/ChangeLog | 4 + - po/ta.po | 828 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 419 insertions(+), 413 deletions(-) - -commit 1ce56edff8fab18e2ac05bb30c72c0a06bccca7e -Author: Christian Persch -Date: Sun Jun 3 22:11:05 2007 +0000 - - It seems SUSE can't take a hint and doesn't care, so remove this comment. - - 2007-06-04 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_load_url): - - It seems SUSE can't take a hint and doesn't care, so remove this comment. - - svn path=/trunk/; revision=7065 - - ChangeLog | 6 ++++++ - embed/ephy-embed.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit f29f02f432628c68cf66fa4cf0b50901c8504674 -Author: Jordi Mas -Date: Sat Jun 2 09:09:49 2007 +0000 - - Catalan translation by Gil Forcada Added ca to DOC_LINGUAS - - 2007-06-02 Jordi Mas - - * ca/ca.po: Catalan translation by Gil Forcada - * Makefile.am: Added ca to DOC_LINGUAS - - - svn path=/trunk/; revision=7064 - - help/ChangeLog | 5 + - help/Makefile.am | 2 +- - help/ca/ca.po | 1890 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 1896 insertions(+), 1 deletion(-) - -commit cd829fb7c53e5ca34bb64262d74025fd9be6355a -Author: Christian Persch -Date: Fri Jun 1 21:04:38 2007 +0000 - - Change contact address. - - svn path=/trunk/; revision=7063 - - README | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c336171e71e6214a8d36abd83bce4882f56fb959 -Author: Diego Escalante Urrelo -Date: Thu May 31 19:43:10 2007 +0000 - - Adds some prefixes to web_prefixes for ftp sites. Bug #422114. - - 2007-05-31 Diego Escalante Urrelo - - * lib/widgets/ephy-location-entry.c: - - Adds some prefixes to web_prefixes for ftp sites. Bug #422114. - - - svn path=/trunk/; revision=7062 - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 6 +++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 6367ad45d40261775449168b27855aaed796be34 -Author: Christian Persch -Date: Sun May 27 12:18:28 2007 +0000 - - nsIPasswordManager doesn't exist on trunk anymore. - - 2007-05-27 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - nsIPasswordManager doesn't exist on trunk anymore. - - svn path=/trunk/; revision=7053 - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 15 ++++++++++++--- - 2 files changed, 18 insertions(+), 3 deletions(-) - -commit f0447ebe2550c39d9fd31885ce510af4e63f2824 -Author: Christian Persch -Date: Sun May 27 11:54:50 2007 +0000 - - No need to make this data static. - - 2007-05-27 Christian Persch - - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - - No need to make this data static. - - svn path=/trunk/; revision=7052 - - ChangeLog | 6 ++++++ - lib/ephy-stock-icons.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit d439a5efcd743c799c84249b96f79b2a8398f76e -Author: Christian Persch -Date: Sun May 27 11:53:28 2007 +0000 - - Take the printer's capabilities into account. - - 2007-05-27 Christian Persch - - * embed/mozilla/GeckoPrintService.cpp: - - Take the printer's capabilities into account. - - svn path=/trunk/; revision=7051 - - ChangeLog | 6 +++++ - embed/mozilla/GeckoPrintService.cpp | 49 ++++++++++++++++++++++++++++++------- - 2 files changed, 46 insertions(+), 9 deletions(-) - -commit 641f5c3fae7ea6bccda0bfa78fdcca7d0ad9de32 -Author: Daniel Nylander -Date: Sun May 27 08:49:22 2007 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=7050 - - po/ChangeLog | 4 + - po/sv.po | 1021 ++++++++++++++++------------------------------------------ - 2 files changed, 285 insertions(+), 740 deletions(-) - -commit b0a2deeb7a0cdf50bfef46d81be0fcd377e5a6ac -Author: Reinout van Schouwen -Date: Sat May 26 21:05:05 2007 +0000 - - Updated Dutch translation - - 2007-05-26 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=7049 - - po/ChangeLog | 10 ++-- - po/nl.po | 153 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 86 insertions(+), 77 deletions(-) - -commit 43e67f8ebe33c332626f7a6b31cb4ed8f7bf4098 -Author: Stéphane Raimbault -Date: Fri May 25 17:56:26 2007 +0000 - - Merged French translation from gnome-2-18. - - svn path=/trunk/; revision=7048 - - po/ChangeLog | 4 + - po/fr.po | 249 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 150 insertions(+), 103 deletions(-) - -commit 17e88bae6d7cf9d7610a8f0f481fa79d29cb6957 -Author: Kenneth Nielsen -Date: Thu May 24 16:49:15 2007 +0000 - - Updated Danish translation - - svn path=/trunk/; revision=7046 - - po/da.po | 3927 ++++++++++++++++++++++---------------------------------------- - 1 file changed, 1413 insertions(+), 2514 deletions(-) - -commit 19d8933bcc1b277f4d53c89082dae73d01ec4c42 -Author: Priit Laes -Date: Thu May 24 05:53:10 2007 +0000 - - Updated Estonian translation by Ivar Smolin . - - 2007-05-24 Priit Laes - - * et.po: Updated Estonian translation by Ivar Smolin . - - svn path=/trunk/; revision=7045 - - po/ChangeLog | 4 ++ - po/et.po | 179 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 95 insertions(+), 88 deletions(-) - -commit 66b4248ae5e5fd95d9684ceddf08f0f976f7468e -Author: Jakub Friedl -Date: Wed May 23 09:56:47 2007 +0000 - - Updated Czech translation - - 2007-05-23 Jakub Friedl - - * cs.po: Updated Czech translation - - - - svn path=/trunk/; revision=7043 - - po/ChangeLog | 4 ++ - po/cs.po | 215 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 104 insertions(+), 115 deletions(-) - -commit 4c90a346678c59934ef3c5e789c495e1d7ee5853 -Author: Theppitak Karoonboonyanan -Date: Wed May 23 02:18:21 2007 +0000 - - Updated Thai translation. - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=7042 - - po/ChangeLog | 4 ++ - po/th.po | 122 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 67 insertions(+), 59 deletions(-) - -commit 1a5bc5788401698470955f4c08f38e3a7fc08a22 -Author: Jorge Gonzalez Gonzalez -Date: Tue May 22 17:26:22 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7041 - - po/ChangeLog | 4 ++ - po/es.po | 166 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 89 insertions(+), 81 deletions(-) - -commit 2b4fbb6f691b385df24033adfd501e9e8a8ba971 -Author: Djihed Afifi -Date: Sat May 19 19:49:50 2007 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=7040 - - po/ChangeLog | 4 ++ - po/ar.po | 203 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 108 insertions(+), 99 deletions(-) - -commit 55ee3721b06d5ded2c6a90b1c06ce3bc98126ef1 -Author: Christian Persch -Date: Sat May 19 17:26:26 2007 +0000 - - Make "Show Passwords" plural. Bug #437798. - - 2007-05-19 Christian Persch - - * data/glade/epiphany.glade: - - Make "Show Passwords" plural. Bug #437798. - - svn path=/trunk/; revision=7039 - - ChangeLog | 6 +++ - data/glade/epiphany.glade | 100 +++++++++++++++++++++++----------------------- - 2 files changed, 56 insertions(+), 50 deletions(-) - -commit ac322ce9cd9c86ee3e400b1887b0fd26fc4ad386 -Author: Christian Persch -Date: Sat May 19 17:13:42 2007 +0000 - - Add pref for smooth scroll, bug #162489. Use GSlice to allocate the prefs - - 2007-05-19 Christian Persch - - * 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 - - ChangeLog | 1 + - data/epiphany.schemas.in | 10 ++++++++++ - 2 files changed, 11 insertions(+) - -commit 661051d3901f5d2727aa0028da333dc541dec024 -Author: Christian Persch -Date: Sat May 19 17:12:45 2007 +0000 - - Add pref for smooth scroll, bug #162489. Use GSlice to allocate the prefs - - 2007-05-19 Christian Persch - - * 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=7037 - - ChangeLog | 9 +++ - embed/ephy-embed-prefs.h | 1 + - embed/mozilla/mozilla-notifiers.cpp | 124 +++++++++++++++++++++++++++++++++++- - 3 files changed, 131 insertions(+), 3 deletions(-) - -commit 6b6326339b313a8bb468e7fc868dd1f008308d80 -Author: Christian Persch -Date: Sat May 19 16:46:52 2007 +0000 - - Just use ngettext here, no need for dngettext. - - 2007-05-19 Christian Persch - - * embed/mozilla/GeckoCookiePromptService.cpp: - - Just use ngettext here, no need for dngettext. - - svn path=/trunk/; revision=7036 - - ChangeLog | 6 ++++++ - embed/mozilla/GeckoCookiePromptService.cpp | 7 +++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit 342e11049b4fe3a550ca62e1b9569e99e818cc4d -Author: Christian Persch -Date: Sat May 19 16:45:55 2007 +0000 - - Store http-only flag too. - - 2007-05-19 Christian Persch - - * embed/ephy-cookie-manager.h: - * embed/mozilla/EphySingle.cpp: - - Store http-only flag too. - - svn path=/trunk/; revision=7035 - - ChangeLog | 7 +++++++ - embed/ephy-cookie-manager.h | 1 + - embed/mozilla/EphySingle.cpp | 6 ++++++ - 3 files changed, 14 insertions(+) - -commit 7e5baa77b9fd26b348b158bf9785d8b19b325fa3 -Author: Christian Persch -Date: Sat May 19 16:42:02 2007 +0000 - - Include config.h. - - 2007-05-19 Christian Persch - - * lib/egg/eggtreemultidnd.c: - - Include config.h. - - svn path=/trunk/; revision=7034 - - ChangeLog | 6 ++++++ - lib/egg/eggtreemultidnd.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit abfdc94cfb98635c85848f0fd1886164bb72b475 -Author: Christian Persch -Date: Sat May 19 16:40:59 2007 +0000 - - Make this comment accurate. - - 2007-05-19 Christian Persch - - * src/ephy-statusbar.c: - - Make this comment accurate. - - svn path=/trunk/; revision=7033 - - ChangeLog | 6 ++++++ - src/ephy-statusbar.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit cdb13031b95869f2c4eab6c8d6419cf83e85e9b2 -Author: Christian Persch -Date: Sat May 19 16:40:23 2007 +0000 - - Make this string static. - - 2007-05-19 Christian Persch - - * src/prefs-dialog.c: (prefs_dialog_show_help): - - Make this string static. - - svn path=/trunk/; revision=7032 - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 5 ++--- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit 01bfb29123dc28cd6f4e1250ddea8d0cd93c3ef3 -Author: Priit Laes -Date: Fri May 18 20:10:02 2007 +0000 - - Updated Estonian translation by Ivar Smolin . - - 2007-05-18 Priit Laes - - * et.po: Updated Estonian translation by Ivar Smolin . - - svn path=/trunk/; revision=7031 - - po/ChangeLog | 4 ++ - po/et.po | 220 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 130 insertions(+), 94 deletions(-) - -commit 32e83a8df5755e2f7e98083d4ea458a833640050 -Author: Theppitak Karoonboonyanan -Date: Thu May 17 13:56:30 2007 +0000 - - Updated Thai translation. - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=7029 - - po/ChangeLog | 4 ++ - po/th.po | 136 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 89 insertions(+), 51 deletions(-) - -commit 9935b5471f2275eeb30cebfdcc74f5d538b56a2d -Author: Christian Persch -Date: Sun May 13 18:53:07 2007 +0000 - - Post-release version bump. - - 2007-05-13 Christian Persch - - * configure.ac: - - Post-release version bump. - - svn path=/trunk/; revision=7028 - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit bfec29105df01df047c9843fd8a1b0f5bab881d6 -Author: Christian Persch -Date: Sun May 13 18:43:08 2007 +0000 - - === Release 2.19.2 == - - 2007-05-13 Christian Persch - - === Release 2.19.2 == - - * configure.ac: - - Update for 2.19.2. - - * po/POTFILES.skip: - - Try to fix distcheck with stupid intltool. - - svn path=/trunk/; revision=7026 - - ChangeLog | 12 ++++++++++++ - configure.ac | 4 ++-- - po/POTFILES.skip | 3 +++ - 3 files changed, 17 insertions(+), 2 deletions(-) - -commit 5e6be16d3a44bdb8369f3e9e27a8e29298988398 -Author: Felix Riemann -Date: Tue May 8 15:16:20 2007 +0000 - - Support using named icons in the toolbareditor and attach them to the - - 2007-05-08 Felix Riemann - - * lib/egg/egg-toolbar-editor.c: (event_box_realize_cb), - (editor_create_item_from_name): - Support using named icons in the toolbareditor and attach them to the - mouse pointer while dragging them to the toolbar. (bug #436684) - - svn path=/trunk/; revision=7024 - - ChangeLog | 7 +++++++ - lib/egg/egg-toolbar-editor.c | 18 ++++++++++++++++-- - 2 files changed, 23 insertions(+), 2 deletions(-) - -commit add2d2104b2ef494290bbb33072f8f65f7ee8f5f -Author: Kjartan Maraas -Date: Tue May 8 13:24:34 2007 +0000 - - Fix typo - - svn path=/trunk/; revision=7023 - - po/nb.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit cb47ba4146108bbdd50dcecff612f8eeb38913c5 -Author: Kjartan Maraas -Date: Tue May 8 10:36:46 2007 +0000 - - Updated Norwegian bokmål translation from Espen Stefansen. - - 2007-05-08 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation from - Espen Stefansen. - - svn path=/trunk/; revision=7022 - - po/ChangeLog | 5 +++ - po/nb.po | 129 +++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 90 insertions(+), 44 deletions(-) - -commit fd9a5dcbbd70b6133daf31c7765ede8cdc43d2ab -Author: Diego Escalante Urrelo -Date: Fri May 4 20:00:04 2007 +0000 - - Make Shift+Return find previous when searching. Patch by Robin Stocker. - - 2007-05-04 Diego Escalante Urrelo - - * src/ephy-find-toolbar.c: - - Make Shift+Return find previous when searching. - Patch by Robin Stocker. - - Fixes #412033 - - - svn path=/trunk/; revision=7021 - - ChangeLog | 9 +++++++++ - src/ephy-find-toolbar.c | 8 ++++++++ - 2 files changed, 17 insertions(+) - -commit be0b0b965e05963d42b9bf21899b4675b0a18e24 -Author: Xan Lopez -Date: Tue May 1 17:13:10 2007 +0000 - - Copy the items on the completion list as the user moves through them. The - - * lib/widgets/ephy-location-entry.c: - * lib/widgets/ephy-location-entry.h: - * src/ephy-completion-model.c: - * src/ephy-completion-model.h: - * src/ephy-location-action.c: - - Copy the items on the completion list as the user moves through - them. The original input can be restored pressing Esc. The tentative - completion can be made definitive pressing Left or Right. - - Fixes #409291, #102528 - - svn path=/trunk/; revision=7020 - - ChangeLog | 14 ++++++++++++++ - lib/widgets/ephy-location-entry.c | 35 ++++++++++++++++++++++++++++++++++- - lib/widgets/ephy-location-entry.h | 3 ++- - src/ephy-completion-model.c | 28 ++++++++++++++++++++++++++++ - src/ephy-completion-model.h | 1 + - src/ephy-location-action.c | 3 ++- - 6 files changed, 81 insertions(+), 3 deletions(-) - -commit 9a3819459ea8edf60d3674cb0150566a2c2e1824 -Author: Christophe Merlet -Date: Wed Apr 25 20:13:55 2007 +0000 - - Added Occitan translation. - - svn path=/trunk/; revision=7015 - - po/ChangeLog | 6 + - po/LINGUAS | 1 + - po/oc.po | 4135 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 4142 insertions(+) - -commit 2697544c10462aefaf7091c25d5bbbb3de90ab01 -Author: Diego Escalante Urrelo -Date: Tue Apr 24 19:45:19 2007 +0000 - - Avoid opening nautilus if downloads are done to Desktop. This re-fixes bug - - 2007-04-24 Diego Escalante Urrelo - - * src/popup-commands.c: - * lib/ephy-file-helpers.c: - Avoid opening nautilus if downloads are done to Desktop. This re-fixes - bug #383698. - - - - svn path=/trunk/; revision=7014 - - ChangeLog | 9 ++++++++- - lib/ephy-file-helpers.c | 24 +++++++++++++++++++----- - src/popup-commands.c | 22 +++------------------- - 3 files changed, 30 insertions(+), 25 deletions(-) - -commit 63024526868d1241f9edefc2e8cc3112d6a010d3 -Author: Diego Escalante Urrelo -Date: Tue Apr 24 19:39:18 2007 +0000 - - Fix some strict-aliasing warnings. - - 2007-04-24 Diego Escalante Urrelo - - * embed/ephy-embed-dialog.c: - Fix some strict-aliasing warnings. - - - - svn path=/trunk/; revision=7012 - - ChangeLog | 5 +++++ - embed/ephy-embed-dialog.c | 10 ++++++++-- - 2 files changed, 13 insertions(+), 2 deletions(-) - -commit 7d697c78f5d8a1659c367a05ca9fe54da7cd9e8e -Author: Bastien Nocera -Date: Mon Apr 23 17:12:21 2007 +0000 - - Use xdg-user-dirs to get a better default Downloads directory (Closes: - - 2007-04-23 Bastien Nocera - - * lib/ephy-file-helpers.c: (xdg_user_dir_lookup), - (ephy_file_downloads_dir_from_xdg), (ephy_file_downloads_dir): - Use xdg-user-dirs to get a better default Downloads directory - (Closes: #415342) - - - svn path=/trunk/; revision=7011 - - ChangeLog | 7 +++ - lib/ephy-file-helpers.c | 150 ++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 157 insertions(+) - -commit 03cf440fbb37e38a334a4f06706291e8acac860e -Author: Jorge Gonzalez Gonzalez -Date: Mon Apr 23 16:04:54 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7010 - - help/ChangeLog | 4 + - help/es/es.po | 1188 ++++++++++++++++++++++++++++---------------------------- - 2 files changed, 601 insertions(+), 591 deletions(-) - -commit 8ad1c68d12e9f63b5f3e17768e2ad3865ed5503a -Author: Jorge Gonzalez Gonzalez -Date: Mon Apr 23 15:58:53 2007 +0000 - - Updated Spanish translation - - svn path=/trunk/; revision=7009 - - po/ChangeLog | 4 ++ - po/es.po | 163 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 94 insertions(+), 73 deletions(-) - -commit e2e76c49c2717c1c9b61971ba75a120dc48e9f0d -Author: Luca Ferretti -Date: Mon Apr 23 14:13:54 2007 +0000 - - Updated Italian translation by Francesco Marletta. - - 2007-04-23 Luca Ferretti - - * it.po: Updated Italian translation by Francesco Marletta. - - - svn path=/trunk/; revision=7008 - - po/ChangeLog | 4 + - po/it.po | 3851 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 2104 insertions(+), 1751 deletions(-) - -commit 051d35e595c90e24bbc0d5acc77783adbdb18e7c -Author: Bastien Nocera -Date: Fri Apr 20 13:47:34 2007 +0000 - - Add "application/x-quicktimeplayer" and - - 2007-04-20 Bastien Nocera - - * 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 - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 2 ++ - 2 files changed, 8 insertions(+) - -commit 303d1a06544020ef243348613b04e73ad580024e -Author: Nickolay V. Shmyrev -Date: Thu Apr 19 15:18:32 2007 +0000 - - Updated Russian translation. - - 2007-04-19 Nickolay V. Shmyrev - - * ru.po: Updated Russian translation. - - - - svn path=/trunk/; revision=7003 - - po/ChangeLog | 4 ++ - po/ru.po | 142 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 75 insertions(+), 71 deletions(-) - -commit 41fde3da46dfad392f19a9ac682b4742fa38aeaf -Author: Ignacio Casal Quinteiro -Date: Thu Apr 19 09:55:08 2007 +0000 - - Updated Galician Translation - - svn path=/trunk/; revision=7002 - - po/ChangeLog | 4 + - po/gl.po | 2891 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1555 insertions(+), 1340 deletions(-) - -commit 582b86a83464f04c7b4d041cf281bdc5ce1c9cfe -Author: Hendrik Richter -Date: Tue Apr 17 15:29:07 2007 +0000 - - Updated German translation. - - 2007-04-17 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=6999 - - po/ChangeLog | 4 +++ - po/de.po | 107 ++++++++++++++++++++++++++++++++++++++++------------------- - 2 files changed, 77 insertions(+), 34 deletions(-) - -commit 221e93a0dfc79930a9c9d0be722a436f405e6f1d -Author: Daniel Nylander -Date: Mon Apr 16 15:17:05 2007 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=6998 - - po/ChangeLog | 4 +++ - po/sv.po | 111 +++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 77 insertions(+), 38 deletions(-) - -commit 18099b317e67629b2581297d5a35a3a2d3dbab3e -Author: Diego Escalante Urrelo -Date: Mon Apr 16 07:18:37 2007 +0000 - - Middle clicking the Go button should open the location bar address content - - 2007-04-16 Diego Escalante Urrelo - - * src/ephy-go-action.c: - - Middle clicking the Go button should open the location bar address - content in a new tab. Bug #362591. - - - svn path=/trunk/; revision=6996 - - ChangeLog | 7 +++++++ - src/ephy-go-action.c | 15 ++++++++++++--- - 2 files changed, 19 insertions(+), 3 deletions(-) - -commit bfc6a9ce3f3aca0721c83ce58f98e4343694df29 -Author: Djihed Afifi -Date: Sat Apr 14 18:46:15 2007 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=6995 - - po/ChangeLog | 4 ++ - po/ar.po | 161 +++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 111 insertions(+), 54 deletions(-) - -commit a00e2d50306ebf2a9de1fe1920a40923674309a2 -Author: Jakub Friedl -Date: Fri Apr 13 08:37:39 2007 +0000 - - Fixed a Czech string - - 2007-04-13 Jakub Friedl - - * cs.po: Fixed a Czech string - - - svn path=/trunk/; revision=6993 - - po/ChangeLog | 4 ++++ - po/cs.po | 71 ++++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 49 insertions(+), 26 deletions(-) - -commit 91abd9a9660e7b36ed73b804ea64e435d2b87f5b -Author: Reinout van Schouwen -Date: Thu Apr 12 22:26:49 2007 +0000 - - Updated Dutch translation - - 2007-04-13 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=6990 - - po/ChangeLog | 3808 +++++++++++++++++++++++++++++----------------------------- - po/nl.po | 109 +- - 2 files changed, 1978 insertions(+), 1939 deletions(-) - -commit 94aa8d7f39a5471b8ab738c2032c64fc16bca949 -Author: Christian Persch -Date: Mon Apr 9 12:07:15 2007 +0000 - - Fix printing of frames. - - 2007-04-09 Christian Persch - - * 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 - - ChangeLog | 9 +++++++ - data/glade/print.glade | 3 ++- - embed/mozilla/EphyBrowser.cpp | 1 + - embed/mozilla/GeckoPrintService.cpp | 49 ++++++++++++++++++++++++++++--------- - embed/mozilla/GeckoPrintService.h | 2 +- - 5 files changed, 50 insertions(+), 14 deletions(-) - -commit c1d90d87f89bcc69b76762694513c1f5b64b6c35 -Author: Jakub Friedl -Date: Tue Apr 3 19:06:08 2007 +0000 - - Updated Czech translation - - 2007-04-03 Jakub Friedl - - * cs.po: Updated Czech translation - - - - svn path=/trunk/; revision=6982 - - po/ChangeLog | 4 +++ - po/cs.po | 97 ++++++++++++++++++++++++++++++++++++++++++------------------ - 2 files changed, 72 insertions(+), 29 deletions(-) - -commit 32e229860e6d4dc22516f954ed1daea8a06eb894 -Author: Diego Escalante Urrelo -Date: Mon Apr 2 20:32:06 2007 +0000 - - Allow the user to select a different bookmark topic on the toolbar by just - - 2007-04-02 Diego Escalante Urrelo - - * src/bookmarks/ephy-topic-action.c: - - Allow the user to select a different bookmark topic on the toolbar by - just moving the mouse. Old behaviour forced the user to click each - topic button to activate the menu, now only the first click is - required. Bug #363848. Patch by John Millikin. - - - svn path=/trunk/; revision=6981 - - ChangeLog | 9 ++++++++ - src/bookmarks/ephy-topic-action.c | 44 +++++++++++++++++++++++++++++++++++++++ - 2 files changed, 53 insertions(+) - -commit ef9323ca156d736e1b1794350c8473b34bc39e56 -Author: Christian Persch -Date: Wed Mar 28 22:22:50 2007 +0000 - - #if 0 some currently unused code. Bug #423907. - - 2007-03-29 Christian Persch - - * lib/ephy-password-dialog.c: (ephy_password_dialog_constructor): - - #if 0 some currently unused code. Bug #423907. - - svn path=/trunk/; revision=6977 - - ChangeLog | 6 ++++++ - lib/ephy-password-dialog.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 3005e954fb5e63d52efd787a367d88b59adf7a68 -Author: Christian Persch -Date: Sat Mar 24 23:09:11 2007 +0000 - - Make progressbar taller. Bug #421060. - - 2007-03-25 Christian Persch - - * src/ephy-statusbar.c: (create_statusbar_progress): - - Make progressbar taller. Bug #421060. - - svn path=/trunk/; revision=6975 - - ChangeLog | 6 ++++++ - src/ephy-statusbar.c | 22 ++++++++++++++-------- - 2 files changed, 20 insertions(+), 8 deletions(-) - -commit 82443d54ebe1776332e71fbc57ae5b1d85acfe4b -Author: Bastien Nocera -Date: Fri Mar 16 11:09:15 2007 +0000 - - Fix Epiphany not finding some Gecko plugins when running in a multilib - - 2007-03-16 Bastien Nocera - - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - Fix Epiphany not finding some Gecko plugins when - running in a multilib environment (Closes: #407419) - - - svn path=/trunk/; revision=6971 - - ChangeLog | 7 +++ - embed/mozilla/Makefile.am | 1 + - embed/mozilla/mozilla-embed-single.cpp | 79 ++++++++++++++++++++++++++++------ - 3 files changed, 75 insertions(+), 12 deletions(-) - -commit af566804b10dafef1ddfd4aafbce3cfa1b69910d -Author: David Lodge -Date: Thu Mar 15 06:57:47 2007 +0000 - - Update en_GB translation - - svn path=/trunk/; revision=6969 - - po/ChangeLog | 4 +++ - po/en_GB.po | 92 ++++++++++++++++++++++++++++++++++++++++++------------------ - 2 files changed, 68 insertions(+), 28 deletions(-) - -commit 9e00de2ea3d8066dbc7b5d1feb64e0d366565d2b -Author: Goran Rakic -Date: Mon Mar 12 16:01:40 2007 +0000 - - Updated Serbian translation - - svn path=/trunk/; revision=6967 - - po/ChangeLog | 4 +++ - po/sr.po | 106 ++++++++++++++++++++++++++++++++++++++++------------------ - po/sr@Latn.po | 91 ++++++++++++++++++++++++++----------------------- - 3 files changed, 126 insertions(+), 75 deletions(-) - -commit afd7212eb7b1b8c479431df49f23bb344a3f15d6 -Author: Christian Persch -Date: Mon Mar 12 13:21:54 2007 +0000 - - Update - - svn path=/trunk/; revision=6964 - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit b1ecbfa4e19c381c3d90b2398cc66ba4a52b0315 -Author: Christian Persch -Date: Mon Mar 12 12:48:19 2007 +0000 - - Add translator's comment for 'token'. - - 2007-03-12 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - - Add translator's comment for 'token'. - - svn path=/trunk/; revision=6962 - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSDialogs.cpp | 4 ++++ - 2 files changed, 10 insertions(+) - -commit 44bce1ab7d508b27cb8471bfbda15733752f81f8 -Author: Christian Persch -Date: Mon Mar 12 12:47:10 2007 +0000 - - Implement nsICookiePromptService. Bug #337826. - - 2007-03-12 Christian Persch - - * embed/mozilla/GeckoCookiePromptService.cpp: - * embed/mozilla/GeckoCookiePromptService.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - - Implement nsICookiePromptService. Bug #337826. - - svn path=/trunk/; revision=6961 - - ChangeLog | 9 ++ - embed/mozilla/GeckoCookiePromptService.cpp | 160 +++++++++++++++++++++++++++++ - embed/mozilla/GeckoCookiePromptService.h | 43 ++++++++ - embed/mozilla/Makefile.am | 2 + - embed/mozilla/MozRegisterComponents.cpp | 10 +- - 5 files changed, 223 insertions(+), 1 deletion(-) - -commit 5754e9de9cbbf108eb28b28b609bfe95092afbc3 -Author: Felix I -Date: Mon Mar 12 08:06:23 2007 +0000 - - Updated Translation - - svn path=/trunk/; revision=6960 - - po/ChangeLog | 4 + - po/ta.po | 1795 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 943 insertions(+), 856 deletions(-) - -commit 288fe9492e6b7e0de944bc2b8d7c93ca4f4a1b5a -Author: Maxim Dziumanenko -Date: Mon Mar 12 07:46:50 2007 +0000 - - Update Ukrainian translation. - - 2007-03-12 Maxim Dziumanenko - - * Update Ukrainian translation. - - - svn path=/trunk/; revision=6958 - - po/uk.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit f18699871e1d1adfe95cb590c401c17267330205 -Author: Maxim Dziumanenko -Date: Mon Mar 12 07:43:31 2007 +0000 - - Update Ukrainian translation. - - 2007-03-12 Maxim Dziumanenko - - * Update Ukrainian translation. - - - svn path=/trunk/; revision=6957 - - help/ChangeLog | 4 + - help/uk/uk.po | 1081 ++++++++++++++++++++++++++++---------------------------- - 2 files changed, 549 insertions(+), 536 deletions(-) - -commit 52bd69d0763194127f71b7bce433035e03257612 -Author: Christian Persch -Date: Sun Mar 11 19:50:47 2007 +0000 - - Bump version to 2.19.0, and set API version to 2.19. - - 2007-03-11 Christian Persch - - * configure.ac: - - Bump version to 2.19.0, and set API version to 2.19. - - svn path=/trunk/; revision=6956 - - ChangeLog | 6 ++++++ - configure.ac | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit cc36c80482fff1d4d240e359e571bd3cab6591fa -Author: Christian Persch -Date: Sun Mar 11 19:42:02 2007 +0000 - - Correct FSF address. Bug #409075, patch by John Millikin. - - 2007-03-11 Christian Persch - - * *: - - Correct FSF address. Bug #409075, patch by John Millikin. - - svn path=/trunk/; revision=6952 - - COPYING | 27 ++- - ChangeLog | 6 + - configure.ac | 2 +- - data/epiphany-bookmarks-html.xsl | 2 +- - data/epiphany.m4 | 2 +- - data/epiphany.xhtml | 2 +- - data/generate-font-schemas.py | 2 +- - embed/downloader-view.c | 2 +- - embed/downloader-view.h | 2 +- - embed/ephy-adblock-manager.c | 2 +- - embed/ephy-adblock-manager.h | 2 +- - embed/ephy-adblock.c | 2 +- - embed/ephy-adblock.h | 2 +- - embed/ephy-certificate-manager.c | 2 +- - embed/ephy-certificate-manager.h | 2 +- - embed/ephy-command-manager.c | 2 +- - embed/ephy-command-manager.h | 2 +- - embed/ephy-cookie-manager.c | 2 +- - embed/ephy-cookie-manager.h | 2 +- - embed/ephy-download.c | 2 +- - embed/ephy-download.h | 2 +- - embed/ephy-embed-dialog.c | 2 +- - embed/ephy-embed-dialog.h | 2 +- - embed/ephy-embed-event.c | 2 +- - embed/ephy-embed-event.h | 2 +- - embed/ephy-embed-factory.c | 2 +- - embed/ephy-embed-factory.h | 2 +- - embed/ephy-embed-find.c | 2 +- - embed/ephy-embed-find.h | 2 +- - embed/ephy-embed-persist.c | 2 +- - embed/ephy-embed-persist.h | 2 +- - embed/ephy-embed-shell.c | 2 +- - embed/ephy-embed-shell.h | 2 +- - embed/ephy-embed-single.c | 2 +- - embed/ephy-embed-single.h | 2 +- - embed/ephy-embed.c | 2 +- - embed/ephy-embed.h | 2 +- - embed/ephy-encodings.c | 2 +- - embed/ephy-encodings.h | 2 +- - embed/ephy-favicon-cache.c | 2 +- - embed/ephy-favicon-cache.h | 2 +- - embed/ephy-history.c | 2 +- - embed/ephy-history.h | 2 +- - embed/ephy-password-manager.c | 2 +- - embed/ephy-password-manager.h | 2 +- - embed/ephy-permission-manager.c | 2 +- - embed/ephy-permission-manager.h | 2 +- - embed/ephy-x509-cert.c | 2 +- - embed/ephy-x509-cert.h | 2 +- - embed/mozilla/AutoJSContextStack.cpp | 2 +- - embed/mozilla/AutoJSContextStack.h | 2 +- - embed/mozilla/AutoWindowModalState.cpp | 2 +- - embed/mozilla/AutoWindowModalState.h | 2 +- - embed/mozilla/ContentHandler.cpp | 2 +- - embed/mozilla/ContentHandler.h | 2 +- - embed/mozilla/EphyAboutModule.cpp | 2 +- - embed/mozilla/EphyAboutModule.h | 2 +- - embed/mozilla/EphyBadCertRejector.cpp | 2 +- - embed/mozilla/EphyBadCertRejector.h | 2 +- - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/EphyContentPolicy.cpp | 2 +- - embed/mozilla/EphyContentPolicy.h | 2 +- - embed/mozilla/EphyDirectoryProvider.cpp | 2 +- - embed/mozilla/EphyDirectoryProvider.h | 2 +- - embed/mozilla/EphyFind.cpp | 2 +- - embed/mozilla/EphyFind.h | 2 +- - embed/mozilla/EphyHistoryListener.cpp | 2 +- - embed/mozilla/EphyHistoryListener.h | 2 +- - embed/mozilla/EphyPromptService.cpp | 2 +- - embed/mozilla/EphyPromptService.h | 2 +- - embed/mozilla/EphyRedirectChannel.cpp | 2 +- - embed/mozilla/EphyRedirectChannel.h | 2 +- - embed/mozilla/EphySidebar.cpp | 2 +- - embed/mozilla/EphySidebar.h | 2 +- - embed/mozilla/EphySingle.cpp | 2 +- - embed/mozilla/EphySingle.h | 2 +- - embed/mozilla/EphyUtils.cpp | 2 +- - embed/mozilla/EphyUtils.h | 2 +- - embed/mozilla/EventContext.cpp | 2 +- - embed/mozilla/EventContext.h | 2 +- - embed/mozilla/FilePicker.cpp | 2 +- - embed/mozilla/FilePicker.h | 2 +- - embed/mozilla/GeckoFormSigningDialog.cpp | 2 +- - embed/mozilla/GeckoFormSigningDialog.h | 2 +- - embed/mozilla/GeckoPrintService.cpp | 2 +- - embed/mozilla/GeckoPrintService.h | 2 +- - embed/mozilla/GeckoPrintSession.cpp | 2 +- - embed/mozilla/GeckoPrintSession.h | 2 +- - embed/mozilla/GeckoSpellCheckEngine.cpp | 2 +- - embed/mozilla/GeckoSpellCheckEngine.h | 2 +- - embed/mozilla/GlobalHistory.cpp | 2 +- - embed/mozilla/GlobalHistory.h | 2 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/mozilla/GtkNSSClientAuthDialogs.h | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - embed/mozilla/GtkNSSDialogs.h | 2 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 +- - embed/mozilla/GtkNSSKeyPairDialogs.h | 2 +- - embed/mozilla/MozRegisterComponents.cpp | 2 +- - embed/mozilla/MozRegisterComponents.h | 2 +- - embed/mozilla/mozilla-download.cpp | 2 +- - embed/mozilla/mozilla-download.h | 2 +- - embed/mozilla/mozilla-embed-event.cpp | 2 +- - embed/mozilla/mozilla-embed-event.h | 2 +- - embed/mozilla/mozilla-embed-find.cpp | 2 +- - embed/mozilla/mozilla-embed-find.h | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed-persist.h | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 2 +- - embed/mozilla/mozilla-embed-single.h | 2 +- - embed/mozilla/mozilla-embed.cpp | 2 +- - embed/mozilla/mozilla-embed.h | 2 +- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - embed/mozilla/mozilla-notifiers.h | 2 +- - embed/mozilla/mozilla-x509-cert.cpp | 2 +- - embed/mozilla/mozilla-x509-cert.h | 2 +- - lib/eel-gconf-extensions.c | 4 +- - lib/eel-gconf-extensions.h | 4 +- - lib/egg/egg-editable-toolbar.c | 2 +- - lib/egg/egg-editable-toolbar.h | 2 +- - lib/egg/egg-toolbar-editor.c | 2 +- - lib/egg/egg-toolbar-editor.h | 2 +- - lib/egg/egg-toolbars-model.c | 2 +- - lib/egg/egg-toolbars-model.h | 2 +- - lib/egg/eggtreemultidnd.c | 4 +- - lib/egg/eggtreemultidnd.h | 4 +- - lib/ephy-debug.c | 2 +- - lib/ephy-debug.h | 2 +- - lib/ephy-dialog.c | 2 +- - lib/ephy-dialog.h | 2 +- - lib/ephy-dnd.c | 2 +- - lib/ephy-dnd.h | 2 +- - lib/ephy-file-chooser.c | 2 +- - lib/ephy-file-chooser.h | 2 +- - lib/ephy-file-helpers.c | 2 +- - lib/ephy-file-helpers.h | 2 +- - lib/ephy-glib-compat.h | 2 +- - lib/ephy-gui.c | 2 +- - lib/ephy-gui.h | 2 +- - lib/ephy-langs.c | 2 +- - lib/ephy-langs.h | 2 +- - lib/ephy-loader.c | 2 +- - lib/ephy-loader.h | 2 +- - lib/ephy-module.c | 2 +- - lib/ephy-module.h | 2 +- - lib/ephy-node-common.h | 2 +- - lib/ephy-node-db.c | 2 +- - lib/ephy-node-db.h | 2 +- - lib/ephy-node-filter.c | 2 +- - lib/ephy-node-filter.h | 2 +- - lib/ephy-node.c | 2 +- - lib/ephy-node.h | 2 +- - lib/ephy-object-helpers.c | 2 +- - lib/ephy-object-helpers.h | 2 +- - lib/ephy-password-dialog.c | 2 +- - lib/ephy-password-dialog.h | 2 +- - lib/ephy-prefs.h | 2 +- - lib/ephy-print-utils.c | 2 +- - lib/ephy-print-utils.h | 2 +- - lib/ephy-shlib-loader.c | 2 +- - lib/ephy-shlib-loader.h | 2 +- - lib/ephy-signal-accumulator.c | 2 +- - lib/ephy-signal-accumulator.h | 2 +- - lib/ephy-spell-check.c | 2 +- - lib/ephy-spell-check.h | 2 +- - lib/ephy-state.c | 2 +- - lib/ephy-state.h | 2 +- - lib/ephy-stock-icons.c | 2 +- - lib/ephy-stock-icons.h | 2 +- - lib/ephy-string.c | 2 +- - lib/ephy-string.h | 2 +- - lib/ephy-zoom.c | 2 +- - lib/ephy-zoom.h | 2 +- - lib/widgets/ephy-icon-entry.c | 4 +- - lib/widgets/ephy-icon-entry.h | 4 +- - lib/widgets/ephy-location-entry.c | 2 +- - lib/widgets/ephy-location-entry.h | 2 +- - lib/widgets/ephy-node-view.c | 2 +- - lib/widgets/ephy-node-view.h | 2 +- - lib/widgets/ephy-search-entry.c | 2 +- - lib/widgets/ephy-search-entry.h | 2 +- - lib/widgets/ephy-spinner-tool-item.c | 4 +- - lib/widgets/ephy-spinner-tool-item.h | 4 +- - lib/widgets/ephy-spinner.c | 2 +- - lib/widgets/ephy-spinner.h | 2 +- - lib/widgets/ephy-tree-model-node.c | 2 +- - lib/widgets/ephy-tree-model-node.h | 2 +- - lib/widgets/ephy-tree-model-sort.c | 2 +- - lib/widgets/ephy-tree-model-sort.h | 2 +- - lib/widgets/ephy-zoom-action.c | 2 +- - lib/widgets/ephy-zoom-action.h | 2 +- - lib/widgets/ephy-zoom-control.c | 2 +- - lib/widgets/ephy-zoom-control.h | 2 +- - lib/widgets/testiconentry.c | 2 +- - lib/widgets/testspinner.c | 2 +- - m4/gecko.m4 | 2 +- - plugins/desktop-file/plugin.cpp | 4 +- - po/ar.po | 6 +- - po/be.po | 2 +- - po/bg.po | 2 +- - po/bn.po | 6 +- - po/bn_IN.po | 6 +- - po/ca.po | 4 +- - po/cs.po | 4 +- - po/cy.po | 4 +- - po/da.po | 4 +- - po/de.po | 4 +- - po/dz.po | 4 +- - po/el.po | 6 +- - po/en_CA.po | 4 +- - po/en_GB.po | 4 +- - po/es.po | 4 +- - po/et.po | 6 +- - po/eu.po | 6 +- - po/fa.po | 2 +- - po/fi.po | 6 +- - po/fr.po | 4 +- - po/gl.po | 6 +- - po/gu.po | 4 +- - po/he.po | 4 +- - po/hi.po | 4 +- - po/hu.po | 2 +- - po/id.po | 4 +- - po/ka.po | 6 +- - po/ko.po | 4 +- - po/ku.po | 2 +- - po/lt.po | 4 +- - po/lv.po | 6 +- - po/mg.po | 6 +- - po/mk.po | 6 +- - po/ml.po | 2 +- - po/mn.po | 6 +- - po/mr.po | 2 +- - po/nb.po | 4 +- - po/ne.po | 4 +- - po/nl.po | 6 +- - po/nn.po | 4 +- - po/or.po | 2 +- - po/pa.po | 4 +- - po/pl.po | 6 +- - po/pt.po | 4 +- - po/pt_BR.po | 2 +- - po/ro.po | 4 +- - po/ru.po | 6 +- - po/sl.po | 4 +- - po/sq.po | 4 +- - po/sr.po | 2 +- - po/sr@Latn.po | 2 +- - po/sv.po | 6 +- - po/ta.po | 4 +- - po/th.po | 4 +- - po/tr.po | 6 +- - po/uk.po | 6 +- - po/vi.po | 6 +- - po/zh_CN.po | 6 +- - po/zh_HK.po | 4 +- - po/zh_TW.po | 4 +- - src/bookmarks/ephy-bookmark-action-group.c | 2 +- - src/bookmarks/ephy-bookmark-action-group.h | 2 +- - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/bookmarks/ephy-bookmark-action.h | 2 +- - src/bookmarks/ephy-bookmark-factory-action.c | 2 +- - src/bookmarks/ephy-bookmark-factory-action.h | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmark-properties.h | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.h | 2 +- - src/bookmarks/ephy-bookmarks-export.c | 2 +- - src/bookmarks/ephy-bookmarks-export.h | 2 +- - src/bookmarks/ephy-bookmarks-import.c | 2 +- - src/bookmarks/ephy-bookmarks-import.h | 2 +- - src/bookmarks/ephy-bookmarks-menu.c | 2 +- - src/bookmarks/ephy-bookmarks-menu.h | 2 +- - src/bookmarks/ephy-bookmarks-ui.c | 2 +- - src/bookmarks/ephy-bookmarks-ui.h | 2 +- - src/bookmarks/ephy-bookmarks.c | 2 +- - src/bookmarks/ephy-bookmarks.h | 2 +- - src/bookmarks/ephy-nodes-cover.c | 2 +- - src/bookmarks/ephy-nodes-cover.h | 2 +- - src/bookmarks/ephy-open-tabs-action.c | 2 +- - src/bookmarks/ephy-open-tabs-action.h | 2 +- - src/bookmarks/ephy-related-action.c | 2 +- - src/bookmarks/ephy-related-action.h | 2 +- - src/bookmarks/ephy-topic-action-group.c | 2 +- - src/bookmarks/ephy-topic-action-group.h | 2 +- - src/bookmarks/ephy-topic-action.c | 2 +- - src/bookmarks/ephy-topic-action.h | 2 +- - src/bookmarks/ephy-topic-factory-action.c | 2 +- - src/bookmarks/ephy-topic-factory-action.h | 2 +- - src/bookmarks/ephy-topics-entry.c | 2 +- - src/bookmarks/ephy-topics-entry.h | 2 +- - src/bookmarks/ephy-topics-palette.c | 2 +- - src/bookmarks/ephy-topics-palette.h | 2 +- - src/ephy-action-helper.c | 2 +- - src/ephy-action-helper.h | 2 +- - src/ephy-activation.c | 2 +- - src/ephy-activation.h | 2 +- - src/ephy-automation.c | 2 +- - src/ephy-cert-manager-dialog.c | 2 +- - src/ephy-cert-manager-dialog.h | 2 +- - src/ephy-completion-model.c | 2 +- - src/ephy-completion-model.h | 2 +- - src/ephy-dbus.c | 2 +- - src/ephy-dbus.h | 2 +- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-encoding-dialog.h | 2 +- - src/ephy-encoding-menu.c | 2 +- - src/ephy-encoding-menu.h | 2 +- - src/ephy-extension.c | 2 +- - src/ephy-extension.h | 2 +- - src/ephy-extensions-manager.c | 2 +- - src/ephy-extensions-manager.h | 2 +- - src/ephy-find-toolbar.c | 2 +- - src/ephy-find-toolbar.h | 2 +- - src/ephy-fullscreen-popup.c | 2 +- - src/ephy-fullscreen-popup.h | 2 +- - src/ephy-go-action.c | 2 +- - src/ephy-go-action.h | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-history-window.h | 2 +- - src/ephy-home-action.c | 2 +- - src/ephy-home-action.h | 2 +- - src/ephy-link-action.c | 2 +- - src/ephy-link-action.h | 2 +- - src/ephy-link.c | 270 +++++++++++++-------------- - src/ephy-link.h | 144 +++++++------- - src/ephy-location-action.c | 2 +- - src/ephy-location-action.h | 2 +- - src/ephy-lockdown.c | 2 +- - src/ephy-lockdown.h | 2 +- - src/ephy-main.c | 2 +- - src/ephy-navigation-action.c | 2 +- - src/ephy-navigation-action.h | 2 +- - src/ephy-net-monitor.c | 2 +- - src/ephy-net-monitor.h | 2 +- - src/ephy-notebook.c | 2 +- - src/ephy-notebook.h | 2 +- - src/ephy-python-extension.c | 2 +- - src/ephy-python-extension.h | 2 +- - src/ephy-python-loader.c | 2 +- - src/ephy-python-loader.h | 2 +- - src/ephy-python.c | 2 +- - src/ephy-python.h | 2 +- - src/ephy-session.c | 2 +- - src/ephy-session.h | 2 +- - src/ephy-shell.c | 2 +- - src/ephy-shell.h | 2 +- - src/ephy-statusbar.c | 2 +- - src/ephy-statusbar.h | 2 +- - src/ephy-tab.c | 2 +- - src/ephy-tab.h | 2 +- - src/ephy-tabs-menu.c | 2 +- - src/ephy-tabs-menu.h | 2 +- - src/ephy-toolbar-editor.c | 2 +- - src/ephy-toolbar-editor.h | 2 +- - src/ephy-toolbar.c | 2 +- - src/ephy-toolbar.h | 2 +- - src/ephy-toolbars-model.c | 2 +- - src/ephy-toolbars-model.h | 2 +- - src/ephy-window.c | 2 +- - src/ephy-window.h | 2 +- - src/epiphany.override | 2 +- - src/languages.h | 2 +- - src/pdm-dialog.c | 2 +- - src/pdm-dialog.h | 2 +- - src/popup-commands.c | 2 +- - src/popup-commands.h | 2 +- - src/ppview-toolbar.c | 2 +- - src/ppview-toolbar.h | 2 +- - src/prefs-dialog.c | 2 +- - src/prefs-dialog.h | 2 +- - src/window-commands.c | 4 +- - src/window-commands.h | 2 +- - 374 files changed, 676 insertions(+), 671 deletions(-) - -commit 76a1574d996ae9df4d9bd19f32c511f724700070 -Author: Christian Persch -Date: Sun Mar 11 19:37:24 2007 +0000 - - Post-release version bump. - - 2007-03-11 Christian Persch - - * configure.ac: - - Post-release version bump. - - svn path=/trunk/; revision=6951 - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b69da8ff13a296960e4c1ae2ab05d3584d98238f -Author: Christian Persch -Date: Sun Mar 11 19:35:54 2007 +0000 - - === Release 2.18.0 === - - 2007-03-11 Christian Persch - - === Release 2.18.0 === - - svn path=/trunk/; revision=6950 - - ChangeLog | 4 ++++ - doc/reference/tmpl/ephy-embed.sgml | 1 - - 2 files changed, 4 insertions(+), 1 deletion(-) - -commit a8caa3ef406a529f4465c4ec68b559fb478a9807 -Author: Christian Persch -Date: Sun Mar 11 14:25:19 2007 +0000 - - Set version to 2.18.0. - - 2007-03-11 Christian Persch - - * configure.ac: - - Set version to 2.18.0. - - svn path=/trunk/; revision=6949 - - ChangeLog | 6 ++++++ - configure.ac | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 0e02c5634ef164296f6bf451ae2b35181a787989 -Author: Christian Persch -Date: Sun Mar 11 13:19:16 2007 +0000 - - Regenerate the type builtins when the Makefile changes. Should fix bug - - 2007-03-11 Christian Persch - - * embed/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - Regenerate the type builtins when the Makefile changes. Should fix bug - #416994; no code freeze break since it's only fixing a build problem. - - svn path=/trunk/; revision=6948 - - ChangeLog | 11 +++++++++++ - embed/Makefile.am | 12 ++++++------ - lib/Makefile.am | 12 ++++++------ - lib/egg/Makefile.am | 12 ++++++------ - src/Makefile.am | 12 ++++++------ - src/bookmarks/Makefile.am | 12 ++++++------ - 6 files changed, 41 insertions(+), 30 deletions(-) - -commit aceda79d5059f2e3368415e3e6fc02e885cc7ccf -Author: Takeshi AIHANA -Date: Sat Mar 10 10:01:45 2007 +0000 - - Updated Japanese translation. - - 2007-03-10 Takeshi AIHANA - - * ja.po: Updated Japanese translation. - - svn path=/trunk/; revision=6946 - - po/ChangeLog | 4 + - po/ja.po | 1265 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 607 insertions(+), 662 deletions(-) - -commit b2aa2d79c89fd3feeb0cb4ea0647fc1d2b7ba943 -Author: Pema Geyleg -Date: Thu Mar 8 04:30:30 2007 +0000 - - Corrected Dzongkha Translation(Bug:400823) - - svn path=/trunk/; revision=6945 - - po/ChangeLog | 4 ++++ - po/dz.po | 8 ++++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit ec78fba692d83a099c4d6b4c4c1b74420890cfc6 -Author: Christian Kirbach -Date: Wed Mar 7 22:59:03 2007 +0000 - - "Application" is not a valid category in the freedesktop specification. - - - * 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 - - ChangeLog | 7 +++++++ - data/bme.desktop.in.in | 2 +- - data/epiphany.desktop.in.in | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit c75ec36be89aeeaec02c15449f2e9372c598c902 -Author: Goran Rakic -Date: Tue Mar 6 00:19:39 2007 +0000 - - Updated Serbian translation - - svn path=/trunk/; revision=6943 - - po/ChangeLog | 4 + - po/sr.po | 2495 ++++++++++++++++++++++++++++++++------------------------- - po/sr@Latn.po | 2493 +++++++++++++++++++++++++++++++------------------------- - 3 files changed, 2796 insertions(+), 2196 deletions(-) - -commit 161c4dce3ba935345f2f8afc22741534e7a58ee1 -Author: Nikos Charonitakis -Date: Mon Mar 5 21:16:40 2007 +0000 - - Updated translation - - svn path=/trunk/; revision=6942 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 30de25168e797e9944278c14f95d84b940b8e556 -Author: Nikos Charonitakis -Date: Mon Mar 5 21:13:14 2007 +0000 - - Updated Greek translation - - svn path=/trunk/; revision=6941 - - po/el.po | 1325 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 683 insertions(+), 642 deletions(-) - -commit 9a2e625a9f70d5a1826a68b5c0b1f72c7971d7ad -Author: Christian Persch -Date: Mon Mar 5 19:17:20 2007 +0000 - - Don't use C++-style comments in C files. No code changes, only comments - - 2007-03-05 Christian Persch - - * lib/ephy-password-dialog.c: (update_capslock_warning), - (ephy_password_dialog_constructor), - (ephy_password_dialog_finalize), (ephy_password_dialog_class_init): - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_updated): - * src/ephy-cert-manager-dialog.c: - (certs_manager_dialog_remove_button_clicked_cb), - (certs_manager_dialog_finalize): - * src/ephy-find-toolbar.c: (ephy_find_toolbar_init): - * src/ephy-main.c: (unref_proxy_reply_cb): - - Don't use C++-style comments in C files. No code changes, only - comments changed. Bug #414706, patch by John Millikin. - - svn path=/trunk/; revision=6940 - - lib/ephy-password-dialog.c | 37 ++++++++++++++++++++++-------------- - src/bookmarks/ephy-bookmark-action.c | 6 +++--- - src/ephy-cert-manager-dialog.c | 8 +++++--- - src/ephy-find-toolbar.c | 2 +- - src/ephy-main.c | 4 ++-- - 5 files changed, 34 insertions(+), 23 deletions(-) - -commit e6102a083736dd6429f553647b1d432e11a30a44 -Author: Amanpreet Singh Alam -Date: Mon Mar 5 18:02:59 2007 +0000 - - updating for Punjabi by alam - - svn path=/trunk/; revision=6939 - - po/pa.po | 2595 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1376 insertions(+), 1219 deletions(-) - -commit 277624fcb0e79edb4c4dfb07d6fa35f7a97467b6 -Author: Gintautas Miliauskas -Date: Sun Mar 4 20:50:14 2007 +0000 - - Updated Lithuanian translation. - - 2007-03-04 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - - - - svn path=/trunk/; revision=6938 - - po/ChangeLog | 4 ++++ - po/lt.po | 73 ++++++++++++++++++++++-------------------------------------- - 2 files changed, 30 insertions(+), 47 deletions(-) - -commit 95091cf6e86c44ac96703bae3cbacd92aee53d80 -Author: Erdal Ronahi -Date: Sun Mar 4 15:57:31 2007 +0000 - - Updated Kurdish translation, fixing bug #400825 - - svn path=/trunk/; revision=6937 - - po/ku.po | 24 ++++++++++++------------ - 1 file changed, 12 insertions(+), 12 deletions(-) - -commit 68fe5dcec691aa13dbc7ee5fa8768c11cfa6cc53 -Author: Christian Persch -Date: Sun Mar 4 14:45:24 2007 +0000 - - Don't crash when we cannot access the system bus. Bug #404514, patch by - - 2007-03-04 Christian Persch - - * src/ephy-net-monitor.c: (ephy_net_monitor_check_network), - (ephy_net_monitor_startup): - - Don't crash when we cannot access the system bus. Bug #404514, patch - by Jan de Groot. - - svn path=/trunk/; revision=6935 - - ChangeLog | 8 ++++++++ - src/ephy-net-monitor.c | 17 +++++++++++------ - 2 files changed, 19 insertions(+), 6 deletions(-) - -commit 6c82a6f714fd2ddc08a37778a0aac7a6e2b9bbbe -Author: Christian Persch -Date: Sat Mar 3 22:21:26 2007 +0000 - - Make sure the type builtins are regenerated when the Makefile changes. - - 2007-03-03 Christian Persch - - * embed/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: Make sure the type builtins are - regenerated when the Makefile changes. - - svn path=/trunk/; revision=6934 - - ChangeLog | 9 +++++++++ - embed/Makefile.am | 4 ++-- - lib/Makefile.am | 4 ++-- - lib/egg/Makefile.am | 4 ++-- - src/Makefile.am | 4 ++-- - src/bookmarks/Makefile.am | 4 ++-- - 6 files changed, 19 insertions(+), 10 deletions(-) - -commit 55939b23dc9bd21e93f07916239fb65fde218314 -Author: Artur Flinta -Date: Sat Mar 3 19:11:28 2007 +0000 - - Updated Polish translation by GNOME PL Team. - - 2007-03-03 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - - svn path=/trunk/; revision=6933 - - po/ChangeLog | 4 + - po/pl.po | 1335 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 694 insertions(+), 645 deletions(-) - -commit 648e7e14d1c20886d8428115ed596df81ef7a50f -Author: Jovan Naumovski -Date: Sat Mar 3 00:50:16 2007 +0000 - - 2007-03-03 Jovan Naumovski *mk.po: Updated Macedonian translation. - - svn path=/trunk/; revision=6932 - - po/ChangeLog | 4 + - po/mk.po | 1289 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 650 insertions(+), 643 deletions(-) - -commit f0fbbefd8192d3fce4023ebdbe67ac897d7fde17 -Author: Benjamin Berg -Date: Fri Mar 2 23:35:44 2007 +0000 - - Move ephy-adblock.* to embed. Change the API to pass EphyEmbed to - - 2007-03-03 Benjamin Berg - - * embed/Makefile.am: - * embed/ephy-adblock-manager.c: (ephy_adblock_manager_should_load): - * embed/ephy-adblock-manager.h: - * embed/ephy-adblock.c: (ephy_adblock_should_load): - * embed/ephy-adblock.h: - * embed/mozilla/EphyContentPolicy.cpp: - * lib/Makefile.am: - * lib/ephy-adblock.c: - * lib/ephy-adblock.h: - - Move ephy-adblock.* to embed. Change the API to pass EphyEmbed to - should_load. This is needed to fix bug #348331. - - svn path=/trunk/; revision=6931 - - ChangeLog | 15 +++++++ - embed/Makefile.am | 2 + - embed/ephy-adblock-manager.c | 2 + - embed/ephy-adblock-manager.h | 2 + - embed/ephy-adblock.c | 75 +++++++++++++++++++++++++++++++ - embed/ephy-adblock.h | 90 +++++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyContentPolicy.cpp | 19 ++++---- - lib/Makefile.am | 3 -- - lib/ephy-adblock.c | 73 ------------------------------ - lib/ephy-adblock.h | 87 ----------------------------------- - 10 files changed, 196 insertions(+), 172 deletions(-) - -commit e6f2af1ed2c57cc3cce5df8f234a4c242c4aac82 -Author: Christian Persch -Date: Thu Mar 1 22:59:02 2007 +0000 - - Add .bz2. - - 2007-03-02 Christian Persch - - * data/mime-types-permissions.xml: - - Add .bz2. - - svn path=/trunk/; revision=6929 - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit 289b954654d234b0ce019866bd82c22e4d3516ba -Author: Ankitkumar Rameshchandra Patel -Date: Thu Mar 1 15:58:25 2007 +0000 - - Updated Translation - - svn path=/trunk/; revision=6928 - - po/ChangeLog | 4 + - po/gu.po | 1310 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 659 insertions(+), 655 deletions(-) - -commit 9d5b78b14ccfe1c2acb016b7abefb1c37f6bb634 -Author: Changwoo Ryu -Date: Thu Mar 1 00:59:56 2007 +0000 - - Updated Korean translation. - - 2007-03-01 Changwoo Ryu - - * ko.po: Updated Korean translation. - - svn path=/trunk/; revision=6927 - - po/ChangeLog | 4 ++++ - po/ko.po | 29 ++++++++++++++--------------- - 2 files changed, 18 insertions(+), 15 deletions(-) - -commit 3a7e1b55a235634b8ea7de08d24ae8a82723326c -Author: Matic Žgur -Date: Wed Feb 28 22:35:42 2007 +0000 - - Updated Slovenian translation. - - svn path=/trunk/; revision=6926 - - po/ChangeLog | 4 +++ - po/sl.po | 105 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 60 insertions(+), 49 deletions(-) - -commit 159c3cc2dd74f8697428d3c1492c5b4b7b4cb95d -Author: Kwok-Koon Cheung -Date: Tue Feb 27 17:47:51 2007 +0000 - - Updated traditional Chinese translation - - svn path=/trunk/; revision=6925 - - po/ChangeLog | 5 + - po/zh_HK.po | 1672 +++++++++++++++++++++++++++++----------------------------- - po/zh_TW.po | 1528 +++++++++++++++++++++++++++-------------------------- - 3 files changed, 1624 insertions(+), 1581 deletions(-) - -commit a16df5f3cfa4edcf56fb440e2bbef2c9bc8c6f22 -Author: Gintautas Miliauskas -Date: Tue Feb 27 14:38:34 2007 +0000 - - Updated Lithuanian translation. - - 2007-02-27 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - - - svn path=/trunk/; revision=6924 - - po/ChangeLog | 4 ++ - po/lt.po | 194 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 105 insertions(+), 93 deletions(-) - -commit de60c35c265045358bc14d388ff8d4fdb8007f88 -Author: Christian Persch -Date: Mon Feb 26 20:14:21 2007 +0000 - - === Release 2.17.92 == - - 2007-02-26 Christian Persch - - === Release 2.17.92 == - - * configure.ac: - - svn path=/trunk/; revision=6923 - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 16209dbae9191c64a51b8216fe7a3834e5183e77 -Author: Jakub Friedl -Date: Mon Feb 26 13:45:18 2007 +0000 - - Update Czech translation. - - 2007-02-26 Jakub Friedl - - * cs.po: Update Czech translation. - - - svn path=/trunk/; revision=6921 - - po/ChangeLog | 4 ++++ - po/cs.po | 15 +++++++-------- - 2 files changed, 11 insertions(+), 8 deletions(-) - -commit bad38d08d2231ca7598d25f92b493c19703c8021 -Author: Josep Puigdemont i Casamajó -Date: Sun Feb 25 18:40:48 2007 +0000 - - Updated Catalan translation by Gil Forcada. - - svn path=/trunk/; revision=6920 - - po/ChangeLog | 7 +- - po/ca.po | 1452 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 754 insertions(+), 705 deletions(-) - -commit 73b74ed329fdc0a8464c648415361ef681c0b720 -Author: Gabor Kelemen -Date: Sat Feb 24 21:06:55 2007 +0000 - - Translation updated. - - 2007-02-24 Gabor Kelemen - - * hu.po: Translation updated. - - svn path=/trunk/; revision=6919 - - po/ChangeLog | 4 +++ - po/hu.po | 107 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 59 insertions(+), 52 deletions(-) - -commit 5e25295873da8d8d67e887b780d4ffc738771e41 -Author: Nguyen Thai Ngoc Duy -Date: Sat Feb 24 08:43:31 2007 +0000 - - updated vi.po - - svn path=/trunk/; revision=6918 - - po/ChangeLog | 5 +++ - po/vi.po | 116 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 63 insertions(+), 58 deletions(-) - -commit 304504a7f9ba9aa97cabe134c2850beaaa1b8a89 -Author: Kjartan Maraas -Date: Fri Feb 23 20:20:16 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-02-23 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=6917 - - po/ChangeLog | 4 ++++ - po/nb.po | 21 ++++++--------------- - 2 files changed, 10 insertions(+), 15 deletions(-) - -commit 34666b847a89acd214f026744e5ff6efb42b1fdc -Author: Christian Persch -Date: Fri Feb 23 14:21:53 2007 +0000 - - What's this? Another mozilla API change! - - 2007-02-23 Christian Persch - - * embed/mozilla/EphyFind.cpp: - * embed/mozilla/EphyFind.h: - - What's this? Another mozilla API change! - - svn path=/trunk/; revision=6916 - - ChangeLog | 7 +++++++ - embed/mozilla/EphyFind.cpp | 7 +------ - embed/mozilla/EphyFind.h | 1 - - 3 files changed, 8 insertions(+), 7 deletions(-) - -commit 1d25a1cd101ad3459032774ee60e0c74f86fa3d5 -Author: Maxim Dziumanenko -Date: Thu Feb 22 14:05:38 2007 +0000 - - Update Ukrainian translation. - - 2007-02-22 Maxim Dziumanenko - - * Update Ukrainian translation. - - - svn path=/trunk/; revision=6915 - - po/ChangeLog | 4 + - po/uk.po | 1429 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 684 insertions(+), 749 deletions(-) - -commit aea2405c3f85702a764ca30af950ee7c0c3b22cb -Author: Kwok-Koon Cheung -Date: Thu Feb 22 04:08:03 2007 +0000 - - Help Funda Wang committing zh_CN translation - - svn path=/trunk/; revision=6914 - - po/ChangeLog | 5 + - po/zh_CN.po | 1267 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 641 insertions(+), 631 deletions(-) - -commit 96ac1a76e4646e5483725b57557635dd978ae120 -Author: Hendrik Richter -Date: Wed Feb 21 11:45:10 2007 +0000 - - Updated German translation. - - 2007-02-21 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=6913 - - po/ChangeLog | 4 ++++ - po/de.po | 41 +++++++++++++++++++++-------------------- - 2 files changed, 25 insertions(+), 20 deletions(-) - -commit 14858c182971d8b8771ad0a41559b0ea344d2b00 -Author: Roberto Majadas -Date: Wed Feb 21 08:34:41 2007 +0000 - - updated spanish translation - - - svn path=/trunk/; revision=6912 - - po/ChangeLog | 4 + - po/es.po | 1063 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 549 insertions(+), 518 deletions(-) - -commit c9eb993fa24a63316e64ab699161001328ed5bc4 -Author: Nguyen Thai Ngoc Duy -Date: Mon Feb 19 08:45:06 2007 +0000 - - updated vi.po - - svn path=/trunk/; revision=6911 - - po/ChangeLog | 4 + - po/vi.po | 881 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 456 insertions(+), 429 deletions(-) - -commit 4df3ba4ca1b72627ef103898ab69768ed7bacf4b -Author: Leonardo Ferreira Fontenelle -Date: Sat Feb 17 21:49:10 2007 +0000 - - Updated Brazilian Portuguese translation. - - 2007-02-17 Leonardo Ferreira Fontenelle - - * pt_BR.po: Updated Brazilian Portuguese translation. - - svn path=/trunk/; revision=6910 - - po/ChangeLog | 4 + - po/pt_BR.po | 1323 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 685 insertions(+), 642 deletions(-) - -commit f134d5d8d7dbda1defe10a0b7c33cddb3fde7e8a -Author: Kjartan Maraas -Date: Sat Feb 17 13:36:16 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-02-17 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=6909 - - po/ChangeLog | 4 +++ - po/nb.po | 110 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 64 insertions(+), 50 deletions(-) - -commit c5dece03dd6af9aa34c960cc3990c0b401a4a6f2 -Author: Christian Persch -Date: Mon Feb 12 19:17:54 2007 +0000 - - Post-release version bump. - - 2007-02-12 Christian Persch - - * configure.ac: - - Post-release version bump. - - svn path=/trunk/; revision=6906 - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 78af3f21eef420fa3d6c850fb87ff5e92d5efb26 -Author: Christian Persch -Date: Mon Feb 12 19:16:53 2007 +0000 - - === Release 2.17.91 === - - 2007-02-12 Christian Persch - - === Release 2.17.91 === - - * configure.ac: - * data/mime-types-permissions.xml: - - svn path=/trunk/; revision=6904 - - ChangeLog | 7 +++++++ - configure.ac | 3 ++- - data/mime-types-permissions.xml | 1 + - embed/mozilla/ContentHandler.cpp | 1 + - embed/mozilla/GeckoPrintSession.cpp | 2 +- - 5 files changed, 12 insertions(+), 2 deletions(-) - -commit 5e60306f7024b5f8fcde62753acd94510863fa13 -Author: Reinout van Schouwen -Date: Mon Feb 12 01:14:45 2007 +0000 - - Updated Dutch translation - - 2007-01-11 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=6903 - - po/ChangeLog | 64 ++++++++++++++-------------- - po/nl.po | 133 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 104 insertions(+), 93 deletions(-) - -commit e7c91646f8a815581ac9537b6837b8ec1e3d5856 -Author: Alexander Shopov -Date: Sun Feb 11 12:13:41 2007 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2007-02-11 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - svn path=/trunk/; revision=6902 - - po/ChangeLog | 5 + - po/bg.po | 1365 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 689 insertions(+), 681 deletions(-) - -commit 49adec18c08d37f8a548230116f0f5e15563adae -Author: Changwoo Ryu -Date: Sun Feb 11 08:27:25 2007 +0000 - - Updated Korean translation by Young-Ho Cha. - - 2007-02-11 Changwoo Ryu - - * ko.po: Updated Korean translation by Young-Ho Cha. - - svn path=/trunk/; revision=6901 - - po/ChangeLog | 4 + - po/ko.po | 1407 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 678 insertions(+), 733 deletions(-) - -commit 6e485f7f5a69c7b2912c97878fd9dea09f733a43 -Author: Nickolay V. Shmyrev -Date: Sat Feb 10 19:10:01 2007 +0000 - - Updated Russian translation. - - 2007-02-10 Nickolay V. Shmyrev - - * ru.po: Updated Russian translation. - - - svn path=/trunk/; revision=6900 - - po/ChangeLog | 4 + - po/ru.po | 1063 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 556 insertions(+), 511 deletions(-) - -commit 8d41fc73f85901e48c72da7db2c52dee52f398d1 -Author: Duarte Loreto -Date: Sat Feb 10 14:21:10 2007 +0000 - - Updated Portuguese translation. - - 2007-02-10 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - svn path=/trunk/; revision=6899 - - po/ChangeLog | 4 + - po/pt.po | 1393 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 720 insertions(+), 677 deletions(-) - -commit 3e1cc0e1a2520f5fb4013a7500e06fad9b1cf128 -Author: David Lodge -Date: Fri Feb 9 11:53:00 2007 +0000 - - Updated (British) English translation - - svn path=/trunk/; revision=6898 - - help/ChangeLog | 5 + - help/Makefile.am | 2 +- - help/en_GB/en_GB.po | 1953 +++++++++++++++++++++++++++++++++++++++++++++++++++ - po/ChangeLog | 4 + - po/en_GB.po | 122 ++-- - 5 files changed, 2027 insertions(+), 59 deletions(-) - -commit fdc13875c0bbefab290013f1a254c315c9254af6 -Author: Jean-François Rameau -Date: Thu Feb 8 22:05:51 2007 +0000 - - Fix a g_free on static string. Also fix a leak. - - 2007-02-08 Jean-François Rameau - - * embed/mozilla/EphyAboutModule.cpp: - (GetErrorMessage),(CreateErrorPage): - - Fix a g_free on static string. Also fix a leak. - - svn path=/trunk/; revision=6897 - - ChangeLog | 7 ++++++ - embed/mozilla/EphyAboutModule.cpp | 47 ++++++++++++++++++++------------------- - 2 files changed, 31 insertions(+), 23 deletions(-) - -commit 12bb8c8951c481122d1bcbb5762413ba67814319 -Author: Djihed Afifi -Date: Thu Feb 8 19:46:36 2007 +0000 - - Updated Arabic Translation. - - svn path=/trunk/; revision=6896 - - po/ChangeLog | 4 ++ - po/ar.po | 119 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 64 insertions(+), 59 deletions(-) - -commit 22536f5f49721215d1cac8a97cb90b2b81d48449 -Author: Christian Persch -Date: Thu Feb 8 16:55:11 2007 +0000 - - Guess what? Another mozilla API change! - - 2007-02-08 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Guess what? Another mozilla API change! - - svn path=/trunk/; revision=6895 - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 14 ++++++++++++++ - 2 files changed, 20 insertions(+) - -commit 6288e2046e60a3010c84cea478452cc22905d9e6 -Author: Christian Persch -Date: Wed Feb 7 17:44:09 2007 +0000 - - Set the new pwdmgr pref. - - 2007-02-07 Christian Persch - - * data/default-prefs-common.js: - - Set the new pwdmgr pref. - - svn path=/trunk/; revision=6893 - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 1 + - 2 files changed, 7 insertions(+) - -commit 409f123b0a2ab7bdedf93f2507951d40001396a9 -Author: Daniel Nylander -Date: Tue Feb 6 22:42:59 2007 +0000 - - sv/sv.po: Swedish translation updated - - svn path=/trunk/; revision=6891 - - help/ChangeLog | 4 ++ - help/sv/sv.po | 190 ++++++++++++++++++++++++++++----------------------------- - 2 files changed, 99 insertions(+), 95 deletions(-) - -commit 227ff74656bd5c019824a648bce86e7857dc112c -Author: Daniel Nylander -Date: Tue Feb 6 22:42:12 2007 +0000 - - sv.po: Swedish translation updated - - svn path=/trunk/; revision=6890 - - po/ChangeLog | 4 ++++ - po/sv.po | 51 ++++++++++++++++++++++++++------------------------- - 2 files changed, 30 insertions(+), 25 deletions(-) - -commit ffc8d603166b4173dc5d99939e89a76c1857f337 -Author: Stéphane Raimbault -Date: Mon Feb 5 19:33:36 2007 +0000 - - Updated French translation by Jonathan Ernst. - - 2007-02-05 Stéphane Raimbault - - * fr.po: Updated French translation by Jonathan Ernst. - - svn path=/trunk/; revision=6889 - - po/ChangeLog | 4 ++++ - po/fr.po | 20 +++++++++++--------- - 2 files changed, 15 insertions(+), 9 deletions(-) - -commit 9161eb72041d4ead82fc59451cf1bbe50517d217 -Author: Priit Laes -Date: Mon Feb 5 19:01:28 2007 +0000 - - Updated Estonian translation by Ivar Smolin . - - 2007-02-05 Priit Laes - - * et.po: Updated Estonian translation by Ivar Smolin . - - svn path=/trunk/; revision=6888 - - po/ChangeLog | 4 ++++ - po/et.po | 14 +++++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit d2ac66a3f97fde3317daa80f0cf5e179fd949d26 -Author: Ilkka Tuohela -Date: Sat Feb 3 13:55:08 2007 +0000 - - Updated Finnish translation - - svn path=/trunk/; revision=6887 - - po/ChangeLog | 4 + - po/fi.po | 1106 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 578 insertions(+), 532 deletions(-) - -commit a25e2db283a2cc4c7735c678021243379431dee1 -Author: Christian Persch -Date: Fri Feb 2 12:35:06 2007 +0000 - - More mime types. - - 2007-02-02 Christian Persch - - * data/mime-types-permissions.xml: - - More mime types. - - svn path=/trunk/; revision=6885 - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 2 ++ - 2 files changed, 8 insertions(+) - -commit 26ef97bd643231f6e0bd6d755d402911d721315c -Author: Christian Persch -Date: Fri Feb 2 12:25:31 2007 +0000 - - More mime types. - - 2007-02-02 Christian Persch - - * data/mime-types-permissions.xml: - - More mime types. - - svn path=/trunk/; revision=6883 - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit 6027cd439e5f84539cda6362988e919b82d8e4a2 -Author: Stéphane Raimbault -Date: Thu Feb 1 21:43:41 2007 +0000 - - Fix translation (see #340820). - - 2007-02-01 Stéphane Raimbault - - * fr.po: Fix translation (see #340820). - - svn path=/trunk/; revision=6882 - - po/ChangeLog | 4 ++++ - po/fr.po | 13 ++++++------- - 2 files changed, 10 insertions(+), 7 deletions(-) - -commit 3b86b7220edc56970046184c3300289693c08ffa -Author: Stéphane Raimbault -Date: Tue Jan 30 20:34:02 2007 +0000 - - Updated French translation by Robert-André Mauchin. - - 2007-01-30 Stéphane Raimbault - - * fr.po: Updated French translation by Robert-André Mauchin. - - svn path=/trunk/; revision=6881 - - po/ChangeLog | 4 + - po/fr.po | 1291 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 650 insertions(+), 645 deletions(-) - -commit 0251f9f86f17a28ae9b7e4cb6dcfb0bd153114d6 -Author: Jakub Friedl -Date: Tue Jan 30 14:16:15 2007 +0000 - - Updated Czech translation. - - 2007-01-30 Jakub Friedl - - * cs.po: Updated Czech translation. - - - svn path=/trunk/; revision=6880 - - po/ChangeLog | 4 +++ - po/cs.po | 102 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 56 insertions(+), 50 deletions(-) - -commit bbe635c36eba3e79faadd3ce0889a489ed85fa46 -Author: Christian Persch -Date: Tue Jan 30 12:04:57 2007 +0000 - - Add video/x-theora+ogg to list of known mime types. - - 2007-01-30 Christian Persch - - * data/mime-types-permissions.xml: - - Add video/x-theora+ogg to list of known mime types. - - svn path=/trunk/; revision=6878 - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit 455cd8aedb9473799232876dd4d0bed9de6d1220 -Author: Luca Ferretti -Date: Tue Jan 30 09:34:28 2007 +0000 - - Updated Italian translation (me and Silvio Pierro) Add missing screenshots - - 2007-01-30 Luca Ferretti - - * it/it.po: Updated Italian translation (me and Silvio Pierro) - * it/figures/*png: Add missing screenshots and update existing. - - - svn path=/trunk/; revision=6877 - - help/ChangeLog | 5 + - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 3809 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 1600 bytes - help/it/figures/ephy-history-window-screenshot.png | Bin 0 -> 35515 bytes - help/it/figures/ephy-screenshot.png | Bin 61346 -> 66949 bytes - help/it/it.po | 2608 ++++++++------------ - 6 files changed, 1029 insertions(+), 1584 deletions(-) - -commit 9d4da5444797d0839c6a5afc400308867f428133 -Author: Daniel Nylander -Date: Mon Jan 29 23:07:31 2007 +0000 - - Updated Swedish translation. - - * sv/sv.po: Updated Swedish translation. - - - svn path=/trunk/; revision=6876 - - help/ChangeLog | 4 + - help/sv/sv.po | 1559 ++++++++++++++++++++++++++++---------------------------- - 2 files changed, 781 insertions(+), 782 deletions(-) - -commit c1f6495680fad1ae71c10d29e50090f84aa7053f -Author: Daniel Nylander -Date: Mon Jan 29 23:06:21 2007 +0000 - - sv.po: Swedish translation updated - - svn path=/trunk/; revision=6875 - - po/sv.po | 1013 +++++++++++++++++++++++++++++++++++++++++++++----------------- - 1 file changed, 741 insertions(+), 272 deletions(-) - -commit 8914d6a04678dd905163c7f39e959b20588a200f -Author: Theppitak Karoonboonyanan -Date: Mon Jan 29 13:40:44 2007 +0000 - - Updated Thai translation. - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=6871 - - po/ChangeLog | 4 ++++ - po/th.po | 30 +++++++++++++++--------------- - 2 files changed, 19 insertions(+), 15 deletions(-) - -commit 85151b3f7a707ce606659750f66c1dcc73689fc9 -Author: Christian Persch -Date: Sun Jan 28 20:34:05 2007 +0000 - - Make this a regular check, not g_return_if_fail. - - 2007-01-28 Christian Persch - - * src/ephy-tabs-menu.c: (sync_active_tab): - - Make this a regular check, not g_return_if_fail. - - svn path=/trunk/; revision=6866 - - ChangeLog | 6 ++++++ - src/ephy-tabs-menu.c | 4 +--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit b78dc365fa09e15f41357d177b02ae903ebabaa8 -Author: Christian Persch -Date: Sun Jan 28 20:32:23 2007 +0000 - - Set bidi caret movement pref to mimick gtk widgets. - - 2007-01-28 Christian Persch - - * data/default-prefs-common.js: - - Set bidi caret movement pref to mimick gtk widgets. - - svn path=/trunk/; revision=6864 - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 11 +++++++++++ - 2 files changed, 17 insertions(+) - -commit 91c584832a6703fc1435922117bc0e9f6d9b1c1c -Author: Christian Persch -Date: Sun Jan 28 20:31:13 2007 +0000 - - Fix error condition check. - - 2007-01-28 Christian Persch - - * src/ephy-dbus.c: (ephy_dbus_connect_to_session_bus): - - Fix error condition check. - - svn path=/trunk/; revision=6862 - - ChangeLog | 6 ++++++ - src/ephy-dbus.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 2016fd2956a57771102bda6bcc85972110c47e43 -Author: Christian Persch -Date: Sun Jan 28 20:29:58 2007 +0000 - - Add more mime types. - - 2007-01-28 Christian Persch - - * data/mime-types-permissions.xml: - - Add more mime types. - - svn path=/trunk/; revision=6860 - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit 3f24206e2a2dcf6e2bf333732403097a9aca5263 -Author: Christian Persch -Date: Sun Jan 28 20:29:23 2007 +0000 - - Convert EphyNode to use GSlice. - - 2007-01-28 Christian Persch - - * lib/ephy-node.c: (destroy_signal_data), (node_parent_free), - (ephy_node_destroy), (ephy_node_new_with_id), (real_set_property), - (ephy_node_set_property), (ephy_node_set_property_string), - (ephy_node_set_property_boolean), (ephy_node_set_property_long), - (ephy_node_set_property_int), (ephy_node_set_property_double), - (ephy_node_set_property_float), (real_add_child), - (ephy_node_new_from_xml), (ephy_node_signal_connect_object): - - Convert EphyNode to use GSlice. - - svn path=/trunk/; revision=6859 - - ChangeLog | 12 ++++++++++++ - lib/ephy-node.c | 38 ++++++++++++++++++++++---------------- - 2 files changed, 34 insertions(+), 16 deletions(-) - -commit 4add89491510082e2e5c2d9d56c1952d76f5629b -Author: Jean-François Rameau -Date: Sun Jan 28 20:24:03 2007 +0000 - - Check for a potential veto. Fix #342951. - - 2007-01-28 Jean-François Rameau - - * embed/mozilla/ContentHandler.cpp: (GContentHandler::Show): - - Check for a potential veto. Fix #342951. - - svn path=/trunk/; revision=6858 - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 12 ++++++++++++ - 2 files changed, 18 insertions(+) - -commit 819a719f62d6d9583d55b1c5ac787c7f64a03de6 -Author: Christian Persch -Date: Sun Jan 28 20:06:12 2007 +0000 - - Make sure we don't write characters < 0x20 (except 0x9, 0xa, 0xd) to XML. - - 2007-01-28 Christian Persch - - * lib/ephy-node.c: (safe_write_string), (ephy_node_write_to_xml): - * src/bookmarks/ephy-bookmarks-export.c: (sanitise_string), - (write_topics_list), (write_rdf): - - Make sure we don't write characters < 0x20 (except 0x9, 0xa, 0xd) to - XML. Bug #392782. - - svn path=/trunk/; revision=6856 - - ChangeLog | 9 ++++ - lib/ephy-node.c | 34 ++++++++++++- - src/bookmarks/ephy-bookmarks-export.c | 92 +++++++++++++++++++++++++++-------- - 3 files changed, 114 insertions(+), 21 deletions(-) - -commit 2eee055dd76bfe30aea7758025cdd499aea95b4d -Author: Christian Persch -Date: Sun Jan 28 19:56:01 2007 +0000 - - Fix the wrapping of the singleton Ephy[Embed]Shell as "epiphany.Shell()". - - 2007-01-28 Christian Persch - - * src/epiphany.defs: - * src/epiphany.override: - - Fix the wrapping of the singleton Ephy[Embed]Shell as - "epiphany.Shell()". Bug #351705. - - svn path=/trunk/; revision=6854 - - ChangeLog | 8 ++++++++ - src/epiphany.defs | 31 ++++++++++++++++--------------- - src/epiphany.override | 32 ++++++++++++++++++++++++++++++++ - 3 files changed, 56 insertions(+), 15 deletions(-) - -commit 9f55ee3719b4ba01a4929ca0f9b1e71c24ebae84 -Author: Christian Persch -Date: Sun Jan 28 17:33:22 2007 +0000 - - Fix schemas install command. - - 2007-01-28 Christian Persch - - * data/Makefile.am: - - Fix schemas install command. - - svn path=/trunk/; revision=6852 - - ChangeLog | 18 ++++++++++++++++++ - data/Makefile.am | 2 +- - 2 files changed, 19 insertions(+), 1 deletion(-) - -commit 6f0304fe9fb31c0a16aa890d4e039f2de0a225b5 -Author: Priit Laes -Date: Sat Jan 27 16:09:26 2007 +0000 - - Updated Estonian translation by Ivar Smolin . - - 2007-01-27 Priit Laes - - * et.po: Updated Estonian translation by Ivar Smolin . - - svn path=/trunk/; revision=6851 - - po/ChangeLog | 4 +++ - po/et.po | 99 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 57 insertions(+), 46 deletions(-) - -commit 76ce68f41777975c6a21360041130aaa9978b281 -Author: Priit Laes -Date: Sat Jan 27 12:42:22 2007 +0000 - - Fixes the menu path of Gnome control center when displaying the service - - 2007-01-27 Priit Laes - - * embed/mozilla/EphyAboutModule.cpp: - - Fixes the menu path of Gnome control center when displaying the service - unavailable error message. Bug #352923. - - - svn path=/trunk/; revision=6850 - - ChangeLog | 7 +++++++ - embed/mozilla/EphyAboutModule.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 78e5dc62b26a2e3a30b3f52f914501d450b0f8ae -Author: Theppitak Karoonboonyanan -Date: Sat Jan 27 01:56:23 2007 +0000 - - Updated Thai translation. - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=6849 - - po/ChangeLog | 4 +++ - po/th.po | 99 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 57 insertions(+), 46 deletions(-) - -commit fbcccc739e6ea6165d08722869b4092b6a276880 -Author: Hendrik Richter -Date: Fri Jan 26 09:32:35 2007 +0000 - - Updated German translation. - - 2007-01-26 Hendrik Richter - - * de.po: Updated German translation. - - svn path=/trunk/; revision=6848 - - po/ChangeLog | 4 + - po/de.po | 1308 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 680 insertions(+), 632 deletions(-) - -commit 0f6919c05b7bcbadd68617001cf0547b2cb167a4 -Author: Diego Escalante Urrelo -Date: Wed Jan 24 13:21:39 2007 +0000 - - Changed the "redirected too many times" error page to be more friendly. - - 2007-01-24 Diego Escalante Urrelo - - * embed/mozilla/EphyAboutModule.cpp: - - Changed the "redirected too many times" error page to be more - friendly. Bug #395990. - - - svn path=/trunk/; revision=6847 - - ChangeLog | 7 +++++++ - embed/mozilla/EphyAboutModule.cpp | 7 ++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit 96684c5d2dbd094d3bcf5415ef939e48fd520e3e -Author: Pema Geyleg -Date: Wed Jan 24 11:17:38 2007 +0000 - - svn path=/trunk/; revision=6846 - - - - svn path=/trunk/; revision=6846 - - po/ChangeLog | 4 + - po/dz.po | 1314 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 673 insertions(+), 645 deletions(-) - -commit dfb53894ddca40e48d6b895a5f35d71897318bd9 -Author: Christian Persch -Date: Tue Jan 23 17:41:33 2007 +0000 - - Clear some print settings in the settings we hand to the print job, so - - 2007-01-23 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/GeckoPrintService.cpp: - * embed/mozilla/GeckoPrintService.h: - * embed/mozilla/GeckoPrintSession.cpp: - - Clear some print settings in the settings we hand to the print job, so - they don't get applied twice. Bug #394818. - - Prepare for printing to PDF (#if 0'd until the gecko bug is fixed). - - svn path=/trunk/; revision=6844 - - embed/mozilla/EphyBrowser.cpp | 1 + - embed/mozilla/GeckoPrintService.cpp | 69 +++++++++++++++++++++++++++++++------ - embed/mozilla/GeckoPrintService.h | 3 +- - embed/mozilla/GeckoPrintSession.cpp | 2 +- - 4 files changed, 62 insertions(+), 13 deletions(-) - -commit 829181d6405e9d5709a8242282479e8b8e9b25ea -Author: Christian Persch -Date: Tue Jan 23 13:10:06 2007 +0000 - - Add another safe mime type. - - 2007-01-23 Christian Persch - - * data/mime-types-permissions.xml: - - Add another safe mime type. - - svn path=/trunk/; revision=6842 - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit bcf4ce31cce915d5bfec1ca9dcba05411e3d3139 -Author: Jakub Friedl -Date: Tue Jan 23 10:49:13 2007 +0000 - - Updated Czech translation. - - 2007-01-23 Jakub Friedl - - * cs.po: Updated Czech translation. - - - svn path=/trunk/; revision=6841 - - po/ChangeLog | 4 ++++ - po/cs.po | 61 +++++++++++++++++++++++------------------------------------- - 2 files changed, 27 insertions(+), 38 deletions(-) - -commit 82920b354f5aa4fe8b3fcb838dfe0072573c5fd2 -Author: Evandro Fernandes Giovanini -Date: Tue Jan 23 04:32:29 2007 +0000 - - pt_BR.po: Fix typo (bug #399630) - - svn path=/trunk/; revision=6840 - - po/ChangeLog | 4 ++++ - po/pt_BR.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit f75ec463e82ffff5d0e35208019e7ba2798d271d -Author: Christian Persch -Date: Mon Jan 22 14:52:39 2007 +0000 - - Post-release version bump. - - 2007-01-22 Christian Persch - - * configure.ac: - - Post-release version bump. - - svn path=/trunk/; revision=6838 - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 8dc1eb2dec043a245768d21f2a4b53ee687c9ded -Author: Christian Persch -Date: Mon Jan 22 14:51:44 2007 +0000 - - === Release 2.17.90 === - - 2007-01-22 Christian Persch - - === Release 2.17.90 === - - * configure.ac: - - svn path=/trunk/; revision=6836 - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 1 - - 3 files changed, 7 insertions(+), 2 deletions(-) - -commit 1c2f6473d47b66757625eadc40a32ec81df15340 -Author: Jakub Friedl -Date: Mon Jan 22 13:52:04 2007 +0000 - - Updated Czech translation. - - 2007-01-22 Jakub Friedl - - * cs.po: Updated Czech translation. - - - svn path=/trunk/; revision=6835 - - po/ChangeLog | 4 ++ - po/cs.po | 137 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 80 insertions(+), 61 deletions(-) - -commit 6458bd0e6f194afe8cc693e15b3b984cb6350655 -Author: Žygimantas Beručka -Date: Sun Jan 21 16:19:16 2007 +0000 - - Updated Lithuanian translation. - - svn path=/trunk/; revision=6834 - - po/lt.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 0dd7df77422c7714f2cc6cdfd46ffaad79eaaa9e -Author: Žygimantas Beručka -Date: Sun Jan 21 16:16:09 2007 +0000 - - Updated Lithuanian translation. - - svn path=/trunk/; revision=6833 - - po/ChangeLog | 4 + - po/lt.po | 357 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 181 insertions(+), 180 deletions(-) - -commit f11da4a0da6baa5ffd8ad03639ff0fe098ff07ed -Author: Kjartan Maraas -Date: Sat Jan 20 17:18:33 2007 +0000 - - Updated Norwegian bokmål translation. - - 2007-01-20 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - svn path=/trunk/; revision=6832 - - po/ChangeLog | 4 + - po/nb.po | 885 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 447 insertions(+), 442 deletions(-) - -commit c12555a5bf2289e00b93d3a6f5834d8ead459b5a -Author: Diego Escalante Urrelo -Date: Thu Jan 18 12:46:18 2007 +0000 - - Puts OpenInWindow over OpenInTab in the Bookmarks Editor so we meet the - - 2007-01-18 Diego Escalante Urrelo - - * 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 - - ChangeLog | 7 +++++++ - data/ui/epiphany-bookmark-editor-ui.xml | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 8ca0b5e05179ac7b04bf4c72121801525bb19d7f -Author: Luca Ferretti -Date: Thu Jan 18 12:36:08 2007 +0000 - - configure.ac - - 2007-01-18 Luca Ferretti - - * 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 - - ChangeLog | 18 +++++ - configure.ac | 3 + - data/icons/16x16/Makefile.am | 3 +- - data/icons/16x16/places/Makefile.am | 15 ++++ - data/icons/16x16/places/bookmark-web.png | Bin 0 -> 576 bytes - data/icons/16x16/places/bookmark-web.svg | 121 ++++++++++++++++++++++++++++ - data/icons/22x22/Makefile.am | 3 +- - data/icons/22x22/places/Makefile.am | 15 ++++ - data/icons/22x22/places/bookmark-web.png | Bin 0 -> 989 bytes - data/icons/22x22/places/bookmark-web.svg | 134 +++++++++++++++++++++++++++++++ - data/icons/24x24/Makefile.am | 3 +- - data/icons/24x24/places/Makefile.am | 14 ++++ - data/icons/24x24/places/bookmark-web.png | Bin 0 -> 1025 bytes - lib/ephy-stock-icons.c | 2 +- - lib/ephy-stock-icons.h | 2 +- - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - 17 files changed, 330 insertions(+), 7 deletions(-) - -commit 353df69beec07dc0ff87cafef6586f5c6106c964 -Author: Diego Escalante Urrelo -Date: Thu Jan 18 00:16:00 2007 +0000 - - Avoid opening a nautilus window when downloads are finished if the - - 2007-01-17 Diego Escalante Urrelo - - * src/popup-commands.c: - - Avoid opening a nautilus window when downloads are finished if the - downloaded file was saved to the desktop. Considers the - desktop_is_homedir option of Nautilus. Bug #383698. - - - svn path=/trunk/; revision=6829 - - ChangeLog | 8 ++++++++ - src/popup-commands.c | 22 ++++++++++++++++++++-- - 2 files changed, 28 insertions(+), 2 deletions(-) - -commit c7a313999e85639c7eccc2b1e20624e02676c4df -Author: Diego Escalante Urrelo -Date: Thu Jan 18 00:12:27 2007 +0000 - - Missed to checkin the ChangeLog for my last commit (fix for bug #394699). - - - svn path=/trunk/; revision=6828 - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 77488dd1ab8851603fd10a06cbc60dd0d6251dbf -Author: Theppitak Karoonboonyanan -Date: Wed Jan 17 07:27:24 2007 +0000 - - Updated Thai translation. - - * th.po: Updated Thai translation. - - - svn path=/trunk/; revision=6826 - - po/ChangeLog | 4 + - po/th.po | 1284 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 662 insertions(+), 626 deletions(-) - -commit 0c45eba820757b6dad263dddbcb4538d1e4f0f9b -Author: Gabor Kelemen -Date: Wed Jan 17 00:07:57 2007 +0000 - - Translation updated. - - 2007-01-17 Gabor Kelemen - - * hu.po: Translation updated. - - svn path=/trunk/; revision=6825 - - po/ChangeLog | 4 + - po/hu.po | 1300 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 662 insertions(+), 642 deletions(-) - -commit a6f6242ad9de157c29c587aacaa032319af2ba80 -Author: Yair Hershkovitz -Date: Tue Jan 16 15:23:31 2007 +0000 - - updated hebrew translation - - svn path=/trunk/; revision=6824 - - po/ChangeLog | 4 + - po/he.po | 1356 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 696 insertions(+), 664 deletions(-) - -commit 61b0acb1d0a458f662f1462299404d42167da46d -Author: Djihed Afifi -Date: Mon Jan 15 14:22:08 2007 +0000 - - Updated Arabic Translation by Khaled Hosny. - - svn path=/trunk/; revision=6823 - - po/ChangeLog | 4 ++ - po/ar.po | 159 ++++++++++++++++------------------------------------------- - 2 files changed, 47 insertions(+), 116 deletions(-) - -commit 14304b30eca23389308bac733b2d2b4f66dcc4aa -Author: Reinout van Schouwen -Date: Sun Jan 14 21:36:32 2007 +0000 - - Updated Dutch translation - - 2007-01-14 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=6822 - - po/ChangeLog | 20 +++--- - po/nl.po | 217 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 142 insertions(+), 95 deletions(-) - -commit 88cbe7ed05da1923033f31553aa664f3ba8a58b9 -Author: Djihed Afifi -Date: Sat Jan 13 06:01:15 2007 +0000 - - Updated Arabic Translation. - - svn path=/trunk/; revision=6821 - - po/ChangeLog | 4 + - po/ar.po | 417 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 249 insertions(+), 172 deletions(-) - -commit e3b01b9d10276bd63f0c4ecf289286a7c7740b0c -Author: Priit Laes -Date: Sat Jan 13 01:28:19 2007 +0000 - - Translation updated by Ivar Smolin . - - 2007-01-13 Priit Laes - * et.po: Translation updated by Ivar Smolin . - - svn path=/trunk/; revision=6820 - - po/ChangeLog | 4 + - po/et.po | 1840 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1046 insertions(+), 798 deletions(-) - -commit 96a5fc198a566c31098b6ca65329c0c8d49498ed -Author: Clytie Siddall -Date: Fri Jan 12 11:53:02 2007 +0000 - - vi.po: Updated Vietnamese translation. - - - svn path=/trunk/; revision=6819 - - po/vi.po | 1386 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 696 insertions(+), 690 deletions(-) - -commit 899c770d446e85a96129c88f130fc0732a53c230 -Author: Clytie Siddall -Date: Fri Jan 12 11:51:29 2007 +0000 - - vi.po: Updated Vietnamese translation. - - - svn path=/trunk/; revision=6818 - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 2c0306e7ce8323e3c7111459424d40239de582f4 -Author: Diego Escalante Urrelo -Date: Wed Jan 10 08:19:42 2007 +0000 - - Fixes compilation with gcc 2. Bug #394699. Patch by Jens Granseuer. - - 2007-01-10 Diego Escalante Urrelo - - * src/bookmarks/ephy-bookmarks-ui.c: - - Fixes compilation with gcc 2. Bug #394699. Patch by Jens Granseuer. - - - svn path=/trunk/; revision=6817 - - src/bookmarks/ephy-bookmarks-ui.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit c10006a89f73a6ef7b27a06fdae0368fb4787cbb -Author: Christian Persch -Date: Wed Jan 10 00:38:52 2007 +0000 - - Update for 2007. - - 2007-01-10 Christian Persch - - * data/chrome/about.xhtml: - * src/window-commands.c: (window_cmd_help_about): - - Update for 2007. - - svn path=/trunk/; revision=6816 - - ChangeLog | 7 +++++++ - data/chrome/about.xhtml | 2 +- - src/window-commands.c | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit 33c48b56904ea2965e2fee187e28f6f8b278525c -Author: Christian Persch -Date: Tue Jan 9 23:06:14 2007 +0000 - - Fix for autoconf 2.60 (datarootdir). - - 2007-01-10 Christian Persch - - * data/epiphany.pc.in: - - Fix for autoconf 2.60 (datarootdir). - - svn path=/trunk/; revision=6815 - - ChangeLog | 6 ++++++ - data/epiphany.pc.in | 2 ++ - 2 files changed, 8 insertions(+) - -commit 47e614b3471624b38ed8dcc0022bbe343d521110 -Author: Daniel Nylander -Date: Tue Jan 9 15:58:34 2007 +0000 - - sv.po: Updated Swedish translation - - svn path=/trunk/; revision=6814 - - po/ChangeLog | 4 + - po/sv.po | 1282 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 659 insertions(+), 627 deletions(-) - -commit 960c6b062c8fbfb9c491f633639a0611abf97281 -Author: Matic Žgur -Date: Tue Jan 9 13:11:57 2007 +0000 - - Updated Slovenian translation. - - svn path=/trunk/; revision=6813 - - po/ChangeLog | 4 + - po/sl.po | 1267 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 638 insertions(+), 633 deletions(-) - -commit f60c571c902bf084e3a4a364ec2069a94b4447fd -Author: David Lodge -Date: Tue Jan 9 07:01:01 2007 +0000 - - Updated English (British) translation - - svn path=/trunk/; revision=6812 - - po/ChangeLog | 4 + - po/en_GB.po | 1316 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 674 insertions(+), 646 deletions(-) - -commit f6b01d969273f407b0fdc623aa6acc1986491512 -Author: Diego Escalante Urrelo -Date: Tue Jan 9 00:49:45 2007 +0000 - - Opens images in a new browser window if EOG is not found. Bug #167595. - - 2007-01-09 Diego Escalante Urrelo - - * src/popup-commands.c: - * lib/ephy-file-helpers.c: - - Opens images in a new browser window if EOG is not found. Bug #167595. - Patch by Björn Lindqvist. - - - svn path=/trunk/; revision=6811 - - ChangeLog | 8 ++++++++ - lib/ephy-file-helpers.c | 6 ++---- - src/popup-commands.c | 30 +++++++++++++++++++++--------- - 3 files changed, 31 insertions(+), 13 deletions(-) - -commit fc051e29f9dd21db6254ce75f17c97a4012bcf03 -Author: Diego Escalante Urrelo -Date: Tue Jan 9 00:40:44 2007 +0000 - - Changes "..." for the ellipsis character "…". Bug #324380. Patch by - - 2007-01-09 Diego Escalante Urrelo - - * 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 - - ChangeLog | 14 ++++++++++++++ - data/glade/form-signing-dialog.glade | 2 +- - data/glade/prefs-dialog.glade | 4 ++-- - src/bookmarks/ephy-bookmarks-editor.c | 6 +++--- - src/ephy-encoding-menu.c | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-main.c | 2 +- - src/ephy-tab.c | 14 +++++++------- - src/ephy-window.c | 30 +++++++++++++++--------------- - 9 files changed, 45 insertions(+), 31 deletions(-) - -commit ea99ffca78680dd661967ba44c97be341aae7032 -Author: Diego Escalante Urrelo -Date: Tue Jan 9 00:11:09 2007 +0000 - - Added myself as a Contributor. :). - - 2007-01-09 Diego Escalante Urrelo - - * data/about.ini: - - Added myself as a Contributor. :). - - - svn path=/trunk/; revision=6809 - - ChangeLog | 6 ++++++ - data/about.ini | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 86e42645ba8bd344e6f8aaf42029bbbc2072ab2c -Author: Christian Persch -Date: Tue Jan 9 00:06:03 2007 +0000 - - Post-release version bump. - - 2007-01-09 Christian Persch - - * configure.ac: - - Post-release version bump. - - svn path=/trunk/; revision=6808 - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 26be6f39d36700a67bac295d230ab5b15ded1138 -Author: Christian Persch -Date: Tue Jan 9 00:01:45 2007 +0000 - - === Release 2.17.5 === - - 2007-01-09 Christian Persch - - === Release 2.17.5 === - - * NEWS: - * configure.ac: - * data/default-prefs-common.js: - * doc/reference/tmpl/ephy-embed.sgml: - - svn path=/trunk/; revision=6806 - - ChangeLog | 9 +++++++++ - NEWS | 2 +- - configure.ac | 2 +- - data/default-prefs-common.js | 3 +++ - doc/reference/tmpl/ephy-embed.sgml | 1 - - 5 files changed, 14 insertions(+), 3 deletions(-) - -commit f2ec03c23c92888836704035aeb0b4213a0c7800 -Author: Diego Escalante Urrelo -Date: Mon Jan 8 23:27:56 2007 +0000 - - Fixes a problem at link time on Darwin, bug #387233. Patch by paul. - - 2007-01-08 Diego Escalante Urrelo - - * src/ephy-python-extension.c: - * src/epiphany.override: - - Fixes a problem at link time on Darwin, bug #387233. Patch by paul. - - - - svn path=/trunk/; revision=6805 - - ChangeLog | 7 +++++++ - src/ephy-python-extension.c | 1 + - src/epiphany.override | 1 + - 3 files changed, 9 insertions(+) - -commit 4887013e7319851ecaf2a1eb779d4e5130edc84a -Author: Reinout van Schouwen -Date: Mon Jan 8 23:19:45 2007 +0000 - - Updated Dutch translation - - 2007-01-09 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - - svn path=/trunk/; revision=6803 - - po/ChangeLog | 3808 +++++++++++++++++++++++++++++----------------------------- - po/nl.po | 1147 +++++++++--------- - 2 files changed, 2483 insertions(+), 2472 deletions(-) - -commit 3879fc8987a3e234b1076cee4c954fa882b3dea3 -Author: Diego Escalante Urrelo -Date: Mon Jan 8 23:14:15 2007 +0000 - - Fixes the escaping in the error message "The page %s was not fully loaded - - 2007-01-08 Diego Escalante Urrelo - - * embed/mozilla/EphyAboutModule.cpp: - - Fixes the escaping in the error message "The page %s was not fully - loaded yet when the browser crashed..." by changing the - g_strdup_printf into a g_markup_printf_escaped. Bug #374627. Patch by - Diego Escalante Urrelo. - - - svn path=/trunk/; revision=6801 - - ChangeLog | 9 +++++++++ - embed/mozilla/EphyAboutModule.cpp | 4 ++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit eb2d1ee796ee073f31f82e2f2544eb522b9d2254 -Author: Diego Escalante Urrelo -Date: Mon Jan 8 23:06:00 2007 +0000 - - Fixes the menu path of the service unavailable error message. - - 2007-01-08 Diego Escalante Urrelo - - * embed/mozilla/EphyAboutModule.cpp: - - Fixes the menu path of the service unavailable error message. - - - svn path=/trunk/; revision=6800 - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutModule.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 6269b4651b778e1bdc125a222317e4b558ca14b1 -Author: Diego Escalante Urrelo -Date: Mon Jan 8 23:01:05 2007 +0000 - - Check the result of ephy_file_launch_desktop_file () so if it fails we try - - 2007-01-08 Diego Escalante Urrelo - - * src/popup-commands.c: (background_download_completed) - - Check the result of ephy_file_launch_desktop_file () so if it fails we - try an alternative naming of the background capplet: gnome-background. - This is seen in fedora. Bug #387206, which is actually caused by - bugzilla.redhat.com #201867. - - - svn path=/trunk/; revision=6798 - - ChangeLog | 9 +++++++++ - src/popup-commands.c | 8 +++++++- - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit 0b36f30129faf775ebf3c783d1823ceb75ee05bc -Author: Christian Persch -Date: Mon Jan 8 22:58:27 2007 +0000 - - Update NEWS - - svn path=/trunk/; revision=6797 - - NEWS | 11 +++++++---- - 1 file changed, 7 insertions(+), 4 deletions(-) - -commit eeae242437aca16e9b7d6d6cc45f3e5bf90f4aaa -Author: Diego Escalante Urrelo -Date: Mon Jan 8 22:53:47 2007 +0000 - - Workaround/semi-fix for bug #351814. The real cause of the problem is the - - 2007-01-08 Diego Escalante Urrelo - - * src/bookmarks/ephy-bookmarks-editor.c: - * lib/widgets/ephy-node-view.c: - - Workaround/semi-fix for bug #351814. The real cause of the problem is - the user_data that is never set on a GtkTreeIter, so the Ephy - implementation of the tree makes it to have a stamp of 0 being that - way an invalid iter. Patch by Diego Escalante Urrelo. - - - svn path=/trunk/; revision=6796 - - ChangeLog | 10 ++++++++++ - lib/widgets/ephy-node-view.c | 17 +++++++++++------ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 3 files changed, 22 insertions(+), 7 deletions(-) - -commit a090eff785cd6c75eb70905b91adea159d64d648 -Author: Luca Ferretti -Date: Mon Jan 8 19:57:06 2007 +0000 - - Added "icondir" variable ( == $datadir/$package/icons ). The purpose is - - 2007-01-08 Luca Ferretti - - * 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 - - ChangeLog | 9 +++++++++ - data/epiphany.pc.in | 1 + - 2 files changed, 10 insertions(+) - -commit ba917686fe0821769f0e94768b75b1614227067f -Author: Diego Escalante Urrelo -Date: Mon Jan 8 11:19:48 2007 +0000 - - Removed the hardcoded invisible char, note that this might readd itself to - - 2007-01-08 Diego Escalante Urrelo - - * 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 - - ChangeLog | 9 +++++++++ - data/glade/form-signing-dialog.glade | 1 - - data/glade/prefs-dialog.glade | 1 - - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit ec4dc172c5e47f4d1e3ac384c909be24dc61cb28 -Author: Diego Escalante Urrelo -Date: Sun Jan 7 23:53:40 2007 +0000 - - Updated release notes for Epiphany 2.17.4, translations changes are still missing. - - - svn path=/trunk/; revision=6792 - - NEWS | 42 ++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 42 insertions(+) - -commit 276f7537ecc416ba435f3271771d53cba36d1131 -Author: Nikos Charonitakis -Date: Sun Jan 7 15:03:40 2007 +0000 - - Updated Greek translation-epiphany mannual - - svn path=/trunk/; revision=6791 - - help/el/el.po | 2298 ++++++++++++++++++++++++++++++++++++++------------------- - 1 file changed, 1531 insertions(+), 767 deletions(-) - -commit 143c971b79c59d7b28025eaffb41a0153244c907 -Author: Diego Escalante Urrelo -Date: Sat Jan 6 22:33:16 2007 +0000 - - Minor fixes in the ChangeLog (some wrong identation and extra spaces) - - svn path=/trunk/; revision=6790 - - ChangeLog | 18 ++++++++++-------- - 1 file changed, 10 insertions(+), 8 deletions(-) - -commit caa9434c96b9f1ca8b680557f1a8aad107c5b2e5 -Author: David Planella -Date: Sat Jan 6 18:58:57 2007 +0000 - - Updated Catalan translation. - - 2007-01-06 David Planella - - * ca.po: Updated Catalan translation. - - - svn path=/trunk/; revision=6789 - - po/ChangeLog | 4 ++++ - po/ca.po | 14 +++++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit e2db89804fda3bc4d61b7b4443e30a7182532ad0 -Author: Jakub Friedl -Date: Fri Jan 5 12:42:52 2007 +0000 - - Updated Czech translation. - - 2007-01-05 Jakub Friedl - - * cs.po: Updated Czech translation. - - - svn path=/trunk/; revision=6788 - - po/ChangeLog | 6 +- - po/cs.po | 797 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 402 insertions(+), 401 deletions(-) - -commit be76cf86d2a36c58012a955680c05f2feb0167e3 -Author: Djihed Afifi -Date: Wed Jan 3 21:57:22 2007 +0000 - - Updated Arabic Translation. - - svn path=/trunk/; revision=6787 - - po/ChangeLog | 4 ++++ - po/ar.po | 63 ++++++++++++++++++++++-------------------------------------- - 2 files changed, 27 insertions(+), 40 deletions(-) - -commit 3442e0b90e66938881c2205c1bfd26e343ade466 -Author: Diego Escalante Urrelo -Date: Wed Jan 3 08:18:47 2007 +0000 - - Avoid use of localtime by computing expiry in seconds instead of days. - - 2007-01-03 Diego Escalante Urrelo - - * embed/ephy-favicon-cache.c: (icon_is_obsolete), - (remove_obsolete_icons): - * embed/ephy-history.c: (page_is_obsolete), - (remove_obsolete_pages): - - Avoid use of localtime by computing expiry in seconds instead of days. - Patch by Chris Wilson. - - - svn path=/trunk/; revision=6786 - - ChangeLog | 10 ++++++++++ - embed/ephy-favicon-cache.c | 28 +++++++--------------------- - embed/ephy-history.c | 28 +++++++--------------------- - 3 files changed, 24 insertions(+), 42 deletions(-) - -commit 1783853f31349da7285a26107d2525e809cdaa8e -Author: Diego Escalante Urrelo -Date: Wed Jan 3 08:09:28 2007 +0000 - - Sorry, forgot to svn add this file from the previous commit. :(. - - - svn path=/trunk/; revision=6784 - - lib/ephy-glib-compat.h | 34 ++++++++++++++++++++++++++++++++++ - 1 file changed, 34 insertions(+) - -commit ba82c09a4fad2c258eee6198c2c460fce28afd7b -Author: Diego Escalante Urrelo -Date: Wed Jan 3 08:08:12 2007 +0000 - - Utilize GLib's new g_timeout_add_seconds to reduce context switches and - - 2007-01-03 Diego Escalante Urrelo - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_init): - * embed/ephy-history.c: (ephy_history_init): - * lib/Makefile.am: - * lib/ephy-glib-compat.h: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_save_delayed): - * src/ephy-dbus.c: (session_filter_func), (system_filter_func): - * src/ephy-extensions-manager.c: (reload_cb): - * src/ephy-session.c: (confirm_shutdown_cb): - - Utilize GLib's new g_timeout_add_seconds to reduce context switches - and improve CPU/power efficiency. Patch by Chris Wilson. - - - svn path=/trunk/; revision=6783 - - ChangeLog | 15 +++++++++++++++ - embed/ephy-favicon-cache.c | 13 +++++++------ - embed/ephy-history.c | 7 ++++--- - lib/Makefile.am | 1 + - src/bookmarks/ephy-bookmarks.c | 5 +++-- - src/ephy-dbus.c | 7 ++++--- - src/ephy-extensions-manager.c | 6 ++++-- - src/ephy-session.c | 3 ++- - 8 files changed, 40 insertions(+), 17 deletions(-) - -commit 6f06e1d567f30dc39347f8ce0f05ab16499aea7a -Author: Diego Escalante Urrelo -Date: Wed Jan 3 07:58:32 2007 +0000 - - Corrects the expand of the Privacy tab in the Preferences window. Patch by - - 2007-01-03 Diego Escalante Urrelo - - * 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 - - ChangeLog | 8 +++++++- - data/glade/prefs-dialog.glade | 4 ++-- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit d01432071dba797dd0fcca588432a315c1a87573 -Author: Diego Escalante Urrelo -Date: Wed Jan 3 07:39:16 2007 +0000 - - Added text/csv as a safe type (note that the alias - - 2007-01-03 Diego Escalante Urrelo - - * 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 - - ChangeLog | 9 +++++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 10 insertions(+) - -commit 1885536e41726d40825753019e37c793dc83a70d -Author: Diego Escalante Urrelo -Date: Tue Jan 2 19:47:49 2007 +0000 - - Disables "Add Bookmark" in the File menu when bookmarks are locked down. - - 2007-01-02 Diego Escalante Urrelo - - * src/ephy-history-window.c: (ephy_history_window_update_menu): - - Disables "Add Bookmark" in the File menu when bookmarks are locked - down. - - * src/bookmarks/ephy-bookmark-properties.c: (ephy_bookmark_properties_constructor): - - Makes the topics pane insensitive and the rest of entries - non-editables (but sensitive so we can select the text) - when bookmarks are locked down. - - * src/bookmarks/ephy-bookmarks-ui.c: (ephy_bookmarks_ui_add_bookmark): - - Don't allow the add bookmark ui to appear if it's locked down. - - - svn path=/trunk/; revision=6778 - - ChangeLog | 17 +++++++++++++++++ - src/bookmarks/ephy-bookmark-properties.c | 11 +++++++++++ - src/bookmarks/ephy-bookmarks-ui.c | 6 ++++++ - src/ephy-history-window.c | 6 +++++- - 4 files changed, 39 insertions(+), 1 deletion(-) - -commit cd3b869d189cc52c08a8807cd03994adc761e5ad -Author: Gintautas Miliauskas -Date: Tue Jan 2 16:15:52 2007 +0000 - - Updated Lithuanian translation. - - 2007-01-02 Gintautas Miliauskas - - * lt.po: Updated Lithuanian translation. - - - svn path=/trunk/; revision=6777 - - po/ChangeLog | 4 + - po/lt.po | 1146 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 579 insertions(+), 571 deletions(-) - -commit bfbe197a475085dd85d5741bcd06c4865c873d9d -Author: Christian Persch -Date: Sun Dec 31 17:00:43 2006 +0000 - - Make sure to init gthread as first call to glib. - - 2006-12-31 Christian Persch - - * src/ephy-main.c: (main): - - Make sure to init gthread as first call to glib. - - svn path=/trunk/; revision=6775 - - ChangeLog | 6 ++++++ - src/ephy-main.c | 4 ++++ - 2 files changed, 10 insertions(+) - -commit e4c8ce77919b315e43f1d9db007e5a29dd99c15f -Author: Christian Persch -Date: Sun Dec 31 15:46:08 2006 +0000 - - s/cvs/svn/g - - svn path=/trunk/; revision=6773 - - README.Python | 2 +- - autogen.sh | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit af107783f148010ddb39127ce565d9d8594794e8 -Author: Christian Persch -Date: Sat Dec 30 22:15:15 2006 +0000 - - Remove x bit from source files - - svn path=/trunk/; revision=6772 - - lib/egg/egg-editable-toolbar.c | 0 - lib/egg/egg-editable-toolbar.h | 0 - lib/egg/egg-toolbar-editor.c | 0 - lib/egg/egg-toolbar-editor.h | 0 - lib/egg/egg-toolbars-model.c | 0 - lib/egg/egg-toolbars-model.h | 0 - lib/ephy-spell-check.c | 0 - src/ephy-statusbar.c | 0 - src/ephy-toolbar.c | 0 - src/ephy-toolbars-model.c | 0 - src/ephy-toolbars-model.h | 0 - src/pdm-dialog.c | 0 - src/ppview-toolbar.c | 0 - 13 files changed, 0 insertions(+), 0 deletions(-) - -commit fae196d59901a874ad3b9d05a754026408674ff1 -Author: Christian Persch -Date: Sat Dec 30 21:49:36 2006 +0000 - - Remove x bit on po files - - svn path=/trunk/; revision=6771 - - po/fr.po | 0 - po/mk.po | 0 - po/mn.po | 0 - 3 files changed, 0 insertions(+), 0 deletions(-) - -commit 8d4d15edeec7c3e4011e3feee02d5b00ff268d44 -Author: Christian Persch -Date: Sat Dec 30 19:23:26 2006 +0000 - - Fix email address - - svn path=/trunk/; revision=6770 - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 103657040eb1a669f9047fe1b8416a3aea596b80 -Author: Diego Escalante Urrelo -Date: Sat Dec 30 19:07:49 2006 +0000 - - Removed uneeded #include . - - 2006-12-30 Diego Escalante Urrelo - - * src/ephy-statusbar.c: - - Removed uneeded #include . - - - svn path=/trunk/; revision=6769 - - ChangeLog | 6 ++++++ - src/ephy-statusbar.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 8608dbc1c50a34cba9f714fb105c137ccc923c83 -Author: Christian Persch -Date: Sat Dec 30 15:53:07 2006 +0000 - - .cvsignore files are obsolete - - svn path=/trunk/; revision=6768 - - .cvsignore | 27 ----------------- - ChangeLog | 54 ++++++++++++++++++++++++++++++++++ - data/.cvsignore | 8 ----- - data/art/.cvsignore | 2 -- - data/chrome/.cvsignore | 5 ---- - data/glade/.cvsignore | 3 -- - data/icons/.cvsignore | 2 -- - data/icons/16x16/.cvsignore | 2 -- - data/icons/16x16/actions/.cvsignore | 2 -- - data/icons/16x16/status/.cvsignore | 2 -- - data/icons/22x22/.cvsignore | 2 -- - data/icons/22x22/actions/.cvsignore | 2 -- - data/icons/22x22/status/.cvsignore | 2 -- - data/icons/24x24/.cvsignore | 2 -- - data/icons/24x24/actions/.cvsignore | 2 -- - data/icons/24x24/status/.cvsignore | 2 -- - data/icons/32x32/.cvsignore | 2 -- - data/icons/32x32/actions/.cvsignore | 2 -- - data/icons/32x32/status/.cvsignore | 2 -- - data/icons/scalable/.cvsignore | 2 -- - data/icons/scalable/actions/.cvsignore | 2 -- - data/icons/scalable/status/.cvsignore | 2 -- - data/ui/.cvsignore | 2 -- - doc/.cvsignore | 2 -- - doc/reference/.cvsignore | 15 ---------- - embed/.cvsignore | 8 ----- - embed/mozilla/.cvsignore | 6 ---- - help/.cvsignore | 3 -- - help/C/.cvsignore | 1 - - help/bg/.cvsignore | 2 -- - help/el/.cvsignore | 2 -- - help/es/.cvsignore | 2 -- - help/eu/.cvsignore | 2 -- - help/fi/.cvsignore | 2 -- - help/fr/.cvsignore | 2 -- - help/it/.cvsignore | 2 -- - help/ja/.cvsignore | 2 -- - help/nl/.cvsignore | 2 -- - help/ru/.cvsignore | 2 -- - help/sv/.cvsignore | 2 -- - help/uk/.cvsignore | 2 -- - lib/.cvsignore | 10 ------- - lib/egg/.cvsignore | 11 ------- - lib/widgets/.cvsignore | 7 ----- - m4/.cvsignore | 1 - - plugins/.cvsignore | 2 -- - plugins/desktop-file/.cvsignore | 9 ------ - po/.cvsignore | 16 ---------- - src/.cvsignore | 14 --------- - src/bookmarks/.cvsignore | 9 ------ - 50 files changed, 54 insertions(+), 217 deletions(-) - -commit 2e2fa79b4857d90a1e1cd9ea8f4fa031345de11f -Author: Djihed Afifi -Date: Wed Dec 27 22:46:23 2006 +0000 - - Updated Arabic Translation. - - po/ChangeLog | 4 ++++ - po/ar.po | 11 ++++------- - 2 files changed, 8 insertions(+), 7 deletions(-) - -commit 02540c3dc737c970d5a444407ab7be7cad20bed8 -Author: Christian Persch -Date: Mon Dec 25 12:17:35 2006 +0000 - - Only use the statusbar size-allocate hack on gtk <= 2.10 now that gtk bug - - 2006-12-25 Christian Persch - - * src/ephy-statusbar.c: (ephy_statusbar_class_init): - - Only use the statusbar size-allocate hack on gtk <= 2.10 now that gtk - bug #372452 is fixed. - - ChangeLog | 7 +++++++ - src/ephy-statusbar.c | 8 +++++++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 49d3ad53d12cb2e4e4dcd5991a239cdfeefe9354 -Author: Djihed Afifi -Date: Sun Dec 24 21:48:24 2006 +0000 - - Updated Arabic Translation. - - po/ChangeLog | 4 ++++ - po/ar.po | 34 +++++++++++++++++----------------- - 2 files changed, 21 insertions(+), 17 deletions(-) - -commit cbe8aa1853cc0ec71db726d5fc2825d539f1a07e -Author: Christian Persch -Date: Tue Dec 19 18:06:56 2006 +0000 - - Fix ordering - - data/ui/epiphany-ui.xml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 85246cab6e9563ebb592e436bb1610fdf4258086 -Author: Luca Ferretti -Date: Tue Dec 19 17:03:22 2006 +0000 - - Invert MoveToolItem and RemoveToolItem order, matchingh same feature for - - 2006-12-19 Luca Ferretti - - * 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. - - ChangeLog | 14 ++++++++++++++ - data/ui/epiphany-ui.xml | 2 +- - lib/egg/egg-editable-toolbar.c | 3 +-- - lib/ephy-stock-icons.c | 2 -- - lib/ephy-stock-icons.h | 2 -- - 5 files changed, 16 insertions(+), 7 deletions(-) - -commit 70908aa72436b9c9970d11bab34f3789bd3414d7 -Author: Luca Ferretti -Date: Tue Dec 19 10:21:47 2006 +0000 - - Add Tango style location-entry named icon. - - 2006-12-19 Luca Ferretti - - * 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. - - ChangeLog | 15 + - data/icons/16x16/actions/Makefile.am | 3 +- - data/icons/16x16/actions/location-entry.png | Bin 0 -> 540 bytes - data/icons/22x22/actions/Makefile.am | 3 +- - data/icons/22x22/actions/location-entry.png | Bin 0 -> 814 bytes - data/icons/24x24/actions/location-entry.png | Bin 433 -> 877 bytes - data/icons/32x32/actions/Makefile.am | 6 +- - data/icons/32x32/actions/location-entry.png | Bin 0 -> 1591 bytes - data/icons/32x32/actions/location-entry.svg | 1024 +++++++++++++++++++++++ - data/icons/scalable/actions/Makefile.am | 3 +- - data/icons/scalable/actions/location-entry.svg | 1050 ++++++++++++++++++++++++ - 11 files changed, 2099 insertions(+), 5 deletions(-) - -commit f663f41b50aeeda8022a665c55d0adf059951901 -Author: Christian Persch -Date: Mon Dec 18 20:44:34 2006 +0000 - - Post-release version bump. - - 2006-12-18 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 1741c515eda8918bebe8844beb4cd32cbdd6aa58 -Author: Christian Persch -Date: Mon Dec 18 20:39:39 2006 +0000 - - === Release 2.17.4 === - - 2006-12-18 Christian Persch - - === Release 2.17.4 === - - * autogen.sh: - * configure.ac: - * src/Makefile.am: - - Link with -lxpcomglue_s on trunk. - - ChangeLog | 10 ++++++++++ - autogen.sh | 6 ++---- - configure.ac | 1 + - src/Makefile.am | 1 + - 4 files changed, 14 insertions(+), 4 deletions(-) - -commit bf6e7073bb05741c865cf9efee9ec387acdee4b9 -Author: Christian Persch -Date: Mon Dec 18 12:35:02 2006 +0000 - - Show favicons in location entry drop-down. Bug #112748, patch by Diego - - 2006-12-18 Christian Persch - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_set_completion): - * lib/widgets/ephy-location-entry.h: - * src/ephy-completion-model.c: - (ephy_completion_model_get_column_type), (init_favicon_col), - (ephy_completion_model_get_value): - * src/ephy-completion-model.h: - * src/ephy-location-action.c: (connect_proxy): - - Show favicons in location entry drop-down. Bug #112748, patch by Diego - Escalante Urrelo. - - ChangeLog | 14 ++++++++++++++ - lib/widgets/ephy-location-entry.c | 15 +++++++++++++-- - lib/widgets/ephy-location-entry.h | 3 ++- - src/ephy-completion-model.c | 39 +++++++++++++++++++++++++++++++++++++++ - src/ephy-completion-model.h | 1 + - src/ephy-location-action.c | 3 ++- - 6 files changed, 71 insertions(+), 4 deletions(-) - -commit 436f6e9686a7ae31883c8bd2e30cf76853141a9a -Author: Djihed Afifi -Date: Mon Dec 18 01:38:23 2006 +0000 - - Updated Arabic Translation. Sync for gnome-2-18 - - po/ChangeLog | 4 + - po/ar.po | 4982 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 2874 insertions(+), 2112 deletions(-) - -commit 9c10ef09a4077501f31037e544d63a7ede97057d -Author: Christian Persch -Date: Sun Dec 17 21:09:40 2006 +0000 - - Load about data from file. - - 2006-12-17 Christian Persch - - * data/Makefile.am: - * src/Makefile.am: - * src/window-commands.c: (window_cmd_help_about): - - Load about data from file. - - data/about.ini | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 8ec58524a6bb7e1ad4c9062af4903b0e033da6b0 -Author: Christian Persch -Date: Sun Dec 17 19:37:31 2006 +0000 - - Fix bookmarks export to HTML. Bug #345925, patch by Stefan Stuhr. - - 2006-12-17 Christian Persch - - * data/epiphany-bookmarks-html.xsl: - - Fix bookmarks export to HTML. Bug #345925, patch by Stefan Stuhr. - - ChangeLog | 6 ++++++ - data/epiphany-bookmarks-html.xsl | 26 +++++++++++--------------- - doc/reference/tmpl/ephy-embed.sgml | 12 +++++++++++- - 3 files changed, 28 insertions(+), 16 deletions(-) - -commit 2102c67776ad0abad2ebba2746ea997599ea0478 -Author: Christian Persch -Date: Sun Dec 17 19:22:55 2006 +0000 - - Bump version to 2.17.4. - - 2006-12-17 Christian Persch - - * configure.ac: - - Bump version to 2.17.4. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit eadd4a2cb7330834115158707cbe19563b6a705b -Author: Christian Persch -Date: Sun Dec 17 19:20:50 2006 +0000 - - Fix file name extension when exporting bookmarks. Bug #358986, patch by - - 2006-12-17 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_export): - - Fix file name extension when exporting bookmarks. Bug #358986, patch - by Diego Escalante Urrelo. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 7 +++++-- - 2 files changed, 12 insertions(+), 2 deletions(-) - -commit 33b81fc6775af261ecc5ae50034a9a9307905f09 -Author: Christian Persch -Date: Sun Dec 17 19:19:09 2006 +0000 - - Fix a signal leak. Bug #363837, patch by John Millikin. - - 2006-12-17 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (button_deactivate_cb): - - Fix a signal leak. Bug #363837, patch by John Millikin. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topic-action.c | 7 +++++++ - 2 files changed, 13 insertions(+) - -commit f509a34254a254348465dbe018c6ee9db081193e -Author: Eric Butler -Date: Sun Dec 17 19:17:36 2006 +0000 - - Add search_link entry to _EphyEmbedIface - - 2006-12-17 Eric Butler - - * src/ephy-embed.h: - - Add search_link entry to _EphyEmbedIface - - * src/ephy-embed.c: - Add ge-search-link signal - - * embed/mozilla/EphyBrowser.cs: - Fire ge-search-link signal for opensearch tags - - ChangeLog | 12 ++++++++++++ - embed/ephy-embed.c | 22 ++++++++++++++++++++++ - embed/ephy-embed.h | 4 ++++ - embed/mozilla/EphyBrowser.cpp | 33 +++++++++++++++++++++++++++++++++ - 4 files changed, 71 insertions(+) - -commit 25a74360022714d8dcb51b1c306069255da92079 -Author: Christian Persch -Date: Sun Dec 17 19:16:03 2006 +0000 - - Fix a mem leak. Bug #373549, patch by Diego Escalante Urrelo. - - 2006-12-17 Christian Persch - - * src/ephy-history-window.c: (cmd_delete): - - Fix a mem leak. Bug #373549, patch by Diego Escalante Urrelo. - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit f530d890b1edde32f350317fb9ef9459af53d0be -Author: Christian Persch -Date: Sun Dec 17 19:13:13 2006 +0000 - - Limit tab tooltip length. Bug #324052, patch by Diego Escalante Urrelo. - - 2006-12-17 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_init), (sync_label): - - Limit tab tooltip length. Bug #324052, patch by Diego Escalante - Urrelo. - - ChangeLog | 7 +++++++ - src/ephy-notebook.c | 8 +++++++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 4e3a7f17f3720fc271ced8e5d04ddecddb21579f -Author: Christian Persch -Date: Sun Dec 17 19:11:31 2006 +0000 - - Allow to drag plaintext to tabbar. Bug #339339, patch by Michael Hofmann. - - 2006-12-17 Christian Persch - - * src/ephy-notebook.c: (notebook_drag_data_received_cb), - (ephy_notebook_init), (build_tab_label): - - Allow to drag plaintext to tabbar. Bug #339339, patch by - Michael Hofmann. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 11 ++++++++++- - 2 files changed, 18 insertions(+), 1 deletion(-) - -commit 7bb2d46bde7f24278f1eef01fc97854b870b948f -Author: Christian Persch -Date: Sun Dec 17 19:08:40 2006 +0000 - - List title and URL in location entry drop-down. Bug #169550, patch by - - 2006-12-17 Christian Persch - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_set_completion): - * lib/widgets/ephy-location-entry.h: - * src/ephy-completion-model.c: - (ephy_completion_model_get_column_type), - (ephy_completion_model_get_value): - * src/ephy-completion-model.h: - * src/ephy-location-action.c: (connect_proxy): - - List title and URL in location entry drop-down. Bug #169550, - patch by Diego Escalante Urrelo. - - ChangeLog | 14 ++++++++++++++ - lib/widgets/ephy-location-entry.c | 25 +++++++++++++++++++++++-- - lib/widgets/ephy-location-entry.h | 3 ++- - src/ephy-completion-model.c | 12 ++++++++++++ - src/ephy-completion-model.h | 1 + - src/ephy-location-action.c | 3 ++- - 6 files changed, 54 insertions(+), 4 deletions(-) - -commit bbe2b5bf9901099d93388ffdac41afce0a6f96e2 -Author: Christian Persch -Date: Sun Dec 17 19:06:33 2006 +0000 - - Fix secure location bar colouring with dark themes. Bug #347343, patch by - - 2006-12-17 Christian Persch - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_style_set): - - Fix secure location bar colouring with dark themes. Bug #347343, - patch by Diego Escalante Urrelo. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-location-entry.c | 4 ++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 405789297075e4e3a31e347ef9e002c66e198550 -Author: Christian Persch -Date: Sun Dec 17 19:04:48 2006 +0000 - - Load about data from file. - - 2006-12-17 Christian Persch - - * data/Makefile.am: - * src/Makefile.am: - * src/window-commands.c: (window_cmd_help_about): - - Load about data from file. - - ChangeLog | 8 ++++ - data/Makefile.am | 4 ++ - src/Makefile.am | 2 +- - src/window-commands.c | 111 ++++++++++++++++++++++++++++++++++++-------------- - 4 files changed, 94 insertions(+), 31 deletions(-) - -commit e535cb6671701bdd1ee7b53f4994367ef89172c9 -Author: Jean-François Rameau -Date: Sun Dec 17 18:09:55 2006 +0000 - - Add a signal so one can react after some rules have been edited. - - 2006-12-17 Jean-François Rameau - - * embed/ephy-adblock-manager.c: - * embed/ephy-adblock-manager.h: - - Add a signal so one can react after some rules have been edited. - - ChangeLog | 7 +++++++ - embed/ephy-adblock-manager.c | 12 ++++++++++++ - embed/ephy-adblock-manager.h | 3 +++ - 3 files changed, 22 insertions(+) - -commit 73f71bde0e7e256ac5636e7d0f4693aa83e67a56 -Author: Björn Lindqvist -Date: Sun Dec 17 03:06:15 2006 +0000 - - embed/ephy-encodings.c embed/ephy-favicon-cache.c embed/ephy-history.c - - - 2006-12-17 Björn Lindqvist - - * embed/ephy-encodings.c - * embed/ephy-favicon-cache.c - * embed/ephy-history.c - * embed/mozilla/GlobalHistory.cpp - * lib/ephy-state.c - * lib/widgets/ephy-node-view.c - * src/ephy-tab.c - * src/bookmarks/ephy-bookmarks.c - - Refactor lots of code by using the function - ephy_node_set_property_XXX() instead of - ephy_node_set_property(). Also, add emacs mode headers to touched - files. Bug #381546. - - ChangeLog | 16 +++ - embed/ephy-encodings.c | 29 +++--- - embed/ephy-favicon-cache.c | 65 +++++------- - embed/ephy-history.c | 144 +++++++++------------------ - embed/mozilla/GlobalHistory.cpp | 11 +-- - lib/ephy-state.c | 183 +++++++++++++--------------------- - lib/widgets/ephy-node-view.c | 10 +- - src/bookmarks/ephy-bookmarks.c | 214 +++++++++++++++++----------------------- - src/ephy-tab.c | 20 ++-- - 9 files changed, 270 insertions(+), 422 deletions(-) - -commit 66ccfb8ffa2b566a31151da92ba5aa0881153d15 -Author: Christian Persch -Date: Fri Dec 15 14:01:58 2006 +0000 - - Use a define for the default window icon. Bug #385872. - - 2006-12-15 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/GeckoPrintService.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - * lib/ephy-file-chooser.c: (ephy_file_chooser_constructor): - * lib/ephy-gui.c: (ephy_gui_check_location_writable): - * lib/ephy-module.c: - * lib/ephy-password-dialog.c: (ephy_password_dialog_constructor): - * lib/ephy-spell-check.c: - * lib/ephy-stock-icons.h: - * lib/widgets/.cvsignore: - * lib/widgets/ephy-spinner-tool-item.c: - (ephy_spinner_tool_item_toolbar_reconfigured): - * lib/widgets/testspinner.c: - * plugins/desktop-file/plugin.cpp: - * src/bookmarks/ephy-bookmarks.c: (redirect_cb): - * src/ephy-history-window.c: (confirmation_dialog_construct): - * src/ephy-main.c: (main): - * src/ephy-session.c: (confirm_shutdown_cb), - (session_command_autoresume): - * src/ephy-shell.c: (ephy_shell_add_sidebar_cb): - * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_constructor): - * src/ephy-window.c: (construct_confirm_close_dialog): - * src/pdm-dialog.c: (pdm_dialog_init): - * src/window-commands.c: (window_cmd_help_about): - - Use a define for the default window icon. Bug #385872. - - * lib/ephy-module.c: - - The symbol can be NULL even though the symbol lookup succeeded. - - ChangeLog | 36 ++++++++++++++++++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 1 - - embed/ephy-embed.c | 1 + - embed/mozilla/ContentHandler.cpp | 2 +- - embed/mozilla/GeckoPrintService.cpp | 5 ++-- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 3 ++- - embed/mozilla/GtkNSSDialogs.cpp | 17 ++++++------ - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 3 ++- - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 4 ++- - lib/ephy-file-chooser.c | 3 ++- - lib/ephy-gui.c | 5 ++-- - lib/ephy-module.c | 9 ++++++- - lib/ephy-password-dialog.c | 3 ++- - lib/ephy-spell-check.c | 2 +- - lib/ephy-stock-icons.h | 2 ++ - lib/widgets/.cvsignore | 1 + - lib/widgets/ephy-spinner-tool-item.c | 2 +- - lib/widgets/testspinner.c | 2 +- - plugins/desktop-file/plugin.cpp | 4 ++- - src/bookmarks/ephy-bookmarks.c | 3 ++- - src/ephy-history-window.c | 2 +- - src/ephy-main.c | 2 +- - src/ephy-session.c | 5 ++-- - src/ephy-shell.c | 3 ++- - src/ephy-toolbar-editor.c | 3 ++- - src/ephy-toolbar.c | 2 +- - src/ephy-window.c | 2 +- - src/pdm-dialog.c | 3 ++- - src/window-commands.c | 3 ++- - 29 files changed, 98 insertions(+), 35 deletions(-) - -commit 767012bb0003a3411cf43a1fde70596d55bf2e0a -Author: Chhristian Persch -Date: Thu Dec 14 19:54:49 2006 +0000 - - Don't warn before launching rtsp and mms[h] handlers. - - 2006-12-14 Chhristian Persch - - * data/default-prefs-common.js: - - Don't warn before launching rtsp and mms[h] handlers. - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 47daf9a78e8ce55f8deba935d9709c74c858022c -Author: Luca Ferretti -Date: Thu Dec 14 13:58:39 2006 +0000 - - Add "bookmark-view" and "history-view" at 32 pixels and 48 pixels - - 2006-12-14 Luca Ferretti - - * data/icons/32x32/actions/Makefile.am: - * data/icons/32x32/actions/bookmark-view.png: - * data/icons/32x32/actions/bookmark-view.svg: - * data/icons/32x32/actions/history-view.png: - * data/icons/32x32/actions/history-view.svg: - * data/icons/scalable/actions/Makefile.am: - * data/icons/scalable/actions/bookmark-view.svg: - * data/icons/scalable/actions/history-view.svg: - - Add "bookmark-view" and "history-view" at 32 pixels - and 48 pixels scalable. From Andreas Nilsson. - - ChangeLog | 14 + - data/icons/32x32/actions/Makefile.am | 8 +- - data/icons/32x32/actions/bookmark-view.png | Bin 0 -> 934 bytes - data/icons/32x32/actions/bookmark-view.svg | 299 ++++++++++++++++++++++ - data/icons/32x32/actions/history-view.png | Bin 0 -> 2426 bytes - data/icons/32x32/actions/history-view.svg | 266 +++++++++++++++++++ - data/icons/scalable/actions/Makefile.am | 4 +- - data/icons/scalable/actions/bookmark-view.svg | 355 ++++++++++++++++++++++++++ - data/icons/scalable/actions/history-view.svg | 299 ++++++++++++++++++++++ - 9 files changed, 1242 insertions(+), 3 deletions(-) - -commit 342b021045df0962a4cd2b2eedd83986d77ebaf1 -Author: Luca Ferretti -Date: Thu Dec 14 10:05:29 2006 +0000 - - Remove the proxy icon from View->Page Source menu entry. - - 2006-12-14 Luca Ferretti - - * src/ephy-window.c: - - Remove the proxy icon from View->Page Source menu entry. - - * lib/ephy-stock-icons.h: - - Keep STOCK_VIEW_SOURCE by now, but use "text-html" instead - deprecated "stock_view-html-source". - - ChangeLog | 11 +++++++++++ - lib/ephy-stock-icons.h | 2 +- - src/ephy-window.c | 2 +- - 3 files changed, 13 insertions(+), 2 deletions(-) - -commit 2c1e4aa6e72c0bb3b77c5b5e419066f410665ea0 -Author: Luca Ferretti -Date: Thu Dec 14 09:46:17 2006 +0000 - - Fix a typo in previous commit. - - 2006-12-14 Luca Ferretti - - * data/icons/16x16/actions/Makefile.am: - - Fix a typo in previous commit. - - ChangeLog | 6 ++++++ - data/icons/16x16/actions/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a468fea36d6cdcd22bb23365c777d2f6968b7f85 -Author: Luca Ferretti -Date: Thu Dec 14 09:21:46 2006 +0000 - - Add new "bookmark-view" icon from Andreas Nilsson, replacing - - 2006-12-14 Luca Ferretti - - * data/icons/16x16/actions/Makefile.am: - * data/icons/16x16/actions/bookmark-view.png: - * data/icons/16x16/actions/bookmark-view.xcf: - * data/icons/16x16/actions/download.xcf: - * data/icons/16x16/actions/epiphany-download.xcf.bz2: - * data/icons/16x16/status/Makefile.am: - * data/icons/16x16/status/popup-hidden.xcf: - * data/icons/16x16/status/popup-hidden.xcf.bz2: - * data/icons/22x22/actions/Makefile.am: - * data/icons/22x22/actions/bookmark-view.png: - * data/icons/22x22/actions/bookmark-view.xcf: - * data/icons/22x22/actions/download.xcf: - * data/icons/22x22/actions/epiphany-download.xcf.bz2: - * data/icons/22x22/status/Makefile.am: - * data/icons/22x22/status/popup-hidden.xcf: - * data/icons/22x22/status/popup-hidden.xcf.bz2: - * data/icons/24x24/actions/Makefile.am: - * data/icons/24x24/actions/README: - * data/icons/24x24/actions/bookmark-view.png: - * data/icons/24x24/actions/web-bookmarks.png: - * data/icons/32x32/actions/Makefile.am: - * data/icons/32x32/actions/download.svg: - * data/icons/32x32/actions/epiphany-download.svg: - * data/icons/scalable/status/Makefile.am: - - Add new "bookmark-view" icon from Andreas Nilsson, replacing - "web-bookmarks". Move images source from xcf.bz2 to xcf and - use the same name of the named icon, including them in dist. - - * lib/ephy-stock-icons.h: - - Use "bookmark-view" named icon for EPHY_STOCK_BOOKMARKS. - - ChangeLog | 35 + - data/icons/16x16/actions/Makefile.am | 9 +- - data/icons/16x16/actions/bookmark-view.png | Bin 0 -> 474 bytes - data/icons/16x16/actions/bookmark-view.xcf | Bin 0 -> 1969 bytes - data/icons/16x16/actions/download.xcf | Bin 0 -> 2075 bytes - data/icons/16x16/actions/epiphany-download.xcf.bz2 | Bin 1394 -> 0 bytes - data/icons/16x16/status/Makefile.am | 7 +- - data/icons/16x16/status/popup-hidden.xcf | Bin 0 -> 2282 bytes - data/icons/16x16/status/popup-hidden.xcf.bz2 | Bin 1441 -> 0 bytes - data/icons/22x22/actions/Makefile.am | 3 + - data/icons/22x22/actions/bookmark-view.png | Bin 0 -> 595 bytes - data/icons/22x22/actions/bookmark-view.xcf | Bin 0 -> 2461 bytes - data/icons/22x22/actions/download.xcf | Bin 0 -> 4638 bytes - data/icons/22x22/actions/epiphany-download.xcf.bz2 | Bin 2899 -> 0 bytes - data/icons/22x22/status/Makefile.am | 7 +- - data/icons/22x22/status/popup-hidden.xcf | Bin 0 -> 2879 bytes - data/icons/22x22/status/popup-hidden.xcf.bz2 | Bin 1624 -> 0 bytes - data/icons/24x24/actions/Makefile.am | 2 +- - data/icons/24x24/actions/README | 13 + - data/icons/24x24/actions/bookmark-view.png | Bin 0 -> 585 bytes - data/icons/24x24/actions/web-bookmarks.png | Bin 1287 -> 0 bytes - data/icons/32x32/actions/Makefile.am | 2 +- - data/icons/32x32/actions/download.svg | 985 +++++++++++++++++++++ - data/icons/32x32/actions/epiphany-download.svg | 985 --------------------- - data/icons/scalable/status/Makefile.am | 1 + - lib/ephy-stock-icons.h | 2 +- - 26 files changed, 1060 insertions(+), 991 deletions(-) - -commit 71945818b331bed419641be4ac4be550c204b642 -Author: Christian Persch -Date: Wed Dec 13 17:49:57 2006 +0000 - - Dist the icon sources. - - 2006-12-13 Christian Persch - - * 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/32x32/status/Makefile.am: - - Dist the icon sources. - - ChangeLog | 10 ++++++++++ - data/icons/16x16/actions/Makefile.am | 1 + - data/icons/22x22/actions/Makefile.am | 7 ++++++- - data/icons/24x24/actions/Makefile.am | 4 +++- - data/icons/32x32/actions/Makefile.am | 7 ++++++- - data/icons/32x32/status/Makefile.am | 7 ++++++- - 6 files changed, 32 insertions(+), 4 deletions(-) - -commit c697183a9086194f60a2960560fab9db05bb7138 -Author: Luca Ferretti -Date: Wed Dec 13 15:19:23 2006 +0000 - - Add image sources too. - - 2006-12-13 Luca Ferretti - - * data/icons/16x16/actions/history-view.svg: - * data/icons/22x22/actions/history-view.svg: - - Add image sources too. - - ChangeLog | 7 + - data/icons/16x16/actions/history-view.svg | 153 ++++++++++++++++++ - data/icons/22x22/actions/history-view.svg | 255 ++++++++++++++++++++++++++++++ - 3 files changed, 415 insertions(+) - -commit 2381a4963d387de880ac88edc09d8b1df75caef1 -Author: Luca Ferretti -Date: Wed Dec 13 15:14:52 2006 +0000 - - Updated icon for history from Andreas Nilsson. - - 2006-12-13 Luca Ferretti - - * data/icons/16x16/actions/Makefile.am: - * data/icons/16x16/actions/history-view.png: - * data/icons/22x22/actions/Makefile.am: - * data/icons/22x22/actions/history-view.png: - * data/icons/24x24/actions/Makefile.am: - * data/icons/24x24/actions/history-view.png: - * data/icons/24x24/actions/web-history.png: - - Updated icon for history from Andreas Nilsson. - - * lib/ephy-stock-icons.h: - - Use "history-view" as named icon. - - ChangeLog | 16 ++++++++++++++++ - data/icons/16x16/actions/Makefile.am | 3 ++- - data/icons/16x16/actions/history-view.png | Bin 0 -> 842 bytes - data/icons/22x22/actions/Makefile.am | 3 ++- - data/icons/22x22/actions/history-view.png | Bin 0 -> 1498 bytes - data/icons/24x24/actions/Makefile.am | 2 +- - data/icons/24x24/actions/history-view.png | Bin 0 -> 1511 bytes - data/icons/24x24/actions/web-history.png | Bin 1513 -> 0 bytes - lib/ephy-stock-icons.h | 2 +- - 9 files changed, 22 insertions(+), 4 deletions(-) - -commit 0264129720758f0d13f44ea3f6a0783b5f03746c -Author: Jakub Friedl -Date: Wed Dec 13 12:57:03 2006 +0000 - - Fixed bug in Czech translation: #383665 - - 2006-12-13 Jakub Friedl - - * cs.po: Fixed bug in Czech translation: #383665 - - po/ChangeLog | 4 ++++ - po/cs.po | 22 +++++++++++----------- - 2 files changed, 15 insertions(+), 11 deletions(-) - -commit 14a1d4cf5a0af969639ae0962c48a8716d20f275 -Author: Christian Persch -Date: Mon Dec 11 18:28:04 2006 +0000 - - Remove unnecessary rules. - - 2006-12-11 Christian Persch - - * data/icons/16x16/Makefile.am: - * data/icons/16x16/actions/Makefile.am: - * data/icons/16x16/status/Makefile.am: - * data/icons/22x22/Makefile.am: - * data/icons/22x22/actions/Makefile.am: - * data/icons/22x22/status/Makefile.am: - * data/icons/24x24/Makefile.am: - * data/icons/24x24/actions/Makefile.am: - * data/icons/24x24/status/Makefile.am: - * data/icons/32x32/Makefile.am: - * data/icons/32x32/actions/Makefile.am: - * data/icons/32x32/status/Makefile.am: - * data/icons/Makefile.am: - * data/icons/scalable/Makefile.am: - * data/icons/scalable/actions/Makefile.am: - * data/icons/scalable/status/Makefile.am: - - Remove unnecessary rules. - - ChangeLog | 21 +++++++++++++++++++++ - data/icons/16x16/Makefile.am | 3 --- - data/icons/16x16/actions/Makefile.am | 14 +------------- - data/icons/16x16/status/Makefile.am | 14 +------------- - data/icons/22x22/Makefile.am | 3 --- - data/icons/22x22/actions/Makefile.am | 14 +------------- - data/icons/22x22/status/Makefile.am | 14 +------------- - data/icons/24x24/Makefile.am | 3 --- - data/icons/24x24/actions/Makefile.am | 15 ++------------- - data/icons/24x24/status/Makefile.am | 14 +------------- - data/icons/32x32/Makefile.am | 3 --- - data/icons/32x32/actions/Makefile.am | 14 +------------- - data/icons/32x32/status/Makefile.am | 14 +------------- - data/icons/Makefile.am | 4 ---- - data/icons/scalable/Makefile.am | 3 --- - data/icons/scalable/actions/Makefile.am | 13 +------------ - data/icons/scalable/status/Makefile.am | 14 +------------- - 17 files changed, 32 insertions(+), 148 deletions(-) - -commit d020fba3f86928f6412723bc95cf6e746c7d8454 -Author: Kjartan Maraas -Date: Mon Dec 11 00:19:27 2006 +0000 - - Updated Norwegian bokmål translation. - - 2006-12-11 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - po/ChangeLog | 4 + - po/nb.po | 498 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 253 insertions(+), 249 deletions(-) - -commit ce7c2439181a971ed21ffc57ea1f3fe2473cb55c -Author: Christian Persch -Date: Fri Dec 8 19:34:16 2006 +0000 - - Try to work with trunk - - embed/mozilla/mozilla-embed-single.cpp | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 814e26c5d3b13c31a95e5afa10a4731174477ee0 -Author: Christian Persch -Date: Fri Dec 8 18:09:38 2006 +0000 - - Move code around. - - 2006-12-08 Christian Persch - - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * src/ephy-main.c: (main): - - Move code around. - - ChangeLog | 7 +++++++ - lib/ephy-stock-icons.c | 7 +++++++ - src/ephy-main.c | 6 ------ - 3 files changed, 14 insertions(+), 6 deletions(-) - -commit 6ed75cd498aee194061daaa68e5bd4d5121e1cbb -Author: Luca Ferretti -Date: Fri Dec 8 16:41:57 2006 +0000 - - s/epiphany-download/download\ - - 2006-12-08 Luca Ferretti - - * data/icons/16x16/actions/Makefile.am: - * data/icons/22x22/actions/Makefile.am: - * data/icons/32x32/actions/Makefile.am: - * data/icons/scalable/actions/Makefile.am: - - s/epiphany-download/download\ - - ChangeLog | 9 +++++++++ - data/icons/16x16/actions/Makefile.am | 2 +- - data/icons/22x22/actions/Makefile.am | 2 +- - data/icons/32x32/actions/Makefile.am | 2 +- - data/icons/scalable/actions/Makefile.am | 2 +- - 5 files changed, 13 insertions(+), 4 deletions(-) - -commit 384ab4b4f90368cd02ce65ef0dd4336dbbcf6166 -Author: Luca Ferretti -Date: Fri Dec 8 16:37:53 2006 +0000 - - Restore this, still used in bookmarks .desktop file. - - 2006-12-08 Luca Ferretti - - * data/art/epiphany-bookmarks.png: - - Restore this, still used in bookmarks .desktop file. - - ChangeLog | 6 ++++++ - data/art/epiphany-bookmarks.png | Bin 0 -> 1287 bytes - 2 files changed, 6 insertions(+) - -commit c01e5ee5e85c99a56496c75f2bbcc7b00a57c707 -Author: Luca Ferretti -Date: Fri Dec 8 16:33:46 2006 +0000 - - Remove old stock icons - - 2006-12-08 Luca Ferretti - - * data/art/Makefile.am: - * data/art/epiphany-bookmarks.png: - * data/art/epiphany-download.png: - * data/art/epiphany-entry.png: - * data/art/epiphany-history.png: - * data/art/epiphany-popup-hidden.png: - * data/art/epiphany-popup-hidden.svg: - - Remove old stock icons - - * data/icons/16x16/actions/download.png: - * data/icons/16x16/actions/epiphany-download.png: - * data/icons/22x22/actions/download.png: - * data/icons/22x22/actions/epiphany-download.png: - * data/icons/24x24/actions/Makefile.am: - * data/icons/24x24/actions/download.png: - * data/icons/24x24/actions/epiphany-download.png: - * data/icons/24x24/actions/location-entry.png: - * data/icons/24x24/actions/web-bookmarks.png: - * data/icons/24x24/actions/web-history.png: - * data/icons/32x32/actions/download.png: - * data/icons/32x32/actions/epiphany-download.png: - * data/icons/scalable/actions/download.svg: - * data/icons/scalable/actions/epiphany-download.svg: - - Move old stock icons here and rename "epiphany-download" - to "download" - - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - - Use gtk_icon_source_set_icon_name for EPHY_STOCK* - - * lib/ephy-stock-icons.h: - - Update named icons to installed icons. - - * src/ephy-main.c: (main): - - Call gtk_icon_theme_append_search_path to add custom Ephy - directory for themed icons. - - This should complete the icon theme support to Epiphany. - Of course there is still some work to do, as well as - provide fresh icons at all sizes and define the names. - - ChangeLog | 47 ++ - data/art/Makefile.am | 7 +- - data/art/epiphany-bookmarks.png | Bin 1287 -> 0 bytes - data/art/epiphany-download.png | Bin 440 -> 0 bytes - data/art/epiphany-entry.png | Bin 433 -> 0 bytes - data/art/epiphany-history.png | Bin 1513 -> 0 bytes - data/art/epiphany-popup-hidden.png | Bin 1365 -> 0 bytes - data/art/epiphany-popup-hidden.svg | 218 ----- - data/icons/16x16/actions/download.png | Bin 0 -> 687 bytes - data/icons/16x16/actions/epiphany-download.png | Bin 687 -> 0 bytes - data/icons/22x22/actions/download.png | Bin 0 -> 1127 bytes - data/icons/22x22/actions/epiphany-download.png | Bin 1127 -> 0 bytes - data/icons/24x24/actions/Makefile.am | 14 +- - data/icons/24x24/actions/download.png | Bin 0 -> 1197 bytes - data/icons/24x24/actions/epiphany-download.png | Bin 1197 -> 0 bytes - data/icons/24x24/actions/location-entry.png | Bin 0 -> 433 bytes - data/icons/24x24/actions/web-bookmarks.png | Bin 0 -> 1287 bytes - data/icons/24x24/actions/web-history.png | Bin 0 -> 1513 bytes - data/icons/32x32/actions/download.png | Bin 0 -> 1920 bytes - data/icons/32x32/actions/epiphany-download.png | Bin 1920 -> 0 bytes - data/icons/scalable/actions/download.svg | 982 ++++++++++++++++++++++ - data/icons/scalable/actions/epiphany-download.svg | 982 ---------------------- - lib/ephy-stock-icons.c | 6 - - lib/ephy-stock-icons.h | 10 +- - src/ephy-main.c | 6 + - 25 files changed, 1049 insertions(+), 1223 deletions(-) - -commit aee1874ead98b8972fba7e5c708cc9d8896f0ac0 -Author: Luca Ferretti -Date: Fri Dec 8 15:19:08 2006 +0000 - - Silent cvs. - - 2006-12-08 Luca Ferretti - - * data/icons/.cvsignore: - * data/icons/*/.cvsignore: - Silent cvs. - - ChangeLog | 6 ++++++ - data/icons/.cvsignore | 2 ++ - data/icons/16x16/.cvsignore | 2 ++ - data/icons/16x16/actions/.cvsignore | 2 ++ - data/icons/16x16/status/.cvsignore | 2 ++ - data/icons/22x22/.cvsignore | 2 ++ - data/icons/22x22/actions/.cvsignore | 2 ++ - data/icons/22x22/status/.cvsignore | 2 ++ - data/icons/24x24/.cvsignore | 2 ++ - data/icons/24x24/actions/.cvsignore | 2 ++ - data/icons/24x24/status/.cvsignore | 2 ++ - data/icons/32x32/.cvsignore | 2 ++ - data/icons/32x32/actions/.cvsignore | 2 ++ - data/icons/32x32/status/.cvsignore | 2 ++ - data/icons/scalable/.cvsignore | 2 ++ - data/icons/scalable/actions/.cvsignore | 2 ++ - data/icons/scalable/status/.cvsignore | 2 ++ - 17 files changed, 38 insertions(+) - -commit 5552f1af664504c928f4d7222973048392dc46ec -Author: Lucas Rocha -Date: Tue Dec 5 22:18:16 2006 +0000 - - Updated Brazilian Portuguese translation by Leonardo Ferreira Fontenelle - - 2006-12-06 Lucas Rocha - - * pt_BR.po: Updated Brazilian Portuguese translation - by Leonardo Ferreira Fontenelle - - po/ChangeLog | 5 + - po/pt_BR.po | 1716 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1004 insertions(+), 717 deletions(-) - -commit 1fa1fa06bcb627b1ad2250f49c64f6869261fc2f -Author: Wouter Bolsterlee -Date: Tue Dec 5 13:43:05 2006 +0000 - - Ctrl-middle click on a bookmarm should open a new tab. Fixes bug #334463, - - 2006-12-05 Wouter Bolsterlee - - * src/ephy-link.c: (ephy_link_flags_from_current_event): - - Ctrl-middle click on a bookmarm should open a new tab. - Fixes bug #334463, (trivial) patch by Diego Escalante - Urrelo). - - ChangeLog | 8 ++++++++ - src/ephy-link.c | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 87fb2371ff91fba51a93164fa6bf887bf0971d47 -Author: Luca Ferretti -Date: Tue Dec 5 10:13:09 2006 +0000 - - Add "popup-hidden" named icon. - - 2006-12-05 Luca Ferretti - - * configure.ac: - * data/icons//Makefile.am: - * data/icons//status/popup-hidden.*: - * data/icons//status/Makefile.am: - - Add "popup-hidden" named icon. - - ChangeLog | 9 + - configure.ac | 5 + - data/icons/16x16/Makefile.am | 3 +- - data/icons/16x16/status/Makefile.am | 22 ++ - data/icons/16x16/status/popup-hidden.png | Bin 0 -> 327 bytes - data/icons/16x16/status/popup-hidden.xcf.bz2 | Bin 0 -> 1441 bytes - data/icons/22x22/Makefile.am | 3 +- - data/icons/22x22/status/Makefile.am | 22 ++ - data/icons/22x22/status/popup-hidden.png | Bin 0 -> 325 bytes - data/icons/22x22/status/popup-hidden.xcf.bz2 | Bin 0 -> 1624 bytes - data/icons/24x24/Makefile.am | 3 +- - data/icons/24x24/status/Makefile.am | 22 ++ - data/icons/24x24/status/popup-hidden.png | Bin 0 -> 378 bytes - data/icons/32x32/Makefile.am | 3 +- - data/icons/32x32/status/Makefile.am | 22 ++ - data/icons/32x32/status/popup-hidden.png | Bin 0 -> 1028 bytes - data/icons/32x32/status/popup-hidden.svg | 372 +++++++++++++++++++++++++++ - data/icons/scalable/Makefile.am | 3 +- - data/icons/scalable/status/Makefile.am | 22 ++ - data/icons/scalable/status/popup-hidden.svg | 367 ++++++++++++++++++++++++++ - 20 files changed, 873 insertions(+), 5 deletions(-) - -commit 9ae8e2f99f1faca22a09dc6752e335a87ce0a65e -Author: Christian Persch -Date: Tue Dec 5 00:01:25 2006 +0000 - - NEWS update from diguito - - NEWS | 31 +++++++++++++++++++++++++++++++ - 1 file changed, 31 insertions(+) - -commit baf31a17961a5091b0e17c3532f533527ba920d9 -Author: Christian Persch -Date: Mon Dec 4 22:36:23 2006 +0000 - - Fix typo - - lib/widgets/ephy-spinner.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit f9284c227422409aa9e8583beaddd86a3945eb00 -Author: Christian Persch -Date: Mon Dec 4 22:26:34 2006 +0000 - - Post-release version bump. - - 2006-12-04 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit cf3fc9fa31addf656c918c07e1dbc177ea4daee5 -Author: Christian Persch -Date: Mon Dec 4 22:23:06 2006 +0000 - - === Release 2.17.3 === - - 2006-12-04 Christian Persch - - === Release 2.17.3 === - - ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit e70df82868d7b3a6f17a1ebcedc54b2175749504 -Author: Christian Persch -Date: Mon Dec 4 22:10:40 2006 +0000 - - Version 2.17.3. - - 2006-12-04 Christian Persch - - * configure.ac: - - Version 2.17.3. - - * embed/mozilla/GtkNSSDialogs.cpp: - - Use NULL for gtk_label_new instead of "". - - * lib/ephy-print-utils.c: - (ephy_print_utils_page_setup_new_from_key_file): - - Fix possible invalid free. - - * lib/widgets/ephy-spinner.c: (ephy_spinner_images_unref), - (ephy_spinner_images_load), (ephy_spinner_load_images), - (ephy_spinner_expose), (bump_spinner_frame_cb), - (ephy_spinner_start), (ephy_spinner_stop): - - Fix compliance with icon theme spec by skipping the first frame in the - animation when in spinning mode. Bug #382207. - Try the "process-working" icon first and fall back to "gnome-spinner" - when it's not available. - - * m4/gecko.m4: - - Updated. - - 2006-12-04 Luca Ferretti - - ChangeLog | 29 ++++++++++++ - configure.ac | 2 +- - embed/mozilla/GeckoPrintSession.cpp | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - lib/egg/.cvsignore | 1 + - lib/ephy-print-utils.c | 2 +- - lib/widgets/ephy-spinner.c | 88 ++++++++++++------------------------- - m4/gecko.m4 | 5 ++- - src/ephy-statusbar.c | 1 + - src/popup-commands.c | 1 + - 10 files changed, 68 insertions(+), 65 deletions(-) - -commit 060e1e90fc45b0ec50466fbd30f988fe51440a7a -Author: Luca Ferretti -Date: Mon Dec 4 09:20:12 2006 +0000 - - Initial commit to provide Epiphany icons as themed icons. Files will be - - 2006-12-04 Luca Ferretti - - * configure.in: - * data/Makefile.am: - * data/icons/*/epiphany-download*: - * data/icons/*Makefile.am*: - - Initial commit to provide Epiphany icons as themed icons. - Files will be installed under $prefix/share/epiphany/icons/hicolor/ - as per http://wayofthemonkey.com/index.php?date=2006-11-15&month=11&year=2006 - - By now only epiphany-download is available, but currently unused - in the UI. More icons are code changes will come. - - ChangeLog | 14 + - configure.ac | 11 + - data/Makefile.am | 2 +- - data/icons/16x16/Makefile.am | 5 + - data/icons/16x16/actions/Makefile.am | 22 + - data/icons/16x16/actions/epiphany-download.png | Bin 0 -> 687 bytes - data/icons/16x16/actions/epiphany-download.xcf.bz2 | Bin 0 -> 1394 bytes - data/icons/22x22/Makefile.am | 5 + - data/icons/22x22/actions/Makefile.am | 22 + - data/icons/22x22/actions/epiphany-download.png | Bin 0 -> 1127 bytes - data/icons/22x22/actions/epiphany-download.xcf.bz2 | Bin 0 -> 2899 bytes - data/icons/24x24/Makefile.am | 5 + - data/icons/24x24/actions/Makefile.am | 22 + - data/icons/24x24/actions/epiphany-download.png | Bin 0 -> 1197 bytes - data/icons/32x32/Makefile.am | 5 + - data/icons/32x32/actions/Makefile.am | 22 + - data/icons/32x32/actions/epiphany-download.png | Bin 0 -> 1920 bytes - data/icons/32x32/actions/epiphany-download.svg | 985 +++++++++++++++++++++ - data/icons/Makefile.am | 10 + - data/icons/scalable/Makefile.am | 5 + - data/icons/scalable/actions/Makefile.am | 22 + - data/icons/scalable/actions/epiphany-download.svg | 982 ++++++++++++++++++++ - 22 files changed, 2138 insertions(+), 1 deletion(-) - -commit 6c786a9ce6a02bf5cf2d3b7ec01bd37b7912df0a -Author: Christian Persch -Date: Sun Dec 3 19:05:19 2006 +0000 - - Make progressbar smaller. Bug #368759. - - 2006-12-03 Christian Persch - - * src/ephy-statusbar.c: (ephy_statusbar_size_allocate), - (ephy_statusbar_class_init), (create_caret_indicator), - (create_icon_frame), (create_statusbar_progress), - (ephy_statusbar_init), (ephy_statusbar_set_popups_state), - (sync_visibility), (ephy_statusbar_add_widget), - (ephy_statusbar_remove_widget), - (ephy_statusbar_get_security_frame): - * src/ephy-statusbar.h: - - Make progressbar smaller. Bug #368759. - - ChangeLog | 13 +++ - src/ephy-statusbar.c | 250 ++++++++++++++++++++++++++++----------------------- - src/ephy-statusbar.h | 2 - - 3 files changed, 152 insertions(+), 113 deletions(-) - -commit 6988a01b54ec16f2d150309d29c30a39ca9c482a -Author: Christian Persch -Date: Sat Dec 2 20:47:20 2006 +0000 - - More pwdmgr prefs - - data/default-prefs-common.js | 1 + - 1 file changed, 1 insertion(+) - -commit 715965df6b3f8a59098aa3bfdea6c05e8931ac9b -Author: Christian Persch -Date: Sat Dec 2 17:51:45 2006 +0000 - - Add "si" to locales always using pango. Patch by harshula@gmail.com, bug - - 2006-12-02 Christian Persch - - * data/epiphany-pango.schemas: - - Add "si" to locales always using pango. Patch by harshula@gmail.com, - bug #361538. - - 2006-12-01 Christian Persch - - * embed/ephy-embed-find.c: (ephy_embed_find_find_again): - * embed/ephy-embed-find.h: - * embed/mozilla/EphyFind.cpp: - * embed/mozilla/EphyFind.h: - * embed/mozilla/mozilla-embed-find.cpp: - * src/ephy-find-toolbar.c: (ephy_find_toolbar_find_next), - (ephy_find_toolbar_find_previous): - - Another mozilla API change. - - * m4/gecko.m4: - - Add -lxpcomglue_s to EXTRA_LIBS on trunk. - - 2006-12-01 Christian Persch - - * data/mime-types-permissions.xml: - - Add text/google-video-pointer and variant. - - 2006-12-01 Christian Persch - - * data/mime-types-permissions.xml: - - Add flv mime types. Bug #381099. - - 2006-11-17 Benjamin Berg - - * lib/widgets/ephy-spinner.c: (ephy_spinner_start): - Lower the priority of the spinner animation so that the animation - does not stop page loading. Fixes bug #374623. - - 2006-11-13 Wouter Bolsterlee - - * data/epiphany-fonts.schemas: - * data/generate-font-schemas.py: - - Change default font sizes to match other popular - browsers. Bug #346026 (patch by Diego Escalante Urrelo). - - 2006-11-12 Jean-François Rameau - - * src/ephy-navigation-action.c: (activate_by_history_index): - * src/ephy-shell.c: (ephy_shell_new_tab_full): - - Remove a double call to history copy when middle-clicking on back/forward buttons. - Fix bug #362882. - - 2006-11-12 Ryan Lortie - - * src/ephy-notebook.c (build_tab_label): Remove redundant - gtk_button_set_relief call. Fixes bug #372760. - - 2006-11-10 Wouter Bolsterlee - - * autogen.sh: Add useful warning when gnome-autogen.sh - - ChangeLog | 7 +++++++ - data/epiphany-pango.schemas | 3 +++ - 2 files changed, 10 insertions(+) - -commit 4521b7af2f9f9b9019486cb0ed9cdade37b6fd50 -Author: Christian Persch -Date: Fri Dec 1 21:29:20 2006 +0000 - - Another mozilla API change. - - 2006-12-01 Christian Persch - - * embed/ephy-embed-find.c: (ephy_embed_find_find_again): - * embed/ephy-embed-find.h: - * embed/mozilla/EphyFind.cpp: - * embed/mozilla/EphyFind.h: - * embed/mozilla/mozilla-embed-find.cpp: - * src/ephy-find-toolbar.c: (ephy_find_toolbar_find_next), - (ephy_find_toolbar_find_previous): - - Another mozilla API change. - - * m4/gecko.m4: - - Add -lxpcomglue_s to EXTRA_LIBS on trunk. - - ChangeLog | 16 ++++++++++++++++ - embed/ephy-embed-find.c | 6 ++++-- - embed/ephy-embed-find.h | 6 ++++-- - embed/mozilla/EphyFind.cpp | 5 +++-- - embed/mozilla/EphyFind.h | 3 ++- - embed/mozilla/mozilla-embed-find.cpp | 5 +++-- - m4/gecko.m4 | 4 +++- - src/ephy-find-toolbar.c | 22 ++++++++++++++-------- - 8 files changed, 49 insertions(+), 18 deletions(-) - -commit fb2c1c3d03f4333971eb1048bd3992ba20f45577 -Author: Christian Persch -Date: Fri Dec 1 14:10:32 2006 +0000 - - Add text/google-video-pointer and variant. - - 2006-12-01 Christian Persch - - * data/mime-types-permissions.xml: - - Add text/google-video-pointer and variant. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 2 ++ - 2 files changed, 8 insertions(+) - -commit f7977fd3fe8a0408f10303ca9bb62d7225d47a5b -Author: Christian Persch -Date: Fri Dec 1 12:37:46 2006 +0000 - - Add flv mime types. Bug #381099. - - 2006-12-01 Christian Persch - - * data/mime-types-permissions.xml: - - Add flv mime types. Bug #381099. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 2 ++ - 2 files changed, 8 insertions(+) - -commit 52e6ea5422c03789e846a2644292e2065bc52af4 -Author: Jakub Friedl -Date: Fri Dec 1 08:21:01 2006 +0000 - - Fixed bug #380862. - - 2006-12-01 Jakub Friedl - - * cs.po: Fixed bug #380862. - - po/ChangeLog | 4 + - po/cs.po | 600 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 316 insertions(+), 288 deletions(-) - -commit c1ffc7bfa520f26c0dfbc94d3c1a7ed79030040c -Author: Christian Persch -Date: Wed Nov 29 21:08:06 2006 +0000 - - Shut up - - help/it/.cvsignore | 2 ++ - 1 file changed, 2 insertions(+) - -commit 39f6d9b2c62dadceaa6c3ec283adb8fe1ad3244a -Author: Christophe Bliard -Date: Sun Nov 19 15:19:50 2006 +0000 - - Updated French translation. Added French figures. - - 2006-11-19 Christophe Bliard - - * fr/fr.po: Updated French translation. - * fr/figures/*png: Added French figures. - - help/ChangeLog | 5 + - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 4034 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 1500 bytes - help/fr/figures/ephy-history-window-screenshot.png | Bin 0 -> 29127 bytes - help/fr/figures/ephy-screenshot.png | Bin 0 -> 412461 bytes - help/fr/fr.po | 1903 +++++++++++--------- - 6 files changed, 1106 insertions(+), 802 deletions(-) - -commit 1c3ef5b77f178fb640b8721a264efdbed82883dd -Author: Benjamin Berg -Date: Fri Nov 17 18:01:31 2006 +0000 - - Lower the priority of the spinner animation so that the animation does not - - 2006-11-17 Benjamin Berg - - * lib/widgets/ephy-spinner.c: (ephy_spinner_start): - Lower the priority of the spinner animation so that the animation - does not stop page loading. Fixes bug #374623. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-spinner.c | 8 +++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit 2d5f4ed9f47616e86ae00c8a99da26a2b8589177 -Author: Nickolay V. Shmyrev -Date: Thu Nov 16 16:54:40 2006 +0000 - - Fix translation bug - - po/ru.po | 466 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 233 insertions(+), 233 deletions(-) - -commit 45dbec2cb7e1d64e45434cbcf6cee4c81b65a994 -Author: Yair Hershkovitz -Date: Tue Nov 14 16:03:44 2006 +0000 - - updated hebrew translation - - po/ChangeLog | 4 + - po/he.po | 2853 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1592 insertions(+), 1265 deletions(-) - -commit 8332652537341cb2c4e9920f1fde52b698899208 -Author: Shaun McCance -Date: Mon Nov 13 18:40:49 2006 +0000 - - - Added revhistory - - * C/epiphany.xml: - - Added revhistory - - help/C/epiphany.xml | 6 ++++++ - help/ChangeLog | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 0fd49f5f63b2211fcb1a35c847839bcd2679e21e -Author: Wouter Bolsterlee -Date: Mon Nov 13 18:09:14 2006 +0000 - - Add maintainer role to Vic. Hopefully fixes #374778. - - 2006-11-13 Wouter Bolsterlee - - * C/epiphany.xml: Add maintainer role to Vic. Hopefully - fixes #374778. - - help/C/epiphany.xml | 2 +- - help/ChangeLog | 5 +++++ - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit f4fc5f4f55d0ed271e89cf89ab1a22f5290a0a57 -Author: Wouter Bolsterlee -Date: Mon Nov 13 15:28:45 2006 +0000 - - Change default font sizes to match other popular browsers. Bug #346026 - - 2006-11-13 Wouter Bolsterlee - - * data/epiphany-fonts.schemas: - * data/generate-font-schemas.py: - - Change default font sizes to match other popular - browsers. Bug #346026 (patch by Diego Escalante Urrelo). - - ChangeLog | 8 ++++ - data/epiphany-fonts.schemas | 104 +++++++++++++++++++++--------------------- - data/generate-font-schemas.py | 4 +- - 3 files changed, 62 insertions(+), 54 deletions(-) - -commit c6d4a2648b2221359d67f5d04b4aaa565efff640 -Author: Jean-François Rameau -Date: Sun Nov 12 21:03:42 2006 +0000 - - Remove a double call to history copy when middle-clicking on back/forward - - 2006-11-12 Jean-François Rameau - - * src/ephy-navigation-action.c: (activate_by_history_index): - * src/ephy-shell.c: (ephy_shell_new_tab_full): - - Remove a double call to history copy when middle-clicking on back/forward buttons. - Fix bug #362882. - - ChangeLog | 8 ++++++++ - src/ephy-navigation-action.c | 1 - - src/ephy-shell.c | 18 +++++++++--------- - 3 files changed, 17 insertions(+), 10 deletions(-) - -commit 9109b29690cf37bbd995367900775ce015406f80 -Author: Ryan Lortie -Date: Sun Nov 12 13:26:52 2006 +0000 - - Remove redundant gtk_button_set_relief call. Fixes bug #372760. - - 2006-11-12 Ryan Lortie - - * src/ephy-notebook.c (build_tab_label): Remove redundant - gtk_button_set_relief call. Fixes bug #372760. - - ChangeLog | 5 +++++ - src/ephy-notebook.c | 1 - - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 3869c2d701c7d66e5ce6582196a4caba12318d21 -Author: Francisco Javier F. Serrador -Date: Sat Nov 11 16:04:30 2006 +0000 - - Updated Spanish translation. - - 2006-11-11 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 506 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 257 insertions(+), 253 deletions(-) - -commit 3cb06038e819fb031b8a4b1d66b1463741cf490c -Author: Francisco Javier F. Serrador -Date: Sat Nov 11 16:02:39 2006 +0000 - - More translation improvements. Making screenshots look prettier. - - 2006-11-11 Francisco Javier F. Serrador - - * es/es.po: More translation improvements. - * es/figures/*.png: Making screenshots look prettier. - - help/ChangeLog | 10 + - help/es/es.po | 955 ++++++++++----------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 3664 -> 5421 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1307 -> 2826 bytes - help/es/figures/ephy-history-window-screenshot.png | Bin 32633 -> 54277 bytes - help/es/figures/ephy-screenshot.png | Bin 68531 -> 80770 bytes - 6 files changed, 468 insertions(+), 497 deletions(-) - -commit a56baf39ca79fd012b1e592e80352324219791a5 -Author: Wouter Bolsterlee -Date: Fri Nov 10 21:39:17 2006 +0000 - - Add useful warning when gnome-autogen.sh couldn't be found. - - 2006-11-10 Wouter Bolsterlee - - * autogen.sh: Add useful warning when gnome-autogen.sh - couldn't be found. - - ChangeLog | 5 +++++ - autogen.sh | 9 ++++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit c78a3dd23bedb9826731708ffea75c19cabfcb47 -Author: Wouter Bolsterlee -Date: Fri Nov 10 14:49:57 2006 +0000 - - Also disable the "Open Image" context menu action if the desktop wide - - 2006-11-10 Wouter Bolsterlee - - * src/ephy-lockdown.c: (update_window): - Also disable the "Open Image" context menu action if the - desktop wide "disable save to disk" lockdown key is - enabled. Reported on IRC by Gerald E Butler. - - ChangeLog | 7 +++++++ - src/ephy-lockdown.c | 2 ++ - 2 files changed, 9 insertions(+) - -commit 66583b3c9ca084abf734b50026ef5c7a6359d5fd -Author: Luca Ferretti -Date: Fri Nov 10 10:24:30 2006 +0000 - - Added it to DOC_LINGUAS. Added partiale Italian translation. Added. - - 2006-11-10 Luca Ferretti - - * Makefile.am: Added it to DOC_LINGUAS. - * it/it.po: Added partiale Italian translation. - * it/figures/ephy-screenshot.png: Added. - - help/ChangeLog | 6 + - help/Makefile.am | 2 +- - help/it/figures/ephy-screenshot.png | Bin 0 -> 61346 bytes - help/it/it.po | 2548 +++++++++++++++++++++++++++++++++++ - 4 files changed, 2555 insertions(+), 1 deletion(-) - -commit 3dd50c449efdc79910c2043e60db1a1e946eb565 -Author: Wouter Bolsterlee -Date: Thu Nov 9 23:09:50 2006 +0000 - - Add some more F5 shortcuts to handle all the MSIE "refresh page" bindings. - - 2006-11-10 Wouter Bolsterlee - - * src/ephy-window.c: - Add some more F5 shortcuts to handle all the MSIE - "refresh page" bindings. Fixes bug #372906. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 56a0814875d196e6e19169aae0115357081a881c -Author: Christian Persch -Date: Mon Nov 6 23:13:40 2006 +0000 - - NEWS update from reinouts - - NEWS | 28 ++++++++++++++++++++++++++++ - 1 file changed, 28 insertions(+) - -commit 924c5184289d994a4335a45bc4cd28e00554742d -Author: Christian Persch -Date: Mon Nov 6 14:22:27 2006 +0000 - - Split ChangeLog. - - 2006-11-06 Christian Persch - - * ChangeLog-20061106: - * Makefile.am: - - Split ChangeLog. - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6215 +-------------------------------------------------- - ChangeLog-20061106 | 6219 ++++++++++++++++++++++++++++++++++++++++++++++++++++ - Makefile.am | 3 +- - configure.ac | 2 +- - 4 files changed, 6225 insertions(+), 6214 deletions(-) - -commit b53e337f63f298f74b925f1a55355680be86189e -Author: Christian Persch -Date: Mon Nov 6 13:45:07 2006 +0000 - - === Release 2.17.2 === - - 2006-11-06 Christian Persch - - === Release 2.17.2 === - - * configure.ac: - * data/default-prefs-common.js: - * src/ephy-notebook.c: (build_tab_label): - - ChangeLog | 8 ++++ - configure.ac | 2 +- - data/default-prefs-common.js | 1 + - doc/reference/tmpl/ephy-embed.sgml | 84 +++----------------------------------- - doc/reference/tmpl/ephy-shell.sgml | 1 + - src/ephy-notebook.c | 2 +- - 6 files changed, 17 insertions(+), 81 deletions(-) - -commit b5c7b53bff9372ff4166e9779c5f89644bd4e521 -Author: Christian Persch -Date: Sat Nov 4 22:39:01 2006 +0000 - - This is entirely my code, not marco's - - lib/ephy-print-utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b5d7734f32155c5b068a6e34ad4aea8e1655a7ba -Author: Christian Persch -Date: Sat Nov 4 17:35:19 2006 +0000 - - Fix printing of page ranges. - - 2006-11-04 Christian Persch - - * embed/mozilla/GeckoPrintService.cpp: - - Fix printing of page ranges. - - ChangeLog | 6 ++++++ - embed/mozilla/GeckoPrintService.cpp | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit e9c6025c8d940bfc0d7b436489961f2fa45c8125 -Author: Christian Persch -Date: Fri Nov 3 19:13:58 2006 +0000 - - Remove debug spew. - - 2006-11-03 Christian Persch - - * lib/ephy-spell-check.c: (ephy_spell_check_check_word): - - Remove debug spew. - - ChangeLog | 6 ++++++ - lib/ephy-spell-check.c | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 8bbe367169cf024ce5eb85381eaf4e8470e0f989 -Author: Daniel Nylander -Date: Tue Oct 31 19:38:53 2006 +0000 - - Updated Swedish translation. Added screenshots. - - 2006-10-31 Daniel Nylander - - * sv/sv.po: Updated Swedish translation. - * sv/figures/*png: Added screenshots. - - help/ChangeLog | 5 ++ - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 6405 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 4314 bytes - help/sv/figures/ephy-history-window-screenshot.png | Bin 0 -> 36750 bytes - help/sv/figures/ephy-screenshot.png | Bin 0 -> 86783 bytes - help/sv/sv.po | 82 ++++++++++----------- - 6 files changed, 46 insertions(+), 41 deletions(-) - -commit 9bb86b045fab1cbd088bd4ce611adaf746c70261 -Author: Satoru SATOH -Date: Sun Oct 29 12:57:21 2006 +0000 - - Fixed mismatched plural forms. - - 2006-10-29 Satoru SATOH - - * ja.po: Fixed mismatched plural forms. - - po/ChangeLog | 4 + - po/ja.po | 485 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 249 insertions(+), 240 deletions(-) - -commit d5fa026bd8148ce8c54c5dc20ea96dfd3d427315 -Author: Jean-François Rameau -Date: Tue Oct 24 21:17:56 2006 +0000 - - Fix previous commit for gecko 1.8.0.x. - - 2006-10-24 Jean-François Rameau - - * embed/mozilla/mozilla-embed.cpp: (impl_load): - - Fix previous commit for gecko 1.8.0.x. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit f2d423a34e23b3d785fab96c9c14925bdbe16591 -Author: Jean-François Rameau -Date: Sun Oct 22 17:08:06 2006 +0000 - - Get keyword search back by passing ALLOW_THIRD_PARTY_FIXUP flag to gecko. - - 2006-10-22 Jean-François Rameau - - * embed/ephy-embed.h: - * embed/ephy-embed.c: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-link.h: - * src/ephy-location-action.c: (action_activated_cb): - * src/ephy-shell.c: (ephy_shell_new_tab_full): - * src/ephy-shell.h: - * src/ephy-window.c: (ephy_window_open_link): - - Get keyword search back by passing ALLOW_THIRD_PARTY_FIXUP flag to gecko. - Add a new load method to EphyEmbed to custom load behaviour and pass (optional) referrer. - Fix bug #350053. - - ChangeLog | 17 ++++++++++++++ - embed/ephy-embed.c | 19 +++++++++++++++ - embed/ephy-embed.h | 14 +++++++++++ - embed/mozilla/EphyBrowser.cpp | 52 +++++++++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 6 +++++ - embed/mozilla/mozilla-embed.cpp | 37 +++++++++++++++++++++++++++++ - src/ephy-link.h | 3 ++- - src/ephy-location-action.c | 4 ++-- - src/ephy-shell.c | 18 +++++++++++++- - src/ephy-shell.h | 4 ++++ - src/ephy-window.c | 20 ++++++++++++++-- - 11 files changed, 188 insertions(+), 6 deletions(-) - -commit 461daa07586775c39d72c22287e0ab1fd1f9cf34 -Author: Wouter Bolsterlee -Date: Wed Oct 18 11:26:51 2006 +0000 - - Dutch translation updated by Wouter Bolsterlee. - - 2006-10-18 Wouter Bolsterlee - - * nl/nl.po: Dutch translation updated by Wouter Bolsterlee. - - help/ChangeLog | 4 + - help/nl/nl.po | 3534 ++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 2544 insertions(+), 994 deletions(-) - -commit 1fbe843b79bd4062c5c96d9ea1c208436285c9ef -Author: Wouter Bolsterlee -Date: Wed Oct 18 09:15:00 2006 +0000 - - shut up cvs - - help/bg/.cvsignore | 2 ++ - help/fr/.cvsignore | 2 ++ - help/ru/.cvsignore | 2 ++ - help/sv/.cvsignore | 2 ++ - 4 files changed, 8 insertions(+) - -commit 74dff8bafa05f5ccb02b201194ae822cf4a320ff -Author: Wouter Bolsterlee -Date: Wed Oct 18 09:08:04 2006 +0000 - - Don't try to close shared dbus connections. This avoids dbus warnings on - - 2006-10-18 Wouter Bolsterlee - - * src/ephy-dbus.c: (ephy_dbus_shutdown): - Don't try to close shared dbus connections. This avoids - dbus warnings on quit. Fixes bug #358007. - - ChangeLog | 6 ++++++ - src/ephy-dbus.c | 14 ++------------ - 2 files changed, 8 insertions(+), 12 deletions(-) - -commit 2fbe5bad6a17d859253b37ac3af78cb957cc8058 -Author: Wouter Bolsterlee -Date: Tue Oct 17 22:50:41 2006 +0000 - - Remove unused type variable. - - 2006-10-18 Wouter Bolsterlee - - * src/popup-commands.c: (background_download_completed): - Remove unused type variable. - - ChangeLog | 5 +++++ - src/popup-commands.c | 1 - - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 8ed5d67ddd7df90260226fd815d998ecba0bb922 -Author: Christian Persch -Date: Tue Oct 17 22:37:25 2006 +0000 - - A lib/widgets/ephy-spinner-tool-item.c: A - - 2006-10-17 Christian Persch - - * lib/widgets/Makefile.am: - A lib/widgets/ephy-spinner-tool-item.c: - A lib/widgets/ephy-spinner-tool-item.h: - * lib/widgets/testspinner.c: (change_toolbar_style_cb), - (change_toolbar_icon_size_cb), (spin_toolbar_spinner_cb), (main): - * src/ephy-toolbar.c: (ephy_toolbar_update_spinner), - (ephy_toolbar_constructor): - - Add EphySpinnerToolItem which encapsulates a spinner and automatically - adapts its size to toolbar style changes, and use it in EphyToolbar. - - lib/widgets/Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -commit 5ba3dbaf7e99a051d004362d86c12e6818674661 -Author: Christian Persch -Date: Tue Oct 17 20:56:10 2006 +0000 - - A lib/widgets/ephy-spinner-tool-item.c: A - - 2006-10-17 Christian Persch - - * lib/widgets/Makefile.am: - A lib/widgets/ephy-spinner-tool-item.c: - A lib/widgets/ephy-spinner-tool-item.h: - * lib/widgets/testspinner.c: (change_toolbar_style_cb), - (change_toolbar_icon_size_cb), (spin_toolbar_spinner_cb), (main): - * src/ephy-toolbar.c: (ephy_toolbar_update_spinner), - (ephy_toolbar_constructor): - - Add EphySpinnerToolItem which encapsulates a spinner and automatically - adapts its size to toolbar style changes, and use it in EphyToolbar. - - ChangeLog | 13 ++++ - lib/widgets/ephy-spinner-tool-item.c | 115 +++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-spinner-tool-item.h | 62 +++++++++++++++++++ - lib/widgets/testspinner.c | 109 +++++++++++++++++++++++++++++++-- - src/ephy-toolbar.c | 47 ++------------ - 5 files changed, 301 insertions(+), 45 deletions(-) - -commit 03d63a3c1d4522010a58e61aff6aad83d28a7db4 -Author: Christian Persch -Date: Tue Oct 17 20:32:46 2006 +0000 - - Fix a crash after failing to get the spinner animation or rest icons. - - 2006-10-17 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_images_load), - (ephy_spinner_cache_get_images), (ephy_spinner_get_type), - (ephy_spinner_init), (ephy_spinner_new): - * lib/widgets/ephy-spinner.h: - - Fix a crash after failing to get the spinner animation or rest icons. - Derive EphySpinner from GtkWidget not GtkEventBox. - - ChangeLog | 10 ++++++++++ - lib/widgets/ephy-spinner.c | 19 +++++++++---------- - lib/widgets/ephy-spinner.h | 13 +++++-------- - 3 files changed, 24 insertions(+), 18 deletions(-) - -commit 954a2a7825f65bcb401e28379c553450758c6f62 -Author: Ilkka Tuohela -Date: Sun Oct 15 14:55:51 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 450 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 229 insertions(+), 225 deletions(-) - -commit c1e9da9eed75fc314c113000d7fe01e7de1ae913 -Author: Wouter Bolsterlee -Date: Sun Oct 15 14:05:40 2006 +0000 - - Automatically open a Nautilus window after downloading has finished. Fixes - - 2006-10-15 Wouter Bolsterlee - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/MozDownload.cpp: - * lib/ephy-file-helpers.c: (ephy_file_browse_to): - * lib/ephy-file-helpers.h: - * src/popup-commands.c: (save_property_url_completed_cb), - (save_property_url): - Automatically open a Nautilus window after downloading - has finished. Fixes bug #138876, patch by Ed Catmur. - - ChangeLog | 11 +++++++++++ - embed/mozilla/ContentHandler.cpp | 10 +++++++++- - embed/mozilla/MozDownload.cpp | 26 ++++++++++++++++++++++++++ - lib/ephy-file-helpers.c | 21 +++++++++++++++++++++ - lib/ephy-file-helpers.h | 3 +++ - src/popup-commands.c | 21 +++++++++++++++++++++ - 6 files changed, 91 insertions(+), 1 deletion(-) - -commit ccb73eb4348e4fb957fe4a2f8ed5ca7eac6835d9 -Author: Wouter Bolsterlee -Date: Sun Oct 15 14:03:37 2006 +0000 - - Use full width for bookmarks search bar. Fixes bug #349349, patch by Diego - - 2006-10-15 Wouter Bolsterlee - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - Use full width for bookmarks search bar. - Fixes bug #349349, patch by Diego Escalante Urrelo. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 3786f5c471255934c481016c7e5119cc40c81ca0 -Author: Jean-François Rameau -Date: Sun Oct 15 10:40:12 2006 +0000 - - Fix unprotected call to ephy_node_remove_child. Bug #362063. - - 2006-10-15 Jean-François Rameau - - * src/bookmarks/ephy-bookmarks.c: (update_has_smart_address): - - Fix unprotected call to ephy_node_remove_child. Bug #362063. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 5 ++++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 617e8a31a14c7acb1fbebad4475c43cc24f9476e -Author: Wouter Bolsterlee -Date: Sat Oct 14 22:15:58 2006 +0000 - - Implement EphyPasswordManagerIface.add to add stored passwords. Fixes bug - - 2006-10-15 Wouter Bolsterlee - - * embed/mozilla/mozilla-embed-single.cpp: - Implement EphyPasswordManagerIface.add to add stored - passwords. Fixes bug #361606, patch by John Millikin. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 30 +++++++++++++++++++++++++++++- - 2 files changed, 35 insertions(+), 1 deletion(-) - -commit 0022a8d02886074729d67642f5dabc5b15430d00 -Author: Wouter Bolsterlee -Date: Sat Oct 14 21:24:09 2006 +0000 - - Fix typo - - po/nl.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ba138ec9e01ef7c7fb3b583c4babd24cfa5cd69e -Author: Christian Persch -Date: Sun Oct 8 19:02:52 2006 +0000 - - Fix a bug in the last commit. - - 2006-10-08 Christian Persch - - * embed/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - Fix a bug in the last commit. - - ChangeLog | 10 ++++++++++ - embed/Makefile.am | 2 +- - lib/Makefile.am | 2 +- - lib/egg/Makefile.am | 2 +- - src/Makefile.am | 2 +- - src/bookmarks/Makefile.am | 2 +- - 6 files changed, 15 insertions(+), 5 deletions(-) - -commit e9340cbe3cecbb19bce27b500b7015e9912452e4 -Author: Christian Persch -Date: Sun Oct 8 12:49:14 2006 +0000 - - Make the enum/flags values not global. - - 2006-10-08 Christian Persch - - * embed/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - Make the enum/flags values not global. - - ChangeLog | 10 ++++++++++ - embed/Makefile.am | 14 +++++++------- - lib/Makefile.am | 14 +++++++------- - lib/egg/Makefile.am | 14 +++++++------- - src/Makefile.am | 14 +++++++------- - src/bookmarks/Makefile.am | 14 +++++++------- - 6 files changed, 45 insertions(+), 35 deletions(-) - -commit ea7da1c6abfa87614a9dd484afc26cccf93cf37f -Author: Christian Persch -Date: Fri Oct 6 17:17:12 2006 +0000 - - Revert part of the last change, we don't need the top window here. - - 2006-10-06 Christian Persch - - * embed/mozilla/AutoWindowModalState.cpp: - - Revert part of the last change, we don't need the top window here. - - ChangeLog | 6 ++++++ - embed/mozilla/AutoWindowModalState.cpp | 7 +------ - 2 files changed, 7 insertions(+), 6 deletions(-) - -commit 7fe19ecdd665138af915d404ca57e969704c516e -Author: Christian Persch -Date: Fri Oct 6 15:12:23 2006 +0000 - - Use the top DOM window here, and adapt to gecko 1.8.1. - - 2006-10-06 Christian Persch - - * embed/mozilla/AutoWindowModalState.cpp: - - Use the top DOM window here, and adapt to gecko 1.8.1. - - ChangeLog | 6 ++++++ - embed/mozilla/AutoWindowModalState.cpp | 33 ++++++++++++++++++++++++++++----- - 2 files changed, 34 insertions(+), 5 deletions(-) - -commit 0a0723e05c55ed32eed1797f649af5389a4fe8db -Author: Priit Laes -Date: Thu Oct 5 14:29:54 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-10-05 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 4c087f746d4c5b4c0f5d7a90826f87e9933d407a -Author: Christian Persch -Date: Thu Oct 5 13:19:37 2006 +0000 - - Fix build with gecko 1.8.1. - - 2006-10-05 Christian Persch - - * embed/mozilla/GeckoSpellCheckEngine.cpp: - - Fix build with gecko 1.8.1. - - ChangeLog | 6 ++++++ - embed/mozilla/GeckoSpellCheckEngine.cpp | 4 ++++ - 2 files changed, 10 insertions(+) - -commit fa877515d5a9dd4befe71291d7708649d979f51f -Author: Christian Persch -Date: Mon Oct 2 20:32:47 2006 +0000 - - Add a window group for the history window. - - 2006-10-02 Christian Persch - - * src/ephy-history-window.c: (confirmation_dialog_construct), - (ephy_history_window_construct): - - Add a window group for the history window. - - ChangeLog | 7 +++++++ - src/ephy-history-window.c | 6 ++++++ - 2 files changed, 13 insertions(+) - -commit 7605ce71b58d19479c277899b50c76fb19d5d598 -Author: Christian Persch -Date: Sun Oct 1 12:15:56 2006 +0000 - - Fix compile warnings. - - 2006-10-01 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_images_load), - (ephy_spinner_cache_get_images), (bump_spinner_frame_cb): - * lib/widgets/testspinner.c: (add_spinner), (main): - - Fix compile warnings. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-spinner.c | 6 +++--- - lib/widgets/testspinner.c | 3 +-- - src/ephy-link.c | 2 +- - 4 files changed, 13 insertions(+), 6 deletions(-) - -commit d18e3a866dfdb496f38fbd62eed1e16ab8e5deb6 -Author: Christian Persch -Date: Sun Oct 1 11:59:55 2006 +0000 - - Fix compile warnings. - - 2006-10-01 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_images_load), - (ephy_spinner_cache_get_images), (bump_spinner_frame_cb): - * lib/widgets/testspinner.c: (add_spinner), (main): - - Fix compile warnings. - - lib/widgets/ephy-spinner.c | 7 +------ - 1 file changed, 1 insertion(+), 6 deletions(-) - -commit 13c354e4a70e0e9f32971e1e9444b3d9af3b7125 -Author: Christian Persch -Date: Fri Sep 29 21:16:46 2006 +0000 - - R embed/mozilla/AutoEventQueue.cpp: R embed/mozilla/AutoEventQueue.h: - - 2006-09-29 Christian Persch - - R embed/mozilla/AutoEventQueue.cpp: - R embed/mozilla/AutoEventQueue.h: - - Remove unused code. - - ChangeLog | 7 +++ - embed/mozilla/AutoEventQueue.cpp | 106 --------------------------------------- - embed/mozilla/AutoEventQueue.h | 75 --------------------------- - 3 files changed, 7 insertions(+), 181 deletions(-) - -commit d818bbfc4ee9abb2656230e2358fb0a66e44e62c -Author: Christian Persch -Date: Fri Sep 29 21:16:24 2006 +0000 - - Simplify code and save some memory. - - 2006-09-29 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_images_ref), - (ephy_spinner_images_unref), (ephy_spinner_cache_data_unload), - (ephy_spinner_images_load), (ephy_spinner_cache_get_images), - (ephy_spinner_load_images), (ephy_spinner_unload_images), - (ephy_spinner_init), (ephy_spinner_expose), - (bump_spinner_frame_cb), (ephy_spinner_start), - (ephy_spinner_remove_update_callback), (ephy_spinner_stop), - (ephy_spinner_size_request): - - Simplify code and save some memory. - - ChangeLog | 13 +++ - lib/widgets/ephy-spinner.c | 215 +++++++++++++++++++++++---------------------- - 2 files changed, 124 insertions(+), 104 deletions(-) - -commit 7c047b3fec6edd5b208e0c45b6f60f83b5d0e8ab -Author: Christian Persch -Date: Fri Sep 29 19:32:19 2006 +0000 - - Add smb: to recognised web schemes. Bug #352733. - - 2006-09-29 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Add smb: to recognised web schemes. Bug #352733. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 3 +++ - 2 files changed, 9 insertions(+) - -commit 2f82409c7697e94ac001e4b0a4266e5357ac4ae7 -Author: Christian Persch -Date: Fri Sep 29 19:24:03 2006 +0000 - - Fix spinner with new g-i-t. Fixes bug #330415. Fix a crash when failing to - - 2006-09-29 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_images_free), - (ephy_spinner_cache_data_unload), (scale_to_size), - (ephy_spinner_images_load), (ephy_spinner_cache_data_new), - (ephy_spinner_cache_data_free), (ephy_spinner_cache_get_images), - (ephy_spinner_cache_finalize), (ephy_spinner_cache_class_init), - (ephy_spinner_cache_ref), (ephy_spinner_init), - (ephy_spinner_set_size), (ephy_spinner_size_request): - * lib/widgets/testspinner.c: - - Fix spinner with new g-i-t. Fixes bug #330415. - Fix a crash when failing to load some icon data, Gedit bug #357456. - - ChangeLog | 14 ++ - lib/widgets/ephy-spinner.c | 334 +++++++++++++++++++++++---------------------- - lib/widgets/testspinner.c | 2 +- - 3 files changed, 186 insertions(+), 164 deletions(-) - -commit 9900849821a6da08555165e1582aad16754fae64 -Author: Erdal Ronahi -Date: Tue Sep 26 19:28:02 2006 +0000 - - Updated Kurdish translations - - po/ChangeLog | 4 + - po/ku.po | 3057 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1718 insertions(+), 1343 deletions(-) - -commit 933aaf49f78e0a55906e4c580b96cd8beb405aa7 -Author: Priit Laes -Date: Mon Sep 25 20:49:21 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-09-25 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 3 +-- - 2 files changed, 5 insertions(+), 2 deletions(-) - -commit 575feabefc7e27e9e0b8cd5e7aac4d54cd69a6a4 -Author: Jean-François Rameau -Date: Sun Sep 24 19:59:37 2006 +0000 - - Add middle-click on New Tab/Window button to open URL on clipboard. Fix - - 2006-09-24 Jean-François Rameau - - * src/ephy-window.c: (ephy_window_constructor): - * src/ephy-lockdown.c: (update_window): - * src/window-commands.c: (window_cmd_file_new_window), (window_cmd_file_new_tab): - * src/window-commands.h: (window_cmd_file_new_window), (window_cmd_file_new_tab): - * src/ephy-toolbar.c: (ephy_toolbar_set_window): - * src/ephy-home-action.c: (ephy_home_action_activate): - - Add middle-click on New Tab/Window button to open URL on clipboard. Fix bug 149715. - Both New Tab and New Window actions are now EphyHomeAction. - - ChangeLog | 12 ++++++ - src/ephy-home-action.c | 100 +++++++++++++++++++++++++++++++++++++++++++++++-- - src/ephy-lockdown.c | 2 +- - src/ephy-toolbar.c | 23 ++++++++++++ - src/ephy-window.c | 10 ++--- - src/window-commands.c | 29 -------------- - src/window-commands.h | 6 --- - 7 files changed, 135 insertions(+), 47 deletions(-) - -commit 93435055701bffb38039ea16069a796aca256246 -Author: Christian Persch -Date: Sat Sep 23 22:13:15 2006 +0000 - - These header files were GPL v2-only while the implementation .cpp files - - 2006-09-23 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.h: - * embed/mozilla/GtkNSSKeyPairDialogs.h: - - These header files were GPL v2-only while the implementation .cpp - files already were v2+. Thanks to crispin for agreeing to licence the - .h under v2+ too. - - ChangeLog | 9 +++++++++ - embed/mozilla/GtkNSSClientAuthDialogs.h | 20 ++++++++++++++++---- - embed/mozilla/GtkNSSKeyPairDialogs.h | 20 ++++++++++++++++---- - 3 files changed, 41 insertions(+), 8 deletions(-) - -commit 1d1891832db019411cc039eccb18733a14b2d526 -Author: Christian Persch -Date: Sun Sep 17 18:38:58 2006 +0000 - - Fix find direction. - - 2006-09-17 Christian Persch - - * embed/mozilla/EphyFind.cpp: - - Fix find direction. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyFind.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 88f303b4f7ad3f14d5b94f523360ba92988b8692 -Author: Christian Persch -Date: Sat Sep 16 21:22:05 2006 +0000 - - Default to printing background images. - - 2006-09-16 Christian Persch - - * data/epiphany.schemas.in: - - Default to printing background images. - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit ba8b944c562fc183de39bdec84f05e90f98df6e2 -Author: Christian Persch -Date: Sat Sep 16 21:20:36 2006 +0000 - - Remove ill-conceived attempt at uninstalling the XPInstall handler, and - - 2006-09-16 Christian Persch - - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyContentPolicy.h: - * embed/mozilla/EphySidebar.cpp: - * embed/mozilla/EphySidebar.h: - * embed/mozilla/MozRegisterComponents.cpp: - - Remove ill-conceived attempt at uninstalling the XPInstall handler, - and move category registration to the classes that are being - registered. - - ChangeLog | 12 ++++++ - embed/mozilla/EphyContentPolicy.cpp | 44 ++++++++++++++++++++ - embed/mozilla/EphyContentPolicy.h | 36 ++++++++++++----- - embed/mozilla/EphySidebar.cpp | 46 +++++++++++++++++++++ - embed/mozilla/EphySidebar.h | 24 +++++++++-- - embed/mozilla/MozRegisterComponents.cpp | 72 +++------------------------------ - 6 files changed, 155 insertions(+), 79 deletions(-) - -commit e278c85d5790580a97946d3551d99b6636fef992 -Author: Christian Persch -Date: Sat Sep 16 18:33:24 2006 +0000 - - Activate about:config warning. - - 2006-09-16 Christian Persch - - * data/default-prefs-common.js: - - Activate about:config warning. - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 3 +++ - 2 files changed, 9 insertions(+) - -commit 033cdd06558575ac8dea6d1eba462d5e88c39aab -Author: Priit Laes -Date: Sat Sep 16 05:37:17 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-09-16 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit c5eaf9de1786a158734c6d6cdd22b574146bb545 -Author: Jean-François Rameau -Date: Wed Sep 13 21:38:28 2006 +0000 - - Check for GDK_BUTTON_RELEASE event type in case of a middle click. Fix bug - - 2006-09-13 Jean-François Rameau - - * src/ephy-link.c: (ephy_link_flags_from_current_event): - - Check for GDK_BUTTON_RELEASE event type in case of a middle click. - Fix bug #347750. - - ChangeLog | 7 +++++++ - src/ephy-link.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 08d1d04c64f852b15b07626b8614a60999580828 -Author: Jean-François Rameau -Date: Wed Sep 13 21:11:34 2006 +0000 - - Clicking favicon in the location bar selects URL. Fix bug #349557. - - 2006-09-13 Jean-François Rameau - - * lib/widgets/ephy-location-entry.c: (ephy_location_entry_construct_contents), - (icon_button_press_event_cb): - - Clicking favicon in the location bar selects URL. Fix bug #349557. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-location-entry.c | 29 +++++++++++++++++++++++++++++ - 2 files changed, 36 insertions(+) - -commit f6908fd270d6a74d6835b5a8cd0c2eb3b0863f74 -Author: David Lodge -Date: Wed Sep 13 19:59:53 2006 +0000 - - Updated English (British) translation - - 2006-09-13 David Lodge - - * en_GB.po: Updated English (British) translation - - po/ChangeLog | 4 + - po/en_GB.po | 2570 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 1216 insertions(+), 1358 deletions(-) - -commit 2d4d8cd1418e64827fe15288cb1a2bc78b513d99 -Author: Christian Persch -Date: Wed Sep 13 11:34:25 2006 +0000 - - Use UTF-8 copyright symbol - - configure.ac | 4 ++-- - data/chrome/about.xhtml | 2 +- - data/epiphany-bookmarks-html.xsl | 2 +- - data/epiphany.m4 | 2 +- - data/epiphany.xhtml | 2 +- - data/generate-font-schemas.py | 2 +- - data/mime-types-permissions.xml | 1 + - doc/epiphany.1 | 2 +- - embed/downloader-view.c | 4 ++-- - embed/downloader-view.h | 2 +- - embed/ephy-adblock-manager.c | 6 +++--- - embed/ephy-adblock-manager.h | 6 +++--- - embed/ephy-certificate-manager.c | 4 ++-- - embed/ephy-certificate-manager.h | 4 ++-- - embed/ephy-command-manager.c | 2 +- - embed/ephy-command-manager.h | 2 +- - embed/ephy-cookie-manager.c | 4 ++-- - embed/ephy-cookie-manager.h | 4 ++-- - embed/ephy-download.c | 2 +- - embed/ephy-download.h | 2 +- - embed/ephy-embed-dialog.c | 2 +- - embed/ephy-embed-dialog.h | 2 +- - embed/ephy-embed-event.c | 2 +- - embed/ephy-embed-event.h | 4 ++-- - embed/ephy-embed-factory.c | 2 +- - embed/ephy-embed-factory.h | 2 +- - embed/ephy-embed-find.c | 2 +- - embed/ephy-embed-find.h | 2 +- - embed/ephy-embed-persist.c | 4 ++-- - embed/ephy-embed-persist.h | 4 ++-- - embed/ephy-embed-shell.c | 2 +- - embed/ephy-embed-shell.h | 2 +- - embed/ephy-embed-single.c | 2 +- - embed/ephy-embed-single.h | 2 +- - embed/ephy-embed.c | 2 +- - embed/ephy-embed.h | 2 +- - embed/ephy-encodings.c | 4 ++-- - embed/ephy-encodings.h | 2 +- - embed/ephy-favicon-cache.c | 6 +++--- - embed/ephy-favicon-cache.h | 6 +++--- - embed/ephy-history.c | 2 +- - embed/ephy-history.h | 2 +- - embed/ephy-password-manager.c | 4 ++-- - embed/ephy-password-manager.h | 4 ++-- - embed/ephy-permission-manager.c | 4 ++-- - embed/ephy-permission-manager.h | 4 ++-- - embed/ephy-x509-cert.c | 4 ++-- - embed/ephy-x509-cert.h | 2 +- - embed/mozilla/AutoEventQueue.cpp | 2 +- - embed/mozilla/AutoEventQueue.h | 2 +- - embed/mozilla/AutoJSContextStack.cpp | 2 +- - embed/mozilla/AutoJSContextStack.h | 2 +- - embed/mozilla/AutoWindowModalState.cpp | 2 +- - embed/mozilla/AutoWindowModalState.h | 2 +- - embed/mozilla/ContentHandler.cpp | 8 ++++---- - embed/mozilla/ContentHandler.h | 4 ++-- - embed/mozilla/EphyAboutModule.cpp | 8 ++++---- - embed/mozilla/EphyAboutModule.h | 6 +++--- - embed/mozilla/EphyBadCertRejector.cpp | 2 +- - embed/mozilla/EphyBadCertRejector.h | 2 +- - embed/mozilla/EphyBrowser.cpp | 4 ++-- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/EphyContentPolicy.cpp | 2 +- - embed/mozilla/EphyContentPolicy.h | 2 +- - embed/mozilla/EphyDirectoryProvider.cpp | 2 +- - embed/mozilla/EphyDirectoryProvider.h | 2 +- - embed/mozilla/EphyFind.cpp | 2 +- - embed/mozilla/EphyFind.h | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/EphyHeaderSniffer.h | 2 +- - embed/mozilla/EphyHistoryListener.cpp | 2 +- - embed/mozilla/EphyHistoryListener.h | 2 +- - embed/mozilla/EphyPromptService.cpp | 2 +- - embed/mozilla/EphyPromptService.h | 2 +- - embed/mozilla/EphyRedirectChannel.cpp | 2 +- - embed/mozilla/EphyRedirectChannel.h | 2 +- - embed/mozilla/EphySidebar.cpp | 4 ++-- - embed/mozilla/EphySidebar.h | 4 ++-- - embed/mozilla/EphySingle.cpp | 4 ++-- - embed/mozilla/EphySingle.h | 4 ++-- - embed/mozilla/EphyUtils.cpp | 2 +- - embed/mozilla/EphyUtils.h | 2 +- - embed/mozilla/EventContext.cpp | 6 +++--- - embed/mozilla/EventContext.h | 2 +- - embed/mozilla/FilePicker.cpp | 4 ++-- - embed/mozilla/FilePicker.h | 4 ++-- - embed/mozilla/GeckoFormSigningDialog.cpp | 2 +- - embed/mozilla/GeckoFormSigningDialog.h | 2 +- - embed/mozilla/GeckoPrintService.cpp | 2 +- - embed/mozilla/GeckoPrintService.h | 2 +- - embed/mozilla/GeckoPrintSession.cpp | 2 +- - embed/mozilla/GeckoPrintSession.h | 2 +- - embed/mozilla/GeckoSpellCheckEngine.cpp | 2 +- - embed/mozilla/GeckoSpellCheckEngine.h | 2 +- - embed/mozilla/GlobalHistory.cpp | 4 ++-- - embed/mozilla/GlobalHistory.h | 4 ++-- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/mozilla/GtkNSSClientAuthDialogs.h | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 4 ++-- - embed/mozilla/GtkNSSDialogs.h | 4 ++-- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 +- - embed/mozilla/GtkNSSKeyPairDialogs.h | 2 +- - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 4 ++-- - embed/mozilla/GtkNSSSecurityWarningDialogs.h | 4 ++-- - embed/mozilla/MozDownload.cpp | 2 +- - embed/mozilla/MozDownload.h | 2 +- - embed/mozilla/MozRegisterComponents.cpp | 6 +++--- - embed/mozilla/MozRegisterComponents.h | 2 +- - embed/mozilla/mozilla-download.cpp | 2 +- - embed/mozilla/mozilla-download.h | 2 +- - embed/mozilla/mozilla-embed-event.cpp | 4 ++-- - embed/mozilla/mozilla-embed-event.h | 4 ++-- - embed/mozilla/mozilla-embed-find.cpp | 4 ++-- - embed/mozilla/mozilla-embed-find.h | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed-persist.h | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 8 ++++---- - embed/mozilla/mozilla-embed-single.h | 4 ++-- - embed/mozilla/mozilla-embed.cpp | 4 ++-- - embed/mozilla/mozilla-embed.h | 2 +- - embed/mozilla/mozilla-notifiers.cpp | 6 +++--- - embed/mozilla/mozilla-notifiers.h | 6 +++--- - embed/mozilla/mozilla-x509-cert.cpp | 4 ++-- - embed/mozilla/mozilla-x509-cert.h | 2 +- - help/fi/fi.po | 2 +- - help/fr/fr.po | 2 +- - help/ja/ja.po | 2 +- - help/uk/uk.po | 2 +- - lib/eel-gconf-extensions.c | 2 +- - lib/eel-gconf-extensions.h | 2 +- - lib/egg/egg-editable-toolbar.c | 4 ++-- - lib/egg/egg-editable-toolbar.h | 4 ++-- - lib/egg/egg-toolbar-editor.c | 2 +- - lib/egg/egg-toolbar-editor.h | 2 +- - lib/egg/egg-toolbars-model.c | 4 ++-- - lib/egg/egg-toolbars-model.h | 2 +- - lib/egg/eggtreemultidnd.c | 2 +- - lib/egg/eggtreemultidnd.h | 2 +- - lib/ephy-adblock.c | 6 +++--- - lib/ephy-adblock.h | 6 +++--- - lib/ephy-debug.c | 2 +- - lib/ephy-debug.h | 2 +- - lib/ephy-dialog.c | 4 ++-- - lib/ephy-dialog.h | 4 ++-- - lib/ephy-dnd.c | 2 +- - lib/ephy-dnd.h | 2 +- - lib/ephy-file-chooser.c | 4 ++-- - lib/ephy-file-chooser.h | 2 +- - lib/ephy-file-helpers.c | 6 +++--- - lib/ephy-file-helpers.h | 6 +++--- - lib/ephy-gui.c | 2 +- - lib/ephy-gui.h | 2 +- - lib/ephy-langs.c | 2 +- - lib/ephy-langs.h | 4 ++-- - lib/ephy-loader.c | 4 ++-- - lib/ephy-loader.h | 4 ++-- - lib/ephy-module.c | 4 ++-- - lib/ephy-module.h | 4 ++-- - lib/ephy-node-common.h | 2 +- - lib/ephy-node-db.c | 6 +++--- - lib/ephy-node-db.h | 6 +++--- - lib/ephy-node-filter.c | 2 +- - lib/ephy-node-filter.h | 4 ++-- - lib/ephy-node.c | 6 +++--- - lib/ephy-node.h | 6 +++--- - lib/ephy-object-helpers.c | 2 +- - lib/ephy-object-helpers.h | 2 +- - lib/ephy-password-dialog.c | 4 ++-- - lib/ephy-password-dialog.h | 2 +- - lib/ephy-prefs.h | 2 +- - lib/ephy-print-utils.c | 2 +- - lib/ephy-print-utils.h | 2 +- - lib/ephy-shlib-loader.c | 4 ++-- - lib/ephy-shlib-loader.h | 4 ++-- - lib/ephy-signal-accumulator.c | 2 +- - lib/ephy-signal-accumulator.h | 2 +- - lib/ephy-spell-check.c | 2 +- - lib/ephy-spell-check.h | 2 +- - lib/ephy-state.c | 6 +++--- - lib/ephy-state.h | 6 +++--- - lib/ephy-stock-icons.c | 2 +- - lib/ephy-stock-icons.h | 2 +- - lib/ephy-string.c | 2 +- - lib/ephy-string.h | 2 +- - lib/ephy-zoom.c | 2 +- - lib/ephy-zoom.h | 2 +- - lib/widgets/ephy-icon-entry.c | 4 ++-- - lib/widgets/ephy-icon-entry.h | 4 ++-- - lib/widgets/ephy-location-entry.c | 6 +++--- - lib/widgets/ephy-location-entry.h | 6 +++--- - lib/widgets/ephy-node-view.c | 2 +- - lib/widgets/ephy-node-view.h | 2 +- - lib/widgets/ephy-search-entry.c | 2 +- - lib/widgets/ephy-search-entry.h | 2 +- - lib/widgets/ephy-spinner.c | 6 +++--- - lib/widgets/ephy-spinner.h | 2 +- - lib/widgets/ephy-tree-model-node.c | 2 +- - lib/widgets/ephy-tree-model-node.h | 2 +- - lib/widgets/ephy-tree-model-sort.c | 2 +- - lib/widgets/ephy-tree-model-sort.h | 2 +- - lib/widgets/ephy-zoom-action.c | 4 ++-- - lib/widgets/ephy-zoom-action.h | 4 ++-- - lib/widgets/ephy-zoom-control.c | 2 +- - lib/widgets/ephy-zoom-control.h | 2 +- - lib/widgets/testiconentry.c | 2 +- - lib/widgets/testspinner.c | 2 +- - plugins/desktop-file/plugin.cpp | 8 ++++---- - src/bookmarks/ephy-bookmark-action-group.c | 2 +- - src/bookmarks/ephy-bookmark-action-group.h | 2 +- - src/bookmarks/ephy-bookmark-action.c | 6 +++--- - src/bookmarks/ephy-bookmark-action.h | 4 ++-- - src/bookmarks/ephy-bookmark-factory-action.c | 2 +- - src/bookmarks/ephy-bookmark-factory-action.h | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 6 +++--- - src/bookmarks/ephy-bookmark-properties.h | 6 +++--- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.h | 2 +- - src/bookmarks/ephy-bookmarks-export.c | 4 ++-- - src/bookmarks/ephy-bookmarks-export.h | 2 +- - src/bookmarks/ephy-bookmarks-import.c | 4 ++-- - src/bookmarks/ephy-bookmarks-import.h | 4 ++-- - src/bookmarks/ephy-bookmarks-menu.c | 6 +++--- - src/bookmarks/ephy-bookmarks-menu.h | 6 +++--- - src/bookmarks/ephy-bookmarks-ui.c | 4 ++-- - src/bookmarks/ephy-bookmarks-ui.h | 2 +- - src/bookmarks/ephy-bookmarks.c | 4 ++-- - src/bookmarks/ephy-bookmarks.h | 4 ++-- - src/bookmarks/ephy-nodes-cover.c | 2 +- - src/bookmarks/ephy-nodes-cover.h | 2 +- - src/bookmarks/ephy-open-tabs-action.c | 2 +- - src/bookmarks/ephy-open-tabs-action.h | 2 +- - src/bookmarks/ephy-related-action.c | 2 +- - src/bookmarks/ephy-related-action.h | 4 ++-- - src/bookmarks/ephy-topic-action-group.c | 2 +- - src/bookmarks/ephy-topic-action-group.h | 2 +- - src/bookmarks/ephy-topic-action.c | 4 ++-- - src/bookmarks/ephy-topic-action.h | 4 ++-- - src/bookmarks/ephy-topic-factory-action.c | 2 +- - src/bookmarks/ephy-topic-factory-action.h | 2 +- - src/bookmarks/ephy-topics-entry.c | 4 ++-- - src/bookmarks/ephy-topics-entry.h | 2 +- - src/bookmarks/ephy-topics-palette.c | 4 ++-- - src/bookmarks/ephy-topics-palette.h | 2 +- - src/ephy-action-helper.c | 2 +- - src/ephy-action-helper.h | 2 +- - src/ephy-activation.c | 2 +- - src/ephy-activation.h | 2 +- - src/ephy-automation.c | 2 +- - src/ephy-cert-manager-dialog.c | 4 ++-- - src/ephy-cert-manager-dialog.h | 2 +- - src/ephy-completion-model.c | 2 +- - src/ephy-completion-model.h | 2 +- - src/ephy-dbus.c | 4 ++-- - src/ephy-dbus.h | 2 +- - src/ephy-encoding-dialog.c | 4 ++-- - src/ephy-encoding-dialog.h | 4 ++-- - src/ephy-encoding-menu.c | 6 +++--- - src/ephy-encoding-menu.h | 6 +++--- - src/ephy-extension.c | 4 ++-- - src/ephy-extension.h | 4 ++-- - src/ephy-extensions-manager.c | 8 ++++---- - src/ephy-extensions-manager.h | 4 ++-- - src/ephy-find-toolbar.c | 4 ++-- - src/ephy-find-toolbar.h | 4 ++-- - src/ephy-fullscreen-popup.c | 4 ++-- - src/ephy-fullscreen-popup.h | 4 ++-- - src/ephy-go-action.c | 4 ++-- - src/ephy-go-action.h | 2 +- - src/ephy-history-window.c | 4 ++-- - src/ephy-history-window.h | 2 +- - src/ephy-home-action.c | 2 +- - src/ephy-home-action.h | 2 +- - src/ephy-link-action.c | 4 ++-- - src/ephy-link-action.h | 2 +- - src/ephy-link.c | 2 +- - src/ephy-link.h | 2 +- - src/ephy-location-action.c | 4 ++-- - src/ephy-location-action.h | 2 +- - src/ephy-lockdown.c | 4 ++-- - src/ephy-lockdown.h | 4 ++-- - src/ephy-main.c | 4 ++-- - src/ephy-navigation-action.c | 4 ++-- - src/ephy-navigation-action.h | 4 ++-- - src/ephy-net-monitor.c | 2 +- - src/ephy-net-monitor.h | 6 +++--- - src/ephy-notebook.c | 6 +++--- - src/ephy-notebook.h | 6 +++--- - src/ephy-python-extension.c | 6 +++--- - src/ephy-python-extension.h | 6 +++--- - src/ephy-python-loader.c | 6 +++--- - src/ephy-python-loader.h | 6 +++--- - src/ephy-python.c | 8 ++++---- - src/ephy-python.h | 2 +- - src/ephy-session.c | 6 +++--- - src/ephy-session.h | 6 +++--- - src/ephy-shell.c | 4 ++-- - src/ephy-shell.h | 4 ++-- - src/ephy-statusbar.c | 6 +++--- - src/ephy-statusbar.h | 6 +++--- - src/ephy-tab.c | 8 ++++---- - src/ephy-tab.h | 4 ++-- - src/ephy-tabs-menu.c | 4 ++-- - src/ephy-tabs-menu.h | 2 +- - src/ephy-toolbar-editor.c | 4 ++-- - src/ephy-toolbar-editor.h | 4 ++-- - src/ephy-toolbar.c | 6 +++--- - src/ephy-toolbar.h | 6 +++--- - src/ephy-toolbars-model.c | 4 ++-- - src/ephy-toolbars-model.h | 4 ++-- - src/ephy-window.c | 4 ++-- - src/ephy-window.h | 2 +- - src/epiphany.override | 6 +++--- - src/languages.h | 2 +- - src/pdm-dialog.c | 6 +++--- - src/pdm-dialog.h | 4 ++-- - src/popup-commands.c | 2 +- - src/popup-commands.h | 2 +- - src/ppview-toolbar.c | 2 +- - src/ppview-toolbar.h | 2 +- - src/prefs-dialog.c | 4 ++-- - src/prefs-dialog.h | 4 ++-- - src/window-commands.c | 2 +- - src/window-commands.h | 2 +- - 323 files changed, 530 insertions(+), 529 deletions(-) - -commit 28c0c83371eae22110b8dbb11eb093073aee9c8e -Author: Inaki Larranaga -Date: Wed Sep 13 08:12:30 2006 +0000 - - Fixed some typos. - - 2006-09-13 Inaki Larranaga - - * eu.po: Fixed some typos. - - po/ChangeLog | 4 ++++ - po/eu.po | 66 ++++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 46 insertions(+), 24 deletions(-) - -commit 67b6ff007fdebeff33c431d2fc64dc57a6dc94b9 -Author: Christian Persch -Date: Tue Sep 12 21:13:17 2006 +0000 - - Prefer xulrunner over mozilla. - - 2006-09-12 Christian Persch - - * m4/gecko.m4: - - Prefer xulrunner over mozilla. - - ChangeLog | 6 ++++++ - m4/gecko.m4 | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 5c67b178f9cfa9688eb148fa28a4c216321c538b -Author: Gintautas Miliauskas -Date: Tue Sep 12 19:04:06 2006 +0000 - - Updated Lithuanian translation - - po/ChangeLog | 4 ++++ - po/lt.po | 20 ++++++++++---------- - 2 files changed, 14 insertions(+), 10 deletions(-) - -commit 60861941d740b92a1eab06f45cfa3db337a537e2 -Author: Christian Persch -Date: Wed Sep 6 20:08:18 2006 +0000 - - Remove some unnecessary static data. - - 2006-09-06 Christian Persch - - * *.c *.cpp: - - Remove some unnecessary static data. - - ChangeLog | 6 ++++++ - doc/reference/tmpl/ephy-embed.sgml | 6 ++++++ - embed/Makefile.am | 2 +- - embed/downloader-view.c | 2 +- - embed/ephy-certificate-manager.c | 2 +- - embed/ephy-command-manager.c | 2 +- - embed/ephy-cookie-manager.c | 2 +- - embed/ephy-download.c | 2 +- - embed/ephy-embed-dialog.c | 2 +- - embed/ephy-embed-event.c | 2 +- - embed/ephy-embed-find.c | 2 +- - embed/ephy-embed-persist.c | 2 +- - embed/ephy-embed-shell.c | 2 +- - embed/ephy-embed-single.c | 2 +- - embed/ephy-embed.c | 2 +- - embed/ephy-encodings.c | 2 +- - embed/ephy-favicon-cache.c | 2 +- - embed/ephy-history.c | 2 +- - embed/ephy-password-manager.c | 2 +- - embed/ephy-permission-manager.c | 2 +- - embed/ephy-x509-cert.c | 2 +- - embed/mozilla/EphySingle.cpp | 22 +++++++++++----------- - embed/mozilla/mozilla-download.cpp | 2 +- - embed/mozilla/mozilla-embed-event.cpp | 4 ++-- - embed/mozilla/mozilla-embed-find.cpp | 4 ++-- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 12 ++++++------ - embed/mozilla/mozilla-embed.cpp | 6 +++--- - embed/mozilla/mozilla-x509-cert.cpp | 4 ++-- - lib/Makefile.am | 2 +- - lib/egg/Makefile.am | 2 +- - lib/egg/egg-editable-toolbar.c | 2 +- - lib/egg/egg-toolbar-editor.c | 2 +- - lib/egg/egg-toolbars-model.c | 2 +- - lib/egg/eggtreemultidnd.c | 2 +- - lib/ephy-adblock.c | 2 +- - lib/ephy-dialog.c | 2 +- - lib/ephy-file-chooser.c | 2 +- - lib/ephy-loader.c | 2 +- - lib/ephy-module.c | 2 +- - lib/ephy-node-db.c | 2 +- - lib/ephy-node-filter.c | 2 +- - lib/ephy-shlib-loader.c | 4 ++-- - lib/ephy-spell-check.c | 2 +- - lib/widgets/ephy-icon-entry.c | 2 +- - lib/widgets/ephy-location-entry.c | 2 +- - lib/widgets/ephy-node-view.c | 2 +- - lib/widgets/ephy-search-entry.c | 2 +- - lib/widgets/ephy-spinner.c | 4 ++-- - lib/widgets/ephy-tree-model-node.c | 4 ++-- - lib/widgets/ephy-tree-model-sort.c | 4 ++-- - lib/widgets/ephy-zoom-action.c | 2 +- - lib/widgets/ephy-zoom-control.c | 2 +- - src/Makefile.am | 2 +- - src/bookmarks/Makefile.am | 2 +- - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/bookmarks/ephy-bookmark-factory-action.c | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 2 +- - src/bookmarks/ephy-related-action.c | 4 ++-- - src/bookmarks/ephy-topic-action.c | 2 +- - src/bookmarks/ephy-topic-factory-action.c | 2 +- - src/bookmarks/ephy-topics-entry.c | 2 +- - src/bookmarks/ephy-topics-palette.c | 2 +- - src/ephy-cert-manager-dialog.c | 2 +- - src/ephy-completion-model.c | 4 ++-- - src/ephy-dbus.c | 2 +- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-encoding-menu.c | 2 +- - src/ephy-extension.c | 2 +- - src/ephy-extensions-manager.c | 4 ++-- - src/ephy-find-toolbar.c | 2 +- - src/ephy-fullscreen-popup.c | 2 +- - src/ephy-go-action.c | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-home-action.c | 2 +- - src/ephy-link-action.c | 8 ++++---- - src/ephy-link.c | 2 +- - src/ephy-location-action.c | 2 +- - src/ephy-lockdown.c | 4 ++-- - src/ephy-navigation-action.c | 2 +- - src/ephy-net-monitor.c | 2 +- - src/ephy-notebook.c | 4 ++-- - src/ephy-python-extension.c | 4 ++-- - src/ephy-python-loader.c | 4 ++-- - src/ephy-session.c | 4 ++-- - src/ephy-shell.c | 2 +- - src/ephy-statusbar.c | 2 +- - src/ephy-tab.c | 4 ++-- - src/ephy-tabs-menu.c | 2 +- - src/ephy-toolbar-editor.c | 2 +- - src/ephy-toolbar.c | 4 ++-- - src/ephy-toolbars-model.c | 2 +- - src/ephy-window.c | 4 ++-- - src/pdm-dialog.c | 2 +- - src/ppview-toolbar.c | 2 +- - src/prefs-dialog.c | 2 +- - 98 files changed, 146 insertions(+), 134 deletions(-) - -commit 3f939976388408a4e5887f431d6c7dbd034d57d6 -Author: Pema Geyleg -Date: Wed Sep 6 09:16:57 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/dz.po | 881 ++++++++++++++++------------------------------------------- - 2 files changed, 242 insertions(+), 643 deletions(-) - -commit 09de8bf80f6ccff1e3fddb68969ef2b0e83a62aa -Author: Åsmund Skjæveland -Date: Mon Sep 4 22:39:34 2006 +0000 - - Updated Norwegian Nynorsk translation. - - 2006-09-05 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 + - po/nn.po | 1573 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 880 insertions(+), 697 deletions(-) - -commit 6355693f14cf626c6c9a7412db58e74be859e33f -Author: Kwok-Koon Cheung -Date: Mon Sep 4 10:37:21 2006 +0000 - - Updated Chinese (Hong Kong) translation from Woodman Tuen - - * zh_HK.po: Updated Chinese (Hong Kong) translation from - Woodman Tuen . - * zh_TW.po: Updated Chinese (Taiwan) translation from - Woodman Tuen . - - po/ChangeLog | 7 + - po/zh_HK.po | 822 +++++++++++++++++++++++++++++++++++------------------------ - po/zh_TW.po | 816 ++++++++++++++++++++++++++++++++++------------------------ - 3 files changed, 980 insertions(+), 665 deletions(-) - -commit 9a14b0cdcf405f43f00fc4f92c5302c7575577ca -Author: Roozbeh Pournader -Date: Mon Sep 4 09:24:04 2006 +0000 - - Updated Persian translation by Meelad Zakaria. - - 2006-09-04 Roozbeh Pournader - - * fa.po: Updated Persian translation by Meelad Zakaria. - - po/ChangeLog | 4 + - po/fa.po | 3363 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 2006 insertions(+), 1361 deletions(-) - -commit 017e9bdf4d5093a4dc0c8f3a6aaeab2c54b9cc7f -Author: Lucas Rocha -Date: Mon Sep 4 02:26:48 2006 +0000 - - Updated Brazilian Portuguese translation by Leonardo Ferreira Fontenelle - - 2006-09-03 Lucas Rocha - - * pt_BR.po: Updated Brazilian Portuguese translation - by Leonardo Ferreira Fontenelle - - po/ChangeLog | 5 + - po/pt_BR.po | 2842 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1391 insertions(+), 1456 deletions(-) - -commit 735e0197b84aa767fae542223082e794c4aee934 -Author: Josep Puigdemont i Casamajó -Date: Sun Sep 3 23:10:55 2006 +0000 - - Updated Catalan translation. - - po/ChangeLog | 4 ++++ - po/ca.po | 63 +++++++++++++----------------------------------------------- - 2 files changed, 17 insertions(+), 50 deletions(-) - -commit 5f3f3a28821dadf28b8c44da7e34ee5d27b6ea3d -Author: Runa Bhattacharjee -Date: Sun Sep 3 19:34:44 2006 +0000 - - Added Entry for Bengali India Translation Updation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 7eebdc2a34af87a29f45df4967cc5f5edd11b00a -Author: Runa Bhattacharjee -Date: Sun Sep 3 19:34:13 2006 +0000 - - Updated Bengali India Translation - - po/bn_IN.po | 1489 +++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 780 insertions(+), 709 deletions(-) - -commit 9f05a609f489c09098b708610679a187c7e6ce1b -Author: Christian Persch -Date: Sun Sep 3 18:11:22 2006 +0000 - - Set API version to 2.17. - - 2006-09-03 Christian Persch - - * configure.ac: - - Set API version to 2.17. - - ChangeLog | 6 ++++++ - configure.ac | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 5cad0ec2f1eda2becbc0f8f7503beba7eb2ee66f -Author: Christian Persch -Date: Sun Sep 3 18:03:53 2006 +0000 - - Post-release version bump. - - 2006-09-03 Christian Persch - - * configure.ac: - - Post-release version bump. - - 2006-09-03 Christian Persch - - ChangeLog | 10 ++++++++++ - configure.ac | 2 +- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 56cb7e3bc2cd4edb048fc7f217ff38eaaac638fa -Author: Christian Persch -Date: Sun Sep 3 18:01:44 2006 +0000 - - Fix ChangeLog - - help/ChangeLog | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 56d5b739448f311e0b7753c4347657014b1add50 -Author: Christian Persch -Date: Sun Sep 3 17:37:22 2006 +0000 - - New NEWS - - NEWS | 30 ++++++++++++++++++++++++++++-- - 1 file changed, 28 insertions(+), 2 deletions(-) - -commit 4bbd5494e4b53eacaf23ec492c5b23be6cb1fb42 -Author: Priit Laes -Date: Sun Sep 3 17:10:54 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-09-03 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 18 +++++++++--------- - 2 files changed, 13 insertions(+), 9 deletions(-) - -commit d304095a06d270ec204cc125f5bb45e88c7e8cd7 -Author: Christian Persch -Date: Sun Sep 3 17:01:09 2006 +0000 - - Update API version for 2.16. - - 2006-09-03 Christian Persch - - * configure.ac: - - Update API version for 2.16. - - ChangeLog | 6 ++++++ - configure.ac | 8 ++++---- - doc/reference/tmpl/ephy-embed.sgml | 3 +++ - m4/gecko.m4 | 4 ++-- - 4 files changed, 15 insertions(+), 6 deletions(-) - -commit e099832cafac118e0c4edf224c0b2a816a69b80c -Author: Christian Persch -Date: Sun Sep 3 16:39:39 2006 +0000 - - Updating NEWS - - NEWS | 281 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 281 insertions(+) - -commit d96dcfbb0f93cab3537f69397849cc85489ddc63 -Author: Ani Peter -Date: Sun Sep 3 16:14:14 2006 +0000 - - Updated Malayalam translation - - po/ChangeLog | 4 + - po/ml.po | 5356 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 3234 insertions(+), 2126 deletions(-) - -commit dc9a8776e09ba46edfb6bc1ff2f9049f3f09d962 -Author: Victor Osadci -Date: Sun Sep 3 15:48:47 2006 +0000 - - Document toolbar changes, bug #148927 and #319015 Update the printing - - 2006-09-03 Victor Osadci - - * C/epiphany.xml: - Document toolbar changes, bug #148927 and #319015 - Update the printing section for the new GTK+ printing - Update the manual for 2.16. - - help/C/epiphany.xml | 82 +++++++++++++++++------------------------------------ - help/ChangeLog | 8 ++++++ - 2 files changed, 34 insertions(+), 56 deletions(-) - -commit 7da626a20968158ac6f5b8e6b250054d88ee4acb -Author: Subhransu Behera -Date: Sun Sep 3 14:56:56 2006 +0000 - - Updated Oriya Translation - - po/or.po | 203 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 103 insertions(+), 100 deletions(-) - -commit aad032e2197d7db0ca59e6e29b453fe35ea8c7bc -Author: Subhransu Behera -Date: Sun Sep 3 14:56:36 2006 +0000 - - Added Strings for Updated Oriya Translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 5c0a4553b32df1cc5f0c91857fd62c955c5aed74 -Author: Pawan Chitrakar -Date: Sun Sep 3 13:10:27 2006 +0000 - - Nepali Translation updated - - po/ChangeLog | 4 + - po/ne.po | 964 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 480 insertions(+), 488 deletions(-) - -commit 97beca97ecc4fad85629b9d94fbbf85b1c89f53f -Author: Christophe Bliard -Date: Sat Sep 2 11:54:48 2006 +0000 - - Added partial French translation. - - 2006-09-02 Christophe Bliard - - * Makefile.am: - * fr/fr.po: Added partial French translation. - - help/ChangeLog | 5 + - help/Makefile.am | 2 +- - help/fr/fr.po | 2923 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 2929 insertions(+), 1 deletion(-) - -commit c444f822d6e07d26698043fafcfc9ee986ad0b22 -Author: Inaki Larranaga -Date: Sat Sep 2 09:31:07 2006 +0000 - - Updated Basque translation. - - 2006-09-02 Inaki Larranaga - - * eu.po: Updated Basque translation. - - po/ChangeLog | 4 + - po/eu.po | 375 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 201 insertions(+), 178 deletions(-) - -commit ec77e86c3c1877a00c55891e2130b0c35c59d052 -Author: Kostas Papadimas -Date: Sat Sep 2 07:11:13 2006 +0000 - - Updated Greek translation - - po/ChangeLog | 4 ++++ - po/el.po | 61 +++++++++++++++++++++++++----------------------------------- - 2 files changed, 29 insertions(+), 36 deletions(-) - -commit cea57dea762de01b1a50c3cb665a6a472a920433 -Author: Jovan Naumovski -Date: Fri Sep 1 00:14:55 2006 +0000 - - 2006-09-01 Jovan Naumovski * mk.po: Updated Macedonian translation - - po/ChangeLog | 4 ++++ - po/mk.po | 66 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 37 insertions(+), 33 deletions(-) - -commit c2b76f8f562f0c4fe28986accebb339e8614e02f -Author: Priit Laes -Date: Thu Aug 31 18:39:00 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-08-31 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 19 +++++++++++++------ - 2 files changed, 17 insertions(+), 6 deletions(-) - -commit 86589137f7e7d23d17652de5f41a4d2511016b32 -Author: Christophe Merlet -Date: Wed Aug 30 15:58:37 2006 +0000 - - Updated French translation. - - po/ChangeLog | 5 +++++ - po/fr.po | 8 ++++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit b6d8aa375ad7ef51c3fa59761cbaf9899945beb0 -Author: Gabor Kelemen -Date: Wed Aug 30 13:18:38 2006 +0000 - - Translation updated. - - 2006-08-30 Gabor Kelemen - - * hu.po: Translation updated. - - po/ChangeLog | 4 + - po/hu.po | 338 +++++++++++++++++++---------------------------------------- - 2 files changed, 111 insertions(+), 231 deletions(-) - -commit ee812201008063d60feb9ce9ab8727f9edec9484 -Author: Duarte Loreto -Date: Tue Aug 29 20:58:16 2006 +0000 - - Updated Portuguese translation. - - 2006-08-29 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 1859 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1039 insertions(+), 824 deletions(-) - -commit 658146b4ee79c6d53b7cdd3a7eccbb3c873b964f -Author: Gintautas Miliauskas -Date: Tue Aug 29 19:04:42 2006 +0000 - - Updated Lithuanian translation. - - po/ChangeLog | 4 ++++ - po/lt.po | 26 +++++++++++++++----------- - 2 files changed, 19 insertions(+), 11 deletions(-) - -commit d613613f0d8e86460a7e089b33dfeaf6bb2423e8 -Author: Rajesh Ranjan -Date: Tue Aug 29 11:17:41 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/hi.po | 1124 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 635 insertions(+), 493 deletions(-) - -commit b972d09faba992322faf3c9d66e7e2dacafbd607 -Author: Christophe Merlet -Date: Mon Aug 28 13:24:39 2006 +0000 - - Updated French translation. - - po/ChangeLog | 5 + - po/fr.po | 374 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 202 insertions(+), 177 deletions(-) - -commit 513c133fe14ede31c855ab8be756f133f6a61c95 -Author: Theppitak Karoonboonyanan -Date: Sun Aug 27 06:48:33 2006 +0000 - - Updated Thai translation. - - 2006-08-27 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 +++ - po/th.po | 89 +++++++++++++++++++++++++++--------------------------------- - 2 files changed, 44 insertions(+), 49 deletions(-) - -commit 0448c622c423dbdf0484d5d76f5fb2c394b8a8a1 -Author: Priit Laes -Date: Sat Aug 26 03:30:01 2006 +0000 - - Translation updated. - - 2006-08-26 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 652 +++++++++++++++++++---------------------------------------- - 2 files changed, 215 insertions(+), 441 deletions(-) - -commit d49950672dca58a5d2b8fa83a0356432a7d00015 -Author: Priit Laes -Date: Sat Aug 26 02:59:09 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-08-26 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 5 ++++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit ccf076d50de9fb7627dce36fdc35108ee1b18374 -Author: Wouter Bolsterlee -Date: Fri Aug 25 12:57:09 2006 +0000 - - Small update to nl.po - - * Small update to nl.po - - po/nl.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 454aa034905465963cc7b504abcf122e17156370 -Author: Wouter Bolsterlee -Date: Fri Aug 25 12:55:52 2006 +0000 - - Small update to nl.po - - * Small update to nl.po - - po/nl.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3e25b3c4e55ae65041eb4fd8cde28b26b281b65e -Author: Raivis Dejus -Date: Fri Aug 25 11:11:04 2006 +0000 - - Updated Latvian translation. - - 2006-08-24 Raivis Dejus - - * lv.po: Updated Latvian translation. - - po/ChangeLog | 4 + - po/lv.po | 1582 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 875 insertions(+), 711 deletions(-) - -commit b192b6f8c6003fb5f62212baf629e7133b172214 -Author: Christian Persch -Date: Thu Aug 24 13:04:46 2006 +0000 - - Add some more mime types. Fixes bug #352482. - - 2006-08-24 Christian Persch - - * data/mime-types-permissions.xml: - - Add some more mime types. Fixes bug #352482. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 3 +++ - 2 files changed, 9 insertions(+) - -commit 4f44e80dbd3d2834feabc59b369947f04df6fa90 -Author: Priit Laes -Date: Thu Aug 24 06:04:24 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-08-24 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++ - po/et.po | 163 +++-------------------------------------------------------- - 2 files changed, 11 insertions(+), 156 deletions(-) - -commit ef3b72d76582864dfc4ab3b5651de9e02217d04a -Author: Funda Wang -Date: Wed Aug 23 14:03:22 2006 +0000 - - Updated epiphany zh_CN translation. - - po/ChangeLog | 4 ++++ - po/zh_CN.po | 29 ++++++++++++++++++----------- - 2 files changed, 22 insertions(+), 11 deletions(-) - -commit b71806245137907429cbce65a5923119fe42b058 -Author: Christian Persch -Date: Tue Aug 22 13:23:07 2006 +0000 - - Make this LGPL. - - 2006-08-22 Christian Persch - - * embed/mozilla/GeckoFormSigningDialog.cpp: - - Make this LGPL. - - ChangeLog | 6 ++++++ - embed/mozilla/GeckoFormSigningDialog.cpp | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 7cfbd18e4e77454d111dec037171e2909c3a34f7 -Author: Christian Persch -Date: Mon Aug 21 19:25:54 2006 +0000 - - Post-release version bump. - - 2006-08-21 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit c1212c685cc63dbc037b82898251ce37a22eb9f5 -Author: Christian Persch -Date: Mon Aug 21 19:23:10 2006 +0000 - - === Release 2.15.92 === - - 2006-08-21 Christian Persch - - === Release 2.15.92 === - - * NEWS: - * configure.ac: - - Updated for 2.15.92. - - * embed/mozilla/EphyAboutModule.cpp: - - Use escaped URL for about:recover. Fixes bug #351296. - - * src/ephy-window.c: - - Remove shortcut for SendPage. - - ChangeLog | 25 ++++++++++++++++++++++++- - NEWS | 20 ++++++++++++++++++++ - configure.ac | 10 +++++----- - embed/mozilla/EphyAboutModule.cpp | 2 +- - src/ephy-window.c | 2 +- - 5 files changed, 51 insertions(+), 8 deletions(-) - -commit 6a6e9664f23c2a5eb4e6d477f1f6f2d55aa37bd0 -Author: Christian Persch -Date: Mon Aug 21 18:20:56 2006 +0000 - - Don't show the empty window that the print options tab is - - 2006-08-19 Christian Persch - - * data/glade/print.glade: - * embed/mozilla/GeckoPrintService.cpp: - - Don't show the empty window that the print options tab is - - ChangeLog | 10 ++++++---- - data/glade/print.glade | 1 - - embed/mozilla/GeckoPrintService.cpp | 1 + - 3 files changed, 7 insertions(+), 5 deletions(-) - -commit 48dc7068e1528087fa584eaeedce348bce2c70df -Author: Subhransu Behera -Date: Mon Aug 21 03:54:20 2006 +0000 - - Updated Oriya Translation - - po/or.po | 4080 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 4080 insertions(+) - -commit 4a8bd2ab887d44662cd40a2b01ac9b6bd1c4c939 -Author: Subhransu Behera -Date: Mon Aug 21 03:53:51 2006 +0000 - - Added Oriya to The List of Languages - - po/LINGUAS | 1 + - 1 file changed, 1 insertion(+) - -commit 893e8c25eb6e6998363d04a1a4aa33df97f7c754 -Author: Subhransu Behera -Date: Mon Aug 21 03:52:55 2006 +0000 - - Updated Oriya Translation and Added Oriya to The List of Languages - - po/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 6d36f6a7475065bf49cc7823f3939aa5041c2012 -Author: Christian Persch -Date: Sun Aug 20 22:35:46 2006 +0000 - - Enable pango for Urdu locale. - - 2006-08-21 Christian Persch - - * data/epiphany-pango.schemas: - - Enable pango for Urdu locale. - - ChangeLog | 6 ++++++ - data/epiphany-pango.schemas | 3 +++ - 2 files changed, 9 insertions(+) - -commit 1b940a9c4031f617209336ec107d3fb7128a1d10 -Author: Vincent van Adrighem -Date: Sun Aug 20 22:27:19 2006 +0000 - - Translation updated by Reinout van Schouwen. - - 2006-08-21 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 876 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 522 insertions(+), 358 deletions(-) - -commit f3bfee7db0e8e93c409408b44cdf976f765e8363 -Author: Alexander Shopov -Date: Sat Aug 19 21:23:05 2006 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2006-08-19 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - po/ChangeLog | 5 + - po/bg.po | 363 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 196 insertions(+), 172 deletions(-) - -commit f67cc88520577643c8614453693ce79515847d1e -Author: Christian Persch -Date: Sat Aug 19 13:56:41 2006 +0000 - - YAMAC. - - 2006-08-19 Christian Persch - - * embed/mozilla/EphyFind.cpp: - - YAMAC. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyFind.cpp | 10 +++------- - 2 files changed, 9 insertions(+), 7 deletions(-) - -commit cf1e89dc4fe88ac30430e1cd481147319fd8ce8f -Author: Francisco Javier F. Serrador -Date: Sat Aug 19 12:53:20 2006 +0000 - - Improved Spanish translation. - - - 2006-08-19 Francisco Javier F. Serrador - - * es/es.po: Improved Spanish translation. - - help/ChangeLog | 4 + - help/es/es.po | 1295 ++++++++++++++++++++++++++++---------------------------- - 2 files changed, 654 insertions(+), 645 deletions(-) - -commit a6e40d28bd88ccaf486ce35e0e188b7e231ebb7f -Author: Francisco Javier F. Serrador -Date: Sat Aug 19 12:49:45 2006 +0000 - - Added some tagging. - - 2006-08-19 Francisco Javier F. Serrador - - * C/ephiphany.xml: Added some tagging. - - help/C/epiphany.xml | 12 +++++++----- - help/ChangeLog | 4 ++++ - 2 files changed, 11 insertions(+), 5 deletions(-) - -commit 258c4de8e03611be58125f83feae1f6d67765eda -Author: Matic Žgur -Date: Sat Aug 19 12:25:46 2006 +0000 - - Updated Slovenian translation. - - 2006-08-19 Matic Žgur - - * sl.po: Updated Slovenian translation. - - po/ChangeLog | 4 + - po/sl.po | 5597 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 2867 insertions(+), 2734 deletions(-) - -commit f203a9908c1e0bab6c3c5701b8e990f785cf0359 -Author: Christian Persch -Date: Fri Aug 18 21:33:54 2006 +0000 - - Disable DOM storage for now. - - 2006-08-18 Christian Persch - - * data/default-prefs-common.js: - - Disable DOM storage for now. - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 3 +++ - 2 files changed, 9 insertions(+) - -commit b49b434f61a5b3fc67c40340ede8f76f79ef5656 -Author: Nikos Charonitakis -Date: Thu Aug 17 19:52:22 2006 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 816 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 488 insertions(+), 332 deletions(-) - -commit 277fa269a52fa25a65b05cd4274ad4b65f7c90c2 -Author: Christian Persch -Date: Thu Aug 17 18:06:38 2006 +0000 - - Remove debug printf - - lib/ephy-print-utils.c | 2 -- - 1 file changed, 2 deletions(-) - -commit bcac21fc4fb9d3fedda5e57a111d3f188cd69396 -Author: Christian Persch -Date: Thu Aug 17 18:06:07 2006 +0000 - - Fix crash when reading the options file. Bug #351788. Actually return the - - 2006-08-17 Christian Persch - - * lib/ephy-print-utils.c: - - Fix crash when reading the options file. Bug #351788. - Actually return the settings object. - - ChangeLog | 7 ++++++ - lib/ephy-print-utils.c | 68 ++++++++++++++++++++++++++------------------------ - 2 files changed, 43 insertions(+), 32 deletions(-) - -commit 63973908d495105b4c1aae36ee4f42628292c1f8 -Author: Nickolay V. Shmyrev -Date: Thu Aug 17 15:19:02 2006 +0000 - - Updated Russian translation. - - 2006-08-17 Nickolay V. Shmyrev - - * ru.po: Updated Russian translation. - - po/ChangeLog | 4 + - po/ru.po | 1784 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 986 insertions(+), 802 deletions(-) - -commit a78023c11ad25b599cab0544602aa8e573123048 -Author: Christian Persch -Date: Thu Aug 17 13:53:07 2006 +0000 - - Enable pango for Thai locale. Bug #339532. - - 2006-08-17 Christian Persch - - * data/epiphany-pango.schemas: - - Enable pango for Thai locale. Bug #339532. - - ChangeLog | 6 ++++++ - data/epiphany-pango.schemas | 3 +++ - 2 files changed, 9 insertions(+) - -commit 8bc5264e2cde48944fc52fa44dfa219a6c6b9bc2 -Author: Artur Flinta -Date: Wed Aug 16 21:15:36 2006 +0000 - - Updated Polish translation by GNOME PL Team. - - 2006-08-16 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 1764 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 970 insertions(+), 798 deletions(-) - -commit 32bc04abca48abf5a6cda093940ef33c2c2ad2a7 -Author: Baris Cicek -Date: Wed Aug 16 15:18:36 2006 +0000 - - Updated Turkish Translation - - po/ChangeLog | 4 + - po/tr.po | 2556 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 1095 insertions(+), 1465 deletions(-) - -commit b5f4a285e86286ffad5ba2faa4f2d032e926b905 -Author: Daniel Nylander -Date: Wed Aug 16 05:31:44 2006 +0000 - - Updated Swedish translation. - - 2006-08-16 Daniel Nylander - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 376 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 202 insertions(+), 178 deletions(-) - -commit bc56459a9c75ae30e1146571728e37542da586f9 -Author: N Jayaradha -Date: Wed Aug 16 05:30:57 2006 +0000 - - jayaradhaa@gmail.com - - po/ta.po | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - -commit b9d6d1606a42354ba23c8661a158216147da5b44 -Author: N Jayaradha -Date: Wed Aug 16 05:29:04 2006 +0000 - - jayaradhaa@gmail.com - - po/ta.po | 1964 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1036 insertions(+), 928 deletions(-) - -commit 5368617194bedad14cca1ea7654c28e54680186b -Author: Ilkka Tuohela -Date: Wed Aug 16 03:37:06 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 ++++ - po/fi.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit b79e46b9d202be207fe984aa8359af1c8ebf909c -Author: Gabor Kelemen -Date: Wed Aug 16 01:39:13 2006 +0000 - - Translation updated. - - 2006-08-16 Gabor Kelemen - - * hu.po: Translation updated. - - po/ChangeLog | 4 + - po/hu.po | 1872 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1075 insertions(+), 801 deletions(-) - -commit 88a634b84c0f616e51ca31b737cc43ff80774181 -Author: Sanlig Badral -Date: Tue Aug 15 20:38:54 2006 +0000 - - Updated Mongolian translation. - - po/ChangeLog | 4 + - po/mn.po | 4735 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 2697 insertions(+), 2042 deletions(-) - -commit 515b38d7652cb1a26723193af8979d97686e9988 -Author: Satoru SATOH -Date: Tue Aug 15 15:32:38 2006 +0000 - - Updated Japanese translation. - - 2006-08-16 Satoru SATOH - - * Updated Japanese translation. - - po/ChangeLog | 4 + - po/ja.po | 686 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 407 insertions(+), 283 deletions(-) - -commit b73c072b8717161b638421f34b976cbd551ffe29 -Author: Funda Wang -Date: Tue Aug 15 15:15:14 2006 +0000 - - Updated epiphany zh_CN translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 381 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 206 insertions(+), 179 deletions(-) - -commit 192fdc81edf56c861df4f31acbf485041d38c0c9 -Author: Kjartan Maraas -Date: Tue Aug 15 11:54:33 2006 +0000 - - Fix a typo. Fix intltool req. - - 2006-08-15 Kjartan Maraas - - * NEWS: Fix a typo. - * configure.ac: Fix intltool req. - - ChangeLog | 5 +++++ - NEWS | 2 +- - configure.ac | 2 +- - 3 files changed, 7 insertions(+), 2 deletions(-) - -commit b99ccebd568f47f3a4991fc6848685b79d99cd7a -Author: Žygimantas Beručka -Date: Tue Aug 15 11:45:29 2006 +0000 - - Updated Lithuanian translation. - - 2006-08-14 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 1748 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 954 insertions(+), 798 deletions(-) - -commit 091f943ae35020cc904d5af1b8c6d6605c7d2d9e -Author: Ankitkumar Rameshchandra Patel -Date: Mon Aug 14 07:51:03 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++++ - po/gu.po | 78 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 46 insertions(+), 36 deletions(-) - -commit 0da6f97541b81668210b8a0bce0a661271a0d449 -Author: Rahul Bhalerao -Date: Mon Aug 14 06:43:22 2006 +0000 - - Updated Translations - - po/mr.po | 4184 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 4184 insertions(+) - -commit 92d6c9945249c6fd9e0bcc1e972c0cf41e18d8d9 -Author: Ilkka Tuohela -Date: Mon Aug 14 06:22:13 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 417 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 224 insertions(+), 197 deletions(-) - -commit f96e67bf1f8ee16555ddfa2b30f9231a38751cb4 -Author: Christian Persch -Date: Sun Aug 13 20:20:44 2006 +0000 - - Don't crash on error. Bug #351187. - - 2006-08-13 Christian Persch - - * lib/ephy-print-utils.c: - (ephy_print_utils_page_setup_new_from_key_file): - - Don't crash on error. Bug #351187. - - ChangeLog | 7 +++++++ - lib/ephy-print-utils.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 04e578c716a00a2553cdef54a9c2cf3a7885b3ef -Author: Rahul Bhalerao -Date: Sun Aug 13 14:20:07 2006 +0000 - - Updated translations - - po/ChangeLog | 5 +++++ - po/LINGUAS | 1 + - 2 files changed, 6 insertions(+) - -commit 180f450c052cfdf9450fdffdb0bb0f5f971f5a19 -Author: Christian Persch -Date: Sat Aug 12 15:40:00 2006 +0000 - - nsIPassword.h is always available. Fixes bug #350997. - - 2006-08-12 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - nsIPassword.h is always available. Fixes bug #350997. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 8 +------- - 2 files changed, 7 insertions(+), 7 deletions(-) - -commit 64401a64dc003842b144560f864a91263ef7cce4 -Author: Clytie Siddall -Date: Sat Aug 12 12:49:19 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 2163 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1158 insertions(+), 1009 deletions(-) - -commit aaa7a902c8f6faf7c168fa7646702dbb0d2d6dee -Author: Changwoo Ryu -Date: Sat Aug 12 10:08:06 2006 +0000 - - Updated Korean translation. - - 2006-08-12 Changwoo Ryu - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 672 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 397 insertions(+), 279 deletions(-) - -commit b0985e0d8f52e6203104969da01cf294b39494f2 -Author: Ahmad Riza H Nst -Date: Sat Aug 12 06:37:59 2006 +0000 - - Updated. - - 2006-08-12 Ahmad Riza H Nst - - * id.po: Updated. - - po/ChangeLog | 4 + - po/id.po | 847 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 501 insertions(+), 350 deletions(-) - -commit 3864e1f9245c79d54cfb5ba69db95770ee2e267f -Author: Hendrik Richter -Date: Fri Aug 11 09:41:25 2006 +0000 - - Updated German translation. - - 2006-08-11 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 366 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 198 insertions(+), 172 deletions(-) - -commit 7dc99c559402d6f3a638a8b856e47f105fdbe664 -Author: Christian Persch -Date: Thu Aug 10 18:21:01 2006 +0000 - - Fix crash on PPC due to differing pointer types. - - 2006-08-10 Christian Persch - - * plugins/desktop-file/plugin.cpp: - - Fix crash on PPC due to differing pointer types. - - ChangeLog | 6 ++++++ - plugins/desktop-file/plugin.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 431ef3d613f9e020d0add3f33cbd1d41d575bf92 -Author: Priit Laes -Date: Thu Aug 10 18:14:39 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-08-10 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 22 ++++++++++------------ - 2 files changed, 14 insertions(+), 12 deletions(-) - -commit cf5623f67b81556a7b27484f1245e467dd12e7c4 -Author: Christian Persch -Date: Thu Aug 10 12:25:27 2006 +0000 - - Add missing semicolon. Bug #350711. - - 2006-08-10 Christian Persch - - * data/default-prefs-common.js: - - Add missing semicolon. Bug #350711. - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 77e391a1dc6a6bf41b230d4af4af80653a5945e9 -Author: Maxim Dziumanenko -Date: Thu Aug 10 08:56:25 2006 +0000 - - Update Ukrainian translation. - - 2006-08-10 Maxim Dziumanenko - - * Update Ukrainian translation. - - po/ChangeLog | 4 + - po/uk.po | 370 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 200 insertions(+), 174 deletions(-) - -commit 3bcb2b1ace540d12da684c7b8b05994a7d136520 -Author: Josep Puigdemont i Casamajó -Date: Wed Aug 9 23:54:11 2006 +0000 - - Updated Catalan translation by Gil Forcada. - - po/ChangeLog | 9 +- - po/ca.po | 852 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 504 insertions(+), 357 deletions(-) - -commit 8e5ee4c532e32d5780f21e3c1a1894121e08d016 -Author: Jean-François Rameau -Date: Wed Aug 9 20:08:29 2006 +0000 - - ephy_file_launch_desktop_file accepts now a parameter. Fix #343321. - - 2006-08-09 Jean-François Rameau - - * src/popup-commands.c: (background_download_completed): - * lib/ephy-file-helpers.h: (ephy_file_launch_desktop_file): - * lib/ephy-file-helpers.c: (ephy_file_launch_desktop_file): - - ephy_file_launch_desktop_file accepts now a parameter. Fix #343321. - - * src/ephy-window.c: - - Remove CONF_DESKTOP_BG_PICTURE #define. No need. - - ChangeLog | 12 ++++++++++++ - lib/ephy-file-helpers.c | 3 ++- - lib/ephy-file-helpers.h | 1 + - src/ephy-window.c | 1 - - src/popup-commands.c | 10 +--------- - 5 files changed, 16 insertions(+), 11 deletions(-) - -commit 5c78cf1e2bf9b81889f605412416b23b9841bdc4 -Author: Guntupalli Karunakar -Date: Wed Aug 9 19:40:54 2006 +0000 - - Updated Dzongkha translations - - po/ChangeLog | 5 + - po/dz.po | 836 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 496 insertions(+), 345 deletions(-) - -commit fbd3371f62a996b35b3f1b7b3b84402de4de86e7 -Author: Kjartan Maraas -Date: Wed Aug 9 12:58:36 2006 +0000 - - Updated Norwegian bokmål translation. - - 2006-08-09 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - po/ChangeLog | 4 + - po/nb.po | 410 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 222 insertions(+), 192 deletions(-) - -commit 3a577cc373a367ac1d24e801807b9d15a808c150 -Author: Theppitak Karoonboonyanan -Date: Wed Aug 9 04:08:12 2006 +0000 - - Updated Thai translation. - - 2006-08-09 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 432 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 231 insertions(+), 205 deletions(-) - -commit 01bdee7a5233e641b85c7479c371e28182be8bb1 -Author: Priit Laes -Date: Wed Aug 9 03:57:20 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-08-09 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 1028 +++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 662 insertions(+), 370 deletions(-) - -commit fd261f73e8f9f9cf93a8c44cfc6d7330c58c346b -Author: Francisco Javier F. Serrador -Date: Tue Aug 8 19:40:38 2006 +0000 - - Updated Spanish translation. - - 2006-08-08 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 365 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 195 insertions(+), 174 deletions(-) - -commit df55635c8d8a36d59bd65aa1af79603cc6afbb9f -Author: Christian Persch -Date: Tue Aug 8 14:04:05 2006 +0000 - - Fix one AS_HELP_STRING. - - 2006-08-08 Christian Persch - - * configure.ac: - - Fix one AS_HELP_STRING. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4e14d927430a2c5a1da927c59216aca2286be33a -Author: Jovan Naumovski -Date: Tue Aug 8 12:17:01 2006 +0000 - - 2006-08-08 Jovan Naumovski * mk.po: Updated Macedonian Translation - - po/ChangeLog | 4 ++++ - po/mk.po | 69 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 40 insertions(+), 33 deletions(-) - -commit 39e2b103e8d51f6c1d932a40a8fd6d18e1680d09 -Author: Jean-François Rameau -Date: Tue Aug 8 10:51:50 2006 +0000 - - Expose notebook->priv->focused_pages to extensions. Fix bug #350187. - - 2006-08-08 Jean-François Rameau - - * src/epiphany.defs: - * src/ephy-notebook.h: - * src/ephy-notebook.c: - * src/epiphany.override: - - Expose notebook->priv->focused_pages to extensions. Fix bug #350187. - - ChangeLog | 9 +++++++++ - src/ephy-notebook.c | 8 ++++++++ - src/ephy-notebook.h | 2 ++ - src/epiphany.defs | 5 +++++ - src/epiphany.override | 14 ++++++++++++++ - 5 files changed, 38 insertions(+) - -commit 97c9c18a23ad724538d9aa43db0bef78af1eae15 -Author: Ankitkumar Rameshchandra Patel -Date: Tue Aug 8 04:59:55 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 363 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 193 insertions(+), 174 deletions(-) - -commit b7ade0ebd07ed3b36108a154bc8f385059f8a252 -Author: Jovan Naumovski -Date: Tue Aug 8 00:25:35 2006 +0000 - - 2006-08-08 Jovan Naumovski * mk.po: Updated Macedonian Translation - - po/ChangeLog | 4 + - po/mk.po | 362 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 193 insertions(+), 173 deletions(-) - -commit 50cf09a61a43f5cab33fbd783a58e880b42b8004 -Author: Christian Persch -Date: Mon Aug 7 21:42:39 2006 +0000 - - Post-release version bump. - - 2006-08-07 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 9a00acc5d859280d25d939e0f252c99408929aa3 -Author: Christian Persch -Date: Mon Aug 7 21:40:57 2006 +0000 - - === Release 2.5.91 === - - 2006-08-07 Christian Persch - - === Release 2.5.91 === - - * configure.ac: - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 3 +++ - 3 files changed, 10 insertions(+), 1 deletion(-) - -commit d7265632db0ebbfa422c2ed3041a6d5e9ec19ca4 -Author: Christian Persch -Date: Mon Aug 7 20:59:15 2006 +0000 - - Update - - NEWS | 20 +++++++++++++------- - 1 file changed, 13 insertions(+), 7 deletions(-) - -commit 16102f63ad820a9e7f339034b544028db2b31f04 -Author: Christian Persch -Date: Mon Aug 7 20:51:19 2006 +0000 - - Don't allow closing the window if quit is locked down. Patch by Diego - - 2006-08-07 Christian Persch - - * src/ephy-window.c: - - Don't allow closing the window if quit is locked down. - Patch by Diego Escalante Urrelo, bug #320091. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 4 ++++ - 2 files changed, 11 insertions(+) - -commit 71e7e75a6a93eab0accfef5fee86311c6755714d -Author: Christian Persch -Date: Mon Aug 7 20:49:51 2006 +0000 - - Avoid accels on thin characters. Patch by Crispin Flowerday, bug #331777. - - 2006-08-07 Christian Persch - - * src/ephy-window.c: - * src/ephy-history-window.c: - - Avoid accels on thin characters. Patch by - Crispin Flowerday, bug #331777. - - ChangeLog | 8 ++++++++ - src/ephy-history-window.c | 2 +- - src/ephy-window.c | 4 ++-- - 3 files changed, 11 insertions(+), 3 deletions(-) - -commit ff5debba3755465eaeb4766b213cd5d37ffe8e01 -Author: Christian Persch -Date: Mon Aug 7 20:42:44 2006 +0000 - - Add "delete text" command. - - 2006-08-07 Christian Persch - - * src/ephy-window.c: - * src/window-commands.c: - * src/window-commands.h: - - Add "delete text" command. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 3 +++ - src/window-commands.c | 22 ++++++++++++++++++++++ - src/window-commands.h | 3 +++ - 4 files changed, 36 insertions(+) - -commit 148a755f7a9ed405ac89f92d8add5804efd664c3 -Author: Christian Persch -Date: Mon Aug 7 20:38:35 2006 +0000 - - Also recognise keypad keys for navigation. Bug #337089. - - 2006-08-07 Christian Persch - - * src/ephy-window.c: - - Also recognise keypad keys for navigation. Bug #337089. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 19 +++++++++++++++++++ - 2 files changed, 25 insertions(+) - -commit abe6943d42403279998b63725b8bbc9fb7cd1a96 -Author: Christian Persch -Date: Mon Aug 7 20:36:38 2006 +0000 - - Fix the build. - - 2006-08-07 Christian Persch - - * embed/mozilla/Makefile.am: - - Fix the build. - - ChangeLog | 6 ++++++ - embed/mozilla/Makefile.am | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 8d06d6b92055262afa4585fc1d5545bce48398f7 -Author: Christian Persch -Date: Mon Aug 7 20:35:37 2006 +0000 - - Correctly mark mouse click events as consumed. - - 2006-08-07 Christian Persch - - * src/ephy-tab.c: - - Correctly mark mouse click events as consumed. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 10 +++++++--- - 2 files changed, 13 insertions(+), 3 deletions(-) - -commit 10473d884a92802eeedb5e328d89efaadf731a7b -Author: Christian Persch -Date: Mon Aug 7 20:32:04 2006 +0000 - - Improve the a11y theme check. - - 2006-08-07 Christian Persch - - * lib/widgets/ephy-location-entry.c: - - Improve the a11y theme check. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 1b1f99da1314e9f00d6ba5a6814b412b61a4d90e -Author: Christian Persch -Date: Mon Aug 7 20:29:59 2006 +0000 - - Use variables here, not configure substitutions. - - 2006-08-07 Christian Persch - - * lib/Makefile.am: - - Use variables here, not configure substitutions. - - ChangeLog | 6 ++++++ - lib/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e0560dfc3c391b5b063a37d2974860540785ae73 -Author: Christian Persch -Date: Mon Aug 7 20:29:41 2006 +0000 - - Simply CallGetService to get the pref branch. - - 2006-08-07 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - - Simply CallGetService to get the pref branch. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 20 ++++++++------------ - 2 files changed, 14 insertions(+), 12 deletions(-) - -commit 2f00ef03e4fa04c80915fbbc6cd5d54d9afd2ae6 -Author: Christian Persch -Date: Mon Aug 7 20:25:17 2006 +0000 - - Use AutoJSContextStack on window open. Disable XPrint. - - 2006-08-07 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Use AutoJSContextStack on window open. - Disable XPrint. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 13 ++++++++++++- - 2 files changed, 19 insertions(+), 1 deletion(-) - -commit afe63de9741cde4169dd31a9241951dea97016cb -Author: Christian Persch -Date: Mon Aug 7 20:24:15 2006 +0000 - - Set printer name setting. - - 2006-08-07 Christian Persch - - * data/default-prefs-common.js: - - Set printer name setting. - - ChangeLog | 8 ++++---- - data/default-prefs-common.js | 1 + - 2 files changed, 5 insertions(+), 4 deletions(-) - -commit 1d3acd7c5334492f7de378613504f903686a0b21 -Author: Christian Persch -Date: Mon Aug 7 20:22:38 2006 +0000 - - Try to fix the docs build with gecko trunk. - - 2006-08-07 Christian Persch - - * doc/reference/Makefile.am: - - Try to fix the docs build with gecko trunk. - - ChangeLog | 12 ++++++++++++ - doc/reference/Makefile.am | 3 +++ - 2 files changed, 15 insertions(+) - -commit 62ede7f0e038909cf27fa57f92040ac1337f8d87 -Author: Christian Persch -Date: Mon Aug 7 20:13:36 2006 +0000 - - Remove suprious entry. - - 2006-08-07 Christian Persch - - * src/languages.h: - - Remove suprious entry. - - ChangeLog | 6 ++++++ - src/languages.h | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 33c1c3a2e91df54dc70f0c11993bfaad9c46bddb -Author: Christian Persch -Date: Mon Aug 7 20:13:15 2006 +0000 - - Make sure to destroy the dialogue in all cases. - - 2006-08-07 Christian Persch - - * src/ephy-toolbar-editor.c:(ephy_toolbar_editor_response): - - Make sure to destroy the dialogue in all cases. - - ChangeLog | 6 ++++++ - src/ephy-toolbar-editor.c | 22 +++++++++++----------- - 2 files changed, 17 insertions(+), 11 deletions(-) - -commit 60ffebd0483ae915b4bfd2ef0675295125488746 -Author: Christian Persch -Date: Mon Aug 7 20:08:32 2006 +0000 - - Merged from gnome-2-14. - - 2006-07-24 Christian Persch - - * Makefile.am: - * sv/sv.po: - - Merged from gnome-2-14. - - help/ChangeLog | 13 + - help/Makefile.am | 2 +- - help/sv/sv.po | 1965 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 1979 insertions(+), 1 deletion(-) - -commit 35b8384d7fdcb3ebe48d6e7cf27fd3602b4507d5 -Author: Christian Persch -Date: Mon Aug 7 20:06:31 2006 +0000 - - R embed/mozilla/MozillaPrivate.cpp: R embed/mozilla/MozillaPrivate.h: - - 2006-08-07 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - R embed/mozilla/MozillaPrivate.cpp: - R embed/mozilla/MozillaPrivate.h: - - Remove unused files. - - ChangeLog | 8 ++++++++ - embed/mozilla/MozillaPrivate.cpp | 34 ---------------------------------- - embed/mozilla/MozillaPrivate.h | 23 ----------------------- - embed/mozilla/mozilla-embed-single.cpp | 1 - - 4 files changed, 8 insertions(+), 58 deletions(-) - -commit 99a17a025c2ef82f38b8392f3ce060bf526e8fbd -Author: Christian Persch -Date: Mon Aug 7 20:04:54 2006 +0000 - - Don't start search on and elements. - - 2006-08-07 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Don't start search on and elements. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 7 ++++++- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 44303f0ba0921983df056a62dfe580907fc05a0c -Author: Christian Persch -Date: Mon Aug 7 20:03:32 2006 +0000 - - Don't leak the UI language. - - 2006-08-07 Christian Persch - - * data/default-prefs-common.js: - - Don't leak the UI language. - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 14a11da9f1485e4fea1edc55b6669839d5209ca7 -Author: Christian Persch -Date: Mon Aug 7 20:02:58 2006 +0000 - - Add more mime types. - - 2006-08-07 Christian Persch - - * data/mime-types-permissions.xml: - - Add more mime types. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit 5a6d6fe764282e27b7fc72ae78113613edd5a775 -Author: Christian Persch -Date: Mon Aug 7 20:02:08 2006 +0000 - - Document the print_frames key. - - 2006-08-07 Christian Persch - - * data/epiphany.schemas.in: - - Document the print_frames key. - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 11 +++++++++++ - 2 files changed, 17 insertions(+) - -commit 04e3349f9183df47de06f66bcdde388cc2891bdc -Author: Christian Persch -Date: Mon Aug 7 20:00:57 2006 +0000 - - Decrease maximum progress update to 0.5s - - 2006-08-07 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Decrease maximum progress update to 0.5s - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 5 ++++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 301a01c3d1354b8b6aab938713428be51f506bea -Author: Iñaki Larrañaga Murgoitio -Date: Mon Aug 7 08:23:18 2006 +0000 - - *** empty log message *** - - po/eu.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 095380ff606978d003e3494fbe611ca28a418222 -Author: Inaki Larranaga -Date: Mon Aug 7 08:17:09 2006 +0000 - - Updated Basque translation. - - 2006-08-07 Inaki Larranaga - - * eu.po: Updated Basque translation. - - po/ChangeLog | 4 + - po/eu.po | 694 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 412 insertions(+), 286 deletions(-) - -commit d201e4001adec1184c14573d34220f4b2ab09d2f -Author: Christian Persch -Date: Sun Aug 6 20:13:41 2006 +0000 - - NEWS updated by reinouts - - NEWS | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 83 insertions(+) - -commit 8d598f14589c9525113130c783d1ddfb9765a7fc -Author: Christian Persch -Date: Sat Aug 5 22:42:34 2006 +0000 - - Fix the build. - - 2006-08-05 Christian Persch - - * lib/Makefile.am: - - Fix the build. - - ChangeLog | 6 ++++++ - lib/Makefile.am | 2 ++ - 2 files changed, 8 insertions(+) - -commit dcbd16ef9dd0b77b31005ee34a3ff2ac34f497f6 -Author: Christian Persch -Date: Sat Aug 5 22:05:32 2006 +0000 - - Fix the build. - - 2006-08-05 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_set_page_setup), - (ephy_embed_shell_set_print_settings): - - Fix the build. - - ChangeLog | 7 +++++++ - embed/ephy-embed-shell.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 0cf955ad33aa0a64f0a85843c04505fefd0d92af -Author: Christian Persch -Date: Sat Aug 5 20:17:19 2006 +0000 - - Remove accel for ViewToolbar. Bug #328783. - - 2006-08-05 Christian Persch - - * src/ephy-window.c: - - Remove accel for ViewToolbar. Bug #328783. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a7d77f6d5eb0e0d73c1029dd751014efc21d95df -Author: Christian Persch -Date: Sat Aug 5 15:06:23 2006 +0000 - - A lib/ephy-print-utils.c: A lib/ephy-print-utils.h: - - 2006-08-05 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_set_page_setup), - (ephy_embed_shell_get_page_setup), - (ephy_embed_shell_set_print_settings), - (ephy_embed_shell_get_print_settings): - A lib/ephy-print-utils.c: - A lib/ephy-print-utils.h: - * lib/ephy-string.c: (ephy_string_flags_from_string), - (ephy_string_flags_to_string), (ephy_string_enum_from_string), - (ephy_string_enum_to_string): - * lib/ephy-string.h: - - Persist print settings and page setup. - - ChangeLog | 15 ++ - embed/ephy-embed-shell.c | 42 ++++- - lib/ephy-print-utils.c | 441 +++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-print-utils.h | 60 +++++++ - lib/ephy-string.c | 104 +++++++++++ - lib/ephy-string.h | 13 ++ - 6 files changed, 667 insertions(+), 8 deletions(-) - -commit 3fd222083b1d51093e6d736c8d657cfa9a43689f -Author: Alexander Shopov -Date: Sat Aug 5 07:16:40 2006 +0000 - - Bugfixes by Alexander Shopov - - 2006-08-05 Alexander Shopov - - * bg.po: Bugfixes by - Alexander Shopov - - po/ChangeLog | 5 +++++ - po/bg.po | 35 ++++++++++++++++++----------------- - 2 files changed, 23 insertions(+), 17 deletions(-) - -commit 2c6ccc0361ec0356c2fb9f4fa9ec4f07a091e1f2 -Author: Priit Laes -Date: Sat Aug 5 07:04:16 2006 +0000 - - Translation updated. - - 2006-08-05 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 2040 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 986 insertions(+), 1058 deletions(-) - -commit 813fbc9778a0b612da941c38db00bd2957b6484d -Author: Alexander Shopov -Date: Sat Aug 5 06:08:52 2006 +0000 - - Fixing the last commit mess-up The last updater is Vladimir Petkov - - 2006-08-05 Alexander Shopov - - * bg.po: Fixing the last commit mess-up - The last updater is - Vladimir Petkov - - po/ChangeLog | 2 +- - po/bg.po | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit 1e8fd8174a70f62620ce4ca68cf3bab867017daa -Author: Alexander Shopov -Date: Sat Aug 5 06:05:51 2006 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2006-08-05 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - po/ChangeLog | 5 + - po/bg.po | 761 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 448 insertions(+), 318 deletions(-) - -commit ae22a35c5977014b28f1daa4fb0eb31056936991 -Author: Daniel Nylander -Date: Fri Aug 4 11:07:11 2006 +0000 - - Updated Swedish translation. - - 2006-08-04 Daniel Nylander - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 731 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 426 insertions(+), 309 deletions(-) - -commit fa464aff9da4470b029d2a6d7b90bd1a5a110efd -Author: Kjartan Maraas -Date: Thu Aug 3 11:25:01 2006 +0000 - - Updated Norwegian bokmål translation. - - 2006-08-03 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - po/ChangeLog | 4 + - po/nb.po | 1993 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1171 insertions(+), 826 deletions(-) - -commit 1a801d3c0cbc31c81c3378441ed7516e5d7efb58 -Author: Funda Wang -Date: Thu Aug 3 09:39:27 2006 +0000 - - Updated epiphany zh_CN translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 487 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 292 insertions(+), 199 deletions(-) - -commit d19991d0bfab312972117d76f863e923de1a88b2 -Author: Jovan Naumovski -Date: Tue Aug 1 14:47:11 2006 +0000 - - 2006-08-01 Jovan Naumovski * mk.po: Updated/Fixed Macedonian Translation - - po/ChangeLog | 4 + - po/mk.po | 1471 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 813 insertions(+), 662 deletions(-) - -commit 751834484a2080c8c016c1049d6136a6a63556c3 -Author: Maxim Dziumanenko -Date: Mon Jul 31 10:24:21 2006 +0000 - - Update Ukrainian translation. - - 2006-07-31 Maxim Dziumanenko - - * Update Ukrainian translation. - - po/ChangeLog | 4 + - po/uk.po | 1614 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 913 insertions(+), 705 deletions(-) - -commit 1776f5cb96d010191de1e0633babf215f2ad1720 -Author: Bastien Nocera -Date: Sun Jul 30 22:13:26 2006 +0000 - - Fix superfluous ellipsis in "Save Image As" (Closes: #337914) - - 2006-07-30 Bastien Nocera - - * en_GB.po: Fix superfluous ellipsis in "Save Image As" - (Closes: #337914) - - po/ChangeLog | 5 +++++ - po/en_GB.po | 2 +- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 510c3d0020bbcc1a5f9cff29bdc4895115ce6990 -Author: Christophe Merlet -Date: Sat Jul 29 21:54:50 2006 +0000 - - Updated French translation. - - po/ChangeLog | 4 + - po/fr.po | 492 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 298 insertions(+), 198 deletions(-) - -commit bb984ecc4fbc716729a81d8ab6f7454799f51ce8 -Author: Francisco Javier F. Serrador -Date: Thu Jul 27 20:35:26 2006 +0000 - - Updated Spanish translation. - - 2006-07-27 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++++ - po/es.po | 26 +++++++++++++------------- - 2 files changed, 17 insertions(+), 13 deletions(-) - -commit 984ac16094a1b810ad3d5a76b0c137a904772fc1 -Author: Francisco Javier F. Serrador -Date: Thu Jul 27 15:04:50 2006 +0000 - - Updated Spanish docs. Updated screenshot - - 2006-07-27 Francisco Javier F. Serrador - - * es/es.po: Updated Spanish docs. - * es/figures/ephy-addressbar-smartbookmark-screenshot.png: Updated screenshot - - help/ChangeLog | 4 + - help/es/es.po | 2086 +++++++++++--------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 2460 -> 3664 bytes - 3 files changed, 1193 insertions(+), 897 deletions(-) - -commit f921011a89d0c07484cbcc791eede78af282c289 -Author: Hendrik Richter -Date: Thu Jul 27 14:29:49 2006 +0000 - - Updated German translation. - - 2006-07-27 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 ++++ - po/de.po | 23 +++++++++-------------- - 2 files changed, 13 insertions(+), 14 deletions(-) - -commit 7cb7363a10fd5a77c2be3b0e0966bcf0d11c093c -Author: Hendrik Richter -Date: Thu Jul 27 14:16:46 2006 +0000 - - Updated German translation. - - 2006-07-27 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 296 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 168 insertions(+), 132 deletions(-) - -commit 47ade1bf4b85b17bd8e2b475a1c2cfcd7a76db96 -Author: Ilkka Tuohela -Date: Thu Jul 27 10:17:12 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 298 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 171 insertions(+), 131 deletions(-) - -commit 924793caa9e369eec37284a324dd3833f805d385 -Author: Francisco Javier F. Serrador -Date: Wed Jul 26 13:13:32 2006 +0000 - - Updated Spanish translation. - - 2006-07-26 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 300 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 168 insertions(+), 136 deletions(-) - -commit 428d2a25a38823da0663d9b429813fe475255a8f -Author: Luca Ferretti -Date: Wed Jul 26 12:43:41 2006 +0000 - - Define STOCK_NEW_WINDOW with named icon "window-new" and use it in File -> - - 2006-07-26 Luca Ferretti - - * lib/ephy-stock-icons.c: - * lib/ephy-stock-icons.h: - * src/ephy-window.c: - - Define STOCK_NEW_WINDOW with named icon "window-new" and use it - in File -> New Window. Use "tab-new", "bookmark-new" and - "mail-forward" named icons from Icon Naming Standard for related - actions. A first step to fix bug # 348350 - - ChangeLog | 11 +++++++++++ - lib/ephy-stock-icons.c | 1 + - lib/ephy-stock-icons.h | 15 ++++++++------- - src/ephy-window.c | 2 +- - 4 files changed, 21 insertions(+), 8 deletions(-) - -commit 105f40169c424573ee01d284f54151e0c40b0b23 -Author: Jakub Friedl -Date: Tue Jul 25 13:13:21 2006 +0000 - - Updated Czech translation. - - 2006-07-25 Jakub Friedl - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 684 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 407 insertions(+), 281 deletions(-) - -commit 782934f186cb270720caf5f495de66aa6022a248 -Author: Theppitak Karoonboonyanan -Date: Tue Jul 25 07:33:44 2006 +0000 - - Updated Thai translation. - - 2006-07-25 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 279 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 157 insertions(+), 126 deletions(-) - -commit 96bf00074df9237dd6733909a1a841d20b8f7a10 -Author: Ankitkumar Rameshchandra Patel -Date: Tue Jul 25 05:21:00 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 284 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 160 insertions(+), 128 deletions(-) - -commit d71cee3e1db02c325c545faca1b0a73c5cd0348d -Author: Jean-François Rameau -Date: Mon Jul 24 21:36:03 2006 +0000 - - Set default dictionary based on applicable locale names. - - 2006-07-24 Jean-François Rameau - - * lib/ephy-spell-check.c: (ephy_spell_check_init): - - Set default dictionary based on applicable locale names. - - ChangeLog | 6 ++++++ - lib/ephy-spell-check.c | 18 +++++++++++++----- - 2 files changed, 19 insertions(+), 5 deletions(-) - -commit afb92cc261edefb15b88b620a4e11255633cd714 -Author: Christian Persch -Date: Mon Jul 24 20:35:10 2006 +0000 - - Make this a vbox, not a table. - - 2006-07-24 Christian Persch - - * data/glade/certificate-dialogs.glade: - - Make this a vbox, not a table. - - ChangeLog | 6 + - data/glade/print.glade | 337 +++++++++++++++++++++++++++++++++---------------- - 2 files changed, 237 insertions(+), 106 deletions(-) - -commit 8f074fd0d4ecdc23f4713afaadd058035b809389 -Author: Christian Persch -Date: Mon Jul 24 19:51:36 2006 +0000 - - Fix default activation. - - 2006-07-24 Christian Persch - - * lib/ephy-password-dialog.c: - - Fix default activation. - - * data/glade/form-signing-dialog.glade: - * embed/mozilla/GeckoFormSigningDialog.cpp: - - Fix content packing options. - - ChangeLog | 11 +++++++++++ - data/glade/form-signing-dialog.glade | 21 ++++++++++++++++++++- - embed/mozilla/GeckoFormSigningDialog.cpp | 3 ++- - lib/ephy-password-dialog.c | 21 +++++++++++++++++++++ - 4 files changed, 54 insertions(+), 2 deletions(-) - -commit 118c562a08fa4bb77f2c7042dcfb98c2ec535577 -Author: Christian Persch -Date: Mon Jul 24 19:37:54 2006 +0000 - - Fix spacings, and don't use dummy text. - - 2006-07-24 Christian Persch - - * data/glade/certificate-dialogs.glade: - - Fix spacings, and don't use dummy text. - - ChangeLog | 6 ++++++ - data/glade/certificate-dialogs.glade | 32 ++++++++++++++++---------------- - 2 files changed, 22 insertions(+), 16 deletions(-) - -commit 095010d768b454906d6029fc0403580585527e51 -Author: Christian Persch -Date: Mon Jul 24 19:34:54 2006 +0000 - - Add page security info dialogue from Certificates extension. - - 2006-07-24 Christian Persch - - * data/ui/epiphany-ui.xml: - * src/ephy-statusbar.c: (ephy_statusbar_class_init), - (padlock_button_press_cb), (create_statusbar_security_icon): - * src/ephy-statusbar.h: - * src/ephy-window.c: (ephy_window_constructor): - * src/window-commands.c: (window_cmd_view_page_security_info), - (window_cmd_help_about): - * src/window-commands.h: - - Add page security info dialogue from Certificates extension. - - ChangeLog | 20 ++++++++++++++++++++ - data/ui/epiphany-ui.xml | 1 + - src/ephy-statusbar.c | 43 +++++++++++++++++++++++++++++++++++++++++-- - src/ephy-statusbar.h | 3 +++ - src/ephy-window.c | 43 +++++++++++++++++++++++++++++++++---------- - src/window-commands.c | 16 ++++++++++++++-- - src/window-commands.h | 3 +++ - 7 files changed, 115 insertions(+), 14 deletions(-) - -commit 3f67020b032c7307fdc8d66777c808f75a2c4016 -Author: Christian Persch -Date: Mon Jul 24 19:05:16 2006 +0000 - - Reset IM context before activation. Bug #348478, patch by Nguyễn Thái - - 2006-07-24 Christian Persch - - * lib/widgets/ephy-location-entry.c: (match_selected_cb): - - Reset IM context before activation. Bug #348478, patch by - Nguyễn Thái Ngọc Duy. - - lib/widgets/ephy-location-entry.c | 1 + - 1 file changed, 1 insertion(+) - -commit df2b117c3ba2c3a71108ec4e4d6fb2cf9780a741 -Author: Francisco Javier F. Serrador -Date: Mon Jul 24 16:56:24 2006 +0000 - - Updated Spanish translation. - - 2006-07-24 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 205 +++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 139 insertions(+), 70 deletions(-) - -commit 483385cdf6bde82b2e3c3b7b8d25120e132a59d7 -Author: Hendrik Richter -Date: Mon Jul 24 16:50:06 2006 +0000 - - Updated German translation. - - 2006-07-24 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 ++ - po/de.po | 220 ++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 148 insertions(+), 76 deletions(-) - -commit c9e85a1e4daa62d1575a85e616e4e52510a6d70f -Author: Ankitkumar Rameshchandra Patel -Date: Mon Jul 24 12:43:03 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 477 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 290 insertions(+), 191 deletions(-) - -commit 5084becdbe2d56bcc8c3e4bb6b819d4e98db80c4 -Author: Ilkka Tuohela -Date: Mon Jul 24 09:08:36 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 492 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 296 insertions(+), 200 deletions(-) - -commit ddbea2400f8609588d20ca63529ee71aac75f762 -Author: Theppitak Karoonboonyanan -Date: Mon Jul 24 02:19:05 2006 +0000 - - Updated Thai translation. - - 2006-07-24 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 506 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 304 insertions(+), 206 deletions(-) - -commit 9c8579f3d4a07637318cf5ed32ca5c3c8612bf4d -Author: Jean-François Rameau -Date: Sun Jul 23 21:23:33 2006 +0000 - - Missing GeckoFormSigningDialog entries. - - 2006-07-23 Jean-François Rameau - - * embed/mozilla/Makefile.am: - - Missing GeckoFormSigningDialog entries. - - ChangeLog | 6 ++++++ - embed/mozilla/Makefile.am | 2 ++ - 2 files changed, 8 insertions(+) - -commit 691a8a4fd1e189d341c33c0f11ae479395db7d68 -Author: Christian Persch -Date: Sun Jul 23 20:43:57 2006 +0000 - - Updated. - - 2006-07-22 Christian Persch - - * POTFILES.in: Updated. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 2 ++ - 2 files changed, 6 insertions(+) - -commit 4e2150ac2c00a0a2a2741a67b356003052426feb -Author: Christian Persch -Date: Sun Jul 23 20:30:58 2006 +0000 - - Add accel. Bug #337913. - - 2006-07-22 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_export): - - Add accel. Bug #337913. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 7 ++++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit ff3e857464ce32f626e080f93ea66ce1b5c372e3 -Author: Christian Persch -Date: Sun Jul 23 19:55:18 2006 +0000 - - Implement nsIDOMCryptoDialogs, nsITokenDialogs and - - 2006-07-22 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.h: - * embed/mozilla/MozRegisterComponents.cpp: - - Implement nsIDOMCryptoDialogs, nsITokenDialogs and - nsITokenPasswordDialogs. Bug #312869. - - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - - Add a helper function to get the DOM window off the native - call context, to work around unavailable parent window - in nsIDOMCryptoDialogs - ( https://bugzilla.mozilla.org/show_bug.cgi?id=341914). - - ChangeLog | 17 ++++ - embed/mozilla/EphyUtils.cpp | 50 +++++++++- - embed/mozilla/EphyUtils.h | 2 + - embed/mozilla/GtkNSSDialogs.cpp | 160 +++++++++++++++++++++++++++++--- - embed/mozilla/MozRegisterComponents.cpp | 18 ++++ - 5 files changed, 228 insertions(+), 19 deletions(-) - -commit 63e95001e7f36aa5833acea04643b52f8b70b765 -Author: Christian Persch -Date: Sun Jul 23 16:53:18 2006 +0000 - - No need to double-init gnome-vfs. - - 2006-07-23 Christian Persch - - * src/ephy-main.c: (main): - - No need to double-init gnome-vfs. - - ChangeLog | 6 ++++++ - src/ephy-main.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit b0cccb83ad83ed601506292d8cb75bf25fb196de -Author: Satoru SATOH -Date: Sun Jul 23 12:32:29 2006 +0000 - - Updated Japanese translation. - - 2006-07-23 Satoru SATOH - - * Updated Japanese translation. - - po/ChangeLog | 4 + - po/ja.po | 1503 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 807 insertions(+), 700 deletions(-) - -commit 67eeb353ad1db63bb1758bb47ab111253f174b5a -Author: Francisco Javier F. Serrador -Date: Sun Jul 23 12:24:02 2006 +0000 - - Updated Spanish translation. - - 2006-07-23 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 379 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 179 insertions(+), 204 deletions(-) - -commit cc4f8cb9866d2d1df8ded5e48491d4a5154f031b -Author: Christian Persch -Date: Sat Jul 22 19:05:20 2006 +0000 - - Implement nsIFormSigningDialog. Bug #312869. - - 2006-07-22 Christian Persch - - * data/glade/Makefile.am: - * data/glade/form-signing-dialog.glade: - * embed/mozilla/GeckoFormSigningDialog.cpp: - * embed/mozilla/GeckoFormSigningDialog.h: - * embed/mozilla/MozRegisterComponents.cpp: - - Implement nsIFormSigningDialog. Bug #312869. - - ChangeLog | 10 ++ - data/glade/Makefile.am | 7 +- - data/glade/form-signing-dialog.glade | 280 +++++++++++++++++++++++++++++++ - embed/mozilla/GeckoFormSigningDialog.cpp | 157 +++++++++++++++++ - embed/mozilla/GeckoFormSigningDialog.h | 42 +++++ - embed/mozilla/MozRegisterComponents.cpp | 10 +- - 6 files changed, 502 insertions(+), 4 deletions(-) - -commit 2bbc8ce5db41c0e1f956af24ede67f7946fc844d -Author: Hendrik Richter -Date: Sat Jul 22 17:23:20 2006 +0000 - - Updated German translation. - - 2006-07-22 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 235 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 136 insertions(+), 103 deletions(-) - -commit bb3c294f7e51c2fa71c71ac643d19de6707aa097 -Author: Changwoo Ryu -Date: Sat Jul 22 15:14:53 2006 +0000 - - Updated Korean translation. - - 2006-07-23 Changwoo Ryu - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 240 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 145 insertions(+), 99 deletions(-) - -commit 91d32944824cdd831dd5a060f3e20af7a2361085 -Author: Christophe Merlet -Date: Sat Jul 22 09:34:07 2006 +0000 - - Updated French translation. - - po/ChangeLog | 5 + - po/fr.po | 606 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 311 insertions(+), 300 deletions(-) - -commit ce0bc8742eb02fb2f47e685f8d19b366b6028c4c -Author: Funda Wang -Date: Sat Jul 22 08:05:18 2006 +0000 - - Updated epiphany zh_CN translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 1452 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 752 insertions(+), 704 deletions(-) - -commit 70db36f25685121fb5ef7da0958ba7170760f2b2 -Author: Christian Persch -Date: Fri Jul 21 19:57:05 2006 +0000 - - Add a way to turn off password remembering. Bug #332374. - - 2006-07-21 Christian Persch - - * data/epiphany.schemas.in: - * data/glade/prefs-dialog.glade: - * embed/mozilla/mozilla-notifiers.cpp: - * lib/ephy-prefs.h: - * src/prefs-dialog.c: - - Add a way to turn off password remembering. Bug #332374. - - ChangeLog | 10 ++++++ - data/epiphany.schemas.in | 11 ++++++ - data/glade/prefs-dialog.glade | 71 +++++++++++++++++++++++++++++++++++++ - embed/mozilla/mozilla-notifiers.cpp | 3 ++ - lib/ephy-prefs.h | 3 ++ - src/prefs-dialog.c | 2 ++ - 6 files changed, 100 insertions(+) - -commit 800d438285ec852a357c2703a931a5c139b09cf2 -Author: Christian Persch -Date: Fri Jul 21 17:25:53 2006 +0000 - - Add our options in a custom tab in the print dialogue. - - 2006-07-21 Christian Persch - - * data/epiphany.schemas.in: - * data/glade/print.glade: - * embed/mozilla/GeckoPrintService.cpp: - * embed/mozilla/GeckoPrintService.h: - * lib/ephy-gui.c: (ephy_gui_message_dialog_get_content_box), - (ephy_gui_message_dialog_set_wrap_mode), (checkbutton_toggled_cb), - (ephy_gui_connect_checkbutton_to_gconf): - * lib/ephy-gui.h: - - Add our options in a custom tab in the print dialogue. - - ChangeLog | 13 + - data/epiphany.schemas.in | 20 ++ - data/glade/print.glade | 579 ++++++++++++++++-------------------- - embed/mozilla/GeckoPrintService.cpp | 284 ++++++++++++++---- - embed/mozilla/GeckoPrintService.h | 1 + - lib/ephy-gui.c | 43 +++ - lib/ephy-gui.h | 13 +- - 7 files changed, 566 insertions(+), 387 deletions(-) - -commit 17923704a6396397ceebe608cd0f0369dccef944 -Author: Hendrik Richter -Date: Fri Jul 21 12:52:24 2006 +0000 - - Updated German translation. - - 2006-07-21 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 918 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 488 insertions(+), 434 deletions(-) - -commit 1a57aeb5cf10a6c4f8edd6383c831c9085d40d43 -Author: Josep Puigdemont i Casamajó -Date: Fri Jul 21 10:40:59 2006 +0000 - - Updated Catalan translation by Gil Forcada. - - po/ChangeLog | 13 +- - po/ca.po | 1483 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 785 insertions(+), 711 deletions(-) - -commit e03b9f6b45dfd9a89903fd318b098c1c6be2d3dd -Author: Nikos Charonitakis -Date: Thu Jul 20 19:30:14 2006 +0000 - - fix a typo - - po/ChangeLog | 4 ++++ - po/el.po | 18 +++++++++--------- - 2 files changed, 13 insertions(+), 9 deletions(-) - -commit 9e6e63aae67c930bba8116171a32930b922321f0 -Author: Christian Persch -Date: Thu Jul 20 10:26:11 2006 +0000 - - When resetting the entry also emit user-changed, to restore the original - - 2006-07-20 Christian Persch - - * lib/widgets/ephy-location-entry.c: (entry_key_press_cb), - (entry_activate_after_cb), (action_activated_after_cb), - (ephy_location_entry_reset_internal), (ephy_location_entry_reset): - - When resetting the entry also emit user-changed, to restore the original - URI in the tab's property. Bug #345934. - - ChangeLog | 9 +++++++++ - lib/widgets/ephy-location-entry.c | 23 ++++++++++++++++++----- - 2 files changed, 27 insertions(+), 5 deletions(-) - -commit 845877cbbba8ce71c5a9415b2efdd91c14850a7a -Author: Christian Persch -Date: Tue Jul 18 17:54:33 2006 +0000 - - Force label wrapping. - - 2006-07-18 Christian Persch - - * embed/mozilla/EphyPromptService.cpp: - - Force label wrapping. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyPromptService.cpp | 2 ++ - 2 files changed, 8 insertions(+) - -commit 39ff59cdb1658da07ec3ba1512c0ed752e0ec43c -Author: Guntupalli Karunakar -Date: Tue Jul 18 13:39:19 2006 +0000 - - Updated Dzongkha translation - - po/ChangeLog | 5 + - po/dz.po | 1722 ++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 1086 insertions(+), 641 deletions(-) - -commit a880d2527839fad6288cf65ab5105f4e029750e1 -Author: Kostas Papadimas -Date: Tue Jul 18 10:53:48 2006 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 1296 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 662 insertions(+), 638 deletions(-) - -commit 236a57fa7030d7c0ca6a7e74aa56dcf1c5ad3217 -Author: Daniel Nylander -Date: Sun Jul 16 15:12:09 2006 +0000 - - Updated Swedish translation. - - 2006-07-16 Daniel Nylander - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 2326 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1121 insertions(+), 1209 deletions(-) - -commit 1bfb83fbbbc7f47d8d7c935f14079447aea6daf9 -Author: Vincent van Adrighem -Date: Sun Jul 16 13:49:48 2006 +0000 - - Translation updated by Reinout van Schouwen. - - 2006-07-16 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 1485 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 784 insertions(+), 705 deletions(-) - -commit 24c26eff75d959feaf99fd446184806e3ee91121 -Author: Changwoo Ryu -Date: Thu Jul 13 18:05:33 2006 +0000 - - Updated Korean translation. - - 2006-07-14 Changwoo Ryu - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 +++ - po/ko.po | 97 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 52 insertions(+), 49 deletions(-) - -commit 1da8c6a56e77e90d9205f571aea2077f0d52c46c -Author: Ales Nyakhaychyk -Date: Tue Jul 11 12:23:42 2006 +0000 - - Updated Belarusian translation - - po/ChangeLog | 4 ++ - po/be.po | 123 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 71 insertions(+), 56 deletions(-) - -commit 9a15f6e898f77b3e1d586ede356edbfd7b0acc43 -Author: Jakub Friedl -Date: Tue Jul 11 12:02:02 2006 +0000 - - Updated Czech translation. - - 2006-07-11 Jakub Friedl - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 278 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 157 insertions(+), 125 deletions(-) - -commit d4ff176a65d24c8588f3700ac8f53e08acc1f79e -Author: Christian Persch -Date: Mon Jul 10 21:35:15 2006 +0000 - - Post-release version bump. - - 2006-07-10 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0b480b95961c018215a8659b855fb88d3c5b4e78 -Author: Christian Persch -Date: Mon Jul 10 21:33:22 2006 +0000 - - === Release 2.15.4 === - - 2006-07-10 Christian Persch - - === Release 2.15.4 === - - * configure.ac: - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 3 +++ - doc/reference/tmpl/ephy-shell.sgml | 9 --------- - doc/reference/tmpl/epiphany-unused.sgml | 8 ++++++++ - embed/mozilla/Makefile.am | 2 +- - 6 files changed, 19 insertions(+), 11 deletions(-) - -commit 19086cf25f2dff6194d44c68078f679d7c269836 -Author: Christian Persch -Date: Mon Jul 10 20:44:03 2006 +0000 - - Work around bug #346662 by not changing selection while removing the - - 2006-07-10 Christian Persch - - * lib/widgets/ephy-node-view.c: - (ephy_node_view_selection_changed_cb), (ephy_node_view_remove): - - Work around bug #346662 by not changing selection while removing the - nodes. Fixes crash with gtk 2.10. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-node-view.c | 15 +++++++++++++++ - 2 files changed, 23 insertions(+) - -commit 2a9853a35481dd27d4aad63523c01c00b636d024 -Author: Christian Persch -Date: Mon Jul 10 19:28:01 2006 +0000 - - Fix for empty menubar accel setting. Don't activate insensitive actions, - - 2006-07-10 Christian Persch - - * src/ephy-window.c: (settings_change_notify), - (ephy_window_key_press_event): - - Fix for empty menubar accel setting. - Don't activate insensitive actions, bug #347022. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 32 +++++++++++++++++++++++++------- - 2 files changed, 33 insertions(+), 7 deletions(-) - -commit 22932f6b1bd176b72473df2a9e05d04448929006 -Author: Christian Persch -Date: Mon Jul 10 19:23:45 2006 +0000 - - Fix middle-click and ctrl-enter in the location entry autocompletion - - 2006-07-10 Christian Persch - - * lib/widgets/ephy-location-entry.c: (entry_key_press_cb), - (entry_key_press_after_cb), (entry_activate_after_cb), - (match_selected_cb), (action_activated_after_cb), - (ephy_location_entry_construct_contents), - (ephy_location_entry_set_completion): - * src/ephy-location-action.c: (action_activated_cb): - - Fix middle-click and ctrl-enter in the location entry autocompletion - drop-down. Bug #345934, based on a patch by johannes@sipsolutions.net. - - ChangeLog | 12 +++++++ - lib/widgets/ephy-location-entry.c | 66 ++++++++++++++++++++++++++++++++++++--- - src/ephy-location-action.c | 9 +++--- - 3 files changed, 78 insertions(+), 9 deletions(-) - -commit bff7388803ea3dad3ef1dac686a24bd2e1edb9b0 -Author: Chao-Hsiung Liao -Date: Sun Jul 9 09:45:09 2006 +0000 - - Updated Traditional Chinese translation(Hong Kong). Updated Traditional - - 2006-07-09 Chao-Hsiung Liao - - * zh_HK.po: Updated Traditional Chinese translation(Hong Kong). - * zh_TW.po: Updated Traditional Chinese translation(Taiwan). - - po/ChangeLog | 5 + - po/zh_HK.po | 1380 ++++++++++++++++++++++++++++++++-------------------------- - po/zh_TW.po | 1380 ++++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 1507 insertions(+), 1258 deletions(-) - -commit 204f73f6bdc7504e3f7bd4497d85c650a632211a -Author: Alexander Shopov -Date: Sat Jul 8 18:39:18 2006 +0000 - - Updated Bulgarian translation by Rostislav Raykov - - 2006-07-08 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Rostislav Raykov - - po/ChangeLog | 5 + - po/bg.po | 895 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 462 insertions(+), 438 deletions(-) - -commit 247dcd5a17f1132bd2d717c48633aa6c237340d8 -Author: Changwoo Ryu -Date: Sat Jul 8 17:47:40 2006 +0000 - - Updated Korean translation. - - 2006-07-09 Changwoo Ryu - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 1341 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 709 insertions(+), 636 deletions(-) - -commit b2ec7296a209875a02d845385ba37bc2556cecb9 -Author: Ales Nyakhaychyk -Date: Sat Jul 8 08:06:55 2006 +0000 - - Updated Belarusian translation. - - po/ChangeLog | 4 + - po/be.po | 2248 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1306 insertions(+), 946 deletions(-) - -commit b971b7541ffd1c44ab0f10de79daf237b2fb4ab6 -Author: Francisco Javier F. Serrador -Date: Fri Jul 7 23:55:21 2006 +0000 - - Updated Spanish translation. - - 2006-07-08 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 227 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 129 insertions(+), 102 deletions(-) - -commit 2bd5b4de710ccf3b69888d57ae6fc90b0eeae864 -Author: Inaki Larranaga -Date: Fri Jul 7 11:03:45 2006 +0000 - - Updated Basque translation. - - 2006-07-07 Inaki Larranaga - - * eu.po: Updated Basque translation. - - po/ChangeLog | 6 + - po/eu.po | 1346 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 737 insertions(+), 615 deletions(-) - -commit 17c37d8e7b636ec520565d028ef408659049d220 -Author: Theppitak Karoonboonyanan -Date: Fri Jul 7 10:02:06 2006 +0000 - - Updated Thai translation. - - 2006-07-07 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++ - po/th.po | 222 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 127 insertions(+), 99 deletions(-) - -commit 8a4496275167cdd9065a33cf5677ef366a159be1 -Author: Ilkka Tuohela -Date: Fri Jul 7 05:17:41 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 ++ - po/fi.po | 222 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 127 insertions(+), 99 deletions(-) - -commit 0915a1472a141c849785dbfdba402d7430d1dfd3 -Author: Ankitkumar Rameshchandra Patel -Date: Fri Jul 7 04:35:04 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 217 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 128 insertions(+), 93 deletions(-) - -commit 1a2ae5eb6bf025c33fa3b24d28ee11a821c127a8 -Author: Ahmad Riza H Nst -Date: Fri Jul 7 03:16:39 2006 +0000 - - Updated. - - 2006-07-07 Ahmad Riza H Nst - - * id.po: Updated. - - po/ChangeLog | 4 + - po/id.po | 2133 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1161 insertions(+), 976 deletions(-) - -commit e43955ce976018e77e51965fba4ebd19e47b3c78 -Author: Jean-François Rameau -Date: Thu Jul 6 21:56:28 2006 +0000 - - Don't hammer the cpu when downloading file with an unknown size. Fix bug - - 2006-07-06 Jean-François Rameau - - * embed/mozilla/MozDownload.cpp: (OnProgressChange64): - - Don't hammer the cpu when downloading file with an unknown size. - Fix bug 346671. - - * embed/ephy-embed-shell.c: (ephy_embed_shell_set_page_setup), - (ephy_embed_shell_set_print_settings): - - Fix compiler warnings. - - ChangeLog | 12 ++++++++++++ - embed/ephy-embed-shell.c | 4 ++-- - embed/mozilla/MozDownload.cpp | 3 +-- - 3 files changed, 15 insertions(+), 4 deletions(-) - -commit bcdd93e6b16b930b6c00def2f82aae9a78fc3600 -Author: Christian Persch -Date: Thu Jul 6 20:53:54 2006 +0000 - - Fix compiler warning. - - 2006-07-06 Christian Persch - - * src/window-commands.c: - - Fix compiler warning. - - ChangeLog | 6 ++++++ - src/window-commands.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 72f93103b9a052d013c2b8d2fbf180f51e2d0489 -Author: Christian Persch -Date: Thu Jul 6 19:00:32 2006 +0000 - - Guess what? Another mozilla API change! - - 2006-07-06 Christian Persch - - * embed/mozilla/EphyFind.cpp: - * embed/mozilla/EphyFind.h: - - Guess what? Another mozilla API change! - - ChangeLog | 7 +++++++ - embed/mozilla/EphyFind.cpp | 44 +++++++++++++++++++++++++++++++++++--------- - embed/mozilla/EphyFind.h | 3 ++- - 3 files changed, 44 insertions(+), 10 deletions(-) - -commit c99eff37a53c5e27f6a14640d434f78f477c3bbe -Author: Christian Persch -Date: Thu Jul 6 18:58:34 2006 +0000 - - Fix the build. - - 2006-07-06 Christian Persch - - * embed/mozilla/AutoWindowModalState.cpp: - * embed/mozilla/AutoWindowModalState.h: - - Fix the build. - - ChangeLog | 7 +++++++ - embed/mozilla/AutoWindowModalState.cpp | 2 -- - embed/mozilla/AutoWindowModalState.h | 5 ++--- - 3 files changed, 9 insertions(+), 5 deletions(-) - -commit 5ea595da21d2c23959f23e9ca0e8ac3cdd684b51 -Author: Nguyen Thai Ngoc Duy -Date: Thu Jul 6 15:28:06 2006 +0000 - - Fixed 'HIệu' - - po/vi.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7bc9ca7a00eafd7d8e9caddba73cce702e4bf4da -Author: Nguyen Thai Ngoc Duy -Date: Thu Jul 6 13:39:25 2006 +0000 - - Fixed misspelled 'phạm vị' - - po/vi.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 9d3b1c1c41ac788e65e926df921dc4eb8f30cb93 -Author: Christian Persch -Date: Thu Jul 6 13:25:55 2006 +0000 - - Updated. Merged from gnome-2-14. - - 2006-07-06 Christian Persch - - * POTFILES.in: Updated. - * lv.po: Merged from gnome-2-14. - - po/ChangeLog | 5 + - po/POTFILES.in | 1 + - po/lv.po | 1042 ++++++++++++++++++++++++++++---------------------------- - 3 files changed, 531 insertions(+), 517 deletions(-) - -commit d86cac67a766a04b93c94365ff162f64a1954644 -Author: Christian Persch -Date: Thu Jul 6 13:22:35 2006 +0000 - - A embed/mozilla/AutoWindowModalState.cpp: A - - 2006-07-06 Christian Persch - - A embed/mozilla/AutoWindowModalState.cpp: - A embed/mozilla/AutoWindowModalState.h: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyPromptService.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/FilePicker.h: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - * embed/mozilla/Makefile.am: - - Prevent DOM window closure while we display a modal dialogue on it. - - ChangeLog | 16 +++++++++ - embed/mozilla/AutoWindowModalState.cpp | 45 ++++++++++++++++++++++++++ - embed/mozilla/AutoWindowModalState.h | 39 ++++++++++++++++++++++ - embed/mozilla/ContentHandler.cpp | 8 +++-- - embed/mozilla/EphyPromptService.cpp | 10 +++++- - embed/mozilla/FilePicker.cpp | 6 ++++ - embed/mozilla/FilePicker.h | 3 ++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 5 ++- - embed/mozilla/GtkNSSDialogs.cpp | 36 +++++++++++++++------ - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 3 ++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 18 +++++------ - embed/mozilla/Makefile.am | 2 ++ - 12 files changed, 166 insertions(+), 25 deletions(-) - -commit 942d6ff58714449de8ad005313811db0b3177a4d -Author: Nguyen Thai Ngoc Duy -Date: Mon Jul 3 15:12:05 2006 +0000 - - Fixed 'kết thức' - - po/vi.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 6a427226e37a42465e45803ef808ea880467c306 -Author: Nguyen Thai Ngoc Duy -Date: Mon Jul 3 13:51:55 2006 +0000 - - Fixed "hoặt động" - - po/vi.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 120e9e4cdb14f0f9a980bee599415cea82ca146f -Author: Runa Bhattacharjee -Date: Mon Jul 3 11:58:57 2006 +0000 - - Corrected the updated file name bn_IN.po in changelog entry - - po/ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 824c7d099318a2c018775b1c99f3b6135b34e522 -Author: Runa Bhattacharjee -Date: Mon Jul 3 11:51:36 2006 +0000 - - Added entry for addition of bengali India (bn_IN) translation and to LINGUAS - - po/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit de0b897e675dee7730b39da5821a1e35e1278288 -Author: Runa Bhattacharjee -Date: Mon Jul 3 11:51:23 2006 +0000 - - Added bengali India (bn_IN) - - po/LINGUAS | 1 + - 1 file changed, 1 insertion(+) - -commit 74b55ef5d8555b2621f80bc3bbec28d4abb331e1 -Author: Runa Bhattacharjee -Date: Mon Jul 3 11:50:44 2006 +0000 - - Added Bengali India Translation - - po/bn_IN.po | 4197 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 4197 insertions(+) - -commit e9906dcbb15635b2d6a06df689942848db307b5d -Author: Raivis Dejus -Date: Mon Jul 3 08:57:01 2006 +0000 - - Added Latvian translation. - - 2006-07-03 Raivis Dejus - - * lv.po: Added Latvian translation. - - po/ChangeLog | 4 + - po/LINGUAS | 1 + - po/lv.po | 4079 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 4084 insertions(+) - -commit 0263b4f4d81b9bbf5f3d187d5c1a6e8fcd6e6f76 -Author: Ilkka Tuohela -Date: Mon Jul 3 07:37:23 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 ++++ - po/fi.po | 11 +++++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit 6523b7141ed90e4ab0257cb65614d7928d66c244 -Author: Benoît Dejean -Date: Sun Jul 2 21:27:19 2006 +0000 - - Updated French translation. - - * fr.po: Updated French translation. - - po/ChangeLog | 4 + - po/fr.po | 2664 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1423 insertions(+), 1245 deletions(-) - -commit d112e0ccdd585584cc1150cad6db91aba8042119 -Author: Nguyen Thai Ngoc Duy -Date: Sun Jul 2 08:05:30 2006 +0000 - - Fixed "Plugin" again - - po/vi.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 1a75af6f2a5aa5799a26a96c4328abbc65a6c708 -Author: Nguyen Thai Ngoc Duy -Date: Sun Jul 2 04:33:51 2006 +0000 - - Fixed "plugin" - - po/vi.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 3bc393a03ff990df90d6c29206d915aa36693b12 -Author: Christian Persch -Date: Sat Jul 1 13:23:49 2006 +0000 - - Don't cast to gboolean but check for != NULL instead. - - 2006-07-01 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c - (ephy_bookmark_action_sync_smart_url): - - Don't cast to gboolean but check for != NULL instead. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmark-action.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit feb35c55df4f97b0a5eed0d048013e14f0a27118 -Author: Christian Persch -Date: Sat Jul 1 13:21:57 2006 +0000 - - Add fur. - - 2006-07-01 Christian Persch - - * src/languages.h: - - Add fur. - - ChangeLog | 6 ++++++ - src/languages.h | 1 + - 2 files changed, 7 insertions(+) - -commit a96ba2175b8c94e67b1557af9ac7691f813af48a -Author: Ilkka Tuohela -Date: Sat Jul 1 09:26:32 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 1382 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 746 insertions(+), 640 deletions(-) - -commit 00d66dea47c485dbbb31381578e5a57903f8df7a -Author: Felix I -Date: Fri Jun 30 10:14:09 2006 +0000 - - Tamil translation updated - - po/ChangeLog | 4 ++ - po/ta.po | 169 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 89 insertions(+), 84 deletions(-) - -commit be244bb223f0a66f1f61f9176cf41189c204f2cf -Author: Francisco Javier F. Serrador -Date: Thu Jun 29 22:43:46 2006 +0000 - - Updated Spanish translation. - - 2006-06-30 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 733 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 389 insertions(+), 348 deletions(-) - -commit 72ed4135fe3f5903aa2fd6b814ec95bc378759d0 -Author: Rajesh Ranjan -Date: Thu Jun 29 07:00:26 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/hi.po | 1262 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 633 insertions(+), 633 deletions(-) - -commit 30c3723d82aa9e8eb15f2d8db0d5b8f095bd301f -Author: Jean-François Rameau -Date: Sun Jun 25 20:14:24 2006 +0000 - - Add EphyFindToolbar type to Python binding. Bug #345837. - - 2006-06-25 Jean-François Rameau - - * src/epiphany.defs: - * src/epiphany.override: - * src/Makefile.am: - - Add EphyFindToolbar type to Python binding. - Bug #345837. - - ChangeLog | 9 +++++++ - src/Makefile.am | 2 +- - src/epiphany.defs | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++ - src/epiphany.override | 4 +++ - 4 files changed, 87 insertions(+), 1 deletion(-) - -commit 00ee1336b99ee345e3dbda24e83354fde4cdce77 -Author: Nickolay V. Shmyrev -Date: Sun Jun 25 15:07:41 2006 +0000 - - Added Russian translation by Vitaly Kormilov - - 2006-06-26 Nickolay V. Shmyrev - - * ru/ru.po: - * Makefile.am: - Added Russian translation by - Vitaly Kormilov - - help/ChangeLog | 7 + - help/Makefile.am | 2 +- - help/ru/ru.po | 3045 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 3053 insertions(+), 1 deletion(-) - -commit 2ba0126a0c3584643a02e4dfaee0c1b0abbf1a9b -Author: Theppitak Karoonboonyanan -Date: Sat Jun 24 09:23:55 2006 +0000 - - Updated Thai translation. - - 2006-06-24 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++ - po/th.po | 201 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 114 insertions(+), 91 deletions(-) - -commit fde9a2adfceb44b896b3dc7474c1697f11e347e4 -Author: Jean-François Rameau -Date: Fri Jun 23 20:50:40 2006 +0000 - - Fix a warning from gecko "Bad contract id registed with the script - - 2006-06-23 Jean-François Rameau - - * embed/mozilla/MozRegisterComponents.cpp: (mozilla_register_components): - - Fix a warning from gecko "Bad contract id registed with the script namespace manager". - Only unregister xpinstall factory with gecko >= 1.9. - - ChangeLog | 7 +++++++ - embed/mozilla/MozRegisterComponents.cpp | 2 ++ - 2 files changed, 9 insertions(+) - -commit efb3111fe08b04472d6a9555c79d20d08552cc4f -Author: Felix I -Date: Fri Jun 23 11:43:18 2006 +0000 - - Tamil translation updated - - po/ChangeLog | 4 + - po/ta.po | 4146 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 2369 insertions(+), 1781 deletions(-) - -commit 5a2d61be0e1d64c52a1f9c0974fe3c3171adc4bc -Author: Jakub Friedl -Date: Fri Jun 23 11:02:03 2006 +0000 - - Updated Czech translation. - - 2006-06-23 Jakub Friedl - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 189 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 100 insertions(+), 93 deletions(-) - -commit 3d6d33ff01500fc990f39967ce1e5254ddec1a8d -Author: Ankitkumar Rameshchandra Patel -Date: Fri Jun 23 04:44:00 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 188 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 99 insertions(+), 93 deletions(-) - -commit 7444dff3902968066f45081c342fa8ebb8aaf1d0 -Author: Christian Persch -Date: Thu Jun 22 12:37:00 2006 +0000 - - A lib/ephy-password-dialog.c: A lib/ephy-password-dialog.h: - - 2006-06-22 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.h: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/MozRegisterComponents.cpp: - * lib/Makefile.am: - A lib/ephy-password-dialog.c: - A lib/ephy-password-dialog.h: - - Implement nsITokenPasswordDialogs. Misc cleanups and mozilla string - simplification now that we depend on gecko 1.8. - - ChangeLog | 14 + - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 19 +- - embed/mozilla/GtkNSSDialogs.cpp | 664 ++++++++++++++-------------- - embed/mozilla/GtkNSSDialogs.h | 55 ++- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 16 +- - lib/Makefile.am | 3 + - lib/ephy-password-dialog.c | 707 ++++++++++++++++++++++++++++++ - lib/ephy-password-dialog.h | 102 +++++ - 8 files changed, 1218 insertions(+), 362 deletions(-) - -commit c7c27d1728fd00d3ebfa49e4f0c8c75c5176e6b0 -Author: Christian Persch -Date: Thu Jun 22 10:54:26 2006 +0000 - - Fix 'unknown gecko' error output. - - 2006-06-22 Christian Persch - - * m4/gecko.m4: - - Fix 'unknown gecko' error output. - - ChangeLog | 6 ++++++ - m4/gecko.m4 | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 191581a455b75c7477c17801fcd89ab1f916f15f -Author: Christian Persch -Date: Wed Jun 21 19:15:06 2006 +0000 - - Fix build with latest gtk printing changes. - - 2006-06-21 Christian Persch - - * embed/mozilla/GeckoPrintService.cpp: - * embed/mozilla/GeckoPrintSession.cpp: - * embed/mozilla/GeckoPrintSession.h: - - Fix build with latest gtk printing changes. - - ChangeLog | 8 ++++++++ - embed/mozilla/GeckoPrintService.cpp | 15 +++++++++++---- - embed/mozilla/GeckoPrintSession.cpp | 38 ++++++++++++++++++------------------- - embed/mozilla/GeckoPrintSession.h | 2 +- - 4 files changed, 38 insertions(+), 25 deletions(-) - -commit a34ac6a1677d14a3f69e0116bc7188844141c36f -Author: Ankitkumar Rameshchandra Patel -Date: Wed Jun 21 04:37:51 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 825 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 412 insertions(+), 417 deletions(-) - -commit a1658cb8a6e29f7319c75699a67789bb70b8bb00 -Author: Theppitak Karoonboonyanan -Date: Wed Jun 21 02:20:58 2006 +0000 - - Updated Thai translation. - - 2006-06-21 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 567 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 293 insertions(+), 278 deletions(-) - -commit 6823bc858282fbb2e794cfd44792463f4a212296 -Author: Jakub Friedl -Date: Tue Jun 20 13:55:02 2006 +0000 - - Updated Czech translation. - - 2006-06-20 Jakub Friedl - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 512 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 255 insertions(+), 261 deletions(-) - -commit 7c3e75b59b3acc837283833a8348f8b563442ebc -Author: Wouter Bolsterlee -Date: Tue Jun 20 12:49:48 2006 +0000 - - Update for new printing files. - - 2006-06-20 Wouter Bolsterlee - - * POTFILES.in: Update for new printing files. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 13 +++++++------ - 2 files changed, 11 insertions(+), 6 deletions(-) - -commit 06f99e7fd7c4db1c2effc4822c2ccc252a279615 -Author: Christian Persch -Date: Mon Jun 19 23:02:35 2006 +0000 - - Look! Yet Another Mozilla API Change! - - 2006-06-19 Christian Persch - - * embed/mozilla/EphyAboutModule.cpp: - - Look! Yet Another Mozilla API Change! - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutModule.cpp | 11 +++++++++++ - 2 files changed, 17 insertions(+) - -commit 0f5b97d114f6febf190e2403e53efd85667ff468 -Author: Christian Persch -Date: Mon Jun 19 13:22:44 2006 +0000 - - Fix wrong test, bug #344848. - - 2006-06-18 Christian Persch - - * configure.ac: - - Fix wrong test, bug #344848. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit c6573cb04bdc216e7e5ea3657cb1186eaf0f1095 -Author: Christian Persch -Date: Sun Jun 18 18:52:03 2006 +0000 - - A embed/mozilla/GeckoPrintService.cpp: A - - 2006-06-18 Christian Persch - - * configure.ac: - * data/default-prefs-common.js: - * embed/Makefile.am: - * embed/ephy-embed-shell.c: (ephy_embed_shell_dispose), - (ephy_embed_shell_set_page_setup), - (ephy_embed_shell_get_page_setup), - (ephy_embed_shell_set_print_settings), - (ephy_embed_shell_get_print_settings): - * embed/ephy-embed-shell.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - * embed/mozilla/Makefile.am: - A embed/mozilla/GeckoPrintService.cpp: - A embed/mozilla/GeckoPrintService.h: - A embed/mozilla/GeckoPrintSession.cpp: - A embed/mozilla/GeckoPrintSession.h: - * embed/mozilla/MozRegisterComponents.cpp: - R embed/mozilla/PrintingPromptService.cpp: - R embed/mozilla/PrintingPromptService.h: - * embed/mozilla/mozilla-embed-single.cpp: - R embed/print-dialog.c: - R embed/print-dialog.h: - * src/ephy-shell.c: (ephy_shell_dispose), - (ephy_shell_get_prefs_dialog): - * src/ephy-shell.h: - * src/epiphany.defs: - * src/window-commands.c: (page_setup_done_cb), - (window_cmd_file_print_setup): - - Drop libgnomeprint[ui] and use gtk printing. - - ChangeLog | 35 ++ - configure.ac | 3 +- - data/default-prefs-common.js | 14 +- - embed/Makefile.am | 4 +- - embed/ephy-embed-shell.c | 95 +++++ - embed/ephy-embed-shell.h | 14 +- - embed/mozilla/EphyBrowser.cpp | 48 ++- - embed/mozilla/EphyBrowser.h | 1 - - embed/mozilla/EphyUtils.cpp | 235 ++---------- - embed/mozilla/EphyUtils.h | 11 +- - embed/mozilla/GeckoPrintService.cpp | 500 +++++++++++++++++++++++++ - embed/mozilla/GeckoPrintService.h | 52 +++ - embed/mozilla/GeckoPrintSession.cpp | 622 ++++++++++++++++++++++++++++++++ - embed/mozilla/GeckoPrintSession.h | 93 +++++ - embed/mozilla/Makefile.am | 6 +- - embed/mozilla/MozRegisterComponents.cpp | 111 ++++-- - embed/mozilla/PrintingPromptService.cpp | 246 ------------- - embed/mozilla/PrintingPromptService.h | 58 --- - embed/print-dialog.c | 451 ----------------------- - embed/print-dialog.h | 88 ----- - src/ephy-shell.c | 39 +- - src/ephy-shell.h | 2 - - src/epiphany.defs | 6 - - src/window-commands.c | 23 +- - 24 files changed, 1603 insertions(+), 1154 deletions(-) - -commit 0db1af2c76d4cae33992f82a1736f6ed743b7dc1 -Author: Christian Persch -Date: Sun Jun 18 18:19:02 2006 +0000 - - Fix context menu positioning. - - 2006-06-18 Christian Persch - - * embed/downloader-view.c: (status_icon_popup_menu_cb): - - Fix context menu positioning. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e0494e2363023c5468a3d629429a4c18d796809e -Author: Christian Persch -Date: Sun Jun 18 09:55:23 2006 +0000 - - Fix NEWS - - NEWS | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -commit 4f202c8ac7c2a94021a0e65e79a7ca78eb8c02e5 -Author: Wouter Bolsterlee -Date: Fri Jun 16 14:11:22 2006 +0000 - - Make the crash recovery dialog appear on the taskbar. Fixes bug #345010. - - 2006-06-16 Wouter Bolsterlee - - * src/ephy-session.c: (session_command_autoresume): - Make the crash recovery dialog appear on the taskbar. - Fixes bug #345010. - - ChangeLog | 6 ++++++ - src/ephy-session.c | 1 + - 2 files changed, 7 insertions(+) - -commit 93f45cd0fec4620848b351161f9bc403ead524c2 -Author: Christian Persch -Date: Fri Jun 16 12:27:24 2006 +0000 - - Set the warn-entering-weak security warn pref to true. - - 2006-06-16 Christian Persch - - * data/default-prefs-common.js: - - Set the warn-entering-weak security warn pref to true. - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 868072744afe79f4e7a7042a8cef1f582640d5ab -Author: Hendrik Richter -Date: Thu Jun 15 14:09:42 2006 +0000 - - Updated German translation. - - 2006-06-15 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 +++ - po/de.po | 85 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 48 insertions(+), 41 deletions(-) - -commit 35e6a95adc793c85de4b2d78c6c4839ec167e37c -Author: Christian Persch -Date: Wed Jun 14 11:45:28 2006 +0000 - - Fix --disable-spell-checker configure option. Bug #344848. - - 2006-06-14 Christian Persch - - * configure.ac: - - Fix --disable-spell-checker configure option. Bug #344848. - - ChangeLog | 6 ++++++ - configure.ac | 46 +++++++++++++++++++++++++++------------------- - 2 files changed, 33 insertions(+), 19 deletions(-) - -commit 6807d5ea46c673bcc4378acc272eb487a26c0983 -Author: Christian Persch -Date: Sun Jun 11 18:28:02 2006 +0000 - - Fix header guard name - - embed/mozilla/EphyBadCertRejector.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 1f75cc7a542c682d3b76418d4016a3364b7ac7cc -Author: Christian Persch -Date: Sat Jun 10 22:00:00 2006 +0000 - - Post-release version bump. - - 2006-06-10 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 67b4ebeb0e20cb0534bf40362280fa827e667890 -Author: Christian Persch -Date: Sat Jun 10 21:58:45 2006 +0000 - - === Release 2.15.3 === - - 2006-06-10 Christian Persch - - === Release 2.15.3 === - - * configure.ac: - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 3 +++ - 3 files changed, 10 insertions(+), 1 deletion(-) - -commit a1a206977d6dcfb36ad485fe429a6491cdabfa1d -Author: Christian Persch -Date: Fri Jun 9 19:31:46 2006 +0000 - - Remove accidentally commited code. - - 2006-06-09 Christian Persch - - * configure.ac: - - Remove accidentally commited code. - - ChangeLog | 12 +++++++++--- - configure.ac | 28 ---------------------------- - 2 files changed, 9 insertions(+), 31 deletions(-) - -commit 6e2a33c8c36c722eb1d257fa6ce329ac5045d9ed -Author: hristian Persch -Date: Fri Jun 9 19:18:48 2006 +0000 - - Fix the build. - - 2006-06-09hristian Persch - - * configure.ac: - - Fix the build. - - ChangeLog | 6 ++++++ - configure.ac | 29 +++++++++++++++++++++++++++++ - 2 files changed, 35 insertions(+) - -commit 6dc6a3ff5df86c2ae842e8493b37746fc4b27e28 -Author: Christian Persch -Date: Fri Jun 9 18:07:34 2006 +0000 - - Fix configure output. - - 2006-06-09 Christian Persch - - * configure.ac: - - Fix configure output. - - ChangeLog | 6 ++++++ - configure.ac | 46 ++++++++++++++++++++-------------------------- - 2 files changed, 26 insertions(+), 26 deletions(-) - -commit 6d84e196d76acdcc56908bc8ec1484f8e3d614b6 -Author: Christian Persch -Date: Thu Jun 8 22:48:29 2006 +0000 - - Check for enchant, and output an overview of the configured options on - - 2006-06-09 Christian Persch - - * configure.ac: - - Check for enchant, and output an overview of the configured - options on successful configure. - - * data/default-prefs-common.js: - * embed/mozilla/GeckoSpellCheckEngine.cpp: - * embed/mozilla/GeckoSpellCheckEngine.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * lib/Makefile.am: - * lib/ephy-spell-check.c: - * lib/ephy-spell-check.h: - - Spell check support using the gecko 'spellchecker' extension. - No corrections context menu or language switching yet. - - ChangeLog | 19 +++ - configure.ac | 66 ++++++-- - data/default-prefs-common.js | 5 + - embed/mozilla/GeckoSpellCheckEngine.cpp | 201 +++++++++++++++++++++++ - embed/mozilla/GeckoSpellCheckEngine.h | 52 ++++++ - embed/mozilla/Makefile.am | 7 + - embed/mozilla/MozRegisterComponents.cpp | 16 ++ - lib/Makefile.am | 12 ++ - lib/ephy-spell-check.c | 275 ++++++++++++++++++++++++++++++++ - lib/ephy-spell-check.h | 76 +++++++++ - 10 files changed, 719 insertions(+), 10 deletions(-) - -commit 5d74d2227e45c916bbe44289684737a49b2e3c77 -Author: Wouter Bolsterlee -Date: Thu Jun 8 16:02:35 2006 +0000 - - Remove AM_GLIB_DEFINE_LOCALEDIR. Bug #343825, patch by Christian Persch. - - 2006-06-08 Wouter Bolsterlee - - * configure.ac: Remove AM_GLIB_DEFINE_LOCALEDIR. Bug - #343825, patch by Christian Persch. - - ChangeLog | 7 ++++++- - configure.ac | 1 - - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 356f0df1c8a95cbc7e89b5ea3817382b64c32734 -Author: Wouter Bolsterlee -Date: Thu Jun 8 10:12:32 2006 +0000 - - copy history over when opening link in new tab/win using context menu. - - 2006-06-08 Wouter Bolsterlee - - * src/ephy-shell.c: (ephy_shell_new_tab_full): copy - history over when opening link in new tab/win using - context menu. Fixes bug #340742, patch by René Stadler. - - ChangeLog | 6 ++++++ - src/ephy-shell.c | 9 +++++++++ - 2 files changed, 15 insertions(+) - -commit 9752685a61d3195476548953e4a70c29076ce719 -Author: Jakub Friedl -Date: Thu Jun 8 09:18:16 2006 +0000 - - Updated Czech translation. - - 2006-06-08 Jakub Friedl - - * cs.po: Updated Czech translation. - - po/ChangeLog | 12 +- - po/cs.po | 877 ++++++++++++++++++++++++++--------------------------------- - 2 files changed, 390 insertions(+), 499 deletions(-) - -commit 0ad656de6f50ce51aed0df19088a98c319025f08 -Author: Pawan Chitrakar -Date: Tue Jun 6 02:34:11 2006 +0000 - - UPdated Nepali Translation - - po/ne.po | 3659 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1855 insertions(+), 1804 deletions(-) - -commit 18be052adab8c1ddbd00730be0a4e2431d32074a -Author: Christian Persch -Date: Mon Jun 5 17:03:04 2006 +0000 - - Don't crash on error from zeroconf bookmarks. Fixes bug #343922. - - 2006-06-04 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (resolve_cb): - - Don't crash on error from zeroconf bookmarks. Fixes bug #343922. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 20 ++++++++++---------- - 2 files changed, 16 insertions(+), 10 deletions(-) - -commit e8952022f58a69c01033bb0a4bc8131ea0604878 -Author: Wouter Bolsterlee -Date: Mon Jun 5 11:57:08 2006 +0000 - - Improve next-token logic for bookmark completion. Fixes #339167 (hopefully - - 2006-06-05 Wouter Bolsterlee - - * lib/widgets/ephy-location-entry.c: (keyword_match): - Improve next-token logic for bookmark completion. Fixes - #339167 (hopefully for real this time). - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 132c537330a843a9114bdea9e88a180385a13bca -Author: Laurent Dhima -Date: Mon Jun 5 07:45:00 2006 +0000 - - Updated Albanian translation. - - 2006-06-05 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 913 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 460 insertions(+), 457 deletions(-) - -commit 7065f81d8db2c62fd3abb6e250ba48f46fbfaa46 -Author: Christian Persch -Date: Sun Jun 4 21:27:57 2006 +0000 - - The API change was reverted on 1.8 branch. Fixes bug #343592. - - 2006-06-04 Christian Persch - - * embed/mozilla/EphySidebar.cpp: - - The API change was reverted on 1.8 branch. Fixes bug #343592. - - ChangeLog | 6 ++++++ - embed/mozilla/EphySidebar.cpp | 4 ---- - 2 files changed, 6 insertions(+), 4 deletions(-) - -commit 87aee21becab4bad890e735bb1b29e3ba6f9ac9f -Author: Christian Persch -Date: Sun Jun 4 21:27:10 2006 +0000 - - The API change was reverted on 1.8 branch. Fixes bug #343592. - - 2006-06-04 Christian Persch - - * embed/mozilla/EphySidebar.cpp: - - The API change was reverted on 1.8 branch. Fixes bug #343592. - - embed/mozilla/EphySidebar.cpp | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -commit ae4e4736818f442abd435274cb3b75f8da02ad33 -Author: Jean-François Rameau -Date: Thu Jun 1 19:35:32 2006 +0000 - - Don't set cookies from favicon downloads. Bug #337835. - - 2006-06-01 Jean-François Rameau - - * embed/ephy-embed-persist.h: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download): - * embed/mozilla/EphySingle.cpp: - (Init, Detach, ExamineCookies, ExamineResponse, ExamineRequest, Observe): - * embed/mozilla/EphySingle.h: - * embed/mozilla/MozDownload.cpp: (InitiateMozillaDownload): - - Don't set cookies from favicon downloads. Bug #337835. - - ChangeLog | 11 ++++++++++ - embed/ephy-embed-persist.h | 3 ++- - embed/ephy-favicon-cache.c | 4 +++- - embed/mozilla/EphySingle.cpp | 51 ++++++++++++++++++++++++++++++++++++++++++- - embed/mozilla/EphySingle.h | 5 ++++- - embed/mozilla/MozDownload.cpp | 19 ++++++++++++++-- - 6 files changed, 87 insertions(+), 6 deletions(-) - -commit 5d471eec3390f8f188037ac6a3c87a59aa77ec8e -Author: Francisco Javier F. Serrador -Date: Wed May 31 14:11:16 2006 +0000 - - Updated Spanish translation. - - 2006-05-31 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 523 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 275 insertions(+), 252 deletions(-) - -commit 7bc7f58e53d846252ed08bfcd29de434ba605740 -Author: Frederic Peters -Date: Tue May 30 21:12:11 2006 +0000 - - Allow cookie list to be sorted. (fixes #337845) - - 2006-05-30 Frederic Peters - - * src/pdm-dialog.c: (pdm_dialog_cookies_construct): - - Allow cookie list to be sorted. (fixes #337845) - - ChangeLog | 6 ++++++ - src/pdm-dialog.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 393d06dbf01006ae29c4b3e69599403f88c78fb4 -Author: Frederic Peters -Date: Tue May 30 09:09:08 2006 +0000 - - Make bookmark search ignore special characters (bug 339167) - - lib/widgets/ephy-location-entry.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4cdd759468a36668bb7cf20e764cc93ef285f2cf -Author: Frederic Peters -Date: Tue May 30 09:04:39 2006 +0000 - - Fix crash when moving zoom widget on toolbar (#338682) - - 2006-05-30 Frederic Peters - - * lib/egg/egg-editable-toolbar.c: (action_sensitive_cb) - - Fix crash when moving zoom widget on toolbar (#338682) - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 3 +++ - 2 files changed, 9 insertions(+) - -commit 93ad37350052d823fa8a565b4cca602f99e3b797 -Author: Christian Persch -Date: Mon May 29 19:49:21 2006 +0000 - - Fix launching of desktop files. - - 2006-05-29 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_launch_application), - (launch_desktop_item): - - Fix launching of desktop files. - - ChangeLog | 13 +++++++------ - lib/ephy-file-helpers.c | 9 ++++++++- - 2 files changed, 15 insertions(+), 7 deletions(-) - -commit f8657fac124a526ac558a31656b149a26b05da31 -Author: Theppitak Karoonboonyanan -Date: Mon May 29 14:26:17 2006 +0000 - - Updated Thai translation. - - 2006-05-29 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 500 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 260 insertions(+), 244 deletions(-) - -commit d2dbc1a92a0b3d3047ed832a4b20f2aba5023dd4 -Author: Inaki Larranaga -Date: Mon May 29 08:12:26 2006 +0000 - - Fixed Bug 339526 in Basque translation. - - 2006-05-29 Inaki Larranaga - - * eu/eu.po: Fixed Bug 339526 in Basque translation. - - help/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 6bb2adae80a64aa86bcf4dbad3c1cb5a8fea10a5 -Author: Iñaki Larrañaga Murgoitio -Date: Mon May 29 08:11:58 2006 +0000 - - *** empty log message *** - - help/eu/eu.po | 79 +++++++++++++++++++++++++++-------------------------------- - 1 file changed, 36 insertions(+), 43 deletions(-) - -commit 869d4b470d2cda6c14a1a1c20777355c08dbef24 -Author: Hendrik Richter -Date: Sat May 27 21:15:15 2006 +0000 - - Updated German translation. - - 2006-05-27 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 896 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 458 insertions(+), 442 deletions(-) - -commit af72dca68f7ec18ad2796b4ef57f9f14e311c01e -Author: Pema Geyleg -Date: Sat May 27 08:28:12 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/dz.po | 2391 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1391 insertions(+), 1004 deletions(-) - -commit 50c28923803300d68df2529c44d482066f072346 -Author: Jean-François Rameau -Date: Mon May 22 20:40:51 2006 +0000 - - Add methods to EphyNode to set typed properties. This change improves the - - 2006-05-16 Jean-François Rameau - - * lib/ephy-node.h: - * lib/ephy-node.c: - * src/epiphany.defs: - - Add methods to EphyNode to set typed properties. This change improves the - Python API so it should be easy now to play with bookmarks. - - Also clean up the code with unnecessary checks. - - ChangeLog | 11 ++++ - lib/ephy-node.c | 146 +++++++++++++++++++++++++++++++++++++++++++++++------- - lib/ephy-node.h | 18 +++++++ - src/epiphany.defs | 60 ++++++++++++++++++++++ - 4 files changed, 217 insertions(+), 18 deletions(-) - -commit f603ea80caff9dc9e9e2a7f4193c11091b350f94 -Author: Arangel Angov -Date: Sat May 20 23:00:54 2006 +0000 - - Updated Macedonian translation - - po/mk.po | 2337 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 1311 insertions(+), 1026 deletions(-) - -commit 69308853bacfbbe7865e7d6455d4a08fa5adfdbc -Author: Christian Persch -Date: Tue May 16 11:36:37 2006 +0000 - - Update intltool requirement to 0.35. - - 2006-05-16 Christian Persch - - * configure.in: - - Update intltool requirement to 0.35. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 9ad07651838ea73f7b2bf543a640be995ed25fee -Author: Christian Persch -Date: Mon May 15 18:13:36 2006 +0000 - - Post-release version bump. - - 2006-05-15 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b88f8ce951f0a705dc9aaaaa2cf4c0a29dfa6e5c -Author: Christian Persch -Date: Mon May 15 18:12:31 2006 +0000 - - === Release 2.15.2 === - - 2006-05-15 Christian Persch - - === Release 2.15.2 === - - * NEWS: - - 2006-05-15 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-x509-cert.cpp: - - Some castings. - - ChangeLog | 23 +++++++++++++++++++++ - NEWS | 28 ++++++++++++++++++++++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/EphyUtils.cpp | 2 +- - embed/mozilla/FilePicker.cpp | 12 +++++------ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 4 ++-- - embed/mozilla/GtkNSSDialogs.cpp | 18 ++++++++--------- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 +- - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 2 +- - embed/mozilla/MozDownload.cpp | 6 +++--- - embed/mozilla/mozilla-embed-persist.cpp | 6 +++--- - embed/mozilla/mozilla-embed-single.cpp | 8 ++++---- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - embed/mozilla/mozilla-x509-cert.cpp | 2 +- - 14 files changed, 84 insertions(+), 33 deletions(-) - -commit 7db75551c30471545fb68029082ef25ac84d2b08 -Author: Christian Persch -Date: Sun May 14 21:59:05 2006 +0000 - - Fix the build - - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 9afceec1f0af2a55be0bf72850c3b6520a83d63d -Author: Christian Persch -Date: Sun May 14 19:43:10 2006 +0000 - - Use nsAString::Equals. - - 2006-05-14 Christian Persch - - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - * embed/mozilla/EventContext.cpp: - - Use nsAString::Equals. - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyUtils.cpp | 13 ------------- - embed/mozilla/EphyUtils.h | 2 -- - embed/mozilla/EventContext.cpp | 2 +- - 4 files changed, 9 insertions(+), 16 deletions(-) - -commit d69ef4bcd9190d6f128f341e17805493b672cf6e -Author: Christian Persch -Date: Sun May 14 19:39:12 2006 +0000 - - Add https and ftp local bookmarks. Based on a patch by Celso Pinto, bug - - 2006-05-14 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (resolve_cb), - (ephy_local_bookmarks_init), (ephy_local_bookmarks_stop): - - Add https and ftp local bookmarks. Based on a patch by Celso Pinto, - bug #330679. - - ChangeLog | 8 ++++++ - src/bookmarks/ephy-bookmarks.c | 64 ++++++++++++++++++++++++++++++++---------- - 2 files changed, 57 insertions(+), 15 deletions(-) - -commit cd873449d2c95d7e0c4dc7cd199895170751f701 -Author: Christian Persch -Date: Sun May 14 13:54:55 2006 +0000 - - Manpage update from Victor Osadci. - - 2006-05-14 Christian Persch - - * doc/epiphany.1: - - Manpage update from Victor Osadci. - - ChangeLog | 6 ++++++ - doc/epiphany.1 | 40 +++++++++++++++++++++++----------------- - 2 files changed, 29 insertions(+), 17 deletions(-) - -commit 5181002fe8d9b1cec3e4e2486b4fb0e649ef9ef7 -Author: Christian Persch -Date: Sun May 14 12:31:03 2006 +0000 - - Add transparency back. Bug #334875, patch from Victor Osadci. - - 2006-05-14 Christian Persch - - * C/figures/ephy-addressbar-smartbookmark-screenshot.png: - - Add transparency back. Bug #334875, patch from Victor Osadci. - - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 3334 -> 3664 bytes - help/ChangeLog | 6 ++++++ - 2 files changed, 6 insertions(+) - -commit c52bf2304c2c1859c072902d9b85b216c2cdd066 -Author: Christian Persch -Date: Fri May 12 12:47:45 2006 +0000 - - Explicit error message about unsupported gecko versions. - - 2006-05-12 Christian Persch - - * configure.ac: - - Explicit error message about unsupported gecko versions. - - ChangeLog | 6 ++++++ - configure.ac | 4 ++++ - 2 files changed, 10 insertions(+) - -commit f8f5f776be1a09484047ef5d266e4167b6db352f -Author: Christian Persch -Date: Fri May 12 12:42:48 2006 +0000 - - Shut up - - lib/egg/.cvsignore | 4 ++++ - po/.cvsignore | 1 + - 2 files changed, 5 insertions(+) - -commit f61e7ed6587d03f012da13854ba3ba9b56fbcddf -Author: Christian Persch -Date: Fri May 12 12:40:10 2006 +0000 - - The API is also changed on 1.8 branch, adapt the #ifdef accordingly. - - 2006-05-12 Christian Persch - - * embed/mozilla/EphySidebar.cpp: - - The API is also changed on 1.8 branch, adapt the #ifdef accordingly. - - ChangeLog | 6 ++++++ - embed/mozilla/EphySidebar.cpp | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit dee395feca2885cf17c7d42e717c67cacdd83214 -Author: Christian Persch -Date: Fri May 12 12:37:11 2006 +0000 - - Update gecko version checks to detect also gecko 1.8.1. - - 2006-05-12 Christian Persch - - * configure.ac: - * m4/gecko.m4: - - Update gecko version checks to detect also gecko 1.8.1. - - ChangeLog | 7 +++++ - configure.ac | 12 +++----- - m4/gecko.m4 | 94 +++++++++++++++++++++++++++++++++++++----------------------- - 3 files changed, 69 insertions(+), 44 deletions(-) - -commit 6f6ace51b1003f1c315ca258feb2be808f2a0eb6 -Author: Christian Persch -Date: Thu May 11 17:44:26 2006 +0000 - - R data/default-prefs-gecko-1-8.js: R data/default-prefs-mozilla.js: R - - 2006-05-11 Christian Persch - - * data/Makefile.am: - * data/default-prefs-common.js: - R data/default-prefs-gecko-1-8.js: - R data/default-prefs-mozilla.js: - R data/default-prefs-toolkit.js: - - Merge those into -common prefs. - - ChangeLog | 10 ++++++++++ - data/Makefile.am | 12 ++---------- - data/default-prefs-common.js | 30 ++++++++++++++++++++++++++++-- - data/default-prefs-gecko-1-8.js | 8 -------- - data/default-prefs-mozilla.js | 6 ------ - data/default-prefs-toolkit.js | 19 ------------------- - 6 files changed, 40 insertions(+), 45 deletions(-) - -commit b4806d4fda2a0c557efa4d5cf5640de641b448f4 -Author: Wouter Bolsterlee -Date: Thu May 11 14:24:48 2006 +0000 - - Display the find bar for "Find Next" and "Find Previous" if it wasn't - - 2006-05-11 Wouter Bolsterlee - - * src/ephy-find-toolbar.c: (ephy_find_toolbar_find_next), - (ephy_find_toolbar_find_previous), (ephy_find_toolbar_open): - - Display the find bar for "Find Next" and "Find Previous" - if it wasn't visible already. Entry focus is handlded - with care so that use cases like incremental search work - as expected. Fixes bug #333020. - - ChangeLog | 10 ++++++++++ - src/ephy-find-toolbar.c | 13 ++++++++++--- - 2 files changed, 20 insertions(+), 3 deletions(-) - -commit 16ba41cf94ecd37d5064dabd14a54da93485166f -Author: Christian Persch -Date: Thu May 11 12:59:07 2006 +0000 - - Remove HAVE_TYPEAHEADFIND ifdefs, since we now always have that. Fixes the - - 2006-05-11 Christian Persch - - * src/ephy-find-toolbar.c: (entry_changed_cb), - (ephy_find_toolbar_set_embed): - - Remove HAVE_TYPEAHEADFIND ifdefs, since we now always have that. - Fixes the find bar after the drop of gecko 1.7/non-toolkit. - - ChangeLog | 8 ++++++++ - src/ephy-find-toolbar.c | 10 ---------- - 2 files changed, 8 insertions(+), 10 deletions(-) - -commit 052a49748cb4864db8d4b04c565eb158d084da1d -Author: Christian Persch -Date: Thu May 11 12:48:32 2006 +0000 - - And revert it since it causes a gtk warning. - - 2006-05-11 Christian Persch - - * src/ephy-notebook.c: - - And revert it since it causes a gtk warning. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 14 +------------- - 2 files changed, 7 insertions(+), 13 deletions(-) - -commit 9939b3eb08798c81c01720c3207d41662064f046 -Author: Christian Persch -Date: Thu May 11 12:27:27 2006 +0000 - - Allow text drags to notebook tab labels. Bug #339339, patch by Michael - - 2006-05-11 Christian Persch - - * src/ephy-notebook.c: (notebook_drag_data_received_cb), - (ephy_notebook_init), (build_tab_label): - - Allow text drags to notebook tab labels. Bug #339339, patch by Michael - Hofmann. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 14 +++++++++++++- - 2 files changed, 21 insertions(+), 1 deletion(-) - -commit b15ab14ae41b52fa6b14c283b937fb346b0cf9b6 -Author: Christian Persch -Date: Thu May 11 12:22:11 2006 +0000 - - Don't crash when adding zeroconf bookmarks while bookmarks are locked - - 2006-05-11 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (add_to_favorites), (resolve_cb), - (browse_cb): - - Don't crash when adding zeroconf bookmarks while bookmarks are locked - down. Bug #341379. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks.c | 17 +++++++++++++++++ - 2 files changed, 25 insertions(+) - -commit 1330c517db54e555af913755cee6dbe8bd823a6c -Author: Christian Persch -Date: Wed May 10 20:12:13 2006 +0000 - - Drop non-toolkit gecko support too. - - 2006-05-10 Christian Persch - - * configure.ac: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - - Drop non-toolkit gecko support too. - - ChangeLog | 8 ++++++++ - configure.ac | 7 +++---- - embed/mozilla/Makefile.am | 8 ++------ - embed/mozilla/mozilla-embed-single.cpp | 7 +------ - 4 files changed, 14 insertions(+), 16 deletions(-) - -commit 0d679ae56ea45ca9934dd4d070fb2cf62ef1b4c8 -Author: Christian Persch -Date: Wed May 10 19:02:09 2006 +0000 - - Another API change! Thank you, mozilla! - - 2006-05-10 Christian Persch - - * embed/mozilla/EphySidebar.cpp: - - Another API change! Thank you, mozilla! - - ChangeLog | 6 ++++++ - embed/mozilla/EphySidebar.cpp | 11 +++++++++++ - 2 files changed, 17 insertions(+) - -commit 24b71aa8ac7de8dd140092705bb7cc439f6b3309 -Author: Christian Persch -Date: Wed May 10 18:07:03 2006 +0000 - - Drop support for gecko 1.7. - - 2006-05-10 Christian Persch - - * configure.ac: - * data/glade/prefs-dialog.glade: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get): - * embed/mozilla/AutoJSContextStack.cpp: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/EphyAboutModule.cpp: - * embed/mozilla/EphyAboutModule.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyContentPolicy.h: - * embed/mozilla/EphyDirectoryProvider.cpp: - * embed/mozilla/EphyFind.cpp: - * embed/mozilla/EphyFind.h: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - * embed/mozilla/EphyHistoryListener.cpp: - * embed/mozilla/EphyHistoryListener.h: - * embed/mozilla/EphyPromptService.cpp: - * embed/mozilla/EphySidebar.cpp: - * embed/mozilla/EphySidebar.h: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EphySingle.h: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/FilePicker.h: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GlobalHistory.h: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - * embed/mozilla/GtkNSSSecurityWarningDialogs.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/MozRegisterComponents.h: - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/MozillaPrivate.h: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/PrintingPromptService.h: - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-download.h: - * embed/mozilla/mozilla-embed-event.cpp: - * embed/mozilla/mozilla-embed-event.h: - * embed/mozilla/mozilla-embed-find.cpp: - * embed/mozilla/mozilla-embed-find.h: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-persist.h: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-embed.h: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-notifiers.h: - * embed/mozilla/mozilla-x509-cert.cpp: - * embed/mozilla/mozilla-x509-cert.h: - * lib/ephy-gui.c: - * lib/ephy-gui.h: - * lib/ephy-langs.c: - * m4/gecko.m4: - * src/ephy-window.c: (sync_tab_security): - * src/prefs-dialog.c: (prefs_dialog_init): - - Drop support for gecko 1.7. - - ChangeLog | 72 ++++ - configure.ac | 106 +---- - data/glade/prefs-dialog.glade | 1 + - doc/reference/tmpl/ephy-embed.sgml | 3 + - embed/ephy-favicon-cache.c | 4 - - embed/mozilla/AutoJSContextStack.cpp | 4 +- - embed/mozilla/ContentHandler.cpp | 145 ++----- - embed/mozilla/ContentHandler.h | 19 +- - embed/mozilla/EphyAboutModule.cpp | 54 ++- - embed/mozilla/EphyAboutModule.h | 5 - - embed/mozilla/EphyBrowser.cpp | 347 ++++++--------- - embed/mozilla/EphyBrowser.h | 19 +- - embed/mozilla/EphyContentPolicy.cpp | 121 +----- - embed/mozilla/EphyContentPolicy.h | 5 +- - embed/mozilla/EphyDirectoryProvider.cpp | 22 +- - embed/mozilla/EphyFind.cpp | 125 ++---- - embed/mozilla/EphyFind.h | 13 +- - embed/mozilla/EphyHeaderSniffer.cpp | 72 ++-- - embed/mozilla/EphyHeaderSniffer.h | 38 +- - embed/mozilla/EphyHistoryListener.cpp | 35 +- - embed/mozilla/EphyHistoryListener.h | 4 +- - embed/mozilla/EphyPromptService.cpp | 81 ++-- - embed/mozilla/EphySidebar.cpp | 31 +- - embed/mozilla/EphySidebar.h | 2 - - embed/mozilla/EphySingle.cpp | 37 +- - embed/mozilla/EphySingle.h | 14 +- - embed/mozilla/EphyUtils.cpp | 55 +-- - embed/mozilla/EphyUtils.h | 12 +- - embed/mozilla/EventContext.cpp | 189 ++++---- - embed/mozilla/EventContext.h | 33 +- - embed/mozilla/FilePicker.cpp | 59 ++- - embed/mozilla/FilePicker.h | 6 +- - embed/mozilla/GlobalHistory.cpp | 28 +- - embed/mozilla/GlobalHistory.h | 6 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 66 ++- - embed/mozilla/GtkNSSDialogs.cpp | 139 +++--- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 576 +------------------------ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 27 +- - embed/mozilla/GtkNSSSecurityWarningDialogs.h | 3 +- - embed/mozilla/Makefile.am | 21 +- - embed/mozilla/MozDownload.cpp | 235 ++-------- - embed/mozilla/MozDownload.h | 54 +-- - embed/mozilla/MozRegisterComponents.cpp | 113 ++--- - embed/mozilla/MozRegisterComponents.h | 2 + - embed/mozilla/MozillaPrivate.cpp | 8 +- - embed/mozilla/MozillaPrivate.h | 2 - - embed/mozilla/PrintingPromptService.cpp | 20 +- - embed/mozilla/PrintingPromptService.h | 9 +- - embed/mozilla/mozilla-download.cpp | 33 +- - embed/mozilla/mozilla-download.h | 7 +- - embed/mozilla/mozilla-embed-event.cpp | 10 +- - embed/mozilla/mozilla-embed-event.h | 6 +- - embed/mozilla/mozilla-embed-find.cpp | 8 +- - embed/mozilla/mozilla-embed-find.h | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 71 ++- - embed/mozilla/mozilla-embed-persist.h | 6 +- - embed/mozilla/mozilla-embed-single.cpp | 291 +++---------- - embed/mozilla/mozilla-embed.cpp | 167 ++----- - embed/mozilla/mozilla-embed.h | 6 +- - embed/mozilla/mozilla-notifiers.cpp | 31 +- - embed/mozilla/mozilla-notifiers.h | 1 + - embed/mozilla/mozilla-x509-cert.cpp | 16 +- - embed/mozilla/mozilla-x509-cert.h | 1 + - lib/ephy-gui.c | 37 -- - lib/ephy-gui.h | 6 - - lib/ephy-langs.c | 2 - - m4/gecko.m4 | 14 +- - src/ephy-window.c | 5 +- - src/prefs-dialog.c | 16 - - 69 files changed, 1145 insertions(+), 2633 deletions(-) - -commit c3a7867c638dd105405fa2078b2de828a318b909 -Author: Clytie Siddall -Date: Tue May 9 04:37:33 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 2652 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1361 insertions(+), 1295 deletions(-) - -commit d30565ba8da5f6cc0f6083856d6f5827ccf5ef77 -Author: Christian Persch -Date: Mon May 8 19:37:55 2006 +0000 - - Correct toolbar editing section. Noticed by ZeBob, bug #341069. - - 2006-05-08 Christian Persch - - * C/epiphany.xml: - - Correct toolbar editing section. Noticed by ZeBob, bug #341069. - - help/C/epiphany.xml | 2 +- - help/ChangeLog | 6 ++++++ - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit d3bafa8ca142b9c4d1cabf392965a2c96c898e8c -Author: Christian Persch -Date: Sun May 7 17:41:56 2006 +0000 - - One language per line - - po/LINGUAS | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 72 insertions(+), 1 deletion(-) - -commit 0488e68d22b4524a31be12cd1cb5ac8b812a2607 -Author: Francisco Javier F. Serrador -Date: Sat May 6 14:53:57 2006 +0000 - - Updated Spanish translation. - - 2006-05-06 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 620 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 300 insertions(+), 324 deletions(-) - -commit 10ca7b867e662e17a545650fe581dd1f4818bced -Author: Gora Mohanty -Date: Sat May 6 07:08:01 2006 +0000 - - po/LINGUAS: Added 'mg' (Malagasy). - po/mg.po: Added Malagasy translation. - po/ChangeLog: Changed to reflect these. - - po/ChangeLog | 6 + - po/LINGUAS | 2 +- - po/mg.po | 4140 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 4147 insertions(+), 1 deletion(-) - -commit 1169f8ad187c024ff5381d7b9b55713f0dd13503 -Author: Wouter Bolsterlee -Date: Fri May 5 17:27:30 2006 +0000 - - Added a close item on the tab right-click menu. Also reindented the XML - - 2006-05-05 Wouter Bolsterlee - - * data/ui/epiphany-ui.xml: Added a close item on the tab - right-click menu. Also reindented the XML file. - - ChangeLog | 5 + - data/ui/epiphany-ui.xml | 353 ++++++++++++++++++++++++------------------------ - 2 files changed, 182 insertions(+), 176 deletions(-) - -commit a044eacab236ce2ea369838765ae261c8997a98c -Author: Takeshi AIHANA -Date: Wed May 3 10:15:56 2006 +0000 - - Set translator-credit in Japanese translation. Fixes bug #339527. - - 2006-05-03 Takeshi AIHANA - - * help/ja/ja.po: - Set translator-credit in Japanese translation. - Fixes bug #339527. - - ChangeLog | 6 ++++++ - help/ja/ja.po | 22 ++++++++++------------ - 2 files changed, 16 insertions(+), 12 deletions(-) - -commit 18fe7df248721578292fdd20b7ed693933e0a61e -Author: Alexander Shopov -Date: Wed May 3 07:27:54 2006 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2006-05-03 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 544 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 277 insertions(+), 272 deletions(-) - -commit 33201c5aaa414e59032bae66a974b14bfca61e8e -Author: Øivind Hoel -Date: Tue May 2 16:17:26 2006 +0000 - - Updated Norwegian Bokmål translation. - - 2006-05-02 Øivind Hoel - - * nb.po: Updated Norwegian Bokmål translation. - - po/ChangeLog | 4 + - po/nb.po | 1156 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 479 insertions(+), 681 deletions(-) - -commit cf41cd01594b05ce9e8f32a1b142307d48a0f9cd -Author: Priit Laes -Date: Sat Apr 29 09:44:22 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-04-29 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 634 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 341 insertions(+), 297 deletions(-) - -commit 7c7d6f9dba8d66386213172d5e7c1e05577ebc49 -Author: Christian Persch -Date: Tue Apr 25 11:40:41 2006 +0000 - - Make sure each tab has its own unique ID, so accel paths don't conflict - - 2006-04-25 Christian Persch - - * src/ephy-tab.c: (ephy_tab_finalize), (ephy_tab_init), - (ephy_tab_get_zoom), (_ephy_tab_get_id): - * src/ephy-tab.h: - * src/ephy-tabs-menu.c: (notebook_page_added_cb), - (sync_active_tab): - - Make sure each tab has its own unique ID, so accel paths don't - conflict between windows. Fixes bug #339548. - - ChangeLog | 11 ++++++++++ - src/ephy-tab.c | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++- - src/ephy-tab.h | 3 +++ - src/ephy-tabs-menu.c | 5 +++-- - 4 files changed, 76 insertions(+), 3 deletions(-) - -commit 72987fc9b47a86b9eb271b214bf0675ed5589850 -Author: Ankitkumar Rameshchandra Patel -Date: Tue Apr 25 04:03:28 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++++ - po/gu.po | 19 ++++++++++++------- - 2 files changed, 16 insertions(+), 7 deletions(-) - -commit 3eb0f39c301ea54efaa975c22319476bdfe471a3 -Author: Christian Perhristian Persch -Date: Mon Apr 24 07:47:22 2006 +0000 - - Post-release version bump. - - 2006-04-24 Christian Perhristian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit d5d5bc4bbc013e4e2666af943b79778ba6c30dd2 -Author: Christian Persch -Date: Mon Apr 24 07:45:19 2006 +0000 - - === Release 2.15.1 === - - 2006-04-24 Christian Persch - - === Release 2.15.1 === - - * configure.ac: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - * src/window-commands.c: (window_cmd_help_about): - - Update for 2.15.1. - - * help/eu/eu.po: - * help/fi/fi.po: - * help/ja/ja.po: - - Fix the build by adding bogus translator-credits strings. - - ChangeLog | 17 +++++++++++++++++ - configure.ac | 14 +++++++------- - doc/reference/tmpl/EphySingle.sgml | 2 -- - doc/reference/tmpl/ephy-embed-factory.sgml | 2 -- - doc/reference/tmpl/ephy-embed-persist.sgml | 2 -- - doc/reference/tmpl/ephy-embed-single.sgml | 7 ------- - doc/reference/tmpl/ephy-embed.sgml | 15 +++------------ - doc/reference/tmpl/ephy-extensions-manager.sgml | 5 ----- - doc/reference/tmpl/ephy-node-db.sgml | 2 -- - embed/mozilla/Makefile.am | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 4 ++-- - help/eu/eu.po | 3 +++ - help/fi/fi.po | 2 +- - help/ja/ja.po | 4 ++++ - src/window-commands.c | 5 +++-- - 15 files changed, 41 insertions(+), 45 deletions(-) - -commit 55915473b815a7ea214210a4a13a7db0ac7b7a38 -Author: Christian Persch -Date: Sun Apr 23 19:55:17 2006 +0000 - - Updated - - po/POTFILES.skip | 3 --- - 1 file changed, 3 deletions(-) - -commit cff67b6be03fb76367c7e8043c0b07b8ca281e46 -Author: Ignacio Casal Quinteiro -Date: Fri Apr 21 12:38:59 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 166 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 87 insertions(+), 83 deletions(-) - -commit 5db2bf7afb2e9b9a740a4b9f41cbc33123f685db -Author: Ankitkumar Rameshchandra Patel -Date: Fri Apr 21 05:17:08 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++++ - po/gu.po | 29 +++++++++++++++-------------- - 2 files changed, 19 insertions(+), 14 deletions(-) - -commit 332f081af40ffaea2cba83c6d505ba7bda291d3d -Author: Piers Cornwell -Date: Thu Apr 20 17:46:33 2006 +0000 - - Fix duplicate accesskey. Bug 337912 - - 2006-04-20 Piers Cornwell - - * data/glade/prefs-dialog.glade: - - Fix duplicate accesskey. Bug 337912 - - ChangeLog | 6 ++++++ - data/glade/prefs-dialog.glade | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 5419cc8d3a55515bb76e7d265703526150429b31 -Author: Piers Cornwell -Date: Thu Apr 20 17:45:34 2006 +0000 - - Use header capitalisation. Bug #337915 - - 2006-04-20 Piers Cornwell - - * src/bookmarks/ephy-bookmarks-editor.c: - - Use header capitalisation. Bug #337915 - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 49ff60134ed9195c245aa194b2f56e87f88e6687 -Author: Christian Persch -Date: Thu Apr 20 13:07:45 2006 +0000 - - Fix mnemonic activation of download path button. Bug #339139. - - 2006-04-19 Christian Persch - - * data/glade/prefs-dialog.glade: - * src/prefs-dialog.c: - - Fix mnemonic activation of download path button. Bug #339139. - - ChangeLog | 9 ++++++++- - data/glade/prefs-dialog.glade | 2 +- - src/prefs-dialog.c | 6 +++++- - 3 files changed, 14 insertions(+), 3 deletions(-) - -commit 864128031979b0593fc8efa359d9f5ab943eb92b -Author: Ankitkumar Rameshchandra Patel -Date: Tue Apr 18 05:28:28 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 632 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 319 insertions(+), 317 deletions(-) - -commit ca5c5b595be26cc91a92abb9b7c61fead8e11e3e -Author: Chhristian Persch -Date: Mon Apr 17 14:23:53 2006 +0000 - - Also allow cairo-gtk2 builds. Builds but segfaults on startup. - - 2006-04-17 Chhristian Persch - - * m4/gecko.m4: - - Also allow cairo-gtk2 builds. - Builds but segfaults on startup. - - ChangeLog | 9 ++++++++- - m4/gecko.m4 | 8 ++++++-- - 2 files changed, 14 insertions(+), 3 deletions(-) - -commit d0fbb2dbdc437d122b4ebe33110bb926ffa34e8a -Author: Christian Persch -Date: Mon Apr 17 14:22:21 2006 +0000 - - Check for nsIMutableArray.h and include it if found. Fixes build with - - 2006-04-13 Christian Persch - - * configure.ac: - * embed/mozilla/GtkNSSDialogs.cpp: - - Check for nsIMutableArray.h and include it if found. Fixes build with - gecko trunk. - - ChangeLog | 8 ++++++++ - configure.ac | 10 ++++++++++ - embed/mozilla/GtkNSSDialogs.cpp | 6 +++++- - 3 files changed, 23 insertions(+), 1 deletion(-) - -commit 69ac8270b40ea5a887e89d5203b4a8b5add63404 -Author: Kjartan Maraas -Date: Mon Apr 17 11:20:09 2006 +0000 - - Remove obsolete entry for no_NO And the translation. - - 2006-04-17 Kjartan Maraas - - * LINGUAS: Remove obsolete entry for no_NO - * no.po: And the translation. - - po/ChangeLog | 5 + - po/LINGUAS | 2 +- - po/no.po | 4091 ---------------------------------------------------------- - 3 files changed, 6 insertions(+), 4092 deletions(-) - -commit c633a54d43091141ff04f4ab90d3710cbb0aa339 -Author: Clytie Siddall -Date: Mon Apr 17 03:45:35 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 2616 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1281 insertions(+), 1339 deletions(-) - -commit 9512d01e35d915795fd8245e1d88f42ba4558263 -Author: Ignacio Casal Quinteiro -Date: Sun Apr 16 21:33:05 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - po/gl.po | 36 ++++++++++++++++++++---------------- - 2 files changed, 24 insertions(+), 16 deletions(-) - -commit 6bd58efb743105420115b52779fe7ab5a59f28d9 -Author: Tommi Komulainen -Date: Sat Apr 15 13:19:21 2006 +0000 - - #337140: Replace fallback favicon with more semantically correct 'text-html' - - 2006-04-15 Tommi Komulainen - - * lib/widgets/ephy-location-entry.c (update_favicon): Replace - 'stock-new' fallback favicon with more semantically correct - 'text-html' It also looks better with Tango icon theme. Bug #337140 - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 10 +++++++--- - 2 files changed, 13 insertions(+), 3 deletions(-) - -commit 03126d5ec26efd3561252e33a0d4763d85b3ae1e -Author: Åsmund Skjæveland -Date: Fri Apr 14 09:59:57 2006 +0000 - - Updated Norwegian Nynorsk translation. - - 2006-04-14 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 + - po/nn.po | 1634 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 942 insertions(+), 696 deletions(-) - -commit 71a5b8a5ae88d5c49c8cc9a8e75dd690ea93060d -Author: Christian Persch -Date: Thu Apr 13 19:25:52 2006 +0000 - - Add -p as short option format for --private-instance. - - 2006-04-13 Christian Persch - - * src/ephy-main.c: - - Add -p as short option format for --private-instance. - - ChangeLog | 6 ++++++ - src/ephy-main.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 08fde84cbadcc0691702ce3f17349470c375fe67 -Author: Vladimer Sichinava -Date: Thu Apr 13 04:34:42 2006 +0000 - - Updated Georgian transaltion 13/04/06 - - po/ka.po | 869 ++++++++++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 552 insertions(+), 317 deletions(-) - -commit 43148a4443f05d00eec5460002234527a9db6276 -Author: Christian Persch -Date: Wed Apr 12 19:37:29 2006 +0000 - - Add Esperanto (eo). - - 2006-04-12 Christian Persch - - * src/languages.h: - - Add Esperanto (eo). - - ChangeLog | 6 ++++++ - src/languages.h | 1 + - 2 files changed, 7 insertions(+) - -commit 6d44d0c8bb4f88018846ee9014464aed450d4e35 -Author: Crispin Flowerday -Date: Tue Apr 11 19:12:46 2006 +0000 - - Reorder the menu items everywhere to have new tab above new window. Fixes - - 2006-04-11 Crispin Flowerday - - * data/ui/epiphany-bookmark-editor-ui.xml: - * data/ui/epiphany-history-window-ui.xml: - * data/ui/epiphany-ui.xml: - - Reorder the menu items everywhere to have new tab above - new window. Fixes bug #303417 - - ChangeLog | 9 +++++++++ - data/ui/epiphany-bookmark-editor-ui.xml | 4 ++-- - data/ui/epiphany-history-window-ui.xml | 4 ++-- - data/ui/epiphany-ui.xml | 4 ++-- - 4 files changed, 15 insertions(+), 6 deletions(-) - -commit 3e6b64aab649dc5f4c9614d462f6293aed5098dd -Author: Paul Drain -Date: Tue Apr 11 18:58:34 2006 +0000 - - Install App-Friendly Theme Icons (GNOME Goal Two) - - 2006-04-10 Paul Drain - - * data/art/Makefile.am: - * data/bme-desktop.in.in: - * data/epiphany-desktop.in.in: - - Install App-Friendly Theme Icons (GNOME Goal Two) - - ChangeLog | 8 ++++++++ - data/art/Makefile.am | 13 ++++++++++++- - data/bme.desktop.in.in | 2 +- - data/epiphany.desktop.in.in | 2 +- - 4 files changed, 22 insertions(+), 3 deletions(-) - -commit 811f46ca79796425fb283e622cc13fa1c9e1980a -Author: Christian Persch -Date: Mon Apr 10 20:00:17 2006 +0000 - - Don't set find next/prev insensitive since that's redundant with the - - 2006-04-10 Christian Persch - - * src/ephy-find-toolbar.c: - - Don't set find next/prev insensitive since that's redundant with - the status indication, and breaks find while the document is loading. - - ChangeLog | 7 +++++++ - src/ephy-find-toolbar.c | 34 ++-------------------------------- - 2 files changed, 9 insertions(+), 32 deletions(-) - -commit b88345e8ac844db6bbefecff212e5e4ca37905f7 -Author: Christian Persch -Date: Mon Apr 10 18:52:05 2006 +0000 - - Emit document-change event on fastback restore. Fixes bug #312785. - - 2006-04-10 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: - - Emit document-change event on fastback restore. Fixes bug #312785. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 15 ++++++++++++++- - 2 files changed, 20 insertions(+), 1 deletion(-) - -commit d741e9b7703b4911cee4c4069845da9d37fc4b7b -Author: Vladimer Sichinava -Date: Sun Apr 9 22:26:54 2006 +0000 - - Updated Georgian translation - - po/ChangeLog | 4 + - po/ka.po | 2901 +++++++++++++++++++++++----------------------------------- - 2 files changed, 1132 insertions(+), 1773 deletions(-) - -commit f58d5f649c67a89021ae794b5aa5bf8e3a9a119c -Author: Christian Persch -Date: Sun Apr 9 22:18:54 2006 +0000 - - Enable spatial nav extension. - - 2006-04-09 Christian Persch - - * data/default-prefs-common.js: - - Enable spatial nav extension. - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 3 +++ - 2 files changed, 9 insertions(+) - -commit d8b03217ec89364ddd414b16a96c7b7b7f706620 -Author: Lukas Novotny -Date: Sun Apr 9 20:42:41 2006 +0000 - - Updated Czech translation. - - 2006-04-09 Lukas Novotny - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 219 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 120 insertions(+), 103 deletions(-) - -commit a980c6cd53291a47ee2bc9bbd9189b6e968aa113 -Author: Christian Persch -Date: Sun Apr 9 20:31:48 2006 +0000 - - Documentation update from Victor Osadci. - - 2006-04-09 Christian Persch - - * C/epiphany.xml: - - Documentation update from Victor Osadci. - - help/C/epiphany.xml | 14 +++++++++++++- - help/ChangeLog | 6 ++++++ - 2 files changed, 19 insertions(+), 1 deletion(-) - -commit 03e87bd59de147ab061aa93a7b94ab32992d73af -Author: Christian Persch -Date: Sun Apr 9 19:52:49 2006 +0000 - - A data/epiphany-pango.schemas: - - 2006-04-09 Christian Persch - - * data/Makefile.am: - A data/epiphany-pango.schemas: - * lib/ephy-prefs.h: - * src/ephy-main.c: (main): - - Enable pango for some indic languages, which depend on it for correct - rendering. Bug #335799. - - ChangeLog | 10 ++++++++++ - data/Makefile.am | 6 +++--- - data/epiphany-pango.schemas | 46 +++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-prefs.h | 3 +++ - src/ephy-main.c | 23 +++++++++++++++++------ - 5 files changed, 79 insertions(+), 9 deletions(-) - -commit aec8ec1938ebf607c20758cedab4b2a4f6587c74 -Author: Theppitak Karoonboonyanan -Date: Sun Apr 9 15:42:52 2006 +0000 - - Updated Thai translation (merged from gnome-2-14 branch). - - 2006-04-09 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation (merged from gnome-2-14 branch). - - po/ChangeLog | 4 ++ - po/th.po | 208 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 108 insertions(+), 104 deletions(-) - -commit 1dfd62967a4933ac4c8d27a814c2f5fa0afe447d -Author: Ignacio Casal Quinteiro -Date: Mon Apr 3 22:55:35 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/gl.po | 444 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 213 insertions(+), 235 deletions(-) - -commit 7e39abd6e20054bf167cb52eea213c14f1630595 -Author: Jean-François Rameau -Date: Mon Apr 3 19:45:02 2006 +0000 - - Improve the current code (less complex) and add a timeouted call to - - 2006-04-03 Jean-François Rameau - - * src/ephy-net-monitor.c: - - Improve the current code (less complex) and add a timeouted call - to NetworkManager when requesting network status. - Bug 330479. - - ChangeLog | 8 ++ - src/ephy-net-monitor.c | 220 +++++++------------------------------------------ - 2 files changed, 40 insertions(+), 188 deletions(-) - -commit 6cfd668cf221fc1ad4ad13f170a0e61a0e9be7d4 -Author: Christian Persch -Date: Mon Apr 3 13:32:02 2006 +0000 - - Disable export when locked down. Bug #337028. - - 2006-04-03 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - - Disable export when locked down. Bug #337028. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 7 +++++++ - 2 files changed, 14 insertions(+) - -commit f4bb56614c249f8c0ccd02cffa0ad162bac4ed50 -Author: Christian Persch -Date: Mon Apr 3 12:04:10 2006 +0000 - - Fix status icon reference count. - - 2006-04-03 Christian Persch - - * embed/downloader-view.c: - - Fix status icon reference count. - - ChangeLog | 13 +++++++++++++ - embed/downloader-view.c | 9 +++++++-- - 2 files changed, 20 insertions(+), 2 deletions(-) - -commit a9bf8b70bdbe58c6417cad05bb293817bf29c393 -Author: Christian Persch -Date: Mon Apr 3 11:57:55 2006 +0000 - - 2006-04-03 Christian Persch - - * src/ephy-dbus.c: (ephy_dbus_get_bus): - * src/ephy-net-monitor.c: - (ephy_net_monitor_check_for_active_device), - (ephy_net_monitor_attach_to_dbus), (ephy_net_monitor_startup): - - embed/mozilla/MozDownload.cpp | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -commit d25608d94a39a9bbb5ec4770e1da6b68d420bb5b -Author: Christian Persch -Date: Mon Apr 3 11:56:01 2006 +0000 - - Don't crash when we cannot connect to the system dbus. Bug #336557. - - 2006-04-03 Christian Persch - - * src/ephy-dbus.c: (ephy_dbus_get_bus): - * src/ephy-net-monitor.c: - (ephy_net_monitor_check_for_active_device), - (ephy_net_monitor_attach_to_dbus), (ephy_net_monitor_startup): - - Don't crash when we cannot connect to the system dbus. Bug #336557. - - ChangeLog | 9 +++++++++ - src/ephy-dbus.c | 23 ++++++++++++++++++----- - src/ephy-net-monitor.c | 5 +++-- - 3 files changed, 30 insertions(+), 7 deletions(-) - -commit 64d66e03766ff4a529f2ebca534dbbcd756452a2 -Author: Christian Persch -Date: Sun Apr 2 20:08:14 2006 +0000 - - Add ephy_guid_help_with_doc_id for use by e-e. - - 2006-04-02 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_help_with_doc_id), (ephy_gui_help): - * lib/ephy-gui.h: - - Add ephy_guid_help_with_doc_id for use by e-e. - - ChangeLog | 7 +++++++ - lib/ephy-gui.c | 34 ++++++++++++++++++++++------------ - lib/ephy-gui.h | 5 +++++ - 3 files changed, 34 insertions(+), 12 deletions(-) - -commit 4454c5cf13ac8e73924c1957e25cd742b7143f51 -Author: Christian Persch -Date: Sun Apr 2 20:04:17 2006 +0000 - - Oops, this is a string pref! - - 2006-04-02 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - - Oops, this is a string pref! - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 17 ++++------------- - 2 files changed, 10 insertions(+), 13 deletions(-) - -commit 44d71da97fd6037b37927ac2ab6c59cdd82d00e2 -Author: Christian Persch -Date: Sat Apr 1 11:56:36 2006 +0000 - - Fix crash when cancelling the prompt before the timeout has run. - - 2006-04-01 Christian Persch - - * embed/mozilla/EphyPromptService.cpp: - - Fix crash when cancelling the prompt before the timeout has run. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyPromptService.cpp | 5 ++--- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit 3c6e295fa5fcac08ad9f5a7359107117db70464b -Author: Priit Laes -Date: Wed Mar 29 16:28:51 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-03-29 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 +++ - po/et.po | 91 ++++++++++++++++++++++++++++-------------------------------- - 2 files changed, 46 insertions(+), 49 deletions(-) - -commit ab54315150069e84e5db81f271efd0190a47f5d1 -Author: Christian Persch -Date: Tue Mar 28 20:06:56 2006 +0000 - - Use g_object_ref_sink(). - - 2006-03-28 Christian Persch - - * embed/mozilla/EphyPromptService.cpp: - * lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_set_fixed): - * lib/widgets/ephy-location-entry.c: (ephy_location_entry_init): - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_init): - * src/ephy-fullscreen-popup.c: (ephy_fullscreen_popup_constructor): - * src/ephy-notebook.c: (ephy_notebook_init): - * src/ephy-statusbar.c: (ephy_statusbar_init): - - Use g_object_ref_sink(). - - ChangeLog | 12 +++++++++++ - embed/mozilla/EphyPromptService.cpp | 42 +++++++++++++++++-------------------- - lib/egg/egg-editable-toolbar.c | 3 +-- - lib/widgets/ephy-location-entry.c | 3 +-- - lib/widgets/ephy-zoom-control.c | 3 +-- - src/ephy-fullscreen-popup.c | 3 +-- - src/ephy-notebook.c | 3 +-- - src/ephy-statusbar.c | 3 +-- - 8 files changed, 37 insertions(+), 35 deletions(-) - -commit c064ae70ee2c8029468479580b04b09bda3a7994 -Author: Jean-François Rameau -Date: Tue Mar 28 19:55:45 2006 +0000 - - . - - 2006-03-28 Jean-François Rameau - - * embed/mozilla/EphyContentPolicy.cpp: (ShouldLoad). - - Mozilla backend now supports adblock. - Fix #335919. - - ChangeLog | 7 +++++ - embed/mozilla/EphyContentPolicy.cpp | 57 +++++++++++++++++++++++++++++++------ - 2 files changed, 55 insertions(+), 9 deletions(-) - -commit 1ba9972501c252740f65d23552b447360425256d -Author: Jeremy Le Floc'h -Date: Tue Mar 28 12:07:59 2006 +0000 - - file br.po was initially added on branch gnome-2-14. - -commit 78adb7626381a643d624f580901092743f231fd7 -Author: Tommi Vainikainen -Date: Mon Mar 27 20:13:15 2006 +0000 - - Fix typo. - - 2006-03-27 Tommi Vainikainen - * fi.po: Fix typo. - - po/ChangeLog | 4 ++++ - po/fi.po | 5 ++--- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 8f204aa1b0ed48c136a4d49b96b98183d21cd6be -Author: Theppitak Karoonboonyanan -Date: Sat Mar 25 05:40:02 2006 +0000 - - Updated Thai translation (merged from gnome-2-14 branch). - - 2006-03-25 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation (merged from gnome-2-14 branch). - - po/ChangeLog | 4 + - po/th.po | 585 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 320 insertions(+), 269 deletions(-) - -commit f506d3873fdf2f1997e4603f867866ab8765f309 -Author: Christian Persch -Date: Thu Mar 23 21:23:58 2006 +0000 - - Fix print format/arg mismatch. - - 2006-03-23 Christian Persch - - * lib/ephy-node.c: (write_parent), (ephy_node_write_to_xml): - - Fix print format/arg mismatch. - - ChangeLog | 6 ++++++ - lib/ephy-node.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 1137079eaf364725fbbb7ba819102af22acbbc37 -Author: Christian Persch -Date: Thu Mar 23 21:22:34 2006 +0000 - - Drop compat code for libgnome < 2.14. Fix refcount leak. - - 2006-03-23 Christian Persch - - * configure.ac: - * src/ephy-main.c: (main): - - Drop compat code for libgnome < 2.14. - Fix refcount leak. - - ChangeLog | 8 +++++ - configure.ac | 2 ++ - src/ephy-main.c | 98 +++++++-------------------------------------------------- - 3 files changed, 22 insertions(+), 86 deletions(-) - -commit 2a7dedbbd5c42ca6036c2e1e5afd0c1b5d6413f9 -Author: Christian Persch -Date: Thu Mar 23 16:46:22 2006 +0000 - - Remove #ifdef:s now that we depend on gtk+ 2.9. - - 2006-03-23 Christian Persch - - * embed/downloader-view.c: (show_status_icon), - (downloader_view_init), (downloader_view_finalize), - (update_status_icon), (download_changed_cb), - (downloader_view_add_download), (downloader_view_remove_download), - (download_dialog_delete_event_cb): - - Remove #ifdef:s now that we depend on gtk+ 2.9. - - ChangeLog | 10 ++++++++++ - embed/downloader-view.c | 24 +----------------------- - 2 files changed, 11 insertions(+), 23 deletions(-) - -commit 459706710945ea711d80311308916d77c3cb0cf3 -Author: Christian Persch -Date: Thu Mar 23 16:43:28 2006 +0000 - - Port notebook DND to gtk+ 2.9. - - 2006-03-23 Christian Persch - - * configure.ac: - * data/ui/epiphany-ui.xml: - * src/ephy-lockdown.c: (update_window): - * src/ephy-notebook.c: (ephy_notebook_class_init), - (button_press_cb), (ephy_notebook_init), - (tab_label_weak_notify_cb), (build_tab_label): - * src/ephy-notebook.h: - * src/ephy-session.c: (notebook_page_added_cb), - (notebook_page_removed_cb), (notebook_page_reordered_cb), - (impl_attach_window): - * src/ephy-tabs-menu.c: (notebook_page_added_cb), - (notebook_page_removed_cb), (notebook_page_reordered_cb), - (ephy_tabs_menu_set_window): - * src/ephy-window.c: (update_tabs_menu_sensitivity), - (idle_tab_remove_cb), (notebook_page_added_cb), - (notebook_page_removed_cb), (notebook_page_reordered_cb), - (notebook_page_close_request_cb), (setup_notebook), - (ephy_window_remove_tab), (notebook_switch_page_cb): - * src/epiphany.defs: - * src/window-commands.c: (window_cmd_tabs_move_left), - (window_cmd_tabs_move_right): - - Port notebook DND to gtk+ 2.9. - - ChangeLog | 26 ++ - configure.ac | 7 +- - data/ui/epiphany-ui.xml | 4 +- - src/ephy-lockdown.c | 2 - - src/ephy-notebook.c | 664 ++++++++++-------------------------------------- - src/ephy-notebook.h | 21 +- - src/ephy-session.c | 32 ++- - src/ephy-tabs-menu.c | 32 ++- - src/ephy-window.c | 170 ++++++------- - src/epiphany.defs | 26 -- - src/window-commands.c | 61 ++--- - 11 files changed, 294 insertions(+), 751 deletions(-) - -commit 3d7aff9704dee40cf5bbdbf11687f382ffe05072 -Author: Tommi Vainikainen -Date: Wed Mar 22 11:28:46 2006 +0000 - - Added Dzongkha translation from Pema Geyleg. Added Dzongkha (dz). - - 2006-03-22 Tommi Vainikainen - * dz.po: Added Dzongkha translation from Pema Geyleg. - * LINGUAS: Added Dzongkha (dz). - - po/ChangeLog | 5 + - po/LINGUAS | 2 +- - po/dz.po | 3874 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 3880 insertions(+), 1 deletion(-) - -commit c502325d46776394ad1208a7ec44f8a91dad30f8 -Author: Christian Persch -Date: Mon Mar 20 15:45:25 2006 +0000 - - Use GtkStatusIcon. - - 2006-03-20 Christian Persch - - * embed/downloader-view.c: (status_icon_popup_menu_cb), - (show_status_icon), (downloader_view_init), - (downloader_view_finalize), (update_status_icon), - (download_changed_cb), (downloader_view_add_download), - (downloader_view_remove_download), - (download_dialog_delete_event_cb): - - Use GtkStatusIcon. - - * lib/egg/Makefile.am: - * lib/egg/eggstatusicon.c: - * lib/egg/eggstatusicon.h: - * lib/egg/eggtrayicon.c: - * lib/egg/eggtrayicon.h: - * lib/egg/eggtraymanager.c: - * lib/egg/eggtraymanager.h: - - Remove egg status icons files. - - ChangeLog | 21 ++ - embed/downloader-view.c | 64 ++-- - lib/egg/Makefile.am | 10 +- - lib/egg/eggstatusicon.c | 782 ----------------------------------------------- - lib/egg/eggstatusicon.h | 102 ------- - lib/egg/eggtrayicon.c | 495 ------------------------------ - lib/egg/eggtrayicon.h | 80 ----- - lib/egg/eggtraymanager.c | 726 ------------------------------------------- - lib/egg/eggtraymanager.h | 93 ------ - 9 files changed, 66 insertions(+), 2307 deletions(-) - -commit 6ea171cfee81802366862fee5e15c65d3c393c57 -Author: Stanislav Brabec -Date: Mon Mar 20 15:36:38 2006 +0000 - - cs.po: Do no capitalize MozDownload.cpp "Files". - - po/ChangeLog | 4 ++++ - po/cs.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 28d9c881ac5b196c3e928fce0bf9b12cd6e5376b -Author: Jean-François Rameau -Date: Sun Mar 19 20:48:13 2006 +0000 - - Sync Epiphany with Gecko trunk according to - - 2006-03-19 Jean-François Rameau - - * embed/mozilla/EphySidebar.cpp: - * embed/mozilla/MozRegisterComponents.cpp: - - Sync Epiphany with Gecko trunk according to - https://bugzilla.mozilla.org/show_bug.cgi?id=330420. - (Add nsIClassInfo.h). - - ChangeLog | 9 +++++++++ - embed/mozilla/EphySidebar.cpp | 4 ++++ - embed/mozilla/MozRegisterComponents.cpp | 4 ++++ - 3 files changed, 17 insertions(+) - -commit d3e04e67c2bb6b6f99a62ca7c8746c2768486ec7 -Author: Maxim Dziumanenko -Date: Fri Mar 17 16:39:28 2006 +0000 - - Updated Ukrainian translation. - - 2006-03-17 Maxim Dziumanenko - - * Updated Ukrainian translation. - - help/ChangeLog | 4 + - help/uk/figures/ephy-screenshot.png | Bin 67970 -> 56029 bytes - help/uk/uk.po | 2330 +++++++++++++++++++---------------- - po/uk.po | 8 +- - 4 files changed, 1263 insertions(+), 1079 deletions(-) - -commit 095b733824dbab53cfd02d96142106015cef147e -Author: Wouter Bolsterlee -Date: Fri Mar 17 14:08:01 2006 +0000 - - Add support for local directory monitoring (in addition to local file - - 2006-03-17 Wouter Bolsterlee - - * src/ephy-tab.c: (ephy_tab_file_monitor_cb), - (ephy_tab_update_file_monitor): - - Add support for local directory monitoring (in addition to - local file monitoring). Bug #332049. - - ChangeLog | 8 ++++++ - src/ephy-tab.c | 77 ++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 59 insertions(+), 26 deletions(-) - -commit ac26052cb211f8c82ebb7c75a0feb433b6020854 -Author: Priit Laes -Date: Fri Mar 17 09:55:02 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-03-17 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit f3525bfb632855962193b4a8d70df7aea211c6cb -Author: Priit Laes -Date: Fri Mar 17 09:17:10 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-03-17 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 14 ++++++++++---- - 2 files changed, 14 insertions(+), 4 deletions(-) - -commit 2d1f9246253d9d66021c7a4a7ecca3def53755e5 -Author: Reinout van Schouwen -Date: Tue Mar 14 23:16:42 2006 +0000 - - 2006-03-15 Reinout van Schouwen - - * 2006-03-15 Reinout van Schouwen - - nl.po: fixed some accelerator keys - - po/ChangeLog | 4 ++++ - po/nl.po | 8 ++++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit 1b16fc96a1051e99b4bfa9b40c9c8f44789c3575 -Author: Clytie Siddall -Date: Tue Mar 14 06:21:21 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/vi.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit f13650c1161bb56f6f807b7954307aaca6f969c7 -Author: Clytie Siddall -Date: Tue Mar 14 04:59:45 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 2766 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1416 insertions(+), 1354 deletions(-) - -commit f6a126d3614fd10ba0a7da1e2e7662d0149fbf46 -Author: Raphael Higino -Date: Tue Mar 14 03:39:46 2006 +0000 - - Updated Brazilian Portuguese translation - - po/ChangeLog | 4 + - po/pt_BR.po | 431 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 249 insertions(+), 186 deletions(-) - -commit de54fc7993b299079d25b33226336751238757b9 -Author: Miloslav Trmac -Date: Tue Mar 14 01:01:45 2006 +0000 - - Updated Czech translation. - - 2006-03-14 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++++ - po/cs.po | 47 +++++++++++++++++++++++------------------------ - 2 files changed, 27 insertions(+), 24 deletions(-) - -commit c57af3b2be86267e57e15fafd7ba37927d66b974 -Author: Baris Cicek -Date: Mon Mar 13 21:36:08 2006 +0000 - - Updated Turkish Translation - - po/ChangeLog | 4 + - po/tr.po | 3926 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 2344 insertions(+), 1586 deletions(-) - -commit dfaace1e9da52352ec17ec0b6d7df5c7e4942b6d -Author: Duarte Loreto -Date: Mon Mar 13 20:36:37 2006 +0000 - - Updated Portuguese translation. - - 2006-03-13 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 ++++ - po/pt.po | 64 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 38 insertions(+), 30 deletions(-) - -commit 1ae9a99d4fda7328d58d68a61bd4f7f00b3e88e6 -Author: Satoru SATOH -Date: Mon Mar 13 19:02:40 2006 +0000 - - Updated Japanese translation - - 2006-03-14 Satoru SATOH - - * ja.po: Updated Japanese translation - - po/ChangeLog | 4 + - po/ja.po | 296 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 152 insertions(+), 148 deletions(-) - -commit 38e59806751f04366002d5d53368a3ccbb5c35fb -Author: Daniel Nylander -Date: Mon Mar 13 16:40:58 2006 +0000 - - Updated Swedish translation - - 2006-03-13 Daniel Nylander - - * sv.po: Updated Swedish translation - - po/ChangeLog | 4 + - po/sv.po | 1207 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 681 insertions(+), 530 deletions(-) - -commit 80da97278d8c9377fe8db5d5bcc1a6d87067bb90 -Author: Alexander Shopov -Date: Mon Mar 13 12:11:34 2006 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2006-03-13 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - po/ChangeLog | 5 +++++ - po/bg.po | 40 ++++++++++++++++++++-------------------- - 2 files changed, 25 insertions(+), 20 deletions(-) - -commit d63095dbae70b94a52df15a75bcc8b3a48cf36e5 -Author: Christian Persch -Date: Mon Mar 13 11:48:39 2006 +0000 - - Add releaseBaseURL entity. - - 2006-03-13 Christian Persch - - * data/chrome/brand.dtd.in: - - Add releaseBaseURL entity. - - ChangeLog | 6 ++++++ - data/chrome/brand.dtd.in | 1 + - 2 files changed, 7 insertions(+) - -commit cb583c8557f8dc95c9fd78d72c71695cb27021bf -Author: Francisco Javier F. Serrador -Date: Mon Mar 13 10:47:44 2006 +0000 - - Updated Spanish translation. - - 2006-03-13 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 406 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 231 insertions(+), 179 deletions(-) - -commit c5ee47298491bf3e5da36d3a0c4ad1eb6b4fcf19 -Author: Maxim Dziumanenko -Date: Mon Mar 13 09:58:49 2006 +0000 - - Updated Ukrainian translation. - - 2006-03-13 Maxim Dziumanenko - - * Updated Ukrainian translation. - - po/ChangeLog | 4 + - po/uk.po | 298 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 153 insertions(+), 149 deletions(-) - -commit f909ae211770de518e90aeb981778da4ab8b6047 -Author: Amanpreet Singh Alam -Date: Mon Mar 13 09:51:15 2006 +0000 - - update translation for Punjabi (Gurmukhi) by apbrar gmail com - - po/pa.po | 70 +++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 36 insertions(+), 34 deletions(-) - -commit 30a9b414aabaeeb8543f4e7ccc5d024d50283384 -Author: Ignacio Casal Quinteiro -Date: Mon Mar 13 08:22:20 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/gl.po | 352 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 190 insertions(+), 166 deletions(-) - -commit 7512acd8c197f3384150feb927adb0f340005f7d -Author: Runa Bhattacharjee -Date: Mon Mar 13 05:42:04 2006 +0000 - - Added Entry for Bengali (bn) Translation Updation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 9ada8b190db46821d04d78cbb1025ac2ae0b934d -Author: Runa Bhattacharjee -Date: Mon Mar 13 05:41:23 2006 +0000 - - Updated Bengali Translation - - po/bn.po | 2349 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1285 insertions(+), 1064 deletions(-) - -commit b181960e3b501679c8edc9d8fc22029761994471 -Author: Christian Persch -Date: Sun Mar 12 22:25:03 2006 +0000 - - Add support for IE link files. Bug #330735. - - 2006-03-12 Christian Persch - - * plugins/desktop-file/Makefile.am: - * plugins/desktop-file/plugin.cpp: - - Add support for IE link files. Bug #330735. - - ChangeLog | 7 ++ - plugins/desktop-file/Makefile.am | 3 +- - plugins/desktop-file/plugin.cpp | 204 ++++++++++++++++++++++++++++++--------- - 3 files changed, 170 insertions(+), 44 deletions(-) - -commit bf1cded729e758363cae0aa10caf107f8f4a5685 -Author: Christian Persch -Date: Sun Mar 12 22:22:58 2006 +0000 - - Set different exit codes when exiting from different places in the test - - 2006-03-12 Christian Persch - - * configure.ac: - * m4/gecko.m4: - - Set different exit codes when exiting from different places - in the test program, so we can see the cause of the failure - in config.log. - - ChangeLog | 9 +++++++++ - configure.ac | 4 +++- - m4/gecko.m4 | 29 ++++++++++++++++------------- - 3 files changed, 28 insertions(+), 14 deletions(-) - -commit 9ed0ae9db8339593a110d135ea4d2cd23eef1440 -Author: Christian Persch -Date: Sun Mar 12 19:43:12 2006 +0000 - - Update after branching. - - 2006-03-12 Christian Persch - - * configure.ac: - - Update after branching. - - ChangeLog | 6 ++++++ - configure.ac | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 9a08c3c60b4e499cac2eee9991feeb36df3f53ce -Author: Christian Persch -Date: Sun Mar 12 19:24:06 2006 +0000 - - === Release 2.14.0 === - - 2006-03-12 Christian Persch - - === Release 2.14.0 === - - * NEWS: - * configure.ac: - - Updated for 2.14.0. - - * src/prefs-dialog.c: (prefs_dialog_show_help), - (font_prefs_dialog_response_cb): - - Fix the documentation ID the Help button points to. - - ChangeLog | 14 ++++++++++++++ - NEWS | 47 ++++++++++++++++++++++++++++++++++++++++++++++- - configure.ac | 6 +++--- - src/prefs-dialog.c | 4 ++-- - 4 files changed, 65 insertions(+), 6 deletions(-) - -commit f36b4524c784d4b413c4ef100f17f5977109ca94 -Author: Christian Persch -Date: Sun Mar 12 18:21:14 2006 +0000 - - Add Victor to documenters in About dialogue. - - 2006-03-12 Christian Persch - - * src/window-commands.c: - - Add Victor to documenters in About dialogue. - - ChangeLog | 6 ++++++ - src/window-commands.c | 1 + - 2 files changed, 7 insertions(+) - -commit da9c1e267611c1c6095d009e97729a827f070f0c -Author: Christian Persch -Date: Sun Mar 12 18:20:34 2006 +0000 - - Updated Epiphany manual, by Victor Osadci. - - 2006-03-12 Christian Persch - - * C/epiphany.xml: - * C/figures/ephy-addressbar-smartbookmark-screenshot.png: - * C/figures/ephy-bookmarkbar-smartbookmark-screenshot.png: - * C/figures/ephy-history-window-screenshot.png: - * C/figures/ephy-screenshot.png: - - Updated Epiphany manual, by Victor Osadci. - - help/C/epiphany.xml | 689 +++++++++++++-------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 3099 -> 3334 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1570 -> 1811 bytes - help/C/figures/ephy-history-window-screenshot.png | Bin 39816 -> 36776 bytes - help/C/figures/ephy-screenshot.png | Bin 53933 -> 58347 bytes - help/ChangeLog | 10 + - 6 files changed, 429 insertions(+), 270 deletions(-) - -commit 2dedf184d02fa96bfa72789b781f6b32027b3f8c -Author: Priit Laes -Date: Sun Mar 12 08:07:33 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-03-12 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 41 +++++++++-------------------------------- - 2 files changed, 13 insertions(+), 32 deletions(-) - -commit 95775a5a4cb8a6d6e3a82ee83ce86a5a81a0bc09 -Author: Miloslav Trmac -Date: Sun Mar 12 02:31:57 2006 +0000 - - Updated Czech translation by Petr Tomeš. - - 2006-03-12 Miloslav Trmac - - * cs.po: Updated Czech translation by Petr Tomeš. - - po/ChangeLog | 4 + - po/cs.po | 390 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 224 insertions(+), 170 deletions(-) - -commit 7025e8e9cb5e029fc5cc88092e896e1234517902 -Author: Priit Laes -Date: Sat Mar 11 19:27:00 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-03-11 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 14 +++++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit b06d9ec6e9b1775b7a97e6c44327346eb9c9dec6 -Author: Alexander Shopov -Date: Sat Mar 11 13:50:53 2006 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2006-03-11 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - po/ChangeLog | 5 ++ - po/bg.po | 176 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 93 insertions(+), 88 deletions(-) - -commit f640dfabdee9a5cff72f3bfdcff66cd7084ca5ad -Author: Amanpreet Singh Alam -Date: Sat Mar 11 12:39:04 2006 +0000 - - update translation for Punjabi (Gurmukhi) by apbrar gmail com - - po/pa.po | 1469 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 774 insertions(+), 695 deletions(-) - -commit 748a25d3201f10354dc5b8e8e81144823750a287 -Author: Duarte Loreto -Date: Sat Mar 11 00:02:17 2006 +0000 - - Updated Portuguese translation. - - 2006-03-10 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 1154 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 645 insertions(+), 513 deletions(-) - -commit 767c6a092a851d3a5ecaf840f5c28fd2762fec25 -Author: Reinout van Schouwen -Date: Fri Mar 10 21:34:06 2006 +0000 - - 2006-03-10 Reinout van Schouwen - - * 2006-03-10 Reinout van Schouwen - - nl.po : re-commit translation - - po/nl.po | 429 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 244 insertions(+), 185 deletions(-) - -commit 57f65e9792b670b68615392a0229735735926280 -Author: Jordi Mallach -Date: Fri Mar 10 17:58:10 2006 +0000 - - Updated Catalan translation by Gil Forcada . - - po/ChangeLog | 5 + - po/ca.po | 1525 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 822 insertions(+), 708 deletions(-) - -commit de71035291ead023395066b06e11dba0085d8fae -Author: Francisco Javier F. Serrador -Date: Fri Mar 10 13:10:43 2006 +0000 - - Updated Spanish translation. - - 2006-03-10 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - help/es/figures/ephy-history-window-screenshot.png | Bin 27465 -> 32633 bytes - 1 file changed, 0 insertions(+), 0 deletions(-) - -commit 1e1977a8a8e4eef684f851736c65f42549f01c62 -Author: Christian Persch -Date: Fri Mar 10 09:21:06 2006 +0000 - - Fix item ordering to fix bookmarks export format. Bug #333959, patch has - - 2006-03-10 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - - Fix item ordering to fix bookmarks export format. Bug #333959, - patch has RT approval. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 5 +++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 7e6c5cf541e05a2b3e47e7681613eb2a337a12ec -Author: Clytie Siddall -Date: Fri Mar 10 07:46:12 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 257 +++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 175 insertions(+), 86 deletions(-) - -commit 0a4f66954a5bff0a094ed73cc8bb7bc1fdb13970 -Author: Daniel Nylander -Date: Thu Mar 9 01:16:42 2006 +0000 - - Swedish translation updated - - 2006-03-09 Daniel Nylander - - * sv.po: Swedish translation updated - - po/ChangeLog | 4 + - po/sv.po | 9565 +++++++++------------------------------------------------- - 2 files changed, 1414 insertions(+), 8155 deletions(-) - -commit 1607b80e2c5eb210028b0241141fc7cbb1f16924 -Author: Vincent van Adrighem -Date: Wed Mar 8 12:30:36 2006 +0000 - - Translation updated by Wouter Bolsterlee. - - 2006-03-08 Vincent van Adrighem - - * nl.po: Translation updated by Wouter Bolsterlee. - - po/ChangeLog | 4 ++++ - po/nl.po | 6 +++--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit dd64d6aaa82135b058edb76d13673948fbe554f4 -Author: Rajesh Ranjan -Date: Wed Mar 8 11:23:37 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/hi.po | 1730 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 922 insertions(+), 812 deletions(-) - -commit 99813c0efc39abf67299abb7e53f7c6e8683fee2 -Author: Christian Persch -Date: Wed Mar 8 11:03:24 2006 +0000 - - Don't throw when cancelling the dialogue with ESC. Fixes bug #333780, - - 2006-03-08 Christian Persch - - * embed/mozilla/EphyPromptService.cpp: - - Don't throw when cancelling the dialogue with ESC. Fixes bug #333780, - patch has RT approval. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyPromptService.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 1ee2c6c87678dee6a06757a731eb4611ea2fae5c -Author: Gabor Kelemen -Date: Tue Mar 7 23:43:24 2006 +0000 - - Hungarian translation updated. - - 2006-03-08 Gabor Kelemen - - * hu.po: Hungarian translation updated. - - po/ChangeLog | 4 + - po/hu.po | 244 ++++++++++++++++++++++++++++++++++++++++------------------- - 2 files changed, 172 insertions(+), 76 deletions(-) - -commit 4728f2642c11a2f790652e41190da63c32341bc3 -Author: Ole Laursen -Date: Tue Mar 7 23:13:45 2006 +0000 - - Updated Danish translation. - - 2006-03-08 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 1151 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 638 insertions(+), 517 deletions(-) - -commit 13f158754577778dabb8b24dc1eb1ad389567090 -Author: Christian Persch -Date: Tue Mar 7 22:34:21 2006 +0000 - - Build fix to build with 1.8 branch. No code changes, only #ifdef code that - - 2006-03-07 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Build fix to build with 1.8 branch. No code changes, only - #ifdef code that must not be built on 1.8 branch. - - ChangeLog | 7 +++++++ - embed/mozilla/GlobalHistory.cpp | 5 +++++ - 2 files changed, 12 insertions(+) - -commit 735787e8f62d1f2a0ee948ab07f6df099c5b433f -Author: Mugurel Tudor -Date: Tue Mar 7 19:19:04 2006 +0000 - - ro.po: Updated Romanian translation - - 2006-03-07 Mugurel Tudor - - ro.po: Updated Romanian translation - - po/ChangeLog | 4 + - po/ro.po | 2305 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1303 insertions(+), 1006 deletions(-) - -commit bc5c3d8a3034062f8aad2d1f22d56529d4f75d7d -Author: Christian Persch -Date: Mon Mar 6 20:37:14 2006 +0000 - - === Release 1.9.99 === - - 2006-03-06 Christian Persch - - === Release 1.9.99 === - - * configure.ac: - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit c1e19a7ecdc81c0f055ebf8e4020a0682519ae18 -Author: Kjartan Maraas -Date: Mon Mar 6 15:01:04 2006 +0000 - - Updated Norwegian bokmål translation. Same. - - 2006-03-06 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 +++ - po/nb.po | 122 +++++++++++++++++++++++++++++------------------------------ - po/no.po | 122 +++++++++++++++++++++++++++++------------------------------ - 3 files changed, 127 insertions(+), 122 deletions(-) - -commit 75c4ac43b7158e6dfffc341b59449febeaaa50f4 -Author: Christian Persch -Date: Sun Mar 5 22:07:52 2006 +0000 - - Back the xpinstall change out; it breaks on gecko 1.8. - - 2006-03-05 Christian Persch - - * embed/mozilla/MozRegisterComponents.cpp: - - Back the xpinstall change out; it breaks on gecko 1.8. - - ChangeLog | 6 +++ - embed/mozilla/MozRegisterComponents.cpp | 85 ++++++++++++--------------------- - 2 files changed, 36 insertions(+), 55 deletions(-) - -commit 600ddc54f68e4244f672e882167965e7d4311d26 -Author: Christian Persch -Date: Sun Mar 5 21:18:25 2006 +0000 - - Update timestamp on resume dialogue when queuing a new command. - - 2006-03-05 Christian Persch - - * src/ephy-session.c: - - Update timestamp on resume dialogue when queuing a - new command. - - ChangeLog | 7 +++++++ - src/ephy-session.c | 6 ++++++ - 2 files changed, 13 insertions(+) - -commit d791244c78d9f1d2a8d04135e7de59a3bfa28237 -Author: Christian Persch -Date: Sun Mar 5 20:54:32 2006 +0000 - - Don't use g_return_if_fail here. - - 2006-03-05 Christian Persch - - * embed/mozilla/mozilla-embed-find.cpp: - - Don't use g_return_if_fail here. - - * embed/mozilla/mozilla-embed-single.cpp: - - Remove fixed FIXME. - - ChangeLog | 10 ++++++++++ - embed/mozilla/AutoJSContextStack.cpp | 2 +- - embed/mozilla/AutoJSContextStack.h | 2 +- - embed/mozilla/EphyPromptService.cpp | 2 +- - embed/mozilla/EphyPromptService.h | 2 +- - embed/mozilla/mozilla-embed-find.cpp | 4 +--- - embed/mozilla/mozilla-embed-single.cpp | 1 - - 7 files changed, 15 insertions(+), 8 deletions(-) - -commit 8fbc5afdd03d2fe502610d39eb691fe9aca932be -Author: Christian Persch -Date: Sun Mar 5 20:50:40 2006 +0000 - - Fix fonts schema default values. - - 2006-03-05 Christian Persch - - * data/epiphany-fonts.schemas: - * data/generate-font-schemas.py: - - Fix fonts schema default values. - - * embed/downloader-view.c: (downloader_view_build_ui): - - Forgotten commit. - - ChangeLog | 11 +++++++++ - data/epiphany-fonts.schemas | 52 +++++++++++++++++++++---------------------- - data/generate-font-schemas.py | 2 +- - embed/downloader-view.c | 1 + - 4 files changed, 39 insertions(+), 27 deletions(-) - -commit 0676c62283fc9ef0c51f36024b421dea289de589 -Author: Christian Persch -Date: Sun Mar 5 15:00:10 2006 +0000 - - Use the right category. - - 2006-03-05 Christian Persch - - * embed/mozilla/MozRegisterComponents.cpp: - - Use the right category. - - ChangeLog | 6 ++++++ - embed/mozilla/MozRegisterComponents.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit dee7e0105749445ef85a35fbbff4663ab5869f80 -Author: Christian Persch -Date: Sun Mar 5 14:48:18 2006 +0000 - - Mark application/x-xpinstall as unsafe. - - 2006-03-05 Christian Persch - - * data/mime-types-permissions.xml: - - Mark application/x-xpinstall as unsafe. - - * embed/mozilla/MozRegisterComponents.cpp: - - Unregister xpinstall content handler and JS objects; - fixes download of .xpi files. - - ChangeLog | 11 +++++ - data/mime-types-permissions.xml | 1 + - embed/mozilla/MozRegisterComponents.cpp | 85 +++++++++++++++++++++------------ - 3 files changed, 67 insertions(+), 30 deletions(-) - -commit 3a2bda9152fbe270dc271fe0992db7b206ed27cc -Author: Christian Persch -Date: Sun Mar 5 12:21:24 2006 +0000 - - Before running any test programs, check that we can compile and run any - - 2006-03-05 Christian Persch - - * configure.ac: - * m4/gecko.m4: - - Before running any test programs, check that we can compile and run - any XPCOM programs at all. - - ChangeLog | 8 ++++++++ - configure.ac | 15 +++++++++++---- - m4/gecko.m4 | 40 ++++++++++++++++++++++++++++++++++++---- - 3 files changed, 55 insertions(+), 8 deletions(-) - -commit 59b244b8258700f9d04a72f8e26bf8d26330f64c -Author: Artur Flinta -Date: Sun Mar 5 11:49:02 2006 +0000 - - Updated Polish translation by GNOME PL Team. - - 2006-03-05 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++ - po/pl.po | 221 ++++++++++++++++++++++++++++++++++++++++------------------- - 2 files changed, 156 insertions(+), 69 deletions(-) - -commit 1ff7080007f6a638aebc06ad24315899c77def76 -Author: Funda Wang -Date: Sun Mar 5 11:38:30 2006 +0000 - - Updated epiphany zh_CN translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 336 ++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 219 insertions(+), 121 deletions(-) - -commit f39ea63b3e65ec13e1fb3af8d448a3b24f309b8e -Author: Alexander Shopov -Date: Sun Mar 5 10:49:21 2006 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2006-03-05 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - po/ChangeLog | 5 ++ - po/bg.po | 237 ++++++++++++++++++++++++++++++++++++++++------------------- - 2 files changed, 166 insertions(+), 76 deletions(-) - -commit 642ea921da3ff087ba27af0905226ce855e211c6 -Author: Priit Laes -Date: Sat Mar 4 08:56:37 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-03-04 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++ - po/et.po | 211 +++++++++++++++++++++++++++++++++++++++++------------------ - 2 files changed, 151 insertions(+), 64 deletions(-) - -commit bba36e4da46e1f7acd354739057e7c0a7eb46d24 -Author: Chao-Hsiung Liao -Date: Sat Mar 4 06:36:36 2006 +0000 - - Updated Traditional Chinese translation(Hong Kong). Updated Traditional - - 2006-03-04 Chao-Hsiung Liao - - * zh_HK.po: Updated Traditional Chinese translation(Hong Kong). - * zh_TW.po: Updated Traditional Chinese translation(Taiwan). - - po/ChangeLog | 5 + - po/zh_HK.po | 1725 +++++++++++++++++++++++++++++++++------------------------- - po/zh_TW.po | 1704 +++++++++++++++++++++++++++++++++------------------------ - 3 files changed, 1973 insertions(+), 1461 deletions(-) - -commit 6703214df3dddd316cb4d99d32eb704756864574 -Author: Christian Persch -Date: Fri Mar 3 17:28:31 2006 +0000 - - Fix build - - embed/mozilla/GlobalHistory.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7bb807425a00d571949c378e8bdf2edcf6ecb40a -Author: Jean-François Rameau -Date: Fri Mar 3 13:57:27 2006 +0000 - - Sync Epiphany with new nsIGlobalHistory3 stuff. - - 2006-03-03 Jean-François Rameau - - * configure.ac: - * embed/mozilla/GlobalHistory.h: - * embed/mozilla/GlobalHistory.cpp: - - Sync Epiphany with new nsIGlobalHistory3 stuff. - - * embed/mozilla/EphyContentPolicy.cpp: (GetEmbedFromContext): - - Fix a missing return. - - ChangeLog | 12 ++++++++++++ - configure.ac | 4 ++++ - embed/mozilla/EphyContentPolicy.cpp | 2 +- - embed/mozilla/GlobalHistory.cpp | 25 ++++++++++++++++++++++--- - embed/mozilla/GlobalHistory.h | 11 +++++++++++ - 5 files changed, 50 insertions(+), 4 deletions(-) - -commit 846c58ecb9f38d453a898749a0eb8e82b27c51bd -Author: Leonid Kanter -Date: Fri Mar 3 11:35:48 2006 +0000 - - Updated Russian translation - - po/ChangeLog | 4 + - po/ru.po | 247 ++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 162 insertions(+), 89 deletions(-) - -commit c1c1c8c17e3bf0e350a8110c9a7aec070be8a479 -Author: Žygimantas Beručka -Date: Thu Mar 2 22:56:19 2006 +0000 - - Updated Lithuanian translation - - 2006-03-03 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation - - po/ChangeLog | 4 + - po/lt.po | 280 +++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 190 insertions(+), 94 deletions(-) - -commit a4889534d369b488f867006888590b99ca688516 -Author: Christian Persch -Date: Thu Mar 2 22:19:20 2006 +0000 - - Don't block stylesheets (for now). - - 2006-03-02 Christian Persch - - * embed/mozilla/EphyContentPolicy.cpp: - - Don't block stylesheets (for now). - - ChangeLog | 6 ++++++ - embed/mozilla/EphyContentPolicy.cpp | 23 +++++++++++++++++------ - 2 files changed, 23 insertions(+), 6 deletions(-) - -commit bead6bf79620b3dc88e5fe65ac59befdd975254a -Author: Jean-François Rameau -Date: Thu Mar 2 22:04:09 2006 +0000 - - Fix a warning introduced in my last patch (gcc 4.1 warnings). - - 2006-03-02 Jean-François Rameau - - * src/ephy-history-window.c: (ephy_history_window_set_parent): - - Fix a warning introduced in my last patch (gcc 4.1 warnings). - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit f9844520f2613ab7c5d886119a9a9b6f9d0d5121 -Author: Christian Persch -Date: Thu Mar 2 21:55:22 2006 +0000 - - Don't try to connect to the session bus when we're starting a private - - 2006-03-02 Christian Persch - - * src/ephy-dbus.c: (_ephy_dbus_startup): - - Don't try to connect to the session bus when we're - starting a private instance. - - ChangeLog | 7 +++++++ - src/ephy-dbus.c | 18 ++++++++++-------- - 2 files changed, 17 insertions(+), 8 deletions(-) - -commit 2bb56d082c838fc5cc72b271b6f244671868bc3d -Author: Peter Harvey -Date: Thu Mar 2 21:49:26 2006 +0000 - - src/ephy-window.c - - 2006-03-02 Peter Harvey - - * src/ephy-window.c - - Fix a bug introduced in my last patch where statusbar visibility - was inverted from what it should have been. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 15 +++++++++------ - 2 files changed, 16 insertions(+), 6 deletions(-) - -commit fdb9695a63e0d25e9adffeb485962ee62e67f310 -Author: Christian Persch -Date: Thu Mar 2 21:30:04 2006 +0000 - - If we can't detect the mime type, fall back to checking the file - - 2006-03-02 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): - - If we can't detect the mime type, fall back to checking the file - extension. Bug #331468. - - * src/ephy-main.c: (main): - - Don't pass NULL to realpath if PATH_MAX is defined. Bug #333051. - - ChangeLog | 11 ++++++ - src/bookmarks/ephy-bookmarks-import.c | 50 ++++++++++++++++--------- - src/ephy-main.c | 70 +++++++++++++++++++++++++++++++++-- - 3 files changed, 111 insertions(+), 20 deletions(-) - -commit 8dc95a5c584d8fdb99afec102702bd8801b95266 -Author: Jean-François Rameau -Date: Thu Mar 2 21:23:34 2006 +0000 - - Fix gcc 4.1 warnings (dereferencing type-punned pointer will break - - 2006-03-02 Jean-François Rameau - - * embed/ephy-embed-shell.c:(ephy_embed_shell_dispose): - * src/ephy-encoding-menu.c: (ephy_encoding_menu_view_dialog_cb): - * src/ephy-history-window.c: (cmd_clear), (ephy_history_window_finalize): - * src/ephy-shell.c: (ephy_shell_get_pdm_dialog),(ephy_shell_get_prefs_dialog), - (ephy_shell_get_print_setup_dialog): - * src/prefs-dialog.c: (prefs_dialog_finalize), (font_prefs_button_clicked_cb), - (language_editor_add_button_clicked_cb): - * src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_finalize): - - Fix gcc 4.1 warnings (dereferencing type-punned pointer will break strict-aliasing rules). - - ChangeLog | 13 +++++++++++++ - embed/ephy-embed-shell.c | 7 +++++-- - src/bookmarks/ephy-bookmarks-editor.c | 10 +++++++--- - src/ephy-encoding-menu.c | 3 ++- - src/ephy-history-window.c | 15 +++++++++++---- - src/ephy-shell.c | 18 +++++++++++++++--- - src/prefs-dialog.c | 20 ++++++++++++++++---- - 7 files changed, 69 insertions(+), 17 deletions(-) - -commit 4f2b380361e6bf153a04cc80dba762733a5963c1 -Author: Christian Persch -Date: Thu Mar 2 19:41:23 2006 +0000 - - Make these implement threadsafe isupports. - - 2006-03-02 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - - Make these implement threadsafe isupports. - - ChangeLog | 8 ++++++++ - embed/mozilla/GtkNSSDialogs.cpp | 8 ++++---- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 4 ++-- - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 4 +--- - 4 files changed, 15 insertions(+), 9 deletions(-) - -commit 8d20f890a2d62d2b7c7e14aa9832888bcdcfc673 -Author: Kang Jeong-Hee -Date: Thu Mar 2 18:49:03 2006 +0000 - - ko.po updated - - po/ChangeLog | 4 + - po/ko.po | 3056 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1609 insertions(+), 1451 deletions(-) - -commit 7c52c3ea7eab006282f056ce382203fb44a6ca79 -Author: Rhys Jones -Date: Thu Mar 2 17:35:49 2006 +0000 - - Updated Welsh translation. - - 2006-03-02 Rhys Jones - - * cy.po: Updated Welsh translation. - - po/ChangeLog | 4 +++ - po/cy.po | 114 ++++++++++++++++++++++++++++++++++++++++++++--------------- - 2 files changed, 89 insertions(+), 29 deletions(-) - -commit a3b3e848ab8c7731b050772677c8838fa159bb30 -Author: Laurent Dhima -Date: Thu Mar 2 15:52:30 2006 +0000 - - Updated Albanian translation. - - 2006-03-02 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++ - po/sq.po | 192 +++++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 146 insertions(+), 50 deletions(-) - -commit 5cb7345f5a9c199e5edad734c1244230e82075c4 -Author: Nikos Charonitakis -Date: Thu Mar 2 15:10:06 2006 +0000 - - Updated Greek translation - - po/ChangeLog | 4 ++ - po/el.po | 198 +++++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 149 insertions(+), 53 deletions(-) - -commit 60a7ac25bd2cd56190b36db01de7ee899109519c -Author: Maxim Dziumanenko -Date: Thu Mar 2 13:52:23 2006 +0000 - - Updated Ukrainian translation. - - 2006-03-02 Maxim Dziumanenko - - * Updated Ukrainian translation. - - po/ChangeLog | 4 + - po/uk.po | 2336 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1323 insertions(+), 1017 deletions(-) - -commit 585505c053875e2e62182df6f85b3116b7764f1e -Author: Christian Persch -Date: Thu Mar 2 13:14:19 2006 +0000 - - Don't activate typeaheadfind on XUL documents. - - 2006-03-02 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Don't activate typeaheadfind on XUL documents. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 3 +++ - 2 files changed, 9 insertions(+) - -commit fc58f00b58a1028a0713a5afe9acfe13c85b9f4b -Author: Satoru SATOH -Date: Thu Mar 2 13:03:07 2006 +0000 - - Updated Japanese Translation. - - 2006-03-02 Satoru SATOH - - * ja.po: Updated Japanese Translation. - - po/ChangeLog | 8 ++++-- - po/ja.po | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 92 insertions(+), 5 deletions(-) - -commit b0772a769ce529413eb7edd63e7624f1e9c6ef93 -Author: Ignacio Casal Quinteiro -Date: Thu Mar 2 09:45:06 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 192 +++++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 146 insertions(+), 50 deletions(-) - -commit 80af3fb25e890b9f7651c34911c50962ddaf939f -Author: Kjartan Maraas -Date: Thu Mar 2 09:04:10 2006 +0000 - - Updated Norwegian bokmål translation. Same. - - 2006-03-02 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 ++++ - po/nb.po | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- - po/no.po | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 3 files changed, 173 insertions(+), 4 deletions(-) - -commit 8f2b3813b9fe5b3960a2b4f35277577bc2a2e76f -Author: Ankitkumar Rameshchandra Patel -Date: Thu Mar 2 04:42:45 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 193 +++++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 147 insertions(+), 50 deletions(-) - -commit d90f663ab18ee722fa07d2581f80d83a6938c60a -Author: Vladimer Sichinava -Date: Wed Mar 1 18:06:56 2006 +0000 - - Added Georgian Language - - po/ChangeLog | 5 + - po/LINGUAS | 2 +- - po/ka.po | 4512 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 4518 insertions(+), 1 deletion(-) - -commit 3b60adcec8801b879be008a5c89faa4dd79dcb55 -Author: Hendrik Richter -Date: Wed Mar 1 17:17:50 2006 +0000 - - Updated German translation. - - 2006-03-01 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 302 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 189 insertions(+), 117 deletions(-) - -commit 04fe45670b36197b71226799799e40a6850e161c -Author: Christian Persch -Date: Wed Mar 1 13:20:54 2006 +0000 - - Fix extraction of Q_ strings. - - 2006-03-01 Christian Persch - - * Makevars: Fix extraction of Q_ strings. - - po/ChangeLog | 4 ++++ - po/Makevars | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 38a159440fb4f6977701d30a1adacfd31d88a3f6 -Author: Nickolay V. Shmyrev -Date: Tue Feb 28 19:07:21 2006 +0000 - - Updated Russian translation. - - - * ru.po: Updated Russian translation. - - po/ChangeLog | 4 + - po/ru.po | 1291 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 652 insertions(+), 643 deletions(-) - -commit 34e4cbbbb26f785986432a11b3a03a75ac0c585c -Author: Francisco Javier F. Serrador -Date: Tue Feb 28 18:34:08 2006 +0000 - - Updated Spanish translation. - - 2006-02-28 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - help/es/es.po | 270 +++++++++++++--------------------------------------------- - 1 file changed, 59 insertions(+), 211 deletions(-) - -commit bef16f130f4b6f328d1f4fe0bd464c8624be1b9d -Author: Takeshi AIHANA -Date: Tue Feb 28 13:40:59 2006 +0000 - - Fixed translation in schemes, and fixed translation style in - - 2006-02-28 Takeshi AIHANA - - * ja.po: Fixed translation in schemes, and fixed translation style in - tooltip/status bar (should be end with verv instead of noun). - - po/ChangeLog | 4 ++ - po/ja.po | 167 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 87 insertions(+), 84 deletions(-) - -commit cc19785113fea4108fda345a4af617e6b49fc415 -Author: Christian Persch -Date: Mon Feb 27 22:26:02 2006 +0000 - - Post-release version bump. - - 2006-02-27 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 844e354a66662c2b4646fc40af10ab3a8a7fd490 -Author: Christian Persch -Date: Mon Feb 27 22:24:04 2006 +0000 - - === Release 1.9.8 === - - 2006-02-27 Christian Persch - - === Release 1.9.8 === - - * NEWS: - * configure.ac: - - ChangeLog | 7 +++++++ - NEWS | 34 ++++++++++++++++++++++++++++++++-- - configure.ac | 2 +- - 3 files changed, 40 insertions(+), 3 deletions(-) - -commit 7c52da2f61d72a38f0aad0534ab38d0043467065 -Author: Reinout van Schouwen -Date: Mon Feb 27 20:54:55 2006 +0000 - - 2006-02-27 Reinout van Schouwen - - * 2006-02-27 Reinout van Schouwen - - * NEWS: 1.9.8 - - NEWS | 20 ++++++++++++++++++++ - 1 file changed, 20 insertions(+) - -commit cfcbce517cae0e5be2e3ac061e25521e92c0767c -Author: Francisco Javier F. Serrador -Date: Mon Feb 27 18:26:06 2006 +0000 - - Updated Spanish translation. - - 2006-02-27 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 178 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 103 insertions(+), 79 deletions(-) - -commit b30290643d8d47fe807a2015fd5230488bf24f0d -Author: Christian Persch -Date: Sun Feb 26 22:51:41 2006 +0000 - - More TODO - - TODO | 2 ++ - 1 file changed, 2 insertions(+) - -commit 55887737875f85dea2073cb61665c90dea69fb79 -Author: Gabor Kelemen -Date: Sun Feb 26 22:23:19 2006 +0000 - - Hungarian translation updated. - - 2006-02-27 Gabor Kelemen - - * hu.po: Hungarian translation updated. - - po/ChangeLog | 4 + - po/hu.po | 1553 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 871 insertions(+), 686 deletions(-) - -commit bd67d389ad214e1c12ae45eb00fa8827c250cb00 -Author: Kjartan Maraas -Date: Sun Feb 26 12:56:10 2006 +0000 - - Updated Norwegian bokmål translation. Same. - - 2006-02-26 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 ++ - po/nb.po | 186 +++++++++++++++++++++++++++++++++-------------------------- - po/no.po | 186 +++++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 211 insertions(+), 166 deletions(-) - -commit 0f3c00cf2eecb4fb308e7bfa8ee25fc651c63e86 -Author: Priit Laes -Date: Sun Feb 26 11:23:09 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-02-26 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++ - po/et.po | 203 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 124 insertions(+), 83 deletions(-) - -commit dfd4f2e9163cf8899bf34feb9d19a441ac2c72bb -Author: Artur Flinta -Date: Sun Feb 26 00:56:23 2006 +0000 - - Updated Polish translation by GNOME PL Team. - - 2006-02-26 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 2794 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 1237 insertions(+), 1561 deletions(-) - -commit 2814ce7054b9a4a14c54a2cf08b85dde74098885 -Author: Miloslav Trmac -Date: Sat Feb 25 22:57:23 2006 +0000 - - Updated Czech translation. - - 2006-02-25 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 176 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 102 insertions(+), 78 deletions(-) - -commit c04f4aef006838e01ee0e0d61a5b77c4b1cff0de -Author: Rhys Jones -Date: Sat Feb 25 12:25:36 2006 +0000 - - Updated Welsh translation. - - 2006-02-25 Rhys Jones - - * cy.po: Updated Welsh translation. - - po/ChangeLog | 4 + - po/cy.po | 2592 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1466 insertions(+), 1130 deletions(-) - -commit 0075a415f7cbedb1e7c43a8c802cdcafb36c9025 -Author: Theppitak Karoonboonyanan -Date: Sat Feb 25 07:39:33 2006 +0000 - - Updated Thai translation. - - 2006-02-25 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++ - po/th.po | 179 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 102 insertions(+), 81 deletions(-) - -commit 340a1bf78c4b60a14f51c3b596580aa1836fd317 -Author: Alexander Shopov -Date: Fri Feb 24 22:26:46 2006 +0000 - - Added Bulgarian translation by Vladimir Petkov - - 2005-02-25 Alexander Shopov - - * bg.po: - * ephy-addressbar-smartbookmark-screenshot.png: - * ephy-bookmarkbar-smartbookmark-screenshot.png: - * ephy-history-window-screenshot.png: - * ephy-screenshot.png: - Added Bulgarian translation by - Vladimir Petkov - - help/ChangeLog | 10 + - help/Makefile.am | 2 +- - help/bg/bg.po | 3016 ++++++++++++++++++++ - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 5601 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 1485 bytes - help/bg/figures/ephy-history-window-screenshot.png | Bin 0 -> 57871 bytes - help/bg/figures/ephy-screenshot.png | Bin 0 -> 128950 bytes - 7 files changed, 3027 insertions(+), 1 deletion(-) - -commit 61a08c3d369f37efa4133f206de9e690195a4b2d -Author: Alexander Shopov -Date: Fri Feb 24 20:06:16 2006 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2006-02-24 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - po/ChangeLog | 5 + - po/bg.po | 365 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 204 insertions(+), 166 deletions(-) - -commit d7b5119cb8ddb4ad08bfb827f7ebba49552c0610 -Author: Christian Persch -Date: Fri Feb 24 19:50:39 2006 +0000 - - Distinguish different firefox profiles when showing the list to choose - - 2006-02-24 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (add_bookmarks_source): - - Distinguish different firefox profiles when showing the list to - choose which one to import. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 18 +++++++++++++++++- - 2 files changed, 24 insertions(+), 1 deletion(-) - -commit e665f081cad919a243d5367c13ef039f8662bce5 -Author: Peter Harvey -Date: Fri Feb 24 14:57:04 2006 +0000 - - src/bookmarks/ephy-bookmark-action.c - - 2006-02-24 Peter Harvey - - * src/bookmarks/ephy-bookmark-action.c - - Set the tooltip for bookmarks on the toolbar, using a - 'title\nlocation' format. Bug #332113. - - ChangeLog | 9 ++++++- - src/bookmarks/ephy-bookmark-action.c | 48 ++++++++++++++++++++++++++++++++++++ - 2 files changed, 56 insertions(+), 1 deletion(-) - -commit b9492e9f705fe2a09fa2690d4b403d9604d1a226 -Author: Peter Harvey -Date: Fri Feb 24 14:11:11 2006 +0000 - - src/bookmarks/ephy-bookmark-action.c - - 2006-02-24 Peter Harvey - - * src/bookmarks/ephy-bookmark-action.c - - Update the bookmark icon if the toolbar is reconfigured - (happens when the theme changes). Everything else should - be already handled by the class handler. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmark-action.c | 9 +++++++++ - 2 files changed, 17 insertions(+) - -commit f63a527a63c389a6cf8efb2e6c91736cf423ab6c -Author: Peter Harvey -Date: Fri Feb 24 13:27:22 2006 +0000 - - lib/egg/egg-editable-toolbar.c - - 2006-02-24 Peter Harvey - - * lib/egg/egg-editable-toolbar.c - - Fix a bug where the visibility_paths were deleted on - deconstruct rather than dispose. - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 19 +++++++++++++++---- - 2 files changed, 22 insertions(+), 4 deletions(-) - -commit 911c3d33e3f1c699ca9d7ed46a2ec2352a6aa1e5 -Author: Peter Harvey -Date: Fri Feb 24 12:44:04 2006 +0000 - - lib/egg/egg-editable-toolbar.c - - 2006-02-24 Peter Harvey - - * lib/egg/egg-editable-toolbar.c - - Made the "Show" menu items insensitive when the entire toolbar - is hidden. - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 7 +++++++ - 2 files changed, 14 insertions(+) - -commit ff0cbed74448d4dc4def4ac856526fb23ffc089e -Author: Peter Harvey -Date: Fri Feb 24 12:13:57 2006 +0000 - - src/bookmarks/ephy-topics-palette.c - - 2006-02-24 Peter Harvey - - * src/bookmarks/ephy-topics-palette.c - - Changed selection mode to 'none'. Makes it more - usable for mouse users, and we have a text entry - for keyboard users anyway. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-topics-palette.c | 5 +---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit 16fb96c259a9b16838413e8bfc09f75988370dcc -Author: Clytie Siddall -Date: Fri Feb 24 11:18:24 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 +++ - po/vi.po | 110 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 63 insertions(+), 51 deletions(-) - -commit daaaf9f55c96fc98060c40bc7df68f58e20742d6 -Author: Raphael Higino -Date: Fri Feb 24 03:45:23 2006 +0000 - - Updated Brazilian Portuguese translation - - po/ChangeLog | 4 ++ - po/pt_BR.po | 126 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 79 insertions(+), 51 deletions(-) - -commit d36424d00b82e3a44130d19e63e32f2088057abf -Author: Peter Harvey -Date: Thu Feb 23 21:38:28 2006 +0000 - - lib/egg/egg-editable-toolbar.c - - 2006-02-23 Peter Harvey - - * lib/egg/egg-editable-toolbar.c - - Added translator comment. - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 7 +++++++ - 2 files changed, 13 insertions(+) - -commit eaa1f56a9362d344ef26e2ac83bda313a84fe17c -Author: Crispin Flowerday -Date: Thu Feb 23 18:57:21 2006 +0000 - - Updated British English translation - - 2006-02-23 Crispin Flowerday - - * en_GB.po: Updated British English translation - - po/ChangeLog | 4 +++ - po/en_GB.po | 115 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 65 insertions(+), 54 deletions(-) - -commit 6adeef32a02be322003fc19d77da410f31d8b5b3 -Author: Christian Persch -Date: Thu Feb 23 18:12:56 2006 +0000 - - Use the same machanism for Ctrl-W as clicking the tab's close button. - - 2006-02-23 Christian Persch - - * src/window-commands.c: (window_cmd_file_close_window), - (window_cmd_help_about): - - Use the same machanism for Ctrl-W as clicking the tab's - close button. Fixes bug #319530. - - ChangeLog | 8 ++++++++ - src/window-commands.c | 20 +++++++++++++------- - 2 files changed, 21 insertions(+), 7 deletions(-) - -commit 073edc0cbfc5b9eb332c15fa0b294a113e753080 -Author: Ilkka Tuohela -Date: Thu Feb 23 15:04:56 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 +++ - po/fi.po | 91 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 53 insertions(+), 42 deletions(-) - -commit 2ef2d71665925b3599025077a2336ad35d15f9c6 -Author: Christian Persch -Date: Thu Feb 23 14:17:27 2006 +0000 - - Added GECKO_CHECK_CONTRACTIDS. Fix variable name quoting in - - 2006-02-23 Christian Persch - - * m4/gecko.m4: - - Added GECKO_CHECK_CONTRACTIDS. Fix variable name quoting in - GECKO_GECKO_CONTRACTID. - - * configure.ac: - - Check with GECKO_CHECK_CONTRACTIDS. - Remove redundant check for typeaheadfind. - - ChangeLog | 12 ++++++++++++ - configure.ac | 49 ++++++++++++++++--------------------------------- - m4/gecko.m4 | 36 +++++++++++++++++++++++++++++++----- - 3 files changed, 59 insertions(+), 38 deletions(-) - -commit 20e55f56780a89c9a4bb00085c6c61e74b13b47f -Author: Laurent Dhima -Date: Thu Feb 23 09:26:45 2006 +0000 - - Updated Albanian translation. - - 2006-02-23 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 473 ++++++++++++++++++++++++----------------------------------- - 2 files changed, 198 insertions(+), 279 deletions(-) - -commit fc940955d547f283674dd622905a80487258be5c -Author: Christian Persch -Date: Thu Feb 23 00:57:13 2006 +0000 - - Refactored. Added GECKO_XPCOM_PROGRAM modelled after AC_LANG_PROGRAM but - - 2006-02-23 Christian Persch - - * m4/gecko.m4: - - Refactored. Added GECKO_XPCOM_PROGRAM modelled after AC_LANG_PROGRAM - but which produces a program which uses XPCOM; and made - GECKO_CHECK_CONTRACTID use this. - - * configure.ac: - - Add a check for the gecko typeaheadfind extension. Bug #329118. - - ChangeLog | 12 +++++++ - configure.ac | 42 +++++++++++++++++++++++-- - m4/gecko.m4 | 101 ++++++++++++++++++++++++++++++++++++++--------------------- - 3 files changed, 117 insertions(+), 38 deletions(-) - -commit c1e4873c4e1452b42afc5b2be611d1636979d457 -Author: Peter Harvey -Date: Wed Feb 22 22:47:51 2006 +0000 - - src/bookmarks/ephy-topics-entry.c - - 2006-02-22 Peter Harvey - - * src/bookmarks/ephy-topics-entry.c - - Improved behaviour of completion popup. - - ChangeLog | 6 ++++ - src/bookmarks/ephy-topics-entry.c | 66 +++++++++++++++------------------------ - 2 files changed, 32 insertions(+), 40 deletions(-) - -commit 21d37f70aa5844590b5f96ee9d8a2c4706235f3a -Author: Žygimantas Beručka -Date: Wed Feb 22 22:07:50 2006 +0000 - - Updated Lithuanian translation. - - 2006-02-22 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 +++ - po/lt.po | 86 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 52 insertions(+), 38 deletions(-) - -commit 62632f836abc1c8f07faff709dc1e22fb3011cfa -Author: Christian Persch -Date: Wed Feb 22 19:42:24 2006 +0000 - - Unset general.useragent.extra.simple pref from xulrunner, we don't want - - 2006-02-22 Christian Persch - - * data/default-prefs-gecko-1-8.js: - - Unset general.useragent.extra.simple pref from xulrunner, - we don't want that in our UA string. - - ChangeLog | 7 +++++++ - data/default-prefs-gecko-1-8.js | 3 +++ - 2 files changed, 10 insertions(+) - -commit 019a029b27590d614f82bbb4c278ae2437e2480c -Author: Satoru SATOH -Date: Wed Feb 22 11:46:33 2006 +0000 - - Updated Japanese translation. - - 2006-02-22 Satoru SATOH - - * ja.po: Updated Japanese translation. - - po/ChangeLog | 6 +++- - po/ja.po | 91 ++++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 56 insertions(+), 41 deletions(-) - -commit af3bbc18aebc47276abd3e5e0f3679f91e0e3b56 -Author: Inaki Larranaga -Date: Wed Feb 22 08:34:59 2006 +0000 - - Updated Basque translation. - - 2006-02-22 Inaki Larranaga - - * eu.po: Updated Basque translation. - - po/ChangeLog | 4 + - po/eu.po | 2500 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1253 insertions(+), 1251 deletions(-) - -commit 72040a1e4611842f673de110dee56319b0b956c0 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Feb 22 05:06:56 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 +++ - po/gu.po | 80 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 45 insertions(+), 39 deletions(-) - -commit 370cab483df2bca1e7b3c2e9eb43df428ad26dc0 -Author: Ignacio Casal Quinteiro -Date: Wed Feb 22 02:39:52 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 +++ - po/gl.po | 79 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 44 insertions(+), 39 deletions(-) - -commit 7ace512ba281b4bbbd42ca26435cf86fcbe751e7 -Author: Reinout van Schouwen -Date: Tue Feb 21 22:59:07 2006 +0000 - - Updated translation - - 2006-02-22 Reinout van Schouwen - - * nl.po: Updated translation - - po/ChangeLog | 6 +++- - po/nl.po | 95 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 57 insertions(+), 44 deletions(-) - -commit ac4f6649d8ae21cf2982235b316b2ea5e8162ff9 -Author: Slobodan D. Sredojevic -Date: Tue Feb 21 21:59:29 2006 +0000 - - Updated Serbian translation - - 2006-02-21 Slobodan D. Sredojevic - - * sr.po, sr@Latn.po: Updated Serbian translation - - po/ChangeLog | 4 +++ - po/sr.po | 91 +++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 91 +++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 100 insertions(+), 86 deletions(-) - -commit 8e283c53e4f6eb0e51a7b45af3679259f95a7fe3 -Author: Kostas Papadimas -Date: Tue Feb 21 15:54:58 2006 +0000 - - Updated Greek translation - - po/ChangeLog | 4 ++ - po/el.po | 178 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 105 insertions(+), 77 deletions(-) - -commit c66ab87ed9b35bfafa1ad6aba79419d153e29de7 -Author: Peter Harvey -Date: Tue Feb 21 13:44:16 2006 +0000 - - data/ui/epiphany-fs-toolbar.xml lib/egg/egg-toolbars-model.c - - 2006-02-21 Peter Harvey - - * data/ui/epiphany-fs-toolbar.xml - * lib/egg/egg-toolbars-model.c - * lib/egg/egg-toolbars-model.h - - Added "editable" attribute for toolbars. - - * data/ui/epiphany-ui.xml - * lib/egg/egg-editable-toolbar.c - * lib/egg/egg-editable-toolbar.h - * src/ephy-toolbar.c - * src/ephy-window.c - - Many improvements to toolbar menus. Includes - changes to show visibility toggles in multiple - locations. - - * lib/ephy-stock-icons.c - * lib/ephy-stock-icons.h - - Additional stock icon for drag and drop. - - * src/bookmarks/ephy-bookmarks-ui.c - - Make 'customize toolbar' invisible when editing. - - * src/ephy-shell.c - - Mark the full-screen toolbar as non-removable. - - ChangeLog | 31 +++++ - data/ui/epiphany-fs-toolbar.xml | 2 +- - data/ui/epiphany-ui.xml | 18 ++- - lib/egg/egg-editable-toolbar.c | 235 ++++++++++++++++++++++++-------------- - lib/egg/egg-editable-toolbar.h | 3 + - lib/egg/egg-toolbars-model.c | 7 ++ - lib/egg/egg-toolbars-model.h | 15 +-- - lib/ephy-stock-icons.c | 1 + - lib/ephy-stock-icons.h | 1 + - src/bookmarks/ephy-bookmarks-ui.c | 29 +++-- - src/ephy-shell.c | 7 ++ - src/ephy-toolbar.c | 20 +++- - src/ephy-window.c | 12 +- - 13 files changed, 264 insertions(+), 117 deletions(-) - -commit 6dd4bf1e1ebfee184ebfa38781ab6418c42e652a -Author: Peter Harvey -Date: Tue Feb 21 13:32:36 2006 +0000 - - src/bookmarks/ephy-bookmarks-menu.c src/bookmarks/ephy-nodes-cover.c - - 2006-02-21 Peter Harvey - - * src/bookmarks/ephy-bookmarks-menu.c - * src/bookmarks/ephy-nodes-cover.c - - Minor tweaks to improve menu generation. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-menu.c | 2 +- - src/bookmarks/ephy-nodes-cover.c | 24 ++++++++++++++++++++---- - 3 files changed, 28 insertions(+), 5 deletions(-) - -commit 4aae60264b269b3eff4d5ba7b6a6403358fb0330 -Author: Peter Harvey -Date: Tue Feb 21 13:30:40 2006 +0000 - - src/bookmarks/ephy-bookmark-properties.c - - 2006-02-21 Peter Harvey - - * src/bookmarks/ephy-bookmark-properties.c - - Switched to using an expander after UI review. - - ChangeLog | 6 +++ - src/bookmarks/ephy-bookmark-properties.c | 75 ++++++++++++++------------------ - 2 files changed, 39 insertions(+), 42 deletions(-) - -commit 131119fa450cebd8047e300ef85d93dbbad0905c -Author: Priit Laes -Date: Tue Feb 21 09:03:28 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-02-21 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 60 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 36 insertions(+), 28 deletions(-) - -commit 95d4569766354b9b8ba2a32542bbef77437d1dde -Author: Clytie Siddall -Date: Tue Feb 21 07:21:25 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 130 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 77 insertions(+), 57 deletions(-) - -commit 21e05261f70732fd17a91ce659bfb04b840e63cb -Author: Slobodan D. Sredojevic -Date: Mon Feb 20 23:41:53 2006 +0000 - - Updated Serbian translation - - 2006-02-21 Slobodan D. Sredojevic - - * sr.po, sr@Latn.po: Updated Serbian translation - - po/ChangeLog | 4 + - po/sr.po | 721 +++++++++++++++++++++++++++++----------------------------- - po/sr@Latn.po | 721 +++++++++++++++++++++++++++++----------------------------- - 3 files changed, 720 insertions(+), 726 deletions(-) - -commit 0666e1b3df5c737173fc43705d5677973043c8ad -Author: Christian Persch -Date: Mon Feb 20 20:41:50 2006 +0000 - - Enable error pages explicitly since xulrunner is missing that pref too. - - 2006-02-20 Christian Persch - - * data/default-prefs-gecko-1.8.js: - - Enable error pages explicitly since xulrunner is missing - that pref too. - - ChangeLog | 7 +++++++ - data/default-prefs-gecko-1-8.js | 2 ++ - 2 files changed, 9 insertions(+) - -commit 9b14853a9d246c0f061fd475c10d86311d5daf8a -Author: Christian Persch -Date: Mon Feb 20 19:23:20 2006 +0000 - - Do return on failure. - - 2006-02-20 Christian Persch - - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - - Do return on failure. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b5ecdf496ea2de0cfa33979f4eb1d57de72e7f47 -Author: Ankitkumar Rameshchandra Patel -Date: Mon Feb 20 10:59:46 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 133 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 79 insertions(+), 58 deletions(-) - -commit 484916e5702652ba22045137f21f95ec63ee046e -Author: Miloslav Trmac -Date: Mon Feb 20 02:48:27 2006 +0000 - - Updated Czech translation. - - 2006-02-20 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 163 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 100 insertions(+), 67 deletions(-) - -commit cba37a763464283447b1ab34e2a9dcbaaec1cf11 -Author: Kostas Papadimas -Date: Sun Feb 19 08:24:42 2006 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 1358 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 655 insertions(+), 707 deletions(-) - -commit 940259cfaa50263b54b6b80cdb27e8a4cec0a6f9 -Author: Raphael Higino -Date: Sat Feb 18 16:22:56 2006 +0000 - - Updated Brazilian Portuguese translation - - po/ChangeLog | 4 + - po/pt_BR.po | 1192 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 629 insertions(+), 567 deletions(-) - -commit 31d0f5710a381f7e4c5cd2832c8aa295a33f737c -Author: Hendrik Richter -Date: Sat Feb 18 14:52:36 2006 +0000 - - Updated German translation. - - 2006-02-18 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 +++ - po/de.po | 113 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 69 insertions(+), 48 deletions(-) - -commit 1294670a8ce213faaa47745e9394480633fcfea3 -Author: Kjartan Maraas -Date: Sat Feb 18 11:44:53 2006 +0000 - - Updated Norwegian bokmål translation. Same. - - 2006-02-18 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 ++ - po/nb.po | 260 +++++++++++++++++++---------------------------------------- - po/no.po | 260 +++++++++++++++++++---------------------------------------- - 3 files changed, 171 insertions(+), 354 deletions(-) - -commit 27256c7fa19b9ff1c795479cabceb0eaf8c90b46 -Author: Theppitak Karoonboonyanan -Date: Sat Feb 18 03:42:44 2006 +0000 - - Updated Thai translation. - - 2006-02-18 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++ - po/th.po | 130 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 77 insertions(+), 57 deletions(-) - -commit f0d0b31d29358c5c3c2dcf93c6d3620372c71001 -Author: Žygimantas Beručka -Date: Fri Feb 17 22:21:01 2006 +0000 - - Updated Lithuanian translation. - - 2006-02-17 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 355 +++++++++++++++++++++++++---------------------------------- - 2 files changed, 155 insertions(+), 204 deletions(-) - -commit 8d03657510e1fa12cb8b023eeacea639f3ad29dd -Author: Christian Persch -Date: Thu Feb 16 21:12:44 2006 +0000 - - Fix crash on switching to/from fullscreen mode. Bug #331462. - - 2006-02-16 Christian Persch - - * src/ephy-window.c: (ephy_window_state_event): - - Fix crash on switching to/from fullscreen mode. Bug #331462. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit cd9345319093dcfdbcda9e7d79e55d08ca8c5249 -Author: Crispin Flowerday -Date: Thu Feb 16 20:58:08 2006 +0000 - - Updated British English translation - - 2006-02-16 Crispin Flowerday - - * en_GB.po: Updated British English translation - - po/ChangeLog | 4 + - po/en_GB.po | 1454 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 778 insertions(+), 680 deletions(-) - -commit 8d2facbb081a61a62153dd95a687a55d91b7499b -Author: Reinout van Schouwen -Date: Thu Feb 16 20:01:00 2006 +0000 - - Updated Dutch translation - - 2006-02-16 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - po/ChangeLog | 18 ++++---- - po/nl.po | 133 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 84 insertions(+), 67 deletions(-) - -commit 7c5b497dd3680e952c722aab130af23b47f31423 -Author: Christian Persch -Date: Wed Feb 15 22:03:43 2006 +0000 - - Guard against nsDocument::GetDefaultView returning NULL. Bug #327764. - - 2006-02-15 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Guard against nsDocument::GetDefaultView returning NULL. - Bug #327764. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 17 +++++++++++------ - 2 files changed, 18 insertions(+), 6 deletions(-) - -commit afbeb2d17381d6891309ef015af73d7fcb79a4c4 -Author: Funda Wang -Date: Wed Feb 15 20:59:27 2006 +0000 - - Updated epiphany zh_CN translation. - - po/ChangeLog | 4 ++ - po/zh_CN.po | 133 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 78 insertions(+), 59 deletions(-) - -commit 50f0c9750b51cd8c718cb749492f965eed51765b -Author: Priit Laes -Date: Wed Feb 15 13:34:30 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-02-15 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++ - po/et.po | 230 ++++++++++++++++++++++++----------------------------------- - 2 files changed, 98 insertions(+), 136 deletions(-) - -commit cc95ea22d1afaed471ce236854b1ef5a32abda74 -Author: Peter Harvey -Date: Wed Feb 15 12:09:21 2006 +0000 - - data/ui/epiphany-toolbar.xml - - 2006-02-10 Peter Harvey - - * data/ui/epiphany-toolbar.xml - - Add the zoom in/out items back. - - ChangeLog | 6 ++++++ - data/ui/epiphany-toolbar.xml | 2 ++ - 2 files changed, 8 insertions(+) - -commit c46ccdae4473a5025d93c7b22b759f2158ae36ac -Author: Ilkka Tuohela -Date: Wed Feb 15 02:43:22 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 ++++ - po/fi.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 6601328454baf7b3804303905b6256c793923847 -Author: Ilkka Tuohela -Date: Wed Feb 15 02:22:55 2006 +0000 - - Updated Finnish translation - - po/fi.po | 113 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 63 insertions(+), 50 deletions(-) - -commit 1d2a9a67bb5589dfd032a4ec82bbe8862a79be53 -Author: Francisco Javier F. Serrador -Date: Tue Feb 14 17:24:42 2006 +0000 - - Updated Spanish translation. - - 2006-02-14 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 128 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 76 insertions(+), 56 deletions(-) - -commit 41e289ce90f2be8220bbb71fd7b9af0fcf04f8ba -Author: Takeshi AIHANA -Date: Tue Feb 14 16:41:29 2006 +0000 - - Updated Japanese translation for v1.9.6. - - 2006-02-15 Takeshi AIHANA - - * ja.po: Updated Japanese translation for v1.9.6. - - po/ChangeLog | 4 + - po/ja.po | 1460 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 717 insertions(+), 747 deletions(-) - -commit e787d3bd0c0efc1d901aec0e29aea5e38699a875 -Author: Ignacio Casal Quinteiro -Date: Tue Feb 14 13:00:13 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 132 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 78 insertions(+), 58 deletions(-) - -commit 9d6391aba379d4032d8be1d63d9535cb36163197 -Author: Peter Harvey -Date: Tue Feb 14 12:32:09 2006 +0000 - - src/bookmarks/ephy-bookmarks-editor.c - - 2006-02-10 Peter Harvey - - * src/bookmarks/ephy-bookmarks-editor.c - - Do not create the bookmarks bar when removing bookmarks - from the toolbar. - - * lib/egg/egg-toolbars-model.c - - Fix infinite loop when a toolbar has no items on it. - - ChangeLog | 13 +++++++++++- - lib/egg/egg-toolbars-model.c | 2 ++ - src/bookmarks/ephy-bookmarks-editor.c | 40 +++++++++++++++++++++++++---------- - 3 files changed, 43 insertions(+), 12 deletions(-) - -commit 92eb07864379444f9ecee4ac14d9a4bb8939aaa2 -Author: Christian Persch -Date: Mon Feb 13 23:36:20 2006 +0000 - - Post-release version bump. - - 006-02-14 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit dc7ccc7f6a48345ca3be047c7bbac523e2e5fd8c -Author: Christian Persch -Date: Mon Feb 13 23:33:13 2006 +0000 - - === Release 1.9.7 === - - 2006-02-14 Christian Persch - - === Release 1.9.7 === - - * NEWS: - * configure.ac: - - ChangeLog | 7 +++++++ - NEWS | 26 ++++++++++++++++++++++++-- - configure.ac | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 3 +++ - doc/reference/tmpl/ephy-session.sgml | 10 ---------- - doc/reference/tmpl/epiphany-unused.sgml | 9 +++++++++ - 6 files changed, 44 insertions(+), 13 deletions(-) - -commit 77ec45b36b16ad46d82d8fddd842469ca336ab4a -Author: Christian Persch -Date: Mon Feb 13 23:09:02 2006 +0000 - - Add a define and automake conditional for gecko debug builds. - - 2006-02-14 Christian Persch - - * m4/gecko.m4: - - Add a define and automake conditional for gecko - debug builds. - - ChangeLog | 7 +++++++ - m4/gecko.m4 | 4 ++++ - 2 files changed, 11 insertions(+) - -commit 52e513f13c02370716a2f87254caaf6b3b68d57d -Author: Christian Persch -Date: Mon Feb 13 23:08:05 2006 +0000 - - Use "Username" label for the password dialogue, - - 2006-02-14 Christian Persch - - * embed/mozilla/EphyPromptService.cpp: - - Use "Username" label for the password dialogue, - - ChangeLog | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit f51f34119ef32fc985751352cd77b6275937dee7 -Author: Christian Persch -Date: Mon Feb 13 23:07:52 2006 +0000 - - Also use exthandler for snews and nntp. - - 2006-02-14 Christian Persch - - * data/default-prefs-common.js: - - Also use exthandler for snews and nntp. - - embed/mozilla/EphyPromptService.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 62139c7ca91f372e715595a0dddfc3943efb72cd -Author: Christian Persch -Date: Mon Feb 13 23:06:16 2006 +0000 - - Also use exthandler for snews and nntp. - - 2006-02-14 Christian Persch - - * data/default-prefs-common.js: - - Also use exthandler for snews and nntp. - - * data/default-prefs-toolkit.js: - - Add password manager prefs, since xulrunner is - missing them. - - ChangeLog | 11 +++++++++++ - data/default-prefs-common.js | 13 +++++++++++-- - data/default-prefs-toolkit.js | 5 +++++ - 3 files changed, 27 insertions(+), 2 deletions(-) - -commit 440479d703bbe23fcac180e0ab3f7e611de3dc54 -Author: Christian Persch -Date: Mon Feb 13 23:04:35 2006 +0000 - - Don't export the local bookmarks. - - 2006-02-14 Christian Persch - - * src/bookmarks/ephy-bookmarks-export.c: (write_rdf): - - Don't export the local bookmarks. - - * src/bookmarks/ephy-bookmarks-menu.c: (append_menu): - - Remove "name" attribute in the UI string, since it's set - to same value as "action". - - * src/bookmarks/ephy-open-tabs-action.c: (node_added_cb): - - Fix untranslated string! - - ChangeLog | 15 +++++++++++++++ - src/bookmarks/ephy-bookmarks-export.c | 16 ++++++++++++++++ - src/bookmarks/ephy-bookmarks-menu.c | 4 ++-- - src/bookmarks/ephy-open-tabs-action.c | 3 ++- - 4 files changed, 35 insertions(+), 3 deletions(-) - -commit 8701bc08a5263c0e357b7bdddc0f9f8facc9cce8 -Author: Christian Persch -Date: Mon Feb 13 23:02:10 2006 +0000 - - Remove ephy_gui_window_present. - - 2006-02-14 Christian Persch - - * lib/ephy-gui.c: - * lib/ephy-gui.h: - - Remove ephy_gui_window_present. - - ChangeLog | 7 +++++++ - lib/ephy-gui.c | 29 ----------------------------- - lib/ephy-gui.h | 3 --- - 3 files changed, 7 insertions(+), 32 deletions(-) - -commit 44d332d8c7b555b37292ba70ca9be327c1aacfe8 -Author: Christian Persch -Date: Mon Feb 13 23:01:21 2006 +0000 - - Move --private-instance out of debug #ifdef. - - 2006-02-14 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_helpers_init), - (ephy_file_helpers_shutdown), (ephy_file_delete_on_exit), - (ephy_file_monitor_cancel), (ephy_file_delete_directory): - * lib/ephy-file-helpers.h: - * src/ephy-main.c: (main): - - Move --private-instance out of debug #ifdef. - - ChangeLog | 10 ++++++++++ - lib/ephy-file-helpers.c | 32 +++++++++++++++++++++++--------- - lib/ephy-file-helpers.h | 4 +++- - src/ephy-main.c | 31 +++++++++++++++++++++++-------- - 4 files changed, 59 insertions(+), 18 deletions(-) - -commit 6a26e601c499f07ef80c69e72dd902490a019a59 -Author: Reinout van Schouwen -Date: Mon Feb 13 22:52:52 2006 +0000 - - 1.9.7 - - 2006-02-13 Reinout van Schouwen - - * NEWS: 1.9.7 - - NEWS | 32 ++++++++++++++++++++++++++++++++ - 1 file changed, 32 insertions(+) - -commit 2b6f3e6271329cbf6865a563e33ec685713efc3c -Author: Christian Persch -Date: Mon Feb 13 21:49:22 2006 +0000 - - Fix crash when resolve returns an error, bug #331028. Restructure 0conf - - 2006-02-13 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (resolve_cb), (browse_cb), - (ephy_local_bookmarks_init), (ephy_local_bookmarks_stop), - (ephy_bookmarks_finalize), (ephy_bookmarks_new): - - Fix crash when resolve returns an error, bug #331028. - Restructure 0conf code. - - ChangeLog | 9 +++ - src/bookmarks/ephy-bookmarks.c | 169 +++++++++++++++++++++++++---------------- - 2 files changed, 114 insertions(+), 64 deletions(-) - -commit 8a5c70c3e8d8ea3d6b879ce0ff1539992b514740 -Author: Christian Persch -Date: Mon Feb 13 15:28:36 2006 +0000 - - Fix removing zeroconf bookmarks when the service disappears, and updating - - 2006-02-13 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (add_to_favorites), - (history_site_visited_cb), (history_cleared_cb), - (get_id_for_service), (get_node_for_service), (resolve_cb), - (browse_cb): - * src/bookmarks/ephy-bookmarks.h: - - Fix removing zeroconf bookmarks when the service disappears, - and updating them when they reappear. Bugs #329637, #330883. - - ChangeLog | 11 ++++ - src/bookmarks/ephy-bookmarks.c | 115 ++++++++++++++++++++++++++++++----------- - src/bookmarks/ephy-bookmarks.h | 1 + - 3 files changed, 97 insertions(+), 30 deletions(-) - -commit 632594884f77b7ea0d1855d1b953520b95ca5ecd -Author: Priit Laes -Date: Mon Feb 13 08:24:59 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-02-13 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 349 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 161 insertions(+), 192 deletions(-) - -commit cea5da15c05d303d862dbeb78093efa792782392 -Author: Miloslav Trmac -Date: Mon Feb 13 05:44:47 2006 +0000 - - Updated Czech translation. - - 2006-02-13 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 313 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 160 insertions(+), 157 deletions(-) - -commit 6fbc14342b19c80f662d8cf4a728b65171218c09 -Author: Christian Persch -Date: Sun Feb 12 23:50:45 2006 +0000 - - Place bookmarks on "BookmarksBar" toolbar, since that's what < 1.9 used - - 2006-02-13 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_toolbar): - - Place bookmarks on "BookmarksBar" toolbar, since - that's what < 1.9 used too. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 8 +++++--- - 2 files changed, 12 insertions(+), 3 deletions(-) - -commit ed1b7f2f077d456a0df346fc59ccfb6d218e164c -Author: Kjartan Maraas -Date: Sun Feb 12 23:24:41 2006 +0000 - - Updated Norwegian bokmål translation. Same. - - 2006-02-13 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 + - po/nb.po | 1409 ++++++++++++++++++++++++++++++---------------------------- - po/no.po | 1409 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 1487 insertions(+), 1336 deletions(-) - -commit 72b1517ac1a75fd39fafd83a43ca4172577fa0d8 -Author: Jean-François Rameau -Date: Sun Feb 12 20:27:56 2006 +0000 - - Doesn't return the right variable ! Add a LOG to trace - - 2006-02-12 Jean-François Rameau - - * src/ephy-net-monitor.c: (ephy_net_monitor_check_for_active_device): - - Doesn't return the right variable ! - Add a LOG to trace EphyNetworkMonitor's check for active device. - - ChangeLog | 7 +++++++ - src/ephy-net-monitor.c | 4 +++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 4c7c5ddefbad876beb186e4f703920e7f28ab322 -Author: Christian Persch -Date: Sun Feb 12 13:56:23 2006 +0000 - - Strdup the action name data. - - 2006-02-12 Christian Persch - - * src/bookmarks/ephy-bookmark-factory-action.c: - (build_menu_for_topic): - * src/bookmarks/ephy-topic-factory-action.c: (build_menu): - - Strdup the action name data. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmark-factory-action.c | 4 +++- - src/bookmarks/ephy-topic-factory-action.c | 4 +++- - 3 files changed, 14 insertions(+), 2 deletions(-) - -commit b149b82e5ccccd4dd7cd24c6b01d67341f8a1b60 -Author: Christian Persch -Date: Sun Feb 12 13:31:57 2006 +0000 - - Use the right action name. - - 2006-02-12 Christian Persch - - * src/bookmarks/ephy-open-tabs-action.c: (node_added_cb), - (node_removed_cb): - - Use the right action name. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-open-tabs-action.c | 8 ++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit f56cdbc0940bca10f38353efc786e901ae28196d -Author: Hendrik Richter -Date: Sun Feb 12 12:51:13 2006 +0000 - - Updated German translation. - - 2006-02-12 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 366 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 169 insertions(+), 201 deletions(-) - -commit 6c408a8535dd20d571a1a46e74a49030e2e84362 -Author: Ankitkumar Rameshchandra Patel -Date: Sun Feb 12 11:25:51 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 282 ++++++++++++++++++++++------------------------------------- - 2 files changed, 109 insertions(+), 177 deletions(-) - -commit f029657b1012ce7dacb6f16651e4c36558c6919f -Author: Ilkka Tuohela -Date: Sun Feb 12 07:29:20 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 ++ - po/fi.po | 211 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 114 insertions(+), 101 deletions(-) - -commit 4f4cffa1ed607053ac716b5c5fda806a7ead288e -Author: Christian Persch -Date: Sat Feb 11 23:32:03 2006 +0000 - - Reqeust interaction with the client when there are unfinished downloads. - - 2006-02-12 Christian Persch - - * src/ephy-session.c: (save_yourself_cb): - - Reqeust interaction with the client when there are - unfinished downloads. - - ChangeLog | 7 +++++++ - src/ephy-session.c | 6 ------ - 2 files changed, 7 insertions(+), 6 deletions(-) - -commit 9c74a1358ff0d7d7514faa44939179ba6a6eff79 -Author: Reinout van Schouwen -Date: Sat Feb 11 13:04:55 2006 +0000 - - Updated Dutch translation - - 2006-02-11 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - po/ChangeLog | 4 + - po/nl.po | 352 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 165 insertions(+), 191 deletions(-) - -commit cefd930bb51ed721269f199ad58b81d1c7bad072 -Author: Francisco Javier F. Serrador -Date: Sat Feb 11 11:47:02 2006 +0000 - - Updated Spanish translation. - - 2006-02-11 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 191 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 104 insertions(+), 91 deletions(-) - -commit d1f35c145b1f5aaea045cb533d821e5742368503 -Author: Clytie Siddall -Date: Sat Feb 11 07:09:31 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 203 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 110 insertions(+), 97 deletions(-) - -commit 03912c1ba0c399dad33199227259f258ac094d06 -Author: Theppitak Karoonboonyanan -Date: Sat Feb 11 03:30:51 2006 +0000 - - Updated Thai translation. - - 2006-02-11 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 428 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 196 insertions(+), 236 deletions(-) - -commit 96db579deb9a2caa376f167846f39b6eed6051ce -Author: Peter Harvey -Date: Fri Feb 10 23:25:36 2006 +0000 - - src/bookmarks/ephy-bookmarks-menu.c src/bookmarks/ephy-bookmarks-ui.c - - 2006-02-10 Peter Harvey - - * src/bookmarks/ephy-bookmarks-menu.c - * src/bookmarks/ephy-bookmarks-ui.c - - Additional minor cleanups. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-menu.c | 14 ++++++-------- - src/bookmarks/ephy-bookmarks-ui.c | 31 +++++++------------------------ - 3 files changed, 20 insertions(+), 32 deletions(-) - -commit 927100b2cb4b488d2581d63f764b74db976db69c -Author: Christian Persch -Date: Fri Feb 10 22:49:29 2006 +0000 - - Remove *_action_name functions, and use static buffers instead. Minor - - 2006-02-10 Christian Persch - - * src/bookmarks/ephy-bookmark-action-group.c: (smart_added_cb), - (smart_removed_cb), (node_changed_cb), (node_added_cb), - (node_removed_cb): - * src/bookmarks/ephy-bookmark-action.c: (ephy_bookmark_action_new): - * src/bookmarks/ephy-bookmark-action.h: - * src/bookmarks/ephy-bookmark-factory-action.c: - (build_menu_for_topic): - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_toolbar), - (ephy_bookmarks_editor_update_menu): - * src/bookmarks/ephy-bookmarks-menu.c: (append_bookmarks), - (append_menu), (ephy_bookmarks_menu_build): - * src/bookmarks/ephy-bookmarks-ui.c: - (ephy_bookmarks_ui_attach_window), (topic_has_data), - (topic_get_data), (topic_get_name), (bookmark_has_data), - (bookmark_get_data), (bookmark_get_name), (bookmark_new_name), - (toolbar_node_removed_cb): - * src/bookmarks/ephy-bookmarks-ui.h: - * src/bookmarks/ephy-open-tabs-action.c: (node_added_cb), - (node_removed_cb), (ephy_open_tabs_group_new): - * src/bookmarks/ephy-open-tabs-action.h: - * src/bookmarks/ephy-topic-action-group.c: (node_changed_cb), - (node_added_cb), (node_removed_cb), (ephy_topic_action_group_new): - * src/bookmarks/ephy-topic-action-group.h: - * src/bookmarks/ephy-topic-action.c: (ephy_topic_action_new): - * src/bookmarks/ephy-topic-action.h: - * src/bookmarks/ephy-topic-factory-action.c: (build_menu): - - Remove *_action_name functions, and use static buffers instead. - Minor cleanups. - - ChangeLog | 32 +++++++++ - src/bookmarks/ephy-bookmark-action-group.c | 80 ++++++++++----------- - src/bookmarks/ephy-bookmark-action.c | 24 ++----- - src/bookmarks/ephy-bookmark-action.h | 24 +++---- - src/bookmarks/ephy-bookmark-factory-action.c | 9 ++- - src/bookmarks/ephy-bookmarks-editor.c | 38 +++++----- - src/bookmarks/ephy-bookmarks-menu.c | 50 ++++++------- - src/bookmarks/ephy-bookmarks-ui.c | 101 +++++++++++++++------------ - src/bookmarks/ephy-bookmarks-ui.h | 42 ++++++++--- - src/bookmarks/ephy-open-tabs-action.c | 40 ++++------- - src/bookmarks/ephy-open-tabs-action.h | 4 +- - src/bookmarks/ephy-topic-action-group.c | 90 ++++++++++++------------ - src/bookmarks/ephy-topic-action-group.h | 3 +- - src/bookmarks/ephy-topic-action.c | 10 +-- - src/bookmarks/ephy-topic-action.h | 16 ++--- - src/bookmarks/ephy-topic-factory-action.c | 11 +-- - 16 files changed, 310 insertions(+), 264 deletions(-) - -commit f71767923318f72934fcd30be4dd47adb9f5b4de -Author: Lukas Novotny -Date: Fri Feb 10 21:22:07 2006 +0000 - - Updated Czech translation. - - 2006-02-10 Lukas Novotny - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 1675 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 957 insertions(+), 722 deletions(-) - -commit 48dda00e810bb99d458435ac802db8e8a2cde279 -Author: Funda Wang -Date: Fri Feb 10 19:13:32 2006 +0000 - - Updated epiphany zh_CN translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 300 +++++++++++++++++++++++------------------------------------ - 2 files changed, 119 insertions(+), 185 deletions(-) - -commit 3ea2b0d029f79783dd899ba6e02ad8e57388f3d0 -Author: Christian Persch -Date: Fri Feb 10 19:01:18 2006 +0000 - - Use NS_LogInit()/NS_LogTerm(). - - 2006-02-10 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Use NS_LogInit()/NS_LogTerm(). - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 8 ++++++++ - 2 files changed, 14 insertions(+) - -commit 5cc42ee2238e9a7987abafb467a43970be268a02 -Author: Ignacio Casal Quinteiro -Date: Fri Feb 10 14:09:54 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 199 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 108 insertions(+), 95 deletions(-) - -commit a6c15fb7c0718216ea3950324fd6465f334d16dc -Author: Christian Persch -Date: Thu Feb 9 13:52:45 2006 +0000 - - Misc code cleanups: fewer gobject casts, disconnect handlers, save a few - - 2006-02-09 Christian Persch - - * src/bookmarks/ephy-bookmark-action-group.c: (node_changed_cb), - (node_added_cb), (node_removed_cb), (ephy_bookmark_group_new): - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_sync_smart_url), - (ephy_bookmark_action_sync_icon), (connect_proxy), - (ephy_bookmark_action_set_bookmark), - (ephy_bookmark_action_get_property), (ephy_bookmark_action_init), - (ephy_bookmark_action_dispose), (ephy_bookmark_action_class_init), - (ephy_bookmark_action_get_type): - * src/bookmarks/ephy-bookmark-action.h: - * src/bookmarks/ephy-bookmarks-ui.c: - (ephy_bookmarks_ui_attach_window): - * src/bookmarks/ephy-open-tabs-action.c: (activate_cb), - (node_added_cb), (node_removed_cb), (ephy_open_tabs_group_new), - (ephy_open_tabs_action_name): - * src/bookmarks/ephy-related-action.c: (node_changed), - (node_destroyed), (open_link), (ephy_related_action_new): - * src/bookmarks/ephy-topics-entry.c: - * src/bookmarks/ephy-topics-entry.h: - - Misc code cleanups: fewer gobject casts, disconnect handlers, - save a few strdups etc. - - ChangeLog | 25 +++++ - src/bookmarks/ephy-bookmark-action-group.c | 72 +++++++------ - src/bookmarks/ephy-bookmark-action.c | 156 ++++++++++++++++------------- - src/bookmarks/ephy-bookmark-action.h | 3 + - src/bookmarks/ephy-bookmarks-ui.c | 6 +- - src/bookmarks/ephy-open-tabs-action.c | 109 ++++++++++++-------- - src/bookmarks/ephy-related-action.c | 146 ++++++++++++++------------- - src/bookmarks/ephy-topics-entry.c | 1 + - src/bookmarks/ephy-topics-entry.h | 3 +- - 9 files changed, 307 insertions(+), 214 deletions(-) - -commit 119a3c3c65eee95efaa155ba06635f693e79ecfc -Author: Peter Harvey -Date: Thu Feb 9 10:33:15 2006 +0000 - - src/bookmarks/ephy-topics-entry.c - - 2006-02-09 Peter Harvey - - * src/bookmarks/ephy-topics-entry.c - - Add enter-to-auto-complete when there is just one possible - match. Will close dialog if no current key. Will do nothing - otherwise. - - ChangeLog | 8 +++++ - src/bookmarks/ephy-topics-entry.c | 74 +++++++++++++++++++++++++++++++-------- - 2 files changed, 67 insertions(+), 15 deletions(-) - -commit c269e21ef0117dedfa8de65405b2c9f58ed1ed14 -Author: Peter Harvey -Date: Thu Feb 9 10:30:46 2006 +0000 - - src/bookmarks/ephy-bookmarks.c - - 2006-02-09 Peter Harvey - - * src/bookmarks/ephy-bookmarks.c - - Fix problems with old hierarchical topics scheme. - - ChangeLog | 6 +++++ - src/bookmarks/ephy-bookmarks.c | 57 ++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 63 insertions(+) - -commit 16b0cbaf01e356007d3257ece00d407aa13138f7 -Author: Peter Harvey -Date: Thu Feb 9 10:29:24 2006 +0000 - - data/ui/epiphany-bookmark-editor-ui.xml - - 2006-02-09 Peter Harvey - - * data/ui/epiphany-bookmark-editor-ui.xml - * src/bookmarks/ephy-bookmarks-editor.c - - Restore the 'Show on Toolbar' functionality, implemented very - differently now. - - ChangeLog | 8 +++ - data/ui/epiphany-bookmark-editor-ui.xml | 70 +++++++++--------- - src/bookmarks/ephy-bookmarks-editor.c | 121 ++++++++++++++++++++++++++++++++ - 3 files changed, 166 insertions(+), 33 deletions(-) - -commit 05c6fc746dbf135d87b214d0f741bf533eb16b5b -Author: Jean-François Rameau -Date: Wed Feb 8 22:20:02 2006 +0000 - - Block popup with NULL url (javascript:window.open() for instance). but - - 2006-02-08 Jean-François Rameau - - * embed/mozilla/EphyBrowser.cpp: (HandleEvent): - * src/ephy-tab.c: (popups_manager_add),(popups_manager_show): - - Block popup with NULL url (javascript:window.open() for instance). - but don't show them when unblocking. - Bug #155009. - - ChangeLog | 9 +++++++++ - embed/mozilla/EphyBrowser.cpp | 15 +++++++++------ - src/ephy-tab.c | 17 ++++++++++------- - 3 files changed, 28 insertions(+), 13 deletions(-) - -commit 9ceb5eafd29a927d9333bec2fda3ea5e21f0ec72 -Author: Christian Persch -Date: Wed Feb 8 14:33:57 2006 +0000 - - Fix the xulrunner build. - - 2006-02-08 Christian Persch - - * m4/gecko.m4: - - Fix the xulrunner build. - - ChangeLog | 6 ++++++ - m4/gecko.m4 | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit bfc8ec21731da108340a66d5137da6dc70d55607 -Author: Christian Persch -Date: Wed Feb 8 14:26:47 2006 +0000 - - Also build with ff trunk, by explicitly linking with -lxul. - - 2006-02-08 Christian Persch - - * configure.ac: - * m4/gecko.m4: - * src/Makefile.am: - - Also build with ff trunk, by explicitly linking with -lxul. - - ChangeLog | 8 ++++++++ - configure.ac | 1 + - m4/gecko.m4 | 8 ++++++-- - src/Makefile.am | 1 + - 4 files changed, 16 insertions(+), 2 deletions(-) - -commit 91314eee710ec152f392d316547a2eb0a3a4f6f4 -Author: Clytie Siddall -Date: Wed Feb 8 10:44:32 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 220 +++++++++++++++-------------------------------------------- - 2 files changed, 59 insertions(+), 165 deletions(-) - -commit ff9a45651a8928f366b68a7325465871bdc5ad5f -Author: Crispin Flowerday -Date: Tue Feb 7 23:02:35 2006 +0000 - - Add an 'enabled' flag in the EphyExtensionInfo struct to track whether - - 2006-02-07 Crispin Flowerday - - * src/ephy-extensions-manager.c: (load_extension), - (unload_extension), (sync_loaded_extensions): - * src/ephy-extensions-manager.h: - - Add an 'enabled' flag in the EphyExtensionInfo struct to - track whether gconf says it should be loaded. The - 'active' flag is whether it is actually loaded. - - ChangeLog | 10 ++++++++++ - src/ephy-extensions-manager.c | 20 ++++++++++++++++---- - src/ephy-extensions-manager.h | 3 ++- - 3 files changed, 28 insertions(+), 5 deletions(-) - -commit 6b21e23b69422d176a2405a5f834181e1e106c0e -Author: Christian Persch -Date: Tue Feb 7 19:46:31 2006 +0000 - - Remove workaround for broken profile now that - - 2006-02-07 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Remove workaround for broken profile now that - https://bugzilla.mozilla.org/show_bug.cgi?id=326013 - is fixed. - - ChangeLog | 8 ++++++++ - embed/mozilla/mozilla-embed-single.cpp | 9 +++------ - 2 files changed, 11 insertions(+), 6 deletions(-) - -commit a56681d65ba99f7f3d56ebe1ac25f11123eb11f4 -Author: Francisco Javier F. Serrador -Date: Tue Feb 7 19:07:45 2006 +0000 - - Updated Spanish translation. - - 2006-02-07 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 218 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 105 insertions(+), 117 deletions(-) - -commit 00c4fe8b478f51708e98cb258543b14498b883c0 -Author: Christian Persch -Date: Tue Feb 7 14:44:47 2006 +0000 - - Save tons of g_type_from_name calls. - - 2006-02-07 Christian Persch - - * lib/ephy-node.c: (ephy_node_new_from_xml): - - Save tons of g_type_from_name calls. - - ChangeLog | 6 +++++ - lib/ephy-node.c | 68 ++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 44 insertions(+), 30 deletions(-) - -commit 606ece5007615a042b512a61463b4232a9e6f553 -Author: Priit Laes -Date: Tue Feb 7 08:07:19 2006 +0000 - - Translation updated by Ivar Smolin. - - 2006-02-07 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 1972 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 1192 insertions(+), 784 deletions(-) - -commit 2ff743cf77fe7b2cc3a9da8bf7ef74918f266e43 -Author: Ilkka Tuohela -Date: Tue Feb 7 05:39:39 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 517 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 249 insertions(+), 272 deletions(-) - -commit a8f6314cab310543ead2f0e48cd936996425dd6b -Author: Christian Persch -Date: Mon Feb 6 18:37:18 2006 +0000 - - Fix handling of non-ascii extra arguments. - - 2006-02-06 Christian Persch - - * src/ephy-main.c: (main): - - Fix handling of non-ascii extra arguments. - - ChangeLog | 6 ++++++ - src/ephy-main.c | 41 +++++++++++++++++++++++++++++++++-------- - 2 files changed, 39 insertions(+), 8 deletions(-) - -commit f69428538cf9049e4bc6dab1106e036c0c3c4f8c -Author: Christian Persch -Date: Mon Feb 6 13:59:38 2006 +0000 - - More xulrunner fixes. - - 2006-02-06 Christian Persch - - * m4/gecko.m4: - - More xulrunner fixes. - - ChangeLog | 6 ++++++ - m4/gecko.m4 | 4 ++++ - 2 files changed, 10 insertions(+) - -commit 931a5b0d35e13d0af0fa388e52a56caf513bb581 -Author: Christian Persch -Date: Mon Feb 6 13:38:02 2006 +0000 - - Fix opening of local files. Bug #330104. - - 2006-02-06 Christian Persch - - * src/ephy-main.c: (open_urls), (queue_commands), (main): - - Fix opening of local files. Bug #330104. - - ChangeLog | 6 ++++++ - src/ephy-main.c | 64 +++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 41 insertions(+), 29 deletions(-) - -commit 7caf37cc9de88a482c9c99572019d6ce6f17308a -Author: Christian Persch -Date: Mon Feb 6 10:52:24 2006 +0000 - - Go back to AM_GLIB_GNU_GETTEXT for now, until intltool 0.34.2 is more - - 2006-02-06 Christian Persch - - * configure.ac: - - Go back to AM_GLIB_GNU_GETTEXT for now, until - intltool 0.34.2 is more widespread. - - ChangeLog | 7 +++++++ - configure.ac | 17 +++++++++++------ - 2 files changed, 18 insertions(+), 6 deletions(-) - -commit 42b80ffca206f2032630359f01b397b49f9fd77b -Author: Ignacio Casal Quinteiro -Date: Mon Feb 6 10:04:54 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 +++ - po/gl.po | 97 +++++++----------------------------------------------------- - 2 files changed, 14 insertions(+), 87 deletions(-) - -commit 125d68d56f969d463beb6ca93751feeff7bb5952 -Author: Alexander Shopov -Date: Mon Feb 6 09:30:39 2006 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2006-02-06 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 1090 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 516 insertions(+), 579 deletions(-) - -commit 1dc7997c99df4990716490b4e56a86525e954a19 -Author: Ankitkumar Rameshchandra Patel -Date: Mon Feb 6 02:35:04 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 140 ++++++++++++++++++++++++----------------------------------- - 2 files changed, 61 insertions(+), 83 deletions(-) - -commit bf1474f377da8ddddc7bf0b0398a780ff703e0ab -Author: Christian Persch -Date: Mon Feb 6 00:49:55 2006 +0000 - - Shut up - - m4/.cvsignore | 4 +--- - 1 file changed, 1 insertion(+), 3 deletions(-) - -commit 894be17f63c870bb0955a9e4b4de01ed0d6e33a2 -Author: Christian Persch -Date: Mon Feb 6 00:27:23 2006 +0000 - - Fix quoting. - - 2006-02-06 Christian Persch - - * m4/gecko.m4: - - Fix quoting. - - ChangeLog | 6 ++++++ - m4/gecko.m4 | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 391196385a1c5702d93697eace05fc416ae93f02 -Author: Christian Persch -Date: Mon Feb 6 00:16:35 2006 +0000 - - Fix xulrunner detection logic. - - 2006-02-06 Christian Persch - - * m4/gecko.m4: - - Fix xulrunner detection logic. - - * configure.ac: - A po/Makevars: - * src/Makefile.am: - * doc/reference/Makefile.am: - - Remove AM_GLIB_GNU_GETTEXT, use plain AM_GNU_GETTEXT. - - * data/glade/Makefile.am: - - Fix distcheck with certs manager disabled. - - ChangeLog | 17 ++++++++++++++ - configure.ac | 60 +++++++++++++++++++++++------------------------ - data/glade/Makefile.am | 5 ++-- - doc/reference/Makefile.am | 7 +++--- - m4/gecko.m4 | 23 +++++++++++------- - po/Makevars | 41 ++++++++++++++++++++++++++++++++ - src/Makefile.am | 5 +++- - 7 files changed, 113 insertions(+), 45 deletions(-) - -commit 2edc02176220d96d6386c500afaf4a680dc3a3b9 -Author: Christian Persch -Date: Sun Feb 5 22:42:45 2006 +0000 - - Changes to support xulrunner trunk (gecko 1.9). - - 2006-02-05 Christian Persch - - * m4/gecko.m4: - * configure.ac: - * embed/mozilla/Makefile.am: - - Changes to support xulrunner trunk (gecko 1.9). - - * embed/mozilla/mozilla-embed-single.cpp: - - Go back to continuing after failed GetPassword; - fixes getting the password list in case one item - is corrupted. - - ChangeLog | 14 ++++++++++++++ - configure.ac | 2 +- - embed/mozilla/Makefile.am | 1 + - embed/mozilla/mozilla-embed-single.cpp | 30 ++++++++++-------------------- - m4/gecko.m4 | 15 +++++++++------ - 5 files changed, 35 insertions(+), 27 deletions(-) - -commit 0ce928e64a5739138599f82b69a4e43b2634df95 -Author: Francisco Javier F. Serrador -Date: Sun Feb 5 21:23:56 2006 +0000 - - Updated Spanish translation. - - 2006-02-05 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 265 +++++++++-------------------------------------------------- - 2 files changed, 43 insertions(+), 226 deletions(-) - -commit ff613b57b38921916269063f042e266b36d7d6d4 -Author: Christian Persch -Date: Sun Feb 5 20:50:17 2006 +0000 - - Show the backend in the about box. - - 2006-02-05 Christian Persch - - * src/window-commands.c: - - Show the backend in the about box. - - ChangeLog | 6 ++++++ - src/window-commands.c | 11 ++++++++++- - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit 97265c7fbcc1744b27b56e43580fe5c9ad41c26a -Author: Christian Persch -Date: Sun Feb 5 19:25:49 2006 +0000 - - Only use the major version in the user agent string. - - 2006-02-05 Christian Persch - - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - - Only use the major version in the user agent string. - - ChangeLog | 7 +++++++ - embed/mozilla/Makefile.am | 1 + - embed/mozilla/mozilla-embed-single.cpp | 6 +++--- - 3 files changed, 11 insertions(+), 3 deletions(-) - -commit 8280cf3ebd50c607bcd0ddda57aed497cb2a4748 -Author: Crispin Flowerday -Date: Sun Feb 5 13:28:07 2006 +0000 - - Disable blink tags - - 2006-02-05 Crispin Flowerday - - * data/default-prefs-common.js: - - Disable blink tags - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 3 +++ - 2 files changed, 9 insertions(+) - -commit 0fdcd2d14b66df536b0cb7b82985ad33336ae76b -Author: Ignacio Casal Quinteiro -Date: Sun Feb 5 12:04:46 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/gl.po | 381 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 194 insertions(+), 191 deletions(-) - -commit cf46f9dcf291c170ab4969a51cdd9425536d0ad3 -Author: Žygimantas Beručka -Date: Sun Feb 5 08:28:37 2006 +0000 - - Updated Lithuanian translation. - - 2006-02-05 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 1208 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 607 insertions(+), 605 deletions(-) - -commit 7fe71ea76b5f90cfb2aa42b776e6e7a75282f64a -Author: Funda Wang -Date: Sun Feb 5 04:05:56 2006 +0000 - - Updated epiphany zh_CN translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 801 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 424 insertions(+), 381 deletions(-) - -commit b5c8ce2ab2ec32e4c9a55e4f06f0b4fb960fae89 -Author: Francisco Javier F. Serrador -Date: Sat Feb 4 14:24:15 2006 +0000 - - Updated Spanish translation. - - 2006-02-04 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 403 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 217 insertions(+), 190 deletions(-) - -commit 30269a7fcdcd0a0eb82535f1af96df5059e0ba43 -Author: Peter Harvey -Date: Sat Feb 4 13:57:43 2006 +0000 - - lib/ephy-state.h lib/ephy-state.c src/epiphany.defs - - 2006-02-04 Peter Harvey - - * lib/ephy-state.h - * lib/ephy-state.c - * src/epiphany.defs - * src/bookmarks/ephy-bookmark-properties.c - - Combined very similar functions into one. - Made the 'similar' bookmark count update immediately at start. - - ChangeLog | 10 ++++++ - lib/ephy-state.c | 62 ++++++++------------------------ - lib/ephy-state.h | 6 +--- - src/bookmarks/ephy-bookmark-properties.c | 4 +-- - src/epiphany.defs | 2 +- - 5 files changed, 29 insertions(+), 55 deletions(-) - -commit 1bdd082560bc963b535935d9e0bf06e19cd08d17 -Author: Reinout van Schouwen -Date: Sat Feb 4 13:54:40 2006 +0000 - - Updated Dutch translation - - 2006-02-04 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - po/ChangeLog | 4 + - po/nl.po | 429 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 227 insertions(+), 206 deletions(-) - -commit 810a49938c11129d6a255d3ddaccdf8c451a7de1 -Author: Peter Harvey -Date: Sat Feb 4 12:27:14 2006 +0000 - - lib/ephy-state.h lib/ephy-state.c src/ephy-shell.c - - 2006-02-04 Peter Harvey - - * lib/ephy-state.h - * lib/ephy-state.c - * src/ephy-shell.c - - Forgotten files from previous two commits. - - lib/ephy-state.h | 4 ++++ - 1 file changed, 4 insertions(+) - -commit f1269bf3675a0635b6cb26b2edbab080c1baccb1 -Author: Hendrik Richter -Date: Sat Feb 4 11:09:08 2006 +0000 - - Updated German translation. - - 2006-02-04 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 419 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 223 insertions(+), 200 deletions(-) - -commit e976c810a97994d2279cc1dea56cea61d75bdce7 -Author: Peter Harvey -Date: Sat Feb 4 10:47:27 2006 +0000 - - lib/ephy-state.h lib/ephy-state.c src/ephy-shell.c - - 2006-02-04 Peter Harvey - - * lib/ephy-state.h - * lib/ephy-state.c - * src/ephy-shell.c - - Forgotten files from previous two commits. - - ChangeLog | 8 ++++++++ - lib/ephy-state.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- - src/ephy-shell.c | 2 +- - 3 files changed, 67 insertions(+), 5 deletions(-) - -commit aa0171e76962bcdc240f3a0b3b25b15855803b7b -Author: Peter Harvey -Date: Sat Feb 4 10:43:25 2006 +0000 - - lib/egg/egg-editable-toolbar.c lib/egg/egg-toolbar-editor.c - - 2006-02-04 Peter Harvey - - * lib/egg/egg-editable-toolbar.c - * lib/egg/egg-toolbar-editor.c - * lib/egg/egg-toolbars-model.c - * lib/egg/egg-toolbars-model.h - * src/bookmarks/ephy-bookmark-factory-action.c - * src/bookmarks/ephy-topic-factory-action.c - * src/ephy-toolbars-model.c - * src/epiphany.defs - - Improve the system for testing whether an item has already - been used on the toolbar. - - ChangeLog | 14 +++ - lib/egg/egg-editable-toolbar.c | 48 ++++++++- - lib/egg/egg-toolbar-editor.c | 8 +- - lib/egg/egg-toolbars-model.c | 146 ++++++++++++++++++++++----- - lib/egg/egg-toolbars-model.h | 25 +++-- - src/bookmarks/ephy-bookmark-factory-action.c | 5 +- - src/bookmarks/ephy-topic-factory-action.c | 5 +- - src/ephy-toolbars-model.c | 34 ++----- - src/epiphany.defs | 29 ++++-- - 9 files changed, 232 insertions(+), 82 deletions(-) - -commit be7c992ff6b3a05d6facf24e42826fe14a94ad89 -Author: Peter Harvey -Date: Sat Feb 4 09:26:09 2006 +0000 - - src/bookmarks/ephy-bookmark-properties.c src/bookmarks/ephy-bookmarks-ui.c - - 2006-02-04 Peter Harvey - - * src/bookmarks/ephy-bookmark-properties.c - * src/bookmarks/ephy-bookmarks-ui.c - * src/bookmarks/ephy-bookmarks-ui.h - * src/ephy-history-window.c - * src/popup-commands.c - * src/window-commands.c - - Restore transient status to the properties dialog when - creating a new bookmark. Leave the topics entry sensitive, - and store the expanded state of the list. Make the similar - button a toggle button. Removed unused function to add topic. - - ChangeLog | 14 ++ - src/bookmarks/ephy-bookmark-properties.c | 122 ++++++++++++----- - src/bookmarks/ephy-bookmarks-ui.c | 217 +++---------------------------- - src/bookmarks/ephy-bookmarks-ui.h | 6 +- - src/ephy-history-window.c | 2 +- - src/popup-commands.c | 2 +- - src/window-commands.c | 3 +- - 7 files changed, 129 insertions(+), 237 deletions(-) - -commit f0a9cca06cffa42a88ef20f80004ed99609efee1 -Author: Peter Harvey -Date: Sat Feb 4 09:16:25 2006 +0000 - - src/bookmarks/ephy-bookmarks.c - - 2006-02-04 Peter Harvey - - * src/bookmarks/ephy-bookmarks.c - - Improve code quality of function to determine similar bookmarks. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 37 +++++++++++++++++-------------------- - 2 files changed, 23 insertions(+), 20 deletions(-) - -commit 7f8ddd100dc991a9106674571fb9c5a6ca1845cb -Author: Theppitak Karoonboonyanan -Date: Sat Feb 4 02:43:42 2006 +0000 - - Updated Thai translation. - - 2006-02-04 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 297 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 164 insertions(+), 137 deletions(-) - -commit 224c497ea0ea71a25388133f3e433ac89316531f -Author: Christian Persch -Date: Fri Feb 3 21:03:47 2006 +0000 - - Free the option context on error too, and don't duplicate the - - 2006-02-03 Christian Persch - - * src/ephy-main.c: (main): - - Free the option context on error too, and don't duplicate - the private-instance option. - - ChangeLog | 7 +++++++ - src/ephy-main.c | 6 +++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit f95ec1ca17aab420d465b653a1a849ade28217d8 -Author: Laurent Dhima -Date: Fri Feb 3 16:40:03 2006 +0000 - - Updated Albanian translation. - - 2006-02-03 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 338 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 187 insertions(+), 155 deletions(-) - -commit 0f4a008b75c01ca857bd1bf29a4ce6428b70b6c0 -Author: Christian Persch -Date: Fri Feb 3 14:55:07 2006 +0000 - - Don't make the nonblocking alert modal! - - 2006-02-03 Christian Persch - - * embed/mozilla/EphyPromptService.cpp: - - Don't make the nonblocking alert modal! - - ChangeLog | 6 ++++++ - embed/mozilla/EphyPromptService.cpp | 26 ++++++++++---------------- - 2 files changed, 16 insertions(+), 16 deletions(-) - -commit a1c576b83ce096538574b16a968c867d0cabc566 -Author: Jean-François Rameau -Date: Fri Feb 3 13:35:53 2006 +0000 - - Fix compilation against trunk + some typos. - - 2006-02-03 Jean-François Rameau - - * embed/mozilla/EphyPromptService.h: - * embed/mozilla/EphyPromptService.cpp: (ShowNonBlockingAlert): - * embed/mozilla/AutoJSContextStack.cpp: - - Fix compilation against trunk + some typos. - - ChangeLog | 8 ++++++++ - embed/mozilla/AutoJSContextStack.cpp | 1 - - embed/mozilla/EphyPromptService.cpp | 2 +- - embed/mozilla/EphyPromptService.h | 2 +- - 4 files changed, 10 insertions(+), 3 deletions(-) - -commit 11fd2b75f2afdbcc0b61edd801dd0f22b12e09c3 -Author: Christian Persch -Date: Fri Feb 3 12:29:24 2006 +0000 - - Fix non-debug builds. - - 2006-02-03 Christian Persch - - * src/ephy-main.c: - - Fix non-debug builds. - - ChangeLog | 6 ++++++ - src/ephy-main.c | 9 +++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit 6fa30a211118e8fac316541b1886c8426c840235 -Author: Ankitkumar Rameshchandra Patel -Date: Fri Feb 3 10:55:37 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 274 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 154 insertions(+), 124 deletions(-) - -commit aafb39850d0594712c8ee5396729edc6a92eb06b -Author: Clytie Siddall -Date: Fri Feb 3 07:44:40 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 272 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 152 insertions(+), 124 deletions(-) - -commit 18d197f20f16b525b861d2dab67fcce2074fbfc5 -Author: Christian Persch -Date: Thu Feb 2 23:03:49 2006 +0000 - - Only claim the DBUS name when not running as private instance. - - 2006-02-03 Christian Persch - - * src/ephy-dbus.c: (ephy_dbus_connect_to_session_bus), - (ephy_dbus_get_property), (ephy_dbus_set_property), - (ephy_dbus_class_init), (_ephy_dbus_startup): - * src/ephy-dbus.h: - * src/ephy-main.c: (main): - - Only claim the DBUS name when not running as private instance. - - ChangeLog | 10 ++++++++++ - src/ephy-dbus.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- - src/ephy-dbus.h | 3 ++- - src/ephy-main.c | 10 +++++++--- - 4 files changed, 72 insertions(+), 7 deletions(-) - -commit b5d229937e31e9cec6cf599ae816e22888237aa0 -Author: Christian Persch -Date: Thu Feb 2 22:25:18 2006 +0000 - - Helper class that pushes a null JS context on the stack, and pops it in - - 2006-02-02 Christian Persch - - * embed/mozilla/Makefile.am: - * embed/mozilla/AutoJSContextStack.cpp: - * embed/mozilla/AutoJSContextStack.h: - - Helper class that pushes a null JS context on the stack, - and pops it in the destructor. - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyPromptService.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - * embed/mozilla/PrintingPromptService.cpp: - - Push a null JS context on the stack when we run a recursive - mainloop. Fixes the epiphany equivalend of camino bug - https://bugzilla.mozilla.org/show_bug.cgi?id=179307. - - ChangeLog | 28 +++++++++++++++ - embed/mozilla/AutoJSContextStack.cpp | 48 ++++++++++++++++++++++++++ - embed/mozilla/AutoJSContextStack.h | 41 ++++++++++++++++++++++ - embed/mozilla/ContentHandler.cpp | 6 ++++ - embed/mozilla/EphyPromptService.cpp | 6 ++++ - embed/mozilla/FilePicker.cpp | 6 ++++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 6 ++++ - embed/mozilla/GtkNSSDialogs.cpp | 27 ++++++++++++++- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 5 +++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 7 +++- - embed/mozilla/Makefile.am | 2 ++ - embed/mozilla/PrintingPromptService.cpp | 18 ++++++++-- - 12 files changed, 195 insertions(+), 5 deletions(-) - -commit fd6923b630ae9629a99fa527baabb47d4454913a -Author: Christian Persch -Date: Thu Feb 2 22:23:29 2006 +0000 - - Add GECKO_CHECK_HEADERS, wrapping AC_CHECK_HEADERS. - - 2006-02-02 Christian Persch - - * m4/gecko.m4: - - Add GECKO_CHECK_HEADERS, wrapping AC_CHECK_HEADERS. - - * configure.ac: - - Simplify some header checks with GECKO_CHECK_HEADERS. - Check for nsINonBlockingAlertService.h. - - * embed/mozilla/EphyPromptService.cpp: - * embed/mozilla/EphyPromptService.h: - * embed/mozilla/MozRegisterComponents.cpp: - - Implement nsINonBlockingAlertService. - - ChangeLog | 6 ------ - configure.ac | 26 +++++++------------------- - 2 files changed, 7 insertions(+), 25 deletions(-) - -commit ee0fbb04172977f5c8076f4a99658c35eef645d4 -Author: Christian Persch -Date: Thu Feb 2 18:33:49 2006 +0000 - - Add GECKO_XPIDL to check for xpidl compiler and include directory. - - 2006-02-02 Christian Persch - - * m4/gecko.m4: - - Add GECKO_XPIDL to check for xpidl compiler and include directory. - - ChangeLog | 6 ++++++ - m4/gecko.m4 | 42 ++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 48 insertions(+) - -commit b311ff4ba10c572412ff812806a9e53c8928500c -Author: Christian Persch -Date: Thu Feb 2 17:56:28 2006 +0000 - - Add GECKO_CHECK_HEADERS, wrapping AC_CHECK_HEADERS. - - 2006-02-02 Christian Persch - - * m4/gecko.m4: - - Add GECKO_CHECK_HEADERS, wrapping AC_CHECK_HEADERS. - - * configure.ac: - - Simplify some header checks with GECKO_CHECK_HEADERS. - Check for nsINonBlockingAlertService.h. - - * embed/mozilla/EphyPromptService.cpp: - * embed/mozilla/EphyPromptService.h: - * embed/mozilla/MozRegisterComponents.cpp: - - Implement nsINonBlockingAlertService. - - ChangeLog | 17 ++++++++++ - embed/mozilla/EphyPromptService.cpp | 58 ++++++++++++++++++++++++++++++++- - embed/mozilla/EphyPromptService.h | 12 ++++++- - embed/mozilla/MozRegisterComponents.cpp | 8 +++++ - m4/gecko.m4 | 16 +++++---- - 5 files changed, 103 insertions(+), 8 deletions(-) - -commit 02459287792457cac98e02641a7d2aaad303b88d -Author: Christian Persch -Date: Thu Feb 2 17:27:41 2006 +0000 - - On session logout, check if there are downloads pending (since they're not - - 2006-02-02 Christian Persch - - * embed/downloader-view.c: - * embed/downloader-view.h: - * embed/ephy-embed-shell.c: - (ephy_embed_shell_get_downloader_view_nocreate): - * embed/ephy-embed-shell.h: - * lib/ephy-gui.c: (ephy_gui_message_dialog_get_content_box): - * lib/ephy-gui.h: - * src/ephy-session.c: - (confirm_shutdown_dialog_update_timeout_label), - (confirm_shutdown_dialog_tick_cb), - (confirm_shutdown_dialog_response_cb), - (confirm_shutdown_dialog_accept_cb), - (confirm_shutdown_dialog_weak_ref_cb), (confirm_shutdown_cb), - (save_yourself_cb): - - On session logout, check if there are downloads pending (since - they're not resumable, bug #128048). #if 0'd for now. - - ChangeLog | 20 +++++ - embed/downloader-view.c | 2 +- - embed/downloader-view.h | 10 +-- - embed/ephy-embed-shell.c | 8 ++ - embed/ephy-embed-shell.h | 2 + - lib/ephy-gui.c | 24 ++++++ - lib/ephy-gui.h | 2 + - src/ephy-session.c | 207 ++++++++++++++++++++++++++++++++++++++++++++++- - 8 files changed, 268 insertions(+), 7 deletions(-) - -commit 2d89547a741b0b2991c36e4ae86a9cd7cc36985c -Author: Jean-François Rameau -Date: Thu Feb 2 17:11:16 2006 +0000 - - Fix some memory leaks. - - 2006-02-02 Jean-François Rameau - - * lib/egg/egg-editable-toolbar.c: (toolbar_visibility_refresh): - * src/bookmarks/ephy-topics-entry.c: (update_database): - - Fix some memory leaks. - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 14 +++++++++++--- - src/bookmarks/ephy-topics-entry.c | 2 ++ - 3 files changed, 20 insertions(+), 3 deletions(-) - -commit 1300f32c7260ec273057b631e9ab497501eb7e92 -Author: Hendrik Richter -Date: Thu Feb 2 16:47:13 2006 +0000 - - Updated German translation. - - 2006-02-02 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 1310 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 787 insertions(+), 527 deletions(-) - -commit 42396674cbe534a6e5d0ca0bf232872179a306a2 -Author: Peter Harvey -Date: Thu Feb 2 14:01:38 2006 +0000 - - src/bookmarks/ephy-bookmark-action.c - - 2006-02-02 Peter Harvey - - * src/bookmarks/ephy-bookmark-action.c - - Allow bookmarks on the toolbar to be dragged. - - * src/bookmarks/ephy-topic-action.c - - Remove redundant function call. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmark-action.c | 25 +++++++++++++++++++++++++ - src/bookmarks/ephy-topic-action.c | 1 - - 3 files changed, 35 insertions(+), 1 deletion(-) - -commit 4d8b2c6114da0d8b629215a2ca690411d1d71949 -Author: Christian Persch -Date: Thu Feb 2 13:31:32 2006 +0000 - - Queue commands received from the main and remote instances, and process - - 2006-02-02 Christian Persch - - * src/ephy-session.c: (save_yourself_cb), (die_cb), - (session_command_free), (session_command_find), - (resume_dialog_response_cb), (resume_dialog_weak_ref_cb), - (session_command_autoresume), - (session_command_open_bookmarks_editor), - (session_command_open_uris), (session_command_dispatch), - (session_command_queue_next), (session_command_queue_clear), - (ephy_session_init), (ephy_session_dispose), - (ephy_session_finalize), (ephy_session_close), (ephy_session_load), - (ephy_session_get_active_window), (ephy_session_queue_command): - * src/ephy-session.h: - * src/ephy-main.c: (unref_proxy_reply_cb), (open_urls), - (call_dbus_proxy), (queue_commands), (main): - - Queue commands received from the main and remote instances, - and process them after autoresume has completed. Bug #328286. - - * data/epiphany-service.xml: - * lib/ephy-file-helpers.c: (ephy_file_helpers_init): - * lib/ephy-file-helpers.h: - * src/ephy-activation.c: (session_queue_command), - (ephy_activation_load_uri_list), (ephy_activation_load_session), - (ephy_activation_open_bookmarks_editor): - * src/ephy-activation.h: - * src/ephy-dbus.c: - * src/ephy-dbus.h: - * src/epiphany.defs: - - ChangeLog | 32 +++ - data/epiphany-service.xml | 15 +- - lib/ephy-file-helpers.c | 12 +- - lib/ephy-file-helpers.h | 4 +- - src/ephy-activation.c | 119 +++------ - src/ephy-activation.h | 2 +- - src/ephy-dbus.c | 5 + - src/ephy-dbus.h | 5 - - src/ephy-main.c | 264 +++++++++----------- - src/ephy-session.c | 622 ++++++++++++++++++++++++++++++++++++++-------- - src/ephy-session.h | 25 +- - src/epiphany.defs | 9 - - 12 files changed, 742 insertions(+), 372 deletions(-) - -commit cbecc0e54beb04ea9b2094058331237f5362ff48 -Author: Laurent Dhima -Date: Thu Feb 2 11:18:17 2006 +0000 - - Updated Albanian translation. - - 2006-02-02 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 2242 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1249 insertions(+), 997 deletions(-) - -commit 256ef024e275dc7aa56c5b93d4c387b9ba12746c -Author: Peter Harvey -Date: Wed Feb 1 23:03:27 2006 +0000 - - lib/egg/egg-editable-toolbar.c - - 2006-01-31 Peter Harvey - - * lib/egg/egg-editable-toolbar.c - - Add tooltips to toolitems again (reverses a regression). - Use _forall instead of _foreach when connecting signals, - to make sure that widgets like Zoom get a right-click menu. - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 22 +++++++++++++++++++--- - 2 files changed, 27 insertions(+), 3 deletions(-) - -commit 1a64c9089d114a6d5ceab206798bd6ef885f812e -Author: Christian Persch -Date: Wed Feb 1 14:06:54 2006 +0000 - - Use GTK_STOCK_DIALOG_AUTHENTICATION. Bug #329438. - - 2006-02-01 Christian Persch - - * embed/mozilla/EphyPromptService.cpp: - - Use GTK_STOCK_DIALOG_AUTHENTICATION. Bug #329438. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyPromptService.cpp | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit fd54c2664fab9b1b585ab3924252bde29577ec11 -Author: Ignacio Casal Quinteiro -Date: Wed Feb 1 10:13:31 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/gl.po | 478 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 264 insertions(+), 218 deletions(-) - -commit f43a8cc6c43046867128e251d90d9d49470e0884 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Feb 1 07:10:21 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 473 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 249 insertions(+), 228 deletions(-) - -commit 0a88fc66bebbd3e0513e2a6d2a5fdf9b3de77982 -Author: Clytie Siddall -Date: Wed Feb 1 06:02:15 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 481 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 251 insertions(+), 234 deletions(-) - -commit 45dc53bc07c6ea6c044f0a73af54f86fb9e6d8ad -Author: Adam Weinberger -Date: Wed Feb 1 01:31:16 2006 +0000 - - Updated Canadian English translation. - - - 2006-01-31 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 585 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 309 insertions(+), 280 deletions(-) - -commit 788194b57c18747f0e9e5720cc5858b822e7cf25 -Author: Reinout van Schouwen -Date: Tue Jan 31 23:35:31 2006 +0000 - - Another tiny fix :-/ - - 2006-02-01 Reinout van Schouwen - - * nl.po : Another tiny fix :-/ - - po/nl.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7cdfc9a56d52b6848bcbacb99fe5715626d20548 -Author: Reinout van Schouwen -Date: Tue Jan 31 23:32:36 2006 +0000 - - Tiny accelerator fix - - 2006-02-01 Reinout van Schouwen - - * nl.po: Tiny accelerator fix - - po/nl.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 9a59acd2697761341fa1c249ffc2fd0f6ddca57d -Author: Reinout van Schouwen -Date: Tue Jan 31 23:30:08 2006 +0000 - - Updated Dutch translation - - 2006-02-01 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - po/ChangeLog | 4 + - po/nl.po | 562 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 320 insertions(+), 246 deletions(-) - -commit 97f88e3bb6d66dabe61c8ddaffedb940d5281aeb -Author: Christian Persch -Date: Tue Jan 31 20:24:39 2006 +0000 - - Fix link action group creating to really use the given name! - - 2006-01-31 Christian Persch - - * src/ephy-link-action.c: (ephy_link_action_group_new): - * src/ephy-link-action.h: - - Fix link action group creating to really use the given name! - - ChangeLog | 7 +++++++ - src/ephy-link-action.c | 9 +++++---- - src/ephy-link-action.h | 4 ++-- - 3 files changed, 14 insertions(+), 6 deletions(-) - -commit 0541bcb1e3d64c8ebbd9d514641917def2515f97 -Author: Christian Persch -Date: Tue Jan 31 20:03:38 2006 +0000 - - Change the DBUS interface to sending all the uris at one as string array. - - 2006-01-31 Christian Persch - - * data/epiphany-service.xml: - * src/ephy-activation.c: (ephy_activation_load_uris): - * src/ephy-activation.h: - * src/ephy-main.c: (unref_proxy_reply_cb), (open_urls): - - Change the DBUS interface to sending all the uris at one - as string array. - - ChangeLog | 10 ++++++++ - data/epiphany-service.xml | 4 +-- - src/ephy-activation.c | 65 ++++++++++++++++++++++++++++++++--------------- - src/ephy-activation.h | 4 +-- - src/ephy-main.c | 55 +++++++++++++++------------------------ - 5 files changed, 78 insertions(+), 60 deletions(-) - -commit f6afe77cb705b9ba2f356ed3d44bdc0201887e4f -Author: Ilkka Tuohela -Date: Tue Jan 31 19:42:13 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 1041 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 573 insertions(+), 472 deletions(-) - -commit dd621442b77f8a973c5e206ee7be5b5b7a495322 -Author: Peter Harvey -Date: Tue Jan 31 13:27:13 2006 +0000 - - lib/egg/egg-toolbars-model.c lib/egg/egg-toolbars-model.h - - 2006-01-31 Peter Harvey - - * lib/egg/egg-toolbars-model.c - * lib/egg/egg-toolbars-model.h - - Added a useful function to remove all instances of - a named action from the toolbars. - - ChangeLog | 8 ++++++ - lib/egg/egg-toolbars-model.c | 63 ++++++++++++++++++++++++++++++++++++++++++++ - lib/egg/egg-toolbars-model.h | 2 ++ - 3 files changed, 73 insertions(+) - -commit b7444805e19b872807b13af4e78c63bea10302cd -Author: Francisco Javier F. Serrador -Date: Tue Jan 31 12:50:41 2006 +0000 - - Updated Spanish translation. - - 2006-01-31 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 490 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 276 insertions(+), 218 deletions(-) - -commit b39ba37d43e8904c44232c7da57379eff26a9add -Author: Theppitak Karoonboonyanan -Date: Tue Jan 31 04:54:17 2006 +0000 - - Updated Thai translation. - - 2006-01-31 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 500 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 286 insertions(+), 218 deletions(-) - -commit d12b80495a1b66530ed998f163354aaaadf866cc -Author: Clytie Siddall -Date: Tue Jan 31 04:31:06 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 2567 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1279 insertions(+), 1292 deletions(-) - -commit 0b6b922b3c1cbfaeccc21b79a8b3e881ab9b0e3d -Author: Ankitkumar Rameshchandra Patel -Date: Tue Jan 31 04:21:18 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 137 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 90 insertions(+), 51 deletions(-) - -commit 24e121e8a9c3cf3ec30c6a2c09e66d9df666b42a -Author: Slobodan D. Sredojevic -Date: Tue Jan 31 03:47:13 2006 +0000 - - Updated Serbian translation - - 2006-01-31 Slobodan D. Sredojevic - - * sr.po, sr@Latn.po: Updated Serbian translation - - po/ChangeLog | 4 + - po/sr.po | 608 ++++++++++++++++++++++++++++++++++------------------------ - po/sr@Latn.po | 608 ++++++++++++++++++++++++++++++++++------------------------ - 3 files changed, 728 insertions(+), 492 deletions(-) - -commit ef33aded167c34305aa6b9466238dfd90ca7c89c -Author: Christian Persch -Date: Mon Jan 30 23:27:39 2006 +0000 - - Post-release version bump. - - 2006-01-31 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 60869a46fb03b794886a883741094383e9d20fa4 -Author: Christian Persch -Date: Mon Jan 30 23:24:10 2006 +0000 - - === Release 1.9.6 === - - 2006-01-31 Christian Persch - - === Release 1.9.6 === - - * NEWS: - * configure.ac: - * doc/reference/tmpl/ephy-embed.sgml: - * doc/reference/tmpl/ephy-permission-manager.sgml: - * doc/reference/tmpl/ephy-shell.sgml: - * doc/reference/tmpl/epiphany-unused.sgml: - - ChangeLog | 11 +++ - NEWS | 31 ++++++++ - configure.ac | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 12 +++ - doc/reference/tmpl/ephy-permission-manager.sgml | 50 ------------ - doc/reference/tmpl/ephy-shell.sgml | 61 -------------- - doc/reference/tmpl/epiphany-unused.sgml | 101 ++++++++++++++++++++++++ - 7 files changed, 156 insertions(+), 112 deletions(-) - -commit 69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2 -Author: Christian Persch -Date: Mon Jan 30 23:08:58 2006 +0000 - - Use ngettext here. - - 2006-01-31 Christian Persch - - * src/bookmarks/ephy-bookmark-properties.c: (show_duplicate_cb): - - Use ngettext here. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmark-properties.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 5a25f384ec84c94e89e07558296620dc74681e7b -Author: Peter Harvey -Date: Mon Jan 30 23:02:35 2006 +0000 - - src/bookmarks/ephy-bookmark-properties.c src/bookmarks/ephy-bookmarks.c - - 2006-01-30 Peter Harvey - - * src/bookmarks/ephy-bookmark-properties.c - * src/bookmarks/ephy-bookmarks.c - * src/bookmarks/ephy-bookmarks.h - - Made the 'Similar' button show more bookmarks, and - separate into 'identical' and 'similar'. - - ChangeLog | 9 +++ - src/bookmarks/ephy-bookmark-properties.c | 117 ++++++++++++++++++++----------- - src/bookmarks/ephy-bookmarks.c | 81 ++++++++++----------- - src/bookmarks/ephy-bookmarks.h | 9 ++- - 4 files changed, 126 insertions(+), 90 deletions(-) - -commit 7d08bb7e103b567fd9fc707d4625be9a1335f3fd -Author: Christian Persch -Date: Mon Jan 30 22:34:39 2006 +0000 - - Don't double-ref the UI manager. Don't try to set a cursor on windowless - - 2006-01-30 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (configure_item_cursor), - (egg_editable_toolbar_set_ui_manager): - - Don't double-ref the UI manager. - Don't try to set a cursor on windowless widgets. - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 39 +++++++++++++++++++++------------------ - 2 files changed, 29 insertions(+), 18 deletions(-) - -commit 40baab8178637f734380ace4cab5c54c0e31cd86 -Author: Jean-François Rameau -Date: Mon Jan 30 22:33:02 2006 +0000 - - Remove unused var. - - 2006-01-30 Jean-François Rameau - - * embed/mozilla/EphyAboutModule.cpp: (GetErrorMessage): - - Remove unused var. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutModule.cpp | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 64f07f7d77b1846ff293558bbcb6190d1ac3cfa1 -Author: Christian Persch -Date: Mon Jan 30 22:22:20 2006 +0000 - - Fix the build with -Werror. - - 2006-01-30 Christian Persch - - * lib/egg/egg-editable-toolbar.c: - (egg_editable_toolbar_set_ui_manager): - - Fix the build with -Werror. - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 25 ++++++++++++++----------- - 2 files changed, 21 insertions(+), 11 deletions(-) - -commit cbccb0edeaa90948433f559a16d8490c8ad3f97e -Author: Peter Harvey -Date: Mon Jan 30 22:13:07 2006 +0000 - - data/ui/epiphany-ui.xml src/ephy-lockdown.c src/ephy-toolbar.c - - 2006-01-30 Peter Harvey - - * data/ui/epiphany-ui.xml - * src/ephy-lockdown.c - * src/ephy-toolbar.c - * src/ephy-window.c - * lib/egg/egg-editable-toolbar.c - * lib/egg/egg-editable-toolbar.h - - Add a Toolbars submenu with per-toolbar hide/show items. - - ChangeLog | 11 + - data/ui/epiphany-ui.xml | 11 +- - lib/egg/egg-editable-toolbar.c | 489 +++++++++++++++++++++++++++-------------- - lib/egg/egg-editable-toolbar.h | 11 +- - src/ephy-lockdown.c | 2 +- - src/ephy-toolbar.c | 1 + - src/ephy-window.c | 9 +- - 7 files changed, 358 insertions(+), 176 deletions(-) - -commit 4f2f3783b5772129829049efa0ce263665fb1800 -Author: Nickolay V. Shmyrev -Date: Mon Jan 30 22:10:38 2006 +0000 - - Updated Russian translation. - - - * ru.po: Updated Russian translation. - - po/ChangeLog | 4 + - po/ru.po | 2189 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1201 insertions(+), 992 deletions(-) - -commit 6bf566c5b05b4a8adf46cb19b7e939772ea9e001 -Author: Christian Persch -Date: Mon Jan 30 21:58:56 2006 +0000 - - Idle unref the dbus proxy in case we didn't call any remote methods; and - - 2006-01-30 Christian Persch - - * src/ephy-main.c: (open_urls), (call_dbus_proxy): - - Idle unref the dbus proxy in case we didn't call any remote - methods; and ref the dbus proxy for each call + one idle unref - for each URL remoted. - - ChangeLog | 8 ++++++++ - src/ephy-main.c | 15 ++++++++++----- - 2 files changed, 18 insertions(+), 5 deletions(-) - -commit 76483001e27ea8965f86ae420fb6d4d20f246785 -Author: Christian Persch -Date: Mon Jan 30 21:39:57 2006 +0000 - - Change text for zoom in/out. - - 2006-01-30 Christian Persch - - * src/ephy-window.c: - - Change text for zoom in/out. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 1043abd52b4792e5908ff7a76617868f5699c5d6 -Author: Crispin Flowerday -Date: Mon Jan 30 21:11:25 2006 +0000 - - Use ngettext() for plural string. Fixes bug #329242 - - 2006-01-30 Crispin Flowerday - - * src/bookmarks/ephy-bookmark-properties.c: (update_warning), - (ephy_bookmark_properties_constructor): - - Use ngettext() for plural string. Fixes bug #329242 - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmark-properties.c | 6 ++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 03101dff3364d93e18b7145ff4fcd164bff7eb60 -Author: Christian Persch -Date: Mon Jan 30 20:32:44 2006 +0000 - - Special error text for localhost URIs. Bug #323261, patch by - - 2006-01-30 Christian Persch - - * embed/mozilla/EphyAboutModule.cpp: - - Special error text for localhost URIs. Bug #323261, - patch by Jean-François Rameau. - - ChangeLog | 7 +++++ - embed/mozilla/EphyAboutModule.cpp | 57 +++++++++++++++++++++++++++++++++++---- - 2 files changed, 59 insertions(+), 5 deletions(-) - -commit 745ff820f8656ed82091b06af7c29e5a351b4277 -Author: Christian Persch -Date: Mon Jan 30 20:17:30 2006 +0000 - - Truncate URI and title strings. Bug #329160. - - 2006-01-30 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Truncate URI and title strings. Bug #329160. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 41 ++++++++++++++++++++++++++++++++++------- - 2 files changed, 40 insertions(+), 7 deletions(-) - -commit a1f39ad0a4fb61c941496c7f64695d7eff797c34 -Author: Ignacio Casal Quinteiro -Date: Mon Jan 30 19:51:39 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 139 ++++++++++++++++++++++++++--------------------------------- - 2 files changed, 65 insertions(+), 78 deletions(-) - -commit 31e75c6d876a878681d7a3e2b8bdf5d1e807d6c8 -Author: Francisco Javier F. Serrador -Date: Mon Jan 30 17:33:58 2006 +0000 - - Updated Spanish translation. - - 2006-01-30 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++++ - po/es.po | 78 +++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 52 insertions(+), 30 deletions(-) - -commit 4e41575cbd0cf41180222760e2fb95e7fff73424 -Author: Ole Laursen -Date: Mon Jan 30 14:49:43 2006 +0000 - - Updated Danish translation. - - 2006-01-30 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 2918 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1734 insertions(+), 1188 deletions(-) - -commit b64718c3951cec3dfb756ebe5f8c0cee5b8369c4 -Author: Christian Persch -Date: Mon Jan 30 13:32:01 2006 +0000 - - Release the finder on dispose not finalize. - - 2006-01-30 Christian Persch - - * src/ephy-find-toolbar.c: (ephy_find_toolbar_dispose), - (ephy_find_toolbar_class_init): - - Release the finder on dispose not finalize. - - ChangeLog | 7 +++++++ - src/ephy-find-toolbar.c | 7 ++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit 6fc0b62b266caafd8e0406c457828a272da48f1a -Author: Clytie Siddall -Date: Mon Jan 30 11:26:16 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 2541 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1306 insertions(+), 1239 deletions(-) - -commit f169d29d17f90340e9545ef64ecaecc49a9b7b66 -Author: Ankitkumar Rameshchandra Patel -Date: Mon Jan 30 10:26:29 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 133 +++++++++++++++++++++++------------------------------------ - 2 files changed, 56 insertions(+), 81 deletions(-) - -commit 7b01ba1f4fe551a2e00d35aecfe82282f2cbac43 -Author: Peter Harvey -Date: Mon Jan 30 07:45:16 2006 +0000 - - src/bookmarks/ephy-bookmark-properties.c - - 2006-01-30 Peter Harvey - - * src/bookmarks/ephy-bookmark-properties.c - - Add "Show" text to the items in the "Similar" menu. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmark-properties.c | 7 +++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 9f72ac78fb062fd4ebef6693f7d478262b89aaa5 -Author: Theppitak Karoonboonyanan -Date: Mon Jan 30 03:30:27 2006 +0000 - - Updated Thai translation. - - 2006-01-30 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++++ - po/th.po | 74 ++++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 48 insertions(+), 30 deletions(-) - -commit 95541dc6f28063fd722fa9c988f2e293ca20b920 -Author: Pawan Chitrakar -Date: Mon Jan 30 03:15:56 2006 +0000 - - updated nepali translation - - po/ChangeLog | 4 +++ - po/ne.po | 106 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 54 insertions(+), 56 deletions(-) - -commit b30b007ae1202617933a9022cf1fd0750cb0966b -Author: Slobodan D. Sredojevic -Date: Mon Jan 30 01:14:57 2006 +0000 - - Updated Serbian translation - - 2006-01-30 Slobodan D. Sredojevic - - * sr.po, sr@Latn.po: Updated Serbian translation - - po/ChangeLog | 4 + - po/sr.po | 2420 +++++++++++++++++++++++++++++++++------------------------ - po/sr@Latn.po | 2420 +++++++++++++++++++++++++++++++++------------------------ - 3 files changed, 2778 insertions(+), 2066 deletions(-) - -commit fdd99cd3f5c34bff746f2dbe5d2476e352cbac40 -Author: Funda Wang -Date: Sun Jan 29 22:57:03 2006 +0000 - - Updated epiphany translation. - - po/ChangeLog | 4 ++ - po/zh_CN.po | 154 ++++++++++++++++++++++++----------------------------------- - 2 files changed, 67 insertions(+), 91 deletions(-) - -commit bf0ea37b5138af83fde8e7aaba16669c4e43fd9c -Author: Christian Persch -Date: Sun Jan 29 21:47:22 2006 +0000 - - Add a convenience function to get current event data. - - 2006-01-29 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_get_current_event): - * lib/ephy-gui.h: - - Add a convenience function to get current event data. - - * src/ephy-link.c: (ephy_link_open), - (ephy_link_flags_from_current_event): - * src/ephy-link.h: - - Add a convenience function to translate the current event - into EphyLinkFlags. - - * src/ephy-go-action.c: (ephy_go_action_get_type): - * src/ephy-go-action.h: - - Make this an EphyLinkAction. - - * lib/widgets/ephy-location-entry.c: (entry_key_press_cb): - * src/ephy-home-action.c: (ephy_home_action_activate): - * src/ephy-location-action.c: (entry_activate_cb): - * src/ephy-tab.c: (open_link_in_new), - (ephy_tab_dom_mouse_click_cb): - * src/window-commands.c: (window_cmd_load_location): - - Fix link activation to respect ctrl and shift modifiers. - Part of bug #310814. - - 2006-01-29 Christian Persch - - ChangeLog | 29 +++++++++++++++++++++++ - lib/ephy-gui.c | 36 +++++++++++++++++++++++++++++ - lib/ephy-gui.h | 4 ++++ - lib/widgets/ephy-location-entry.c | 6 +++-- - src/ephy-go-action.c | 2 +- - src/ephy-go-action.h | 6 ++--- - src/ephy-home-action.c | 2 +- - src/ephy-link.c | 36 +++++++++++++++++++++++++++++ - src/ephy-link.h | 2 ++ - src/ephy-location-action.c | 17 +------------- - src/ephy-session.c | 2 +- - src/ephy-tab.c | 48 ++++++++++++++++++++------------------- - src/window-commands.c | 5 +++- - 13 files changed, 147 insertions(+), 48 deletions(-) - -commit 34e421be7f10496d476266e656ddffe00b42b4e7 -Author: Christian Persch -Date: Sun Jan 29 21:44:46 2006 +0000 - - If GetPassword failed, break instead of continue. That way we don't - - 2006-01-29 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - If GetPassword failed, break instead of continue. - That way we don't endlessly re-ask for the master password. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 10 +++++++++- - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit c488b4e9aca045965156e425129a6be95637da98 -Author: Crispin Flowerday -Date: Sun Jan 29 21:09:53 2006 +0000 - - Add a function (ephy_embed_single_get_backend_name) to get the backend - - 2006-01-29 Crispin Flowerday - - * embed/ephy-embed-single.c: (ephy_embed_single_get_backend_name): - * embed/ephy-embed-single.h: - * embed/mozilla/mozilla-embed-single.cpp: - * src/epiphany.defs: - - Add a function (ephy_embed_single_get_backend_name) to get - the backend that epiphany is using. - - ChangeLog | 10 ++++++++++ - embed/ephy-embed-single.c | 17 +++++++++++++++++ - embed/ephy-embed-single.h | 3 +++ - embed/mozilla/mozilla-embed-single.cpp | 17 +++++++++++++++++ - src/epiphany.defs | 6 +++++- - 5 files changed, 52 insertions(+), 1 deletion(-) - -commit 94d9003fe9bab749eb4dba5a9bcf66721fb421cd -Author: Reinout van Schouwen -Date: Sun Jan 29 20:45:31 2006 +0000 - - 2006-01-29 Reinout van Schouwen - - * 2006-01-29 Reinout van Schouwen - - * NEWS: 1.9.6 - - ChangeLog | 6 ++++++ - NEWS | 28 ++++++++++++++++++++++++++++ - 2 files changed, 34 insertions(+) - -commit 39469276f021c2fd3933c6d07dc0b8bbcbc7366e -Author: Reinout van Schouwen -Date: Sun Jan 29 16:15:15 2006 +0000 - - Jan 29 2006 Reinout van Schouwen - - * Jan 29 2006 Reinout van Schouwen - - * nl.po: Updated Dutch translation - - po/ChangeLog | 70 +++--- - po/nl.po | 776 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 469 insertions(+), 377 deletions(-) - -commit 5b04f459c8646b1250ae65e9f9c17fd06e682997 -Author: Duarte Loreto -Date: Sun Jan 29 15:33:40 2006 +0000 - - Updated Portuguese translation. - - 2006-01-29 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 2386 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1389 insertions(+), 1001 deletions(-) - -commit 7134d369d44b5bddde985808cc531b6a7edef2a0 -Author: Peter Harvey -Date: Sun Jan 29 15:30:40 2006 +0000 - - src/bookmarks/ephy-bookmark-properties.c src/bookmarks/ephy-bookmarks.c - - 2006-01-29 Peter Harvey - - * src/bookmarks/ephy-bookmark-properties.c - * src/bookmarks/ephy-bookmarks.c - * src/bookmarks/ephy-bookmarks.h - - Added better widget to handle duplicate bookmarks. - - * src/bookmarks/ephy-topics-entry.c - - Corrected handling of UTF8 strings. - - * src/bookmarks/ephy-topics-palette.c - - Removed unnecessary use of g_idle_*.. - - ChangeLog | 16 ++ - src/bookmarks/ephy-bookmark-properties.c | 241 ++++++++++++++++++++++--------- - src/bookmarks/ephy-bookmarks.c | 56 ++++++- - src/bookmarks/ephy-bookmarks.h | 5 +- - src/bookmarks/ephy-topics-entry.c | 97 ++++++------- - src/bookmarks/ephy-topics-palette.c | 20 +-- - 6 files changed, 296 insertions(+), 139 deletions(-) - -commit e98c2ee0d286bea538229374d0fa8194ec81a875 -Author: Mohammad DAMT -Date: Sun Jan 29 14:36:57 2006 +0000 - - Updated Indonesian translation (Fixed bug #313448) - - 2006-01-29 Mohammad DAMT - - * id.po: Updated Indonesian translation (Fixed bug #313448) - - po/ChangeLog | 4 + - po/id.po | 1374 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 804 insertions(+), 574 deletions(-) - -commit c4256ec98de17b6d5a85bce9034c3f4e9423a5f7 -Author: Christian Persch -Date: Sun Jan 29 14:30:16 2006 +0000 - - Fix strings again. Bug #328747. - - 2006-01-29 Christian Persch - - * lib/ephy-file-helpers.c: - * src/ephy-main.c: - - Fix strings again. Bug #328747. - - ChangeLog | 7 +++ - lib/ephy-file-helpers.c | 154 ++++++++++++++++++++++++------------------------ - src/ephy-main.c | 76 ++++++++++++------------ - 3 files changed, 122 insertions(+), 115 deletions(-) - -commit 6f200baa28dffcd7799e17fc2cc29f53d0e23d88 -Author: Crispin Flowerday -Date: Sun Jan 29 14:28:34 2006 +0000 - - Open smart bookmark url in new tabs when using Ctrl+Enter (part of bug - - 2006-01-29 Crispin Flowerday - - * src/bookmarks/ephy-bookmark-action.c: (activate_cb), - (entry_key_press_cb), (connect_proxy): - - Open smart bookmark url in new tabs when using Ctrl+Enter - (part of bug #310814) - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmark-action.c | 39 +++++++++++++++++++++++++++++++++++- - 2 files changed, 46 insertions(+), 1 deletion(-) - -commit 77ea0aa0fe35b80b69219c2ccceed3f573cae025 -Author: Francisco Javier F. Serrador -Date: Sun Jan 29 13:24:21 2006 +0000 - - Updated Spanish translation. - - 2006-01-29 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 171 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 88 insertions(+), 87 deletions(-) - -commit 30842d47d875fc89f84584aed9ef4894612aa037 -Author: Peter Harvey -Date: Sun Jan 29 10:24:56 2006 +0000 - - src/bookmarks/ephy-topics-entry.c src/bookmarks/ephy-topics-palette.c - - 2006-01-29 Peter Harvey - - * src/bookmarks/ephy-topics-entry.c - * src/bookmarks/ephy-topics-palette.c - - Make both topcs palette and entry even more robust. - Substantially improved behaviour of the topics entry. - - ChangeLog | 8 + - src/bookmarks/ephy-topics-entry.c | 470 ++++++++++++++++++++++-------------- - src/bookmarks/ephy-topics-palette.c | 34 ++- - 3 files changed, 325 insertions(+), 187 deletions(-) - -commit b464665b4db8ad07b8f5d55b28a27fa01b5a6872 -Author: Evandro Fernandes Giovanini -Date: Sun Jan 29 08:39:00 2006 +0000 - - Updated Brazilian Portuguese translation. - - 2006-01-29 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 ++ - po/pt_BR.po | 232 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 117 insertions(+), 119 deletions(-) - -commit 3ba3a27797f1072121f0da831549c713890e6eb3 -Author: Theppitak Karoonboonyanan -Date: Sun Jan 29 05:53:15 2006 +0000 - - Updated Thai translation. - - 2006-01-29 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 680 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 370 insertions(+), 314 deletions(-) - -commit 588c439550de05e126c25abc64d8caeeb33cd8f3 -Author: Clytie Siddall -Date: Sun Jan 29 05:25:02 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 137 +++++++++++++++++++++-------------------------------------- - 2 files changed, 53 insertions(+), 88 deletions(-) - -commit 306af4fd07971942777e8fd6b839482e842b450f -Author: Peter Harvey -Date: Sun Jan 29 00:48:04 2006 +0000 - - src/bookmarks/ephy-topics-entry.c po/POTFILES.in - - 2006-01-29 Peter Harvey - - * src/bookmarks/ephy-topics-entry.c - * po/POTFILES.in - - Make the topic entry more robust, and correct its - entry in POTFILES.in. - - ChangeLog | 8 +++ - po/POTFILES.in | 2 +- - src/bookmarks/ephy-topics-entry.c | 132 ++++++++++++++++++++++---------------- - 3 files changed, 87 insertions(+), 55 deletions(-) - -commit 3b26302a34d69fe69793742006054eed8f0a4e64 -Author: Reinout van Schouwen -Date: Sat Jan 28 23:39:34 2006 +0000 - - Jan 29 2006 Reinout van Schouwen - - * Jan 29 2006 Reinout van Schouwen - - * src/ephy-main.c: change 'Epiphany' to 'browser' in 2 strings - - ChangeLog | 6 +++++ - src/ephy-main.c | 78 ++++++++++++++++++++++++++++----------------------------- - 2 files changed, 45 insertions(+), 39 deletions(-) - -commit b9a5fa98872be2d9da3ec06c0e94837f717f9b32 -Author: Reinout van Schouwen -Date: Sat Jan 28 22:46:13 2006 +0000 - - Jan 29 2006 Reinout van Schouwen - - * Jan 29 2006 Reinout van Schouwen - - * lib/ephy-file-helpers.c: fix #328747 - - ChangeLog | 26 ++++---- - lib/ephy-file-helpers.c | 154 ++++++++++++++++++++++++------------------------ - 2 files changed, 93 insertions(+), 87 deletions(-) - -commit 811f68e7ed17fd4d4fcd620c3b9d1a543b376a9a -Author: Peter Harvey -Date: Sat Jan 28 22:14:02 2006 +0000 - - src/bookmarks/ephy-bookmark-properties.c src/bookmarks/ephy-topics-entry.c - - 2006-01-29 Peter Harvey - - * src/bookmarks/ephy-bookmark-properties.c - * src/bookmarks/ephy-topics-entry.c - * src/bookmarks/ephy-topics-entry.h - * src/bookmarks/Makefile.am - * po/POTFILES.in - - Ongoing Saga Of The Bookmark Properties Dialog. - Dialog is now much more compact, using a text entry by - default and offering the palette when desired. - - * src/bookmarks/ephy-topics-palette.c - - Simplified code and made more usable. - Removed the header from the last patch as well. - - * src/bookmarks/ephy-bookmarks-ui.c - - 'Add bookmark' dialogs were not correctly removed from the - hashtable. - - ChangeLog | 24 +- - po/POTFILES.in | 1 + - src/bookmarks/Makefile.am | 2 + - src/bookmarks/ephy-bookmark-properties.c | 104 ++++--- - src/bookmarks/ephy-bookmarks-ui.c | 9 +- - src/bookmarks/ephy-topics-entry.c | 520 +++++++++++++++++++++++++++++++ - src/bookmarks/ephy-topics-entry.h | 61 ++++ - src/bookmarks/ephy-topics-palette.c | 156 +++------- - 8 files changed, 727 insertions(+), 150 deletions(-) - -commit 37a127559b9b67bd7b163177ced72539512c319c -Author: Francisco Javier F. Serrador -Date: Sat Jan 28 18:18:47 2006 +0000 - - Updated Spanish translation. - - 2006-01-28 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - help/ChangeLog | 4 + - help/es/es.po | 994 ++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 524 insertions(+), 474 deletions(-) - -commit 1805c54be39a7c796f0887f56d54ca85d9043e3d -Author: Ignacio Casal Quinteiro -Date: Sat Jan 28 12:13:11 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/gl.po | 452 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 226 insertions(+), 230 deletions(-) - -commit f0501bbeb0feb166eb20ad27325452fd7ef181d3 -Author: Arangel Angov -Date: Sat Jan 28 11:06:14 2006 +0000 - - Updated Macedonian translation - - po/mk.po | 41 ++++++++++++++++++++--------------------- - 1 file changed, 20 insertions(+), 21 deletions(-) - -commit 233920bda728e2fce61a75887ef59b35fc5d6d33 -Author: Peter Harvey -Date: Fri Jan 27 22:14:44 2006 +0000 - - src/bookmarks/ephy-bookmark-properties.c src/bookmarks/ephy-bookmarks-ui.c - - 2006-01-22 Peter Harvey - - * src/bookmarks/ephy-bookmark-properties.c - * src/bookmarks/ephy-bookmarks-ui.c - * src/bookmarks/ephy-bookmarks-ui.h - * src/bookmarks/ephy-bookmarks.c - * src/bookmarks/ephy-bookmarks.h - * src/ephy-history-window.c - * src/popup-commands.c - * src/window-commands.c - - Simplified the bookmark properties dialog and removed the - 'duplicate bookmark' warning dialog (now have warning in - the bookmark properties dialog itself). - - * src/bookmarks/ephy-topics-palette.c - - Added a header which switches topic palette mode. - - ChangeLog | 19 +++++ - src/bookmarks/ephy-bookmark-properties.c | 139 ++++++++++++++++++++++++------- - src/bookmarks/ephy-bookmarks-ui.c | 122 +++------------------------ - src/bookmarks/ephy-bookmarks-ui.h | 3 +- - src/bookmarks/ephy-bookmarks.c | 41 +++++++++ - src/bookmarks/ephy-bookmarks.h | 3 + - src/bookmarks/ephy-topics-palette.c | 49 +++++++---- - src/ephy-history-window.c | 2 +- - src/popup-commands.c | 2 +- - src/window-commands.c | 3 +- - 10 files changed, 220 insertions(+), 163 deletions(-) - -commit 81d60265f6dc7b29d716328c5171546cc24e5f58 -Author: Christian Persch -Date: Fri Jan 27 21:32:27 2006 +0000 - - Remove unused NM code. Misc cleanups. - - 2006-01-27 Christian Persch - - * src/ephy-dbus.c: (ephy_dbus_connect_to_session_bus_cb), - (ephy_dbus_connect_to_system_bus_cb), (session_filter_func), - (system_filter_func), (ephy_dbus_connect_to_system_bus), - (ephy_dbus_connect_to_session_bus), (ephy_dbus_shutdown): - * src/ephy-dbus.h: - - Remove unused NM code. Misc cleanups. - - ChangeLog | 10 +++++ - src/ephy-dbus.c | 133 ++++++++++++++++++-------------------------------------- - src/ephy-dbus.h | 5 --- - 3 files changed, 52 insertions(+), 96 deletions(-) - -commit f8fa4046d19f289188dfeebcc57ece73e949f433 -Author: Christian Persch -Date: Fri Jan 27 20:29:36 2006 +0000 - - Add required GError** params, and actually set the error when returning - - 2006-01-27 Christian Persch - - * src/ephy-activation.c: (ephy_activation_load_url), - (ephy_activation_load_session), - (ephy_activation_open_bookmarks_editor): - * src/ephy-activation.h: - - Add required GError** params, and actually set the - error when returning FALSE. - - ChangeLog | 10 ++++++++++ - src/ephy-activation.c | 14 ++++++++++++-- - src/ephy-activation.h | 6 ++++-- - 3 files changed, 26 insertions(+), 4 deletions(-) - -commit ca5f11319afff03fbd1421ef3f0063727f76d955 -Author: Christian Persch -Date: Fri Jan 27 20:13:09 2006 +0000 - - Disable pango rendering by default, unless MOZ_ENABLE_PANGO env var is - - 2006-01-27 Christian Persch - - * src/ephy-main.c: (main): - - Disable pango rendering by default, unless MOZ_ENABLE_PANGO env - var is set. Bug #328844. - - ChangeLog | 7 +++++ - embed/ephy-embed-prefs.h | 2 +- - src/ephy-main.c | 71 ++++++++++++++++++++++++------------------------ - 3 files changed, 43 insertions(+), 37 deletions(-) - -commit 1d515168cdff346b93e9948b5d7d1c5f6c614cca -Author: Francisco Javier F. Serrador -Date: Fri Jan 27 18:21:14 2006 +0000 - - Updated Spanish translation. - - 2006-01-27 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 358 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 193 insertions(+), 169 deletions(-) - -commit 7eacbefb2ca32f24b58d44e41c4126105b8c747e -Author: Evandro Fernandes Giovanini -Date: Fri Jan 27 08:19:40 2006 +0000 - - Updated Brazilian Portuguese translation. - - 2006-01-27 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 1639 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 940 insertions(+), 703 deletions(-) - -commit 3c31516eef2c1dcf9c5107c8d78938ed9b3e53d0 -Author: Clytie Siddall -Date: Fri Jan 27 08:05:03 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 137 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 67 insertions(+), 74 deletions(-) - -commit 5a8de1cbe95ee9edfc12eecd43b9a58ca02845f8 -Author: Ankitkumar Rameshchandra Patel -Date: Fri Jan 27 04:27:14 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 151 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 75 insertions(+), 80 deletions(-) - -commit 0b63db66bbcee220699e0d84cee45fd35d430231 -Author: Josep Puigdemont i Casamajó -Date: Thu Jan 26 23:04:46 2006 +0000 - - Updated Catalan translation. - - po/ChangeLog | 4 + - po/ca.po | 2362 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1384 insertions(+), 982 deletions(-) - -commit 026c58b8631cd0b7ab2b2d7d53a5114f7ccf0245 -Author: Crispin Flowerday -Date: Thu Jan 26 21:54:58 2006 +0000 - - Use stamp files for the dbus bindings.h files - - 2006-01-26 Crispin Flowerday - - * src/Makefile.am: - - Use stamp files for the dbus bindings.h files - - ChangeLog | 6 ++++++ - src/Makefile.am | 22 +++++++++++++++------- - 2 files changed, 21 insertions(+), 7 deletions(-) - -commit d174065bd9c72a70670149505200648de547b011 -Author: Adam Weinberger -Date: Thu Jan 26 17:56:36 2006 +0000 - - Updated Canadian English translation. - - - 2006-01-26 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 566 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 302 insertions(+), 268 deletions(-) - -commit 27004dd3e69b41d71bacacaec4d38ee02b614871 -Author: Funda Wang -Date: Thu Jan 26 08:42:26 2006 +0000 - - Updated epiphany translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 570 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 307 insertions(+), 267 deletions(-) - -commit c6549f269c5e257c8cdfb7a04d64b411412be6bf -Author: Clytie Siddall -Date: Thu Jan 26 05:28:12 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 165 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 88 insertions(+), 81 deletions(-) - -commit 941770f3933483d41177ed8072a24e4b1f90f8f6 -Author: Christian Persch -Date: Wed Jan 25 23:34:37 2006 +0000 - - Fix initial network status sync. - - 2006-01-26 Christian Persch - - * src/ephy-shell.c: (impl_get_embed_single): - - Fix initial network status sync. - - ChangeLog | 6 ++++++ - src/ephy-shell.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 0e1613efe9cc6d8ed3acf56928c798e3d889f4f1 -Author: Christian Persch -Date: Wed Jan 25 23:33:05 2006 +0000 - - Add transient window to window group., - - 2006-01-25 Christian Persch - - * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_constructor): - - Add transient window to window group., - - * src/languages.h: - - Add licence header. - - ChangeLog | 10 ++++++++++ - src/ephy-toolbar-editor.c | 5 ++++- - src/languages.h | 20 ++++++++++++++++++++ - 3 files changed, 34 insertions(+), 1 deletion(-) - -commit 3ad9ef8b91858c04c3e94243ab98c1652556d285 -Author: Christian Persch -Date: Wed Jan 25 22:09:08 2006 +0000 - - Store the detected network status even if we're not active. - - 2006-01-25 Christian Persch - - * src/ephy-net-monitor.c: (ephy_net_monitor_set_net_status), - (notify_network_managed_cb): - - Store the detected network status even if we're not active. - - ChangeLog | 7 +++++++ - src/ephy-net-monitor.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit dd06e70a33a386b716fedd68393885f45a343b68 -Author: Christian Persch -Date: Wed Jan 25 21:52:27 2006 +0000 - - libnm-glib be-gone! Use NetworkManager directly via DBUS, by importing the - - 2006-01-25 Christian Persch - - * configure.ac: - * data/epiphany.schemas.in: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - * lib/ephy-prefs.h: - * src/Makefile.am: - * src/ephy-net-monitor.c: - * src/ephy-net-monitor.h: - * src/ephy-shell.c: (ephy_shell_sync_network_status), - (impl_get_embed_single), (ephy_shell_dispose), - (ephy_shell_get_net_monitor), (_ephy_shell_create_instance), - (_ephy_shell_startup): - * src/ephy-shell.h: - - libnm-glib be-gone! Use NetworkManager directly via DBUS, by - importing the excellent net-monitor extension directly into - Epiphany. Code by Jean-François Rameau. - - ChangeLog | 20 ++ - configure.ac | 16 +- - data/epiphany.schemas.in | 32 +- - embed/mozilla/Makefile.am | 5 - - embed/mozilla/mozilla-embed-single.cpp | 84 ----- - lib/ephy-prefs.h | 1 + - src/Makefile.am | 6 + - src/ephy-net-monitor.c | 584 +++++++++++++++++++++++++++++++++ - src/ephy-net-monitor.h | 63 ++++ - src/ephy-shell.c | 77 ++++- - src/ephy-shell.h | 7 +- - 11 files changed, 767 insertions(+), 128 deletions(-) - -commit 48828a1977fc21c6fc6d03fa6003a081bf14b017 -Author: Peter Harvey -Date: Wed Jan 25 21:45:03 2006 +0000 - - src/bookmarks/ephy-bookmarks-ui.c - - 2006-01-22 Peter Harvey - - * src/bookmarks/ephy-bookmarks-ui.c - - Reverted change which made 'add bookmark' and 'edit bookmark' - use-cases have exactly the same dialog. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-ui.c | 13 +++++++++++-- - 2 files changed, 18 insertions(+), 2 deletions(-) - -commit 40b41c97b0ab8909c67a2f2176b9549bb1cb9e8d -Author: Christian Persch -Date: Wed Jan 25 19:48:40 2006 +0000 - - Don't leak the option context. - - 2006-01-25 Christian Persch - - * src/ephy-main.c: (main): - - Don't leak the option context. - - ChangeLog | 6 ++++++ - src/ephy-main.c | 21 +++++++++++++++++++++ - 2 files changed, 27 insertions(+) - -commit e9a5d18e08352272299d1410f9f62a70d7ac1bde -Author: Christian Persch -Date: Wed Jan 25 19:39:42 2006 +0000 - - Small cleanups. - - 2006-01-25 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (drag_data_received_cb), - (create_tool_item), (ephy_topic_action_sync_label), (get_popup), - (erase_popup), (child_changed_cb), (child_removed_cb), - (menu_init_cb), (button_deactivate_cb), (button_toggled_cb), - (button_release_cb), (button_press_cb), (connect_proxy), - (ephy_topic_action_updated), (ephy_topic_action_get_topic), - (ephy_topic_action_set_topic), (ephy_topic_action_set_property), - (ephy_topic_action_get_property), (ephy_topic_action_init), - (ephy_topic_action_get_type), (ephy_topic_action_new): - - Small cleanups. - - ChangeLog | 14 +++ - src/bookmarks/ephy-topic-action.c | 259 ++++++++++++++++++++++---------------- - 2 files changed, 164 insertions(+), 109 deletions(-) - -commit 2e7fc7b481e90e68705d92ec012889fc0985e324 -Author: Arangel Angov -Date: Wed Jan 25 15:59:45 2006 +0000 - - Fixed translation, bug #313449 - - po/mk.po | 45 ++++++++++++++++++++++++--------------------- - 1 file changed, 24 insertions(+), 21 deletions(-) - -commit 747b7aa955e23144e11af6c0456ffb01a6ed8a20 -Author: Christian Persch -Date: Wed Jan 25 14:09:18 2006 +0000 - - Set the "browser.display.use_system_colors" pref on gecko 1.8, instead of - - 2006-01-25 Christian Persch - - * data/default-prefs-gecko-1-8.js: - * embed/mozilla/mozilla-embed-single.cpp: - - Set the "browser.display.use_system_colors" pref on gecko 1.8, - instead of monitoring the theme ourself. - - ChangeLog | 8 ++++++++ - data/default-prefs-gecko-1-8.js | 3 +++ - embed/mozilla/mozilla-embed-single.cpp | 13 +++++++++++-- - 3 files changed, 22 insertions(+), 2 deletions(-) - -commit 56ffb6c1afda74feb0edcd10cedb5b5f0537d474 -Author: Christian Persch -Date: Wed Jan 25 13:26:08 2006 +0000 - - Don't show the CSS box by default; we show it from code only when CSS is - - 2006-01-25 Christian Persch - - * data/glade/prefs-dialog.glade: - - Don't show the CSS box by default; we show it from code - only when CSS is supported. - - ChangeLog | 7 +++++++ - data/glade/prefs-dialog.glade | 1 - - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 01e13d81ff2a7463af1476ef997108cd885aa165 -Author: Christian Persch -Date: Wed Jan 25 13:13:59 2006 +0000 - - On suite, set wallet.caveat to false. - - 2006-01-25 Christian Persch - - * data/default-prefs-mozilla.js: - - On suite, set wallet.caveat to false. - - ChangeLog | 6 ++++++ - data/default-prefs-mozilla.js | 3 +++ - 2 files changed, 9 insertions(+) - -commit 10325fddddd83c0dd6222460bc13085b32ca7d5d -Author: Kostas Papadimas -Date: Wed Jan 25 11:48:07 2006 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 1866 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 786 insertions(+), 1084 deletions(-) - -commit a17098ab90c8506d854b8c8bab18e1102b450d2b -Author: Alexander Shopov -Date: Wed Jan 25 09:56:27 2006 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2006-01-25 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - po/ChangeLog | 5 + - po/bg.po | 494 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 281 insertions(+), 218 deletions(-) - -commit e6bcbda34fdd338f41503b469cbb65ede98073bf -Author: Ankitkumar Rameshchandra Patel -Date: Wed Jan 25 08:05:58 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 355 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 194 insertions(+), 165 deletions(-) - -commit 3fb209a400054218378f20c2e8079e80398dad4b -Author: Clytie Siddall -Date: Wed Jan 25 05:15:46 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 290 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 163 insertions(+), 131 deletions(-) - -commit 871e074093b6780eefed2214a0aad890ab402e1d -Author: Christian Persch -Date: Tue Jan 24 23:21:31 2006 +0000 - - Add cvs version markers. - - 2006-01-25 Christian Persch - - * src/bookmarks/ephy-bookmark-action-group.c: - * src/bookmarks/ephy-bookmark-action-group.h: - * src/bookmarks/ephy-bookmark-factory-action.c: - * src/bookmarks/ephy-bookmark-factory-action.h: - * src/bookmarks/ephy-bookmarks-ui.c: - * src/bookmarks/ephy-bookmarks-ui.h: - * src/bookmarks/ephy-nodes-cover.c: - * src/bookmarks/ephy-nodes-cover.h: - * src/bookmarks/ephy-open-tabs-action.c: - * src/bookmarks/ephy-open-tabs-action.h: - * src/bookmarks/ephy-related-action.c: - * src/bookmarks/ephy-topic-action-group.c: - * src/bookmarks/ephy-topic-action-group.h: - * src/bookmarks/ephy-topic-factory-action.c: - * src/bookmarks/ephy-topics-palette.c: - - Add cvs version markers. - - ChangeLog | 20 ++++++++++++++++++++ - src/bookmarks/ephy-bookmark-action-group.c | 2 ++ - src/bookmarks/ephy-bookmark-action-group.h | 2 ++ - src/bookmarks/ephy-bookmark-factory-action.c | 1 + - src/bookmarks/ephy-bookmark-factory-action.h | 1 + - src/bookmarks/ephy-bookmarks-ui.c | 2 ++ - src/bookmarks/ephy-bookmarks-ui.h | 2 ++ - src/bookmarks/ephy-nodes-cover.c | 1 + - src/bookmarks/ephy-nodes-cover.h | 2 ++ - src/bookmarks/ephy-open-tabs-action.c | 1 + - src/bookmarks/ephy-open-tabs-action.h | 2 ++ - src/bookmarks/ephy-related-action.c | 2 ++ - src/bookmarks/ephy-topic-action-group.c | 2 ++ - src/bookmarks/ephy-topic-action-group.h | 2 ++ - src/bookmarks/ephy-topic-factory-action.c | 1 + - src/bookmarks/ephy-topics-palette.c | 2 ++ - 16 files changed, 45 insertions(+) - -commit ccd5ab8c86857044798e18af5d6922cf95018ff0 -Author: Christian Persch -Date: Tue Jan 24 23:12:53 2006 +0000 - - Don't use favicon as window icon. - - 2006-01-25 Christian Persch - - * src/bookmarks/ephy-bookmark-properties.c: - (title_entry_changed_cb), (ephy_bookmark_properties_constructor): - * src/bookmarks/ephy-bookmarks-ui.c: - (ephy_bookmarks_ui_add_bookmark): - - Don't use favicon as window icon. - - ChangeLog | 9 +++++++ - src/bookmarks/ephy-bookmark-properties.c | 45 +++++--------------------------- - src/bookmarks/ephy-bookmarks-ui.c | 14 +++++----- - 3 files changed, 23 insertions(+), 45 deletions(-) - -commit 3ca9a4923aa2aad1c33faa3033f0d8748cd2c69b -Author: Christian Persch -Date: Tue Jan 24 22:20:54 2006 +0000 - - Refactored, code cleanups. Don't make the bookmark properties window - - 2006-01-24 Christian Persch - - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_set_bookmark), - (bookmark_properties_close_cb), (bookmark_properties_response_cb), - (update_entry), (update_window_title), (combo_changed_cb), - (title_entry_changed_cb), (location_entry_changed_cb), - (set_window_icon), (ephy_bookmark_properties_init), - (ephy_bookmark_properties_constructor), - (ephy_bookmark_properties_set_property), - (ephy_bookmark_properties_get_property), - (ephy_bookmark_properties_class_init), - (ephy_bookmark_properties_get_type), - (ephy_bookmark_properties_new): - * src/bookmarks/ephy-bookmark-properties.h: - - Refactored, code cleanups. Don't make the bookmark properties - window transient. - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmark_properties): - * src/bookmarks/ephy-bookmarks-ui.c: - (activate_bookmark_properties), (activate_bookmark_open_tab), - (activate_bookmark_open_window), (selected_bookmark_action), - (erase_bookmarks_menu), (tree_changed_cb), (node_added_cb), - (node_changed_cb), (node_removed_cb), - (ephy_bookmarks_ui_attach_window), (properties_dialog_destroy_cb), - (add_bookmark), (duplicate_bookmark_response_cb), - (ephy_bookmarks_ui_add_bookmark), (add_topic_changed_cb), - (add_topic_response_cb), (ephy_bookmarks_ui_add_topic), - (ephy_bookmarks_ui_show_bookmark): - * src/bookmarks/ephy-bookmarks-ui.h: - - Cleanups. Make the New Topic dialogue modal to the bookmark properties - window. Change some strings, don't unnecessarily use markup when - constructing a message dialog. - - 2006-01-24 Christian Persch - - ChangeLog | 36 +++ - src/bookmarks/.cvsignore | 1 + - src/bookmarks/ephy-bookmark-properties.c | 405 +++++++++++++------------- - src/bookmarks/ephy-bookmark-properties.h | 40 +-- - src/bookmarks/ephy-bookmarks-editor.c | 10 +- - src/bookmarks/ephy-bookmarks-ui.c | 471 +++++++++++++++++-------------- - src/bookmarks/ephy-bookmarks-ui.h | 3 +- - 7 files changed, 531 insertions(+), 435 deletions(-) - -commit 6ba78f4bcb58c02bd4b6b41757eeeab3af2fbf6e -Author: Francisco Javier F. Serrador -Date: Tue Jan 24 21:40:49 2006 +0000 - - Updated Spanish translation. - - 2006-01-24 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 347 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 187 insertions(+), 164 deletions(-) - -commit d909eb332d1a285f275892dd7ed8943218e5a00d -Author: Christian Persch -Date: Tue Jan 24 19:16:38 2006 +0000 - - Switch extensions when changing the export format from the combo box; and - - 2006-01-24 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - (import_dialog_response_cb), (export_format_combo_changed_cb), - (export_dialog_response_cb), (cmd_bookmarks_export): - - Switch extensions when changing the export format from the combo - box; and don't use gtk_dialog_run. Bug #328064. - - ChangeLog | 9 ++ - src/bookmarks/ephy-bookmarks-editor.c | 174 +++++++++++++++++++++++----------- - 2 files changed, 127 insertions(+), 56 deletions(-) - -commit e10ccbd38205bdf451f68932aacfc7f5e3f70dea -Author: Christian Persch -Date: Tue Jan 24 18:15:50 2006 +0000 - - Run the main loop until the reply is received when activating a running - - 2006-01-24 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_dot_dir), - (ephy_file_helpers_init): - * lib/ephy-file-helpers.h: - * src/ephy-dbus.c: - * src/ephy-main.c: (unref_proxy_reply_cb), (open_urls), (main): - - Run the main loop until the reply is received when - activating a running instance. Fixes URL opening with - two concurrently starting instance. - - ChangeLog | 12 ++++++++++++ - lib/ephy-file-helpers.c | 49 +++++++++++++++++++++++++++++++++++-------------- - lib/ephy-file-helpers.h | 7 ++++--- - src/ephy-dbus.c | 1 + - src/ephy-main.c | 21 +++++++++++++++------ - 5 files changed, 67 insertions(+), 23 deletions(-) - -commit 21086fc06ec3d08e3c5609cc53383e7c18fd2175 -Author: Christian Persch -Date: Tue Jan 24 12:01:23 2006 +0000 - - Use DBUS_NAME_FLAG_DO_NOT_QUEUE when requesting the name, and also handle - - 2006-01-24 Christian Persch - - * src/ephy-dbus.c: (ephy_dbus_connect_to_session_bus): - - Use DBUS_NAME_FLAG_DO_NOT_QUEUE when requesting the name, - and also handle unexpected request return values. - - ChangeLog | 7 +++++++ - src/ephy-dbus.c | 19 +++++++++++-------- - 2 files changed, 18 insertions(+), 8 deletions(-) - -commit fa5456904722028972f1bbebdbb196c2cfd2e521 -Author: Ignacio Casal Quinteiro -Date: Tue Jan 24 10:49:39 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 119 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 70 insertions(+), 53 deletions(-) - -commit 5d9f8f7e140bb2be9abf7a5906a0930cb239133b -Author: Crispin Flowerday -Date: Mon Jan 23 22:44:10 2006 +0000 - - Fix a couple of memory leaks - - 2006-01-23 Crispin Flowerday - - * src/bookmarks/ephy-open-tabs-action.c: (node_added_cb): - * src/bookmarks/ephy-topic-action-group.c: (node_added_cb): - - Fix a couple of memory leaks - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-open-tabs-action.c | 1 + - src/bookmarks/ephy-topic-action-group.c | 1 + - 3 files changed, 9 insertions(+) - -commit bbf4390b5b18db2f33bd8f179fbfe04ba82fb6e1 -Author: Christian Persch -Date: Mon Jan 23 22:18:46 2006 +0000 - - Fix compilation with libgnome 2.13. Bug #328351. - - 2006-01-23 Christian Persch - - * src/ephy-main.c: - - Fix compilation with libgnome 2.13. Bug #328351. - - ChangeLog | 6 ++++++ - src/ephy-main.c | 4 ---- - 2 files changed, 6 insertions(+), 4 deletions(-) - -commit edcfa5316d8c0396178d9b9907784c944c02e162 -Author: Žygimantas Beručka -Date: Mon Jan 23 22:13:53 2006 +0000 - - Updated Lithuanian translation. - - 2006-01-24 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 878 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 562 insertions(+), 320 deletions(-) - -commit 4c65f49d942e219d04afa1a8728fa60915618e9f -Author: Christian Persch -Date: Mon Jan 23 22:08:10 2006 +0000 - - Removed add-bookmark and import-bookmarks functions, and changed load-url - - 2006-01-23 Christian Persch - - * data/epiphany-service.xml: - * src/ephy-activation.c: (ephy_activation_load_url), - (ephy_activation_open_bookmarks_editor): - * src/ephy-activation.h: - - Removed add-bookmark and import-bookmarks functions, - and changed load-url to use an options string instead of - loads of booleans. - - * src/ephy-main.c: (unref_proxy_reply_cb), (open_urls), - (call_dbus_proxy): - - Adapt to changed dbus call signatures. - Fixes open-in-new-tab/window from cmd line. - - ChangeLog | 17 ++++++++++++ - data/epiphany-service.xml | 10 +------ - src/ephy-activation.c | 71 +++++++++++++---------------------------------- - src/ephy-activation.h | 17 ++---------- - src/ephy-dbus.c | 2 ++ - src/ephy-main.c | 52 +++++++++++++++++++--------------- - 6 files changed, 73 insertions(+), 96 deletions(-) - -commit 3c094d65a71666e40b14cb8edc8bbb255b09b8cf -Author: Christian Persch -Date: Mon Jan 23 21:35:18 2006 +0000 - - Add a GError** to ephy_file_helpers_init and ephy_ensure_dir_exists, so we - - 2006-01-23 Christian Persch - - * embed/mozilla/MozDownload.cpp: - * lib/ephy-file-helpers.c: (ephy_file_helpers_init), - (ephy_ensure_dir_exists): - * lib/ephy-file-helpers.h: - - Add a GError** to ephy_file_helpers_init and ephy_ensure_dir_exists, - so we can show the error to the user in main(). - - * src/ephy-dbus.c: (ephy_dbus_connect_to_session_bus_cb), - (ephy_dbus_connect_to_system_bus_cb), (session_filter_func), - (system_filter_func), (ephy_dbus_connect_to_system_bus), - (ephy_dbus_connect_to_session_bus), (ephy_dbus_shutdown), - (ephy_dbus_finalize), (ephy_dbus_get_type), - (ephy_dbus_get_default), (ephy_dbus_get_bus), - (ephy_dbus_get_proxy), (_ephy_dbus_startup), (_ephy_dbus_release), - (_ephy_dbus_is_name_owner): - * src/ephy-dbus.h: - - Refactored. Propagate errors to callers via GError**, and change - lifecycle to the app lifetime. - - * src/ephy-lockdown.c: (ephy_lockdown_init), - (ephy_lockdown_finalize): - - Move gconf notification add/remove for the lockdown key dirs - here from main(). - - * src/ephy-shell.c: (ephy_shell_dispose), - (_ephy_shell_create_instance): - * src/ephy-shell.h: - * src/epiphany.defs: - - Remove ephy_shell_startup and related stuff. - - * src/ephy-main.c: (handle_url), (handle_email), - (shell_weak_notify), (dbus_g_proxy_finalized_cb), - (save_yourself_cb), (die_cb), (gnome_session_init), - (path_from_command_line_arg), (open_urls), (call_dbus_proxy), - (show_error_message), (main): - - Move all startup code to main(), so we can show errors to - the user instead of crashing when things go wrong. - Part of bug #326807. - - ChangeLog | 46 ++++ - embed/mozilla/MozDownload.cpp | 2 +- - lib/ephy-file-helpers.c | 42 ++- - lib/ephy-file-helpers.h | 8 +- - src/.cvsignore | 2 + - src/ephy-dbus.c | 319 ++++++++++++--------- - src/ephy-dbus.h | 15 +- - src/ephy-lockdown.c | 10 +- - src/ephy-main.c | 628 +++++++++++++++++++++++++++++++++--------- - src/ephy-shell.c | 256 +---------------- - src/ephy-shell.h | 39 +-- - src/epiphany.defs | 64 ----- - 12 files changed, 800 insertions(+), 631 deletions(-) - -commit b32d62815640aabd7e2b8f88ee8577ad02c7796f -Author: Christian Persch -Date: Mon Jan 23 19:34:28 2006 +0000 - - Invert button order. Bug #327381. - - 2006-01-23 Christian Persch - - * embed/mozilla/EphyPromptService.cpp: - - Invert button order. Bug #327381. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyPromptService.cpp | 28 ++++++++++++++++++++++++---- - 2 files changed, 30 insertions(+), 4 deletions(-) - -commit 5846c7c6496a3c544b16405ff539b2062282b080 -Author: Kjartan Maraas -Date: Mon Jan 23 10:19:53 2006 +0000 - - Updated Norwegian bokmål translation. Same. - - 2006-01-23 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 ++ - po/nb.po | 167 +++++++++++++++++++++++++++++++++-------------------------- - po/no.po | 167 +++++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 195 insertions(+), 144 deletions(-) - -commit 855576841b0471ecde4553d210c758a8e93bd588 -Author: Ankitkumar Rameshchandra Patel -Date: Mon Jan 23 09:39:43 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 175 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 108 insertions(+), 71 deletions(-) - -commit 89c8128ccae2e65468b4f515bb308c1f27f47df6 -Author: Ignacio Casal Quinteiro -Date: Sun Jan 22 18:53:24 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 160 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 93 insertions(+), 71 deletions(-) - -commit a15031fa988776912f9ee2a9c80e7ebbd0fbefc0 -Author: Crispin Flowerday -Date: Sun Jan 22 18:24:25 2006 +0000 - - When updating the address bar, always update the address state, sometimes - - 2006-01-22 Crispin Flowerday - - * lib/widgets/ephy-location-entry.c (ephy_location_entry_set_location): - - When updating the address bar, always update the address state, - sometimes it isn't updated if the text in the GtkEntry isn't - altered (and hence the 'changed' signal isn't called. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-location-entry.c | 3 +++ - 2 files changed, 11 insertions(+) - -commit ddc468228b25b1fe64a4926acdd176fab188d173 -Author: Crispin Flowerday -Date: Sun Jan 22 13:09:17 2006 +0000 - - Add guards to avoid crashing on exit if system bus isn't running. Fixes - - 2006-01-22 Crispin Flowerday - - * src/ephy-dbus.c (ephy_dbus_shutdown): - - Add guards to avoid crashing on exit if system bus - isn't running. Fixes bug #327845 - - ChangeLog | 7 +++++++ - src/ephy-dbus.c | 26 +++++++++++++++++--------- - 2 files changed, 24 insertions(+), 9 deletions(-) - -commit dc7da130e79afb2cbcbcd682cd43fc94d02ed818 -Author: Crispin Flowerday -Date: Sun Jan 22 12:56:03 2006 +0000 - - Updated British Engligh translation - - 2006-01-22 Crispin Flowerday - - * en_GB.po: Updated British Engligh translation - - po/ChangeLog | 4 + - po/en_GB.po | 3399 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1994 insertions(+), 1409 deletions(-) - -commit 3b221e541fef2c6c4f1948eda8be95f4d7bc941e -Author: Crispin Flowerday -Date: Sun Jan 22 12:35:30 2006 +0000 - - Change the EphyPermissionManager API so that it is more obvious what it - - 2006-01-22 Crispin Flowerday - - * embed/ephy-permission-manager.c: - (ephy_permission_manager_add_permission), - (ephy_permission_manager_remove_permission), - (ephy_permission_manager_clear_permissions), - (ephy_permission_manager_test_permission), - (ephy_permission_manager_list_permissions): - * embed/ephy-permission-manager.h: - * src/ephy-tab.c: (ephy_tab_get_popups_allowed), - (ephy_tab_set_popups_allowed): - * src/epiphany.defs: - * src/epiphany.override: - - Change the EphyPermissionManager API so that it is - more obvious what it does when used from python. - - ChangeLog | 17 +++++++++++++++++ - embed/ephy-permission-manager.c | 36 ++++++++++++++++++------------------ - embed/ephy-permission-manager.h | 26 +++++++++++++------------- - src/ephy-tab.c | 4 ++-- - src/epiphany.defs | 20 ++++++++++---------- - src/epiphany.override | 10 +++++----- - 6 files changed, 65 insertions(+), 48 deletions(-) - -commit 0730f856ac19d184decfcef122e18981d87d9f7e -Author: Crispin Flowerday -Date: Sun Jan 22 10:56:32 2006 +0000 - - embed/ephy-favicon-cache.c (remove_obsolete_icons) (icon_is_obsolete) - - 2006-01-22 Crispin Flowerday - - * embed/ephy-favicon-cache.c (remove_obsolete_icons) - (icon_is_obsolete) - * embed/ephy-history.c (page_is_obsolete, remove_obsolete_pages): - - Use non-deprecated functions when compiling against glib > 2.9 - - ChangeLog | 8 ++++++++ - embed/ephy-favicon-cache.c | 8 ++++++++ - embed/ephy-history.c | 8 ++++++++ - 3 files changed, 24 insertions(+) - -commit 2d0587ae39217669844319b98520ec527553c71c -Author: Ilkka Tuohela -Date: Sun Jan 22 08:30:03 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 ++ - po/fi.po | 167 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 103 insertions(+), 68 deletions(-) - -commit b29d9d63602dc22ee8560fb2fade63af943d9660 -Author: Clytie Siddall -Date: Sun Jan 22 04:50:22 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 168 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 100 insertions(+), 72 deletions(-) - -commit 33d13b4345f3f1ce843a2d34aab9ad81d3d2d571 -Author: Francisco Javier F. Serrador -Date: Sun Jan 22 02:09:00 2006 +0000 - - Updated Spanish translation. - - 2006-01-22 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 227 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 142 insertions(+), 89 deletions(-) - -commit 1ec2a14e58cd7b2f2af47f8d806eb7c7fe3052a5 -Author: Reinout van Schouwen -Date: Sun Jan 22 01:34:04 2006 +0000 - - Jan 22 2006 Reinout van Schouwen - - * Jan 22 2006 Reinout van Schouwen - - * Updated Dutch translation - - help/ChangeLog | 4 + - help/nl/nl.po | 2953 +++++++++++++++++--------------------------------------- - 2 files changed, 892 insertions(+), 2065 deletions(-) - -commit 550513c30a2191f88c5c39c37659027abc2927e6 -Author: Peter Harvey -Date: Sat Jan 21 23:54:23 2006 +0000 - - src/ephy-window.c - - 2006-01-22 Peter Harvey - - * src/ephy-window.c - - Fixed the mouse cursor entry/exit code for the toolbar. I have - a suspicion that a bug may have been fixed in Gtk+ because this - solution was tried before. Bug #326817. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 6 ++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit c4a28c0e1450ebbf70a83a9c5ee94aff0d9b7d34 -Author: Crispin Flowerday -Date: Sat Jan 21 23:24:35 2006 +0000 - - - Change EphyEmbedEvent.get_property to .get_event_property - Wrap - - 2006-01-21 Crispin Flowerday - - * src/epiphany.defs: - * src/epiphany.override: - - - Change EphyEmbedEvent.get_property to .get_event_property - - Wrap EphyPermissionManager.list(), and the boxed - type it uses. - - Wrap EphyEmbed.get_security_level() - - ChangeLog | 10 ++++++++++ - src/epiphany.defs | 14 ++++++++++++-- - src/epiphany.override | 46 ++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 68 insertions(+), 2 deletions(-) - -commit c7f3a04884cb186d86ec96ee8103c526a70d222e -Author: Crispin Flowerday -Date: Sat Jan 21 23:17:47 2006 +0000 - - Put blank lines between the paragraphs in the licence dialog. - - 2006-01-21 Crispin Flowerday - - * src/window-commands.c (window_cmd_help_about): - - Put blank lines between the paragraphs in the - licence dialog. - - ChangeLog | 7 +++++++ - src/window-commands.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 3f95db7b9894d8c0d0d0c505be6b58cd93cec6ad -Author: Jean-François Rameau -Date: Sat Jan 21 23:04:59 2006 +0000 - - Remove both session/system filters before finalizing EphyDbus object. Fix - - 2006-01-22 Jean-François Rameau - - * src/ephy-dbus.c: (ephy_dbus_shutdown): - - Remove both session/system filters before finalizing EphyDbus object. - Fix #327845. - - ChangeLog | 7 +++++++ - src/ephy-dbus.c | 7 +++++++ - 2 files changed, 14 insertions(+) - -commit 3eccb1ab3f34e2e83a6f356fb787d99726b7c3ad -Author: Peter Harvey -Date: Sat Jan 21 22:38:53 2006 +0000 - - src/bookmarks/ephy-bookmark-action.c - - 2006-01-22 Peter Harvey - - * src/bookmarks/ephy-bookmark-action.c - * src/bookmarks/ephy-bookmark-properties.c - - Remove the user-icon functionality for now. Too many bugs. - Note that support for the user-icon field still exists in - the bookmarks database itself. - - ChangeLog | 9 ++ - src/bookmarks/ephy-bookmark-action.c | 10 +- - src/bookmarks/ephy-bookmark-properties.c | 208 +------------------------------ - 3 files changed, 17 insertions(+), 210 deletions(-) - -commit dbc0b3af9051885a4f70e831e16fa535b6bf7866 -Author: Christian Persch -Date: Sat Jan 21 21:07:19 2006 +0000 - - Fix the previous commit. - - 2006-01-21 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Fix the previous commit. - - ChangeLog | 6 ++++++ - src/window-commands.c | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit f869893ec4745e99d49b279e33ef5abaa2f69958 -Author: Crispin Flowerday -Date: Sat Jan 21 20:20:30 2006 +0000 - - src/bookmarks/ephy-bookmarks-editor.c (cmd_bookmarks_export) - - 2006-01-21 Crispin Flowerday - - * src/bookmarks/ephy-bookmarks-editor.c (cmd_bookmarks_export) - - Add back the gtk_widget_destroy() to really fix bug #327438 - - ChangeLog | 8 +++++++- - src/bookmarks/ephy-bookmarks-editor.c | 2 ++ - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit e8af69416ebfc3149e4f1805788b20e7cc21c126 -Author: Ilkka Tuohela -Date: Sat Jan 21 19:41:27 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 ++++ - po/fi.po | 26 ++++++++++++++++++++------ - 2 files changed, 24 insertions(+), 6 deletions(-) - -commit 013fd44c1e6f4941d7efd22bca75d8a9fd1353b2 -Author: Crispin Flowerday -Date: Sat Jan 21 19:14:36 2006 +0000 - - Fix bookmark exporting, so that it can be cancelled. Fixes bug #327438 - - 2006-01-21 Crispin Flowerday - - * src/bookmarks/ephy-bookmarks-editor.c (cmd_bookmarks_export): - - Fix bookmark exporting, so that it can be cancelled. - Fixes bug #327438 - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 11 +++++++---- - 2 files changed, 14 insertions(+), 4 deletions(-) - -commit 225c1762995be0b38aa19ff221bafd2136532b6b -Author: Christian Persch -Date: Sat Jan 21 18:48:54 2006 +0000 - - Add licence to about dialogue. Patch by Brian Pepple, bug #327998. - - 2006-01-21 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Add licence to about dialogue. Patch by Brian Pepple, - bug #327998. - - ChangeLog | 7 +++++++ - src/window-commands.c | 23 +++++++++++++++++++++++ - 2 files changed, 30 insertions(+) - -commit 4f333655bb9379139512d9523ec08a450ad188b1 -Author: Yair Hershkovitz -Date: Sat Jan 21 16:36:16 2006 +0000 - - Updated Hebrew translation. : - - 2006-01-21 Yair Hershkovitz - - * he.po: Updated Hebrew translation. - : - - po/ChangeLog | 4 + - po/he.po | 2291 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1331 insertions(+), 964 deletions(-) - -commit e086a5370c8544e116c8a5115298e065c6119c3f -Author: Theppitak Karoonboonyanan -Date: Sat Jan 21 11:24:07 2006 +0000 - - Updated Thai translation. - - 2006-01-21 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 723 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 447 insertions(+), 280 deletions(-) - -commit 39897cfc82fb310e3a52b0f6d6aa3bb6c3672d45 -Author: Reinout van Schouwen -Date: Sat Jan 21 00:16:34 2006 +0000 - - Jan 21 2006 Reinout van Schouwen - - * Jan 21 2006 Reinout van Schouwen - - * C/epiphany.xml: add abstract - - help/C/epiphany.xml | 5 ++++- - help/ChangeLog | 4 ++++ - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 735b3d7c5e94686fc3d9213abe546aa9350aa410 -Author: Ignacio Casal Quinteiro -Date: Fri Jan 20 11:53:11 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - po/gl.po | 22 +++++++++++++++++++--- - 2 files changed, 23 insertions(+), 3 deletions(-) - -commit 709f0c7b103ad27b9e72f0352572713cbf4e0c21 -Author: Amanpreet Singh Alam -Date: Fri Jan 20 08:10:02 2006 +0000 - - update for changes - - po/pa.po | 829 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 491 insertions(+), 338 deletions(-) - -commit 9b80055a1a8ff057b44836cb6d8766a3dca452c8 -Author: Ilkka Tuohela -Date: Fri Jan 20 05:38:06 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 698 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 434 insertions(+), 268 deletions(-) - -commit bef9fca26c5746d7f05d8914edbe5ad0597c4668 -Author: Adam Weinberger -Date: Fri Jan 20 04:14:22 2006 +0000 - - Added missing file. Updated Canadian English translation. - - - 2006-01-19 Adam Weinberger - - * POTFILES.in: Added missing file. - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 5 +++++ - po/POTFILES.in | 1 + - po/en_CA.po | 54 ++++++++++++++++++++++++++++++++++-------------------- - 3 files changed, 40 insertions(+), 20 deletions(-) - -commit 12d4758310de58f192e4b3b48d32413e6a35e728 -Author: Kjartan Maraas -Date: Thu Jan 19 13:22:56 2006 +0000 - - Updated Norwegian bokmål translation. Same. - - 2006-01-19 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 + - po/nb.po | 774 +++++++++++++++++++++++++++++++++++------------------------ - po/no.po | 774 +++++++++++++++++++++++++++++++++++------------------------ - 3 files changed, 919 insertions(+), 634 deletions(-) - -commit 249fce60f59693cb94f63e20886790cbc394a8b2 -Author: Ignacio Casal Quinteiro -Date: Thu Jan 19 12:07:22 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/gl.po | 678 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 414 insertions(+), 268 deletions(-) - -commit 40d9d3b3a48d7a884c227bea31bde542d77d0a91 -Author: Clytie Siddall -Date: Thu Jan 19 11:18:31 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 678 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 414 insertions(+), 268 deletions(-) - -commit d990c1f0721cd9cd97cdaa71751bd941bdd0bf5b -Author: Satoru SATOH -Date: Thu Jan 19 10:32:29 2006 +0000 - - Updated Japanese Translation. - - 2006-01-19 Satoru SATOH - - * ja.po: Updated Japanese Translation. - - po/ChangeLog | 6 +- - po/ja.po | 818 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 505 insertions(+), 319 deletions(-) - -commit 65d47aa400ec4fffd9f600e5abc2e94424d92f5c -Author: Ankitkumar Rameshchandra Patel -Date: Thu Jan 19 07:13:28 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++++ - po/gu.po | 75 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 43 insertions(+), 36 deletions(-) - -commit 3bcc198d98cfd0cbdc4e3d9dd4b1ad363af14bc7 -Author: Reinout van Schouwen -Date: Thu Jan 19 01:35:00 2006 +0000 - - Jan 19 2006 Reinout van Schouwen - - * Jan 19 2006 Reinout van Schouwen - - * help/C/epiphany.xml: update section on zoom factor - * po/nl.po: update Dutch translation - - help/C/epiphany.xml | 4799 ++++++++++++++++++++++++++------------------------- - help/ChangeLog | 5 + - po/ChangeLog | 4 + - po/nl.po | 776 +++++---- - 4 files changed, 2898 insertions(+), 2686 deletions(-) - -commit c293c39ad701a88481b94c3c9d369ed181e7e548 -Author: Francisco Javier F. Serrador -Date: Wed Jan 18 17:21:12 2006 +0000 - - Updated Spanish translation. - - 2006-01-18 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 757 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 456 insertions(+), 305 deletions(-) - -commit 395cb522892fd78d8da2be674bcd9ea0075073d0 -Author: Alexander Shopov -Date: Wed Jan 18 16:58:23 2006 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2006-01-18 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - po/ChangeLog | 5 +++++ - po/bg.po | 16 ++++++++-------- - 2 files changed, 13 insertions(+), 8 deletions(-) - -commit 84cad45ae680eb97b4e631ad3bc7a4a0f223dff2 -Author: Alexander Shopov -Date: Wed Jan 18 16:23:45 2006 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2006-01-18 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 791 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 467 insertions(+), 329 deletions(-) - -commit bc05ca2fb4d1d031e5ba4f081666bfcbec875872 -Author: Christian Persch -Date: Wed Jan 18 15:53:54 2006 +0000 - - Decouple embed single instantiation and initialisation. Prevents - - 2006-01-18 Christian Persch - - * embed/ephy-embed-shell.c: (impl_get_embed_single): - * embed/ephy-embed-single.c: (ephy_embed_single_init): - * embed/ephy-embed-single.h: - * embed/mozilla/mozilla-embed-single.cpp: - - Decouple embed single instantiation and initialisation. - Prevents double-initialisation on startup. - - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyContentPolicy.h: - - Remove embed single variable, it was unused. - - ChangeLog | 15 ++++++++++++++ - embed/ephy-embed-shell.c | 37 ++++++++++++++++++++++++++++++++-- - embed/ephy-embed-single.c | 14 +++++++++++++ - embed/ephy-embed-single.h | 3 +++ - embed/mozilla/EphyContentPolicy.cpp | 3 --- - embed/mozilla/EphyContentPolicy.h | 3 +-- - embed/mozilla/mozilla-embed-single.cpp | 22 +++++--------------- - po/POTFILES.in | 1 + - 8 files changed, 74 insertions(+), 24 deletions(-) - -commit 539426a9bd327676ad71b263e497ce19da1adde9 -Author: Christian Persch -Date: Wed Jan 18 14:21:11 2006 +0000 - - Add caret mode indicator UI. Bug #145581. - - 2006-01-18 Christian Persch - - * src/ephy-statusbar.c: (create_caret_indicator), - (ephy_statusbar_init), (ephy_statusbar_new), - (ephy_statusbar_set_caret_mode): - * src/ephy-statusbar.h: - * src/ephy-window.c: (browse_with_caret_notifier): - - Add caret mode indicator UI. Bug #145581. - - ChangeLog | 10 ++++++++++ - src/ephy-statusbar.c | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-statusbar.h | 3 +++ - src/ephy-window.c | 8 ++++++-- - 4 files changed, 73 insertions(+), 2 deletions(-) - -commit d52eb5001589d5480dfa2f661c37a7b8a3576fcd -Author: Funda Wang -Date: Wed Jan 18 00:10:19 2006 +0000 - - Updated epiphany zh_CN translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 757 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 451 insertions(+), 310 deletions(-) - -commit bd5398df64b4c048ec68bd896865f464fa4119af -Author: Peter Harvey -Date: Tue Jan 17 22:56:59 2006 +0000 - - src/bookmarks/ephy-bookmarks-menu.c - - 2006-01-18 Peter Harvey - - * src/bookmarks/ephy-bookmarks-menu.c - - Do not add OpenTabs action if too-few items in the menu. - Bug #327390. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-menu.c | 11 +++++++---- - 2 files changed, 14 insertions(+), 4 deletions(-) - -commit 8858f924413a5a84159813a219b9d906d81cc0bc -Author: Peter Harvey -Date: Tue Jan 17 22:28:57 2006 +0000 - - src/bookmarks/ephy-bookmark-properties.c - - 2006-01-18 Peter Harvey - - * src/bookmarks/ephy-bookmark-properties.c - - Removed inappropriate bold and mnemonic. - Bug #327401. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmark-properties.c | 21 ++++----------------- - 2 files changed, 11 insertions(+), 17 deletions(-) - -commit 7a8aacf94498eca3b2b3b7306aeda7158387582c -Author: Christian Persch -Date: Tue Jan 17 19:44:03 2006 +0000 - - Put "Off" at the top of the combo, followed by a separator row. Bug - - 2006-01-17 Christian Persch - - * src/prefs-dialog.c: (row_is_separator), (setup_fonts_dialog), - (create_autodetectors_combo), (prefs_dialog_init): - - Put "Off" at the top of the combo, followed by a separator row. - Bug #125723. - - ChangeLog | 8 ++++ - src/prefs-dialog.c | 116 +++++++++++++++++++++++++++++++++++++++++++++++++---- - 2 files changed, 116 insertions(+), 8 deletions(-) - -commit 773c44f34acfbf279907c31e91ead8a69d0912cb -Author: Crispin Flowerday -Date: Tue Jan 17 19:35:34 2006 +0000 - - When adding a column that can be sorted on, re-create the sort model, so - - 2006-01-17 Crispin Flowerday - - * lib/widgets/ephy-node-view.c (ephy_node_view_add_column): - - When adding a column that can be sorted on, re-create the - sort model, so that it sets up the sort method correctly. - Fixes bug #320686 - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-node-view.c | 8 ++++++++ - 2 files changed, 16 insertions(+) - -commit bbe7372f42fb7c1128c48b106ba07e7c5b7c3f70 -Author: Adam Weinberger -Date: Tue Jan 17 19:30:10 2006 +0000 - - Updated Canadian English translation. - - - 2006-01-17 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 674 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 413 insertions(+), 265 deletions(-) - -commit f81cb08fcbb2efc28cfccfa3fd685ad9d8c0e377 -Author: Crispin Flowerday -Date: Tue Jan 17 18:54:32 2006 +0000 - - Change the 'ephy_embed_event_get_property' function return a GValue* - - 2006-01-17 Crispin Flowerday - - * embed/ephy-embed-event.c: (ephy_embed_event_get_property): - * embed/ephy-embed-event.h: - * embed/mozilla/mozilla-embed-event.cpp: - * src/ephy-tab.c: (save_property_url), - (ephy_tab_dom_mouse_click_cb): - * src/ephy-window.c: (update_popups_tooltips), (show_embed_popup): - * src/epiphany.defs: - * src/epiphany.override: - * src/popup-commands.c: (popup_cmd_link_in_new_window), - (popup_cmd_link_in_new_tab), (popup_cmd_bookmark_link), - (popup_cmd_copy_link_address), (save_property_url), - (popup_cmd_open_link), (popup_cmd_set_image_as_background), - (popup_cmd_copy_image_location), (popup_cmd_open_image): - - Change the 'ephy_embed_event_get_property' function - return a GValue* rather than taking a pointer to it as - an argument. - - ChangeLog | 20 ++++++++++++++++++++ - embed/ephy-embed-event.c | 7 +++---- - embed/ephy-embed-event.h | 11 ++++------- - embed/mozilla/mozilla-embed-event.cpp | 7 +++---- - src/ephy-tab.c | 4 ++-- - src/ephy-window.c | 8 ++++---- - src/epiphany.defs | 3 +-- - src/epiphany.override | 2 +- - src/popup-commands.c | 28 ++++++++++++++-------------- - 9 files changed, 52 insertions(+), 38 deletions(-) - -commit ce161c639c50899f3b720e31a55397542e6a6a4c -Author: Christian Persch -Date: Tue Jan 17 15:06:50 2006 +0000 - - Revert - - data/glade/prefs-dialog.glade | 32 ++++++++++++++++---------------- - 1 file changed, 16 insertions(+), 16 deletions(-) - -commit 3df4179bdf257cd15f69083158f591a3f64798d0 -Author: Christian Persch -Date: Tue Jan 17 14:24:06 2006 +0000 - - Fix leaks, minor cleanups. - - 2006-01-17 Christian Persch - - * data/glade/prefs-dialog.glade: - * embed/mozilla/mozilla-notifiers.cpp: - - Fix leaks, minor cleanups. - - ChangeLog | 7 +++++ - data/glade/prefs-dialog.glade | 32 +++++++++++----------- - embed/mozilla/mozilla-notifiers.cpp | 54 ++++++++++++++++--------------------- - 3 files changed, 46 insertions(+), 47 deletions(-) - -commit f220f9282e63ca352def47b86ec5f9c5c5c57696 -Author: Christian Persch -Date: Tue Jan 17 13:58:21 2006 +0000 - - Add event type to the callback. - - 2006-01-17 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_monitor_timeout_cb), - (ephy_file_monitor_cb): - * lib/ephy-file-helpers.h: - - Add event type to the callback. - - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - - New function, like NS_NewFileURI (which we can't use since - nsNetUtil.h conflicts with embed strings). - - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - - Check that the user CSS file exists before registering it. - Also handle file-deleted events. - - * src/bookmarks/ephy-bookmarks-menu.c: (ephy_bookmarks_menu_build): - * src/bookmarks/ephy-topics-palette.c: - (ephy_topics_palette_constructor), - (ephy_topics_palette_class_init): - - Build fixes. - - ChangeLog | 27 +++++++++++++ - embed/mozilla/EphyUtils.cpp | 16 ++++++-- - embed/mozilla/EphyUtils.h | 4 ++ - embed/mozilla/mozilla-embed-single.cpp | 74 ++++++++++++++++++++++++---------- - embed/mozilla/mozilla-notifiers.cpp | 7 ++++ - lib/ephy-file-helpers.c | 21 ++++++++-- - lib/ephy-file-helpers.h | 2 +- - src/bookmarks/ephy-bookmarks-menu.c | 4 +- - src/bookmarks/ephy-topics-palette.c | 10 +---- - 9 files changed, 126 insertions(+), 39 deletions(-) - -commit b89fb9d5a5860e5349115717d48b240cf9715f4b -Author: Ankitkumar Rameshchandra Patel -Date: Tue Jan 17 13:47:52 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 676 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 424 insertions(+), 256 deletions(-) - -commit 5c0014f08cb0728a04a0a689eda1e7d1eab80694 -Author: Christian Persch -Date: Tue Jan 17 13:20:36 2006 +0000 - - Fix compile with libgnome HEAD. - - 2006-01-17 Christian Persch - - * src/ephy-main.c: - - Fix compile with libgnome HEAD. - - ChangeLog | 6 ++++++ - src/ephy-main.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 1c5e22d9e816f8196e99dd3ae500689d71a62f0b -Author: Christian Persch -Date: Tue Jan 17 00:42:04 2006 +0000 - - Post-release version bump. - - 2006-01-17 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a64fca9e1257503b5d3b5944f2254c227775b9f9 -Author: Christian Persch -Date: Tue Jan 17 00:37:55 2006 +0000 - - === Release 1.9.5.1 === - - 2006-01-17 Christian Persch - - === Release 1.9.5.1 === - - * NEWS: - * configure.ac: - * data/Makefile.am: - * data/chrome/Makefile.am: - * po/POTFILES.in: - R src/bookmarks/ephy-new-bookmark.c: - R src/bookmarks/ephy-new-bookmark.h: - R src/bookmarks/ephy-topics-selector.c: - R src/bookmarks/ephy-topics-selector.h: - - Fix the tarball. - - ChangeLog | 16 ++ - NEWS | 6 + - configure.ac | 2 +- - data/Makefile.am | 4 +- - data/chrome/Makefile.am | 7 + - po/POTFILES.in | 3 +- - src/bookmarks/ephy-new-bookmark.c | 496 ----------------------------------- - src/bookmarks/ephy-new-bookmark.h | 72 ----- - src/bookmarks/ephy-topics-selector.c | 353 ------------------------- - src/bookmarks/ephy-topics-selector.h | 64 ----- - 10 files changed, 33 insertions(+), 990 deletions(-) - -commit 4e874b34f9b185ce3d2c29a97c4b8dd78861b4e0 -Author: Christian Persch -Date: Mon Jan 16 23:58:51 2006 +0000 - - === Release 1.9.5 === - - 2006-01-17 Christian Persch - - === Release 1.9.5 === - - * configure.ac: - * data/chrome/Makefile.am: - - Updates. - - ChangeLog | 9 +++++++++ - configure.ac | 2 +- - data/chrome/Makefile.am | 3 ++- - 3 files changed, 12 insertions(+), 2 deletions(-) - -commit 5a9945adda3cd770a0d72f13e55f11950fd66015 -Author: Christian Persch -Date: Mon Jan 16 23:51:41 2006 +0000 - - Fix number of /'s in URI. - - 2006-01-17 Christian Persch - - * data/chrome/epiphany.manifest.in: - - Fix number of /'s in URI. - - * data/epiphany.schemas.in: - - Add new entries. - - * embed/mozilla/EphyAboutModule.cpp: - - Fix title. - - * data/glade/prefs-dialog.glade: - * embed/ephy-embed-prefs.h: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-notifiers.h: - * lib/eel-gconf-extensions.c: (eel_gconf_unset_key), - (eel_gconf_notify): - * lib/eel-gconf-extensions.h: - * lib/egg/egg-editable-toolbar.c: (popup_context_menu_cb), - (button_press_event_cb), (egg_editable_toolbar_set_ui_manager), - (egg_editable_toolbar_set_selected): - * lib/ephy-dialog.c: (set_value_from_pref), (set_pref_from_value), - (set_value_from_togglebutton), (strcmp_with_null), - (get_index_from_value), (compare_values), - (set_togglebutton_from_value), (set_pref_from_info_and_emit), - (spinbutton_changed_cb), (save_info): - * lib/ephy-dialog.h: - * lib/ephy-file-helpers.c: (ephy_file_monitor_timeout_cb), - (ephy_file_monitor_cb), (ephy_file_monitor_add), - (ephy_file_monitor_cancel): - * lib/ephy-file-helpers.h: - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_load_file): - * src/ephy-window.c: - * src/popup-commands.c: (popup_cmd_bookmark_link): - * src/prefs-dialog.c: (prefs_dialog_finalize), (setup_font_combo), - (fonts_language_changed_cb), (font_prefs_dialog_response_cb), - (row_is_separator), (setup_fonts_dialog), - (font_prefs_button_clicked_cb), (css_checkbox_toggled), - (css_edit_button_clicked_cb), (prefs_dialog_init): - - Rework font prefs, and add user stylesheet setting. - - * src/bookmarks/ephy-bookmark-action-group.c: (node_added_cb): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_get_local): - * src/window-commands.c: (window_cmd_file_bookmark_page): - - Some build fixes. - - ChangeLog | 53 ++ - data/chrome/epiphany.manifest.in | 2 +- - data/epiphany.schemas.in | 22 + - data/glade/prefs-dialog.glade | 860 ++++++++++++++++------------- - embed/ephy-embed-prefs.h | 7 + - embed/mozilla/EphyAboutModule.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 178 +++++- - embed/mozilla/mozilla-notifiers.cpp | 560 ++++++++++++++++--- - embed/mozilla/mozilla-notifiers.h | 12 +- - lib/eel-gconf-extensions.c | 24 + - lib/eel-gconf-extensions.h | 2 + - lib/egg/egg-editable-toolbar.c | 14 +- - lib/ephy-dialog.c | 57 +- - lib/ephy-dialog.h | 5 +- - lib/ephy-file-helpers.c | 148 +++++ - lib/ephy-file-helpers.h | 14 + - src/bookmarks/ephy-bookmark-action-group.c | 1 + - src/bookmarks/ephy-bookmarks.c | 6 +- - src/ephy-extensions-manager.c | 1 + - src/ephy-window.c | 4 + - src/popup-commands.c | 3 +- - src/prefs-dialog.c | 323 ++++++++--- - src/window-commands.c | 2 +- - 23 files changed, 1728 insertions(+), 572 deletions(-) - -commit e469aef9ea4efd1098ad6982f0da77fed594faf1 -Author: Peter Harvey -Date: Mon Jan 16 23:43:36 2006 +0000 - - src/bookmarks/ephy-bookmark-action.c - - 2006-01-17 Peter Harvey - - * src/bookmarks/ephy-bookmark-action.c - - Removed left-over function. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmark-action.c | 12 ------------ - 2 files changed, 6 insertions(+), 12 deletions(-) - -commit fbc30b92399c79c238d502888a964ba3976a1623 -Author: Peter Harvey -Date: Mon Jan 16 23:38:26 2006 +0000 - - src/bookmarks/ephy-bookmarks-menu.c - - 2006-01-17 Peter Harvey - - * src/bookmarks/ephy-bookmarks-menu.c - - Added the 'Local' topic to bookmarks menu. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-menu.c | 24 +++++++++++++++++++----- - 2 files changed, 25 insertions(+), 5 deletions(-) - -commit 6e4d35a67c26a9d31675f53915c106c98a027ef5 -Author: Peter Anthony Harvey -Date: Mon Jan 16 23:27:10 2006 +0000 - - Updating NEWS - - NEWS | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit f6de3bd206db671f1e7abbcddb20080532a2d830 -Author: Peter Harvey -Date: Mon Jan 16 23:08:36 2006 +0000 - - src/bookmarks/Makefile.am - - 2006-01-17 Peter Harvey - - * src/bookmarks/Makefile.am - - Forgotten Makefile changes. - - * src/epiphany.defs - - 'Fixes' for the python interface. - Probably need to regenerate somehow, but don't know how do it correctly. - - ChangeLog | 11 +++++++++++ - src/bookmarks/Makefile.am | 6 ++---- - src/epiphany.defs | 18 ------------------ - 3 files changed, 13 insertions(+), 22 deletions(-) - -commit fc06f146e376e09becdfcdd1076dcf08b6ef7626 -Author: Peter Harvey -Date: Mon Jan 16 23:03:28 2006 +0000 - - src/Makefile.am - - 2006-01-17 Peter Harvey - - * src/Makefile.am - - Removed ephy-new-bookmark and ephy-topics-selector from the Makefile. - - * src/ephy-history-window.c - * src/popup-commands.c - * src/window-commands.c - * src/bookmarks/ephy-bookmarks-editor.c - - Removed all the slightly different bits of code to create a - bookmark and called ephy_bookmarks_ui_add_bookmark instead. - - * src/bookmarks/ephy-bookmarks.c - * src/bookmarks/ephy-bookmarks.h - - Moved the hashtable for bookmark windows to ephy-bookmarks-ui. - Added a new field "usericon" to the ephynode/bookmarks database, - to store the URL of the user-defined icon (if any). It can be - NULL (use site icon), "" (use none), or a URL. - - * src/bookmarks/ephy-bookmark-properties.c - * src/bookmarks/ephy-bookmark-properties.h - - Large changes to the bookmark properties window to handle different - use cases (adding or changing a bookmark), to use the new topics - palette widget, and to support the new usericon. - - * src/bookmarks/ephy-bookmarks-ui.c - * src/bookmarks/ephy-bookmarks-ui.h - - Large additions to ephy-bookmarks-ui to replace ephy-new-bookmark. - Fixed some bugs in the datatype handlers for the toolbar which - are supplied by ephy-bookmarks-ui. - - ChangeLog | 36 ++ - src/Makefile.am | 3 +- - src/bookmarks/ephy-bookmark-properties.c | 451 +++++++++++++++++++---- - src/bookmarks/ephy-bookmark-properties.h | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 4 +- - src/bookmarks/ephy-bookmarks-ui.c | 602 +++++++++++++++++++++++++------ - src/bookmarks/ephy-bookmarks-ui.h | 10 + - src/bookmarks/ephy-bookmarks.c | 111 +++--- - src/bookmarks/ephy-bookmarks.h | 9 +- - src/ephy-history-window.c | 20 +- - src/popup-commands.c | 18 +- - src/window-commands.c | 24 +- - 12 files changed, 975 insertions(+), 315 deletions(-) - -commit 7eff391d24a75404504a52ef7b7d2b38ca6d76f6 -Author: Peter Harvey -Date: Mon Jan 16 22:52:13 2006 +0000 - - src/bookmarks/ephy-topics-palette.c src/bookmarks/ephy-topics-palette.h - - 2006-01-17 Peter Harvey - - * src/bookmarks/ephy-topics-palette.c - * src/bookmarks/ephy-topics-palette.h - - Implemented a new widget for topic selection that tries - to organise the topics for the user. - - ChangeLog | 8 + - src/bookmarks/ephy-topics-palette.c | 528 ++++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-topics-palette.h | 60 ++++ - 3 files changed, 596 insertions(+) - -commit 8b7a35d4587cbd28c7c7bebabddb8a27c9f12bc9 -Author: Peter Harvey -Date: Mon Jan 16 22:50:01 2006 +0000 - - src/bookmarks/ephy-topic-action.c - - 2006-01-17 Peter Harvey - - * src/bookmarks/ephy-topic-action.c - - Handle DnD to topics on the toolbar. - - ChangeLog | 6 ++++ - src/bookmarks/ephy-topic-action.c | 58 +++++++++++++++++++++++++++++++++++++++ - 2 files changed, 64 insertions(+) - -commit 0d14d3a9aebf4dc47e77a7ff16f8a8bd3632392a -Author: Peter Harvey -Date: Mon Jan 16 22:45:04 2006 +0000 - - lib/egg/egg-editable-toolbar.h - - 2006-01-17 Peter Harvey - - * lib/egg/egg-editable-toolbar.h - - Checking in forgotten changes to the editable toolbar API. - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.h | 7 +++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit f02476659ded2fb8c2d3cc884127140c58ab20ee -Author: Peter Anthony Harvey -Date: Mon Jan 16 22:43:17 2006 +0000 - - Checking in missed changelog entries. - - ChangeLog | 28 ++++++++++++++++++++++++++++ - 1 file changed, 28 insertions(+) - -commit 7d69eb01edc8405fccab68aebbc508acbd381840 -Author: Peter Anthony Harvey -Date: Mon Jan 16 22:30:39 2006 +0000 - - Cleaned up ephy-bookmark-action.c to match the new - gtk-ui-manager based popup menu on the toolbar. - - src/bookmarks/ephy-bookmark-action.c | 120 ++++++----------------------------- - src/bookmarks/ephy-bookmark-action.h | 5 ++ - 2 files changed, 26 insertions(+), 99 deletions(-) - -commit 29e1e69730fda11253fdc888768d7eb727636d5c -Author: Reinout van Schouwen -Date: Mon Jan 16 22:29:10 2006 +0000 - - Jan 16 2006 Reinout van Schouwen - - * Jan 16 2006 Reinout van Schouwen - - * help/ChangeLog - * help/C/figures/ephy-screenshot.png: new screenshot - * help/nl/figures/ephy-screenshot.png: new screenshot - * po/ChangeLog po/nl.po: updated Dutch translation - - help/C/figures/ephy-screenshot.png | Bin 56909 -> 53933 bytes - help/ChangeLog | 7 + - help/nl/figures/ephy-screenshot.png | Bin 55052 -> 55836 bytes - po/ChangeLog | 4 + - po/nl.po | 249 ++++++++++++++++++++---------------- - 5 files changed, 148 insertions(+), 112 deletions(-) - -commit 770506ea77c2d28135e69a6ac906880cf437a957 -Author: Peter Anthony Harvey -Date: Mon Jan 16 22:27:56 2006 +0000 - - EggEditableToolbar no longer supports middle-mouse-button drag. - Fixed a bug in the popup-menu drag. - Now uses GtkUIManager for the popup-menu. - - lib/egg/egg-editable-toolbar.c | 378 ++++++++++++++--------------------------- - 1 file changed, 124 insertions(+), 254 deletions(-) - -commit bffb52f21bdd41a31e497bb017e085435e4aa31f -Author: Peter Anthony Harvey -Date: Mon Jan 16 22:25:16 2006 +0000 - - Added stock_bookmark as one of our stock icons. - - lib/ephy-stock-icons.c | 1 + - lib/ephy-stock-icons.h | 1 + - 2 files changed, 2 insertions(+) - -commit 77ae969e519a6105c8467dbd4333f918dd55668f -Author: Peter Anthony Harvey -Date: Mon Jan 16 22:24:00 2006 +0000 - - Do not try to store a string parameter if it is null (avoids segfault). - - lib/ephy-node.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit fc5cf8d5c9d92fa785bb6605519161658edf2334 -Author: Reinout van Schouwen -Date: Mon Jan 16 21:36:40 2006 +0000 - - Mon Jan 16 2005 Reinout van Schouwen - - * Mon Jan 16 2005 Reinout van Schouwen - - * NEWS: update for 1.9.5 - - NEWS | 44 +++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 43 insertions(+), 1 deletion(-) - -commit 5564037c48257090d774f2c654e208b617f756a8 -Author: Crispin Flowerday -Date: Mon Jan 16 21:29:40 2006 +0000 - - When looking at modified text areas and forms, don't look at disabled or - - 2006-01-16 Crispin Flowerday - - * embed/mozilla/EphyBrowser.cpp: - - When looking at modified text areas and forms, don't - look at disabled or invisible elements. Patch by - chpe, part of bug #155603 - - ChangeLog | 8 ++++ - embed/mozilla/EphyBrowser.cpp | 95 +++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 103 insertions(+) - -commit 10696dfdc72198fa1e3c05c86a9b6cae0bc704ae -Author: Ilkka Tuohela -Date: Mon Jan 16 18:12:04 2006 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 254 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 141 insertions(+), 117 deletions(-) - -commit 48fad6a9860327aea6efc17fa47289840529410b -Author: Ignacio Casal Quinteiro -Date: Mon Jan 16 17:16:02 2006 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 203 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 102 insertions(+), 105 deletions(-) - -commit eb8f4300826298421032bc085f7226d213b077e1 -Author: Adam Weinberger -Date: Mon Jan 16 04:13:08 2006 +0000 - - Updated Canadian English translation. - - - 2006-01-15 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 +++ - po/en_CA.po | 84 +++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 56 insertions(+), 32 deletions(-) - -commit 73e8920c461a5403f8f0ad1e9754910c3089ef2f -Author: Christian Persch -Date: Sun Jan 15 22:42:46 2006 +0000 - - Add NetworkManager magic for connection status autodetection. Defaults to - - 2006-01-15 Christian Persch - - * configure.ac: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - * src/Makefile.am: - - Add NetworkManager magic for connection status autodetection. - Defaults to disabled because I'm not very happy with the libnm-glib - implementation. Oh, and it may crash on startup, too. - - ChangeLog | 11 ++++ - configure.ac | 23 ++++++++ - embed/mozilla/Makefile.am | 5 ++ - embed/mozilla/mozilla-embed-single.cpp | 104 ++++++++++++++++++++++++++++++--- - src/Makefile.am | 7 ++- - 5 files changed, 141 insertions(+), 9 deletions(-) - -commit 2097f11220e25f83dda2026d07cc66e7a0a31544 -Author: Jean-François Rameau -Date: Sun Jan 15 21:05:31 2006 +0000 - - Add a method to EphyAdblock interface, ephy_adblock_manager_edit_rule, so - - 2006-01-15 Jean-François Rameau - - * lib/ephy-adblock.h: - * lib/ephy-adblock.c: - * embed/ephy-adblock-manager.h: - * embed/ephy-adblock-manager.c: - - Add a method to EphyAdblock interface, ephy_adblock_manager_edit_rule, - so one can allow/disallow an url. - Add a method to EphyAdblockManager, ephy_adblock_manager_has_blocker, - so one can ask it whether a blocker is running. - - ChangeLog | 12 ++++++++++++ - embed/ephy-adblock-manager.c | 34 ++++++++++++++++++++++++++++++++++ - embed/ephy-adblock-manager.h | 6 ++++++ - lib/ephy-adblock.c | 12 ++++++++++++ - lib/ephy-adblock.h | 8 ++++++++ - 5 files changed, 72 insertions(+) - -commit a5f030995805e069abfe185ffff438e9f28d5ee1 -Author: Crispin Flowerday -Date: Sun Jan 15 15:46:27 2006 +0000 - - Override the page that is shown for the about: url so that it doesn't say - - 2006-01-15 Crispin Flowerday - - * data/chrome/Makefile.am: - * data/chrome/about.xhtml: - * data/chrome/brand.dtd.in: - * data/chrome/brand.properties.in: - * data/chrome/epiphany.manifest.in: - - Override the page that is shown for the about: url so - that it doesn't say "Deer Park" - - ChangeLog | 11 +++++ - data/chrome/Makefile.am | 3 ++ - data/chrome/about.xhtml | 99 ++++++++++++++++++++++++++++++++++++++++ - data/chrome/brand.dtd.in | 1 + - data/chrome/brand.properties.in | 1 + - data/chrome/epiphany.manifest.in | 1 + - 6 files changed, 116 insertions(+) - -commit ee23ae3fd2c94a885279507c7939ca3c62828b98 -Author: Hendrik Richter -Date: Sun Jan 15 11:55:42 2006 +0000 - - Updated German translation. - - 2006-01-15 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 ++++ - po/de.po | 72 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 40 insertions(+), 36 deletions(-) - -commit 11da4d0193e5d73b220257f822cbccaa585a269a -Author: Hendrik Richter -Date: Sun Jan 15 10:29:08 2006 +0000 - - Updated German translation. - - 2006-01-15 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 2499 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1451 insertions(+), 1052 deletions(-) - -commit 00f6be2493945f3b6c63d30cf3a7dd8bf1901071 -Author: Chrhristian Persch -Date: Sat Jan 14 22:50:27 2006 +0000 - - Only use the directory service provider on gecko 1.8; gecko 1.7 uses a - - 2006-01-14 Chrhristian Persch - - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - - Only use the directory service provider on gecko 1.8; - gecko 1.7 uses a different method to register chrome. - - ChangeLog | 8 ++++++++ - embed/mozilla/Makefile.am | 13 +++++++------ - embed/mozilla/mozilla-embed-single.cpp | 6 +++--- - 3 files changed, 18 insertions(+), 9 deletions(-) - -commit 01299e9677c4949e4c3e7e8a98823b245261af63 -Author: Crispin Flowerday -Date: Sat Jan 14 21:27:08 2006 +0000 - - Simplify creation and reference counting of the EphyDirectoryProvider - - 2006-01-14 Crispin Flowerday - - * embed/mozilla/mozilla-embed-single.cpp (init_services): - - Simplify creation and reference counting of the - EphyDirectoryProvider class. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 8 +------- - 2 files changed, 8 insertions(+), 7 deletions(-) - -commit 7ee5680874383d1d111ae3cd3dec10c5b4111385 -Author: Christian Persch -Date: Sat Jan 14 21:06:48 2006 +0000 - - Add defines and automake conditional for toolkit flavour. - - 2006-01-14 Christian Persch - - * m4/gecko.m4: - - Add defines and automake conditional for toolkit flavour. - - * configure.ac: - * data/Makefile.am: - A data/chrome/.cvsignore: - A data/chrome/Makefile.am: - A data/chrome/brand.dtd.in: - A data/chrome/brand.properties.in: - A data/chrome/epiphany.manifest.in: - - Provide branding so mozilla dialogues don't show "Deer Park" or - "Firefox" but "Epiphany" instead. - - * embed/mozilla/Makefile.am: - A embed/mozilla/EphyDirectoryProvider.cpp: - A embed/mozilla/EphyDirectoryProvider.h: - * embed/mozilla/mozilla-embed-single.cpp: - - Add a directory service provider. - - ChangeLog | 24 ++++++++ - configure.ac | 3 + - data/Makefile.am | 2 +- - data/chrome/.cvsignore | 5 ++ - data/chrome/Makefile.am | 16 +++++ - data/chrome/brand.dtd.in | 5 ++ - data/chrome/brand.properties.in | 3 + - data/chrome/epiphany.manifest.in | 2 + - embed/mozilla/EphyDirectoryProvider.cpp | 100 ++++++++++++++++++++++++++++++++ - embed/mozilla/EphyDirectoryProvider.h | 37 ++++++++++++ - embed/mozilla/Makefile.am | 7 +++ - embed/mozilla/mozilla-embed-single.cpp | 19 ++++++ - m4/gecko.m4 | 6 ++ - 13 files changed, 228 insertions(+), 1 deletion(-) - -commit d9c3fe17a3c1595fdf4ae850a03efc093cac8aea -Author: Francisco Javier F. Serrador -Date: Sat Jan 14 17:33:36 2006 +0000 - - Updated Spanish translation. - - 2006-01-14 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 221 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 126 insertions(+), 99 deletions(-) - -commit 36d5d6596aeadbc6ccc529f03e3c6ce53be3a84b -Author: Theppitak Karoonboonyanan -Date: Sat Jan 14 09:06:32 2006 +0000 - - Updated Thai translation. - - 2006-01-14 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++ - po/th.po | 223 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 124 insertions(+), 103 deletions(-) - -commit bf6a19b5a14ad5621a3f26ea1c149e1a6ee4e645 -Author: Christian Persch -Date: Fri Jan 13 13:41:59 2006 +0000 - - 2006-01-13 Christian Persch - - * lib/ephy-stock-icons.c: - * lib/ephy-stock-icons.h: - - ChangeLog | 7 +++++++ - lib/ephy-stock-icons.c | 1 - - lib/ephy-stock-icons.h | 1 - - 3 files changed, 7 insertions(+), 2 deletions(-) - -commit 9bc8407a216e89e72700a0c59a6fb606eda57fce -Author: Clytie Siddall -Date: Fri Jan 13 12:58:09 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++++ - po/vi.po | 70 +++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 50 insertions(+), 24 deletions(-) - -commit 347341b63c76f706774803586380f40ff66779dc -Author: Christian Persch -Date: Fri Jan 13 12:54:26 2006 +0000 - - Add translator comments - - src/ephy-window.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 3ed2c5710fa0bbb4e0c22b9a0212a6bbed5f74fc -Author: Christian Persch -Date: Fri Jan 13 12:15:56 2006 +0000 - - Fix zoom buttons order on default toolbar. Set short-label property for - - 2006-01-13 Christian Persch - - * data/ui/epiphany-toolbar.xml: - * src/ephy-window.c: - - Fix zoom buttons order on default toolbar. Set short-label - property for zoom actions. - - ChangeLog | 8 ++++++++ - data/ui/epiphany-toolbar.xml | 2 +- - src/ephy-window.c | 4 ++++ - 3 files changed, 13 insertions(+), 1 deletion(-) - -commit fe6b3046a330f10f339099fbbd23587d5da928f6 -Author: Christian Persch -Date: Fri Jan 13 11:46:24 2006 +0000 - - Don't require a HTML document to activate typeaheadfind. Bug #326813. - - 2006-01-13 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Don't require a HTML document to activate typeaheadfind. - Bug #326813. - - ChangeLog | 7 +++++++ - embed/mozilla/EventContext.cpp | 40 ++++++++++++++++++++++------------------ - 2 files changed, 29 insertions(+), 18 deletions(-) - -commit 3d42f2eccf6cdc5b4c8645fcbc97f66b46d7c70c -Author: Christian Persch -Date: Thu Jan 12 23:21:14 2006 +0000 - - A embed/mozilla/EphyPromptService.cpp: A - - 2006-01-13 Christian Persch - - A embed/mozilla/EphyPromptService.cpp: - A embed/mozilla/EphyPromptService.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * po/POTFILES.in: - - Implement nsIPromptService ourself. - - ChangeLog | 10 + - embed/mozilla/EphyPromptService.cpp | 804 ++++++++++++++++++++++++++++++++ - embed/mozilla/EphyPromptService.h | 43 ++ - embed/mozilla/Makefile.am | 2 + - embed/mozilla/MozRegisterComponents.cpp | 8 + - po/POTFILES.in | 1 + - 6 files changed, 868 insertions(+) - -commit daf109345e833a5e2e366e09162c83fe5a213cc6 -Author: Christian Persch -Date: Thu Jan 12 22:08:57 2006 +0000 - - Add Zoom In/Out buttons to default toolbar layout and toolbars editor - - 2006-01-12 Christian Persch - - * data/ui/epiphany-toolbar.xml: - * src/ephy-toolbars-model.c: (ephy_toolbars_model_load): - - Add Zoom In/Out buttons to default toolbar layout and toolbars - editor repertoire. Bug #117923. - - ChangeLog | 8 ++++++++ - data/ui/epiphany-toolbar.xml | 3 ++- - src/ephy-toolbars-model.c | 2 ++ - 3 files changed, 12 insertions(+), 1 deletion(-) - -commit 4c43219a36835b600caa53344b7b6893209f1d9b -Author: Christian Persch -Date: Thu Jan 12 18:50:40 2006 +0000 - - Enable zeroconf by default now that gnome-vfs dns-sd can use avahi and - - 2006-01-12 Christian Persch - - * configure.ac: - * Makefile.am: - - Enable zeroconf by default now that gnome-vfs dns-sd can use - avahi and more distros are hopefully shipping with that. - Still can be disabled by --disable-zeroconf. - - ChangeLog | 9 +++++++++ - Makefile.am | 10 +++++++++- - configure.ac | 6 +++--- - 3 files changed, 21 insertions(+), 4 deletions(-) - -commit 716ae8a61575e4ad60d214c30b87c4258d2dd7c4 -Author: Jean-François Rameau -Date: Thu Jan 12 08:08:42 2006 +0000 - - Fix compiler warnings. - - 2006-01-12 Jean-François Rameau - - * src/ephy-dbus.c: (ephy_dbus_connect_to_session_bus): - - Fix compiler warnings. - - ChangeLog | 6 ++++++ - src/ephy-dbus.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 2ee3de9beb2da429e0478dbcdb1aeda0eea98680 -Author: Christian Persch -Date: Wed Jan 11 19:23:32 2006 +0000 - - Disable . - - 2006-01-11 Christian Persch - - * data/default-prefs-common.js: - - Disable . - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 3 +++ - 2 files changed, 9 insertions(+) - -commit faaae8b0c1b6548bd3a8f9d08a05c8b495ed6eaf -Author: Gabor Kelemen -Date: Wed Jan 11 18:49:10 2006 +0000 - - Hungarian translation updated. - - 2006-01-11 Gabor Kelemen - - * hu.po: Hungarian translation updated. - - po/ChangeLog | 4 ++ - po/hu.po | 228 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 112 insertions(+), 120 deletions(-) - -commit d2d8d80fbad18ba937fb21482b77fadd7e1349f4 -Author: Christian Persch -Date: Wed Jan 11 18:31:49 2006 +0000 - - Add another contract ID check, only on gecko >= 1.8. - - 2006-01-11 Christian Persch - - * configure.ac: - - Add another contract ID check, only on gecko >= 1.8. - - ChangeLog | 8 +++++++- - configure.ac | 18 ++++++++++++------ - 2 files changed, 19 insertions(+), 7 deletions(-) - -commit 976e395007d07311218e5dfb8bdfbca20c2d7e9c -Author: hristian Persch -Date: Wed Jan 11 18:15:21 2006 +0000 - - Don't delete epiphany-fonts.schemas on make clean. - - 2006-01-11 hristian Persch - - * data/Makefile.am: - - Don't delete epiphany-fonts.schemas on make clean. - - ChangeLog | 6 ++++++ - data/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 16b6d474c9d819d81ac880dcdfc6648cad78c406 -Author: Christian Persch -Date: Wed Jan 11 18:14:06 2006 +0000 - - More mime types. - - 2006-01-11 Christian Persch - - * data/mime-types-permissions.xml: - - More mime types. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 2 ++ - 2 files changed, 8 insertions(+) - -commit 8c4783dc50752870bb0a8d7eeaf03f52b9762f44 -Author: Adam Weinberger -Date: Wed Jan 11 17:41:17 2006 +0000 - - Updated Canadian English translation. - - - 2006-01-11 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 146 ++++++++++++++++++++++++----------------------------------- - 2 files changed, 64 insertions(+), 86 deletions(-) - -commit a5658001a7517849b06b7448e7f32ffd934f6960 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Jan 11 06:34:32 2006 +0000 - - Updated Translation - - po/ChangeLog | 4 ++ - po/gu.po | 153 +++++++++++++++++++++++++---------------------------------- - 2 files changed, 68 insertions(+), 89 deletions(-) - -commit 182daa98e1e9bf36e691b8c4dd63c550b5847b82 -Author: Clytie Siddall -Date: Wed Jan 11 04:50:35 2006 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 200 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 98 insertions(+), 106 deletions(-) - -commit 8726c4838cd0f77636f0fd76273954578b1bd528 -Author: Christian Persch -Date: Tue Jan 10 17:24:04 2006 +0000 - - Fix gecko version check to use AC_EGREP_CPP instead of grepping the header - - 2006-01-10 Christian Persch - - * m4/gecko.m4: - - Fix gecko version check to use AC_EGREP_CPP instead of - grepping the header file directly. Misc fixes. - - ChangeLog | 7 ++++ - m4/gecko.m4 | 109 +++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 70 insertions(+), 46 deletions(-) - -commit 874965668766040d7ad6439630dc20c0edf51b54 -Author: Peter Anthony Harvey -Date: Tue Jan 10 12:50:56 2006 +0000 - - Change toolbar label if searching for links or text. - Removed some GtkLabels that were created but never used. - - src/ephy-find-toolbar.c | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -commit 301f5e227cf26689e11d444988a890e322f9ff18 -Author: Peter Anthony Harvey -Date: Tue Jan 10 12:46:36 2006 +0000 - - Do not add bookmarks to a flat menu more than once. - Note that bookmarks may still appear at different places in the hierarchy. - - src/bookmarks/ephy-bookmarks-menu.c | 20 +++++++++++++++++--- - 1 file changed, 17 insertions(+), 3 deletions(-) - -commit 94a3e33ea5ac748e660955d04384df2d46ee3064 -Author: Peter Anthony Harvey -Date: Tue Jan 10 12:44:37 2006 +0000 - - Removed unused struct. - - lib/egg/egg-toolbars-model.h | 6 ------ - 1 file changed, 6 deletions(-) - -commit c682e0acc7c7ff2e9c194d7db1a5b756ac6beb69 -Author: Jean-François Rameau -Date: Sun Jan 8 22:28:09 2006 +0000 - - EphyContentPolicy now emits a signal when a content is blocked. - - 2006-01-08 Jean-François Rameau - - * embed/mozilla/EphyContentPolicy.h: - * embed/mozilla/EphyContentPolicy.cpp: (ShouldLoad): - * embed/ephy-embed.h: - * embed/ephy-embed.c: (ephy_embed_base_init): - - EphyContentPolicy now emits a signal when a content is blocked. - - ChangeLog | 9 ++++++ - embed/ephy-embed.c | 16 ++++++++++ - embed/ephy-embed.h | 2 ++ - embed/mozilla/EphyContentPolicy.cpp | 60 +++++++++++++++++++++++++++++++++++-- - embed/mozilla/EphyContentPolicy.h | 4 +++ - 5 files changed, 89 insertions(+), 2 deletions(-) - -commit 02aa0ad6720d78042850f3b8cd92d020aad47881 -Author: Christian Persch -Date: Sun Jan 8 20:24:18 2006 +0000 - - Fix pkgconfig_DATA. - - 2006-01-08 Christian Persch - - * data/Makefile.am: - - Fix pkgconfig_DATA. - - ChangeLog | 6 ++++++ - data/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 85d4821a2e7efd90582872ab83b8f9c8f31c9176 -Author: Christian Persch -Date: Sun Jan 8 20:09:08 2006 +0000 - - R data/epiphany-1.10.pc.in: A data/epiphany.pc.in: - - 2006-01-08 Christian Persch - - * configure.ac: - R data/epiphany-1.10.pc.in: - A data/epiphany.pc.in: - * m4/gecko.m4: - - Various improvements to gecko.m4. Generate the versioned .pc file - from the unversioned .pc.in file. - - ChangeLog | 10 ++++++ - configure.ac | 20 +++++++++--- - data/epiphany-1.10.pc.in | 14 --------- - data/epiphany.pc.in | 14 +++++++++ - m4/gecko.m4 | 80 ++++++++++++++++++++++++++++++++++-------------- - 5 files changed, 97 insertions(+), 41 deletions(-) - -commit 39aa54c1bda5df5a723b592d35752a99c1b03c87 -Author: Mohammad DAMT -Date: Sun Jan 8 16:44:03 2006 +0000 - - Updated Indonesian translation. - - 2006-01-06 Mohammad DAMT - - * id.po: Updated Indonesian translation. - - po/ChangeLog | 4 + - po/id.po | 2247 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1207 insertions(+), 1044 deletions(-) - -commit 1271be0b624c6657fb57661042099d8f6ef540a0 -Author: thetroublemaker -Date: Sun Jan 8 15:22:01 2006 +0000 - - changed ephy_tab_get_title_composite to ephy_tab_get_title, so that now - - 2006-01-05 thetroublemaker - - * src/ephy-notebook.c: - - changed ephy_tab_get_title_composite to ephy_tab_get_title, - so that now 'Loading ' is not displayed when loadin' a new - tab. Bug #323468. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 6 +++++- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit 59442d11a620383fa54ab0416f4a7257dc50543c -Author: Christian Persch -Date: Sun Jan 8 14:58:32 2006 +0000 - - Exit ppv mode when clicking the window close button. Bug #326136. - - 2006-01-08 Christian Persch - - * src/ephy-window.c: (ephy_window_delete_event): - - Exit ppv mode when clicking the window close button. Bug #326136. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 5 ++++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 15130661034c26f7b4040c2bb49ffac94b4694ba -Author: Christian Persch -Date: Sun Jan 8 14:50:07 2006 +0000 - - Make ESC cancel the content handler dialogue. Bug #325811. - - 2006-01-08 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Make ESC cancel the content handler dialogue. Bug #325811. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 13 ++++++++----- - 2 files changed, 14 insertions(+), 5 deletions(-) - -commit f765c0efaf46cc7b24b7eda0ca0a3576094c8f7f -Author: Crispin Flowerday -Date: Fri Jan 6 22:50:17 2006 +0000 - - Change the copyright year to 2006 - - 2006-01-06 Crispin Flowerday - - * src/window-commands.c (window_cmd_help_about): - - Change the copyright year to 2006 - - ChangeLog | 6 ++++++ - src/window-commands.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 582d9229f8a796994ba7f1e74905385c49690d0e -Author: Christian Persch -Date: Fri Jan 6 22:07:10 2006 +0000 - - R data/epiphany.applications: - - 2006-01-06 Christian Persch - - * data/Makefile.am: - R data/epiphany.applications: - - Remove applications file. - - ChangeLog | 7 +++++++ - data/Makefile.am | 4 ---- - data/epiphany.applications | 8 -------- - 3 files changed, 7 insertions(+), 12 deletions(-) - -commit 2ca07ba96cb57dc74fbcf9f209bc4ca9ad6d41e0 -Author: Žygimantas Beručka -Date: Fri Jan 6 13:21:50 2006 +0000 - - Updated Lithuanian translation. - - 2006-01-06 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 277 ++++++++++++++++++++++++----------------------------------- - 2 files changed, 115 insertions(+), 166 deletions(-) - -commit d101eed7e3f3dd8586741df2a60d2998a1a2a5ee -Author: Rajesh Ranjan -Date: Fri Jan 6 11:35:30 2006 +0000 - - updated hind to correct bug 313447 - - po/ChangeLog | 4 + - po/hi.po | 2033 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1141 insertions(+), 896 deletions(-) - -commit a95eb4efec6969417972c12bc25b92b23a68c6c4 -Author: Stanislav Brabec -Date: Thu Jan 5 17:47:30 2006 +0000 - - Typo fix. - - po/ChangeLog | 4 ++++ - po/cs.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 3c8efe4d0cf28961ab4953dc879da811de767637 -Author: Christian Persch -Date: Wed Jan 4 14:14:32 2006 +0000 - - Fix compiler warnings. - - 2006-01-04 Christian Persch - - * lib/ephy-adblock.c: - * lib/ephy-file-helpers.c: - - Fix compiler warnings. - - ChangeLog | 7 +++++++ - lib/ephy-adblock.c | 2 ++ - lib/ephy-file-helpers.c | 1 + - 3 files changed, 10 insertions(+) - -commit da5d9256984938434aea101a2d9ca615a91fa534 -Author: Christian Persch -Date: Wed Jan 4 13:46:26 2006 +0000 - - R data/art/epiphany-close-tab.png: - - 2006-01-04 Christian Persch - - R data/art/epiphany-close-tab.png: - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * lib/ephy-stock-icons.h: - * src/ephy-notebook.c: (build_tab_label): - - Go back to using the gtk stock close icon, to get correct - themeing in a11y themes. - - ChangeLog | 10 ++++++++++ - data/art/Makefile.am | 1 - - data/art/epiphany-close-tab.png | Bin 260 -> 0 bytes - doc/reference/tmpl/ephy-embed.sgml | 3 +++ - lib/ephy-stock-icons.c | 2 -- - lib/ephy-stock-icons.h | 2 -- - src/ephy-notebook.c | 16 +++++++++------- - 7 files changed, 22 insertions(+), 12 deletions(-) - -commit ce41d0f2c6becdb0032813f8917ff82e984b860f -Author: Christian Persch -Date: Wed Jan 4 12:25:42 2006 +0000 - - Fix warning when Ctrl-F while the find toolbar is already shown. Fix - - 2006-01-04 Christian Persch - - * src/ephy-find-toolbar.c: (entry_changed_cb), (set_focus_cb), - (ephy_find_toolbar_grab_focus), (ephy_find_toolbar_find_next), - (ephy_find_toolbar_find_previous), (ephy_find_toolbar_open), - (ephy_find_toolbar_close): - - Fix warning when Ctrl-F while the find toolbar is already shown. - Fix next/prev button sensitivity when find wrapped around. - - * src/ephy-window.c: - - Add more XF86XK key codes. - - ChangeLog | 14 ++++++++++++++ - data/.cvsignore | 2 +- - src/.cvsignore | 2 +- - src/ephy-find-toolbar.c | 19 ++++--------------- - src/ephy-window.c | 16 +++++++++------- - 5 files changed, 29 insertions(+), 24 deletions(-) - -commit 9c35bf08fb67fc9b74da029f00c699dbd1fd200a -Author: Christophe Merlet -Date: Tue Jan 3 21:11:13 2006 +0000 - - Updated French translation. - - po/ChangeLog | 5 ++ - po/POTFILES.in | 1 - - po/fr.po | 155 +++++++++++++++++++++++++++------------------------------ - 3 files changed, 79 insertions(+), 82 deletions(-) - -commit a368afaa868e656d15c6a141758374efceffabac -Author: Crispin Flowerday -Date: Tue Jan 3 21:03:34 2006 +0000 - - Update cvsignore's - - data/.cvsignore | 2 +- - src/.cvsignore | 7 ++----- - 2 files changed, 3 insertions(+), 6 deletions(-) - -commit 40550148189eda98c1f2797297ced73958c201ba -Author: Crispin Flowerday -Date: Tue Jan 3 21:01:13 2006 +0000 - - R src/ephy-automation.h: - - 2006-01-03 Crispin Flowerday - - * configure.ac: - * src/ephy-main.c: - R src/ephy-automation.h: - - Remove various references to bonobo, ephy is now officially - monkey free! - - ChangeLog | 9 +++++++++ - configure.ac | 2 +- - src/ephy-automation.h | 56 --------------------------------------------------- - src/ephy-main.c | 1 - - 4 files changed, 10 insertions(+), 58 deletions(-) - -commit 9b7de7f9cc94ac6da11f9e447bd614a08d7fdee1 -Author: Crispin Flowerday -Date: Tue Jan 3 20:57:03 2006 +0000 - - Fix some white space issues to keep make and emacs happy - - 2006-01-03 Crispin Flowerday - - * src/Makefile.am: - - Fix some white space issues to keep make and emacs happy - - ChangeLog | 6 ++++++ - src/Makefile.am | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 3aec0c3a236f49a84fd0cabd2e75eba3b537fbdf -Author: Crispin Flowerday -Date: Tue Jan 3 20:19:25 2006 +0000 - - src/ephy-dbus.c (ephy_dbus_connect_to_session_bus) - - 2006-01-03 Crispin Flowerday - - * src/ephy-dbus.c (ephy_dbus_connect_to_session_bus) - - Fix the arguments to the dbus_connection_set_exit_on_disconnect call - for the session bus. - - ChangeLog | 9 ++++++++- - src/ephy-dbus.c | 2 +- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit b6829af16259dfed8ee4ab24df75c507d319ce0c -Author: Crispin Flowerday -Date: Tue Jan 3 20:05:20 2006 +0000 - - Tell dbus not to exit the application if the bus disconnects. - - 2006-01-03 Crispin Flowerday - - * src/ephy-dbus.c (ephy_dbus_connect_to_session_bus): - - Tell dbus not to exit the application if the bus disconnects. - - ChangeLog | 6 ++++++ - src/ephy-dbus.c | 8 ++++++++ - 2 files changed, 14 insertions(+) - -commit bc5a4679c51ed57ef663d94eb473fdc6f10c2ebb -Author: Christian Persch -Date: Tue Jan 3 14:49:53 2006 +0000 - - Remove unneeded LINK line. - - 2006-01-03 Christian Persch - - * src/Makefile.am: - - Remove unneeded LINK line. - - ChangeLog | 6 ++++++ - src/Makefile.am | 3 --- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 23858a10ce281167073b9e0b82375fc53256310a -Author: Christian Persch -Date: Tue Jan 3 14:42:10 2006 +0000 - - Don't include generated files in the tarball. Bug #319440. - - 2006-01-03 Christian Persch - - * embed/Makefile.am: - * embed/mozilla/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - Don't include generated files in the tarball. Bug #319440. - - R help/C/Makefile.am: - R help/es/Makefile.am: - R help/eu/Makefile.am: - R help/fi/Makefile.am: - R help/ja/Makefile.am: - R help/uk/Makefile.am: - - Remove obsolete files. - - ChangeLog | 20 +++++++++++++++++++ - NEWS | 2 ++ - data/Makefile.am | 29 ++++++++++++++-------------- - doc/reference/tmpl/ephy-embed.sgml | 3 +++ - embed/Makefile.am | 14 ++++++++------ - embed/mozilla/Makefile.am | 4 +++- - embed/print-dialog.c | 12 +++++------- - help/C/Makefile.am | 7 ------- - help/es/Makefile.am | 7 ------- - help/eu/Makefile.am | 7 ------- - help/fi/Makefile.am | 7 ------- - help/ja/Makefile.am | 7 ------- - help/uk/Makefile.am | 7 ------- - lib/Makefile.am | 7 ++++--- - lib/egg/Makefile.am | 4 +++- - src/Makefile.am | 39 +++++++++++++++++++++++++++----------- - src/bookmarks/Makefile.am | 4 +++- - 17 files changed, 94 insertions(+), 86 deletions(-) - -commit 440c60d5ce97f899426a8a12700277f8c06d11db -Author: Jean-François Rameau -Date: Tue Jan 3 13:09:07 2006 +0000 - - Fix compilation with DBUS 0.6 (DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT - - 2006-01-03 Jean-François Rameau - - * src/ephy-dbus.c: (ephy_dbus_connect_to_session_bus): - - Fix compilation with DBUS 0.6 (DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT constant removed). - - ChangeLog | 6 ++++++ - src/ephy-dbus.c | 5 +++++ - 2 files changed, 11 insertions(+) - -commit bcd62404452fbf9499f24bffe6adf4280ac74237 -Author: Christian Persch -Date: Mon Jan 2 21:51:12 2006 +0000 - - Revert autogen.sh change - - autogen.sh | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c13881a0251b12e7c0d9bfc02a30d3d2b413725c -Author: Christian Persch -Date: Mon Jan 2 21:34:53 2006 +0000 - - R data/GNOME_Epiphany_Automation.server.in: A data/epiphany-service.xml: A - - 2006-01-02 Christian Persch - - * Makefile.am: - * autogen.sh: - * configure.ac: - R data/GNOME_Epiphany_Automation.server.in: - * data/Makefile.am: - A data/epiphany-service.xml: - A data/org.gnome.Epiphany.service.in: - * doc/reference/Makefile.am: - R idl/.cvsignore: - R idl/EphyAutomation.idl: - R idl/Makefile.am: - * lib/Makefile.am: - R lib/ephy-dbus.c: - R lib/ephy-dbus.h: - * lib/ephy-file-helpers.c: (ephy_file_launch_application): - * src/Makefile.am: - A src/ephy-activation.c: - A src/ephy-activation.h: - A src/ephy-dbus.c: - A src/ephy-dbus.h: - * src/ephy-main.c: (main): - * src/ephy-shell.c: (ephy_shell_init), (open_urls), - (dbus_g_proxy_finalized_cb), (ephy_shell_startup), - (ephy_shell_dispose): - - Bonobo is dead; long live the Bonobos! - Patch by Gustavo Gama, bug #322463. - - ChangeLog | 30 ++ - Makefile.am | 4 +- - autogen.sh | 2 +- - configure.ac | 77 ++--- - data/GNOME_Epiphany_Automation.server.in | 20 -- - data/Makefile.am | 15 +- - data/epiphany-service.xml | 25 ++ - data/org.gnome.Epiphany.service.in | 3 + - doc/reference/Makefile.am | 2 - - idl/.cvsignore | 9 - - idl/EphyAutomation.idl | 31 -- - idl/Makefile.am | 2 - - lib/Makefile.am | 12 +- - lib/ephy-dbus.c | 398 -------------------------- - lib/ephy-dbus.h | 80 ------ - lib/ephy-file-helpers.c | 11 - - src/Makefile.am | 43 ++- - src/ephy-activation.c | 153 ++++++++++ - src/ephy-activation.h | 55 ++++ - src/ephy-dbus.c | 469 +++++++++++++++++++++++++++++++ - src/ephy-dbus.h | 94 +++++++ - src/ephy-main.c | 2 - - src/ephy-shell.c | 195 +++++-------- - 23 files changed, 962 insertions(+), 770 deletions(-) - -commit 6dabfeeef03a5890d0ebffab4382ade94f6b7c32 -Author: Kjartan Maraas -Date: Sun Jan 1 23:41:36 2006 +0000 - - Updated Norwegian bokmål translation. Same - - 2006-01-02 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same - - po/ChangeLog | 5 ++ - po/nb.po | 284 ++++++++++++++++++++++++++++++----------------------------- - po/no.po | 284 ++++++++++++++++++++++++++++++----------------------------- - 3 files changed, 295 insertions(+), 278 deletions(-) - -commit 2218be715924ca056c7f87e53e050c011f012aaf -Author: Reinout van Schouwen -Date: Sun Jan 1 21:48:28 2006 +0000 - - Jan 01 2006 Reinout van Schouwen - - * Jan 01 2006 Reinout van Schouwen - - * NEWS: 1.9.4 changes added - - NEWS | 16 ++++++++++++++-- - 1 file changed, 14 insertions(+), 2 deletions(-) - -commit 256dbedd7ba09f95d1f98d5067a3a5f02344ec2e -Author: Reinout van Schouwen -Date: Sun Jan 1 20:26:33 2006 +0000 - - Jan 1 2006 Reinout van Schouwen - - * Jan 1 2006 Reinout van Schouwen - - * nl.po: now the resulting xml file passes xmllint - - help/nl/nl.po | 16 ++++++++++------ - 1 file changed, 10 insertions(+), 6 deletions(-) - -commit 545104700769dc915c629a620911f59b7782e32d -Author: Christian Persch -Date: Sun Jan 1 20:01:03 2006 +0000 - - Shut up - - data/.cvsignore | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 79be68d3cc2c0eeb3022d396002dee3d341d254a -Author: Christian Persch -Date: Sun Jan 1 20:00:12 2006 +0000 - - Post-release version bump. - - 2006-01-01 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit c22df82bd6063d1619b79f31a557dcce1709e47b -Author: Christian Persch -Date: Sun Jan 1 19:58:33 2006 +0000 - - === Release 1.9.4 === - - 2006-01-01 Christian Persch - - === Release 1.9.4 === - - * NEWS: - * configure.ac: - * data/Makefile.am: - - ChangeLog | 8 + - NEWS | 30 + - configure.ac | 2 +- - data/Makefile.am | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 3 + - help/fi/fi.po | 2494 ++++++++++++++---------------------- - 6 files changed, 995 insertions(+), 1544 deletions(-) - -commit e960377a2522bdb7372e00e586a92193ef679cd9 -Author: Reinout van Schouwen -Date: Sun Jan 1 19:42:18 2006 +0000 - - Jan 1 2006 Reinout van Schouwen - - * Jan 1 2006 Reinout van Schouwen - - * nl.po: fix a few typo's - - help/nl/nl.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit d2d8ffb20ab2567a922529521c2f20a7f9576562 -Author: Crispin Flowerday -Date: Sat Dec 31 19:12:31 2005 +0000 - - When in automatic mode, update the treeview to reflect the currently - - 2005-12-31 Crispin Flowerday - - * src/ephy-encoding-dialog.c: (sync_encoding_against_embed), - (embed_net_stop_cb), (sync_embed_cb), - (ephy_encoding_dialog_finalize): - - When in automatic mode, update the treeview to reflect - the currently selected encoding. Fixes bug #127757 - - ChangeLog | 9 +++++++++ - src/ephy-encoding-dialog.c | 36 +++++++++++++++++++++++++++++++++++- - 2 files changed, 44 insertions(+), 1 deletion(-) - -commit cbcd4b6b377bf56d69a63f5672f349149aa83c9d -Author: Åsmund Skjæveland -Date: Sat Dec 31 10:05:29 2005 +0000 - - Updated Norwegian Nynorsk translation. - - 2005-12-31 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 + - po/nn.po | 1083 +++++++++++++--------------------------------------------- - 2 files changed, 246 insertions(+), 841 deletions(-) - -commit 0ae701feff75f9ef038a2bb6b389b7e3dabbb5aa -Author: Christian Persch -Date: Fri Dec 30 20:17:20 2005 +0000 - - Add include subdirs for broken distros. Bug #321841. Add plugins.symbols - - 2005-12-30 Christian Persch - - * plugins/desktop-file/Makefile.am: - - Add include subdirs for broken distros. Bug #321841. - Add plugins.symbols to EXTRA_DIST. - - ChangeLog | 7 +++++++ - plugins/desktop-file/Makefile.am | 9 ++++++++- - 2 files changed, 15 insertions(+), 1 deletion(-) - -commit 77314bd619c6ceef26333de7254e59db4709a4dc -Author: Christian Persch -Date: Fri Dec 30 19:34:51 2005 +0000 - - Improve "gecko not found" message. Bug #319253. - - 2005-12-30 Christian Persch - - * m4/gecko.m4: - - Improve "gecko not found" message. Bug #319253. - - ChangeLog | 6 ++++++ - m4/gecko.m4 | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit ea53a96e862dc186d91168101635882ed0fd3dd8 -Author: Christian Persch -Date: Fri Dec 30 19:28:11 2005 +0000 - - Put a marker in the environment to detect when we launch ourself as a - - 2005-12-30 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_helpers_init), - (my_gdk_spawn_make_environment_for_screen), - (make_spawn_environment_for_sn_context), - (ephy_file_launch_application), (launch_desktop_item): - - Put a marker in the environment to detect when we launch ourself - as a helper app. Fixes bug #324828. - - ChangeLog | 10 +++++++ - lib/ephy-file-helpers.c | 70 ++++++++++++++++++++++++++++--------------------- - 2 files changed, 50 insertions(+), 30 deletions(-) - -commit 08d9d91b01d37f51151b0de36149413cf2d3c96b -Author: Christian Persch -Date: Fri Dec 30 19:09:26 2005 +0000 - - Zoom on Ctrl-=, Ctrl-KP+, Ctrl-KP- too. Bug #105183. - - 2005-12-30 Christian Persch - - * src/ephy-window.c: - - Zoom on Ctrl-=, Ctrl-KP+, Ctrl-KP- too. Bug #105183. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 3 +++ - 2 files changed, 9 insertions(+) - -commit b8261b9d12b6da57934755d0ba03155855367011 -Author: Ilkka Tuohela -Date: Fri Dec 30 15:07:04 2005 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 1936 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 808 insertions(+), 1132 deletions(-) - -commit f57c175e06622754f69948271f9bdb9f2a4f3a42 -Author: Reinout van Schouwen -Date: Fri Dec 30 00:15:21 2005 +0000 - - Dec 30 2005 Reinout van Schouwen - - * Dec 30 2005 Reinout van Schouwen - - * nl.po: Completed Dutch translation - - help/ChangeLog | 6 +- - help/nl/nl.po | 192 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 191 insertions(+), 7 deletions(-) - -commit b4920906b94af64de3968c65f8bdb34b7dfa4616 -Author: Reinout van Schouwen -Date: Thu Dec 29 00:27:18 2005 +0000 - - Dec 29 2005 Reinout van Schouwen - - * Dec 29 2005 Reinout van Schouwen - - - Updated ChangeLog - - help/ChangeLog | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 7c3c1f9a7937423f9819aa082a953d329eb06388 -Author: Reinout van Schouwen -Date: Thu Dec 29 00:20:53 2005 +0000 - - Dec 29 2005 Reinout van Schouwen - - * Dec 29 2005 Reinout van Schouwen - - - Fixed a small Dutch documentation/ui consistency problem - - help/nl/nl.po | 34 ++++++++++++++++++++++++++-------- - po/nl.po | 54 +++++++++++++++++++++++++++--------------------------- - 2 files changed, 53 insertions(+), 35 deletions(-) - -commit 9ce829f3a06db134b99a3bded309089114ac9744 -Author: Reinout van Schouwen -Date: Wed Dec 28 23:43:12 2005 +0000 - - Dec 29 2005 Reinout van Schouwen - More work on Dutch - - * Dec 29 2005 Reinout van Schouwen - - More work on Dutch documentation - - Included Dutch screenshots - - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 3099 -> 5853 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1570 -> 2965 bytes - help/nl/figures/ephy-history-window-screenshot.png | Bin 39816 -> 25119 bytes - help/nl/figures/ephy-screenshot.png | Bin 56909 -> 55052 bytes - help/nl/nl.po | 540 +++++++++++++-------- - 5 files changed, 339 insertions(+), 201 deletions(-) - -commit abf0d801429a2cacb8445eeb99fc75b3fed539e5 -Author: Guilherme de S. Pastore -Date: Wed Dec 28 13:43:30 2005 +0000 - - fix mistake in the pt_BR translation - - po/ChangeLog | 4 + - po/pt_BR.po | 1218 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 661 insertions(+), 561 deletions(-) - -commit f775335c605d682ffa21eac979175eb6bbb5fb78 -Author: Kwok-Koon Cheung -Date: Wed Dec 28 06:37:58 2005 +0000 - - Updated Chinese (Taiwan) translation. New Chinese (Hong Kong) translation. - - * zh_TW.po: Updated Chinese (Taiwan) translation. - * zh_HK.po: New Chinese (Hong Kong) translation. - * LINGUAS: Added zh_HK - - po/ChangeLog | 6 + - po/LINGUAS | 2 +- - po/zh_HK.po | 3805 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - po/zh_TW.po | 404 +++---- - 4 files changed, 3993 insertions(+), 224 deletions(-) - -commit 3971e78fa3f05f1f70d66e13e3a5d49a821b487f -Author: Reinout van Schouwen -Date: Wed Dec 28 00:40:32 2005 +0000 - - Dec 28 2005 Reinout van Schouwen Worked a bit on Dutch - - * Dec 28 2005 Reinout van Schouwen - Worked a bit on Dutch documentation - - help/nl/nl.po | 169 +++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 90 insertions(+), 79 deletions(-) - -commit e3c6dc966d3082086c84830f98e5a19014ee3e8a -Author: Funda Wang -Date: Sun Dec 25 14:43:22 2005 +0000 - - Updated epiphany translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 440 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 224 insertions(+), 220 deletions(-) - -commit d39be36f484cd5211ff1bcfe38440d995c4df149 -Author: Adam Weinberger -Date: Fri Dec 23 20:47:56 2005 +0000 - - Updated Canadian English translation. - - - 2005-12-23 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 428 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 218 insertions(+), 214 deletions(-) - -commit 595529c02bceec72903d4cc0613504f9babec9cc -Author: Christian Neumair -Date: Fri Dec 23 19:18:05 2005 +0000 - - Always center dialog on screen. Bug #324896. - - 2005-12-23 Christian Neumair - - * src/ephy-session.c: (offser_to_resume): - - Always center dialog on screen. Bug #324896. - - ChangeLog | 6 ++++++ - src/ephy-session.c | 1 + - 2 files changed, 7 insertions(+) - -commit 428eaf4db520ec27a137f3742a2bade7f117fb78 -Author: Clytie Siddall -Date: Wed Dec 21 08:52:49 2005 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 2984 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1487 insertions(+), 1501 deletions(-) - -commit dad20f67f803c3832a528cb669a93c921758bb55 -Author: Christian Persch -Date: Tue Dec 20 22:41:26 2005 +0000 - - Show warning on mixed content in the tooltip. Bug #321508. - - 2005-12-20 Christian Persch - - * src/ephy-window.c: - - Show warning on mixed content in the tooltip. Bug #321508. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 5 +++++ - 2 files changed, 11 insertions(+) - -commit f5e08b60b8caa225df8253f4e1249c4120d81717 -Author: Gabor Kelemen -Date: Tue Dec 20 10:06:59 2005 +0000 - - Hungarian translation updated. - - 2005-12-20 Gabor Kelemen - - * hu.po: Hungarian translation updated. - - po/ChangeLog | 4 + - po/hu.po | 1558 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 801 insertions(+), 761 deletions(-) - -commit 1244b9483fd7b288d6123aebe57e93dfd64a8488 -Author: Vincent van Adrighem -Date: Tue Dec 20 00:26:18 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-12-20 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 240 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 128 insertions(+), 116 deletions(-) - -commit 75b2ce17335253696b6e064e093af57902a7d39c -Author: Jean-François Rameau -Date: Mon Dec 19 21:33:41 2005 +0000 - - Add some code so ad blocking should be more easy. Based on the fact that - - 2005-12-19 Jean-François Rameau - - * embed/Makefile.am: - * embed/ephy-adblock-manager.c: - * embed/ephy-adblock-manager.h: - * embed/ephy-embed-shell.c: (ephy_embed_shell_finalize): - * embed/ephy-embed-shell.h: - * embed/mozilla/EphyContentPolicy.cpp: (EphyContentPolicy::ShouldLoad): - * lib/Makefile.am: - * lib/ephy-adblock.h: - * lib/ephy-adblock.c: - * src/ephy-shell.c: (ephy_shell_get_extensions_manager): - - Add some code so ad blocking should be more easy. Based on the fact - that Epiphany already has its own content policy component (EphyContentPolicy). - The new design adds: - - an interface, EphyAdBlock - - a manager, EphyAdBlockManager, pointing to a blocker (possibly no one). - - ChangeLog | 19 +++++++ - embed/Makefile.am | 2 + - embed/ephy-adblock-manager.c | 101 ++++++++++++++++++++++++++++++++++++ - embed/ephy-adblock-manager.h | 64 +++++++++++++++++++++++ - embed/ephy-embed-shell.c | 31 +++++++++++ - embed/ephy-embed-shell.h | 2 + - embed/mozilla/EphyContentPolicy.cpp | 28 +++++++--- - lib/Makefile.am | 3 ++ - lib/ephy-adblock.c | 59 +++++++++++++++++++++ - lib/ephy-adblock.h | 79 ++++++++++++++++++++++++++++ - src/ephy-shell.c | 2 +- - 11 files changed, 383 insertions(+), 7 deletions(-) - -commit 44f5c62d3fa80ae1db96104c51a3af7b44540354 -Author: Takeshi AIHANA -Date: Sun Dec 18 07:18:49 2005 +0000 - - Updated Japanese translation for v1.9.3.1. - - 2005-12-18 Takeshi AIHANA - - * ja.po: Updated Japanese translation for v1.9.3.1. - - po/ChangeLog | 4 + - po/ja.po | 1200 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 643 insertions(+), 561 deletions(-) - -commit 2ccd58f9e196d4e0c408fb1552184bae210e245f -Author: Claudio Saavedra -Date: Fri Dec 16 16:18:08 2005 +0000 - - Use a gtk stock cursor (GDK_HAND2) instead of already removed image. Fixes - - 2005-12-16 Claudio Saavedra - - * lib/egg/egg-editable-toolbar.c: (configure_item_cursor): - Use a gtk stock cursor (GDK_HAND2) instead of already removed image. - Fixes bug #324265. - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 6 +----- - 2 files changed, 7 insertions(+), 5 deletions(-) - -commit 883bd7d2cd8f53cfc0a61c5e301f039b9454fed1 -Author: Marcel Telka -Date: Thu Dec 15 23:30:36 2005 +0000 - - Updated Slovak translation. - - 2005-12-15 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 270 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 143 insertions(+), 131 deletions(-) - -commit b7f830769adb3cc7757849244671ef76ac2feb44 -Author: Žygimantas Beručka -Date: Thu Dec 15 13:55:15 2005 +0000 - - Updated Lithuanian translation. - - 2005-12-15 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 266 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 141 insertions(+), 129 deletions(-) - -commit 7d9dba9d342a6f0412ef2bdb096f0751b532414b -Author: Jean-François Rameau -Date: Thu Dec 15 10:50:22 2005 +0000 - - Fix a compile warning. - - 2005-12-15 Jean-François Rameau - - * embed/mozilla/mozilla-embed-single: (impl_import): - - Fix a compile warning. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 31a58f0034d66c73b7b231bce8287e4fa4f3a54e -Author: Amanpreet Singh Alam -Date: Thu Dec 15 07:24:54 2005 +0000 - - update for HEAD with Punjabi Language - - po/pa.po | 1615 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 828 insertions(+), 787 deletions(-) - -commit 920d37491d5577a36221d18a84a9a7052cfbc69e -Author: Christophe Merlet -Date: Wed Dec 14 21:55:26 2005 +0000 - - Updated French translation. - - po/ChangeLog | 5 + - po/fr.po | 2401 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1305 insertions(+), 1101 deletions(-) - -commit e28b70a24c3ba23d51dfc719a81a33273cb8b482 -Author: Christian Persch -Date: Wed Dec 14 14:03:29 2005 +0000 - - A plugins/desktop-file/plugin.symbols: - - 2005-12-14 Christian Persch - - * plugins/desktop-file/Makefile.am: - A plugins/desktop-file/plugin.symbols: - - Only export necessary symbols. - - ChangeLog | 7 +++++++ - plugins/desktop-file/Makefile.am | 6 +++++- - plugins/desktop-file/plugin.symbols | 4 ++++ - 3 files changed, 16 insertions(+), 1 deletion(-) - -commit e9cae3951f40c0bd6663445da68066b8d962feb0 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Dec 14 14:03:09 2005 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 295 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 164 insertions(+), 135 deletions(-) - -commit 66ea312efab21761bc12a43a638f6a4b4f7b7966 -Author: Christian Persch -Date: Wed Dec 14 13:39:18 2005 +0000 - - Install the fonts schemas file too. - - 2005-12-14 Christian Persch - - * data/Makefile.am: - - Install the fonts schemas file too. - - ChangeLog | 6 ++++++ - data/Makefile.am | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 5b9dd8cd8d0219343d4a123bc8b17cb8b81eea04 -Author: Ignacio Casal Quinteiro -Date: Tue Dec 13 22:19:24 2005 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/gl.po | 268 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 142 insertions(+), 130 deletions(-) - -commit 70b6d9c464bfa25f697b44bd5cb424dddbee1a1d -Author: Alexander Shopov -Date: Mon Dec 12 18:03:04 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-12-12 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 417 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 217 insertions(+), 205 deletions(-) - -commit 87408f6333635559182ded945af49fd514cd123f -Author: Francisco Javier F. Serrador -Date: Mon Dec 12 17:26:22 2005 +0000 - - Updated Spanish translation. - - 2005-12-12 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 270 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 143 insertions(+), 131 deletions(-) - -commit 6c0db2f02c1263c81b205fd4cde11f8943be3abc -Author: Christian Persch -Date: Mon Dec 12 11:16:13 2005 +0000 - - Post-release version bump. - - 2005-12-12 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 73e93562b1c039277cffec515e4fa3a19189feac -Author: Christian Persch -Date: Mon Dec 12 11:13:27 2005 +0000 - - === Release 1.9.3.1 === - - 2005-12-12 Christian Persch - - === Release 1.9.3.1 === - - * NEWS: - * configure.ac: - - ChangeLog | 7 +++++++ - NEWS | 15 +++++++++++++++ - configure.ac | 2 +- - 3 files changed, 23 insertions(+), 1 deletion(-) - -commit a05517b6231251a7ab03fc82404958310d9b79fa -Author: Christian Persch -Date: Mon Dec 12 11:06:15 2005 +0000 - - Fix desktop file install. - - 2005-12-12 Christian Persch - - * data/Makefile.am: - - Fix desktop file install. - - ChangeLog | 6 ++++++ - data/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e4747bb179fec971b8bb57f13c0333411e5a4532 -Author: Theppitak Karoonboonyanan -Date: Mon Dec 12 03:37:59 2005 +0000 - - Updated Thai translation. - - 2005-12-12 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 411 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 213 insertions(+), 202 deletions(-) - -commit 9f525e2583b05d0dbb7dc4959299a8c5532410d3 -Author: Vincent van Adrighem -Date: Sun Dec 11 22:32:19 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-12-11 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 839 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 426 insertions(+), 417 deletions(-) - -commit 5fe3bca4a0698d380032ca61c5a08129b64e7c43 -Author: Reinout van Schouwen -Date: Sun Dec 11 22:27:06 2005 +0000 - - Updated NEWS - - 2005-12-11 Reinout van Schouwen - - * Updated NEWS - - NEWS | 45 ++++++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 44 insertions(+), 1 deletion(-) - -commit 3adfb580cc53a0f4b0c333f85ba922ca959dd828 -Author: Miloslav Trmac -Date: Sun Dec 11 21:52:10 2005 +0000 - - Updated Czech translation. - - 2005-12-11 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 624 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 318 insertions(+), 310 deletions(-) - -commit 43a01718b28c8f782546dad74e76b5ece092cd75 -Author: Christian Persch -Date: Sun Dec 11 20:51:42 2005 +0000 - - Post-release version bump. - - 2005-12-11 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 58570b6bf53d483f43dcebffde3997d5887d3e88 -Author: Christian Persch -Date: Sun Dec 11 20:49:28 2005 +0000 - - === Release 1.9.3 === - - 2005-12-11 Christian Persch - - === Release 1.9.3 === - - * NEWS: - * configure.ac: - - ChangeLog | 7 +++++++ - NEWS | 28 ++++++++++++++++++++++++++++ - configure.ac | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 6 ++++++ - 4 files changed, 42 insertions(+), 1 deletion(-) - -commit 7b4dc9c6228bc677c4fc2002e2b4d0ec6b327b91 -Author: Christian Persch -Date: Sun Dec 11 17:44:10 2005 +0000 - - Fix quote character - - lib/ephy-file-helpers.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 33b7f0572e78df411eb8c6e02182c1397a027089 -Author: Christian Persch -Date: Sun Dec 11 17:34:39 2005 +0000 - - Fix quote character - - lib/ephy-file-helpers.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 964e14441c3a82e714381f23adc68df5a1831801 -Author: Christian Persch -Date: Sun Dec 11 17:28:49 2005 +0000 - - Don't translate those files yet - - po/POTFILES.skip | 2 ++ - 1 file changed, 2 insertions(+) - -commit 559ad3c99b912fe6af014cc5e7f95dd654b7bd17 -Author: Christian Persch -Date: Sun Dec 11 17:27:13 2005 +0000 - - Fix typo - - lib/ephy-gui.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d1aa044bad0bc91f401014ee71b2a2ecfa801161 -Author: Christian Persch -Date: Sun Dec 11 14:45:04 2005 +0000 - - A src/ephy-cert-manager-dialog.c: A src/ephy-cert-manager-dialog.h: R - - 2005-12-11 Christian Persch - - * src/Makefile.am: - A src/ephy-cert-manager-dialog.c: - A src/ephy-cert-manager-dialog.h: - R src/ephy-certificate-manager.c: - R src/ephy-certificate-manager.h: - * src/window-commands.c: - - Fix stupid mistake. - - ChangeLog | 11 + - src/Makefile.am | 4 +- - src/ephy-cert-manager-dialog.c | 517 +++++++++++++++++++++++++++++++++++++++++ - src/ephy-cert-manager-dialog.h | 59 +++++ - src/ephy-certificate-manager.c | 517 ----------------------------------------- - src/ephy-certificate-manager.h | 59 ----- - src/window-commands.c | 2 +- - 7 files changed, 590 insertions(+), 579 deletions(-) - -commit fbe31b361697275f1cf071d02ade300cf54e61a7 -Author: Christian Persch -Date: Sun Dec 11 14:40:15 2005 +0000 - - A embed/ephy-certificate-manager.c: A embed/ephy-certificate-manager.h: A - - 2005-12-11 Christian Persch - - * configure.ac: - * data/glade/Makefile.am: - * data/glade/certs-manager.glade: - * data/ui/epiphany-ui.xml: - * embed/Makefile.am: - A embed/ephy-certificate-manager.c: - A embed/ephy-certificate-manager.h: - A embed/ephy-x509-cert.c: - A embed/ephy-x509-cert.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - A embed/mozilla/mozilla-x509-cert.cpp: - A embed/mozilla/mozilla-x509-cert.h: - * src/Makefile.am: - A src/ephy-certificate-manager.c: - A src/ephy-certificate-manager.h: - * src/ephy-window.c: - * src/window-commands.c: - * src/window-commands.h: - - Add certificate manager. Patch by Robert Marcano and Crispin - Flowerday. Fixes bug #119090. - - ChangeLog | 25 ++ - configure.ac | 20 ++ - data/glade/Makefile.am | 5 + - data/glade/certs-manager.glade | 530 +++++++++++++++++++++++++++++++++ - data/ui/epiphany-ui.xml | 1 + - embed/Makefile.am | 11 +- - embed/ephy-certificate-manager.c | 72 +++++ - embed/ephy-certificate-manager.h | 68 +++++ - embed/ephy-x509-cert.c | 53 ++++ - embed/ephy-x509-cert.h | 61 ++++ - embed/mozilla/Makefile.am | 6 + - embed/mozilla/mozilla-embed-single.cpp | 157 ++++++++++ - embed/mozilla/mozilla-x509-cert.cpp | 263 ++++++++++++++++ - embed/mozilla/mozilla-x509-cert.h | 62 ++++ - src/Makefile.am | 8 + - src/ephy-certificate-manager.c | 517 ++++++++++++++++++++++++++++++++ - src/ephy-certificate-manager.h | 59 ++++ - src/ephy-window.c | 15 + - src/window-commands.c | 17 ++ - src/window-commands.h | 3 + - 20 files changed, 1952 insertions(+), 1 deletion(-) - -commit aabe93c2482f2371648e1e191d774ca127149ffa -Author: Ankitkumar Rameshchandra Patel -Date: Sun Dec 11 13:27:13 2005 +0000 - - Updated Gujarati Translation - - po/ChangeLog | 4 + - po/gu.po | 1631 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 829 insertions(+), 806 deletions(-) - -commit 6b341da50563968b123b4db80d6dfcd846b33582 -Author: Chao-Hsiung Liao -Date: Sat Dec 10 00:34:11 2005 +0000 - - Updated Traditional Chinese translation. - - - 2005-12-10 Chao-Hsiung Liao - - * zh_TW.po: Updated Traditional Chinese translation. - - po/ChangeLog | 4 ++ - po/zh_TW.po | 214 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 111 insertions(+), 107 deletions(-) - -commit b93802bf726fe2f5a7e37fdfeb16e8cc22d550dd -Author: Christian Persch -Date: Thu Dec 8 21:32:52 2005 +0000 - - Fix crash when adding a cookie while the dialogue is open. - - 2005-12-08 Christian Persch - - * src/pdm-dialog.c: (pdm_dialog_cookies_construct), - (pdm_dialog_cookie_add): - - Fix crash when adding a cookie while the dialogue is open. - - ChangeLog | 7 +++++++ - src/pdm-dialog.c | 43 +++++++++++++++++++++++++------------------ - 2 files changed, 32 insertions(+), 18 deletions(-) - -commit 32a11b26fe99defb8209d3f1aef626c563705344 -Author: Priit Laes -Date: Thu Dec 8 17:28:36 2005 +0000 - - Translation updated. - - 2005-12-08 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 790 +++++++++++++++++++++++------------------------------------ - 2 files changed, 313 insertions(+), 481 deletions(-) - -commit 2f85b86aad2086b995c0362a4dd27bba35cdf964 -Author: Kjartan Maraas -Date: Thu Dec 8 04:33:44 2005 +0000 - - Updated Norwegian bokmål translation. Same. - - 2005-12-08 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 ++ - po/nb.po | 181 ++++++++++++++++++++++++++++++----------------------------- - po/no.po | 181 ++++++++++++++++++++++++++++++----------------------------- - 3 files changed, 189 insertions(+), 178 deletions(-) - -commit 9773d78ab348e34d04f23cd656d7a7df2bde5d65 -Author: Žygimantas Beručka -Date: Thu Dec 8 00:31:20 2005 +0000 - - Updated Lithuanian translation. - - 2005-12-07 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 637 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 324 insertions(+), 317 deletions(-) - -commit bd9339d039da8cfebfb6366dde1b0ca6f72b3e00 -Author: Priit Laes -Date: Wed Dec 7 19:12:26 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-12-07 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 1215 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 654 insertions(+), 565 deletions(-) - -commit 71b468b05580953e70aabce5b68586ed8967c71c -Author: Christian Persch -Date: Wed Dec 7 18:15:33 2005 +0000 - - Minor code cleanup. - - 2005-12-07 Christian Persch - - * embed/mozilla/EphyFind.cpp: - - Minor code cleanup. - - * src/ephy-find-toolbar.c: (entry_key_press_event_cb), - (ephy_find_toolbar_close): - - Also check for GDK_ISO_Enter. - - * src/ephy-window.c: (sync_tab_address): - - Close the find toolbar when loading a new page. - - ChangeLog | 15 +++++++++++++++ - embed/mozilla/EphyFind.cpp | 10 +++++----- - src/ephy-find-toolbar.c | 6 ++++-- - src/ephy-window.c | 11 ++++++++--- - 4 files changed, 32 insertions(+), 10 deletions(-) - -commit c92bf4456143bc5e230bd0153d4bc938b68fddfc -Author: Christian Persch -Date: Wed Dec 7 17:54:57 2005 +0000 - - Add ephy_embed_scroll_pixels. - - 2005-12-07 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_scroll), - (ephy_embed_page_scroll), (ephy_embed_scroll_pixels): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Add ephy_embed_scroll_pixels. - - ChangeLog | 11 +++++++++++ - embed/ephy-embed.c | 29 +++++++++++++++++++++++++---- - embed/ephy-embed.h | 13 +++++++++++-- - embed/mozilla/EphyBrowser.cpp | 35 +++++++++++++++++++++++++++-------- - embed/mozilla/EphyBrowser.h | 5 +++-- - embed/mozilla/mozilla-embed.cpp | 21 +++++++++++++++++---- - 6 files changed, 94 insertions(+), 20 deletions(-) - -commit 89e2f69727a24f8667b1daf2341bae55b0567d10 -Author: Crispin Flowerday -Date: Tue Dec 6 20:10:17 2005 +0000 - - Forward up/down/page up/page down from the findbar entry to the embed. - - 2005-12-06 Crispin Flowerday - - * embed/ephy-embed.c: (ephy_embed_scroll), - (ephy_embed_page_scroll): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-find-toolbar.c: (entry_key_press_event_cb): - - Forward up/down/page up/page down from the findbar entry - to the embed. - - ChangeLog | 13 +++++++++++++ - embed/ephy-embed.c | 32 ++++++++++++++++++++++++++++++++ - embed/ephy-embed.h | 10 ++++++++++ - embed/mozilla/EphyBrowser.cpp | 29 +++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 3 +++ - embed/mozilla/mozilla-embed.cpp | 18 ++++++++++++++++++ - src/ephy-find-toolbar.c | 31 ++++++++++++++++++++++++++++--- - 7 files changed, 133 insertions(+), 3 deletions(-) - -commit a02815e758437be9ed36485a6a48b09423c59282 -Author: Ignacio Casal Quinteiro -Date: Tue Dec 6 18:55:50 2005 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 201 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 101 insertions(+), 104 deletions(-) - -commit 387d2cef145b71857415f9c10fdb2c8d9e0a6208 -Author: Christian Persch -Date: Tue Dec 6 11:31:09 2005 +0000 - - Don't try to connect signals to the destroyed node! - - 2005-12-05 Christian Persch - - * src/bookmarks/ephy-related-action.c: (node_destroyed_cb): - - Don't try to connect signals to the destroyed node! - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-related-action.c | 6 ------ - 2 files changed, 6 insertions(+), 6 deletions(-) - -commit 63dd2870cd328993e3f959c4e1888934494c3752 -Author: Francisco Javier F. Serrador -Date: Tue Dec 6 00:40:59 2005 +0000 - - Updated Spanish translation. - - 2005-12-06 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 257 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 140 insertions(+), 121 deletions(-) - -commit 2d52ce5068da8edb865c02fb2b905920d7f1056b -Author: Crispin Flowerday -Date: Mon Dec 5 23:21:05 2005 +0000 - - Fix a compile warning, and don't bother requesting a close if the find bar - - 2005-12-05 Crispin Flowerday - - * src/ephy-find-toolbar.c: (entry_changed_cb), - (ephy_find_toolbar_request_close): - - Fix a compile warning, and don't bother requesting a close - if the find bar is already closed - - ChangeLog | 8 ++++++++ - src/ephy-find-toolbar.c | 7 ++++++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 868e8cd543052eb6ad0c6a1642914230ca88b6cb -Author: Marcel Telka -Date: Mon Dec 5 22:47:41 2005 +0000 - - Updated Slovak translation. - - 2005-12-05 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 255 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 128 insertions(+), 131 deletions(-) - -commit 0909f0bd898d34e4204d8b90426d598e65b646ef -Author: Christian Persch -Date: Mon Dec 5 20:54:16 2005 +0000 - - Use sizeof() here. - - 2005-12-05 Christian Persch - - * src/ephy-tabs-menu.c: (tab_set_action_accelerator): - - Use sizeof() here. - - ChangeLog | 6 ++++++ - src/ephy-tabs-menu.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 480b4fa6a806a5e73d8842c75544c453acaf6c0a -Author: Christian Persch -Date: Mon Dec 5 20:27:19 2005 +0000 - - Updated comment to refer to the schema autogeneration tool. - - 2005-12-05 Christian Persch - - * lib/ephy-langs.c: - - Updated comment to refer to the schema autogeneration tool. - - ChangeLog | 6 ++++++ - lib/ephy-langs.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 17f1c7f1401ba0446c79b65d32b673ea601ba2b4 -Author: Christian Persch -Date: Mon Dec 5 20:26:19 2005 +0000 - - Remove a unused popup menu declaration. - - 2005-12-05 Christian Persch - - * data/ui/epiphany-ui.xml: - - Remove a unused popup menu declaration. - - ChangeLog | 6 ++++++ - data/ui/epiphany-ui.xml | 20 -------------------- - 2 files changed, 6 insertions(+), 20 deletions(-) - -commit fa95de40a8c8f5fe96acd7a6295b4b2de1d01476 -Author: Christian Persch -Date: Mon Dec 5 20:25:36 2005 +0000 - - Remove the paper selector from the print setup dialogue, we have one in - - 2005-12-05 Christian Persch - - * data/glade/print.glade: - * embed/print-dialog.c: (ephy_print_setup_dialog_new): - - Remove the paper selector from the print setup dialogue, - we have one in the print dialogue already. - - ChangeLog | 8 + - data/glade/print.glade | 641 ++++++++++++++++++++----------------------------- - embed/print-dialog.c | 35 --- - 3 files changed, 270 insertions(+), 414 deletions(-) - -commit bcaff0ac1f77177240c796781200fffc38da0e48 -Author: Christian Persch -Date: Mon Dec 5 20:23:50 2005 +0000 - - Fix spacings to be HIG compliant. Set window roles. - - 2005-12-05 Christian Persch - - * data/glade/certificate-dialogs.glade: - * data/glade/epiphany.glade: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * src/pdm-dialog.c: (show_cookies_properties), (pdm_dialog_init): - - Fix spacings to be HIG compliant. Set window roles. - - ChangeLog | 10 ++++++++++ - data/glade/certificate-dialogs.glade | 33 ++++++++++++------------------- - data/glade/epiphany.glade | 13 +++++++----- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 3 +-- - embed/mozilla/GtkNSSDialogs.cpp | 7 +++---- - src/pdm-dialog.c | 3 +-- - 6 files changed, 36 insertions(+), 33 deletions(-) - -commit b9c31e16883bbf41d29b13c728893f5a177d3e83 -Author: Christian Persch -Date: Mon Dec 5 20:21:08 2005 +0000 - - Add "tt". - - 2005-12-05 Christian Persch - - * src/languages.h: - - Add "tt". - - ChangeLog | 6 ++++++ - src/languages.h | 1 + - 2 files changed, 7 insertions(+) - -commit ed7fdb1e4ce44442cd24421a73fa7015b5e2378e -Author: Christian Persch -Date: Mon Dec 5 20:20:27 2005 +0000 - - Add image/x-png type. - - 2005-12-05 Christian Persch - - * data/mime-types-permissions.xml: - - Add image/x-png type. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit 76b9b6fd971e099e62df6e2472e9798d3bb21dec -Author: Christian Persch -Date: Mon Dec 5 20:19:43 2005 +0000 - - Use --with-gecko in the distcheck configure args. - - 2005-12-05 Christian Persch - - * Makefile.am: - - Use --with-gecko in the distcheck configure args. - - ChangeLog | 6 ++++++ - Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0ed07508bdb5bc92e68f9a14f7bd5127d7c11521 -Author: Adam Weinberger -Date: Mon Dec 5 18:47:40 2005 +0000 - - Updated Canadian English translation. - - - 2005-12-05 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 1751 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 890 insertions(+), 865 deletions(-) - -commit 075226abe59e441368abbfdd377181c626c39916 -Author: Åsmund Skjæveland -Date: Mon Dec 5 12:37:19 2005 +0000 - - Updated Norwegian Nynorsk translation. - - 2005-12-05 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 + - po/nn.po | 1689 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 932 insertions(+), 761 deletions(-) - -commit 697ae1008c476c24a4bbc94a67b6a26d72e9b658 -Author: Nikos Charonitakis -Date: Mon Dec 5 09:42:35 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 1322 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 711 insertions(+), 615 deletions(-) - -commit 45def779c085277b160b016d0fa75004a82f8439 -Author: Christian Persch -Date: Sun Dec 4 21:52:05 2005 +0000 - - While in find mode, set the selection colour to "attention". - - 2005-12-04 Christian Persch - - * embed/ephy-embed-find.c: (ephy_embed_find_set_selection): - * embed/ephy-embed-find.h: - * embed/mozilla/EphyFind.cpp: - * embed/mozilla/EphyFind.h: - * embed/mozilla/mozilla-embed-find.cpp: - - While in find mode, set the selection colour to "attention". - - * src/ephy-find-toolbar.c: (set_status), (clear_status), - (tab_search_key_press_cb), (entry_key_press_event_cb), - (entry_activate_cb), (set_focus_cb), - (ephy_find_toolbar_set_window), (ephy_find_toolbar_init), - (ephy_find_toolbar_class_init), (ephy_find_toolbar_set_embed), - (ephy_find_toolbar_open), (ephy_find_toolbar_close), - (ephy_find_toolbar_request_close): - * src/ephy-find-toolbar.h: - * src/ephy-window.c: (sync_tab_document_type), - (find_toolbar_close_cb), (ephy_window_set_print_preview), - (ephy_window_get_find_toolbar), (ephy_window_get_context_event): - - Refactor find toolbar closing not to crash with auto-closing popups. - Unset the selection colour on close. - Remove dead #ifdef FIND_WHILE_TYPING_IN_EMBED code. - - ChangeLog | 26 ++++++ - embed/ephy-embed-find.c | 8 ++ - embed/ephy-embed-find.h | 5 + - embed/mozilla/EphyFind.cpp | 60 ++++++++++++ - embed/mozilla/EphyFind.h | 3 +- - embed/mozilla/mozilla-embed-find.cpp | 11 +++ - src/ephy-find-toolbar.c | 174 ++++------------------------------- - src/ephy-find-toolbar.h | 2 + - src/ephy-window.c | 21 ++++- - 9 files changed, 148 insertions(+), 162 deletions(-) - -commit da002ee07fd517b377656ca1ddf86cb122881e0a -Author: Christian Persch -Date: Sun Dec 4 21:27:18 2005 +0000 - - Add a comment for translators. - - 2005-12-04 Christian Persch - - * embed/mozilla/GtkNSSDialog.cpp: - - Add a comment for translators. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSDialogs.cpp | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 32c5583766dd908d295860b8535958187392064f -Author: Kjartan Maraas -Date: Sat Dec 3 13:35:50 2005 +0000 - - Fix desktop files. Updated Norwegian bokmål translation Same. - - 2005-12-03 Kjartan Maraas - - * POTFILES.in: Fix desktop files. - * nb.po: Updated Norwegian bokmål translation - * no.po: Same. - - po/ChangeLog | 6 ++ - po/POTFILES.in | 4 +- - po/nb.po | 240 ++++++++++++++++++++++++++++----------------------------- - po/no.po | 240 ++++++++++++++++++++++++++++----------------------------- - 4 files changed, 246 insertions(+), 244 deletions(-) - -commit ff271bce34424709329634ded28e33117dbb2782 -Author: Christian Persch -Date: Tue Nov 29 15:30:36 2005 +0000 - - Fix transposed arguments. - - 2005-11-29 Christian Persch - - * src/pdm-dialog.c: (pdm_dialog_cookie_scroll_to): - - Fix transposed arguments. - - ChangeLog | 6 ++++++ - src/pdm-dialog.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 3a78991995ffbd980f1520a4c666929a7ed8b19c -Author: Christian Persch -Date: Tue Nov 29 15:09:04 2005 +0000 - - Add a method to generate collation keys for domain names. - - 2005-11-29 Christian Persch - - * lib/ephy-string.c: (ephy_string_collate_key_for_domain): - * lib/ephy-string.h: - - Add a method to generate collation keys for domain names. - - * src/pdm-dialog.c: (cookie_search_equal), - (pdm_dialog_cookies_construct), (cookie_host_to_iter), - (compare_cookie_host_keys), (pdm_dialog_fill_cookies_list), - (pdm_dialog_cookies_destruct), (pdm_dialog_cookie_add), - (pdm_dialog_cookie_scroll_to), (sync_notebook_tab), - (pdm_dialog_init), (pdm_dialog_finalize), (pdm_dialog_open): - * src/pdm-dialog.h: - * src/window-commands.c: (window_cmd_edit_personal_data): - - Open the PDM dialogue on the cookies page scrolled to show the - cookies of the currently loaded page, if there are any. Sort - cookies by domain. Allow treeview typeaheadfind search to find - by substring not prefix. - - ChangeLog | 21 +++++ - lib/ephy-string.c | 48 ++++++++++ - lib/ephy-string.h | 3 + - src/pdm-dialog.c | 236 +++++++++++++++++++++++++++++++++++++++++++++----- - src/pdm-dialog.h | 5 +- - src/window-commands.c | 21 ++++- - 6 files changed, 306 insertions(+), 28 deletions(-) - -commit daa303eedb6e900836a721673dcd2af444748c87 -Author: Christian Persch -Date: Tue Nov 29 12:53:29 2005 +0000 - - R data/bme.desktop.in: A data/bme.desktop.in.in: R - - 2005-11-29 Christian Persch - - * configure.ac: - * data/Makefile.am: - R data/bme.desktop.in: - A data/bme.desktop.in.in: - R data/epiphany.desktop.in: - A data/epiphany.desktop.in.in: - - Remove empty DocPath from desktop files, and add bugzilla version. - Generate the .in files from configure. - - ChangeLog | 12 ++++++++++++ - configure.ac | 2 ++ - data/Makefile.am | 8 +++----- - data/bme.desktop.in | 15 --------------- - data/bme.desktop.in.in | 15 +++++++++++++++ - data/epiphany.desktop.in | 16 ---------------- - data/epiphany.desktop.in.in | 16 ++++++++++++++++ - 7 files changed, 48 insertions(+), 36 deletions(-) - -commit 04f200e2fbc35e117d4434a89ceae38453f16f87 -Author: Christian Persch -Date: Mon Nov 28 22:35:29 2005 +0000 - - Suppress some C++ compiler warnings. - - 2005-11-28 Christian Persch - - * configure.ac: - - Suppress some C++ compiler warnings. - - ChangeLog | 6 ++++++ - configure.ac | 29 +++++++++++++++-------------- - 2 files changed, 21 insertions(+), 14 deletions(-) - -commit d6a5a8422b2bd8bce71df9aeb81d88504df5167b -Author: Christian Persch -Date: Mon Nov 28 22:13:07 2005 +0000 - - Move more checks to gecko.m4. - - 2005-11-28 Christian Persch - - * configure.ac: - * m4/gecko.m4: - - Move more checks to gecko.m4. - - ChangeLog | 7 ++ - configure.ac | 230 ++++++++++++++-------------------- - doc/reference/tmpl/ephy-embed.sgml | 3 + - m4/gecko.m4 | 246 +++++++++++++++++++++++++------------ - 4 files changed, 268 insertions(+), 218 deletions(-) - -commit fcd8c375fe58b0a54b740ad45c26aa94508b7545 -Author: Francisco Javier F. Serrador -Date: Sun Nov 27 17:30:55 2005 +0000 - - Updated Spanish translation (QA) - - 2005-11-27 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation (QA) - - po/ChangeLog | 4 +++ - po/es.po | 84 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 46 insertions(+), 42 deletions(-) - -commit a7e1467e5987baf6ea4a1a2a359b8d87706870fc -Author: Christian Persch -Date: Sun Nov 27 14:18:42 2005 +0000 - - Correctly save and restore CXXFLAGS. - - 2005-11-27 Christian Persch - - * configure.ac: - - Correctly save and restore CXXFLAGS. - - ChangeLog | 6 ++++++ - configure.ac | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 6c86554eba317d7fcf518c02f3749cc727ec0ddd -Author: Christian Persch -Date: Sun Nov 27 14:12:39 2005 +0000 - - Fix CXXFLAGS restore for XPCOM component test - - m4/gecko.m4 | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c9fb45080ff2e2d45a7049c0b1ff8705f97f7dc2 -Author: Christian Persch -Date: Sat Nov 26 11:47:03 2005 +0000 - - Fix -fshort-wchar compiler flag check - - m4/gecko.m4 | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit c9a772f6e394651686a71d417b974f1ab45c94f1 -Author: Theppitak Karoonboonyanan -Date: Sat Nov 26 10:42:56 2005 +0000 - - Updated Thai translation. - - 2005-11-26 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++++ - po/th.po | 26 +++++++++++++------------- - 2 files changed, 17 insertions(+), 13 deletions(-) - -commit e524593b66a01634d09ebb013f66e47a07b58767 -Author: Francisco Javier F. Serrador -Date: Fri Nov 25 21:36:46 2005 +0000 - - Updated Spanish tranlation. - - 2005-11-25 Francisco Javier F. Serrador - - * es.po: Updated Spanish tranlation. - - po/ChangeLog | 4 ++++ - po/es.po | 78 ++++++++++++++++++++++++------------------------------------ - 2 files changed, 35 insertions(+), 47 deletions(-) - -commit dfdc0d2b06867a2814c1b504eac4cadad1d24eae -Author: Christian Persch -Date: Fri Nov 25 20:14:43 2005 +0000 - - Fix debug flag detection - - m4/gecko.m4 | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit f5b9b0502076c6e3d25f204e77bbfb83be6ec501 -Author: Alexander Shopov -Date: Fri Nov 25 11:13:27 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-11-25 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 ++ - po/bg.po | 163 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 87 insertions(+), 81 deletions(-) - -commit c0f3b386d5240133b6a7a29cbe9bf91967fcfbe0 -Author: Alexander Shopov -Date: Wed Nov 23 16:39:53 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-11-23 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 336 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 167 insertions(+), 174 deletions(-) - -commit 9dfe0f8f7a1509e22e3436c5e7fcb47477381caf -Author: Ignacio Casal Quinteiro -Date: Mon Nov 21 21:35:38 2005 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++ - po/gl.po | 143 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 78 insertions(+), 69 deletions(-) - -commit 978386c661f335dc8a11eca04a96e001490ca45d -Author: Theppitak Karoonboonyanan -Date: Mon Nov 21 07:11:52 2005 +0000 - - Updated Thai translation. - - 2005-11-21 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++ - po/th.po | 157 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 76 insertions(+), 85 deletions(-) - -commit a70b6f065c7ed6bfc8482515035f4476a83aa416 -Author: Theppitak Karoonboonyanan -Date: Sun Nov 20 11:13:04 2005 +0000 - - Updated Thai translation. - - 2005-11-20 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++ - po/th.po | 133 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 81 insertions(+), 56 deletions(-) - -commit 1bf58b6de607f788a9263c2ab7f600da4a31c16f -Author: Christian Persch -Date: Sat Nov 19 13:21:57 2005 +0000 - - Fix build with moz 1.7 - - embed/mozilla/EphyContentPolicy.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d108bc542f65dce2c6d3ee798046211c3678f60a -Author: Chao-Hsiung Liao -Date: Fri Nov 18 23:36:23 2005 +0000 - - Updated Traditional Chinese translation. - - - 2005-11-19 Chao-Hsiung Liao - - * zh_TW.po: Updated Traditional Chinese translation. - - po/ChangeLog | 4 + - po/zh_TW.po | 1266 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 684 insertions(+), 586 deletions(-) - -commit e778dd0ac9a67fa9f5b89be85fb969fea993fe70 -Author: Christian Persch -Date: Fri Nov 18 19:27:28 2005 +0000 - - Add chrome: and resource: to the safe list; otherwise forms and scrollbars - - 2005-11-18 Christian Persch - - * embed/mozilla/EphyContentPolicy.cpp: - * embed/ephy-embed-single.c: - * embed/ephy-embed-single.h: - * src/epiphany.defs: - - Add chrome: and resource: to the safe list; otherwise - forms and scrollbars break. Fixes bug #316498. - - ChangeLog | 1 + - src/epiphany.defs | 16 ---------------- - 2 files changed, 1 insertion(+), 16 deletions(-) - -commit 2fc8ea94dc040a9854718593571b48345d6b22f2 -Author: Christian Persch -Date: Fri Nov 18 19:24:16 2005 +0000 - - Add chrome: and resource: to the safe list; otherwise forms and scrollbars - - 2005-11-18 Christian Persch - - * embed/mozilla/EphyContentPolicy.cpp: - * embed/ephy-embed-single.c: - * embed/ephy-embed-single.h: - - Add chrome: and resource: to the safe list; otherwise - forms and scrollbars break. Fixes bug #316498. - - ChangeLog | 9 +++ - embed/ephy-embed-single.c | 27 --------- - embed/ephy-embed-single.h | 17 ------ - embed/mozilla/EphyContentPolicy.cpp | 113 ++++++++++++------------------------ - 4 files changed, 45 insertions(+), 121 deletions(-) - -commit 9c59c6bc168115ba34387b2777f6898289c37e3a -Author: Christian Persch -Date: Fri Nov 18 18:52:54 2005 +0000 - - Don't warn when reading a .xml when we previously read the .ephy-extension - - 2005-11-18 Christian Persch - - * src/ephy-extensions-manager.c: - - Don't warn when reading a .xml when we previously read the - .ephy-extension for this identifier. Allows .xml and .ephy-extension - to co-exist in ~/.gnome2/epiphany/extensions. - - ChangeLog | 8 ++++ - src/ephy-extensions-manager.c | 85 +++++++++++++++++++++++++++++++++++-------- - 2 files changed, 78 insertions(+), 15 deletions(-) - -commit d79367d043e812c59ccd6893d981a4eb528bd532 -Author: Christian Persch -Date: Fri Nov 18 18:37:36 2005 +0000 - - Delay reloads when we get many change notifications in a short time. Fixes - - 2005-11-18 Christian Persch - - * src/ephy-tab.c: - - Delay reloads when we get many change notifications in a short time. - Fixes bug #319993. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 63 +++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 47 insertions(+), 23 deletions(-) - -commit abf92fe9de040606889df2a839b55b1228235292 -Author: Ales Nyakhaychyk -Date: Fri Nov 18 15:00:11 2005 +0000 - - Updated Belarusian Translation - - po/ChangeLog | 4 + - po/be.po | 523 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 283 insertions(+), 244 deletions(-) - -commit 7ff419ea77ccde41ae59ccc181f8a176a8b24cdf -Author: Adam Weinberger -Date: Fri Nov 18 02:06:00 2005 +0000 - - Updated Canadian English translation. - - - 2005-11-17 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 446 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 229 insertions(+), 221 deletions(-) - -commit 9c7a5e8fe5019f40af6de89bfc09a4d98c2a1fae -Author: Francisco Javier F. Serrador -Date: Thu Nov 17 22:17:29 2005 +0000 - - Updated Spanish translation. - - 2005-11-17 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 463 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 238 insertions(+), 229 deletions(-) - -commit 0c7e07b0263e5e1e4a1ca0f94ec591dd5a7cd74b -Author: Christian Persch -Date: Thu Nov 17 20:01:56 2005 +0000 - - Add F5 as accel for reload. - - 2005-11-17 Christian Persch - - * src/ephy-window.c: - - Add F5 as accel for reload. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 6 +----- - 2 files changed, 7 insertions(+), 5 deletions(-) - -commit ad3166ad6d7a89c0265af5edb2829718d0de5327 -Author: Christian Persch -Date: Thu Nov 17 18:55:30 2005 +0000 - - Set the model's sort column only after filling it. Vastly improves delay - - 2005-11-17 Christian Persch - - * src/pdm-dialog.c: - - Set the model's sort column only after filling it. Vastly improves - delay when opening the PDM dialogue when you have many cookies. - - ChangeLog | 7 +++++++ - src/pdm-dialog.c | 26 +++++++++++++++++++------- - 2 files changed, 26 insertions(+), 7 deletions(-) - -commit a145efca78c6a1e81d457fe85cb1e311c61ace6a -Author: Marcel Telka -Date: Thu Nov 17 14:50:00 2005 +0000 - - Updated Slovak translation. - - 2005-11-17 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++++ - po/sk.po | 42 +++++++++++++++++++++--------------------- - 2 files changed, 25 insertions(+), 21 deletions(-) - -commit f4ece7164844a7a4ba82ee9352256fa3a3d84a24 -Author: Funda Wang -Date: Thu Nov 17 10:18:04 2005 +0000 - - Updated epiphany translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 558 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 324 insertions(+), 238 deletions(-) - -commit 4c52dc5e4be0ea650ed51fbf934242a37d89d7b3 -Author: Christian Persch -Date: Wed Nov 16 21:37:45 2005 +0000 - - Fix the nsIPassword.h presence check. - - 2005-11-16 Christian Persch - - * configure.ac: - - Fix the nsIPassword.h presence check. - - ChangeLog | 8 +++++++- - configure.ac | 23 +++++++++++++---------- - 2 files changed, 20 insertions(+), 11 deletions(-) - -commit 2eebaa07367defe2f26a61654f5db7ab1414ee8f -Author: Christian Persch -Date: Wed Nov 16 12:48:17 2005 +0000 - - Prettify CRL import dialogue. Fixes bug #321590. - - 2005-11-15 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - - Prettify CRL import dialogue. Fixes bug #321590. - - ChangeLog | 6 +++++ - embed/mozilla/GtkNSSDialogs.cpp | 53 ++++++++++++++++++++++++++--------------- - 2 files changed, 40 insertions(+), 19 deletions(-) - -commit ccf581fe92ddf6f57a8ff644dc6d1c6a47659980 -Author: Ignacio Casal Quinteiro -Date: Wed Nov 16 09:39:24 2005 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/gl.po | 1245 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 651 insertions(+), 598 deletions(-) - -commit 779d3f245c9809341d0694fea55b8c80ebeaf7da -Author: Marcel Telka -Date: Wed Nov 16 05:06:57 2005 +0000 - - Updated Slovak translation. - - 2005-11-16 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 433 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 223 insertions(+), 214 deletions(-) - -commit 762ff6730c958e41d869e76d07b85134e446a9f5 -Author: Kjartan Maraas -Date: Tue Nov 15 21:07:57 2005 +0000 - - Updated Norwegian bokmål translation. Same. - - 2005-11-15 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 + - po/nb.po | 1530 ++++++++++++++++++++++++++++++---------------------------- - po/no.po | 1530 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 1587 insertions(+), 1478 deletions(-) - -commit ffc80b3757898250d96374fbd8bccbcf43d443c4 -Author: Theppitak Karoonboonyanan -Date: Tue Nov 15 15:27:58 2005 +0000 - - Updated Thai translation. - - 2005-11-15 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 1604 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 877 insertions(+), 731 deletions(-) - -commit aa6924e780e8755002d638cfa4f28eef14dd8152 -Author: Christian Persch -Date: Tue Nov 15 13:35:38 2005 +0000 - - Don't put the prefs/pdm dialogue over all windows. Make the add-language - - 2005-11-15 Christian Persch - - * data/glade/epiphany.glade: - * data/glade/prefs-dialog.glade: - * data/glade/print.glade: - * src/pdm-dialog.c: (pdm_dialog_response_cb), (pdm_dialog_init): - * src/prefs-dialog.c: (setup_add_language_dialog), - (prefs_dialog_init): - - Don't put the prefs/pdm dialogue over all windows. Make the - add-language dialogue modal to the prefs dialogue. - - ChangeLog | 12 ++++++++++++ - data/glade/epiphany.glade | 2 +- - data/glade/prefs-dialog.glade | 2 +- - data/glade/print.glade | 2 +- - src/pdm-dialog.c | 17 ++++++++--------- - src/prefs-dialog.c | 12 +++++++++--- - 6 files changed, 32 insertions(+), 15 deletions(-) - -commit df708b818ae51b9e76a47504534104fa5b96e880 -Author: Christian Persch -Date: Mon Nov 14 20:26:22 2005 +0000 - - Mark message for translation. Patch by Guilherme de S. Pastore, fixes bug - - 2005-11-14 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Mark message for translation. Patch by Guilherme de S. Pastore, - fixes bug #319988. - - ChangeLog | 7 +++++++ - src/window-commands.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit f0d8210968d8c56d81e13d3fbde17722cb8c4a92 -Author: Alexander Shopov -Date: Mon Nov 14 12:27:16 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-11-14 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 1526 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 797 insertions(+), 734 deletions(-) - -commit 9dc9718ccb82017a4cebb5065044eaa173383bdc -Author: Christian Persch -Date: Sun Nov 13 17:44:08 2005 +0000 - - Fix for mozilla API change. - - 2005-11-13 Christian Persch - - * embed/mozilla/EphyAboutModule.cpp: - * embed/mozilla/EphyAboutModule.h: - - Fix for mozilla API change. - - ChangeLog | 7 +++++ - embed/mozilla/EphyAboutModule.cpp | 58 +++++++++++++++++++++------------------ - embed/mozilla/EphyAboutModule.h | 8 +++--- - 3 files changed, 43 insertions(+), 30 deletions(-) - -commit da8c338ff084b90e43c2333b91bdcde8d765ff00 -Author: Philip Langdale -Date: Sat Nov 12 20:48:16 2005 +0000 - - Remove accelerator actions for extra keybindings. - - 2005-11-12 Philip Langdale - - * data/ui/epiphany-ui.xml: Remove accelerator actions - for extra keybindings. - - * src/ephy-lockdown.c: (update_window): - Don't manipulate removed "FileSave" action. - - * src/ephy-toolbar.c - * src/ephy-toolbar.h: (ephy_toolbar_get_action_group): - - Add getter for the toolbar's action group. - - * src/ephy-window.c: (ephy_window_key_press_event): - - Transition over to the Galeon mechanism for handling - extra keybindings. This maps the keybindings to - actions so that no extra actions are required. The - only subtlety is that some of the actions come from - the toolbar, so access to its action group is required. - - * src/window-commands.c - * src/window-commands.h: (window_cmd_go_back/forward/home): - Remove the now unsued back/forward/home callbacks. - - ChangeLog | 25 ++++++++++++ - data/ui/epiphany-ui.xml | 16 -------- - src/ephy-lockdown.c | 2 - - src/ephy-toolbar.c | 6 +++ - src/ephy-toolbar.h | 2 + - src/ephy-window.c | 101 +++++++++++++++--------------------------------- - src/window-commands.c | 50 ------------------------ - src/window-commands.h | 10 ----- - 8 files changed, 64 insertions(+), 148 deletions(-) - -commit d211a9678ff2a47bfcf6ce2ede0979f01f536fe9 -Author: Christian Persch -Date: Sat Nov 12 16:48:50 2005 +0000 - - Fix schemas install and add generate-font-schemas.py to EXTRA_DIST. - - 2005-11-12 Christian Persch - - * data/Makefile.am: - - Fix schemas install and add generate-font-schemas.py - to EXTRA_DIST. - - ChangeLog | 7 +++++++ - data/Makefile.am | 15 +++++++++------ - 2 files changed, 16 insertions(+), 6 deletions(-) - -commit d0b96ec1c87ce1d5971a4cea9073c68843214a71 -Author: Christian Persch -Date: Sat Nov 12 16:32:03 2005 +0000 - - Add schema entries for the fonts keys. - - 2005-11-12 Christian Persch - - * data/Makefile.am: - * data/default-prefs-common.js: - * data/generate-font-schemas.py: - * data/epiphany-fonts.schemas: - - Add schema entries for the fonts keys. - - ChangeLog | 9 + - data/default-prefs-common.js | 52 -- - data/epiphany-fonts.schemas | 1435 +++++++++++++++++++++++++++++++++++++++++ - data/generate-font-schemas.py | 112 ++++ - 4 files changed, 1556 insertions(+), 52 deletions(-) - -commit cba54efb932a4bf8402ff3f9f17904dcb3c496f2 -Author: Miloslav Trmac -Date: Sat Nov 12 16:20:48 2005 +0000 - - Updated Czech translation. - - 2005-11-12 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 171 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 103 insertions(+), 72 deletions(-) - -commit 79b7c811ef42eb752e499763e5153a912cb0ec9b -Author: Christian Persch -Date: Sat Nov 12 16:18:51 2005 +0000 - - Post-release version bump. - - 2005-11-12 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit db3389ce446f3fdb6e2a8cf0447920a6bb4e4d31 -Author: Christian Persch -Date: Sat Nov 12 16:16:38 2005 +0000 - - === Release 1.9.2 === - - 2005-11-12 Christian Persch - - === Release 1.9.2 === - - * Makefile.am: - - Pass make distcheck. - - * NEWS: - * configure.ac: - - Updated for 1.9.2. - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_to_xml), - (egg_toolbars_model_save), (parse_data_list), (parse_item_list), - (parse_toolbars): - * src/bookmarks/ephy-bookmarks-ui.c: - (ephy_bookmarks_ui_attach_toolbar_model): - - Fix compile warnings. - - ChangeLog | 21 ++++++++++++ - Makefile.am | 1 - - NEWS | 50 ++++++++++++++++++++++++++++ - configure.ac | 2 +- - doc/reference/tmpl/EphySingle.sgml | 3 +- - doc/reference/tmpl/ephy-embed.sgml | 3 ++ - doc/reference/tmpl/ephy-glade.sgml | 13 -------- - doc/reference/tmpl/epiphany-unused.sgml | 12 +++++++ - lib/egg/egg-toolbars-model.c | 59 +++++++++++++++++---------------- - src/bookmarks/ephy-bookmarks-ui.c | 12 ++++--- - 10 files changed, 127 insertions(+), 49 deletions(-) - -commit 57190391484d86b82cf53b991f2d82e6b7d2daf5 -Author: Ales Nyakhaychyk -Date: Fri Nov 11 15:54:45 2005 +0000 - - Updated Belarusian Translation - - po/ChangeLog | 4 + - po/be.po | 3784 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1995 insertions(+), 1793 deletions(-) - -commit f38b7045271aa3b38a6dda357726091b413c1be0 -Author: Crispin Flowerday -Date: Thu Nov 10 21:32:36 2005 +0000 - - lib/ephy-file-helpers.c lib/widgets/ephy-location-entry.c - - 2005-11-10 Crispin Flowerday - - * lib/ephy-file-helpers.c - * lib/widgets/ephy-location-entry.c - * src/ephy-session.c - * src/bookmarks/ephy-bookmarks-import.c: - - Remove some unused variables - - ChangeLog | 9 +++++++++ - lib/ephy-file-helpers.c | 3 ++- - lib/widgets/ephy-location-entry.c | 1 - - src/bookmarks/ephy-bookmarks-import.c | 2 +- - src/ephy-session.c | 2 -- - 5 files changed, 12 insertions(+), 5 deletions(-) - -commit 8fa636f36bf250aa729409de2d77c562f809eebc -Author: Christian Persch -Date: Thu Nov 10 10:45:26 2005 +0000 - - Rewrite the contractid check. Now works with builds without - - 2005-11-09 Christian Persch - - * configure.ac: - * m4/gecko.m4: - - Rewrite the contractid check. Now works with builds without - --with-default-mozilla-five-home. - Balance AC_LANG_POP/PUSH. - - ChangeLog | 9 +++++++++ - configure.ac | 1 + - m4/gecko.m4 | 43 ++++++++++++++++++++++++++++++++++--------- - 3 files changed, 44 insertions(+), 9 deletions(-) - -commit 744e44b5a8af8b04f6965dd23c67a55d33e71db4 -Author: Christian Persch -Date: Wed Nov 9 22:20:36 2005 +0000 - - Use $PACKAGE_NAME. - - 2005-11-09 Christian Persch - - * m4/gecko.m4: - - Use $PACKAGE_NAME. - - ChangeLog | 6 ++++++ - m4/gecko.m4 | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 2e13a1425a5f9b52e6b91c395a304cc71b2d6102 -Author: Christian Persch -Date: Wed Nov 9 22:16:20 2005 +0000 - - Tiny output improvements. - - 2005-11-09 Christian Persch - - * configure.ac: - * m4/gecko.m4: - - Tiny output improvements. - - ChangeLog | 7 +++++++ - configure.ac | 2 +- - m4/gecko.m4 | 11 +++++------ - 3 files changed, 13 insertions(+), 7 deletions(-) - -commit 644d76ada5c90a2b070c5a31be3fe6a95156fe5d -Author: Christian Persch -Date: Wed Nov 9 22:06:43 2005 +0000 - - Add check for contract IDs which we need but are only provided by - - 2005-11-09 Christian Persch - - * configure.ac: - * m4/gecko.m4: - - Add check for contract IDs which we need but are only provided - by extensions which may or may not have been built into gecko. - We cannot check for the headers here since they are always present. - - ChangeLog | 9 +++++++++ - configure.ac | 6 ++++++ - m4/gecko.m4 | 22 ++++++++++++---------- - 3 files changed, 27 insertions(+), 10 deletions(-) - -commit 8353ce327a0ca559a8ba2fac90d822e328f90b5b -Author: Christian Persch -Date: Wed Nov 9 21:46:31 2005 +0000 - - Because the Dwnloads window is a GtkDiaog for technical reasons, we set - - 2005-11-09 Christian Persch - - * data/glade/epiphany.glade: - - Because the Dwnloads window is a GtkDiaog for technical reasons, - we set the type hint to 'normal' so it still has close/minimise - buttons. - - ChangeLog | 8 ++++++++ - data/glade/epiphany.glade | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 907535f1e786cea8bd30f74cf93f6600fec4e09d -Author: Christian Persch -Date: Wed Nov 9 21:40:27 2005 +0000 - - A m4/gecko.m4: - - 2005-11-09 Christian Persch - - * configure.ac: - A m4/gecko.m4: - - Distill the gecko detection logic into a macro package. - - ChangeLog | 7 ++ - configure.ac | 131 ++++---------------------------- - m4/gecko.m4 | 241 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 261 insertions(+), 118 deletions(-) - -commit b3e5d966c4ab222cf9bcf35e1905a3d396f47d27 -Author: Ales Nyakhaychyk -Date: Wed Nov 9 09:29:14 2005 +0000 - - Updated Belarusian Translation - - po/ChangeLog | 4 +++ - po/be.po | 89 ++++++++++++++++++++++++------------------------------------ - 2 files changed, 40 insertions(+), 53 deletions(-) - -commit e13cf5ef53469ca94764471a8717be8049c27bc4 -Author: Žygimantas Beručka -Date: Wed Nov 9 00:10:54 2005 +0000 - - Updated Lithuanian translation. - - 2005-11-09 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 1157 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 630 insertions(+), 531 deletions(-) - -commit d8e00d788367ce0530b3959d20824d474ccea179 -Author: Christian Persch -Date: Tue Nov 8 13:26:30 2005 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - embed/ephy-embed-persist.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0081e3e7afcb59c78529f6871cbf4f2802319c43 -Author: Christian Persch -Date: Tue Nov 8 13:10:50 2005 +0000 - - Don't translate param spec strings. - - 2005-11-08 Christian Persch - - * lib/egg/eggstatusicon.c: (egg_status_icon_class_init): - * lib/egg/eggtrayicon.c: (egg_tray_icon_class_init): - * lib/egg/eggtraymanager.c: (egg_tray_manager_class_init): - - Don't translate param spec strings. - - ChangeLog | 8 ++++++++ - lib/egg/eggstatusicon.c | 29 +++++++++++++++-------------- - lib/egg/eggtrayicon.c | 5 +++-- - lib/egg/eggtraymanager.c | 5 +++-- - 4 files changed, 29 insertions(+), 18 deletions(-) - -commit 9bd86937bbf9842ed7884077a04f76757a086734 -Author: Christian Persch -Date: Tue Nov 8 13:10:10 2005 +0000 - - Make "network-status" property readwrite. - - 2005-11-08 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): - * embed/mozilla/mozilla-embed-single.cpp: - - Make "network-status" property readwrite. - - ChangeLog | 7 +++++++ - embed/ephy-embed-single.c | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 22 +++++++++++++++++++--- - 3 files changed, 27 insertions(+), 4 deletions(-) - -commit 120c3497530166c3d0c6ce1e40dd3713b2561b40 -Author: Christian Persch -Date: Tue Nov 8 12:56:24 2005 +0000 - - More static strings. - - 2005-11-08 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): - * lib/egg/eggstatusicon.c: (egg_status_icon_class_init): - * lib/egg/eggtrayicon.c: (egg_tray_icon_class_init): - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_class_init): - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_class_init): - * src/bookmarks/ephy-topic-action.c: - (ephy_topic_action_class_init): - * src/ephy-find-toolbar.c: (ephy_find_toolbar_class_init): - * src/ephy-fullscreen-popup.c: (ephy_fullscreen_popup_class_init): - * src/ephy-location-action.c: (ephy_location_action_class_init): - * src/ephy-python-extension.c: (ephy_python_extension_class_init): - * src/ephy-session.c: (ephy_session_class_init): - * src/ephy-tab.c: (ephy_tab_class_init): - * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_class_init): - * src/ephy-toolbar.c: (ephy_toolbar_class_init): - * src/ppview-toolbar.c: (ppview_toolbar_class_init): - - More static strings. - - ChangeLog | 23 +++++++++++++++++++++++ - embed/ephy-embed-single.c | 2 +- - lib/egg/eggstatusicon.c | 6 +++--- - lib/egg/eggtrayicon.c | 2 +- - lib/widgets/ephy-location-entry.c | 4 ++-- - src/bookmarks/ephy-bookmark-action.c | 8 ++++---- - src/bookmarks/ephy-topic-action.c | 2 +- - src/ephy-find-toolbar.c | 2 +- - src/ephy-fullscreen-popup.c | 2 +- - src/ephy-location-action.c | 2 +- - src/ephy-python-extension.c | 2 +- - src/ephy-session.c | 2 +- - src/ephy-tab.c | 24 ++++++++++++------------ - src/ephy-toolbar-editor.c | 2 +- - src/ephy-toolbar.c | 2 +- - src/ppview-toolbar.c | 2 +- - 16 files changed, 55 insertions(+), 32 deletions(-) - -commit 82c9d32820f4746129cfc2a57fee4eed78af5b78 -Author: Christian Persch -Date: Tue Nov 8 12:47:18 2005 +0000 - - Mark strings in param specs as static. - - 2005-11-08 Christian Persch - - * embed/ephy-embed-dialog.c: (ephy_embed_dialog_class_init): - * embed/ephy-embed-persist.c: (ephy_embed_persist_class_init): - * embed/ephy-history.c: (ephy_history_class_init): - * embed/mozilla/mozilla-download.cpp: - * lib/egg/egg-editable-toolbar.c: - (egg_editable_toolbar_class_init): - * lib/egg/egg-toolbar-editor.c: (egg_toolbar_editor_class_init): - * lib/egg/eggstatusicon.c: (egg_status_icon_class_init): - * lib/egg/eggtraymanager.c: (egg_tray_manager_class_init): - * lib/ephy-dialog.c: (ephy_dialog_class_init): - * lib/ephy-file-chooser.c: (ephy_file_chooser_class_init): - * lib/ephy-node-db.c: (ephy_node_db_class_init): - * lib/widgets/ephy-node-view.c: (ephy_node_view_class_init): - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_class_init): - * lib/widgets/ephy-zoom-action.c: (ephy_zoom_action_class_init): - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_class_init): - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_class_init): - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_class_init): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_class_init): - * src/bookmarks/ephy-new-bookmark.c: - (ephy_new_bookmark_class_init): - * src/bookmarks/ephy-topic-action.c: - (ephy_topic_action_class_init): - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_class_init): - * src/ephy-encoding-menu.c: (ephy_encoding_menu_class_init): - * src/ephy-history-window.c: (ephy_history_window_class_init): - * src/ephy-location-action.c: (ephy_location_action_class_init): - * src/ephy-navigation-action.c: - (ephy_navigation_action_class_init): - * src/ephy-notebook.c: (ephy_notebook_class_init): - * src/ephy-tab.c: (ephy_tab_class_init): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_class_init): - * src/ephy-window.c: (ephy_window_class_init): - - Mark strings in param specs as static. - - ChangeLog | 43 ++++++++++++++++++++++++++++++++ - embed/ephy-embed-dialog.c | 2 +- - embed/ephy-embed-persist.c | 18 ++++++------- - embed/ephy-history.c | 2 +- - embed/mozilla/mozilla-download.cpp | 2 +- - lib/egg/egg-editable-toolbar.c | 4 +-- - lib/egg/egg-toolbar-editor.c | 4 +-- - lib/egg/eggstatusicon.c | 8 +++--- - lib/egg/eggtraymanager.c | 2 +- - lib/ephy-dialog.c | 10 ++++---- - lib/ephy-file-chooser.c | 2 +- - lib/ephy-node-db.c | 4 +-- - lib/widgets/ephy-node-view.c | 4 +-- - lib/widgets/ephy-tree-model-node.c | 2 +- - lib/widgets/ephy-zoom-action.c | 2 +- - lib/widgets/ephy-zoom-control.c | 2 +- - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 4 +-- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/bookmarks/ephy-new-bookmark.c | 4 +-- - src/bookmarks/ephy-topic-action.c | 2 +- - src/bookmarks/ephy-topics-selector.c | 4 +-- - src/ephy-encoding-menu.c | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-location-action.c | 14 +++++------ - src/ephy-navigation-action.c | 6 ++--- - src/ephy-notebook.c | 4 +-- - src/ephy-tab.c | 6 ++--- - src/ephy-tabs-menu.c | 2 +- - src/ephy-window.c | 8 +++--- - 30 files changed, 108 insertions(+), 65 deletions(-) - -commit 003cc31d9db5de711c89915c916b77e9e910d59f -Author: Christian Persch -Date: Mon Nov 7 22:41:03 2005 +0000 - - Allow compilation against xulrunner. Patch by Robert O'Callahan - - 2005-11-07 Christian Persch - - * configure.ac: - - Allow compilation against xulrunner. Patch by - Robert O'Callahan . - - ChangeLog | 7 +++++++ - configure.ac | 5 +++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit b19e5ec32839085cb639d4fbbbe13b1d0526a2f7 -Author: Bastien Nocera -Date: Mon Nov 7 19:33:31 2005 +0000 - - reviewed by: Christian Persch - - 2005-11-07 Bastien Nocera - - reviewed by: Christian Persch - - * plugins/desktop-file/plugin.cpp: Fix memleaks in the usage of - g_key_file_get_string(). Fixes bug #320901. - - ChangeLog | 7 +++++++ - plugins/desktop-file/plugin.cpp | 3 +++ - 2 files changed, 10 insertions(+) - -commit 6722139ac9f06cd3874c2836868af4ff69471d97 -Author: Francisco Javier F. Serrador -Date: Mon Nov 7 15:18:11 2005 +0000 - - Updated Spanish translation. - - 2005-11-07 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 120 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 76 insertions(+), 48 deletions(-) - -commit 611c3ffc7eb1248ee28a8dc35b19e468e0d0fc9c -Author: Marcel Telka -Date: Sun Nov 6 10:59:18 2005 +0000 - - Updated Slovak translation. - - 2005-11-06 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 1098 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 589 insertions(+), 513 deletions(-) - -commit 95c6bfaeea51cf88e315a5c187f7d9ba3eca986e -Author: Christian Persch -Date: Sat Nov 5 20:05:41 2005 +0000 - - Scroll the view so the selected cert is visible. Fixes bug #320758. - - 2005-11-05 Christian Persch - - * embed/mozilla/GtkNSSDialog.cpp: - - Scroll the view so the selected cert is visible. Fixes bug #320758. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSDialogs.cpp | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit ed10ddc364d470a11cba1a997ad938303fa89261 -Author: Vincent van Adrighem -Date: Sat Nov 5 12:26:18 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-11-05 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 1318 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 708 insertions(+), 614 deletions(-) - -commit 99b3813259ea7e31b30633a13ad51bf2d986b44f -Author: Adam Weinberger -Date: Fri Nov 4 20:28:42 2005 +0000 - - Updated Canadian English translation. - - - 2005-11-04 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 26 +++++++++++++++----------- - 2 files changed, 19 insertions(+), 11 deletions(-) - -commit 9fec00d5a2aefbcc67f2188a38f1af4c4be70687 -Author: Christian Persch -Date: Fri Nov 4 11:59:42 2005 +0000 - - String cleanup. - - 2005-11-04 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_check_location_writable): - - String cleanup. - - ChangeLog | 6 ++++++ - lib/ephy-gui.c | 9 +++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit c2d28383d7c9734ff79ad1e07dd6cd54ccbc721c -Author: Francisco Javier F. Serrador -Date: Thu Nov 3 20:23:29 2005 +0000 - - Updated Spanish translation. - - 2005-11-03 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 1044 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 562 insertions(+), 486 deletions(-) - -commit 1d1dd268884d39c940150999e91dd04adf217340 -Author: Adam Weinberger -Date: Thu Nov 3 16:43:47 2005 +0000 - - Updated Canadian English translation. - - - 2005-11-03 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 475 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 278 insertions(+), 201 deletions(-) - -commit 1c87d0af88f833fff85b468ef57a7cb660805fb7 -Author: Christian Persch -Date: Thu Nov 3 12:37:15 2005 +0000 - - More detailed result code from find backend. - - 2005-11-03 Christian Persch - - * embed/ephy-embed-find.c: - * embed/ephy-embed-find.h: - * embed/mozilla/EphyFind.cpp: - * embed/mozilla/EphyFind.h: - * embed/mozilla/mozilla-embed-find.cpp: - - More detailed result code from find backend. - - * src/ephy-find-toolbar.c: (set_status), (clear_status), - (entry_changed_cb), (ephy_find_toolbar_init), - (ephy_find_toolbar_find_next), (ephy_find_toolbar_find_previous), - (ephy_find_toolbar_open): - - Add status text to the find toolbar. - Reverse Next/Previous button order. - - ChangeLog | 18 ++++++++ - embed/ephy-embed-find.c | 18 ++++++-- - embed/ephy-embed-find.h | 27 +++++++---- - embed/mozilla/EphyFind.cpp | 20 ++++---- - embed/mozilla/EphyFind.h | 7 +-- - embed/mozilla/mozilla-embed-find.cpp | 4 +- - src/ephy-find-toolbar.c | 90 ++++++++++++++++++++++++++++++------ - 7 files changed, 143 insertions(+), 41 deletions(-) - -commit 5304b565cd6192c80bae5473d3ac2364dc0de7bb -Author: Christian Persch -Date: Thu Nov 3 12:12:45 2005 +0000 - - R data/art/hand-open.png: - - 2005-11-03 Christian Persch - - * data/art/Makefile.am: - R data/art/hand-open.png: - * lib/egg/egg-toolbar-editor.c: (drag_data_get_cb), - (set_drag_cursor): - - Use a gtk stock cursor (GDK_HAND2) instead of our own, un-themed one. - - ChangeLog | 9 +++++++++ - data/art/Makefile.am | 3 +-- - data/art/hand-open.png | Bin 1088 -> 0 bytes - lib/egg/egg-toolbar-editor.c | 11 +++++------ - 4 files changed, 15 insertions(+), 8 deletions(-) - -commit 091da0a626e431a3d407e18443efc5315839f057 -Author: Christian Persch -Date: Thu Nov 3 11:00:27 2005 +0000 - - Simplify the drag icon code. - - 2005-11-03 Christian Persch - - * lib/widgets/ephy-location-entry.c: (favicon_drag_begin_cb), - (ephy_location_entry_construct_contents): - - Simplify the drag icon code. - - ChangeLog | 7 ++ - lib/widgets/ephy-location-entry.c | 130 ++++++-------------------------------- - 2 files changed, 28 insertions(+), 109 deletions(-) - -commit 86a6ecd3dcb3003639a959d407b9399dd1f2361f -Author: Miloslav Trmac -Date: Wed Nov 2 22:51:11 2005 +0000 - - Updated Czech translation. - - 2005-11-02 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 1691 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 796 insertions(+), 899 deletions(-) - -commit 652c24e831a4913d8f43a8835512a943a420c63e -Author: Christian Persch -Date: Wed Nov 2 22:11:03 2005 +0000 - - Show drag icon with page title + URL when dragging from the drag handle. - - 2005-11-02 Christian Persch - - * lib/widgets/ephy-location-entry.c: (favicon_create_drag_pixmap), - (favicon_button_press_event_cb), (favicon_button_release_event_cb), - (favicon_motion_notify_event_cb), - (ephy_location_entry_construct_contents): - - Show drag icon with page title + URL when dragging from the drag - handle. - - ChangeLog | 10 ++ - lib/widgets/ephy-location-entry.c | 238 ++++++++++++++++++++++++++++++++++++++ - 2 files changed, 248 insertions(+) - -commit efbfe12a61f3908722e7ec6f8c26afb3c6e1ce5b -Author: Christian Persch -Date: Wed Nov 2 21:32:32 2005 +0000 - - Simplify context menu code by removing the extra EphyDocument*FramePopup - - 2005-11-02 Christian Persch - - * data/ui/epiphany-ui.xml: - * src/ephy-window.c: (update_popup_actions_visibility), - (show_embed_popup): - - Simplify context menu code by removing the extra - EphyDocument*FramePopup variants, and just setting the OpenFrame - action's visibility accordingly; and fix its accelerator. - Fixes bug #320520. - - ChangeLog | 11 +++++++++++ - data/ui/epiphany-ui.xml | 46 ++++++---------------------------------------- - src/ephy-window.c | 28 +++++++++++++++++----------- - 3 files changed, 34 insertions(+), 51 deletions(-) - -commit 11a032f69278c27d78f2a44471ce2bc273c42de5 -Author: Christian Persch -Date: Wed Nov 2 18:18:59 2005 +0000 - - Add titles with title capitalisation, and chanage the icon on the - - 2005-11-02 Christian Persch - - * embed/mozilla/EphyAboutModule.cpp: - * embed/mozilla/EphyAboutModule.h: - - Add titles with title capitalisation, and chanage the icon - on the netOffline error page. - - ChangeLog | 8 +++++ - embed/mozilla/EphyAboutModule.cpp | 62 ++++++++++++++++++++++++++++++++++----- - embed/mozilla/EphyAboutModule.h | 2 +- - 3 files changed, 64 insertions(+), 8 deletions(-) - -commit e98c738bd0be921da14d1d92ed055dc51a57f428 -Author: Funda Wang -Date: Wed Nov 2 14:59:08 2005 +0000 - - Updated epiphany translation. - - po/ChangeLog | 4 + - po/zh_CN.po | 948 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 465 insertions(+), 487 deletions(-) - -commit f8ebc49382d23859d2dca88db2aaa67c51783835 -Author: Christian Persch -Date: Wed Nov 2 11:45:44 2005 +0000 - - Return early when the action doesn't exist; don't crash. Patch by Peter - - 2005-11-02 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (create_item_from_action), - (item_added_cb): - - Return early when the action doesn't exist; don't crash. - Patch by Peter Harvey. - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 5 ++++- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit bc3b0bd4cc7331f542abb99a36156e32b3e53021 -Author: Christian Persch -Date: Wed Nov 2 11:37:02 2005 +0000 - - Remove spinner from fullscreen toolbars file. - - 2005-11-02 Christian Persch - - * data/ui/epiphany-fs-toolbar.xml: - - Remove spinner from fullscreen toolbars file. - - ChangeLog | 6 ++++++ - data/ui/epiphany-fs-toolbar.xml | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 1e07231f72959efa67d15037a2983f127af6919b -Author: Christian Persch -Date: Wed Nov 2 11:31:48 2005 +0000 - - Use a single connection to the settings object, and - - 2005-11-02 Christian Persch - - * src/ephy-window.c: (settings_change_notify), - (settings_changed_cb), (ephy_window_key_press_event), - (ephy_window_constructor): - - Use a single connection to the settings object, and - - ChangeLog | 10 +++++ - src/ephy-window.c | 109 ++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 79 insertions(+), 40 deletions(-) - -commit 90ad8bb21f1adf27baf9c5992c8e12857026c6ff -Author: Christian Persch -Date: Wed Nov 2 10:52:44 2005 +0000 - - Revert change from H18 patch which shouldn't have been committed. - - 2005-11-02 Christian Persch - - * src/ephy-window.c: - - Revert change from H18 patch which shouldn't have been committed. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 706ae063d0431b1ff6487421deb1abeafbf92f70 -Author: Philip Langdale -Date: Wed Nov 2 06:28:03 2005 +0000 - - I accidentally committed my half-complete port of the Galeon key-press - - 2005-11-01 Philip Langdale - - * src/ephy-window.c: (ephy_window_key_press_event), - (gtk_key_theme_changed_cb), (ephy_window_constructor), - (ephy_window_class_init): I accidentally committed my - half-complete port of the Galeon key-press event handler - that allows emacs keybindings to work when I made my last - commit. Whoops. - - This change addresses post-facto comments made by chpe :-) - - Nothing terribly profound; just attaching the GktSettings - listener on a per-window, rather than global, basis and - detecting the other keycodes for Enter/Return. - - As the original change wasn't described, I will do it here: - Gtk+ has optional support for emacs style keybindings in - GtkEditable based widgets. But, these keybindings often - conflict with toplevel accelerators. To make things work - sanely, we'd like the emacs keybindings to take priority when - the Editable is focused, and the toplevel accelerators take - priority for other widgets. As gtk2 uses outside-in event - propagation, we have to attach a topevel event handler to - get the event and then pass it on to the focused widget if - appropriate - and that is what this change does. - - ChangeLog | 26 +++++++++ - src/ephy-window.c | 163 +++++++++++++++--------------------------------------- - 2 files changed, 72 insertions(+), 117 deletions(-) - -commit 86160c950e3cf6514545ea307126de972a311dae -Author: Adam Weinberger -Date: Tue Nov 1 17:40:52 2005 +0000 - - Updated Canadian English translation. - - - 2005-11-01 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 925 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 457 insertions(+), 472 deletions(-) - -commit ae67ff7c049ce8c86c6241b4299e7a9d65802670 -Author: Christian Persch -Date: Tue Nov 1 17:21:21 2005 +0000 - - Use GINT_TO_POINTER/GPOINTER_TO_INT when stuffing ints into pointers, and - - 2005-11-01 Christian Persch - - * lib/egg/egg-toolbars-model.c: (item_node_new), (item_node_free), - (egg_toolbars_model_get_n_avail), (egg_toolbars_model_set_n_avail): - - Use GINT_TO_POINTER/GPOINTER_TO_INT when stuffing ints into pointers, - and fix gcc 2.95 issues. - - ChangeLog | 8 ++++++++ - lib/egg/egg-toolbars-model.c | 16 +++++++++------- - 2 files changed, 17 insertions(+), 7 deletions(-) - -commit ac160bd5b4143c52f8a75c049a27f56136ce1bae -Author: Christian Persch -Date: Tue Nov 1 12:46:07 2005 +0000 - - Get the window name from the popup-blocked event. - - 2005-11-01 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * src/ephy-tab.c: (popups_manager_free_info), (popups_manager_add), - (popups_manager_show), (popups_manager_hide), - (ephy_tab_popup_blocked_cb): - - Get the window name from the popup-blocked event. - - ChangeLog | 11 +++++++++++ - embed/ephy-embed.c | 6 ++++-- - embed/ephy-embed.h | 1 + - embed/mozilla/EphyBrowser.cpp | 14 +++++++++++++- - src/ephy-tab.c | 23 +++++++++++++++-------- - 5 files changed, 44 insertions(+), 11 deletions(-) - -commit 709f0858814f1ece4bdeb288c2a4ae907a08c358 -Author: Christian Persch -Date: Tue Nov 1 11:15:56 2005 +0000 - - More curly quotes. - - 2005-11-01 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/print-dialog.c: (ephy_print_verify_postscript): - * lib/ephy-gui.c: (ephy_gui_check_location_writable): - * src/bookmarks/ephy-bookmark-properties.c: (update_window_title): - * src/bookmarks/ephy-bookmarks-editor.c: - (delete_topic_dialog_construct), (add_bookmarks_source), - (import_bookmarks): - * src/bookmarks/ephy-bookmarks.c: (redirect_cb): - * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct): - * src/ephy-extensions-manager.c: (dir_changed_cb): - * src/ephy-tab.c: (update_net_state_message): - - More curly quotes. - - ChangeLog | 18 ++++++++++++++++++ - embed/mozilla/ContentHandler.cpp | 6 +++--- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 22 ++++++++++++---------- - embed/print-dialog.c | 2 +- - lib/ephy-gui.c | 4 ++-- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 6 +++--- - src/bookmarks/ephy-bookmarks.c | 4 ++-- - src/bookmarks/ephy-new-bookmark.c | 2 +- - src/ephy-extensions-manager.c | 1 - - src/ephy-tab.c | 8 ++++---- - 12 files changed, 48 insertions(+), 29 deletions(-) - -commit 5f88d3915c6330ec150b977b320375ab3284b322 -Author: Christian Persch -Date: Tue Nov 1 10:59:56 2005 +0000 - - Use curly quotes. - - 2005-11-01 Christian Persch - - * src/ephy-window.c: (update_popups_tooltips): - - Use curly quotes. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 18 +++++++++--------- - 2 files changed, 15 insertions(+), 9 deletions(-) - -commit 2ef46227eab9877e4ed2400130c859f5a6bc4cee -Author: Vincent van Adrighem -Date: Mon Oct 31 23:50:36 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-11-01 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit c2031745964bc6d65d61099cf2cacd768930fb39 -Author: Christian Persch -Date: Mon Oct 31 21:38:28 2005 +0000 - - Constification. - - 2005-10-31 Christian Persch - - * lib/ephy-dbus.c: - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults): - - Constification. - - ChangeLog | 9 +++++++++ - lib/ephy-dbus.c | 4 ++-- - src/bookmarks/ephy-bookmarks-editor.c | 26 ++++++++++---------------- - src/bookmarks/ephy-bookmarks.c | 6 ++---- - 4 files changed, 23 insertions(+), 22 deletions(-) - -commit 464bb25b7c896c097765e23e396ab82c38dc1eb8 -Author: Christian Persch -Date: Mon Oct 31 18:51:44 2005 +0000 - - Use the history window as parent for the new-bookmark dialogue. Fixes bug - - 2005-10-31 Christian Persch - - * src/ephy-history-window.c: (cmd_bookmark_link): - - Use the history window as parent for the new-bookmark dialogue. - Fixes bug #320329. - - ChangeLog | 7 +++++++ - src/ephy-history-window.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 06020f19214a5e141fe5202a8f8678a2d0c13bd7 -Author: Christian Persch -Date: Mon Oct 31 17:54:37 2005 +0000 - - Fix capitalisation, bug #320330. - - 2005-10-31 Christian Persch - - * src/ephy-history-window.c: (build_search_box): - - Fix capitalisation, bug #320330. - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 6b866168d7d5b3702f709b5ecb59454761b9e790 -Author: Christian Persch -Date: Mon Oct 31 13:22:10 2005 +0000 - - Store the redirect and toplevel attributes when adding pages to the - - 2005-10-31 Christian Persch - - * embed/ephy-history.c: (ephy_history_class_init), - (ephy_history_add_page), (impl_add_page): - * embed/ephy-history.h: - * embed/mozilla/GlobalHistory.cpp: - * lib/ephy-marshal.list: - * src/epiphany.defs: - - Store the redirect and toplevel attributes when - adding pages to the history (doesn't do anything with - the info yet, though). Based on a galeon patch by tko. - - ChangeLog | 13 ++++++++++++ - embed/ephy-history.c | 38 +++++++++++++++++++++++++++------ - embed/ephy-history.h | 11 +++++++--- - embed/mozilla/GlobalHistory.cpp | 47 +++++++++++++++++++++++++---------------- - lib/ephy-marshal.list | 1 + - src/epiphany.defs | 2 ++ - 6 files changed, 84 insertions(+), 28 deletions(-) - -commit 1ff25e7c76cafd5abae29b7e7c058cee3f2f2299 -Author: Christian Persch -Date: Sun Oct 30 23:14:00 2005 +0000 - - R lib/ephy-glade.c: R lib/ephy-glade.h: - - 2005-10-31 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/print-dialog.c: - * lib/Makefile.am: - * lib/ephy-dialog.c: (impl_construct): - R lib/ephy-glade.c: - R lib/ephy-glade.h: - - Remove ephy-glade since we don't need autoconnect anymore. - - ChangeLog | 11 +++ - embed/mozilla/GtkNSSDialogs.cpp | 16 +++-- - embed/print-dialog.c | 2 +- - lib/Makefile.am | 2 - - lib/ephy-dialog.c | 22 +++--- - lib/ephy-glade.c | 150 ---------------------------------------- - lib/ephy-glade.h | 44 ------------ - 7 files changed, 35 insertions(+), 212 deletions(-) - -commit 362396c2bf69c659b5fcea2eaf3ed17b6ff93b09 -Author: Christian Persch -Date: Sun Oct 30 22:58:12 2005 +0000 - - Remove glade callbacks, and connect from code instead. - - 2005-10-30 Christian Persch - - * data/glade/epiphany.glade: - * data/glade/prefs-dialog.glade: - * data/glade/print.glade: - * embed/downloader-view.c: (update_buttons), - (downloader_view_build_ui), (download_dialog_pause), - (download_dialog_stop), (download_dialog_response_cb), - (download_dialog_delete_event_cb): - * embed/print-dialog.c: (ephy_print_setup_dialog_response_cb), - (ephy_print_setup_dialog_new): - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_init): - * src/pdm-dialog.c: (show_cookies_properties), - (cookies_properties_clicked_cb), (pdm_dialog_cookies_construct), - (passwords_show_toggled_cb), (pdm_dialog_passwords_construct), - (pdm_dialog_response_cb), (pdm_dialog_init), (pdm_dialog_finalize): - * src/prefs-dialog.c: (create_language_section), - (prefs_dialog_response_cb), (prefs_clear_cache_button_clicked_cb), - (set_homepage_entry), (prefs_homepage_current_button_clicked_cb), - (prefs_homepage_blank_button_clicked_cb), (prefs_dialog_init): - - Remove glade callbacks, and connect from code instead. - - ChangeLog | 23 +++ - data/glade/epiphany.glade | 211 ++++++++++------------ - data/glade/prefs-dialog.glade | 8 - - data/glade/print.glade | 3 +- - embed/downloader-view.c | 61 +++++-- - embed/print-dialog.c | 32 ++-- - src/ephy-encoding-dialog.c | 13 +- - src/pdm-dialog.c | 402 +++++++++++++++++++++--------------------- - src/prefs-dialog.c | 196 ++++++++++---------- - 9 files changed, 486 insertions(+), 463 deletions(-) - -commit 87e9353728c1115e7f60b1f7bb63e79723888907 -Author: Christian Persch -Date: Sun Oct 30 19:17:37 2005 +0000 - - Don't use BIND_LAZY when enabling debugging. That way we can find missing - - 2005-10-30 Christian Persch - - * lib/ephy-module.c: (ephy_module_load): - - Don't use BIND_LAZY when enabling debugging. That way we can find - missing symbols in extensions more easily. - - ChangeLog | 7 +++++++ - lib/ephy-module.c | 17 +++++++++++------ - 2 files changed, 18 insertions(+), 6 deletions(-) - -commit c14d9b05d8aa0d3cff28d74376804036485646bd -Author: Marcel Telka -Date: Sun Oct 30 18:51:37 2005 +0000 - - Updated Slovak translation. - - 2005-10-30 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 610 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 293 insertions(+), 321 deletions(-) - -commit fde24ab0878f35c43b037a646bd22c78165a0139 -Author: Emmanuele Bassi -Date: Sun Oct 30 18:37:18 2005 +0000 - - Use G_MODULE_BIND_LAZY when dlopening modules. - - 2005-10-30 Emmanuele Bassi - - * lib/ephy-glade.c: (glade_signal_connect_func): - * lib/ephy-module.c: (ephy_module_load): - - Use G_MODULE_BIND_LAZY when dlopening modules. - - ChangeLog | 7 +++++++ - lib/ephy-glade.c | 2 +- - lib/ephy-module.c | 8 +++++--- - 3 files changed, 13 insertions(+), 4 deletions(-) - -commit b693cc1a050fdb0d2e7cb358d7e2d5af528f855c -Author: Žygimantas Beručka -Date: Sun Oct 30 16:54:54 2005 +0000 - - Updated Lithuanian translation. - - 2005-10-30 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 1566 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 768 insertions(+), 802 deletions(-) - -commit 64fe79685d4f2e2fa96e0868f869ff9bb8311301 -Author: Christian Persch -Date: Sun Oct 30 13:54:15 2005 +0000 - - Fix title capitalisation. - - 2005-10-30 Christian Persch - - * src/prefs-dialog.c: (create_download_path_button): - - Fix title capitalisation. - - ChangeLog | 10 ++++++++++ - src/prefs-dialog.c | 2 +- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 1fb397be102cdfe6fa12fb363e689ce68595cad0 -Author: Christian Persch -Date: Sun Oct 30 13:52:58 2005 +0000 - - Add array bounds check; fixes bug #320169. - - 2005-10-30 Christian Persch - - * src/bookmarks/ephy-nodes-cover.c: (ephy_nodes_get_covering): - - Add array bounds check; fixes bug #320169. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-nodes-cover.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit ba4c78ce66c51332b9cdf4bdc7e9c9bf363c7cfc -Author: Christian Persch -Date: Sun Oct 30 13:51:43 2005 +0000 - - Set the action's accel group. Fixes bug #319536. - - 2005-10-30 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (create_item_from_action): - - Set the action's accel group. Fixes bug #319536. - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 8 +++++++- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit bc541864b12e85185251765c99a103718b92b994 -Author: Christian Persch -Date: Sat Oct 29 21:38:41 2005 +0000 - - Add ephy_file_get_downloads_dir() to get the actual downloads directory, - - 2005-10-29 Christian Persch - - * embed/mozilla/MozDownload.cpp: - * lib/ephy-file-chooser.c: (ephy_file_chooser_constructor): - * lib/ephy-file-helpers.c: (ephy_file_get_downloads_dir): - * lib/ephy-file-helpers.h: - * src/prefs-dialog.c: (download_path_changed_cb), - (create_download_path_button): - - Add ephy_file_get_downloads_dir() to get the actual downloads - directory, and use it in the prefs dialogue, the filechooser, and - the backend. - - ChangeLog | 13 +++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - embed/mozilla/MozDownload.cpp | 45 +++++++------------------------------- - lib/ephy-file-chooser.c | 2 +- - lib/ephy-file-helpers.c | 41 ++++++++++++++++++++++++++++++++++ - lib/ephy-file-helpers.h | 2 ++ - src/prefs-dialog.c | 25 +++++++++++++++++---- - 7 files changed, 88 insertions(+), 42 deletions(-) - -commit cd07b3ec041e14b8ed23d0457cc8741eaaa1a00d -Author: Jean-François Rameau -Date: Sat Oct 29 16:31:22 2005 +0000 - - Move most of ephy_window_init code to constructor so properties are - fully initialized before running that code. - - ChangeLog | 12 ++++++ - src/ephy-window.c | 111 +++++++++++++++++++++++++++--------------------------- - 2 files changed, 67 insertions(+), 56 deletions(-) - -commit 3dcdf942d8325c81bc175b2b7876526860b762f0 -Author: Christian Persch -Date: Sat Oct 29 14:27:52 2005 +0000 - - Use G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL when opening the extension - - 2005-10-29 Christian Persch - - * lib/ephy-module.c: (ephy_module_load): - - Use G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL when opening - the extension module. - - ChangeLog | 7 +++++++ - lib/ephy-module.c | 3 ++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit ba697048386d840a5af8a9a56f47b7e3bd4ead9e -Author: Christian Persch -Date: Sat Oct 29 14:21:24 2005 +0000 - - Skip spinner update when we're not loaded. Should fix bug #320079. - - 2005-10-29 Christian Persch - - * lib/widgets/ephy-spinner.c: (bump_spinner_frame_cb), - (ephy_spinner_start): - - Skip spinner update when we're not loaded. Should fix - bug #320079. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-spinner.c | 18 +++++++++++------- - 2 files changed, 19 insertions(+), 7 deletions(-) - -commit 4e42805869461282ad1594409060b175b2b32db7 -Author: Erdal Ronahi -Date: Fri Oct 28 20:27:31 2005 +0000 - - Fixed the bug in Kurdish translation - - po/ChangeLog | 4 ++++ - po/ku.po | 11 ++++++----- - 2 files changed, 10 insertions(+), 5 deletions(-) - -commit 96af25930d1cdd2ff09211c79162416859d56a3b -Author: Francisco Javier F. Serrador -Date: Fri Oct 28 19:32:17 2005 +0000 - - Updated Spanish translation. - - 2005-10-28 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 1415 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 593 insertions(+), 826 deletions(-) - -commit 87ea9f3da24176ecf758fccffe042dc3fc2d1d68 -Author: Guilherme de S. Pastore -Date: Thu Oct 27 15:03:40 2005 +0000 - - Fixed typo in Brazilian Portuguese translation. - - po/ChangeLog | 4 ++++ - po/pt_BR.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 555e918731ec0862bf8da875a9c13ca51d1a12bc -Author: Takeshi AIHANA -Date: Thu Oct 27 14:52:11 2005 +0000 - - Updated Japanese translation for v1.9.1. - - 2005-10-27 Takeshi AIHANA - - * ja.po: Updated Japanese translation for v1.9.1. - - po/ChangeLog | 4 + - po/ja.po | 1173 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 575 insertions(+), 602 deletions(-) - -commit a0957199563eb93999f5908a49d4dba495572009 -Author: Christian Persch -Date: Wed Oct 26 19:58:03 2005 +0000 - - Change downloader and pdm dialogue titles, bug #319843. - - 2005-10-26 Christian Persch - - * data/glade/epiphany.glade: - * embed/downloader-view.c: (status_icon_popup_menu_cb): - - Change downloader and pdm dialogue titles, bug #319843. - - ChangeLog | 7 +++++++ - data/glade/epiphany.glade | 4 ++-- - embed/downloader-view.c | 2 +- - 3 files changed, 10 insertions(+), 3 deletions(-) - -commit 923b47f0d09b21fcfb2a131c08b4e313a4d58c05 -Author: Philip Langdale -Date: Wed Oct 26 06:27:34 2005 +0000 - - src/ephy-link-action.c - - 2005-10-25 Philip Langdale - - * src/ephy-link-action.c - * src/ephy-link-action.h: - (proxy_button_press_event_cb), - (proxy_button_release_event_cb), (proxy_drag_begin_cb), - (ephy_link_action_connect_proxy), - (ephy_link_action_disconnect_proxy), - (ephy_link_action_class_init), (ephy_link_action_init): - - Well, that didn't last long. Turns out this was a solved - problem in EphyBookmarkAction but no one pointed it out - until just now. Using gtk_button_pressed/released fixes - everything. - - ChangeLog | 15 +++++ - src/ephy-link-action.c | 67 ++++++--------------- - src/ephy-link-action.h | 4 -- - src/ephy-window.c | 156 +++++++++++++++++++++++++++++++++++++++++++++++-- - 4 files changed, 185 insertions(+), 57 deletions(-) - -commit 12a8233cc88965fa9aee22095cb2005eb4f57532 -Author: Priit Laes -Date: Tue Oct 25 18:54:47 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-10-25 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 1513 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 854 insertions(+), 663 deletions(-) - -commit 9455974ddf49a94f3842f3afda49f54eb31ce512 -Author: Philip Langdale -Date: Tue Oct 25 15:09:18 2005 +0000 - - src/ephy-link-action.c - - 2005-10-25 Philip Langdale - - * src/ephy-link-action.c - * src/ephy-link-action.h: - (proxy_button_release_event_cb), (proxy_drag_begin_cb), - (ephy_link_action_connect_proxy), - (ephy_link_action_disconnect_proxy), - (ephy_link_action_class_init), (ephy_link_action_init): - - Fix bug #319529. Don't activate the action on a middle mouse - button release event if the release is linked to a DnD. - - This requires adding state to the action to allow us to link - the drag-begin event to the button-release event. - - ChangeLog | 15 ++++++++++++++ - src/ephy-link-action.c | 54 +++++++++++++++++++++++++++++++++++++++++++++++--- - src/ephy-link-action.h | 4 ++++ - 3 files changed, 70 insertions(+), 3 deletions(-) - -commit bb93812b19ce2402d0b2a3b5ea29e3d17aa1040a -Author: Christian Persch -Date: Mon Oct 24 14:58:23 2005 +0000 - - Remove info text referring to the not-committed markers in H18. - - 2005-10-24 Christian Persch - - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_add), - (build_editing_table), (ephy_new_bookmark_construct), - (ephy_new_bookmark_set_property), (ephy_new_bookmark_get_property): - - Remove info text referring to the not-committed markers in H18. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-new-bookmark.c | 33 +++++++++++---------------------- - 2 files changed, 19 insertions(+), 22 deletions(-) - -commit 32c2859255b02bf86d9cdbcc9587bf5abea64331 -Author: Christian Persch -Date: Sun Oct 23 20:45:13 2005 +0000 - - Post-release version bump. - - 2005-10-23 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 004baead00deb6c241356344056f61d87af81156 -Author: Christian Persch -Date: Sun Oct 23 20:44:08 2005 +0000 - - === Release 1.9.1 === - - 2005-10-23 Christian Persch - - === Release 1.9.1 === - - * NEWS: - * configure.ac: - * doc/reference/tmpl/EphySingle.sgml: - * doc/reference/tmpl/ephy-embed-single.sgml: - * doc/reference/tmpl/ephy-embed.sgml: - * doc/reference/tmpl/epiphany-unused.sgml: - * src/Makefile.am: - - ChangeLog | 12 ++++ - NEWS | 95 +++++++++++++++++++++++++++++++ - configure.ac | 2 +- - doc/reference/tmpl/EphySingle.sgml | 10 ---- - doc/reference/tmpl/ephy-embed-single.sgml | 11 ---- - doc/reference/tmpl/ephy-embed.sgml | 13 +++++ - doc/reference/tmpl/epiphany-unused.sgml | 18 ++++++ - src/Makefile.am | 2 +- - 8 files changed, 140 insertions(+), 23 deletions(-) - -commit 550feb81682f3413b35f0e002b8f549fa4f36498 -Author: Guilherme de S. Pastore -Date: Sun Oct 23 12:52:14 2005 +0000 - - Updated Brazilian Portuguese translation - - po/ChangeLog | 4 + - po/pt_BR.po | 1210 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 653 insertions(+), 561 deletions(-) - -commit c581fc6cf206b866c90e619911b0cba651d863c4 -Author: Adam Weinberger -Date: Sun Oct 23 06:15:39 2005 +0000 - - Updated Canadian English translation. - - - 2005-10-23 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 274 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 135 insertions(+), 143 deletions(-) - -commit 07ca2fa20e3cc2781c6a1e74f1800065372b2b7f -Author: Jean-François Rameau -Date: Sat Oct 22 22:11:05 2005 +0000 - - Add a way to view stored password. Fix bug 316821. - - 2005-10-22 Jean-François Rameau - - * embed/mozilla/mozilla-embed-single.cpp: (impl_list_passwords): - * src/pdm-dialog.c: - * data/glade/epiphany.glade: - - Add a way to view stored password. Fix bug 316821. - - ChangeLog | 8 +++++ - data/glade/epiphany.glade | 56 +++++++++++++++++++++++++++------ - embed/mozilla/mozilla-embed-single.cpp | 9 +++++- - src/pdm-dialog.c | 57 +++++++++++++++++++++++++++------- - 4 files changed, 108 insertions(+), 22 deletions(-) - -commit 53c9df2f5c6a6337693602bc02554a21bf809c58 -Author: Christian Persch -Date: Sat Oct 22 21:24:00 2005 +0000 - - Add another mime type. - - 2005-10-22 Christian Persch - - * data/mime-types-permissions.xml: - - Add another mime type. - - * src/ephy-notebook.c: - - Remove the accidental commit from the H18 patch. - - ChangeLog | 10 ++++++++++ - data/mime-types-permissions.xml | 1 + - src/ephy-notebook.c | 2 +- - 3 files changed, 12 insertions(+), 1 deletion(-) - -commit 69fc1379a09f968f25df830a44a21e33eac4ae65 -Author: Funda Wang -Date: Sat Oct 22 12:01:25 2005 +0000 - - Fixed a typo - - po/ChangeLog | 4 ++++ - po/zh_CN.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit a499d28aa95bb7d217b94d1797e02ae793c40146 -Author: Christian Persch -Date: Fri Oct 21 19:37:27 2005 +0000 - - Load the key files and xml files directly from disc, instead of getting - - 2005-10-21 Christian Persch - - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_parse_keyfile), - (ephy_extensions_manager_load_ini_file), - (ephy_extensions_manager_load_xml_file), (path_to_identifier), - (ephy_extensions_manager_load_file), (reload_sync_cb), (reload_cb), - (schedule_load_from_monitor), (dir_changed_cb), (cancel_timeout), - (ephy_extensions_manager_init), (ephy_extensions_manager_dispose), - (ephy_extensions_manager_class_init): - - Load the key files and xml files directly from disc, instead of - getting their contents and parsing from memory. - When a file changes, schedule a reload instead of processing it - immediately, to cope with multiple changes (CREATED + CHANGED) in - a row. - - ChangeLog | 17 +++ - src/ephy-extensions-manager.c | 313 +++++++++++++++++++++++++++--------------- - 2 files changed, 221 insertions(+), 109 deletions(-) - -commit e5bda8ab43ca8f63376714a00dea3228ada16a9e -Author: Philip Langdale -Date: Fri Oct 21 16:15:10 2005 +0000 - - Point main menu UI at toolbar actions. Don't try and change the state of - - 2005-10-21 Philip Langdale - - * data/ui/epiphany-ui.xml: - Point main menu UI at toolbar actions. - * src/ephy-lockdown.c: - (update_window): Don't try and change the state of - the now non-existent menu specific actions. - * src/ephy-toolbar.c - (ephy_toolbar_set_window): Sync up toolbar actions - so that they will appear in menus to be identical to - the old menu specific actions. This just means adding - accelerators and shortcuts and adjusting tooltip text. - * src/ephy-window.c - (sync_tab_navigation): Remove the menu specific actions - and consequently, don't try to manipulate them. - * src/window-commands.c - * src/window-commands.h: - (window_cmd_go_up): Remove unused callback. - - ChangeLog | 19 +++++++++++++++++++ - data/ui/epiphany-ui.xml | 22 +++++++++++----------- - src/ephy-lockdown.c | 6 ------ - src/ephy-toolbar.c | 19 +++++++++++-------- - src/ephy-window.c | 17 ----------------- - src/window-commands.c | 14 -------------- - src/window-commands.h | 3 --- - 7 files changed, 41 insertions(+), 59 deletions(-) - -commit 8e4b79936d79e1fb33947fbfbea1f69141488790 -Author: Christian Persch -Date: Fri Oct 21 15:31:19 2005 +0000 - - Expose the extension description keyfile directly to the loaders. - - 2005-10-21 Christian Persch - - * lib/ephy-loader.c: (ephy_loader_get_object): - * lib/ephy-loader.h: - * lib/ephy-module.c: (ephy_module_load), (ephy_module_new): - * lib/ephy-module.h: - * lib/ephy-shlib-loader.c: (impl_get_object), - (ephy_shlib_loader_class_init): - * src/ephy-extensions-manager.c: (free_extension_info), - (ephy_extensions_manager_load_ini_string), (get_loader_for_type), - (load_extension): - * src/ephy-python-loader.c: (impl_get_object): - - Expose the extension description keyfile directly to the loaders. - - ChangeLog | 15 +++++ - lib/ephy-loader.c | 4 +- - lib/ephy-loader.h | 4 +- - lib/ephy-module.c | 10 +++- - lib/ephy-module.h | 3 +- - lib/ephy-shlib-loader.c | 27 ++++----- - src/ephy-extensions-manager.c | 135 +++++++++++++----------------------------- - src/ephy-extensions-manager.h | 5 +- - src/ephy-python-loader.c | 12 ++-- - 9 files changed, 92 insertions(+), 123 deletions(-) - -commit 944263b78b78513f86b48dd74a1ba9900f05ed10 -Author: Chao-Hsiung Liao -Date: Fri Oct 21 10:56:55 2005 +0000 - - Updated Traditional Chinese translation. - - - 2005-10-21 Chao-Hsiung Liao - - * zh_TW.po: Updated Traditional Chinese translation. - - po/ChangeLog | 4 + - po/zh_TW.po | 942 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 470 insertions(+), 476 deletions(-) - -commit 12e580d7fe184cb8ef0ee86bfbaa76ce7657acbf -Author: Nikos Charonitakis -Date: Thu Oct 20 20:01:31 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 1019 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 546 insertions(+), 477 deletions(-) - -commit 0dd2f8a6be0d70809b408d42d3599fcc4ce68973 -Author: Christian Persch -Date: Thu Oct 20 13:33:42 2005 +0000 - - Minor code cleanup. - - 2005-10-20 Christian Persch - - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - - Minor code cleanup. - - ChangeLog | 17 +++++++++++++++++ - lib/ephy-stock-icons.c | 16 ++++++++++------ - 2 files changed, 27 insertions(+), 6 deletions(-) - -commit 501c4357042c915188dc900849e2c595ad4edf8a -Author: Christian Persch -Date: Thu Oct 20 13:12:57 2005 +0000 - - Remove fullscreen and leave-fullscreen stock icons; they're available in - - 2005-10-20 Christian Persch - - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * lib/ephy-stock-icons.h: - * src/ephy-fullscreen-popup.c: (ephy_fullscreen_popup_constructor): - * src/ephy-toolbar.c: (ephy_toolbar_constructor): - * src/ephy-window.c: - - Remove fullscreen and leave-fullscreen stock icons; they're available - in gtk+ since 2.8. - - lib/ephy-stock-icons.c | 2 -- - lib/ephy-stock-icons.h | 2 -- - src/ephy-fullscreen-popup.c | 3 +-- - src/ephy-toolbar.c | 2 +- - src/ephy-window.c | 2 +- - 5 files changed, 3 insertions(+), 8 deletions(-) - -commit 519f01f0b3d13bc1e6f0c02ba1a9b25983921aaa -Author: Ignacio Casal Quinteiro -Date: Thu Oct 20 08:35:29 2005 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/gl.po | 1786 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 905 insertions(+), 885 deletions(-) - -commit cbc678ea80eb9d32ce8a17cf6e7d576ff86231c2 -Author: Runa Bhattacharjee -Date: Thu Oct 20 06:22:19 2005 +0000 - - Added Entry for Bengali (bn) Translation Updation:20/10 - - po/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit fa7e102a35499cf46a7be1a7450327dd6cb37191 -Author: Runa Bhattacharjee -Date: Thu Oct 20 06:21:59 2005 +0000 - - Updated Bengali(bn) Translation:20/10 - - po/bn.po | 3560 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1967 insertions(+), 1593 deletions(-) - -commit d0aa53c7ec95ee1db5d870d82ad8519bf96af13c -Author: Adam Weinberger -Date: Wed Oct 19 18:36:35 2005 +0000 - - Updated Canadian English translation. - - - 2005-10-19 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 738 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 336 insertions(+), 406 deletions(-) - -commit f4db3a111fe29213ba13b8735c834585d6b88dd6 -Author: Funda Wang -Date: Wed Oct 19 11:48:34 2005 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 + - po/zh_CN.po | 1113 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 474 insertions(+), 643 deletions(-) - -commit ccf682cf99136e44332dd9782f538a1e771bce69 -Author: Vincent van Adrighem -Date: Wed Oct 19 09:40:47 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-10-19 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 1145 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 619 insertions(+), 530 deletions(-) - -commit 62a6c9ce277ecfaf989b35c83668ce9691545de2 -Author: Christian Persch -Date: Tue Oct 18 20:53:55 2005 +0000 - - Adapt folder import to new menu code, patch by Peter Harvey. - - 2005-10-18 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_folder), - (ephy_bookmarks_import_mozilla): - - Adapt folder import to new menu code, patch by Peter Harvey. - - ChangeLog | 7 +++ - src/bookmarks/ephy-bookmarks-import.c | 92 ++++++++++++++--------------------- - 2 files changed, 43 insertions(+), 56 deletions(-) - -commit c8121f1b9552aa3c078925516f1621cd2c63c005 -Author: Christian Persch -Date: Tue Oct 18 20:50:08 2005 +0000 - - Clarify string - - plugins/desktop-file/plugin.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9368affd35e74c7e058fa37e81e9aa8c0b933513 -Author: Christian Persch -Date: Mon Oct 17 21:21:40 2005 +0000 - - Remove lock visibility setter. - - 2005-10-17 Christian Persch - - * src/ephy-toolbar.c: (ephy_toolbar_set_security_state), - (ephy_toolbar_init): - * src/ephy-toolbar.h: - - Remove lock visibility setter. - - * src/window-commands.c: (window_cmd_help_about): - - Add Peter Harvey to about credits. - - ChangeLog | 12 ++++++++++++ - src/ephy-toolbar.c | 18 +----------------- - src/ephy-toolbar.h | 3 --- - src/window-commands.c | 1 + - 4 files changed, 14 insertions(+), 20 deletions(-) - -commit 92fcf0ae3dadbaa40153ad62015f25ef2c55c4e8 -Author: Crispin Flowerday -Date: Mon Oct 17 21:15:42 2005 +0000 - - src/epiphany.override src/epiphany.defs - - 2005-10-17 Crispin Flowerday - - * src/epiphany.override - * src/epiphany.defs - * src/Makefile.am: - - Update python API to the new bookmark headers. - - ChangeLog | 8 + - src/Makefile.am | 38 ++- - src/epiphany.defs | 666 ++++++++++++++++++++++++++++++++++---------------- - src/epiphany.override | 5 +- - 4 files changed, 506 insertions(+), 211 deletions(-) - -commit 272c8fa842cfd845ecf8d598cfa20b5f404a1167 -Author: Crispin Flowerday -Date: Mon Oct 17 20:12:42 2005 +0000 - - Fix the check-python-binding makefile target to work properly - - 2005-10-17 Crispin Flowerday - - * src/Makefile.am: - - Fix the check-python-binding makefile target to work properly - - ChangeLog | 6 ++++++ - src/Makefile.am | 10 +++++----- - 2 files changed, 11 insertions(+), 5 deletions(-) - -commit f07a81d93c1aadf9131ff54c4aadfe25607e4a2e -Author: Christian Persch -Date: Mon Oct 17 20:09:09 2005 +0000 - - A data/ephy-xml2ini.xsl: - - 2005-10-16 Christian Persch - - * data/Makefile.am: - A data/ephy-xml2ini.xsl: - * src/ephy-extensions-manager.c: - - Remove .xml parsing code and translate the .xml files to - the new format with XSLT instead. - - ChangeLog | 9 + - data/Makefile.am | 4 +- - data/ephy-xml2ini.xsl | 51 +++++ - src/ephy-extensions-manager.c | 430 +++++++----------------------------------- - 4 files changed, 136 insertions(+), 358 deletions(-) - -commit 74859f3e57ed50dd10f285f178f7e2cecc64e000 -Author: Christian Persch -Date: Mon Oct 17 19:48:30 2005 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 6 +++++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit d21007362f8d0701d63e50fe6b219de067d95a87 -Author: Peter Harvey -Date: Sun Oct 16 20:29:26 2005 +0000 - - H18 patch, by Peter Harvey . - - 2005-10-16 Peter Harvey - - H18 patch, by Peter Harvey . - - * data/ui/epiphany-bookmark-editor-ui.xml: - * data/ui/epiphany-ui.xml: - * lib/egg/egg-editable-toolbar.c: (get_dock_position), - (get_toolbar_position), (get_toolbar_nth), (find_action), - (drag_data_delete_cb), (drag_begin_cb), (drag_end_cb), - (drag_data_get_cb), (move_item_cb), (set_dock_visible), - (remove_item_cb), (remove_toolbar_cb), (toggle_visibility_cb), - (egg_editable_toolbar_add_visibility_items), - (egg_editable_toolbar_add_popup_items), (popup_context_menu_cb), - (button_press_event_cb), (configure_item_sensitivity), - (configure_item_cursor), (connect_widget_signals), - (action_sensitive_cb), (create_item_from_action), - (create_item_from_position), (toolbar_drag_data_received_cb), - (toolbar_drag_drop_cb), (toolbar_drag_motion_cb), - (toolbar_drag_leave_cb), (configure_drag_dest), (create_dock), - (toolbar_changed_cb), (unparent_fixed), (update_fixed), - (toolbar_added_cb), (toolbar_removed_cb), (item_added_cb), - (item_removed_cb), (egg_editable_toolbar_construct), - (egg_editable_toolbar_set_ui_manager), - (egg_editable_toolbar_set_property), - (egg_editable_toolbar_get_property), (egg_editable_toolbar_init), - (egg_editable_toolbar_finalize), - (egg_editable_toolbar_get_edit_mode), - (egg_editable_toolbar_set_edit_mode), - (egg_editable_toolbar_set_fixed): - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-toolbar-editor.c: (compare_items), - (item_added_or_removed_cb), (toolbar_removed_cb), - (egg_toolbar_editor_set_model), (egg_toolbar_editor_finalize), - (drag_begin_cb), (drag_end_cb), (drag_data_get_cb), - (editor_create_item), (editor_create_item_from_name), - (append_table), (update_editor_sheet), (egg_toolbar_editor_init): - * lib/egg/egg-toolbar-editor.h: - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_to_xml), - (egg_toolbars_model_save), (toolbar_node_new), (item_node_new), - (item_node_free), (toolbar_node_free), - (egg_toolbars_model_get_flags), (egg_toolbars_model_set_flags), - (egg_toolbars_model_get_data), (egg_toolbars_model_get_name), - (impl_add_item), (egg_toolbars_model_add_item), - (egg_toolbars_model_add_toolbar), (parse_data_list), - (parse_item_list), (parse_toolbars), (egg_toolbars_model_load), - (egg_toolbars_model_class_init), (egg_toolbars_model_init), - (egg_toolbars_model_finalize), (egg_toolbars_model_remove_toolbar), - (egg_toolbars_model_remove_item), (egg_toolbars_model_move_item), - (egg_toolbars_model_n_items), (egg_toolbars_model_item_nth), - (egg_toolbars_model_n_toolbars), (egg_toolbars_model_toolbar_nth), - (egg_toolbars_model_get_types), (egg_toolbars_model_set_types), - (fill_avail_array), (egg_toolbars_model_get_avail), - (egg_toolbars_model_get_n_avail), (egg_toolbars_model_set_n_avail): - * lib/egg/egg-toolbars-model.h: - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmark-action-group.c: (smart_added_cb), - (smart_removed_cb), (node_changed_cb), (node_added_cb), - (node_removed_cb), (ephy_bookmark_group_new): - * src/bookmarks/ephy-bookmark-action-group.h: - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (ephy_bookmark_action_sync_icon), (show_context_menu), - (popup_menu_cb), (button_press_cb), (button_release_cb), - (connect_proxy), (ephy_bookmark_action_updated), - (ephy_bookmark_action_get_bookmark), - (ephy_bookmark_action_set_bookmark), - (ephy_bookmark_action_set_property), - (ephy_bookmark_action_get_property), - (ephy_bookmark_action_finalize), (ephy_bookmark_action_class_init), - (ephy_bookmark_action_init), (ephy_bookmark_action_name), - (ephy_bookmark_action_new): - * src/bookmarks/ephy-bookmark-action.h: - * src/bookmarks/ephy-bookmark-factory-action.c: - (ephy_bookmark_factory_action_get_type), (activate_item_cb), - (build_menu_for_topic), (build_menu), (remove_placeholder_cb), - (activate_placeholder_cb), (clicked_placeholder_cb), - (realize_placeholder_cb), (create_tool_item), (connect_proxy), - (ephy_bookmark_factory_action_class_init), - (ephy_bookmark_factory_action_new): - * src/bookmarks/ephy-bookmark-factory-action.h: - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_set_property), - (ephy_bookmark_properties_get_property), - (bookmark_properties_response_cb), (update_entry), - (location_entry_changed_cb), (build_ui): - * src/bookmarks/ephy-bookmarks-editor.c: (add_entry_monitor), - (cmd_add_topic), (delete_topic_dialog_construct), - (cmd_bookmarks_import), (ephy_bookmarks_editor_finalize), - (ephy_bookmarks_editor_node_activated_cb), - (ephy_bookmarks_editor_update_menu), (view_focus_cb), - (add_focus_monitor), (remove_focus_monitor), (bookmarks_filter), - (search_entry_search_cb), (ephy_bookmarks_editor_construct), - (ephy_bookmarks_editor_set_parent), - (ephy_bookmarks_editor_set_property), - (ephy_bookmarks_editor_get_property), (ephy_bookmarks_editor_init): - * src/bookmarks/ephy-bookmarks-menu.c: (append_bookmarks), - (append_menu), (ephy_bookmarks_menu_build): - * src/bookmarks/ephy-bookmarks-menu.h: - * src/bookmarks/ephy-bookmarks-ui.c: (find_action), - (activate_bookmarks_menu), (activate_favorites_menu), - (erase_bookmarks_menu), (erase_favorites_menu), (tree_changed_cb), - (node_added_cb), (node_changed_cb), (node_removed_cb), - (ephy_bookmarks_ui_attach_window), - (ephy_bookmarks_ui_detach_window), (toolbar_node_removed_cb), - (topic_has_data), (topic_get_data), (topic_get_name), - (bookmark_has_data), (bookmark_get_data), (bookmark_get_name), - (bookmark_new_name), (ephy_bookmarks_ui_attach_toolbar_model), - (ephy_bookmarks_ui_detach_toolbar_model): - * src/bookmarks/ephy-bookmarks-ui.h: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_get_type), - (ephy_bookmarks_init_defaults), (ephy_bookmarks_class_init), - (ephy_bookmarks_save_delayed), (add_to_favorites), - (update_bookmark_keywords), (ephy_bookmarks_init), - (ephy_bookmarks_finalize), (ephy_bookmarks_add), - (ephy_bookmarks_set_address), (ephy_bookmarks_set_icon), - (ephy_bookmarks_add_keyword), - (ephy_bookmarks_show_bookmark_properties), - (ephy_bookmarks_get_from_id), (ephy_bookmarks_compare_topics), - (ephy_bookmarks_compare_topic_pointers), - (ephy_bookmarks_compare_bookmarks), - (ephy_bookmarks_compare_bookmark_pointers): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-bookmarksbar-model.c: - * src/bookmarks/ephy-bookmarksbar-model.h: - * src/bookmarks/ephy-bookmarksbar.c: - * src/bookmarks/ephy-bookmarksbar.h: - * src/bookmarks/ephy-favorites-menu.c: - * src/bookmarks/ephy-favorites-menu.h: - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_add), - (build_editing_table), (ephy_new_bookmark_construct), - (ephy_new_bookmark_set_property), (ephy_new_bookmark_get_property): - * src/bookmarks/ephy-nodes-cover.c: (ephy_nodes_count_covered), - (ephy_nodes_remove_covered), (ephy_nodes_remove_not_covered), - (ephy_nodes_get_covered), (ephy_nodes_covered), - (ephy_nodes_get_covering): - * src/bookmarks/ephy-nodes-cover.h: - * src/bookmarks/ephy-open-tabs-action.c: (activate_cb), - (node_added_cb), (node_removed_cb), (ephy_open_tabs_group_new), - (ephy_open_tabs_action_name): - * src/bookmarks/ephy-open-tabs-action.h: - * src/bookmarks/ephy-related-action.c: (node_changed), - (node_destroyed), (open_link), (iface_init), - (ephy_related_action_get_type), (ephy_related_action_new): - * src/bookmarks/ephy-related-action.h: - * src/bookmarks/ephy-topic-action-group.c: (node_changed_cb), - (node_added_cb), (node_removed_cb), (ephy_topic_group_new): - * src/bookmarks/ephy-topic-action-group.h: - * src/bookmarks/ephy-topic-action.c: (ephy_topic_action_get_type), - (create_tool_item), (ephy_topic_action_sync_label), (get_popup), - (erase_popup), (child_added_cb), (child_changed_cb), - (child_removed_cb), (menu_destroy_cb), (menu_init_cb), - (button_deactivate_cb), (button_toggled_cb), (button_release_cb), - (button_press_cb), (connect_proxy), (ephy_topic_action_updated), - (ephy_topic_action_get_topic), (ephy_topic_action_set_topic), - (ephy_topic_action_set_property), (ephy_topic_action_get_property), - (ephy_topic_action_class_init), (ephy_topic_action_init), - (ephy_topic_action_name), (ephy_topic_action_new): - * src/bookmarks/ephy-topic-action.h: - * src/bookmarks/ephy-topic-factory-action.c: - (ephy_topic_factory_action_get_type), (sort_topics), - (activate_item_cb), (build_menu), (remove_placeholder_cb), - (activate_placeholder_cb), (clicked_placeholder_cb), - (realize_placeholder_cb), (create_tool_item), (connect_proxy), - (ephy_topic_factory_action_class_init), - (ephy_topic_factory_action_new): - * src/bookmarks/ephy-topic-factory-action.h: - * src/ephy-link-action.c: (ephy_link_action_group_get_type), - (ephy_link_action_group_new): - * src/ephy-link-action.h: - * src/ephy-lockdown.c: (find_name), (find_action_group), - (update_window): - * src/ephy-notebook.c: (move_tab_to_another_notebook), - (ephy_notebook_switch_page_cb), (ephy_notebook_init), - (tab_label_style_set_cb), (build_tab_label), - (ephy_notebook_add_tab): - * src/ephy-shell.c: (ephy_shell_get_toolbars_model): - * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_constructor), - (ephy_toolbar_editor_finalize), (ephy_toolbar_editor_set_property), - (ephy_toolbar_editor_class_init): - * src/ephy-toolbar.c: (ephy_toolbar_realize), - (ephy_toolbar_unrealize), (ephy_toolbar_finalize): - * src/ephy-toolbars-model.c: (update_flags), - (ephy_toolbars_model_load): - * src/ephy-window.c: (ephy_window_get_type), - (get_chromes_visibility), (sync_chromes_visibility), - (ephy_window_key_press_event), (tool_item_enter_cb), - (tool_item_leave_cb), (tool_item_drag_begin_cb), - (connect_tool_item), (disconnect_tool_item), (disconnect_proxy_cb), - (connect_proxy_cb), (update_chromes_actions), (show_embed_popup), - (tab_added_cb), (tab_removed_cb), (ephy_window_set_chrome), - (ephy_window_dispose), (ephy_window_class_init), - (ephy_window_init), (ephy_window_finalize), - (ephy_window_remove_tab), (ephy_window_set_zoom), - (sync_prefs_with_chrome), (ephy_window_view_toolbar_cb): - * src/ephy-window.h: - - Revision history: - - h18, released 2005/09/23, for Epiphany 1.8.0 - - * Just an update for 1.8.0. - - h17, released 2005/08/30, for Epiphany 1.7.6 or CVS HEAD - - * Mostly just an update for 1.7.6. - * Topic menus on the toolbar now open without releasing the mouse button. - * Topic menus on the toolbar are now also hierarchical (see if you like it. - - h16, released 2005/08/25, for Epiphany 1.7.5 or CVS HEAD - - * Just an update for 1.7.5. Sorry, I've been busy. :) - - h15, released 2005/07/19, for Epiphany 1.7.2 or CVS HEAD - - * Code cleanup - - h14, released 2005/07/9, for Epiphany 1.7.1 or CVS HEAD - - * Improved helpful tip when adding a bookmark - * Improved toolbar context menu - * Toolbar visibility state is now saved - * Separated bookmark/topic action groups into separate files - * Topics in the overflow menu now behave as submenus - * Now importing old bookmarksbar, and saving to new filename - * Incremented toolbar file format version number to 1.1 - * Fixed the 'sticky' statusbar help - * Fixed a crashing bug (dnd then open a topic on the toolbar) - - h13, released 2005/05/12, for CVS HEAD - - * Added middle-mouse drag-drop for the editable toolbar. - * Fixed some warnings at compile and run time. - * Added brief help for the user when adding a new bookmark. - * Cleaned up the editable toolbar code a little. - - h12, released 2005/05/10, for CVS HEAD - - * Added new editing facilities for the editable toolbar. - - h11, released 2005/04/29, for CVS HEAD - - * Fixed bug in statusbar information for toolbar items. - * Added an all-new 'Related' toolbar widget which changes to show - the most related topic whenever a bookmark is activated. - - h10, released 2005/04/15, for Epiphany 1.6.2 or CVS HEAD - - * Added statusbar information for all toolbar items. - * Empty toolbars are now only deleted when exiting edit mode. - * Fixed regression of middle-click for bookmarks on toolbar. - * Fixed regression of ellipsized bookmark names in menus. - - h9, released 2005/04/12, for Epiphany 1.6.1 - - * Updated patch for 1.6.1. Long time no see. - * Now using EphyLink objects everywhere. - - h7, released 2004/10/21, for Epiphany 1.4.4 - - * Updated patch for 1.4.4. - * Fixed bugs causing crashes when bookmarks were added (thanks Reinout). - * Added "Open in Tabs" back into bookmark menus where suitable. - - h6, released 2004/09/20, for Epiphany 1.4.0 - - * Updated patch for 1.4.0. - * Removed the bookmarks bar. - * Generate shared XML string for bookmarks menu. - * Slightly improve performance of node-cover code. - * Delay adding bookmarks menu until it is first used. - * Fixed bug(?) in ephy-node. - - h4, released 2004/08/08, for Epiphany 1.3.4 - - * Updated patch due to changes to topics selector. - * Removed 'Most Visited' from the min-cover calculations. - * Fixed Epiphany 1.3.4 bug where topics in selector aren't sorted. - * Updated patch due to other changes in Epiphany 1.3.4 source. - - h3, released 2004/07/12, for Epiphany 1.3.2 - - * Simple update for Epiphany 1.3.2 - - h3, released 2004/05/24, for Epiphany 1.2.5 - - * Moved duplicated functions into a seperate file. - * Improved topic selector. - * Bookmarks toolbar topic menus now have subdivisions. - * Topic names in menu now change if modified in the bookmarks editor. - - h2, released 2004/05/23, for Epiphany 1.2.5 - - * Significantly cleaned up the code. - * 'Most Visited' no longer appears as a submenu. - * Subtopics are selected much more intelligently, giving a better - approximation to a true minimum cover. - * Topic selector now shows suggestions with arrows, not bold font. - - h1, released 2004/05/19, for Epiphany 1.2.5 - - * Initial release. - - ChangeLog | 301 +++++++ - data/ui/epiphany-bookmark-editor-ui.xml | 5 - - data/ui/epiphany-ui.xml | 1 - - lib/egg/egg-editable-toolbar.c | 1147 +++++++++++++++----------- - lib/egg/egg-editable-toolbar.h | 3 + - lib/egg/egg-toolbar-editor.c | 442 +++++----- - lib/egg/egg-toolbar-editor.h | 5 - - lib/egg/egg-toolbars-model.c | 670 +++++++-------- - lib/egg/egg-toolbars-model.h | 98 ++- - src/bookmarks/Makefile.am | 24 +- - src/bookmarks/ephy-bookmark-action-group.c | 178 ++++ - src/bookmarks/ephy-bookmark-action-group.h | 33 + - src/bookmarks/ephy-bookmark-action.c | 444 +++------- - src/bookmarks/ephy-bookmark-action.h | 19 +- - src/bookmarks/ephy-bookmark-factory-action.c | 319 +++++++ - src/bookmarks/ephy-bookmark-factory-action.h | 54 ++ - src/bookmarks/ephy-bookmark-properties.c | 77 +- - src/bookmarks/ephy-bookmarks-editor.c | 239 ++---- - src/bookmarks/ephy-bookmarks-menu.c | 902 ++++---------------- - src/bookmarks/ephy-bookmarks-menu.h | 37 +- - src/bookmarks/ephy-bookmarks-ui.c | 552 +++++++++++++ - src/bookmarks/ephy-bookmarks-ui.h | 33 + - src/bookmarks/ephy-bookmarks.c | 293 +++---- - src/bookmarks/ephy-bookmarks.h | 8 +- - src/bookmarks/ephy-bookmarksbar-model.c | 588 ------------- - src/bookmarks/ephy-bookmarksbar-model.h | 76 -- - src/bookmarks/ephy-bookmarksbar.c | 380 --------- - src/bookmarks/ephy-bookmarksbar.h | 64 -- - src/bookmarks/ephy-favorites-menu.c | 319 ------- - src/bookmarks/ephy-favorites-menu.h | 59 -- - src/bookmarks/ephy-new-bookmark.c | 33 +- - src/bookmarks/ephy-nodes-cover.c | 196 +++++ - src/bookmarks/ephy-nodes-cover.h | 41 + - src/bookmarks/ephy-open-tabs-action.c | 119 +++ - src/bookmarks/ephy-open-tabs-action.h | 30 + - src/bookmarks/ephy-related-action.c | 178 ++++ - src/bookmarks/ephy-related-action.h | 59 ++ - src/bookmarks/ephy-topic-action-group.c | 123 +++ - src/bookmarks/ephy-topic-action-group.h | 34 + - src/bookmarks/ephy-topic-action.c | 996 +++++----------------- - src/bookmarks/ephy-topic-action.h | 38 +- - src/bookmarks/ephy-topic-factory-action.c | 318 +++++++ - src/bookmarks/ephy-topic-factory-action.h | 55 ++ - src/ephy-link-action.c | 44 + - src/ephy-link-action.h | 41 +- - src/ephy-lockdown.c | 18 +- - src/ephy-notebook.c | 39 +- - src/ephy-shell.c | 16 +- - src/ephy-toolbar-editor.c | 36 +- - src/ephy-toolbar.c | 49 -- - src/ephy-toolbars-model.c | 89 +- - src/ephy-window.c | 268 +++--- - src/ephy-window.h | 8 +- - 53 files changed, 4973 insertions(+), 5225 deletions(-) - -commit 35b9deda1f37ac0cc81d926b5295983de6b55dcf -Author: Philip Langdale -Date: Sun Oct 16 19:01:35 2005 +0000 - - Add another necessary mozilla include subdir to the includes for tests. - - 2005-10-16 Philip Langdale - - * configure.ac: Add another necessary mozilla include subdir to - the includes for tests. This is necessary when compiling against - an uninstalled mozilla build (header organisation is only done - at make install time) or, apparently, against gentoo's mozilla - packages. - - ChangeLog | 8 ++++++++ - configure.ac | 6 +++++- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit fdb745c1c9f97a2f60c84397e6e160912eec0430 -Author: Philip Langdale -Date: Sun Oct 16 18:59:45 2005 +0000 - - Exten the EphyLinkAction to attach a mouse-release-event handler which - - 2005-10-16 Philip Langdale - - * src/ephy-link-action.c: - (proxy_button_release_event_cb), (get_event_widget), - (ephy_link_action_connect_proxy), (ephy_link_action_disconnect_proxy), - (ephy_link_action_class_init), (ephy_link_action_get_type): - Exten the EphyLinkAction to attach a mouse-release-event handler - which turns around and calls gtk_action_activate in response to a - middle-click even on the proxy. This allows us to fully encapsulate - the extra work needed to catch middle clicks. - The GoHome action will automatically start working correctly now - that it is getting activated in this case. - - * src/ephy-navigation-action.c: - (activate_by_history_index), (activate_back_or_forward_menu_item_cb), - (ephy_navigation_action_activate), (ephy_navigation_action_class_init): - Fully enscapsulate 'activate' handling inside the action. This is more - consistent because the menus are already handled internally. Also - add support for middle-click on back/forward/up. - - * src/ephy-toolbar.c: - (ephy_toolbar_set_window): Don't attach 'activate' signal handlers - to the navigate actions because activation is now handled internally - to the action. - - I intend to make a followup change that removes the separate actions - for GoUp/Back/Forward in the menu and replace them with the main - actions already used in the toolbar. This means the menu items will - get middle-click support for free. - - * lib/ephy-gui.c: (ephy_gui_is_middle_click): - Only consider an unmodified middle-click to be a middle-click. - - ChangeLog | 33 ++++++++++++ - lib/ephy-gui.c | 2 +- - src/ephy-link-action.c | 121 ++++++++++++++++++++++++++++++++++++++++++- - src/ephy-navigation-action.c | 52 ++++++++++++++++--- - src/ephy-toolbar.c | 6 --- - 5 files changed, 199 insertions(+), 15 deletions(-) - -commit 803df66ce8311b4630402a5c6efad3922af8dd6b -Author: Christian Persch -Date: Sun Oct 16 18:52:27 2005 +0000 - - Enable favicons for https: sites on gecko 1.8. - - 2005-10-16 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get): - * embed/mozilla/EphyBrowser.cpp: - - Enable favicons for https: sites on gecko 1.8. - - ChangeLog | 7 +++++++ - embed/ephy-favicon-cache.c | 2 +- - embed/mozilla/EphyBrowser.cpp | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit 48f9bbfc1a7c8f489ccdf949dcf61b151cadd22a -Author: Marcel Telka -Date: Sun Oct 16 15:19:50 2005 +0000 - - Updated Slovak translation. - - 2005-10-16 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 939 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 472 insertions(+), 471 deletions(-) - -commit 6633b3ced595976ddad6608661bd33e3fc9376dd -Author: Christian Persch -Date: Sat Oct 15 14:50:00 2005 +0000 - - Use a GtkFileChooserButton for the download path selector. Fixes bug - - 2005-10-15 Christian Persch - - * data/glade/prefs-dialog.glade: - * src/prefs-dialog.c: (prefs_dialog_finalize), - (download_path_changed_cb), (create_download_path_button), - (prefs_dialog_init), (prefs_homepage_blank_button_clicked_cb): - - Use a GtkFileChooserButton for the download path selector. - Fixes bug #135738. - - ChangeLog | 10 +++ - data/glade/prefs-dialog.glade | 24 ++---- - src/prefs-dialog.c | 168 +++++++++++------------------------------- - 3 files changed, 61 insertions(+), 141 deletions(-) - -commit 6b9d4b0ba11109ef9d24aef0cd2dfa2b6aedd1a3 -Author: Vincent van Adrighem -Date: Sat Oct 15 12:48:38 2005 +0000 - - Translation updated. - - 2005-10-15 Vincent van Adrighem - - * nl.po: Translation updated. - - po/ChangeLog | 4 + - po/nl.po | 545 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 276 insertions(+), 273 deletions(-) - -commit f7d57e21e46565864b78fc0377e368ba02787d6b -Author: Christian Persch -Date: Sat Oct 15 10:36:10 2005 +0000 - - Allow favicons for https: sites on gecko 1.9. - - 2005-10-15 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download), - (ephy_favicon_cache_get): - * embed/mozilla/EphyBrowser.cpp: - - Allow favicons for https: sites on gecko 1.9. - - ChangeLog | 8 ++++++++ - embed/ephy-favicon-cache.c | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 6 ++++++ - 3 files changed, 20 insertions(+) - -commit dd8feacdf3a79df410589087e09a2831521c8d9c -Author: Christian Persch -Date: Sat Oct 15 10:05:08 2005 +0000 - - Remove debug output. - - 2005-10-15 Christian Persch - - * embed/mozilla/EphyBadCertRejector.h: - - Remove debug output. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBadCertRejector.h | 5 ++--- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit 6c9506d12f519b416ab8d7b04b7f16799abe595c -Author: Christian Persch -Date: Sat Oct 15 10:02:04 2005 +0000 - - Add EPHY_EMBED_PERSIST_NO_CERTDIALOGS flag. - - 2005-10-15 Christian Persch - - * embed/ephy-embed-persist.h: - - Add EPHY_EMBED_PERSIST_NO_CERTDIALOGS flag. - - * embed/mozilla/Makefile.am: - A embed/mozilla/EphyBadCertRejector.cpp: - A embed/mozilla/EphyBadCertRejector.h: - - A class implementing nsIBadCertListener which always rejects. - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - For gecko 1.8, implement nsIInterfaceRequestor for EphyHeaderSniffer - and MozDownload, and make GetInterface hand out a EphyBadCertRejector - if the EPHY_EMBED_PERSIST_NO_CERTDIALOGS flag is set. - - ChangeLog | 21 +++++++++++ - embed/ephy-embed-persist.h | 3 +- - embed/mozilla/EphyBadCertRejector.cpp | 68 +++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBadCertRejector.h | 37 +++++++++++++++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 45 ++++++++++++++++++++++- - embed/mozilla/EphyHeaderSniffer.h | 10 ++++++ - embed/mozilla/Makefile.am | 6 ++++ - embed/mozilla/MozDownload.cpp | 45 +++++++++++++++++++++-- - embed/mozilla/MozDownload.h | 5 ++- - 9 files changed, 235 insertions(+), 5 deletions(-) - -commit 0beb9543055b4149b0fee9bf2418ef2048eae4f9 -Author: Christian Persch -Date: Fri Oct 14 18:45:21 2005 +0000 - - Work around mozilla bug - - 2005-10-14 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: - - Work around mozilla bug - https://bugzilla.mozilla.org/show_bug.cgi?id=312241 . - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed.cpp | 3 ++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 163f8a8d714ec5a30696414e7f47db28cece461f -Author: Christian Persch -Date: Fri Oct 14 16:51:50 2005 +0000 - - eggstatusicon and eggtray* are in .skip because the only strings are in - - 2005-10-14 Christian Persch - - * POTFILES.in: - * POTFILES.skip: eggstatusicon and eggtray* are in .skip - because the only strings are in gobject property descriptions, - unused. - - po/ChangeLog | 7 +++++++ - po/POTFILES.in | 3 --- - po/POTFILES.skip | 3 +++ - 3 files changed, 10 insertions(+), 3 deletions(-) - -commit fa059d623064a5e7d10744ae8e82848b6cfde486 -Author: Adam Weinberger -Date: Fri Oct 14 16:26:45 2005 +0000 - - Added missing files, moved some files from .skip to .in. Updated Canadian - - - 2005-10-14 Adam Weinberger - - * POTFILES.skip, POTFILES.in: Added missing files, moved - some files from .skip to .in. - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 6 + - po/POTFILES.in | 4 + - po/POTFILES.skip | 3 - - po/en_CA.po | 624 ++++++++++++++++++++++++++++++++----------------------- - 4 files changed, 373 insertions(+), 264 deletions(-) - -commit 1da1c3211c2d783e9b4646feffacdd7cb7880e7a -Author: Philip Langdale -Date: Thu Oct 13 14:57:11 2005 +0000 - - Copy the back history when a link is opened in a new tab from a - - 2005-10-12 Philip Langdale - - * src/ephy-tab.c: (open_link_in_new_tab): - Copy the back history when a link is opened in - a new tab from a middle-click or a ctrl-click. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 15 +++++++++++++-- - 2 files changed, 19 insertions(+), 2 deletions(-) - -commit 1e5693677f94e878dbd4edb745b0680e2ef17e9e -Author: Philip Langdale -Date: Thu Oct 13 03:46:25 2005 +0000 - - . Forgot to remove the unused url variable. - - 2005-10-12 Philip Langdale - - * src/ephy-navigation-action.c: - (activate_back_or_forward_menu_item_cb). Forgot to - remove the unused url variable. - - ChangeLog | 6 ++++++ - src/ephy-navigation-action.c | 3 --- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 54d95188256bc3a6504e949d8a6d85190401330e -Author: Philip Langdale -Date: Thu Oct 13 03:14:12 2005 +0000 - - embed/ephy-embed.c . Add a method to copy the back/forward history from - - 2005-10-12 Philip Langdale - - * embed/ephy-embed.c - * embed/ephy-embed.h: (ephy_embed_shistory_copy). - Add a method to copy the back/forward history from - one embed to another. - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - (EphyBrowser::CopySHistory) Implementation of - history copying. - - * embed/mozilla/mozilla-embed.cpp: - Implement ephy_embed_shistory_copy by calling into - EphyBrowser. - - * src/ephy-navigation-action.c: - (activate_back_or_forward_menu_item_cb). If a - history menu item is middle-clicked on, open a new - tab, copy the history over and then go to the - relevant page in the history. - - * src/ephy-toolbar.c: (ephy_toolbar_set_window) Attach - handler for "open-link" to back/forward actions. - - ChangeLog | 25 ++++++++++++++++++ - embed/ephy-embed.c | 22 ++++++++++++++++ - embed/ephy-embed.h | 11 ++++++++ - embed/mozilla/EphyBrowser.cpp | 58 +++++++++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 3 +++ - embed/mozilla/mozilla-embed.cpp | 16 ++++++++++++ - src/ephy-navigation-action.c | 19 ++++++++++++++ - src/ephy-toolbar.c | 4 +++ - 8 files changed, 158 insertions(+) - -commit 85939a287cbb2b9c789581ddc6d529dd24d2c870 -Author: Christian Persch -Date: Wed Oct 12 19:45:07 2005 +0000 - - Remove the "network-status" signal from the embed single, and make it a - - 2005-10-12 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_iface_init), - (ephy_embed_single_set_network_status), - (ephy_embed_single_get_network_status): - * embed/ephy-embed-single.h: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EphySingle.h: - * embed/mozilla/mozilla-embed-single.cpp: - * src/ephy-window.c: (sync_tab_icon), (sync_network_status), - (ephy_window_dispose), (ephy_window_init): - * src/epiphany.defs: - * src/window-commands.c: (window_cmd_file_work_offline): - - Remove the "network-status" signal from the embed single, and - make it a property instead. Keep track of the network status in - EphySingle, and emit property notification when it changes. - - ChangeLog | 18 ++++++++++++ - embed/ephy-embed-single.c | 50 ++++++++++++++++----------------- - embed/ephy-embed-single.h | 14 ++++------ - embed/mozilla/EphySingle.cpp | 7 ++--- - embed/mozilla/EphySingle.h | 3 ++ - embed/mozilla/mozilla-embed-single.cpp | 51 +++++++++++++++++++++++++++++----- - src/ephy-window.c | 27 +++++++++--------- - src/epiphany.defs | 8 +++--- - src/window-commands.c | 2 +- - 9 files changed, 116 insertions(+), 64 deletions(-) - -commit 5f02d1125ef8c08ebd3d145565b6f054084f2658 -Author: Christian Persch -Date: Wed Oct 12 19:33:48 2005 +0000 - - A embed/mozilla/EphyRedirectChannel.cpp: A - - 2005-10-12 Christian Persch - - * embed/mozilla/EphyAboutModule.cpp: - * embed/mozilla/EphyAboutModule.h: - A embed/mozilla/EphyRedirectChannel.cpp: - A embed/mozilla/EphyRedirectChannel.h: - * embed/mozilla/Makefile.am: - - Implement about:recover. Build the about module on all geckos, and - only #ifdef the about:neterror implementation for gecko 1.8. - - * src/ephy-session.c: (tab_added_cb), (impl_attach_window), - (ephy_session_autoresume), (write_tab), (ephy_session_save), - (parse_embed), (ephy_session_load): - - Record the page load status and page title in the session file, and - use about:recover when the page was still loading when the browser - crashed. - - 2005-10-10 Christian Persch - - ChangeLog | 19 ++++ - embed/mozilla/EphyAboutModule.cpp | 175 ++++++++++++++++++++++++-------- - embed/mozilla/EphyAboutModule.h | 12 ++- - embed/mozilla/EphyRedirectChannel.cpp | 32 ++++++ - embed/mozilla/EphyRedirectChannel.h | 50 +++++++++ - embed/mozilla/Makefile.am | 10 +- - embed/mozilla/MozRegisterComponents.cpp | 40 ++++---- - src/ephy-session.c | 100 ++++++++++++++---- - 8 files changed, 353 insertions(+), 85 deletions(-) - -commit fefc4bfb69cb7a69c87328c132ed8f38142b6a74 -Author: Christian Persch -Date: Tue Oct 11 13:12:36 2005 +0000 - - Fix constness and don't strdup when returning early. - - 2005-10-10 Christian Persch - - * lib/ephy-string.c: (ephy_string_shorten): - - Fix constness and don't strdup when returning early. - - ChangeLog | 6 ++++++ - lib/ephy-string.c | 4 ++-- - lib/ephy-string.h | 2 +- - 3 files changed, 9 insertions(+), 3 deletions(-) - -commit 52bea0e3e7e817c1c7a99acc2c75bb9658285a9e -Author: Priit Laes -Date: Mon Oct 10 19:29:37 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-10-10 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 +++ - po/et.po | 115 +++-------------------------------------------------------- - 2 files changed, 8 insertions(+), 111 deletions(-) - -commit c42c18f05cccabccd3b812f2ddf768d166db259c -Author: Christian Persch -Date: Mon Oct 10 12:48:49 2005 +0000 - - Bring back ephy_string_shorten. - - 2005-10-10 Christian Persch - - * lib/ephy-string.c: (ephy_string_blank_chr), - (ephy_string_shorten): - * lib/ephy-string.h: - - Bring back ephy_string_shorten. - - * src/ephy-tab.c: (ephy_tab_file_monitor_cb), (ephy_tab_set_title): - - Shorten overlong tab titles, hard. Increase reload delay slightly. - Strip whitespace from tab title before determining if it's empty. - - ChangeLog | 13 +++++++++++++ - lib/ephy-string.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-string.h | 9 ++++++--- - src/ephy-tab.c | 15 +++++++++++---- - 4 files changed, 79 insertions(+), 7 deletions(-) - -commit d22a95c092b87ad574dadaa91167912a963aa528 -Author: Christian Persch -Date: Sun Oct 9 21:33:55 2005 +0000 - - Search the needle in the haystack, not the other way 'round. - - 2005-10-09 Christian Persch - - * lib/ephy-debug.c: - - Search the needle in the haystack, not the other way 'round. - - ChangeLog | 6 ++++++ - lib/ephy-debug.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit bc9ded62b951abe03f63a08cf02dfdd1409b860e -Author: Christian Persch -Date: Sun Oct 9 21:26:03 2005 +0000 - - Fix logging. - - 2005-10-09 Christian Persch - - * lib/ephy-debug.c: - - Fix logging. - - ChangeLog | 6 ++++++ - lib/ephy-debug.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 12f4a8e2564d41fdc67971b6f82b91c5dd65fc6a -Author: Christian Persch -Date: Sun Oct 9 21:24:55 2005 +0000 - - Fix logging. - - 2005-10-09 Christian Persch - - * lib/ephy-debug.c: - - Fix logging. - - lib/ephy-debug.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 7564180aa406fe0c5fa561fdbdb1f3566ca1487a -Author: Jean-François Rameau -Date: Sun Oct 9 19:49:00 2005 +0000 - - Eliminate the *Popup/*ImagePopup popup variants. Add image context to all - - 2005-10-09 Jean-François Rameau - - * data/ui/epiphany-ui.xml: - * src/ephy-window.c: (show_embed_popup), - (update_image_actions_visibility): - - Eliminate the *Popup/*ImagePopup popup variants. - Add image context to all popups it can show up. - Display image context dynamically. - - ChangeLog | 10 ++++++++ - data/ui/epiphany-ui.xml | 68 +++++++++++++++++++++++++------------------------ - src/ephy-window.c | 36 +++++++++++++++----------- - 3 files changed, 66 insertions(+), 48 deletions(-) - -commit 5596836e1b87d5ddf6f9ad787a52ed8fecb472a2 -Author: Christian Persch -Date: Sun Oct 9 18:27:34 2005 +0000 - - Remove DBUS define, it's always compiled now. - - 2005-10-09 Christian Persch - - * src/ephy-shell.c: - - Remove DBUS define, it's always compiled now. - - ChangeLog | 6 ++++++ - src/ephy-shell.c | 9 +-------- - 2 files changed, 7 insertions(+), 8 deletions(-) - -commit 04a1fdf7f7f19cfc777588b52ffffd0d009affb4 -Author: Christian Persch -Date: Sat Oct 8 21:54:45 2005 +0000 - - Fix profiling in builddir != srcdir builds. - - 2005-10-08 Christian Persch - - * lib/ephy-debug.c: - - Fix profiling in builddir != srcdir builds. - - ChangeLog | 6 +++++ - lib/ephy-debug.c | 82 +++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 55 insertions(+), 33 deletions(-) - -commit a57179cd0a6814c6e08eef31d671061df1d5af73 -Author: Christian Persch -Date: Sat Oct 8 21:00:50 2005 +0000 - - Ensure the images are loaded before starting to spin. Should fix crashes - - - - * lib/widgets/ephy-spinner.c: (ephy_spinner_start), - (ephy_spinner_dispose), (ephy_spinner_finalize), - (ephy_spinner_class_init): - - Ensure the images are loaded before starting to spin. - Should fix crashes on start/new tab. - - ChangeLog | 9 +++++++++ - lib/widgets/ephy-spinner.c | 23 ++++++++++++++++------- - 2 files changed, 25 insertions(+), 7 deletions(-) - -commit 12c604caf1667770159e18b3e09c18b9fac95909 -Author: Priit Laes -Date: Sat Oct 8 10:25:09 2005 +0000 - - Translation updated. - - 2005-10-08 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 ++++ - po/et.po | 12 ++++++------ - 2 files changed, 10 insertions(+), 6 deletions(-) - -commit 09c393976fd01b009a5f33b56d6bf5b8edea2308 -Author: Christian Persch -Date: Thu Oct 6 21:10:40 2005 +0000 - - Remove unused variable. - - 2005-10-06 Christian Persch - - * src/ephy-toolbar.c: (ephy_toolbar_update_spinner): - - Remove unused variable. - - ChangeLog | 6 ++++++ - src/ephy-toolbar.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 168465b4ebf93bddff2e2651adb59cc4d29beda4 -Author: Christian Persch -Date: Thu Oct 6 18:43:10 2005 +0000 - - Sync with gnome-2-12. - - 2005-10-06 Christian Persch - - * embed/mozilla/EphyUtils.cpp: - - Sync with gnome-2-12. - - ChangeLog | 6 +++++ - embed/mozilla/EphyUtils.cpp | 53 +++++++++++++++++++++++++-------------------- - 2 files changed, 36 insertions(+), 23 deletions(-) - -commit 53f4785830a46b1cf0584eb20d3cf3bdfc858aa8 -Author: Christian Persch -Date: Thu Oct 6 18:35:33 2005 +0000 - - Use flags to save memory for the priv struct. - - 2005-10-06 Christian Persch - - * src/ephy-toolbar.c: (ephy_toolbar_update_spinner), - (ephy_toolbar_set_show_leave_fullscreen), - (ephy_toolbar_set_security_state), - (ephy_toolbar_set_lock_visibility), (ephy_toolbar_set_spinning): - - Use flags to save memory for the priv struct. - - ChangeLog | 9 +++++++++ - src/ephy-toolbar.c | 25 +++++++++++++------------ - 2 files changed, 22 insertions(+), 12 deletions(-) - -commit c3422e72c44eb2999de994b8151ec2db2e591631 -Author: Christian Persch -Date: Thu Oct 6 18:28:55 2005 +0000 - - Add style properties for 'secure-[bg|fg]-color', and apply them when the - - 2005-10-06 Christian Persch - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_style_set), (ephy_location_entry_class_init), - (ephy_location_entry_set_favicon), - (ephy_location_entry_set_secure): - * lib/widgets/ephy-location-entry.h: - - Add style properties for 'secure-[bg|fg]-color', and apply them when - the entry is in 'secure' mode. Reset the IM context before emitting - the 'activate' signal. - - * src/ephy-location-action.c: (sync_secure), (connect_proxy), - (ephy_location_action_set_property), - (ephy_location_action_get_property), - (ephy_location_action_class_init): - * src/ephy-toolbar.c: (ephy_toolbar_set_security_state), - (ephy_toolbar_init): - * src/ephy-toolbar.h: - * src/ephy-window.c: (sync_chromes_visibility), - (sync_tab_security): - - Set the location entry's 'secure' property on secure sites, - and also always show the lock for secure sites. - - ChangeLog | 25 +++++++++ - lib/widgets/ephy-location-entry.c | 103 ++++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-location-entry.h | 3 ++ - src/ephy-location-action.c | 31 ++++++++++++ - src/ephy-toolbar.c | 10 +++- - src/ephy-toolbar.h | 1 + - src/ephy-window.c | 7 ++- - 7 files changed, 175 insertions(+), 5 deletions(-) - -commit 91edd219e3e228dfaa559d524401aceed31329c7 -Author: Christian Persch -Date: Thu Oct 6 14:58:07 2005 +0000 - - Add out private plugin directory to MOZ_PLUGIN_PATH too. - - 2005-10-06 Christian Persch - - * configure.ac: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - - Add out private plugin directory to MOZ_PLUGIN_PATH too. - - ChangeLog | 8 ++++++++ - configure.ac | 4 ++++ - embed/mozilla/Makefile.am | 1 + - embed/mozilla/mozilla-embed-single.cpp | 7 +++++-- - 4 files changed, 18 insertions(+), 2 deletions(-) - -commit 8f8805588ab31f3646fe8fb6e27191a962bc1eb8 -Author: Christian Persch -Date: Thu Oct 6 14:15:07 2005 +0000 - - Add "desktop-file" plugin, adapted from the "mozilla-desktop-file-plugin" - - 2005-10-06 Christian Persch - - * Makefile.am: - * configure.ac: - * plugins/.cvsignore: - * plugins/Makefile.am: - * plugins/desktop-file/.cvsignore: - * plugins/desktop-file/Makefile.am: - * plugins/desktop-file/plugin.cpp: - * po/POTFILES.in: - - Add "desktop-file" plugin, adapted from the - "mozilla-desktop-file-plugin" written by Jorn Baayen . - For now only handle .desktop files from file:/// URIs, for security - reasons. - - ChangeLog | 16 ++ - Makefile.am | 2 +- - configure.ac | 27 +++ - plugins/.cvsignore | 2 + - plugins/Makefile.am | 7 + - plugins/desktop-file/.cvsignore | 9 + - plugins/desktop-file/Makefile.am | 20 ++ - plugins/desktop-file/plugin.cpp | 432 +++++++++++++++++++++++++++++++++++++++ - 8 files changed, 514 insertions(+), 1 deletion(-) - -commit 2d2e6db37dcb70a1bbded7b7abf1e5c722f61f4a -Author: Priit Laes -Date: Wed Oct 5 20:15:33 2005 +0000 - - Translation updated. - - 2005-10-05 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 ++++ - po/et.po | 37 ++++++++++++++++--------------------- - 2 files changed, 20 insertions(+), 21 deletions(-) - -commit a49c3e1842374ae022f2c8d203882e75d71123a9 -Author: Christian Persch -Date: Sun Oct 2 22:35:20 2005 +0000 - - Use "position" property notification instead of size-allocate to monitor - - 2005-10-03 Christian Persch - - * lib/ephy-state.c: (paned_sync_position_cb), - (ephy_state_add_paned): - - Use "position" property notification instead of - size-allocate to monitor the paned's position. - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - - Use resize=FALSE with gtk_paned_pack1. Fixes growing size of - the left pane of the bookmarks editor by repeated opening. - - ChangeLog | 14 ++++++++++++++ - lib/ephy-state.c | 10 +++++----- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 3 files changed, 20 insertions(+), 6 deletions(-) - -commit bc28c27d07ae56467c45666ba6595901a99eadbe -Author: Christian Persch -Date: Sun Oct 2 22:04:54 2005 +0000 - - Fix memory leak. - - 2005-10-03 Christian Persch - - * src/ephy-window.c: (setup_ui_manager), (ephy_window_dispose), - (ephy_window_finalize): - - Fix memory leak. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 11 ++++++++--- - 2 files changed, 15 insertions(+), 3 deletions(-) - -commit bf28f9ee7e5e62ee5b31e366c8e10451f1e5a6ee -Author: Christian Persch -Date: Sun Oct 2 22:02:57 2005 +0000 - - Make sure we don't unref NULL objects. - - 2005-10-03 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_dispose): - * src/ephy-shell.c: (ephy_shell_dispose): - - Make sure we don't unref NULL objects. - - ChangeLog | 7 +++++ - embed/ephy-embed-shell.c | 21 ++++++++------- - src/ephy-shell.c | 68 +++++++++++++++++++++++++++++------------------- - 3 files changed, 60 insertions(+), 36 deletions(-) - -commit d7fea59666e1aaf5ecc97219538b79932173e135 -Author: Christian Persch -Date: Sun Oct 2 20:50:25 2005 +0000 - - Add configure switch to disable zeroconf bookmarks, since they're almost - - 2005-10-02 Christian Persch - - * configure.ac: - * src/bookmarks/ephy-bookmarks.c: (save_filter), - (ephy_bookmarks_save), (update_bookmark_keywords), - (bookmark_is_categorized), (ephy_bookmarks_init), - (ephy_bookmarks_finalize), (ephy_bookmarks_get_topic_uri), - (ephy_bookmarks_find_keyword): - * src/epiphany.defs: - - Add configure switch to disable zeroconf bookmarks, since - they're almost useless since just about nobody ships gnome-vfs - with howl support enabled, and have also been reported to - cause long delays on startup. - - ChangeLog | 15 +++++++++++++++ - configure.ac | 16 ++++++++++++++++ - src/bookmarks/ephy-bookmarks.c | 30 ++++++++++++++++++++++++++++++ - src/epiphany.defs | 6 ------ - 4 files changed, 61 insertions(+), 6 deletions(-) - -commit ae8ea41f87ce8c1e69c6a9ebe03eb154fcbe22b3 -Author: Christian Persch -Date: Sun Oct 2 19:00:32 2005 +0000 - - Schedule a GC in finalize of EphyTab and EphyWindow, to work around bug - - 2005-10-02 Christian Persch - - * src/ephy-tab.c: (ephy_tab_finalize): - * src/ephy-window.c: (ephy_window_finalize): - - Schedule a GC in finalize of EphyTab and EphyWindow, to - work around bug #317242. - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 8 ++++++++ - src/ephy-window.c | 8 ++++++++ - 3 files changed, 24 insertions(+) - -commit abe1a40d562514cfe6b3c8dae1397d511062ddab -Author: Christian Persch -Date: Sun Oct 2 18:50:51 2005 +0000 - - Use nsIDOMWindowInternal::Close to close tabs. Delay tabs destruction to - - 2005-10-02 Christian Persch - - * configure.ac: - * embed/ephy-embed-shell.c: (ephy_embed_shell_dispose), - (ephy_embed_shell_finalize), (ephy_embed_shell_class_init): - * embed/ephy-embed.c: (ephy_embed_base_init), - (ephy_embed_show_page_certificate), (ephy_embed_close): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-notebook.c: (ephy_notebook_class_init), - (close_button_clicked_cb): - * src/ephy-notebook.h: - * src/ephy-python.c: (ephy_python_init), (ephy_python_shutdown), - (ephy_python_schedule_gc): - * src/ephy-shell.c: (ephy_shell_class_init), (gnome_session_init), - (ephy_shell_dispose), (ephy_shell_finalize): - * src/ephy-tab.c: (ephy_tab_init): - * src/ephy-window.c: (construct_confirm_close_dialog), - (confirm_close_with_modified_forms), (embed_modal_alert_cb), - (idle_tab_remove_cb), (schedule_tab_close), - (embed_close_request_cb), (embed_destroy_browser_cb), - (tab_added_cb), (tab_removed_cb), (tab_close_request_cb), - (setup_notebook), (remove_true), (ephy_window_dispose), - (cancel_handler), (ephy_window_init), (ephy_window_finalize): - * src/window-commands.c: (event_with_shift), - (window_cmd_view_reload), (window_cmd_file_close_window): - - Use nsIDOMWindowInternal::Close to close tabs. Delay tabs destruction - to an idle handler, to avoid crashes when tabs are closed from signal - handlers (blur, mousedown, keydown etc). - Fixes bug #172878, bug #172879, bug #172882, bug #303254, bug #313425. - - ChangeLog | 34 ++++++++ - configure.ac | 4 +- - embed/ephy-embed-shell.c | 32 +++++--- - embed/ephy-embed.c | 30 +++++++ - embed/ephy-embed.h | 4 + - embed/mozilla/EphyBrowser.cpp | 61 ++++++++++++--- - embed/mozilla/EphyBrowser.h | 10 ++- - embed/mozilla/mozilla-embed.cpp | 9 +++ - src/ephy-notebook.c | 26 +++---- - src/ephy-notebook.h | 2 +- - src/ephy-python.c | 6 +- - src/ephy-shell.c | 73 +++++++++-------- - src/ephy-tab.c | 23 ------ - src/ephy-window.c | 169 ++++++++++++++++++++++++++++++++++------ - src/window-commands.c | 63 +++++++-------- - 15 files changed, 393 insertions(+), 153 deletions(-) - -commit 8a92076ee578e5c6aa8bb0a39fcdbe8741ce2e52 -Author: Christian Persch -Date: Sun Oct 2 18:19:02 2005 +0000 - - Merged from gnome-2-12. - - 2005-10-02 Christian Persch - - * LINGUAS: - * ku.po: Merged from gnome-2-12. - - po/LINGUAS | 2 +- - po/ku.po | 3666 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 3667 insertions(+), 1 deletion(-) - -commit e0f3dcd65974fb31e29854907dd51036cb4fb396 -Author: Christian Persch -Date: Sun Oct 2 18:09:38 2005 +0000 - - Remove unused variable. - - 2005-10-02 Christian Persch - - * embed/print-dialog.c: (ephy_print_do_print_idle_cb): - - Remove unused variable. - - ChangeLog | 6 ++++++ - embed/print-dialog.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit df8be6692a717bf115b13cbc3914be35ba9c328a -Author: Christian Persch -Date: Sun Oct 2 15:43:01 2005 +0000 - - Remove unused code. - - 2005-10-02 Christian Persch - - * lib/widget/ephy-spinner.c: - - Remove unused code. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-spinner.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit a2bbf31b11386534161bdaf16fdec29cbd685673 -Author: Christian Persch -Date: Sun Oct 2 13:56:48 2005 +0000 - - Don't include config.h here. - - 2005-10-02 Christian Persch - - * lib/ephy-debug.h: - - Don't include config.h here. - - * lib/widgets/ephy-spinner.c: (ephy_spinner_cache_data_unload), - (ephy_spinner_cache_data_load), (ephy_spinner_cache_data_new), - (ephy_spinner_cache_data_free), (ephy_spinner_cache_get_images), - (ephy_spinner_cache_init), (ephy_spinner_cache_finalize), - (ephy_spinner_load_images), (ephy_spinner_init), - (bump_spinner_frame_cb), (ephy_spinner_start), - (ephy_spinner_set_timeout), (ephy_spinner_finalize), - (ephy_spinner_screen_changed), (ephy_spinner_class_init): - - Make spinner multihead safe. - - * lib/widgets/testspinner.c: - - Add a tiny spinner test program. - - ChangeLog | 21 ++++ - lib/ephy-debug.h | 2 - - lib/widgets/ephy-spinner.c | 233 +++++++++++++++++++++++++++++++++----------- - lib/widgets/testiconentry.c | 20 ++++ - lib/widgets/testspinner.c | 165 +++++++++++++++++++++++++++++++ - 5 files changed, 383 insertions(+), 58 deletions(-) - -commit 456c0769c5dccb2c8ce312031219624e6edddc5c -Author: Christian Persch -Date: Sat Oct 1 21:10:56 2005 +0000 - - Don't spin unmapped spinners. Slightly decrease the frequency. Might help - - 2005-10-01 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_init), - (ephy_spinner_start), (ephy_spinner_stop), (ephy_spinner_map), - (ephy_spinner_unmap), (ephy_spinner_class_init): - - Don't spin unmapped spinners. Slightly decrease the frequency. - Might help with bug #315232. - - ChangeLog | 9 +++++++++ - lib/widgets/ephy-spinner.c | 49 ++++++++++++++++++++++++++++++++++++++++++---- - 2 files changed, 54 insertions(+), 4 deletions(-) - -commit 8a65154201e36dba60c53bc95f340c89aa3d000c -Author: Christian Persch -Date: Sat Oct 1 07:38:05 2005 +0000 - - Reset the IM context before activating the entry. - - 2005-10-01 Christian Persch - - * lib/widgets/ephy-location-entry.c: (entry_key_press_cb): - - Reset the IM context before activating the entry. - - * lib/widgets/ephy-node-view.c: (ephy_node_view_key_press_cb): - * src/ephy-find-toolbar.c: (tab_search_key_press_cb): - - Add GDK_ISO_Enter to recognised keyvals. - - ChangeLog | 11 +++++++++++ - lib/widgets/ephy-location-entry.c | 12 ++++++++---- - lib/widgets/ephy-node-view.c | 3 ++- - src/ephy-find-toolbar.c | 3 ++- - 4 files changed, 23 insertions(+), 6 deletions(-) - -commit 3c311e45c8f9191b331ece2daef00dc146871eee -Author: Adam Weinberger -Date: Fri Sep 30 20:21:47 2005 +0000 - - Updated Canadian English translation. - - - 2005-09-30 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 498 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 234 insertions(+), 268 deletions(-) - -commit 3bd2067f26820ac1302301edf62ea04a71a7dc70 -Author: Christian Persch -Date: Fri Sep 30 13:12:36 2005 +0000 - - Return error on failure. - - 2005-09-26 Christian Persch - - * embed/mozilla/EphyAboutModule.cpp: - - Return error on failure. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutModule.cpp | 13 +++++++------ - 2 files changed, 13 insertions(+), 6 deletions(-) - -commit 38b5b799c8b881efa7703bf3b64be6e7194f5327 -Author: Christian Persch -Date: Wed Sep 28 18:31:28 2005 +0000 - - Don't free const strings. - - 2005-09-28 Christian Persch - - * src/window-commands.c: (window_cmd_file_bookmark_page): - - Don't free const strings. - - ChangeLog | 6 ++++++ - src/window-commands.c | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 6f7fc09fe96eaad7a5d2c3563bdc45000cb88573 -Author: Christian Persch -Date: Wed Sep 28 13:36:49 2005 +0000 - - Add a function to get the tab's real title, and use it where appropriate. - - 2005-09-28 Christian Persch - - * src/ephy-notebook.c: (sync_label): - * src/ephy-tab.c: (ephy_tab_get_title_composite), - (ephy_tab_get_title): - * src/ephy-tab.h: - * src/ephy-tabs-menu.c: (sync_tab_title): - * src/ephy-window.c: (sync_tab_title): - * src/window-commands.c: (window_cmd_file_send_to), - (window_cmd_file_bookmark_page): - - Add a function to get the tab's real title, and use it - where appropriate. Fixes bug #317418. - - ChangeLog | 14 ++++++++++++++ - src/ephy-notebook.c | 2 +- - src/ephy-tab.c | 39 ++++++++++++++++++++++++++++++++++++--- - src/ephy-tab.h | 2 ++ - src/ephy-tabs-menu.c | 2 +- - src/ephy-window.c | 3 ++- - src/window-commands.c | 28 ++++------------------------ - 7 files changed, 60 insertions(+), 30 deletions(-) - -commit 135b0e0d1f8dc462f7e5d9450609685352667186 -Author: Christian Persch -Date: Wed Sep 28 13:31:22 2005 +0000 - - Hide the filters combo if there's only the "All" filter. - - 2005-09-28 Christian Persch - - * configure.ac: - * embed/mozilla/FilePicker.cpp: - - Hide the filters combo if there's only the "All" filter. - - ChangeLog | 7 +++++++ - configure.ac | 12 ++++++------ - embed/mozilla/FilePicker.cpp | 15 +++++++++++++++ - 3 files changed, 28 insertions(+), 6 deletions(-) - -commit e117b8225e399cc1a57d5c8e63782251d6b44dae -Author: Christian Persch -Date: Tue Sep 27 20:20:09 2005 +0000 - - Back out the fix for bug #158486 by re-enabling keyword: searches. Fixes - - 2005-09-27 Christian Persch - - * data/default-prefs-common.js: - - Back out the fix for bug #158486 by re-enabling keyword: - searches. Fixes bug #314974. - - ChangeLog | 7 +++++++ - data/default-prefs-common.js | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 5e3450ce9ad693b6c9cc987e4b606a48c399be2b -Author: Christian Persch -Date: Mon Sep 26 20:48:17 2005 +0000 - - Use the tab label's outer hbox for the size calculation instead of the - - 2005-09-26 Christian Persch - - * src/ephy-notebook.c: (tab_label_style_set_cb), - (build_tab_label): - - Use the tab label's outer hbox for the size calculation instead - of the label itself. Fixes size oscillations with the Tab States - extension. - - ChangeLog | 9 +++++++++ - src/ephy-notebook.c | 14 +++++++------- - 2 files changed, 16 insertions(+), 7 deletions(-) - -commit 2304764f197dc76a5b2fe80f682d906b3fa25eed -Author: Christian Rose -Date: Mon Sep 26 19:57:05 2005 +0000 - - Updated Swedish translation. - - 2005-09-26 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 3120 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1740 insertions(+), 1384 deletions(-) - -commit d4adb2139ba3c98379911d36534084a0e7462e8f -Author: Jean-François Rameau -Date: Mon Sep 26 19:22:19 2005 +0000 - - Unify background image and image code (contex menu, conext event). Fix bug - - 2005-09-26 Jean-François Rameau - - * src/ephy-lockdown.c: (update_window): - * src/ephy-window.c: (update_popups_tooltips), (show_embed_popup): - * src/popup-commands.c: - * src/popup-commands.h: - * embed/mozilla/EventContext.cpp: (GetEventContext): - * data/ui/epiphany-ui.xml: - - Unify background image and image code (contex menu, conext event). - Fix bug 154887. - - ChangeLog | 12 ++++++++++++ - data/ui/epiphany-ui.xml | 4 ---- - embed/mozilla/EventContext.cpp | 31 +++++++++++++++---------------- - src/ephy-lockdown.c | 2 -- - src/ephy-window.c | 22 +--------------------- - src/popup-commands.c | 8 -------- - src/popup-commands.h | 3 --- - 7 files changed, 28 insertions(+), 54 deletions(-) - -commit 90e9c33223a8a56dbd97e8b45cb313bfa27a0100 -Author: Christian Persch -Date: Mon Sep 26 12:49:09 2005 +0000 - - Back out previous change, it doesn't work right when there are *two* - - 2005-09-26 Christian Persch - - * embed/mozilla/Makefile.am: - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: (DoDialog): - - Back out previous change, it doesn't work right when there - are *two* dialogues shown: the 1st one can only be dismissed - after the 2nd one has been dismissed. - - ChangeLog | 9 +++++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 9 +-------- - embed/mozilla/Makefile.am | 2 -- - 3 files changed, 10 insertions(+), 10 deletions(-) - -commit 58bf466c8f6c5dd6132164ef3ac002be26b5933c -Author: Christian Persch -Date: Mon Sep 26 12:32:52 2005 +0000 - - Push a new event queue while showing the dialogue with gtk_dialog_run. - - 2005-09-26 Christian Persch - - * embed/mozilla/Makefile.am: - * embed/mozilla/AutoEventQueue.cpp: - * embed/mozilla/AutoEventQueue.h: - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: (DoDialog): - - Push a new event queue while showing the dialogue - with gtk_dialog_run. This fixes the problem (caused by the - braindead API of showing this dialogue synchronously) that - networking is blocked in all other windows while the dialogue - is shown. - - ChangeLog | 13 +++ - embed/mozilla/AutoEventQueue.cpp | 106 +++++++++++++++++++++++++ - embed/mozilla/AutoEventQueue.h | 75 +++++++++++++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 7 ++ - embed/mozilla/Makefile.am | 2 + - 5 files changed, 203 insertions(+) - -commit ca840a52b1caaf2bf47c900bd89825b841f0e0a9 -Author: Jean-François Rameau -Date: Sun Sep 25 20:08:20 2005 +0000 - - Add disable_quit to lockdown gconf schema. Fix bug 316499. - - 2005-09-25 Jean-François Rameau - - * data/epiphany-lockdown.schemas.in: - - Add disable_quit to lockdown gconf schema. Fix bug 316499. - - ChangeLog | 6 ++++++ - data/epiphany-lockdown.schemas.in | 11 +++++++++++ - 2 files changed, 17 insertions(+) - -commit ea90d20bec0c716aacbb72052961492c1ad9f960 -Author: Crispin Flowerday -Date: Sat Sep 24 20:20:39 2005 +0000 - - Rename the autoconf macro to EPIPHANY_EXTENSION_INIT() and make it check - - 2005-09-24 Crispin Flowerday - - * data/epiphany.m4: - - Rename the autoconf macro to EPIPHANY_EXTENSION_INIT() and make it - check the ephy version, get the extension directory and find out - whether python is enabled. - - ChangeLog | 8 ++++++++ - data/epiphany.m4 | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 67 insertions(+), 1 deletion(-) - -commit e04c3b73a2bff0e5b6f1b597df150bbff7fef2b5 -Author: Jean-François Rameau -Date: Sat Sep 24 19:06:46 2005 +0000 - - Handle contentEncodingError error. - - 2005-09-24 Jean-François Rameau - - * embed/mozilla/EphyAboutModule.cpp: (GetErrorMessage): - - Handle contentEncodingError error. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutModule.cpp | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 0ab89ca2f875ad31dde266da63cef24ecb272255 -Author: Crispin Flowerday -Date: Sat Sep 24 16:11:01 2005 +0000 - - If the library path isn't absolute, look in the main extension dir, and - - 2005-09-24 Crispin Flowerday - - * lib/Makefile.am: - * lib/ephy-module.c: (ephy_module_load): - - If the library path isn't absolute, look in the main extension - dir, and then the users own extension directory - - ChangeLog | 8 ++++++++ - lib/Makefile.am | 1 + - lib/ephy-module.c | 26 +++++++++++++++++++++++++- - 3 files changed, 34 insertions(+), 1 deletion(-) - -commit 7885000ddf06462e26d1c29dd16d0a3ebbd60319 -Author: Crispin Flowerday -Date: Fri Sep 23 21:35:07 2005 +0000 - - Don't crash if the Authors key is missing, or there are no keys in the - - 2005-09-23 Crispin Flowerday - - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_load_ini_string): - - Don't crash if the Authors key is missing, or - there are no keys in the Loader section - - ChangeLog | 8 ++++++++ - src/ephy-extensions-manager.c | 47 +++++++++++++++++++++++++------------------ - 2 files changed, 35 insertions(+), 20 deletions(-) - -commit de6e56efdb6053b813cc25b4e134f7b5be1db701 -Author: Christian Persch -Date: Fri Sep 23 21:32:09 2005 +0000 - - s/DOT_INIT/DOT_INI/g. - - 2005-09-23 Christian Persch - - * src/ephy-extensions-manager.c: - - s/DOT_INIT/DOT_INI/g. - - ChangeLog | 6 ++++++ - src/ephy-extensions-manager.c | 12 ++++++------ - 2 files changed, 12 insertions(+), 6 deletions(-) - -commit 21fc7031a88fc32183cc4e12c00e8a0768b144f6 -Author: Christian Persch -Date: Fri Sep 23 21:27:17 2005 +0000 - - Don't read unused variables, and use a #define for the keyfile extension. - - 2005-09-23 Christian Persch - - * src/epphy-extensions-manager.c: (free_extension_info), - (ephy_extensions_manager_load_xml_string), (path_to_identifier), - (ephy_extensions_manager_load_file), (load_file_from_monitor), - (dir_changed_cb), (ephy_extensions_manager_load_dir): - - Don't read unused variables, and use a #define for the - keyfile extension. - - ChangeLog | 10 +++++++++ - src/ephy-extensions-manager.c | 48 ++++++++++--------------------------------- - 2 files changed, 21 insertions(+), 37 deletions(-) - -commit 1908bad1bb4db82f36d36c1ffe05ce92fbeb27a1 -Author: Christian Persch -Date: Fri Sep 23 20:52:45 2005 +0000 - - Accept "Module" argument. - - 2005-09-23 Christian Persch - - * src/ephy-python-loader.c: (impl_get_object): - - Accept "Module" argument. - - ChangeLog | 6 ++++++ - src/ephy-python-loader.c | 6 +++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 19ebbdaaaae3a316b7077bb60b59ffec69f0c238 -Author: Christian Persch -Date: Fri Sep 23 19:51:49 2005 +0000 - - Support "Library" argument. - - 2005-09-23 Christian Persch - - * lib/ephy-shlib-loader.c: (impl_get_object) - (ephy_shlib_loader_class_init): - - Support "Library" argument. - - ChangeLog | 7 +++++++ - lib/ephy-shlib-loader.c | 8 +++++++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit f2d6cd25da72ef28a94acb0983c5eb55dfae5e3a -Author: Christian Persch -Date: Fri Sep 23 19:31:41 2005 +0000 - - R data/epiphany-extension.xsd: - - 2005-09-23 Christian Persch - - * data/Makefile.am: - R data/epiphany-extension.xsd: - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_load_xml_string), - (ephy_extensions_manager_startup), - (ephy_extensions_manager_finalize): - - Since the .xml format is deprecated, remove the (already #if 0'd) - schema validation code. - - ChangeLog | 12 +++++ - data/Makefile.am | 4 -- - data/epiphany-extension.xsd | 78 -------------------------------- - src/ephy-extensions-manager.c | 100 +----------------------------------------- - 4 files changed, 13 insertions(+), 181 deletions(-) - -commit fd6836b171fa8f5acbb9f37113809490fd9893fb -Author: Crispin Flowerday -Date: Fri Sep 23 19:10:45 2005 +0000 - - Really add the file - - 2005-09-23 Crispin Flowerday - - * data/epiphany.m4: Really add the file - - ChangeLog | 4 ++++ - data/epiphany.m4 | 30 ++++++++++++++++++++++++++++++ - 2 files changed, 34 insertions(+) - -commit 067bbc6bdef832c5488ab200cf1b815b54480074 -Author: Crispin Flowerday -Date: Fri Sep 23 18:56:47 2005 +0000 - - Add support for extension description files in the keyfile format, using - - 2005-09-23 Crispin Flowerday - - * data/Makefile.am: - * data/epiphany.m4: - * src/ephy-extensions-manager.c: (free_extension_info), - (ephy_extensions_manager_load_xml_string), - (ephy_extensions_manager_load_ini_string), (path_to_identifier), - (ephy_extensions_manager_load_file), (load_extension), - (load_file_from_monitor), (dir_changed_cb), - (ephy_extensions_manager_load_dir): - - Add support for extension description files in the keyfile - format, using the extension .ephy-extension. Also included - is a m4 macro to help do the translation of these files. - - ChangeLog | 15 +++ - data/Makefile.am | 4 + - src/ephy-extensions-manager.c | 260 +++++++++++++++++++++++++++++++++++------- - 3 files changed, 237 insertions(+), 42 deletions(-) - -commit 67b6bfaa168281fa2906232f70ba8ee1a1c882ee -Author: Jean-François Rameau -Date: Wed Sep 21 21:07:42 2005 +0000 - - Remove unused function. - - 2005-09-21 Jean-François Rameau - - * embed/mozilla/mozilla-embed-single.cpp: (have_gnome_url_handler): - - Remove unused function. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 25 ------------------------- - 2 files changed, 6 insertions(+), 25 deletions(-) - -commit 95ade17d38ca045d57a50ced5a830d31a1d83343 -Author: Christian Persch -Date: Wed Sep 21 21:00:01 2005 +0000 - - Fix compile warnings. - - 2005-09-21 Christian Persch - - * lib/ephy-gui.c: - - Fix compile warnings. - - ChangeLog | 6 ++++++ - lib/ephy-gui.c | 3 +-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 40949719c38f6ff13b25c5b664d7b74e7e8f8b8e -Author: Christian Persch -Date: Wed Sep 21 20:21:44 2005 +0000 - - Don't use "cat >" as output command, it fails inpredicably. Instead, use - - 2005-09-21 Christian Persch - - * embed/mozilla/EphyUtils.cpp: - * embed/print-dialog.c: (ephy_print_do_print_idle_cb): - - Don't use "cat >" as output command, it fails inpredicably. - Instead, use the tempfile setting, and set "PostScript/default" - as printer name. fflush before printing the temp file - using gnome-print. If not using gecko 1.9, translate the paper - name to the one mozilla expects (mozilla bug - https://bugzilla.mozilla.org/show_bug.cgi?id=307404). - - ChangeLog | 12 ++++++++++++ - embed/print-dialog.c | 13 +++++++++++-- - 2 files changed, 23 insertions(+), 2 deletions(-) - -commit fefb3cc908e332a2dd5c1bb9cc9df2853a25c4a1 -Author: Christian Persch -Date: Wed Sep 21 19:47:40 2005 +0000 - - New function to check the filename/directory for writability, derived from - - 2005-09-21 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_check_location_writable): - * lib/ephy-gui.h: - - New function to check the filename/directory for writability, - derived from the now removed ephy_gui_confirm_overwrite_file. - - * src/bookmarks/ephy-bookmarks-editor.c: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - - Use the filechooser's stock confirm-overwrite checking, but - we still need our own writability check. - - ChangeLog | 16 ++++++++++++++ - embed/mozilla/ContentHandler.cpp | 3 ++- - embed/mozilla/EphyHeaderSniffer.cpp | 3 ++- - embed/mozilla/FilePicker.cpp | 6 +++++- - lib/ephy-gui.c | 39 ++++------------------------------- - lib/ephy-gui.h | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 9 +++++--- - 7 files changed, 36 insertions(+), 42 deletions(-) - -commit afc8cd42bba6b11bc56464bfcce9dd74e4a1b64b -Author: Christian Persch -Date: Wed Sep 21 13:05:24 2005 +0000 - - Fix reference docs build - - doc/reference/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit 4eaaf312945912ef369cafafd26eb32d641d2973 -Author: Christian Persch -Date: Tue Sep 20 20:31:27 2005 +0000 - - Revert "make update-po" commit. - - 2005-09-05 Christian Persch - - * *.po: Revert "make update-po" commit. - - po/ChangeLog | 4 + - po/am.po | 3679 +++++++++++------------ - po/ar.po | 3362 ++++++++++----------- - po/az.po | 3346 ++++++++++----------- - po/be.po | 3566 +++++++++++----------- - po/bg.po | 365 +-- - po/bn.po | 3404 ++++++++++----------- - po/bs.po | 3373 ++++++++++----------- - po/ca.po | 622 +++- - po/cs.po | 758 +++-- - po/cy.po | 340 ++- - po/da.po | 2737 ++++++++++++----- - po/de.po | 2120 ++++++++----- - po/el.po | 655 +++- - po/en_CA.po | 1742 ++++++----- - po/en_GB.po | 2031 +++++++------ - po/es.po | 555 ++-- - po/et.po | 854 +++--- - po/eu.po | 357 ++- - po/fa.po | 904 ++++-- - po/fi.po | 697 ++++- - po/fr.po | 1742 ++++++----- - po/ga.po | 3509 ++++++++++------------ - po/gl.po | 1505 +++++----- - po/gu.po | 283 +- - po/he.po | 728 ++++- - po/hi.po | 947 +++--- - po/hr.po | 3535 ++++++++++------------ - po/hu.po | 385 ++- - po/id.po | 970 +++++- - po/is.po | 3381 ++++++++++----------- - po/it.po | 2042 +++++++------ - po/ja.po | 234 +- - po/ko.po | 2045 +++++++------ - po/li.po | 4281 ++++++++++++++------------ - po/lt.po | 237 +- - po/mi.po | 3219 +++++++++----------- - po/mk.po | 414 ++- - po/ml.po | 4799 ++++++++++++----------------- - po/mn.po | 3513 ++++++++++------------ - po/ms.po | 3293 ++++++++++---------- - po/nb.po | 369 ++- - po/ne.po | 557 ++-- - po/nl.po | 469 ++- - po/nn.po | 815 ++++- - po/no.po | 369 ++- - po/pa.po | 295 +- - po/pl.po | 773 ++++- - po/pt.po | 1051 +++++-- - po/pt_BR.po | 360 ++- - po/ro.po | 427 ++- - po/ru.po | 265 +- - po/rw.po | 2687 +++++++++-------- - po/sk.po | 365 +-- - po/sl.po | 4006 +++++++++++++------------ - po/sq.po | 380 ++- - po/sr.po | 1181 +++++++- - po/sr@Latn.po | 1250 +++++++- - po/sv.po | 9291 +++++++++++++++++++++++++++++++++++++++++++++++++-------- - po/ta.po | 3343 ++++++++++----------- - po/te.po | 991 +++--- - po/th.po | 2111 +++++++------ - po/tk.po | 3391 ++++++++++----------- - po/tr.po | 2573 ++++++++-------- - po/uk.po | 314 +- - po/vi.po | 325 +- - po/wa.po | 3284 +++++++++----------- - po/zh_CN.po | 496 ++- - po/zh_TW.po | 283 +- - 69 files changed, 65773 insertions(+), 52781 deletions(-) - -commit eaae63265df369170c7e7b4cfa20bf035a0366b4 -Author: Tomasz Kłoczko -Date: Tue Sep 20 13:41:51 2005 +0000 - - remove outdated strings and run "make update-po". - - po/am.po | 3685 ++++++++++++----------- - po/ar.po | 3362 +++++++++++---------- - po/az.po | 3356 +++++++++++---------- - po/be.po | 3566 +++++++++++----------- - po/bg.po | 365 ++- - po/bn.po | 3422 +++++++++++---------- - po/bs.po | 3373 +++++++++++---------- - po/ca.po | 622 +--- - po/cs.po | 758 ++--- - po/cy.po | 340 +-- - po/da.po | 2737 +++++------------ - po/de.po | 2140 +++++-------- - po/el.po | 655 +--- - po/en_CA.po | 1742 +++++------ - po/en_GB.po | 2031 ++++++------- - po/es.po | 555 ++-- - po/et.po | 854 +++--- - po/eu.po | 357 +-- - po/fa.po | 904 ++---- - po/fi.po | 697 +---- - po/fr.po | 1742 +++++------ - po/ga.po | 3513 ++++++++++++---------- - po/gl.po | 1505 +++++----- - po/gu.po | 283 +- - po/he.po | 728 +---- - po/hi.po | 947 +++--- - po/hr.po | 3535 ++++++++++++---------- - po/hu.po | 385 +-- - po/id.po | 970 +----- - po/is.po | 3383 +++++++++++---------- - po/it.po | 2042 ++++++------- - po/ja.po | 234 +- - po/ko.po | 2045 ++++++------- - po/li.po | 4287 ++++++++++++-------------- - po/lt.po | 237 +- - po/mi.po | 3223 +++++++++++--------- - po/mk.po | 414 +-- - po/ml.po | 4723 +++++++++++++++++------------ - po/mn.po | 3515 ++++++++++++---------- - po/ms.po | 3299 ++++++++++---------- - po/nb.po | 369 +-- - po/ne.po | 557 ++-- - po/nl.po | 469 +-- - po/nn.po | 815 +---- - po/no.po | 369 +-- - po/pa.po | 295 +- - po/pl.po | 773 +---- - po/pt.po | 1051 ++----- - po/pt_BR.po | 360 +-- - po/ro.po | 427 +-- - po/ru.po | 265 +- - po/rw.po | 2687 ++++++++--------- - po/sk.po | 365 ++- - po/sl.po | 4010 ++++++++++++------------- - po/sq.po | 380 +-- - po/sr.po | 1181 +------- - po/sr@Latn.po | 1250 +------- - po/sv.po | 9295 ++++++++------------------------------------------------- - po/ta.po | 3343 +++++++++++---------- - po/te.po | 991 +++--- - po/th.po | 2111 ++++++------- - po/tk.po | 3391 +++++++++++---------- - po/tr.po | 2573 ++++++++-------- - po/uk.po | 314 +- - po/vi.po | 325 +- - po/wa.po | 3286 +++++++++++--------- - po/zh_CN.po | 496 +-- - po/zh_TW.po | 283 +- - 68 files changed, 52787 insertions(+), 65775 deletions(-) - -commit 650bc73da100b534efc844fb873d264c352cf93d -Author: Tomasz Kłoczko -Date: Tue Sep 20 13:39:08 2005 +0000 - - added missing Plural-Forms field in preamble. - - po/ms.po | 1 + - 1 file changed, 1 insertion(+) - -commit 3cdcaaff7d118c7ddc8b280a4a0d11f865917f4a -Author: Christian Persch -Date: Mon Sep 19 20:45:13 2005 +0000 - - Add EPHY_EMBED_STATE_RESTORING and conversion from - - 2005-09-19 Christian Persch - - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - - Add EPHY_EMBED_STATE_RESTORING and conversion from - GTK_MOZ_EMBED_FLAG_RESTORING. - - ChangeLog | 8 ++++++++ - embed/ephy-embed.h | 3 ++- - embed/mozilla/mozilla-embed.cpp | 3 +++ - 3 files changed, 13 insertions(+), 1 deletion(-) - -commit e81e6efcb5c33e1eb6dd64f63e26d5d2358ef57b -Author: Christian Persch -Date: Mon Sep 19 20:43:00 2005 +0000 - - Add another mime alias. - - 2005-09-19 Christian Persch - - * data/mime-types-permissions.xml: - - Add another mime alias. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit b80a930d392d2719f916f6fcc975b60d1cfb2169 -Author: Christian Persch -Date: Mon Sep 19 14:02:30 2005 +0000 - - Make the methods to unset/release the context event semi-public. - - 2005-09-19 Christian Persch - - * src/ephy-window.c: (_ephy_window_set_context_event), - (_ephy_window_unset_context_event), (embed_popup_deactivate_cb), - (show_embed_popup), (ephy_window_dispose): - * src/ephy-window.h: - - Make the methods to unset/release the context event semi-public. - - ChangeLog | 9 +++++++++ - src/ephy-window.c | 38 +++++++++++++++++++++++--------------- - src/ephy-window.h | 5 +++++ - 3 files changed, 37 insertions(+), 15 deletions(-) - -commit 4a2a46a2431642dc032550ee2173db3059dacb37 -Author: Nguyen Thai Ngoc Duy -Date: Mon Sep 19 08:02:19 2005 +0000 - - Spell check - - po/vi.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d770972c5d4fbb1815d0c1afb854f871f22370ff -Author: Nguyen Thai Ngoc Duy -Date: Sat Sep 17 05:29:28 2005 +0000 - - Merged from gnome-2-12 - - po/vi.po | 58 +++++++++++++++++++++++++++++----------------------------- - 1 file changed, 29 insertions(+), 29 deletions(-) - -commit 60d3fe5725287c2d95e518aec3868b7bb9d7bd7a -Author: Raphael Slinckx -Date: Fri Sep 16 17:51:54 2005 +0000 - - Repair the previous b0rkage, see previous log - - 2005-09-16 Raphael Slinckx - - * src/bookmarks/ephy-bookmark-action.c: - (bookmark_activate_with_flags), (open_in_tab_activate_cb), - (open_in_window_activate_cb), (activate_cb): - * src/bookmarks/ephy-bookmarks.c: (impl_resolve_address): - Repair the previous b0rkage, see previous log - - ChangeLog | 8 +++ - src/bookmarks/ephy-bookmark-action.c | 96 +++++++++++++++++------------------- - src/bookmarks/ephy-bookmarks.c | 19 ------- - 3 files changed, 53 insertions(+), 70 deletions(-) - -commit c12bdc7dee5f0521be6e91bdcf09bf88f862d60c -Author: Raphael Slinckx -Date: Thu Sep 15 12:50:07 2005 +0000 - - If the search term is empty for a smart bookmark use the normal URL - - 2005-09-15 Raphael Slinckx - - * src/bookmarks/ephy-bookmarks.c: (impl_resolve_address): - If the search term is empty for a smart bookmark use the normal - URL instead of the smart url with the %s replaced by "" - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 18 ++++++++++++++++++ - 2 files changed, 24 insertions(+) - -commit ba377bb0e16c6773dd13632bc4793dae58a59e06 -Author: Christian Persch -Date: Thu Sep 15 12:29:03 2005 +0000 - - Don't focus the checkbox initially. Fixes bug #163371. - - 2005-09-15 Christian Persch - - * embed/mozilla/GtkNSSDialog.cpp: - - Don't focus the checkbox initially. Fixes bug #163371. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSDialogs.cpp | 14 ++++++++++---- - 2 files changed, 16 insertions(+), 4 deletions(-) - -commit 67661fefc75a5a76269b51b7281a272aae438060 -Author: Christian Persch -Date: Thu Sep 15 11:52:47 2005 +0000 - - Make Close the default button. - - 2005-09-15 Christian Persch - - * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_construct): - - Make Close the default button. - - ChangeLog | 6 ++++++ - src/ephy-toolbar-editor.c | 1 + - 2 files changed, 7 insertions(+) - -commit 0607796ab17b0f5a9f3a41fbc5cbd11b1b62b352 -Author: Christian Persch -Date: Wed Sep 14 12:47:49 2005 +0000 - - Set "website-label" property. - - 2005-09-14 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Set "website-label" property. - - ChangeLog | 6 ++++++ - src/window-commands.c | 1 + - 2 files changed, 7 insertions(+) - -commit 278dc07659e2e19d68d6656d13ed3e4c1937d029 -Author: Arangel Angov -Date: Mon Sep 12 20:26:49 2005 +0000 - - Updated translation, - - po/mk.po | 171 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 85 insertions(+), 86 deletions(-) - -commit db650fe7d15d8a438f999229f64f84a4f1b201ec -Author: Christian Persch -Date: Fri Sep 9 14:43:12 2005 +0000 - - Manually emit the "profile-change-net-teardown" notification; works around - - 2005-09-09 Christian Persch - - * embed/mozilla/EphySingle.cpp: - - Manually emit the "profile-change-net-teardown" notification; - works around bug https://bugzilla.mozilla.org/show_bug.cgi?id=292699. - - ChangeLog | 7 +++++++ - embed/mozilla/EphySingle.cpp | 5 +++++ - 2 files changed, 12 insertions(+) - -commit f7cf9f7ab23423b95edcfd8e5934b54764ca38c8 -Author: Christian Persch -Date: Wed Sep 7 11:20:23 2005 +0000 - - Remove unused code. - - 2005-09-07 Christian Persch - - * embed/mozilla/EphyUtils.cpp: - - Remove unused code. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyUtils.cpp | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 9b3a0266aa20b917693c796372da5bba7bec1349 -Author: Iñaki Larrañaga Murgoitio -Date: Mon Sep 5 19:47:31 2005 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 8a618280838ad73e78a4bc304dbe7c34847d3a98 -Author: Inaki Larranaga -Date: Mon Sep 5 19:46:39 2005 +0000 - - Updated Basque translation. - - 2005-09-05 Inaki Larranaga - - * eu.po: Updated Basque translation. - - po/eu.po | 1872 ++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 1087 insertions(+), 785 deletions(-) - -commit 0616ec5e16c2d2d435339d1842af79de9793af0e -Author: Christian Persch -Date: Mon Sep 5 16:41:12 2005 +0000 - - Implement [SG]etGeckoURIFlags for gecko 1.9. - - 2005-09-05 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - * embed/ephy-history.h: - - Implement [SG]etGeckoURIFlags for gecko 1.9. - - ChangeLog | 7 +++++++ - embed/ephy-history.h | 3 ++- - embed/mozilla/GlobalHistory.cpp | 41 +++++++++++++++++++++++++++++++++++------ - 3 files changed, 44 insertions(+), 7 deletions(-) - -commit 2400a887ee9deb7acb756629e0fe73770a385e07 -Author: Christian Persch -Date: Mon Sep 5 12:27:04 2005 +0000 - - Mozilla printing code is braindead. Bug #163255. - - 2005-09-05 Christian Persch - - * embed/mozilla/EphyUtils.cpp: - - Mozilla printing code is braindead. Bug #163255. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyUtils.cpp | 40 +++++++++++++++++++++++++++++++++++++--- - 2 files changed, 43 insertions(+), 3 deletions(-) - -commit 9a6f3cde561ae6d3a0f272219735d1ec538b00b5 -Author: Priit Laes -Date: Sun Sep 4 20:39:44 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-09-04 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 04e199615cc48d183a72110846041a2c183eba58 -Author: Danilo Šegan -Date: Sat Sep 3 18:56:00 2005 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 1780 +++++++++++++++++++++++++++++++-------------------------- - po/sr@Latn.po | 1780 +++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 1918 insertions(+), 1646 deletions(-) - -commit 8fc7d742b29fd00bf9bc82dce302aebb4fa70063 -Author: Christian Persch -Date: Sat Sep 3 18:33:11 2005 +0000 - - Depend on pygtk 2.8. Fixes bug #314557. - - 2005-09-03 Christian Persch - - * configure.ac: - - Depend on pygtk 2.8. Fixes bug #314557. - - * src/languages.h: - - Remove duplicate entries. - - ChangeLog | 10 ++++++++++ - TODO | 7 +++---- - configure.ac | 6 +++--- - src/languages.h | 25 ------------------------- - 4 files changed, 16 insertions(+), 32 deletions(-) - -commit 9995bff196611562f13e6425c5404a37db4bcc79 -Author: Francisco Javier F. Serrador -Date: Fri Sep 2 16:07:27 2005 +0000 - - Update Spanish translation. - - 2005-09-02 Francisco Javier F. Serrador - - * es.po: Update Spanish translation. - - help/es/figures/ephy-history-window-screenshot.png | Bin 68331 -> 27465 bytes - help/es/figures/ephy-screenshot.png | Bin 200737 -> 68531 bytes - 2 files changed, 0 insertions(+), 0 deletions(-) - -commit a3fe38e2a6e6e1e1fc18909ff0a7ad1d694ca6f9 -Author: Christian Persch -Date: Thu Sep 1 13:18:18 2005 +0000 - - Fix HIG spacings. - - 2005-09-01 Christian Persch - - * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_constructor): - * src/pdm-dialog.c: (show_cookies_properties): - - Fix HIG spacings. - - ChangeLog | 7 +++++++ - src/ephy-toolbar-editor.c | 2 +- - src/pdm-dialog.c | 3 ++- - src/window-commands.c | 2 +- - 4 files changed, 11 insertions(+), 3 deletions(-) - -commit ad3b0b222cf7876c4a538b379102e067478cdf73 -Author: Christian Persch -Date: Thu Sep 1 13:07:45 2005 +0000 - - Remove find dialogue, and tweak spacings to be HIG compliant. - - 2005-09-01 Christian Persch - - * data/glade/epiphany.glade: - - Remove find dialogue, and tweak spacings to be HIG compliant. - - ChangeLog | 6 + - data/glade/epiphany.glade | 331 +--------------------------------------------- - 2 files changed, 10 insertions(+), 327 deletions(-) - -commit bb3c17d7b27ab50b41393e466bb87f569ac8b160 -Author: Christian Persch -Date: Thu Sep 1 12:49:06 2005 +0000 - - Only listen for trusted events. - - 2005-09-01 Christian Persch - - * configure.ac: - * embed/mozilla/EphyBrowser.cpp: - - Only listen for trusted events. - - ChangeLog | 7 +++++ - configure.ac | 6 ++-- - embed/mozilla/EphyBrowser.cpp | 67 ++++++++++++------------------------------- - 3 files changed, 28 insertions(+), 52 deletions(-) - -commit d2a606d5c6bba56fe66a3bb04dd164442425d740 -Author: Nickolay V. Shmyrev -Date: Wed Aug 31 20:39:37 2005 +0000 - - Updated Russian translation - - po/ChangeLog | 4 + - po/ru.po | 2525 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1212 insertions(+), 1317 deletions(-) - -commit 4e457e2520e00ee98354102907a38526a877556d -Author: Christian Persch -Date: Wed Aug 31 20:02:25 2005 +0000 - - Update gtk requirement. - - 2005-08-31 Christian Persch - - * configure.ac: - - Update gtk requirement. - - ChangeLog | 6 ++++++ - configure.ac | 6 ++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit 604cafae85527fcf97057483e70a7e3533b318d2 -Author: Christian Persch -Date: Wed Aug 31 15:10:51 2005 +0000 - - Better message on the enter-secure warning. - - 2005-08-31 Christian Persch - - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - - Better message on the enter-secure warning. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 3 +-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 354ffd50f852b2d2370d3e71725b63eeb89aa84c -Author: Roozbeh Pournader -Date: Wed Aug 31 10:30:18 2005 +0000 - - Updated Persian translation by Alireza Kheirkhahan - - 2005-08-31 Roozbeh Pournader - - * fa.po: Updated Persian translation by Alireza Kheirkhahan - , Meelad Zakaria , - and myself. - - po/ChangeLog | 6 + - po/fa.po | 3890 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 2284 insertions(+), 1612 deletions(-) - -commit 393953c9ec7cc27add66fb28fa07f8760076f97d -Author: Žygimantas Beručka -Date: Wed Aug 31 07:58:08 2005 +0000 - - Updated Lithuanian translation. - - 2005-08-31 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 963 ++++++++++++++++++++++++++--------------------------------- - 2 files changed, 426 insertions(+), 541 deletions(-) - -commit 0f49b4d05c8fd8810427b3838623b0113d315081 -Author: Takeshi AIHANA -Date: Tue Aug 30 08:32:04 2005 +0000 - - Fixed typo in Japanese translation for v1.7.6. - - 2005-08-30 Takeshi AIHANA - - * ja.po: Fixed typo in Japanese translation for v1.7.6. - - po/ChangeLog | 4 ++ - po/ja.po | 123 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 66 insertions(+), 61 deletions(-) - -commit 606d7f1ba115eeb1a9681076cdb33f9d3a4cf877 -Author: Christian Persch -Date: Mon Aug 29 20:37:31 2005 +0000 - - Only include execinfo.h if it exists. - - 2005-08-29 Christian Persch - - * lib/ephy-debug.c: - - Only include execinfo.h if it exists. - - ChangeLog | 6 ++++++ - lib/ephy-debug.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 16d8cf513a954ab3bfe469d1cf94340e25ebfc98 -Author: Christian Persch -Date: Mon Aug 29 20:13:15 2005 +0000 - - Check for execinfo.h. Fixes bug #314776. - - 2005-08-29 Christian Persch - - * configure.ac: - * lib/ephy-debug.c: (trap_handler): - - Check for execinfo.h. Fixes bug #314776. - - ChangeLog | 7 +++++++ - configure.ac | 3 +++ - lib/ephy-debug.c | 4 ++++ - 3 files changed, 14 insertions(+) - -commit 0b1325fa2bed821343f751230689872f5acd05b0 -Author: Christian Persch -Date: Sun Aug 28 17:28:08 2005 +0000 - - Merged from branches - - NEWS | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 133 insertions(+) - -commit 29a5720ddb756ba1d0e88c7b4e187ff7a180c034 -Author: Christian Persch -Date: Sun Aug 28 17:24:18 2005 +0000 - - Version 1.9. - - 2005-08-28 Christian Persch - - * ChangeLog-20050828: - * Makefile.am: - * autogen.sh: - * configure.ac: - * data/Makefile.am: - * data/epiphany-1.10.pc.in: - * data/epiphany-1.8.pc.in: - * doc/reference/Makefile.am: - * embed/Makefile.am: - * embed/mozilla/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * lib/ephy-dbus.c: (session_filter_func), (system_filter_func), - (ephy_dbus_connect_to_session_bus), (ephy_dbus_disconnect_bus): - * lib/widgets/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - Version 1.9. - - ChangeLog | 7365 +-------------------------------------------- - ChangeLog-20050828 | 7360 ++++++++++++++++++++++++++++++++++++++++++++ - Makefile.am | 3 +- - autogen.sh | 2 +- - configure.ac | 92 +- - data/Makefile.am | 2 +- - data/epiphany-1.10.pc.in | 14 + - data/epiphany-1.8.pc.in | 14 - - doc/reference/Makefile.am | 12 +- - embed/Makefile.am | 4 +- - embed/mozilla/Makefile.am | 5 +- - lib/Makefile.am | 24 +- - lib/egg/Makefile.am | 2 +- - lib/ephy-dbus.c | 16 - - lib/widgets/Makefile.am | 2 +- - src/Makefile.am | 32 +- - src/bookmarks/Makefile.am | 2 +- - 17 files changed, 7457 insertions(+), 7494 deletions(-) - -commit dde82959e8394ec14aa7431b3b6695e9ed9565f2 -Author: Yair Hershkovitz -Date: Sun Aug 28 16:58:26 2005 +0000 - - Updated Hebrew translation. - - 2005-08-28 Yair Hershkovitz - - * he.po: Updated Hebrew translation. - - po/ChangeLog | 4 + - po/he.po | 3635 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 2215 insertions(+), 1424 deletions(-) - -commit 4ba9bf87d267144b933aade90d29a83a09d4e023 -Author: Christian Persch -Date: Sun Aug 28 16:47:14 2005 +0000 - - Remove unused variables. - - 2005-08-28 Christian Persch - - * configure.ac: - - Remove unused variables. - - ChangeLog | 6 ++++++ - configure.ac | 3 --- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 17a08461b2f39eb514c161a35b00e9c31d2b0e39 -Author: Christian Persch -Date: Sun Aug 28 15:03:38 2005 +0000 - - Post-release version bump. - - 2005-08-28 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 2a2d0483204a80cdf692ce25d293f2381ad5c58d -Author: Christian Persch -Date: Sun Aug 28 15:01:43 2005 +0000 - - Post-release version bump. - - 2005-08-28 Christian Persch - - * configure.ac: - - Post-release version bump. - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 56425967dcf43a4610b14b51486f713296641232 -Author: Christian Persch -Date: Sun Aug 28 14:59:13 2005 +0000 - - === Release 1.7.6 === - - 2005-08-28 Christian Persch - - === Release 1.7.6 === - - * NEWS: - * src/Makefile.am: - - ChangeLog | 7 +++++++ - NEWS | 37 +++++++++++++++++++++++++++++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - src/Makefile.am | 6 +++--- - 4 files changed, 49 insertions(+), 3 deletions(-) - -commit a6cf61633beca074913653611db94794409178b2 -Author: Christian Persch -Date: Sun Aug 28 13:59:27 2005 +0000 - - Update credits. - - 2005-08-28 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Update credits. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 2 +- - src/window-commands.c | 4 ++-- - 3 files changed, 9 insertions(+), 3 deletions(-) - -commit f0ded7586d7b819b25bd08fb53a5d14ed60a7da3 -Author: Christian Persch -Date: Sun Aug 28 13:58:30 2005 +0000 - - Set default prefs for warn-on-mixed-security pages. Part of bug - - 2005-08-28 Christian Persch - - * data/default-prefs-common.js: - - Set default prefs for warn-on-mixed-security pages. Part of bug - - ChangeLog | 7 +++++++ - data/default-prefs-common.js | 3 +++ - 2 files changed, 10 insertions(+) - -commit 0cc4c6e62f10d78101be7831fc59075e6f686a29 -Author: Crispin Flowerday -Date: Sun Aug 28 13:54:16 2005 +0000 - - Add an "add-page" signal to the EphyHistory object that can be used to - - 2005-08-28 Crispin Flowerday - - * embed/ephy-history.c: (ephy_history_class_init), - (internal_get_host), (ephy_history_get_host), - (ephy_history_add_host), (ephy_history_add_page), (impl_add_page): - * embed/ephy-history.h: - * lib/ephy-marshal.list: - - Add an "add-page" signal to the EphyHistory object that can be - used to block urls from appearing in the history. - - Also make the ephy_history_get_host() function not create - the EphyNode if it doesn't already exist. - - ChangeLog | 14 +++++++++++ - embed/ephy-history.c | 68 ++++++++++++++++++++++++++++++++++++++------------- - embed/ephy-history.h | 2 ++ - lib/ephy-marshal.list | 1 + - 4 files changed, 68 insertions(+), 17 deletions(-) - -commit ed45c4e754387009f261f46565da823837095f5b -Author: Christian Persch -Date: Sun Aug 28 13:51:13 2005 +0000 - - Fix pointer grab lockup when gecko pops up a dialogue. - - 2005-08-28 Christian Persch - - * src/ephy-notebook.c: (drag_stop), (grab_broken_event_cb), - (grab_notify_cb), (toplevel_motion_notify_cb), - (toplevel_button_release_cb), (drag_start), (motion_notify_cb), - (move_tab_to_another_notebook), (button_release_cb), - (button_press_cb): - - Fix pointer grab lockup when gecko pops up a dialogue. - - ChangeLog | 10 ++ - src/ephy-notebook.c | 297 +++++++++++++++++++++++++++++++++++++--------------- - 2 files changed, 220 insertions(+), 87 deletions(-) - -commit 9acbc44f12e4db912061ac42a0099c1439a530c8 -Author: Crispin Flowerday -Date: Sat Aug 27 21:47:07 2005 +0000 - - Add another workaround for the Gentoo header layout, and reference the - - 2005-08-27 Crispin Flowerday - - * configure.ac: - * embed/mozilla/Makefile.am: - - Add another workaround for the Gentoo header layout, and - reference the gentoo bug in the configure script - - ChangeLog | 8 ++++++++ - configure.ac | 1 + - embed/mozilla/Makefile.am | 4 ++++ - 3 files changed, 13 insertions(+) - -commit 424a2bd495c0901cb51c61b671b2c966e6f9f67b -Author: Christian Persch -Date: Sat Aug 27 19:23:42 2005 +0000 - - The focus fix isn't needed anymore for gecko >= 1.8. - - 2005-08-27 Christian Persch - - * configure.ac: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - The focus fix isn't needed anymore for gecko >= 1.8. - - ChangeLog | 9 +++++++++ - configure.ac | 14 -------------- - embed/mozilla/EphyBrowser.cpp | 4 ++-- - embed/mozilla/EphyBrowser.h | 4 ++-- - embed/mozilla/mozilla-embed.cpp | 20 ++++++++++---------- - 5 files changed, 23 insertions(+), 28 deletions(-) - -commit b66885343318c8027175c356dca745c6a1fdd73e -Author: Christophe Merlet -Date: Sat Aug 27 18:13:34 2005 +0000 - - Updated French translation. - - po/ChangeLog | 5 + - po/fr.po | 1952 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 916 insertions(+), 1041 deletions(-) - -commit a609501f35fbe20658159a82f53f379df9fe2adc -Author: Jordi Mallach -Date: Sat Aug 27 11:50:55 2005 +0000 - - Updated Catalan translation by Xavi Conde. - - po/ChangeLog | 7 +- - po/ca.po | 2328 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1302 insertions(+), 1033 deletions(-) - -commit 7ad2d178cf391207e36069b36a310d9391fd3eb6 -Author: Crispin Flowerday -Date: Sat Aug 27 09:49:38 2005 +0000 - - Add in the dom directory to the includes used for the configure checks. - - 2005-08-27 Crispin Flowerday - - * configure.ac: - - Add in the dom directory to the includes used for - the configure checks. This is to help Gentoo, which - uses an odd header layout. - - ChangeLog | 8 ++++++++ - configure.ac | 3 +++ - 2 files changed, 11 insertions(+) - -commit e1f5dac135d7bc21e5157254ca84d00df286fb38 -Author: Mohammad DAMT -Date: Sat Aug 27 09:29:36 2005 +0000 - - Updated Indonesian translation. - - 2005-08-27 Mohammad DAMT - - * id.po: Updated Indonesian translation. - - po/ChangeLog | 4 ++++ - po/id.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 1b274cff1aacab3daa375d515292519cd63988c2 -Author: Mohammad DAMT -Date: Sat Aug 27 09:28:40 2005 +0000 - - Updated Indonesian translation. - - 2005-08-27 Mohammad DAMT - - * id.po: Updated Indonesian translation. - - po/id.po | 2891 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1560 insertions(+), 1331 deletions(-) - -commit e255fca7309a96a8f48f2930c2779a05ff7554e0 -Author: Clytie Siddall -Date: Sat Aug 27 06:48:53 2005 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 128 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 68 insertions(+), 64 deletions(-) - -commit b9341a8cf44b836eb77e4bc4bbf11e04f23d81e7 -Author: Raphael Higino -Date: Fri Aug 26 19:56:51 2005 +0000 - - Updated pt_BR translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 372dc17be3e42e513ee4e0abe45556db116a4f7e -Author: Christian Persch -Date: Fri Aug 26 13:11:40 2005 +0000 - - Fix compile warnings. - - 2005-08-26 Christian Persch - - * src/ephy-window.c: (ephy_window_delete_event): - - Fix compile warnings. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4b9f3538672bb259d9a02c260e35e99f4e78313a -Author: Christian Persch -Date: Fri Aug 26 10:38:45 2005 +0000 - - Disable keyword searches by default. From bug #158486. - - 2005-08-26 Christian Persch - - * data/default-prefs-common.js: - - Disable keyword searches by default. From bug #158486. - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 447c2b3eddcd0a01a5aa2f5bb9466509fd270c61 -Author: Amanpreet Singh Alam -Date: Fri Aug 26 04:37:11 2005 +0000 - - add Punjabi (pa) by amanpreet Singh Brar Alamwalia - - po/pa.po | 1491 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 685 insertions(+), 806 deletions(-) - -commit 2f4aade451a95ddf4e4f48984acd4cbbc3c1fe15 -Author: Christian Persch -Date: Thu Aug 25 13:56:04 2005 +0000 - - Fix configure check for gecko 1.7. - - 2005-08-25 Christian Persch - - * configure.ac: - - Fix configure check for gecko 1.7. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit d5284828c11ec944b8020cab3038c4a867ab0519 -Author: Christian Persch -Date: Thu Aug 25 13:51:44 2005 +0000 - - Gecko API change. - - 2005-08-25 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Gecko API change. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 18 ++++++++++++++++++ - 2 files changed, 24 insertions(+) - -commit 352d6d7b6ab8268d2b89a1dc10fbcdf91fae7c02 -Author: Christian Persch -Date: Thu Aug 25 13:51:03 2005 +0000 - - Fix configure check for gecko >= 1.8. - - 2005-08-25 Christian Persch - - * configure.ac: - - Fix configure check for gecko >= 1.8. - - ChangeLog | 6 ++++++ - configure.ac | 27 +++++++++++++++++---------- - 2 files changed, 23 insertions(+), 10 deletions(-) - -commit 4288f4d05ef3f679326e58f9a48d461f2bbc3049 -Author: Rhys Jones -Date: Wed Aug 24 22:29:17 2005 +0000 - - Updated Welsh translation. - - 2005-08-24 Rhys Jones - - * cy.po: Updated Welsh translation. - - po/ChangeLog | 4 + - po/cy.po | 3337 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 1401 insertions(+), 1940 deletions(-) - -commit 7675f539fc4ec3944f939b2f330a21e97e140197 -Author: Artur Flinta -Date: Tue Aug 23 22:06:55 2005 +0000 - - Updated Polish translation by GNOME PL Team. - - 2005-08-24 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 +++ - po/pl.po | 114 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 62 insertions(+), 56 deletions(-) - -commit 69f2696ad877fb3341d80402116833475643699d -Author: Evandro Fernandes Giovanini -Date: Tue Aug 23 19:28:09 2005 +0000 - - Updated Brazilian Portuguese translation from Afonso Celso Medina - - 2005-08-23 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation from - Afonso Celso Medina . - - po/ChangeLog | 5 + - po/pt_BR.po | 1706 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 797 insertions(+), 914 deletions(-) - -commit a6b1006273d5b53243575101bd27378d8c34d927 -Author: Ankitkumar Rameshchandra Patel -Date: Tue Aug 23 06:18:56 2005 +0000 - - Updtaed Translations - - po/ChangeLog | 4 + - po/gu.po | 387 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 210 insertions(+), 181 deletions(-) - -commit 159590ee59fc552f8e10693f63e7bcd239b7f691 -Author: Vincent van Adrighem -Date: Mon Aug 22 16:25:59 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-08-22 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 +++ - po/nl.po | 98 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 53 insertions(+), 49 deletions(-) - -commit b9057aea437a712ccb7865268ec833588c177a8b -Author: Christian Persch -Date: Mon Aug 22 13:58:22 2005 +0000 - - Don't use nsIURI::SetPassword, since it asserts when username is empty. - - 2005-08-22 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/mozilla-embed.cpp: - - Don't use nsIURI::SetPassword, since it asserts when username - is empty. Use GetUsername, SetUserPass instead. - - ChangeLog | 8 ++++++++ - doc/reference/tmpl/ephy-embed.sgml | 4 ++++ - embed/mozilla/EphyBrowser.cpp | 4 +++- - embed/mozilla/mozilla-embed.cpp | 5 ++++- - 4 files changed, 19 insertions(+), 2 deletions(-) - -commit ba54bad81b7e5fabde4ade81da5a4e1a7e567de4 -Author: Christian Persch -Date: Mon Aug 22 13:56:59 2005 +0000 - - Remove check for redirected URL. Fixes bug #313756. - - 2005-08-22 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Remove check for redirected URL. Fixes bug #313756. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 11 ++--------- - 2 files changed, 8 insertions(+), 9 deletions(-) - -commit 8c8b5ab329e1431370d0d70bfa85dc60c919e1a2 -Author: Mugurel Tudor -Date: Sun Aug 21 23:18:55 2005 +0000 - - Updated Romanian translation - - 2005-08-22 Mugurel Tudor - - * ro.po: Updated Romanian translation - - po/ChangeLog | 4 ++++ - po/ro.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 066f59e93ee61f907a6a061ccc93f919259743ea -Author: Christian Persch -Date: Sun Aug 21 19:04:24 2005 +0000 - - Fix the check for unchanged address to check if we even have a monitor at - - 2005-08-21 Christian Persch - - * src/ephy-tab.c: (ephy_tab_update_file_monitor): - - Fix the check for unchanged address to check if we even - have a monitor at all. Fixes auto-reload on a file:// URI - loaded after a blank page. - Also modify the 'is local' check to just check for - file:// prefix on URI. - - ChangeLog | 10 ++++++++++ - src/ephy-tab.c | 12 ++++-------- - 2 files changed, 14 insertions(+), 8 deletions(-) - -commit 8dca3df0bfb91d1bbae002f6944c9c97a1dffb08 -Author: Christian Persch -Date: Sun Aug 21 13:50:58 2005 +0000 - - Don't empty find entry on Ctrl-F. - - 2005-08-21 Christian Persch - - * src/ephy-find-toolbar.c: (ephy_find_toolbar_open): - - Don't empty find entry on Ctrl-F. - - ChangeLog | 6 ++++++ - src/ephy-find-toolbar.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0dc4f8a8e11d4e01dd88f2e9472cf5e5d0e67042 -Author: Priit Laes -Date: Sat Aug 20 22:53:01 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-08-21 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 12 ++++++------ - 2 files changed, 10 insertions(+), 6 deletions(-) - -commit f59a690d744e44371fff63a0ac689d4d7a5a24e9 -Author: Christian Persch -Date: Sat Aug 20 22:44:07 2005 +0000 - - Post-release version bump. - - 2005-08-21 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 95cf9af83035c73084e5f70d2736ddfc73844cb5 -Author: Christian Persch -Date: Sat Aug 20 22:43:03 2005 +0000 - - === Release 1.7.5 === - - 2005-08-21 Christian Persch - - === Release 1.7.5 === - - * NEWS: - - ChangeLog | 6 ++++ - NEWS | 56 ++++++++++++++++++++++++++++++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 8 ++++++ - 3 files changed, 70 insertions(+) - -commit bc64b59f58805ac6a8ec656e23a259b5165f4bc1 -Author: Christian Persch -Date: Sat Aug 20 22:27:41 2005 +0000 - - Don't use ext handler for ftp://. - - 2005-08-21 Christian Persch - - * data/default-prefs-common.js: - * embed/mozilla/mozilla-embed-single.cpp: - - Don't use ext handler for ftp://. - - ChangeLog | 7 +++++++ - data/default-prefs-common.js | 1 + - embed/mozilla/mozilla-embed-single.cpp | 3 +-- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit a639bd67fc363c4e7a587d4b95648048e662c2c4 -Author: Christian Persch -Date: Sat Aug 20 22:25:48 2005 +0000 - - Change a g_return_if_fail into a regular return. - - 2005-08-21 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_launch_handler): - - Change a g_return_if_fail into a regular return. - - ChangeLog | 6 ++++++ - lib/ephy-file-helpers.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 6e5f92630e7efd2f871bbeb592c1a2c096b17829 -Author: Christian Persch -Date: Sat Aug 20 22:24:48 2005 +0000 - - Use class closure for delete event instead of signal handler. - - 2005-08-21 Christian Persch - - * src/ephy-window.c: (ephy_window_delete_event), - (ephy_window_class_init), (ephy_window_init): - - Use class closure for delete event instead of signal handler. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 17 +++++++++++------ - 2 files changed, 18 insertions(+), 6 deletions(-) - -commit 79755c0056e7777fc5786f771e7ecf07be77bfef -Author: Christian Persch -Date: Sat Aug 20 22:23:16 2005 +0000 - - 2005-08-21 Christian Persch - - * src/bookmarks/ephy-topic-action.c: - (ephy_topic_action_sync_label): - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-topic-action.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 86923cf976c004703da78a4d26c140f4def1128b -Author: Christian Persch -Date: Sat Aug 20 22:22:00 2005 +0000 - - Fix mem leak. - - 2005-08-21 Christian Persch - - * src/ephy-tab.c: (ephy_tab_finalize): - - Fix mem leak. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit d76e6a0f5ccfcd696603a8f082a65955cdd99f0e -Author: Žygimantas Beručka -Date: Thu Aug 18 21:20:59 2005 +0000 - - Updated Lithuanian translation by Justina Klingaitė. - - 2005-08-18 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation by Justina Klingaitė. - - po/ChangeLog | 4 + - po/lt.po | 908 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 457 insertions(+), 455 deletions(-) - -commit 65ef540cdb9ef969a5b83418529c9559d62c4985 -Author: Nikos Charonitakis -Date: Thu Aug 18 13:05:55 2005 +0000 - - Updated Greek translation - - help/ChangeLog | 4 ++++ - help/el/el.po | 50 +++++++++++++++++++++++++------------------------- - 2 files changed, 29 insertions(+), 25 deletions(-) - -commit d7cb36842270e48cf1b4799f3e4769d99d07f6b9 -Author: Chao-Hsiung Liao -Date: Thu Aug 18 03:38:28 2005 +0000 - - Updated Traditional Chinese translation. - - - 2005-08-18 Chao-Hsiung Liao - - * zh_TW.po: Updated Traditional Chinese translation. - - po/ChangeLog | 4 ++ - po/zh_TW.po | 151 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 81 insertions(+), 74 deletions(-) - -commit f80115bf09b2b2e712d9fa9a77091c18d418c78a -Author: Nikos Charonitakis -Date: Wed Aug 17 22:56:53 2005 +0000 - - Updated Greek translation - - help/ChangeLog | 4 ++++ - help/el/el.po | 54 +++++++++++++++++++++++++++--------------------------- - po/ChangeLog | 4 ++++ - po/el.po | 26 +++++++++++++------------- - 4 files changed, 48 insertions(+), 40 deletions(-) - -commit 57295c0d01fc7b6dc544ef2a53e4b8246cca446a -Author: Mugurel Tudor -Date: Wed Aug 17 22:25:10 2005 +0000 - - Updated Romanian translation - - 2005-08-18 Mugurel Tudor - - * ro.po: Updated Romanian translation - - po/ChangeLog | 4 ++++ - po/ro.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 65e39d2be97eeecc99e1e5e4502b9757b4ee540b -Author: Nikos Charonitakis -Date: Wed Aug 17 22:20:27 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 ++ - po/el.po | 157 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 83 insertions(+), 78 deletions(-) - -commit 3200b1592abd9f4ff0a020b3048bf6abf2cfb437 -Author: Christian Persch -Date: Wed Aug 17 17:31:23 2005 +0000 - - Add EPHY_EMBED_PERSIST_FROM_CACHE, and try harder to get a cache - - 2005-08-17 Christian Persch - - * embed/ephy-embed-persist.h: - * embed/mozilla/mozilla-embed-persist.cpp: - - Add EPHY_EMBED_PERSIST_FROM_CACHE, and try harder to get a cache - descriptor for the source URL. - - * src/popup-commands.c: (save_property_url), - (popup_cmd_set_image_as_background), (save_temp_source): - - Use EPHY_EMBED_PERSIST_FROM_CACHE to try to get the content from - cache when saving background, images or links. Part of bug #168554. - - ChangeLog | 14 ++++++++ - embed/ephy-embed-persist.h | 3 +- - embed/mozilla/mozilla-embed-persist.cpp | 61 ++++++++++++++++++++++++++++++--- - src/popup-commands.c | 11 +++--- - 4 files changed, 78 insertions(+), 11 deletions(-) - -commit 9dc72322ce56b9e377a1d889ea5bd4453f69ea47 -Author: Christian Persch -Date: Wed Aug 17 17:23:52 2005 +0000 - - Better fix: reorder again and use priv->title for the set_loading_title - - 2005-08-17 Christian Persch - - * src/ephy-tab.c: (ephy_tab_set_loading_title), - - Better fix: reorder again and use priv->title for - the set_loading_title call after the set_title call. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 14 +++++--------- - 2 files changed, 12 insertions(+), 9 deletions(-) - -commit 1f6738608dcf343978412ed273ad58e974b4811a -Author: Christian Persch -Date: Wed Aug 17 17:19:29 2005 +0000 - - QI the element to check whether it's of some type, don't check the tag. - - 2005-08-17 Christian Persch - - * embed/mozilla/EventContext.cpp: - - QI the element to check whether it's of some type, - don't check the tag. - - ChangeLog | 7 +++++++ - embed/mozilla/EventContext.cpp | 41 ++++++++++++++++++++++++++++------------- - 2 files changed, 35 insertions(+), 13 deletions(-) - -commit 0e355828070842dc959d876aaac84fc3e327a28d -Author: Leonid Kanter -Date: Wed Aug 17 15:22:48 2005 +0000 - - fixed http://bugzilla.gnome.org/show_bug.cgi?id=167407 - - po/ChangeLog | 4 ++++ - po/ru.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit beab959d14f94a5535faf71d69714afebf6c4c77 -Author: Christian Persch -Date: Wed Aug 17 12:55:58 2005 +0000 - - Use ephy_tab_set_title after ephy_tab_set_loading_title because set_title - - 2005-08-17 Christian Persch - - * src/ephy-tab.c: (ephy_tab_title_cb): - - Use ephy_tab_set_title after ephy_tab_set_loading_title - because set_title consumes the char* argument! - Fixes invalid UTF-8 warnings. - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 4 +++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit baf936755d8287b830e9293ae7d0bfb093d4e5b0 -Author: Christian Persch -Date: Wed Aug 17 12:12:30 2005 +0000 - - Fix --disable-focus-fix and --disable-psm configure args. - - 2005-08-17 Christian Persch - - * configure.ac: - - Fix --disable-focus-fix and --disable-psm configure args. - - ChangeLog | 6 ++++++ - configure.ac | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 71781157eb0818fa949a1962ce9c67405690b6bd -Author: Maxim Dziumanenko -Date: Wed Aug 17 07:52:28 2005 +0000 - - Updated Ukrainian translation. - - 2005-08-17 Maxim Dziumanenko - - * Updated Ukrainian translation. - - help/ChangeLog | 4 + - help/uk/figures/ephy-screenshot.png | Bin 174328 -> 67970 bytes - help/uk/uk.po | 2860 ++++++++++++++++++++++++----------- - po/ChangeLog | 4 + - po/uk.po | 2523 +++++++++++++++--------------- - 5 files changed, 3159 insertions(+), 2232 deletions(-) - -commit 3bc6ec635eb1aefebbc8514745485d426efaec73 -Author: Chao-Hsiung Liao -Date: Tue Aug 16 22:56:55 2005 +0000 - - Updated Traditional Chinese translation. - - - 2005-08-17 Chao-Hsiung Liao - - * zh_TW.po: Updated Traditional Chinese translation. - - po/ChangeLog | 4 + - po/zh_TW.po | 2838 +++++++++++++++++----------------------------------------- - 2 files changed, 819 insertions(+), 2023 deletions(-) - -commit a4bf8ce1df7b72b8e22d9083e601355e40e2b4e8 -Author: Priit Laes -Date: Tue Aug 16 20:31:25 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-08-16 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++ - po/et.po | 188 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 100 insertions(+), 92 deletions(-) - -commit 0d4285ba5a89aba2fe8485b6bdeefa9f4b6bd61d -Author: Vincent van Adrighem -Date: Tue Aug 16 16:35:35 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-08-16 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 +++ - po/nl.po | 90 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 50 insertions(+), 44 deletions(-) - -commit 6561fa99df66e983c2cdca6145742e7cac22a197 -Author: Christian Persch -Date: Tue Aug 16 12:30:01 2005 +0000 - - Another bug fixed with the find bar fix - - ChangeLog | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 724f973eb43d9527f199fcf3491876adada02711 -Author: Christian Persch -Date: Mon Aug 15 22:52:51 2005 +0000 - - Only activate link in typeahead mode, not in Ctrl-F find mode. - - 2005-08-16 Christian Persch - - * src/ephy-find-toolbar.c: (entry_activate_cb), - (ephy_find_toolbar_open): - - Only activate link in typeahead mode, not in Ctrl-F find mode. - - ChangeLog | 7 +++++++ - src/ephy-find-toolbar.c | 21 +++++++++++++++++++-- - 2 files changed, 26 insertions(+), 2 deletions(-) - -commit 18cb6c805fc57c21b173725e3a334a135e32e16e -Author: Christian Persch -Date: Mon Aug 15 22:38:43 2005 +0000 - - Return TRUE if the event was consumed. - - 2005-08-16 Christian Persch - - * embed/mozilla/EphyFind.cpp: - - Return TRUE if the event was consumed. - - * embed/mozilla/mozilla-embed-single.cpp: - - More redundant code. - - ChangeLog | 10 ++++++++++ - embed/mozilla/EphyFind.cpp | 2 +- - src/ephy-find-toolbar.c | 4 ++++ - 3 files changed, 15 insertions(+), 1 deletion(-) - -commit 2e0acbe78c7963db8c34e6c66c899751a8bc3d83 -Author: Christian Persch -Date: Mon Aug 15 22:23:47 2005 +0000 - - Add another bug reference - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0cba580858576aba1d4f2b4480e91dc3570c8d62 -Author: Christian Persch -Date: Mon Aug 15 22:22:31 2005 +0000 - - Activate the found link with a faked keypress event. - - 2005-08-16 Christian Persch - - * embed/ephy-embed-find.c: (ephy_embed_find_activate_link): - * embed/ephy-embed-find.h: - * embed/mozilla/EphyFind.cpp: - * embed/mozilla/EphyFind.h: - * embed/mozilla/mozilla-embed-find.cpp: - - Activate the found link with a faked keypress event. - - * src/ephy-find-toolbar.c: (tab_search_key_press_cb), - (entry_key_press_event_cb), (entry_activate_cb), - (ephy_find_toolbar_set_embed), (ephy_find_toolbar_open), - (ephy_find_toolbar_close): - - On enter, activate the found link instead of finding the next - occurrence. - Always really give focus to the find bar, instead of faking - keypresses in the find bar entry while focusing the embed. - Fixes bug #307216, bug #311985, bug #312419. - - ChangeLog | 21 +++++++++ - embed/ephy-embed-find.c | 15 +++++++ - embed/ephy-embed-find.h | 6 +++ - embed/mozilla/EphyFind.cpp | 86 +++++++++++++++++++++++++++++++++--- - embed/mozilla/EphyFind.h | 5 +++ - embed/mozilla/mozilla-embed-find.cpp | 11 +++++ - src/ephy-find-toolbar.c | 38 +++++++++++----- - 7 files changed, 167 insertions(+), 15 deletions(-) - -commit 02250ba19947aab8a099d2890649768e90ff3009 -Author: Nikos Charonitakis -Date: Mon Aug 15 21:40:25 2005 +0000 - - Added /el/figures/ephy-screenshot.png (Greek) - - help/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 990a7caa5c44f6927d322634f7e6f0e47cd38949 -Author: Nikos Charonitakis -Date: Mon Aug 15 21:37:29 2005 +0000 - - Added Greek ephy-screenshot - - help/el/figures/ephy-screenshot.png | Bin 0 -> 73817 bytes - 1 file changed, 0 insertions(+), 0 deletions(-) - -commit c12f6de237a1a8cb54f4fc422edd72424f8142c6 -Author: Christian Persch -Date: Mon Aug 15 17:48:55 2005 +0000 - - Remove "-s" argument which hasn't been supported for ages. - - 2005-08-15 Christian Persch - - * data/GNOME_Epiphany_Automation.server.in: - - Remove "-s" argument which hasn't been supported for ages. - - * data/mime-types-permissions.xml: - - Add more mime types. - - * lib/ephy-gui.c: (ephy_gui_menu_position_under_widget), - (ephy_gui_menu_position_on_toolbar): - * lib/ephy-gui.h: - - Improve menu positioning on toolbar buttons. - - ChangeLog | 16 ++++ - data/GNOME_Epiphany_Automation.server.in | 2 +- - data/mime-types-permissions.xml | 1 + - lib/ephy-gui.c | 133 ++++++++++++++++++++++++++++--- - lib/ephy-gui.h | 6 ++ - 5 files changed, 148 insertions(+), 10 deletions(-) - -commit 6515e317b0ecec17b732fd1928ea79cdbfa59820 -Author: Sigurd Gartmann -Date: Sun Aug 14 21:59:26 2005 +0000 - - Fixed a spelling error. - - 2005-08-14 Sigurd Gartmann - - * nn.po: Fixed a spelling error. - - po/ChangeLog | 4 ++++ - po/nn.po | 6 +++--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit b49bb04f2fbe2aba7c16e78d18f8289812a97daa -Author: Gabor Kelemen -Date: Sun Aug 14 21:54:52 2005 +0000 - - Hungarian translation updated. - - 2005-08-14 Gabor Kelemen - - * hu.po: Hungarian translation updated. - - po/ChangeLog | 4 + - po/hu.po | 445 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 228 insertions(+), 221 deletions(-) - -commit 9f5f054aa3604c2bdcc0842156c0dd112c89d0d3 -Author: Priit Laes -Date: Sun Aug 14 15:49:05 2005 +0000 - - Translation updated. - - 2005-08-14 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 ++++ - po/et.po | 33 ++++++++++++++++++++------------- - 2 files changed, 24 insertions(+), 13 deletions(-) - -commit 71ac96fbab5d47d6dc372c28a19ca3e05f7b7b9d -Author: Mugurel Tudor -Date: Sat Aug 13 23:15:56 2005 +0000 - - Updated Romanian translation - - 2005-08-14 Mugurel Tudor - - * ro.po: Updated Romanian translation - - po/ChangeLog | 4 + - po/ro.po | 2663 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1304 insertions(+), 1363 deletions(-) - -commit 8f04ab2a81b1c02ba0d54c86975bd1abf1bd5388 -Author: Francisco Javier F. Serrador -Date: Sat Aug 13 21:01:15 2005 +0000 - - Updated Spanish translation. - - 2005-08-13 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - help/ChangeLog | 4 + - help/es/es.po | 1167 ++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 709 insertions(+), 462 deletions(-) - -commit 53889e7853182f20e4271dc711f622dae19de95d -Author: Christian Persch -Date: Sat Aug 13 18:51:05 2005 +0000 - - Check that we're not trying to open in Epiphany itself! Fixes bug #310023. - - 2005-08-13 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Check that we're not trying to open in Epiphany itself! - Fixes bug #310023. - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 13 +++++++++++++ - 2 files changed, 20 insertions(+) - -commit 75e3a3834d9e9cf9524bb2528ee8c9f1a41babf9 -Author: Adam Weinberger -Date: Sat Aug 13 18:16:21 2005 +0000 - - Updated Canadian English translation. - - - 2005-08-13 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 77 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 43 insertions(+), 38 deletions(-) - -commit c2b5b48de565a5d7df532e48f9fcb44bd8aaacd9 -Author: Christian Persch -Date: Sat Aug 13 15:30:24 2005 +0000 - - Reject favicons that are < 12x12. - - 2005-08-13 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get): - - Reject favicons that are < 12x12. - - ChangeLog | 6 ++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - embed/ephy-favicon-cache.c | 15 +++++++++++++-- - 3 files changed, 21 insertions(+), 2 deletions(-) - -commit 5053d123082a01a657b3f34538702a8245aa3d34 -Author: Christian Persch -Date: Sat Aug 13 14:33:26 2005 +0000 - - Only allow http: favicons. - - 2005-08-13 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Only allow http: favicons. - - * embed/mozilla/mozilla-embed.cpp: - - Remove unnecessary casts. - - embed/mozilla/EphyBrowser.cpp | 5 +++++ - embed/mozilla/mozilla-embed.cpp | 14 +++++++------- - 2 files changed, 12 insertions(+), 7 deletions(-) - -commit e853d7394fde1468f5e20107f28cdc07b37c042b -Author: Christian Persch -Date: Sat Aug 13 14:31:59 2005 +0000 - - Don't display (guint64)-1 as filesize if it's not known yet. Part of bug - - 2005-08-13 Christian Persch - - * embed/downloader-view.c: (update_download_row): - - Don't display (guint64)-1 as filesize if it's not known yet. - Part of bug #313215. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 8 ++++++-- - 2 files changed, 13 insertions(+), 2 deletions(-) - -commit a8bb2fb64f68a142301f41354eff6132e389d9d7 -Author: Christian Persch -Date: Sat Aug 13 14:25:12 2005 +0000 - - Better gecko version check. - - 2005-08-13 Christian Persch - - * configure.ac: - - Better gecko version check. - - ChangeLog | 6 ++++++ - configure.ac | 32 +++++++++++++++++++++----------- - 2 files changed, 27 insertions(+), 11 deletions(-) - -commit 2837d6736fc3af78003dd23aee211053522274b7 -Author: Christian Persch -Date: Sat Aug 13 11:08:34 2005 +0000 - - Work around mozilla bug - - 2005-08-13 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Work around mozilla bug - https://bugzilla.mozilla.org/show_bug.cgi?id=304353 . - Fixes bug #313215. - - ChangeLog | 8 ++++++++ - embed/mozilla/MozDownload.cpp | 28 ++++++++++++++++++++++++++-- - 2 files changed, 34 insertions(+), 2 deletions(-) - -commit 08477cd1a9ef1958f993bb626339d6a96b85d0b8 -Author: Christian Persch -Date: Sat Aug 13 10:49:03 2005 +0000 - - More gcc4 fixes. - - 2005-08-13 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get): - * lib/ephy-dnd.c: (ephy_dnd_drag_data_get): - - More gcc4 fixes. - - ChangeLog | 7 +++++++ - embed/ephy-favicon-cache.c | 2 +- - lib/ephy-dnd.c | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit bc6426fdd145e1233628987bd39f8fe2060b9558 -Author: Kostas Papadimas -Date: Sat Aug 13 07:50:32 2005 +0000 - - Updated Greek Translation - - po/ChangeLog | 4 ++++ - po/el.po | 62 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 35 insertions(+), 31 deletions(-) - -commit 3b31e606c90271bf1ab18d13d3279962419d12ce -Author: Ilkka Tuohela -Date: Sat Aug 13 04:53:33 2005 +0000 - - Updated Finnish translation - - po/ChangeLog | 6 +- - po/fi.po | 325 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 190 insertions(+), 141 deletions(-) - -commit 9e7442fc90dd38d7dafe35c4dafe7be191709cab -Author: Clytie Siddall -Date: Fri Aug 12 14:19:12 2005 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++++ - po/vi.po | 61 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 35 insertions(+), 30 deletions(-) - -commit 3015045eaf1d01d64d7706ca97cb7382cc7b3824 -Author: Theppitak Karoonboonyanan -Date: Fri Aug 12 14:16:17 2005 +0000 - - Updated Thai translation. - - 2005-08-12 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 312 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 181 insertions(+), 135 deletions(-) - -commit a5b659e7edc600c9ab232c372467451318f8d73a -Author: Priit Laes -Date: Fri Aug 12 13:38:24 2005 +0000 - - Translation updated. - - 2005-08-12 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 573 +++++++++++++++++++++-------------------------------------- - 2 files changed, 207 insertions(+), 370 deletions(-) - -commit 5ba04df99c5a7803df4c6a154f740f992b6b3df0 -Author: Takeshi AIHANA -Date: Fri Aug 12 06:37:33 2005 +0000 - - Fixed wrong translation. - - 2005-08-12 Takeshi AIHANA - - * ja.po: Fixed wrong translation. - - po/ja.po | 11 +++++------ - 1 file changed, 5 insertions(+), 6 deletions(-) - -commit 49d96e7c54e26e53e63b1a2d67ab370754977fd1 -Author: Terance Sola -Date: Fri Aug 12 05:31:21 2005 +0000 - - Updated Norwegian bokmål translation. Same. - - 2005-08-12 Terance Sola - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 +++ - po/nb.po | 110 ++++++++++++++++++++++++++--------------------------------- - po/no.po | 110 ++++++++++++++++++++++++++--------------------------------- - 3 files changed, 103 insertions(+), 122 deletions(-) - -commit 53b74f88c9a6c117aef2fa4eae8b2fbea0abd800 -Author: Takeshi AIHANA -Date: Fri Aug 12 04:09:46 2005 +0000 - - Updated Japanese translation for v1.4.7. - - 2005-08-12 Takeshi AIHANA - - * ja.po: Updated Japanese translation for v1.4.7. - - po/ChangeLog | 4 + - po/ja.po | 795 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 396 insertions(+), 403 deletions(-) - -commit 4f3c92421ae0e0801416a684b0a19eed007c333c -Author: Laurent Dhima -Date: Thu Aug 11 14:04:00 2005 +0000 - - Updated Albanian translation. - - 2005-08-11 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 821 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 411 insertions(+), 414 deletions(-) - -commit 407735a818c81be4a190a795b10ce5f0cd7342bc -Author: Duarte Loreto -Date: Thu Aug 11 13:01:21 2005 +0000 - - Updated Portuguese translation. - - 2005-08-11 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 2849 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1560 insertions(+), 1293 deletions(-) - -commit ca218bee20722f4fa1097c062a971aab28d89973 -Author: Artur Flinta -Date: Thu Aug 11 09:26:00 2005 +0000 - - Updated Polish translation by GNOME PL Team. - - 2005-08-11 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 861 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 457 insertions(+), 408 deletions(-) - -commit a9c0864527da363fe326c0ce7a40f75966456f4b -Author: Vincent van Adrighem -Date: Thu Aug 11 07:46:36 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-08-11 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 280 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 166 insertions(+), 118 deletions(-) - -commit b0ebd24456651f6d83e2a5385b4d0fa80a0573d4 -Author: Funda Wang -Date: Thu Aug 11 04:51:50 2005 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 + - po/zh_CN.po | 643 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 347 insertions(+), 300 deletions(-) - -commit fb27bdb24da8760efd6edabade9c238ae829458a -Author: Nikos Charonitakis -Date: Wed Aug 10 22:43:11 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 928 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 494 insertions(+), 438 deletions(-) - -commit db96eadc01c2760eb155aa58a33e9a0487ea0100 -Author: Sigurd Gartmann -Date: Wed Aug 10 20:29:41 2005 +0000 - - Updated Norwegian Nynorsk translation. - - 2005-08-10 Sigurd Gartmann - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 + - po/nn.po | 3789 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 2305 insertions(+), 1488 deletions(-) - -commit 0367eba34e201693a4769899eaa981357ed09def -Author: Christian Persch -Date: Wed Aug 10 18:14:09 2005 +0000 - - Open new tabs with blank url bar if we're loading the homepage. Fixes bug - - 2005-08-10 Christian Persch - - * src/ephy-lockdown.c: (update_location_editable): - * src/ephy-shell.c: (ephy_shell_new_tab_full): - * src/ephy-tab.c: (ephy_tab_set_property), (ephy_tab_set_address), - (ephy_tab_open_uri_cb), (ephy_tab_address_cb), (ensure_page_info), - (ephy_tab_net_state_cb), (ephy_tab_init), (ephy_tab_get_address), - (ephy_tab_get_typed_address), (ephy_tab_set_typed_address): - * src/ephy-tab.h: - * src/ephy-toolbar.c: (sync_user_input_cb): - * src/epiphany.defs: - - Open new tabs with blank url bar if we're loading the homepage. - Fixes bug #313012. - - ChangeLog | 15 ++++++++++++++ - src/Makefile.am | 1 - - src/ephy-lockdown.c | 3 ++- - src/ephy-shell.c | 2 ++ - src/ephy-tab.c | 56 ++++++++++++++++++++++++++++++++++------------------- - src/ephy-tab.h | 12 ++++++++++-- - src/ephy-toolbar.c | 3 ++- - src/epiphany.defs | 1 + - 8 files changed, 68 insertions(+), 25 deletions(-) - -commit cea36c0d6561dcad2abd0863c28b8b0314ac470f -Author: Francisco Javier F. Serrador -Date: Wed Aug 10 18:13:19 2005 +0000 - - Updated Spanish translation. - - 2005-08-10 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 185 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 99 insertions(+), 90 deletions(-) - -commit 8f97cf80143aef3e1049006db1d435b170efc1be -Author: Marcel Telka -Date: Wed Aug 10 18:06:50 2005 +0000 - - Updated Slovak translation. - - 2005-08-10 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++++ - po/sk.po | 29 ++++++++++++++--------------- - 2 files changed, 18 insertions(+), 15 deletions(-) - -commit 64ab6da8e7433db0f446398301f3e4475250ba2e -Author: Ivan Stojmirov -Date: Wed Aug 10 17:02:23 2005 +0000 - - done - - po/mk.po | 24 ++++++++++++------------ - 1 file changed, 12 insertions(+), 12 deletions(-) - -commit 9f39f8a12ea1b910ae3303f3ef38d6216171ec88 -Author: Jean-François Rameau -Date: Wed Aug 10 16:27:46 2005 +0000 - - Gecko send several STATE_STOP, but only the final one (completed) is of - - 2005-08-10 Jean-François Rameau - - * embed/mozilla/MozDownload.cpp (OnStateChange): - - Gecko send several STATE_STOP, but only the final one (completed) - is of interest (STATE_STOP&STATE_IS_NETWORK). - Fix crash with gecko 1.8 when downloading. - - * embed/mozilla/mozilla-embed.cpp: - - Fix compilation warning. - - ChangeLog | 12 ++++++++++++ - embed/mozilla/MozDownload.cpp | 4 +++- - embed/mozilla/mozilla-embed.cpp | 3 +-- - 3 files changed, 16 insertions(+), 3 deletions(-) - -commit 3462935ff8e5902045057417bd606f91924f21b9 -Author: Alexander Shopov -Date: Wed Aug 10 15:05:52 2005 +0000 - - Added Bulgarian translation by Rostislav Raykov - - 2005-08-10 Alexander Shopov - - * bg.po: Added Bulgarian translation by - Rostislav Raykov - - po/ChangeLog | 7 +- - po/bg.po | 277 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 157 insertions(+), 127 deletions(-) - -commit 8509484e6fd9d158de52b057ebb8c3aacf963515 -Author: Pawan Chitrakar -Date: Wed Aug 10 13:54:26 2005 +0000 - - updated nepali translation - - po/ChangeLog | 4 + - po/ne.po | 2881 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1517 insertions(+), 1368 deletions(-) - -commit 21d8584587847a64e89820b0b8e77cad7a8e0fd4 -Author: Christian Persch -Date: Wed Aug 10 12:47:43 2005 +0000 - - Warn if nsIPassword.h isn't found. - - 2005-08-10 Christian Persch - - * configure.ac: - - Warn if nsIPassword.h isn't found. - - ChangeLog | 6 ++++++ - configure.ac | 13 +++++++++++-- - 2 files changed, 17 insertions(+), 2 deletions(-) - -commit 32c786666b663b1b1e63c70ffbfd0d232d47f59b -Author: Christian Persch -Date: Wed Aug 10 12:40:44 2005 +0000 - - Fix configure checks for focus workaround. - - 2005-08-10 Christian Persch - - * configure.ac: - - Fix configure checks for focus workaround. - - ChangeLog | 6 ++++++ - configure.ac | 6 +++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit db0bea048019e077efcc954405336200dadbc6ff -Author: Priit Laes -Date: Wed Aug 10 09:54:15 2005 +0000 - - Translation updated. - - 2005-08-10 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 779 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 493 insertions(+), 290 deletions(-) - -commit ad6dc13c8f43e0b7e1ba1c3ae650dad0b1cf012f -Author: Crispin Flowerday -Date: Wed Aug 10 09:19:05 2005 +0000 - - Make a few properties to be writable (where there is appropriate code in - - 2005-08-10 Crispin Flowerday - - * src/ephy-tab.c (ephy_tab_class_init): - - Make a few properties to be writable (where there is appropriate code - in the ephy_tab_set_property() function), and fix the 'icon' property - to have the correct enum value. - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 6 +++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit c9b5d2f7ebcb4780cee7bff0ffa9ea235add12ce -Author: Raphael Slinckx -Date: Tue Aug 9 21:39:26 2005 +0000 - - Fix a small grammar error in one of the download dialog string, with - - - 2005-08-09 Raphael Slinckx - - * embed/mozilla/ContentHandler.cpp: - - Fix a small grammar error in one of the download - dialog string, with approval of i18n - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit bbdf90ff4685eb630b2dfd80fd6a5866d469954d -Author: Christian Persch -Date: Tue Aug 9 20:26:06 2005 +0000 - - Make tab icon address setter public. - - 2005-08-09 Christian Persch - - * src/ephy-tab.c: (ephy_tab_set_property): - * src/ephy-tab.h: - * src/epiphany.defs: - - Make tab icon address setter public. - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 8 ++++---- - src/ephy-tab.h | 3 +++ - src/epiphany.defs | 9 +++++++++ - 4 files changed, 24 insertions(+), 4 deletions(-) - -commit f0d836444d0cf09a92bdcf3376e0090de97c3b16 -Author: Crispin Flowerday -Date: Tue Aug 9 19:14:52 2005 +0000 - - When opening the find bar with Ctrl+F, search for the item, and select the - - 2005-08-09 Crispin Flowerday - - * src/ephy-find-toolbar.c (ephy_find_toolbar_open): - - When opening the find bar with Ctrl+F, search for - the item, and select the text. - - ChangeLog | 7 +++++++ - src/ephy-find-toolbar.c | 10 ++++++++++ - 2 files changed, 17 insertions(+) - -commit 0edda6326b8a4e98f3c50847f5d1d161eb98a211 -Author: Ivan Stojmirov -Date: Tue Aug 9 15:25:52 2005 +0000 - - full - - po/mk.po | 759 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 374 insertions(+), 385 deletions(-) - -commit ce0119a469c4abb7df49c162e4e38cd040801ca6 -Author: Christian Persch -Date: Tue Aug 9 13:50:41 2005 +0000 - - Typo fixes. - - 2005-08-09 Christian Persch - - * NEWS: - - Typo fixes. - - * src/ephy-tab.c: (ephy_tab_net_state_cb): - - Removed favicon fallback code. - - ChangeLog | 10 ++++++++++ - NEWS | 5 ++--- - src/ephy-tab.c | 31 ------------------------------- - 3 files changed, 12 insertions(+), 34 deletions(-) - -commit c412a3fe4bf2735a601e71a6cb030dbc434a2a67 -Author: Kjartan Maraas -Date: Tue Aug 9 10:21:34 2005 +0000 - - Updated Norwegian bokmål translation. Same - - 2005-08-09 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same - - po/ChangeLog | 5 +++++ - po/nb.po | 14 ++++++-------- - po/no.po | 14 ++++++-------- - 3 files changed, 17 insertions(+), 16 deletions(-) - -commit 4052e43911775eb37d7ff8a42b148aef22d04e7b -Author: Terance Sola -Date: Tue Aug 9 08:35:33 2005 +0000 - - Updated Norwegian bokmål translation. Same. - - 2005-08-09 Terance Sola - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 + - po/nb.po | 315 ++++++++++++++++++++++++++++++++--------------------------- - po/no.po | 315 ++++++++++++++++++++++++++++++++--------------------------- - 3 files changed, 343 insertions(+), 292 deletions(-) - -commit de8868adcb3309aa915613c42f3bb6b55484db61 -Author: Clytie Siddall -Date: Tue Aug 9 06:41:48 2005 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 600 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 313 insertions(+), 291 deletions(-) - -commit 58c285c42ef0eece552dccb28f196f5d39a7d1c9 -Author: Marcel Telka -Date: Tue Aug 9 04:44:38 2005 +0000 - - Updated Slovak translation. - - 2005-08-09 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 329 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 180 insertions(+), 153 deletions(-) - -commit ea75e7faf2198d9da4fb183316b793f052cfef81 -Author: Adam Weinberger -Date: Tue Aug 9 01:09:42 2005 +0000 - - Updated Canadian English translation. - - - 2005-08-08 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/en_CA.po | 240 +++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 132 insertions(+), 108 deletions(-) - -commit eab9b1bfeb77947fc0d2d6fd18bb2dd91fe673ed -Author: Christian Persch -Date: Mon Aug 8 20:38:37 2005 +0000 - - Post-release version bump. - - 2005-08-08 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 668a6b57cd197237a4df0ac4f06a5ce723f8d581 -Author: Christian Persch -Date: Mon Aug 8 20:37:34 2005 +0000 - - === Release 1.7.4 === - - 2005-08-08 Christian Persch - - === Release 1.7.4 === - - * NEWS: - - ChangeLog | 6 ++++++ - NEWS | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 64 insertions(+) - -commit 0d888e59877f4c584ac5f1ea534d911f0272398f -Author: Christian Persch -Date: Mon Aug 8 20:19:56 2005 +0000 - - Tiny string fix just before string freeze :) - - 2005-08-08 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - * src/ephy-toolbar.c: (ephy_toolbar_set_window): - - Tiny string fix just before string freeze :) - - ChangeLog | 7 +++++++ - MAINTAINERS | 1 + - doc/reference/tmpl/ephy-embed.sgml | 13 ++++--------- - doc/reference/tmpl/ephy-tab.sgml | 5 +++++ - doc/reference/tmpl/epiphany-unused.sgml | 11 +++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 ++ - src/ephy-toolbar.c | 2 +- - 7 files changed, 31 insertions(+), 10 deletions(-) - -commit c1ecaa1fc326fd51ae3adc11c814b80cb1929dac -Author: Christian Persch -Date: Mon Aug 8 20:18:52 2005 +0000 - - Disable favicons from non-http URLs. - - 2005-08-08 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get): - - Disable favicons from non-http URLs. - - ChangeLog | 6 ++++++ - embed/ephy-favicon-cache.c | 4 ++++ - 2 files changed, 10 insertions(+) - -commit e6a65902d735e3e7b2355aa9a2107446eebaf9ea -Author: Francisco Javier F. Serrador -Date: Mon Aug 8 16:16:23 2005 +0000 - - Updated Spanish translation. - - 2005-08-08 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 +++ - po/es.po | 104 ++++++++++++++++++++++++++++++++++++++++------------------- - 2 files changed, 75 insertions(+), 33 deletions(-) - -commit 9fda4aaa3e067281027ef7f94fcbc5639234f12c -Author: Christian Persch -Date: Mon Aug 8 13:39:50 2005 +0000 - - Fix build with gecko trunk. - - 2005-08-08 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Fix build with gecko trunk. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 08fe75d491cd3f05865d40b42d9965a0e50d7fd5 -Author: Raphael Slinckx -Date: Mon Aug 8 13:38:41 2005 +0000 - - Change the download/open dialog strings to include the mime-type and file - - 2005-08-08 Raphael Slinckx - - * embed/mozilla/ContentHandler.cpp: - - Change the download/open dialog strings to include the - mime-type and file name, bits of rewording too. - - ChangeLog | 7 ++++ - embed/mozilla/ContentHandler.cpp | 84 +++++++++++++++++++++++++++++++--------- - 2 files changed, 72 insertions(+), 19 deletions(-) - -commit 4d375749d823e6b31b70ff0a478c002416467d80 -Author: Adam Weinberger -Date: Mon Aug 8 06:56:39 2005 +0000 - - Updated Canadian English translation. - - - 2005-08-08 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 74 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 41 insertions(+), 37 deletions(-) - -commit ed4b2460469250413d8b103d14a5847a7dd3819c -Author: Ankitkumar Rameshchandra Patel -Date: Mon Aug 8 04:44:01 2005 +0000 - - Updated Gujarati Translations - - po/ChangeLog | 4 + - po/gu.po | 357 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 183 insertions(+), 178 deletions(-) - -commit 4cd4d5771dbd60ef1b8ccac65e05f64350e02e4e -Author: Christian Persch -Date: Sun Aug 7 22:05:55 2005 +0000 - - remove debug printfs - - embed/ephy-favicon-cache.c | 2 -- - 1 file changed, 2 deletions(-) - -commit ec9060610c40fef18534b414d1979f4359f59a5e -Author: Christian Persch -Date: Sun Aug 7 21:47:11 2005 +0000 - - Add way to clear the favicon cache. Also removes any extraneous files from - - 2005-08-07 Christian Persch - - * embed/ephy-favicon-cache.c: (icons_removed_cb), - (remove_obsolete_icons), (delete_file), - (ephy_favicon_cache_finalize), (ephy_favicon_cache_get), - (ephy_favicon_cache_clear): - * embed/ephy-favicon-cache.h: - - Add way to clear the favicon cache. Also removes any extraneous files - from favicon cache directory. Fix a crash which I wonder why we never - experienced it! - - * src/prefs-dialog.c: (prefs_clear_cache_button_clicked_cb): - - Also clear favicon cache when clearing the cache. - - ChangeLog | 16 ++++++++++ - embed/ephy-favicon-cache.c | 74 ++++++++++++++++++++++++++++++++++++++++------ - embed/ephy-favicon-cache.h | 4 ++- - src/prefs-dialog.c | 11 +++++-- - 4 files changed, 93 insertions(+), 12 deletions(-) - -commit 8a5ef09c4435869dc39736d6c77c7d135f976223 -Author: Crispin Flowerday -Date: Sun Aug 7 21:14:46 2005 +0000 - - Change the text on the 'unknown issuer' dialog. Fixes bug #151519 - - 2005-08-07 Crispin Flowerday - - * embed/mozilla/GtkNSSDialogs.cpp (ConfirmUnknownIssuer): - - Change the text on the 'unknown issuer' dialog. - Fixes bug #151519 - - ChangeLog | 7 +++++++ - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 2469feadd17d7b66de70a1ed0bb898dcbfa9e296 -Author: Crispin Flowerday -Date: Sun Aug 7 21:14:03 2005 +0000 - - Update cvsignore - - src/.cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit 250865f24a1a5fbcacf892cf014c6b0b85428ea2 -Author: Christian Persch -Date: Sun Aug 7 20:31:32 2005 +0000 - - Add switch to disable focus fix, and to disable PSM. Error out if PSM - - 2005-08-07 Christian Persch - - * configure.ac: - - Add switch to disable focus fix, and to disable PSM. Error out if - PSM isn't found but --disable-psm not given. Should prevent accidental - compilation without PSM. - - * lib/widgets/ephy-icon-entry.c: (ephy_icon_entry_get_entry): - * lib/widgets/ephy-icon-entry.h: - - Add ephy_icon_entry_get_entry. - - * src/epiphany.defs: - - Updated python bindings. - - ChangeLog | 17 +++++++++++++++++ - configure.ac | 24 ++++++++++++++++++++++-- - lib/widgets/ephy-icon-entry.c | 8 ++++++++ - lib/widgets/ephy-icon-entry.h | 2 ++ - src/ephy-window.c | 2 +- - src/epiphany.defs | 41 ++++++++++++++++++++++++++++++++--------- - 6 files changed, 82 insertions(+), 12 deletions(-) - -commit b04fefa6c0e46938090bd56cf9918748e1e48000 -Author: Theppitak Karoonboonyanan -Date: Sun Aug 7 08:50:24 2005 +0000 - - Updated Thai translation. - - 2005-08-07 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 248 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 121 insertions(+), 131 deletions(-) - -commit db0937706afe2c2dabbace43bb6bf8b866c8c2b6 -Author: Guilherme de S. Pastore -Date: Sun Aug 7 05:33:39 2005 +0000 - - fixed HIG compliance by pushing the verbs in the Comment in the .desktop - - * pt_BR.po: fixed HIG compliance by pushing the verbs - in the Comment in the .desktop file to the imperative form. - - po/ChangeLog | 5 +++++ - po/pt_BR.po | 4 ++-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 5ab6d7052301d708dc1f63351d82f46f4a1f6678 -Author: Christian Persch -Date: Sat Aug 6 22:26:45 2005 +0000 - - Also block GtkMozEmbed's child focus-[in|out]-event handlers. - - 2005-08-07 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: (mozilla_embed_realize): - - Also block GtkMozEmbed's child focus-[in|out]-event handlers. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 28 +++++++++++++++++++++------- - 2 files changed, 27 insertions(+), 7 deletions(-) - -commit 976b6e0255ef388a396d1f1525b5d3ef70b67799 -Author: Crispin Flowerday -Date: Sat Aug 6 21:11:24 2005 +0000 - - Don't attach the scroll event listener twice. - - 2005-08-06 Crispin Flowerday - - * embed/mozilla/EphyBrowser.cpp (AttachListeners): - - Don't attach the scroll event listener twice. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 2d66071c7e1c42b1df2a1e34ecc84670bd42e790 -Author: Alexander Shopov -Date: Sat Aug 6 11:49:07 2005 +0000 - - Updated Bulgarian translation by Rostislav Raykov - - 2005-08-06 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Rostislav Raykov - - po/ChangeLog | 5 + - po/bg.po | 524 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 249 insertions(+), 280 deletions(-) - -commit b4fbe5148203779d909654b6eea7ed0b8d7c52e4 -Author: Miloslav Trmac -Date: Fri Aug 5 10:42:40 2005 +0000 - - Updated Czech translation. - - 2005-08-05 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 1065 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 538 insertions(+), 531 deletions(-) - -commit 205e0ed7947f946bfa7e031bd327cb4da619e5b9 -Author: Vincent van Adrighem -Date: Thu Aug 4 21:16:41 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2002-10-04 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 375 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 189 insertions(+), 190 deletions(-) - -commit c98945c38576dd80d4d0612c1434a3d5b409c92c -Author: Francisco Javier F. Serrador -Date: Thu Aug 4 14:44:45 2005 +0000 - - Updated Spanish translation. - - 2005-08-04 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 406 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 214 insertions(+), 196 deletions(-) - -commit e8a97b79e9608463f9d606696e06b78fbaaff80f -Author: Gabor Kelemen -Date: Thu Aug 4 10:50:45 2005 +0000 - - Hungarian translation updated. - - 2005-08-04 Gabor Kelemen - - * hu.po: Hungarian translation updated. - - po/ChangeLog | 4 + - po/hu.po | 975 ++++++++++++++++++++++++++--------------------------------- - 2 files changed, 432 insertions(+), 547 deletions(-) - -commit 03b9fd7c3d9725d79e181b33c1753768da4d46f9 -Author: Theppitak Karoonboonyanan -Date: Thu Aug 4 10:32:39 2005 +0000 - - Updated Thai translation. - - 2005-08-04 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 ++ - po/th.po | 138 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 83 insertions(+), 59 deletions(-) - -commit d0470b9820ece43d2db78733683bbb715da86a4a -Author: Ilkka Tuohela -Date: Thu Aug 4 03:49:00 2005 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 424 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 222 insertions(+), 206 deletions(-) - -commit 66c7e73bd6e5a19aca0bad40e1ff405176496f09 -Author: Christian Persch -Date: Wed Aug 3 20:57:03 2005 +0000 - - Fix string - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 98c2f091a837f36c61ec7889072f7034687a69bf -Author: Christian Persch -Date: Wed Aug 3 20:29:26 2005 +0000 - - Add public function ephy_window_get_context_event() to get the - - 2005-08-03 Christian Persch - - * src/ephy-window.c: (popup_menu_at_coords), - (idle_unref_context_event), (set_context_event), - (embed_popup_deactivate_cb), (get_name_from_address_value), - (show_embed_popup), (ephy_window_dispose), - (ephy_window_get_is_print_preview), - (ephy_window_get_context_event): - * src/ephy-window.h: - * src/epiphany.defs: - * src/popup-commands.c: (popup_cmd_link_in_new_window), - (popup_cmd_link_in_new_tab), (popup_cmd_bookmark_link), - (popup_cmd_copy_link_address), (save_property_url), - (popup_cmd_open_link), (popup_cmd_set_image_as_background), - (popup_cmd_copy_image_location), (popup_cmd_open_image): - - Add public function ephy_window_get_context_event() to get the - EphyEmbedEvent for the current popup menu, instead of using an - undocument g_object_get_data() call. Also fixes bug - #310910. - Don't printf NULL; fixes bug #309796. - - ChangeLog | 22 ++++++++++++ - src/ephy-window.c | 98 ++++++++++++++++++++++++++++++++++++++++++++-------- - src/ephy-window.h | 2 ++ - src/epiphany.defs | 13 ++++--- - src/popup-commands.c | 81 +++++++++++++++++++++---------------------- - 5 files changed, 152 insertions(+), 64 deletions(-) - -commit 5725b54c776891dfcb522a96a79a145191f470da -Author: Christian Persch -Date: Wed Aug 3 19:42:23 2005 +0000 - - Keep pixbufs in cache instead of loading them over and over again. - - 2005-08-03 Christian Persch - - * embed/ephy-favicon-cache.c: (pixbuf_cache_entry_free), - (icons_added_cb), (cleanup_entry), (periodic_cleanup_cb), - (ephy_favicon_cache_init), (ephy_favicon_cache_finalize), - (ephy_favicon_cache_get): - - Keep pixbufs in cache instead of loading them over and over again. - - ChangeLog | 9 +++ - embed/ephy-favicon-cache.c | 162 +++++++++++++++++++++++++++++++++++++++------ - 2 files changed, 149 insertions(+), 22 deletions(-) - -commit f642770fa5d2fbabb305fc817e4c6963cfc01d96 -Author: Christian Persch -Date: Wed Aug 3 15:53:37 2005 +0000 - - No need to add focus_width to borders anymore. Now we get the same height - - 2005-08-03 Christian Persch - - * lib/widgets/ephy-icon-entry.c: (ephy_icon_entry_get_borders): - - No need to add focus_width to borders anymore. Now we get the - same height as a normal entry. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-icon-entry.c | 6 ------ - 2 files changed, 7 insertions(+), 6 deletions(-) - -commit 11e7d40e8fa159a122e4c98b09cfb0cd4902f342 -Author: Christian Persch -Date: Wed Aug 3 15:47:28 2005 +0000 - - Use the entry's style's [xy]thickness, not our own. Fixes rendering with - - 2005-08-03 Christian Persch - - * lib/widgets/ephy-icon-entry.c: (ephy_icon_entry_get_borders), - (ephy_icon_entry_size_allocate): - - Use the entry's style's [xy]thickness, not our own. - Fixes rendering with current Clearlooks engine. - - ChangeLog | 8 ++++++ - lib/widgets/ephy-icon-entry.c | 58 ++++++++++++++++++++++++------------------- - 2 files changed, 41 insertions(+), 25 deletions(-) - -commit 6d802e0857acd15eeee35680d780957623375882 -Author: Christian Persch -Date: Wed Aug 3 13:33:01 2005 +0000 - - A lib/widgets/testiconentry.c: A lib/widgets/ephy-icon-entry.c: A - - 2005-08-03 Christian Persch - - * lib/widgets/Makefile.am: - A lib/widgets/testiconentry.c: - A lib/widgets/ephy-icon-entry.c: - A lib/widgets/ephy-icon-entry.h: - - New widget, looks like a GtkEntry with icons inside. - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_set_tooltip), (update_address_state), - (match_selected_cb), (entry_clear_activate_cb), - (entry_populate_popup_cb), - (ephy_location_entry_construct_contents), - (ephy_location_entry_set_completion), - (ephy_location_entry_set_location), - (ephy_location_entry_get_location), (ephy_location_entry_reset), - (ephy_location_entry_activate), (ephy_location_entry_get_entry), - (ephy_location_entry_set_show_lock): - - Use EphyIconEntry. Fixes location entry drawing with new GNOME default - theme (Clearlooks), and should also fix drawing with all themes, - except those which draw inside-focus on entries even when the entry - has no frame. - - ChangeLog | 25 +++ - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-icon-entry.c | 342 ++++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-icon-entry.h | 74 +++++++++ - lib/widgets/ephy-location-entry.c | 151 +++++++---------- - lib/widgets/testiconentry.c | 47 ++++++ - 6 files changed, 549 insertions(+), 92 deletions(-) - -commit fc20059deaca0d195c33fa58245602dbbae0c006 -Author: Kjartan Maraas -Date: Wed Aug 3 08:17:50 2005 +0000 - - Updated Norwegian bokmål translation. Same - - 2005-08-03 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same - - po/ChangeLog | 5 + - po/nb.po | 505 +++++++++++++++++++++++++++-------------------------------- - po/no.po | 505 +++++++++++++++++++++++++++-------------------------------- - 3 files changed, 475 insertions(+), 540 deletions(-) - -commit e6353fb3e922667b74a89d35c1eac9148dfe371e -Author: Christian Persch -Date: Tue Aug 2 15:12:04 2005 +0000 - - .cvsignore updates - - help/el/.cvsignore | 1 - - help/es/.cvsignore | 1 - - help/eu/.cvsignore | 1 - - help/fi/.cvsignore | 1 - - help/ja/.cvsignore | 1 - - help/nl/.cvsignore | 1 - - help/uk/.cvsignore | 1 - - 7 files changed, 7 deletions(-) - -commit 879c39e2d25a68ac5357f2d4e1a296159984dffd -Author: Theppitak Karoonboonyanan -Date: Tue Aug 2 13:17:01 2005 +0000 - - Updated Thai translation. - - 2005-08-02 Theppitak Karoonboonyanan - - * th.po: Updated Thai translation. - - po/ChangeLog | 4 + - po/th.po | 3920 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 2330 insertions(+), 1594 deletions(-) - -commit 81d0baa55e05dc1f42416ad95ac560d49be9e610 -Author: Priit Laes -Date: Tue Aug 2 10:56:10 2005 +0000 - - Translation updated. - - 2005-08-02 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 564 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 282 insertions(+), 286 deletions(-) - -commit d5c0aa573a34f005f740886d4455cafd7dde5e29 -Author: Crispin Flowerday -Date: Mon Aug 1 22:07:31 2005 +0000 - - Pipe the output of the pygtk_codegen program straight to epiphany.c to fix - - 2005-08-01 Crispin Flowerday - - * src/Makefile.am (epiphany.c): - - Pipe the output of the pygtk_codegen program straight to - epiphany.c to fix timestamp handling, which caused make to - run rules on every invocation. - - ChangeLog | 8 ++++++++ - src/Makefile.am | 4 +--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 27ae7de50c2573f2f38dbaa83c2b6b76e9f385c7 -Author: Adam Weinberger -Date: Mon Aug 1 19:42:34 2005 +0000 - - Updated Canadian English translation. - - - 2005-08-01 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 350 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 185 insertions(+), 169 deletions(-) - -commit efdde3ff63b9f0c3c3ff8c418c451be494360601 -Author: Christian Persch -Date: Mon Aug 1 19:28:53 2005 +0000 - - Now that the tab's address is always correct (isn't the typed address - - 2005-08-01 Christian Persch - - * src/ephy-location-action.c: (get_location_cb): - * src/ephy-session.c: (write_tab): - * src/ephy-tab.c: - * src/ephy-window.c: (modal_alert_cb): - * src/prefs-dialog.c: (set_homepage_entry), - (prefs_homepage_current_button_clicked_cb): - * src/window-commands.c: (window_cmd_file_send_to), - (window_cmd_file_bookmark_page), (window_cmd_view_page_source): - - Now that the tab's address is always correct (isn't the typed address - anymore), always use ephy_tab_get_address instead of - ephy_embed_get_location, since the former also gets the right address - when the page loading but still blank. Should fix bug #147840. - - ChangeLog | 16 ++++++++++++++++ - src/ephy-location-action.c | 10 ++++++---- - src/ephy-session.c | 9 +++------ - src/ephy-tab.c | 4 ++-- - src/ephy-window.c | 5 ++--- - src/prefs-dialog.c | 14 ++++++-------- - src/window-commands.c | 34 ++++++++++++++-------------------- - 7 files changed, 49 insertions(+), 43 deletions(-) - -commit dd0039f8b586bee1e77bddc23bc4c67107f3c14c -Author: Marcel Telka -Date: Mon Aug 1 19:07:19 2005 +0000 - - Updated Slovak translation. - - 2005-08-01 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 507 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 240 insertions(+), 271 deletions(-) - -commit 110be671322a06930c86f0ac68b4e898a4664913 -Author: Christian Persch -Date: Mon Aug 1 15:57:48 2005 +0000 - - Add a ::icon property to EphyTab, and use that everywhere instead of - - 2005-08-01 Christian Persch - - * src/ephy-location-action.c: (sync_icon), - (ephy_location_action_set_property), - (ephy_location_action_get_property), - (ephy_location_action_class_init), (ephy_location_action_init), - (ephy_location_action_finalize): - * src/ephy-notebook.c: (sync_icon): - * src/ephy-tab.c: (ephy_tab_set_property), (ephy_tab_get_property), - (ephy_tab_class_init), (ephy_tab_finalize), (ephy_tab_load_icon), - (ephy_tab_icon_cache_changed_cb), (ephy_tab_set_icon_address), - (ephy_tab_get_icon), (ephy_tab_init): - * src/ephy-tab.h: - * src/ephy-toolbar.c: (ephy_toolbar_set_favicon): - * src/ephy-toolbar.h: - * src/ephy-window.c: (sync_tab_icon): - - Add a ::icon property to EphyTab, and use that everywhere instead - of querying the icon cache, thus saving memory. - - ChangeLog | 20 ++++++++ - src/ephy-location-action.c | 86 +++++++++++++++----------------- - src/ephy-notebook.c | 31 +++--------- - src/ephy-tab.c | 121 ++++++++++++++++++++++++++++++++++++--------- - src/ephy-tab.h | 5 +- - src/ephy-toolbar.c | 2 +- - src/ephy-toolbar.h | 3 +- - src/ephy-window.c | 33 ++++--------- - 8 files changed, 183 insertions(+), 118 deletions(-) - -commit 97198c89b6c5d58264f2a53bae7b26420d183ea9 -Author: Sunil Mohan Adapa -Date: Mon Aug 1 14:22:02 2005 +0000 - - Added Telugu translation done by Prajasakti Localisation Team - - po/ChangeLog | 6 + - po/LINGUAS | 2 +- - po/te.po | 3828 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 3835 insertions(+), 1 deletion(-) - -commit 9dfc6a60e1397ed6923014f461d1134659476506 -Author: Rajesh Ranjan -Date: Mon Aug 1 13:00:11 2005 +0000 - - udted by rranjan@redhat.com - - po/hi.po | 290 +++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 134 insertions(+), 156 deletions(-) - -commit 498ccc350f7bed105e2aab2b2bd37a7a5884ba27 -Author: Vincent van Adrighem -Date: Mon Aug 1 08:25:12 2005 +0000 - - Translation updated. - - 2005-08-01 Vincent van Adrighem - - * nl.po: Translation updated. - - po/ChangeLog | 4 + - po/nl.po | 558 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 288 insertions(+), 274 deletions(-) - -commit c380d2e18c66cfdf2084047dafb222970c7b4cda -Author: Clytie Siddall -Date: Mon Aug 1 07:57:39 2005 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++++ - po/vi.po | 77 +++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 51 insertions(+), 30 deletions(-) - -commit dc69062c01ba2de4b64cbba8f834b71161a8a163 -Author: Ankitkumar Rameshchandra Patel -Date: Mon Aug 1 05:13:36 2005 +0000 - - Updated Gujarati Translations - - po/ChangeLog | 4 ++ - po/gu.po | 196 ++++++++++++++++++++++++----------------------------------- - 2 files changed, 85 insertions(+), 115 deletions(-) - -commit ba37738e50b613e9eaa1c9b3b2fb0eddfca172ae -Author: Adam Weinberger -Date: Mon Aug 1 02:12:11 2005 +0000 - - Updated Canadian English translation. - - - 2005-07-31 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 199 +++++++++++++++++++++++------------------------------------ - 2 files changed, 80 insertions(+), 123 deletions(-) - -commit 77793acfc8f7c4618f4eebf3e10591650632bd8a -Author: Funda Wang -Date: Sun Jul 31 22:44:30 2005 +0000 - - Updated Simplified Chinese translation - - po/zh_CN.po | 71 +++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 43 insertions(+), 28 deletions(-) - -commit 3df6cee4a2deee79101bfbbb046863b41bf94147 -Author: Christian Persch -Date: Sun Jul 31 21:19:57 2005 +0000 - - Don't need this list of files leftover by scrollkeeper anymore since we - - 2005-07-31 Christian Persch - - * Makefile.am: - - Don't need this list of files leftover by scrollkeeper anymore - since we distcheck with --disable-scrollkeepers. - - ChangeLog | 7 +++++++ - Makefile.am | 4 ---- - 2 files changed, 7 insertions(+), 4 deletions(-) - -commit b7385fb71c43feba8c2c248b93cf348d19beb693 -Author: Christian Persch -Date: Sun Jul 31 21:18:06 2005 +0000 - - Wrap EggToolbarsModel. - - 2005-07-31 Christian Persch - - * src/epiphany.defs: - - Wrap EggToolbarsModel. - - ChangeLog | 6 ++ - src/epiphany.defs | 175 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 175 insertions(+), 6 deletions(-) - -commit 2ea4373ddef2b3103fc26476b60c03087863fdb0 -Author: Christian Persch -Date: Sun Jul 31 21:03:12 2005 +0000 - - Wrap MozillaEmbedEvent, to prevent crash from bug #310910. - - 2005-07-31 Christian Persch - - * src/Makefile.am: - * src/epiphany.defs: - * src/epiphany.override: - - Wrap MozillaEmbedEvent, to prevent crash from bug #310910. - - ChangeLog | 8 ++++++++ - src/Makefile.am | 3 ++- - src/epiphany.defs | 7 +++++++ - src/epiphany.override | 3 +++ - 4 files changed, 20 insertions(+), 1 deletion(-) - -commit 6411ebbfb053582fdeffa718de1d03a300efa8c6 -Author: Christian Persch -Date: Sun Jul 31 20:53:31 2005 +0000 - - Remove obsolete function - - embed/ephy-embed-single.h | 2 -- - 1 file changed, 2 deletions(-) - -commit 887ee5e7cf976bc82b259a172ef501530877aea1 -Author: Christian Persch -Date: Sun Jul 31 20:47:54 2005 +0000 - - More bindings. - - 2005-07-31 Christian Persch - - * src/epiphany.defs: - - More bindings. - - ChangeLog | 6 ++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - src/epiphany.defs | 2 +- - 3 files changed, 9 insertions(+), 1 deletion(-) - -commit ad0af5305bec0e5cc565b5cdcffdae16d6b67c85 -Author: Nikos Charonitakis -Date: Sun Jul 31 20:45:57 2005 +0000 - - Updated Greek translation - - help/ChangeLog | 4 ++++ - help/el/el.po | 54 +++++++++++++++++++++++++++--------------------------- - 2 files changed, 31 insertions(+), 27 deletions(-) - -commit 6ba1393add9f7249e27110bdf73985eff697bcac -Author: Christian Persch -Date: Sun Jul 31 20:45:36 2005 +0000 - - More bindings. - - 2005-07-31 Christian Persch - - * src/epiphany.defs: - - More bindings. - - src/epiphany.defs | 41 ++++++++++++++++++++++++++++++++++++++++- - 1 file changed, 40 insertions(+), 1 deletion(-) - -commit df517a0a719352a7b005d27108f656b5bde110fd -Author: Christian Persch -Date: Sun Jul 31 20:37:28 2005 +0000 - - More bindings. - - 2005-07-31 Christian Persch - - * src/epiphany.defs: - - More bindings. - - src/epiphany.defs | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 1 file changed, 79 insertions(+), 2 deletions(-) - -commit 320433a4a3b9c3abc62d2be1ca5e4157da209875 -Author: Jean-François Rameau -Date: Sun Jul 31 20:35:26 2005 +0000 - - Fix gcc 4.0 warnings. - - 2005-07-31 Jean-François Rameau - - * src/epiphany.override: (_wrap_ephy_embed_event_get_coords): - * embed/ephy-history.c: - - Fix gcc 4.0 warnings. - - ChangeLog | 7 +++++++ - embed/ephy-history.c | 6 +++--- - src/epiphany.override | 4 ++-- - 3 files changed, 12 insertions(+), 5 deletions(-) - -commit 05f2e7c42a70cb0bcc1041eeeca0674bb966082d -Author: Christian Persch -Date: Sun Jul 31 20:30:38 2005 +0000 - - Update binding rules. - - 2005-07-31 Christian Persch - - * src/Makefile.am: - - Update binding rules. - - * src/epiphany.defs: - - Fix crash on "window.get_bookmarksbar()". - - ChangeLog | 10 ++++++++++ - src/Makefile.am | 29 ++++++++++++++++++----------- - src/epiphany.defs | 7 +++++++ - 3 files changed, 35 insertions(+), 11 deletions(-) - -commit ecbb52fc818c9d0487225f2f7e107c4be8992dd7 -Author: Christian Persch -Date: Sun Jul 31 20:26:44 2005 +0000 - - Fix crash on "window.get_toolbar()". Fixes bug #170105. - - 2005-07-31 Christian Persch - - * src/epiphany.defs: - * src/epiphany.override: - - Fix crash on "window.get_toolbar()". Fixes bug #170105. - - ChangeLog | 7 +++++++ - src/epiphany.defs | 14 ++++++++++++++ - src/epiphany.override | 24 ++++++++++++++++++++---- - 3 files changed, 41 insertions(+), 4 deletions(-) - -commit 07dad62a75b485dfce9dbfbc972a47e8f6304619 -Author: Christian Persch -Date: Sun Jul 31 20:08:56 2005 +0000 - - Update python bindings. - - 2005-07-31 Christian Persch - - * src/epiphany.defs: - - Update python bindings. - - ChangeLog | 6 + - src/epiphany.defs | 421 ++++++++++++++++++++++++++++++++++++++++-------------- - 2 files changed, 323 insertions(+), 104 deletions(-) - -commit 016ea2b71017c4f8cd53a564480419476e5f0d42 -Author: Christian Persch -Date: Sun Jul 31 19:00:53 2005 +0000 - - Fix string, and add Crispin to contributors in About. - - 2005-07-31 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Fix string, and add Crispin to contributors in About. - - ChangeLog | 6 ++++++ - src/window-commands.c | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 9b28d05c705e157ad0d3ba8bc8eefc3f15599182 -Author: Christian Persch -Date: Sun Jul 31 18:54:37 2005 +0000 - - Fix location entry favicon updating. - - 2005-07-31 Christian Persch - - * lib/widgets/ephy-location-entry.c: - - Fix location entry favicon updating. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 8b836906769d1b5a34256fc76de242f622a5cfbb -Author: Christian Persch -Date: Sun Jul 31 18:45:03 2005 +0000 - - Tiny string fix. Fixes bug #167448. - - 2005-07-31 Christian Persch - - * src/ephy-window.c: - - Tiny string fix. Fixes bug #167448. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b3f22851b58f0863697cfcc9d5da0291b6dbdb7f -Author: Christian Persch -Date: Sun Jul 31 18:43:14 2005 +0000 - - Update about dialogue. - - 2005-07-31 Christian Persch - - * src/ephy-main.c: (main): - * src/window-commands.c: (window_cmd_view_stop), - (window_cmd_help_about): - - Update about dialogue. - - ChangeLog | 8 ++++++++ - src/ephy-main.c | 13 +++++++++---- - src/window-commands.c | 41 +++++++++++++++++++++++++++-------------- - 3 files changed, 44 insertions(+), 18 deletions(-) - -commit 853959c41d3f118721f118ee3ec16e43bf98d529 -Author: Christian Persch -Date: Sun Jul 31 18:32:35 2005 +0000 - - Add ephy_embed_shell_get_default() analogous to ephy_shell_get_default(). - - 2005-07-31 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_default): - * embed/ephy-embed-shell.h: - - Add ephy_embed_shell_get_default() analogous to - ephy_shell_get_default(). - - ChangeLog | 8 ++++++++ - embed/ephy-embed-shell.c | 13 +++++++++++++ - embed/ephy-embed-shell.h | 2 ++ - 3 files changed, 23 insertions(+) - -commit 1aa3163b9c63dbf16e98f65ba1bba7a28d1ef194 -Author: Christian Persch -Date: Sun Jul 31 18:27:06 2005 +0000 - - Fallback to favicon.ico. Fixes bug #116678. - - 2005-07-31 Christian Persch - - * src/ephy-tab.c: (ephy_tab_set_icon_address), - (ephy_tab_set_fallback_icon_address), (ensure_page_info), - (ephy_tab_net_state_cb): - - Fallback to favicon.ico. Fixes bug #116678. - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 54 ++++++++++++++++++++++++++++++++++++++++++------------ - 2 files changed, 50 insertions(+), 12 deletions(-) - -commit 61d59c31fc965d667f51777e102189d81b3833ee -Author: Ilkka Tuohela -Date: Sun Jul 31 17:13:22 2005 +0000 - - Bulk change to fi.po: (gnome-fi.org to gnome.fi) - - po/ChangeLog | 5 +++++ - po/fi.po | 2 +- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 7511310b8ef7bf0afcbefe519893300c9c02403d -Author: Ilkka Tuohela -Date: Sun Jul 31 11:54:24 2005 +0000 - - Updated Finnish translation - - po/ChangeLog | 4 + - po/fi.po | 2244 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1220 insertions(+), 1028 deletions(-) - -commit dfacf63f282d23991862b0e8107cffbb92b2f865 -Author: Funda Wang -Date: Sun Jul 31 00:00:18 2005 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 ++ - po/zh_CN.po | 209 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 102 insertions(+), 111 deletions(-) - -commit 5af8327ff40e6475a50ba7f239254fcc4bd8dad9 -Author: Christian Persch -Date: Sat Jul 30 19:41:53 2005 +0000 - - Allow set-but-empty EPHY_DEBUG_BREAK variable. - - 2005-07-30 Christian Persch - - * lib/ephy-debug.c: (trap_handler): - - Allow set-but-empty EPHY_DEBUG_BREAK variable. - - ChangeLog | 6 ++++++ - lib/ephy-debug.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b8d8036da7543c57c03d0baf218691c74419ec0a -Author: Christian Persch -Date: Sat Jul 30 17:24:40 2005 +0000 - - Make those more robust. - - 2005-07-30 Christian Persch - - * embed/print-dialog.c: (ephy_print_load_config_from_file), - (ephy_print_save_config_to_file): - - Make those more robust. - - ChangeLog | 7 +++++++ - embed/print-dialog.c | 24 ++++++++++++------------ - 2 files changed, 19 insertions(+), 12 deletions(-) - -commit c5b7639e5ed72d29b9dea3779c4091c14d08d52b -Author: Christian Persch -Date: Sat Jul 30 17:21:34 2005 +0000 - - Fix printf format - - embed/mozilla/mozilla-embed.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 748538386d41c6a77cb6f2ed90afe120cf8f75d4 -Author: Christian Persch -Date: Sat Jul 30 13:17:06 2005 +0000 - - Count the blocked handlers and warn if it's not the expected numberr, so - - 2005-07-30 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: (mozilla_embed_realize): - - Count the blocked handlers and warn if it's not the expected numberr, - so we know if our focos fix assumptions become invalid. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed.cpp | 10 ++++++++-- - 2 files changed, 15 insertions(+), 2 deletions(-) - -commit fc8cf4f93bf59f7669c72e3ae6932edc1fe5fa5f -Author: Christian Persch -Date: Sat Jul 30 13:15:57 2005 +0000 - - ALlow EPHY_DEBUG_BREAK even in non-debug builds. - - 2005-07-30 Christian Persch - - * lib/ephy-debug.c: (trap_handler), (ephy_debug_init): - - ALlow EPHY_DEBUG_BREAK even in non-debug builds. - - ChangeLog | 6 ++++++ - lib/ephy-debug.c | 50 +++++++++++++++++++++++++++++++++----------------- - 2 files changed, 39 insertions(+), 17 deletions(-) - -commit 4f48f200cc0c3bd8515f09db9983828ffea499a2 -Author: Clytie Siddall -Date: Sat Jul 30 11:08:06 2005 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 442 ++++++++++++++++++++++++++--------------------------------- - 2 files changed, 199 insertions(+), 247 deletions(-) - -commit 21eef76952b403021a122cfb56d68e8957f9a423 -Author: Francisco Javier F. Serrador -Date: Fri Jul 29 23:32:20 2005 +0000 - - Updated Spanish translation. - - 2005-07-30 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 496 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 247 insertions(+), 253 deletions(-) - -commit 30b40b7cf052866fe7486abb6312430827ec8c29 -Author: Christian Persch -Date: Fri Jul 29 22:27:10 2005 +0000 - - Make ephy_session_get_active_window work as intended. - - 2005-07-30 Christian Persch - - * src/ephy-session.c: (ephy_session_get_active_window): - - Make ephy_session_get_active_window work as intended. - - * src/prefs-dialog.c: (prefs_homepage_current_button_clicked_cb): - - Fix setting homepage to current page. Fixes bug #311962. - - ChangeLog | 10 ++++++++++ - src/ephy-session.c | 10 +++++++--- - src/prefs-dialog.c | 12 ++++++++---- - 3 files changed, 25 insertions(+), 7 deletions(-) - -commit 2288a93ec9575af249f9c6aaa1667730d2c9950f -Author: Crispin Flowerday -Date: Fri Jul 29 20:40:38 2005 +0000 - - Replace ephy_embed_activate with gtk_widget_grab_focus - - 2005-07-29 Crispin Flowerday - - * src/ephy-find-toolbar.c: (ephy_find_toolbar_grab_focus), - (ephy_find_toolbar_open), (ephy_find_toolbar_close): - * src/ephy-shell.c: (ephy_shell_new_tab_full): - * src/ephy-tab.c: (ephy_tab_grab_focus): - * src/ephy-window.c: (ephy_window_key_press_event), - (ephy_window_open_link): - * src/window-commands.c: (window_cmd_go_back), (window_cmd_go_up), - (window_cmd_go_forward), (window_cmd_view_stop), - (window_cmd_view_reload): - - Replace ephy_embed_activate with gtk_widget_grab_focus - - ChangeLog | 14 ++++++++++++++ - src/ephy-find-toolbar.c | 6 +++--- - src/ephy-shell.c | 2 +- - src/ephy-tab.c | 2 +- - src/ephy-window.c | 4 ++-- - src/window-commands.c | 10 +++++----- - 6 files changed, 26 insertions(+), 12 deletions(-) - -commit e2cbc7c8a624845a93289945243348762c1b2893 -Author: Christian Persch -Date: Fri Jul 29 20:24:23 2005 +0000 - - Add accessor functions for those instead of relying on using the struct - - 2005-07-29 Christian Persch - - * src/ephy-statusbar.c: (ephy_statusbar_get_tooltips), - (ephy_statusbar_get_security_frame): - * src/ephy-statusbar.h: - - Add accessor functions for those instead of relying - on using the struct members directly. - - ChangeLog | 9 +++++++++ - src/ephy-statusbar.c | 29 +++++++++++++++++++++++++++++ - src/ephy-statusbar.h | 4 ++++ - 3 files changed, 42 insertions(+) - -commit 0a2e055b95b09abf340f5a011ec01af55b401b13 -Author: Christian Persch -Date: Fri Jul 29 20:17:44 2005 +0000 - - Remove long description where it differed from the short description only - - 2005-07-29 Christian Persch - - * data/epiphany.schemas.in: - - Remove long description where it differed from the short - description only by the period. Fixes bug #172230. - - ChangeLog | 7 +++++++ - data/epiphany.schemas.in | 11 ----------- - 2 files changed, 7 insertions(+), 11 deletions(-) - -commit 0c58ea4261dfb33bb669b5b9c9bf8ee625605081 -Author: Christian Persch -Date: Fri Jul 29 20:13:37 2005 +0000 - - Update the python bindings too. - - 2005-07-29 Christian Persch - - * src/epiphany.defs: - - Update the python bindings too. - - ChangeLog | 6 ++++++ - src/epiphany.defs | 6 ------ - 2 files changed, 6 insertions(+), 6 deletions(-) - -commit db1f5a7b30564f89cf1fdbb3cd6a8fae68a9bfd0 -Author: Christian Persch -Date: Fri Jul 29 20:12:55 2005 +0000 - - Implement ::grab-focus and remove ephy_embed_activate (). - - 2005-07-29 Christian Persch - - * embed/ephy-embed.c: - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - - Implement ::grab-focus and remove ephy_embed_activate (). - - ChangeLog | 8 ++++++++ - embed/ephy-embed.c | 13 ------------- - embed/ephy-embed.h | 3 --- - embed/mozilla/mozilla-embed.cpp | 17 ++++++++++++++--- - 4 files changed, 22 insertions(+), 19 deletions(-) - -commit 941de06806cb6c145ac2b522ad276add5bdbb2fd -Author: Christian Persch -Date: Fri Jul 29 20:05:05 2005 +0000 - - Realise the embed first before grabbing focus on it. - - 2005-07-29 Christian Persch - - * src/ephy-shell.c: (ephy_shell_new_tab_full): - - Realise the embed first before grabbing focus on it. - - ChangeLog | 6 ++++++ - src/ephy-shell.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 2ec6bec12610fd0cfed6bc2612c3a9c23815df62 -Author: Christian Persch -Date: Fri Jul 29 19:53:46 2005 +0000 - - Be careful not to leave a GC scheduled when terminating python. - - 2005-07-29 Christian Persch - - * src/ephy-python-extension.c: (impl_detach_tab), - (impl_detach_window): - * src/ephy-python-loader.c: (ephy_python_loader_finalize): - * src/ephy-python.c: (ephy_python_init), (idle_shutdown), - (ephy_python_shutdown), (idle_gc), (ephy_python_schedule_gc): - * src/ephy-python.h: - - Be careful not to leave a GC scheduled when terminating python. - - ChangeLog | 11 +++++++ - src/ephy-python-extension.c | 5 ++-- - src/ephy-python-loader.c | 2 ++ - src/ephy-python.c | 73 +++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-python.h | 6 +++- - 5 files changed, 94 insertions(+), 3 deletions(-) - -commit 04e7795daadca2b11162a791eb0734163da5acdc -Author: Adam Weinberger -Date: Fri Jul 29 04:03:39 2005 +0000 - - Updated Canadian English translation. - - - 2005-07-29 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 305 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 155 insertions(+), 154 deletions(-) - -commit 6e5a07e9cc6c1d03cd3fa9c041d41f7667d6c2ab -Author: Marcel Telka -Date: Thu Jul 28 19:42:48 2005 +0000 - - Updated Slovak translation. - - 2005-07-28 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 312 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 162 insertions(+), 154 deletions(-) - -commit 72a0f99a0f2cec1d8124be41ed63bde78d75e2b2 -Author: Priit Laes -Date: Thu Jul 28 19:27:36 2005 +0000 - - Translation updated. - - 2005-07-28 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 1135 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 496 insertions(+), 643 deletions(-) - -commit 2b54a34f34fb42a184770b777b9a32c63ff036bb -Author: Christian Persch -Date: Thu Jul 28 19:25:27 2005 +0000 - - For empty pages, put focus in address bar. - - 2005-07-28 Christian Persch - - * src/ephy-window.c: (ephy_window_open_link): - - For empty pages, put focus in address bar. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 10 +++++++++- - 2 files changed, 15 insertions(+), 1 deletion(-) - -commit 90586b820dea7fdb2588b24939ae72514f87c73d -Author: Christian Persch -Date: Thu Jul 28 17:52:51 2005 +0000 - - Work around gtkmozembed focus bug. Fixes bug #105153. - - 2005-07-28 Christian Persch - - * configure.ac: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-shell.c: (url_is_empty), (load_homepage), - (ephy_shell_new_tab_full): - - Work around gtkmozembed focus bug. Fixes bug #105153. - - ChangeLog | 11 ++++++ - configure.ac | 4 +++ - embed/mozilla/EphyBrowser.cpp | 27 ++++++++++++--- - embed/mozilla/EphyBrowser.h | 7 ++++ - embed/mozilla/mozilla-embed.cpp | 77 +++++++++++++++++++++++++++++++++++++++-- - src/ephy-shell.c | 45 ++++++++++++++++++++++-- - 6 files changed, 161 insertions(+), 10 deletions(-) - -commit a6467707fdbf7e67dbea0ba685dd0ba5c0ffbfdb -Author: Christian Persch -Date: Thu Jul 28 14:28:57 2005 +0000 - - Shut up - - help/el/.cvsignore | 3 +++ - 1 file changed, 3 insertions(+) - -commit 26f236107aa1e3ebe735055951eb9304c24ddb04 -Author: Nikos Charonitakis -Date: Thu Jul 28 14:02:47 2005 +0000 - - add: el el/el.po el/figures Makefile.am + el - - help/ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit f908a09ed20df1473001b30af8a32c669af37b47 -Author: Nikos Charonitakis -Date: Thu Jul 28 14:00:55 2005 +0000 - - add el - - help/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9c5b894985e33ade76ba50a9c61dd6190c12a46c -Author: Nikos Charonitakis -Date: Thu Jul 28 13:55:31 2005 +0000 - - Init Greek translation - - help/el/el.po | 1804 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 1804 insertions(+) - -commit f1e1e9fb0028939493e8fd290d4f6f9b24da9acb -Author: Nikos Charonitakis -Date: Thu Jul 28 13:30:56 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 1158 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 662 insertions(+), 500 deletions(-) - -commit 3e45b17edaf0b275ef16f7876f7ff20e52809ecc -Author: Laurent Dhima -Date: Thu Jul 28 11:04:57 2005 +0000 - - Updated Albanian translation. - - 2005-07-28 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 2366 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1132 insertions(+), 1238 deletions(-) - -commit 411735ce3f81af7363a89d1f46c4f92bb5d72271 -Author: Ivan Stojmirov -Date: Thu Jul 28 09:28:58 2005 +0000 - - done - - po/mk.po | 795 ++++++++++++++++++++++++++++----------------------------------- - 1 file changed, 348 insertions(+), 447 deletions(-) - -commit 46be72502de1e89cf05d8ee1efd494222180c80a -Author: Artur Flinta -Date: Thu Jul 28 09:20:02 2005 +0000 - - Updated Polish translation by GNOME PL Team. - - 2005-07-28 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++++ - po/pl.po | 65 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 39 insertions(+), 30 deletions(-) - -commit 6a9fb1374ad5a7d474e4079a627d8b3fc4f0a8c1 -Author: Alexander Shopov -Date: Thu Jul 28 08:02:06 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-07-28 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 517 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 264 insertions(+), 258 deletions(-) - -commit 3e42d194aa7d76ccd7559bfcab1603567fdba565 -Author: Takeshi AIHANA -Date: Thu Jul 28 07:22:13 2005 +0000 - - Updated Japanese translation for v1.7.3. - - 2005-07-28 Takeshi AIHANA - - * ja.po: Updated Japanese translation for v1.7.3. - - po/ChangeLog | 4 + - po/ja.po | 950 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 506 insertions(+), 448 deletions(-) - -commit 0daed82fe8b87e12334b00d00c358e05baec8205 -Author: Ankitkumar Rameshchandra Patel -Date: Thu Jul 28 06:41:32 2005 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 317 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 163 insertions(+), 158 deletions(-) - -commit 874990afbeb83a31acb1c2a257e6c638a65d26ea -Author: Terance Sola -Date: Thu Jul 28 01:28:30 2005 +0000 - - Updated Norwegian Bokmål translation. Same. - - 2005-07-28 Terance Sola - - * nb.po: Updated Norwegian Bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 + - po/nb.po | 443 +++++++++++++++++++++++------------------------------------ - po/no.po | 443 +++++++++++++++++++++++------------------------------------ - 3 files changed, 343 insertions(+), 548 deletions(-) - -commit df15bdb359c0e3fdbb61991fd119be22de8436ef -Author: Christian Persch -Date: Wed Jul 27 22:16:53 2005 +0000 - - Fix proxy server settings string. - - 2005-07-27 Christian Persch - - * embed/mozilla/EphyAboutModule.cpp: - - Fix proxy server settings string. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutModule.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e44dd0b41b883afddce74a2f12d7528f48558794 -Author: Artur Flinta -Date: Wed Jul 27 22:06:44 2005 +0000 - - Updated Polish translation by GNOME PL Team. - - 2005-07-28 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 1974 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1093 insertions(+), 885 deletions(-) - -commit d8048baad15754f4bc910de973f5d70fdb7766f7 -Author: Christian Persch -Date: Wed Jul 27 22:04:15 2005 +0000 - - Fix google search URL to include www prefix. - - 2005-07-27 Christian Persch - - * embed/mozilla/EphyAboutModule.cpp: - - Fix google search URL to include www prefix. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutModule.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e97efd0c176fa04f33b77e26d6314a85285c7527 -Author: Christian Persch -Date: Wed Jul 27 21:56:38 2005 +0000 - - Don't put the archive links on the unknownSocketType error message. - - 2005-07-27 Christian Persch - - * embed/mozilla/EphyAboutModule.cpp: - - Don't put the archive links on the unknownSocketType error message. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutModule.cpp | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 19d027fd26bd2c876561e44762a247d0d01e88fd -Author: Ivan Stojmirov -Date: Wed Jul 27 20:54:49 2005 +0000 - - done - - po/mk.po | 134 +++++++++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 92 insertions(+), 42 deletions(-) - -commit 2af1ac8dec7c209add89fd1a6f901ad78cae5eb7 -Author: Christian Persch -Date: Wed Jul 27 19:12:13 2005 +0000 - - Only show the leaf name on bookmarksbar for hierarchical topics. - - 2005-07-27 Christian Persch - - * src/bookmarks/ephy-topic-action.c: - (ephy_topic_action_sync_label): - - Only show the leaf name on bookmarksbar for hierarchical topics. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-topic-action.c | 11 +++++++++-- - 2 files changed, 16 insertions(+), 2 deletions(-) - -commit bc1e77c57769572ab4953214b40e4d5e6e9c64cd -Author: Funda Wang -Date: Wed Jul 27 16:18:36 2005 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 + - po/zh_CN.po | 721 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 363 insertions(+), 362 deletions(-) - -commit 34e3fc67c07589152b34e33e78d277fd8bcde197 -Author: Rajesh Ranjan -Date: Wed Jul 27 12:46:33 2005 +0000 - - updated by rranjan@redhat.com - - po/hi.po | 3296 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1793 insertions(+), 1503 deletions(-) - -commit 23446cb5cf5bd91254c6eb62728012c7c2f53904 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Jul 27 05:46:03 2005 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 428 +++++++++++++++++++++-------------------------------------- - 2 files changed, 158 insertions(+), 274 deletions(-) - -commit ece2ebac73896311bf4efe4ad53d6232e3476de3 -Author: Christian Persch -Date: Tue Jul 26 21:13:28 2005 +0000 - - Post-release version bump. - - 2005-07-26 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 7978776e437484cbf1e872cad0d1e59d12bd9266 -Author: Christian Persch -Date: Tue Jul 26 21:12:38 2005 +0000 - - === Release 1.7.3 === - - 2005-07-26 Christian Persch - - === Release 1.7.3 === - - * NEWS: - - ChangeLog | 6 +++++ - NEWS | 48 ++++++++++++++++++++++++++++++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 3 files changed, 56 insertions(+) - -commit 2137a058e58e6e89a87cd228fefe3618253c5686 -Author: Christian Persch -Date: Tue Jul 26 17:42:37 2005 +0000 - - Primary text shouldn't have a period. - - 2005-07-26 Christian Persch - - * embed/print-dialog.c: (ephy_print_verify_postscript): - - Primary text shouldn't have a period. - - ChangeLog | 6 ++++++ - embed/print-dialog.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit fc69f229f306940d351fd20606fe6a77104ef48d -Author: Christian Persch -Date: Tue Jul 26 17:41:04 2005 +0000 - - Unify bookmarks/smart bookmarks address resolution, and add a signal to - - 2005-07-26 Christian Persch - - * lib/ephy-marshal.list: - * src/bookmarks/ephy-bookmark-action.c: (open_in_tab_activate_cb), - (open_in_window_activate_cb), (activate_cb): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_class_init), - (impl_resolve_address), (ephy_bookmarks_resolve_address): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-topic-action.c: (menu_activate_cb), - (open_in_tabs_activate_cb): - * src/ephy-location-action.c: (action_activated_cb), - (entry_activate_cb): - * src/epiphany.defs: - - Unify bookmarks/smart bookmarks address resolution, and add a signal - to EphyBookmarks for it. - - ChangeLog | 17 +++++++ - lib/ephy-marshal.list | 1 + - src/bookmarks/ephy-bookmark-action.c | 90 ++++++++++++++++++------------------ - src/bookmarks/ephy-bookmarks.c | 52 +++++++++++++++++---- - src/bookmarks/ephy-bookmarks.h | 9 ++-- - src/bookmarks/ephy-topic-action.c | 24 ++++++++-- - src/ephy-location-action.c | 17 +++++-- - src/epiphany.defs | 8 ++-- - 8 files changed, 150 insertions(+), 68 deletions(-) - -commit 185ea56fa4d1b5626ff1418a90d979f3cc15b108 -Author: Christian Persch -Date: Tue Jul 26 15:58:45 2005 +0000 - - Use connect_object to connect to the menu's deactivate signal. May fix bug - - 2005-07-26 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (button_toggled_cb): - - Use connect_object to connect to the menu's deactivate - signal. May fix bug #309918. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-topic-action.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 8d4fdd9a0f51f292db61ecfbdfc7d1b617adaf7a -Author: Christian Persch -Date: Tue Jul 26 14:41:39 2005 +0000 - - Fix ESC behaviour to always stop, and to reset the location entry when - - 2005-07-24 Christian Persch - - * data/ui/epiphany-ui.xml: - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_finalize), (update_address_state), - (update_favicon), (editable_changed_cb), (entry_button_press_cb), - (match_selected_cb), (entry_key_press_cb), - (ephy_location_entry_construct_contents), - (ephy_location_entry_set_location), (ephy_location_entry_reset), - (ephy_location_entry_set_favicon): - * lib/widgets/ephy-location-entry.h: - * src/ephy-location-action.c: (entry_activate_cb), - (user_changed_cb), (sync_address), (connect_proxy), - (ephy_location_action_set_property), - (ephy_location_action_finalize), - (ephy_location_action_set_address): - * src/ephy-location-action.h: - * src/ephy-lockdown.c: (update_location_editable): - * src/ephy-tab.c: (ephy_tab_get_typed_address): - * src/ephy-toolbar.c: (ephy_toolbar_set_location): - * src/ephy-toolbar.h: - * src/ephy-window.c: (ephy_window_key_press_event), - (sync_tab_address), (ephy_window_set_active_tab), (modal_alert_cb): - * src/epiphany.defs: - * src/window-commands.c: (window_cmd_view_stop): - - Fix ESC behaviour to always stop, and to reset the location entry - when it's focused only. Reset the location entry favicon to the stock - icon when the address shown is != the tab's address. - When switching tab, preserve the selection if it was owned by the - location entry. Fixes bug #155824. - - ChangeLog | 32 +++++++ - data/ui/epiphany-ui.xml | 1 + - lib/widgets/ephy-location-entry.c | 186 ++++++++++++++++++++++++++++++-------- - lib/widgets/ephy-location-entry.h | 13 +-- - src/ephy-location-action.c | 58 +++++++++--- - src/ephy-location-action.h | 3 +- - src/ephy-lockdown.c | 2 +- - src/ephy-tab.c | 12 +-- - src/ephy-toolbar.c | 7 +- - src/ephy-toolbar.h | 4 +- - src/ephy-window.c | 44 +++++++-- - 11 files changed, 280 insertions(+), 82 deletions(-) - -commit d893c0a52260d98b475bafada38273643342d2ee -Author: Clytie Siddall -Date: Tue Jul 26 07:44:54 2005 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 ++ - po/vi.po | 144 ++++++++--------------------------------------------------- - 2 files changed, 23 insertions(+), 125 deletions(-) - -commit e3e0d40c3f36280990f84b1edbefa15a67b61e18 -Author: Adam Weinberger -Date: Tue Jul 26 07:43:29 2005 +0000 - - Updated Canadian English translation. - - - 2005-07-26 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 399 +++++++++++++++++++++-------------------------------------- - 2 files changed, 147 insertions(+), 256 deletions(-) - -commit 3fab1f5b4045fa3a968f9c406c518cff5af30589 -Author: Vincent van Adrighem -Date: Tue Jul 26 06:48:15 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-07-26 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 714 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 362 insertions(+), 356 deletions(-) - -commit 48a24ad3d044c0a5d9d31eca2347a0eca15b258b -Author: Marcel Telka -Date: Tue Jul 26 04:32:23 2005 +0000 - - Updated Slovak translation. - - 2005-07-26 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++++ - po/sk.po | 24 ++++++++++++++---------- - 2 files changed, 18 insertions(+), 10 deletions(-) - -commit f01ae4b51169460be1bdb8139ce60a56fb9269eb -Author: Martin Kretzschmar -Date: Mon Jul 25 20:26:40 2005 +0000 - - (using_pdf_printer): new function. - (ephy_print_verify_postscript): print a less techy message if - someone tries to print to PDF. - - ChangeLog | 6 ++++++ - embed/print-dialog.c | 49 +++++++++++++++++++++++++++++++++++++++---------- - 2 files changed, 45 insertions(+), 10 deletions(-) - -commit c9b3fac5e7c55ac5295fa0a991b8d5bff33953af -Author: Alexander Shopov -Date: Mon Jul 25 15:06:44 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-07-25 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 9 +- - po/bg.po | 1139 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 505 insertions(+), 643 deletions(-) - -commit f8745a6d908288280d5a127027b37b93ec80f764 -Author: Christian Persch -Date: Mon Jul 25 12:56:20 2005 +0000 - - Don't crash in case the desktop file is not found. - - 2005-07-25 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_launch_desktop_file): - - Don't crash in case the desktop file is not found. - - ChangeLog | 6 ++++++ - lib/ephy-file-helpers.c | 1 + - 2 files changed, 7 insertions(+) - -commit c7d38517d0a4d4798d280bc5e88e55af1a90e793 -Author: Christian Persch -Date: Mon Jul 25 08:34:39 2005 +0000 - - Shut up - - m4/.cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit 37870c3f92366d8649c83bc4792d9df9a34a3aee -Author: Clytie Siddall -Date: Mon Jul 25 08:04:24 2005 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 507 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 254 insertions(+), 257 deletions(-) - -commit a3a0896b1f97003b3fbd80d62a87eb1050ebe802 -Author: Marcel Telka -Date: Mon Jul 25 04:33:35 2005 +0000 - - Updated Slovak translation. - - 2005-07-25 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 490 ++++++++++++++++++++++------------------------------------- - 2 files changed, 188 insertions(+), 306 deletions(-) - -commit bae44c7a423e904c9c4f71a82d02be65fe2352eb -Author: Christian Persch -Date: Sun Jul 24 22:01:44 2005 +0000 - - Update python binding - - src/epiphany.defs | 6 ------ - 1 file changed, 6 deletions(-) - -commit ae57c2b4273588704f9065b1cd0d445a8cd4a48f -Author: Christian Persch -Date: Sun Jul 24 21:37:01 2005 +0000 - - Remove code to get the printer list, and fix a compile warning. - - 2005-07-24 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_open_window): - * embed/ephy-embed-single.h: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/MozillaPrivate.h: - * embed/mozilla/mozilla-embed-single.cpp: - - Remove code to get the printer list, and fix a - compile warning. - - ChangeLog | 12 +++++++++ - embed/ephy-embed-single.c | 7 ------ - embed/ephy-embed-single.h | 1 - - embed/mozilla/EphyUtils.cpp | 2 ++ - embed/mozilla/MozillaPrivate.cpp | 45 +--------------------------------- - embed/mozilla/MozillaPrivate.h | 1 - - embed/mozilla/mozilla-embed-single.cpp | 7 ------ - 7 files changed, 15 insertions(+), 60 deletions(-) - -commit dadad030dc244a53b6e275cb5b022ed676eaf51c -Author: Christian Persch -Date: Sun Jul 24 21:32:48 2005 +0000 - - Also ellipsise the menu entries in the toolbar overflow menu. - - 2005-07-24 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (connect_proxy): - * src/bookmarks/ephy-topic-action.c: (append_bookmarks_menu), - (connect_proxy): - - Also ellipsise the menu entries in the toolbar overflow menu. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmark-action.c | 5 +++++ - src/bookmarks/ephy-topic-action.c | 14 +++++++++++++- - 3 files changed, 26 insertions(+), 1 deletion(-) - -commit 55d7c7356ea035cb11163b4994e8fec77a77a844 -Author: Christian Persch -Date: Sun Jul 24 21:31:34 2005 +0000 - - Doc templates - - doc/reference/tmpl/EphyContentPolicy.sgml | 3 +++ - doc/reference/tmpl/EphySingle.sgml | 3 +++ - doc/reference/tmpl/ephy-command-manager.sgml | 3 +++ - doc/reference/tmpl/ephy-cookie-manager.sgml | 3 +++ - doc/reference/tmpl/ephy-embed-factory.sgml | 3 +++ - doc/reference/tmpl/ephy-embed-persist.sgml | 3 +++ - doc/reference/tmpl/ephy-embed-single.sgml | 3 +++ - doc/reference/tmpl/ephy-embed.sgml | 5 +++++ - doc/reference/tmpl/ephy-extensions-manager.sgml | 3 +++ - doc/reference/tmpl/ephy-glade.sgml | 3 +++ - doc/reference/tmpl/ephy-node-db.sgml | 3 +++ - doc/reference/tmpl/ephy-password-manager.sgml | 3 +++ - doc/reference/tmpl/ephy-permission-manager.sgml | 3 +++ - doc/reference/tmpl/ephy-session.sgml | 3 +++ - doc/reference/tmpl/ephy-shell.sgml | 3 +++ - doc/reference/tmpl/ephy-tab.sgml | 17 ++++++++--------- - doc/reference/tmpl/ephy-window.sgml | 3 +++ - doc/reference/tmpl/epiphany-unused.sgml | 8 ++++++++ - 18 files changed, 66 insertions(+), 9 deletions(-) - -commit 24334c208fb6e02690273d5548c60d3e923ea71f -Author: Francisco Javier F. Serrador -Date: Sun Jul 24 16:35:02 2005 +0000 - - Updated spanish translation. - - 2005-07-24 Francisco Javier F. Serrador - - * es.po: Updated spanish translation. - - po/ChangeLog | 4 + - po/es.po | 486 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 245 insertions(+), 245 deletions(-) - -commit b55612c317551e6df998a4d3919c644085a57456 -Author: Kjartan Maraas -Date: Sun Jul 24 15:15:11 2005 +0000 - - Updated Norwegian bokmål translation. Same - - 2005-07-24 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - * no.po: Same - - po/ChangeLog | 5 + - po/nb.po | 484 +++++++++++++++++++++++++++++------------------------------ - po/no.po | 484 +++++++++++++++++++++++++++++------------------------------ - 3 files changed, 483 insertions(+), 490 deletions(-) - -commit 09e4bbc21378e8449dc3cabcbc4aecb618394912 -Author: Christian Persch -Date: Sun Jul 24 12:28:18 2005 +0000 - - Add translator comment - - src/ephy-tab.c | 1 + - 1 file changed, 1 insertion(+) - -commit 952a36768edd6b95d65174c7d797e114cda54372 -Author: Christian Persch -Date: Sun Jul 24 12:26:23 2005 +0000 - - Set title of loading page to the address, iff the page was blank before. - - 2005-07-24 Christian Persch - - * src/ephy-lockdown.c: (update_location_editable): - * src/ephy-shell.c: (ephy_shell_new_tab_full): - * src/ephy-tab.c: (ephy_tab_set_property), (ephy_tab_get_property), - (ephy_tab_class_init), (get_title_from_address), - (ephy_tab_set_loading_title), (ephy_tab_set_address), - (ephy_tab_set_load_status), (ephy_tab_get_load_status), - (ephy_tab_open_uri_cb), (ephy_tab_address_cb), - (ephy_tab_content_change_cb), (ephy_tab_zoom_changed_cb), - (ephy_tab_title_cb), (ensure_page_info), (ephy_tab_net_state_cb), - (ephy_tab_init), (ephy_tab_set_title), (ephy_tab_get_title), - (ephy_tab_get_address), (ephy_tab_get_typed_address), - (ephy_tab_set_typed_address): - * src/ephy-tab.h: - * src/ephy-toolbar.c: (sync_user_input_cb): - * src/ephy-window.c: (sync_tab_typed_address), (sync_tab_title), - (ephy_window_set_active_tab): - * src/epiphany.defs: - - Set title of loading page to the address, iff the page was blank - before. Fixes bug #115337 and bug #171622. - - * src/ephy-session.c: (ephy_session_close): - - In ephy_session_close(), close open dialogues first. - - ChangeLog | 27 ++++ - src/ephy-lockdown.c | 2 +- - src/ephy-session.c | 15 ++- - src/ephy-shell.c | 1 - - src/ephy-tab.c | 377 ++++++++++++++++++++++++++++++++++++++-------------- - src/ephy-tab.h | 16 +-- - src/ephy-toolbar.c | 2 +- - src/ephy-window.c | 37 ++---- - src/epiphany.defs | 28 ++-- - 9 files changed, 345 insertions(+), 160 deletions(-) - -commit 433e0afbdb0dc0ee9e109c1a76a64793b1fcf2be -Author: Christian Persch -Date: Sun Jul 24 12:19:42 2005 +0000 - - *** empty log message *** - - ChangeLog | 9 +++++++++ - embed/mozilla/ContentHandler.cpp | 2 +- - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 2 +- - src/bookmarks/ephy-bookmarks.c | 2 +- - 4 files changed, 12 insertions(+), 3 deletions(-) - -commit abcfd912b81a2c9976a3b9f568dc0b97fdaaeec2 -Author: Christian Persch -Date: Sun Jul 24 11:31:32 2005 +0000 - - Remove obsolete schema entries. - - 2005-07-23 Christian Persch - - * data/epiphany.schemas.in: - - Remove obsolete schema entries. - - ChangeLog | 6 ++++ - data/epiphany.schemas.in | 77 ------------------------------------------------ - 2 files changed, 6 insertions(+), 77 deletions(-) - -commit 9966c6f7ecd8ab9ac5bad4efd4a018bbd052a12d -Author: Christian Persch -Date: Sat Jul 23 22:09:36 2005 +0000 - - Shut up - - help/.cvsignore | 1 + - help/es/.cvsignore | 2 -- - help/eu/.cvsignore | 2 -- - help/fi/.cvsignore | 2 -- - help/ja/.cvsignore | 2 -- - help/nl/.cvsignore | 2 -- - help/uk/.cvsignore | 2 -- - 7 files changed, 1 insertion(+), 12 deletions(-) - -commit 0fcfa4d1d3f82750b53789b38fd1c7e40ca999d3 -Author: Christian Persch -Date: Sat Jul 23 21:37:43 2005 +0000 - - More .cvsignore - - help/es/.cvsignore | 1 + - help/eu/.cvsignore | 1 + - help/fi/.cvsignore | 1 + - help/ja/.cvsignore | 1 + - help/nl/.cvsignore | 1 + - help/uk/.cvsignore | 1 + - 6 files changed, 6 insertions(+) - -commit 057680fd0b25cc7bf90598f50bd2088ca4aa87ac -Author: Jürg Billeter -Date: Sat Jul 23 21:31:19 2005 +0000 - - Use libgnomeprintui for the printing dialog and the paper part of the - - 2005-07-22 Jürg Billeter - - * configure.ac: - * data/glade/print.glade: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/PrintingPromptService.h: - * embed/print-dialog.c: (ephy_print_info_free), - (ephy_print_load_config_from_file), - (ephy_print_save_config_to_file), (ephy_print_get_print_info), - (ephy_print_dialog_response_cb), (ephy_print_do_print_idle_cb), - (ephy_print_do_print_and_free), (ephy_print_paper_selector_new), - (ephy_print_dialog_construct_range_page), (ephy_print_dialog_new), - (ephy_print_setup_dialog_new): - * embed/print-dialog.h: - - Use libgnomeprintui for the printing dialog and the paper part of the - printing setup dialog. Fixes bug #141241, bug #163255 and bug #301730. - - ChangeLog | 20 + - configure.ac | 8 +- - data/glade/print.glade | 1273 +++---------------------------- - embed/mozilla/EphyUtils.cpp | 140 +++- - embed/mozilla/EphyUtils.h | 2 +- - embed/mozilla/PrintingPromptService.cpp | 128 +++- - embed/mozilla/PrintingPromptService.h | 8 +- - embed/print-dialog.c | 511 +++++++------ - embed/print-dialog.h | 31 +- - 9 files changed, 652 insertions(+), 1469 deletions(-) - -commit 7c8cd0db552da2366754cd7616e3ae9baec3b33a -Author: Christian Persch -Date: Sat Jul 23 21:27:16 2005 +0000 - - Updated .cvsignore files for gnome-doc-utils. - - 2005-07-23 Christian Persch - - * C/.cvsignore: - * es/.cvsignore: - * eu/.cvsignore: - * fi/.cvsignore: - * ja/.cvsignore: - * nl/.cvsignore: - * uk/.cvsignore: - - Updated .cvsignore files for gnome-doc-utils. - - help/C/.cvsignore | 5 +---- - help/es/.cvsignore | 8 ++++---- - help/eu/.cvsignore | 8 ++++---- - help/fi/.cvsignore | 8 ++++---- - help/ja/.cvsignore | 8 ++++---- - help/nl/.cvsignore | 8 ++++---- - help/uk/.cvsignore | 8 ++++---- - 7 files changed, 25 insertions(+), 28 deletions(-) - -commit 25126b2c0584cf6a5a165eed1dd99292d49996a3 -Author: Priit Laes -Date: Fri Jul 22 21:19:01 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-07-23 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 342 +++++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 257 insertions(+), 89 deletions(-) - -commit e94b5457007ed6a050fd41c18a7aafa0b30c29f2 -Author: Clytie Siddall -Date: Fri Jul 22 06:46:37 2005 +0000 - - vi.po: Updated Vietnamese translation. - - po/ChangeLog | 4 + - po/vi.po | 806 +++-------------------------------------------------------- - 2 files changed, 43 insertions(+), 767 deletions(-) - -commit 91eb818b2038699f764cc5f3648e657d47f53047 -Author: Francisco Javier F. Serrador -Date: Thu Jul 21 21:47:02 2005 +0000 - - Updated Spanish translation. - - 2005-07-21 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - help/ChangeLog | 4 ++++ - help/es/es.po | 29 ++++------------------------- - 2 files changed, 8 insertions(+), 25 deletions(-) - -commit 8c1e3d6a3c19927091a1a9887dd36abc822cdb0c -Author: Vincent van Adrighem -Date: Thu Jul 21 15:39:21 2005 +0000 - - nl/* Added old translation again. Reinout will make revision. Added nl to - - 2005-07-21 Vincent van Adrighem - * nl/* Added old translation again. Reinout will make revision. - * Makefile.am: Added nl to LINGUAS - - help/ChangeLog | 5 + - help/Makefile.am | 2 +- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 3099 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 1570 bytes - help/nl/figures/ephy-history-window-screenshot.png | Bin 0 -> 39816 bytes - help/nl/figures/ephy-screenshot.png | Bin 40200 -> 56909 bytes - help/nl/nl.po | 2687 ++++++++++++++++++++ - 7 files changed, 2693 insertions(+), 1 deletion(-) - -commit 58a7c35bd029edfbc7f0587f5a39671811732444 -Author: Christian Persch -Date: Thu Jul 21 14:00:55 2005 +0000 - - Add rules to generate the raw python bindings .defs file, and to check - - 2005-07-21 Christian Persch - - * src/Makefile.am: - - Add rules to generate the raw python bindings .defs file, - and to check that all headers are either used or ignored. - - * src/epiphany.defs: - - Reordered to make diffing against the autogenerated file - simpler. - - ChangeLog | 12 + - src/Makefile.am | 147 +++- - src/epiphany.defs | 2195 ++++++++++++++++++++++++++--------------------------- - 3 files changed, 1237 insertions(+), 1117 deletions(-) - -commit 859c3d8aee57580a1fbf929ba9792878b70f3449 -Author: Nguyen Thai Ngoc Duy -Date: Thu Jul 21 11:37:44 2005 +0000 - - Merged from gnome-2.10 - - po/vi.po | 1907 +++++++++++++++++++++++++++++++++++++++++++------------------- - 1 file changed, 1315 insertions(+), 592 deletions(-) - -commit 387273a2bd6df6eb65d6db8024f6adfbe44e7ed0 -Author: Ivan Stojmirov -Date: Thu Jul 21 10:59:46 2005 +0000 - - ushe malce - - po/mk.po | 4219 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 2066 insertions(+), 2153 deletions(-) - -commit b7f3e6403a44d34330e67ec1a569869e1f2f7969 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Jul 20 12:09:49 2005 +0000 - - Updated Translation - - po/ChangeLog | 4 + - po/gu.po | 2294 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1166 insertions(+), 1132 deletions(-) - -commit 4418b1967c7908b24d70af1e0d1360d06904b420 -Author: Danilo Šegan -Date: Tue Jul 19 22:43:04 2005 +0000 - - Add uk to DOC_LINGUAS. - - help/ChangeLog | 4 ++++ - help/Makefile.am | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 4fdd171044aa827a393fc099097ccfdf14a04ba7 -Author: Danilo Šegan -Date: Tue Jul 19 22:40:20 2005 +0000 - - Fill in PO header fields for es.po, eu.po, ja.po. - - - Fill in PO header fields for es.po, eu.po, ja.po. - - help/ChangeLog | 4 ++++ - help/es/es.po | 8 ++++---- - help/eu/eu.po | 8 ++++---- - help/ja/ja.po | 8 ++++---- - 4 files changed, 16 insertions(+), 12 deletions(-) - -commit 7ffe44252c0a620eadd741b55cff2f511c4eb28d -Author: Christian Persch -Date: Tue Jul 19 22:26:14 2005 +0000 - - Removed from cvs, they're outdated and going to be remade from scratch by - - 2005-07-20 Christian Persch - - * nl/Makefile.am: - * nl/epiphany-nl.omf: - * nl/epiphany.xml: - * nl/legal.xml: - - Removed from cvs, they're outdated and going to be - remade from scratch by Reinout. - - help/ChangeLog | 9 + - help/nl/Makefile.am | 7 - - help/nl/epiphany-nl.omf | 31 -- - help/nl/epiphany.xml | 895 ------------------------------------------------ - help/nl/legal.xml | 76 ---- - 5 files changed, 9 insertions(+), 1009 deletions(-) - -commit abcbebc73a075b19da8c175aaf7a275f0e53b52c -Author: Christian Persch -Date: Tue Jul 19 22:15:53 2005 +0000 - - A help/epiphany.omf.in: R help/es/epiphany-es.omf: R help/es/epiphany.xml: - - 2005-07-20 Christian Persch - - * .cvsignore: - * Makefile.am: - * autogen.sh: - * configure.ac: - * help/C/epiphany.xml: - * help/Makefile.am: - A help/epiphany.omf.in: - R help/es/epiphany-es.omf: - R help/es/epiphany.xml: - * help/es/es.po: - R help/es/legal.xml: - R help/eu/epiphany-eu.omf: - R help/eu/epiphany.xml: - * help/eu/eu.po: - R help/eu/legal.xml: - R help/fi/epiphany-fi.omf: - R help/fi/epiphany.xml: - R help/fi/legal.xml: - R help/ja/epiphany-ja.omf: - R help/ja/epiphany.xml: - * help/ja/ja.po: - R help/ja/legal.xml: - R help/uk/epiphany-uk.omf: - R help/uk/epiphany.xml: - R help/uk/legal.xml: - - Use gnome-doc-utils, and move existing translations over. - - .cvsignore | 1 + - ChangeLog | 30 + - Makefile.am | 8 +- - autogen.sh | 2 +- - configure.ac | 7 +- - help/C/epiphany.xml | 3 +- - help/ChangeLog | 0 - help/Makefile.am | 13 +- - help/epiphany.omf.in | 31 + - help/es/epiphany-es.omf | 31 - - help/es/epiphany.xml | 2621 ----------------------------------------------- - help/es/es.po | 2 +- - help/es/legal.xml | 76 -- - help/eu/epiphany-eu.omf | 32 - - help/eu/epiphany.xml | 781 -------------- - help/eu/eu.po | 2 +- - help/eu/legal.xml | 17 - - help/fi/epiphany-fi.omf | 31 - - help/fi/epiphany.xml | 2573 ---------------------------------------------- - help/fi/legal.xml | 25 - - help/ja/epiphany-ja.omf | 34 - - help/ja/epiphany.xml | 2558 --------------------------------------------- - help/ja/ja.po | 2 +- - help/ja/legal.xml | 47 - - help/uk/epiphany-uk.omf | 31 - - help/uk/epiphany.xml | 1027 ------------------- - help/uk/legal.xml | 76 -- - 27 files changed, 85 insertions(+), 9976 deletions(-) - -commit fd0b814a069a2ea2e7f50b664fa3a40ec5d75fe6 -Author: Terance Sola -Date: Mon Jul 18 15:27:10 2005 +0000 - - Updated Norwegian Bokmål translation. Same. - - 2005-07-18 Terance Sola - - * nb.po: Updated Norwegian Bokmål translation. - * no.po: Same. - - po/ChangeLog | 5 + - po/nb.po | 628 ++++++++++++++++++++++++++++++++++++++--------------------- - po/no.po | 628 ++++++++++++++++++++++++++++++++++++++--------------------- - 3 files changed, 807 insertions(+), 454 deletions(-) - -commit 9c3669b919099042628b66fef5dc7eafc13e4821 -Author: Adam Weinberger -Date: Mon Jul 18 08:15:20 2005 +0000 - - Updated Canadian English translation. - - - 2005-07-18 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 592 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 381 insertions(+), 215 deletions(-) - -commit 65e7305c49fc0b1a24a974936248b3996cf6e44e -Author: Funda Wang -Date: Mon Jul 18 04:58:21 2005 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 + - po/zh_CN.po | 796 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 382 insertions(+), 418 deletions(-) - -commit 055574d89c71bcad5a18bcaeb6b497421ee6c04b -Author: Žygimantas Beručka -Date: Sun Jul 17 23:52:33 2005 +0000 - - Updated Lithuanian translation by Justina Klingait#. - - 2005-07-18 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation by Justina Klingait#. - - po/ChangeLog | 4 + - po/lt.po | 1345 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 674 insertions(+), 675 deletions(-) - -commit 187acfd638be2024bbdb667814d4bebeba8e408e -Author: Francisco Javier F. Serrador -Date: Sun Jul 17 17:22:45 2005 +0000 - - Updated Spanish translation. - - 2005-07-17 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 165 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 94 insertions(+), 75 deletions(-) - -commit 823bd8b103ffefdd465a10eb1ce7a5351880b04e -Author: Christian Persch -Date: Sun Jul 17 16:40:12 2005 +0000 - - Make sure the option is in the right option group. - - 2005-07-17 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (get_option): - - Make sure the option is in the right option group. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit f084289ad0ec8e1a6c128b379fa00c0eed1eb97b -Author: Christian Persch -Date: Sun Jul 17 16:25:36 2005 +0000 - - Docs - - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 1 file changed, 2 insertions(+) - -commit f25e6622a1b965edfb6be617cce904a440b02840 -Author: Christian Persch -Date: Sun Jul 17 16:25:30 2005 +0000 - - More TODO - - TODO | 1 + - 1 file changed, 1 insertion(+) - -commit c999186f5e8e01f7e254d40b93526e9b57378169 -Author: Christian Persch -Date: Sun Jul 17 16:25:27 2005 +0000 - - Only allow alphanumeric option arguments, and limit length to 32 - - 2005-07-17 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (get_option), - (ephy_bookmarks_get_smart_bookmark_width): - - Only allow alphanumeric option arguments, and limit length to 32 - characters at most. Use g_ascii_strtoull. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks.c | 11 +++++++++-- - 2 files changed, 17 insertions(+), 2 deletions(-) - -commit 056e78ca2904f2a8f7eaa200098f36f0029c4425 -Author: Christian Persch -Date: Sun Jul 17 16:06:04 2005 +0000 - - A embed/mozilla/EphyAboutModule.cpp: A embed/mozilla/EphyAboutModule.h: R - - 2005-07-17 Christian Persch - - A embed/mozilla/EphyAboutModule.cpp: - A embed/mozilla/EphyAboutModule.h: - R embed/mozilla/EphyProtocolHandler.cpp: - R embed/mozilla/EphyProtocolHandler.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * po/POTFILES.in: - - Yet another mozilla API change. - - * src/bookmarks/ephy-bookmarks.c: - (ephy_bookmarks_get_smart_bookmark_width): - - Remove stray g_print, and clamp entry width to sane values. - - ChangeLog | 17 + - embed/mozilla/EphyAboutModule.cpp | 520 +++++++++++++++++++++++++++ - embed/mozilla/EphyAboutModule.h | 60 ++++ - embed/mozilla/EphyProtocolHandler.cpp | 599 -------------------------------- - embed/mozilla/EphyProtocolHandler.h | 64 ---- - embed/mozilla/Makefile.am | 4 +- - embed/mozilla/MozRegisterComponents.cpp | 20 +- - po/POTFILES.in | 2 +- - src/bookmarks/ephy-bookmarks.c | 3 +- - 9 files changed, 611 insertions(+), 678 deletions(-) - -commit 23c1956430766dd72294ca2ca5f79e199ad7ed3b -Author: Christian Persch -Date: Sun Jul 17 15:52:25 2005 +0000 - - Remove stray g_print. - - 2005-07-17 Christian Persch - - * lib/ephy-file-helpers.c: - - Remove stray g_print. - - ChangeLog | 6 ++++++ - lib/ephy-file-helpers.c | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit a3756aef6072819decc2dda3cf2530b5c85c4441 -Author: Christian Persch -Date: Sun Jul 17 15:51:19 2005 +0000 - - Make sure we know about all mime types that totem can accept. - - 2005-07-17 Christian Persch - - * data/mime-types-permissions.xml: - - Make sure we know about all mime types that totem can accept. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 8 ++++++++ - 2 files changed, 14 insertions(+) - -commit d1122c3e8d957de40cb25965cb2593ea34d74ae1 -Author: Christian Persch -Date: Sun Jul 17 15:50:21 2005 +0000 - - Use $^ in the default-prefs.js rule. - - 2005-07-17 Christian Persch - - * data/Makefile.am: - - Use $^ in the default-prefs.js rule. - - * data/default-prefs-gecko-1.8.js: - - All these are already set by default, no need to repeat them. - - ChangeLog | 10 ++++++++++ - data/Makefile.am | 2 +- - data/default-prefs-gecko-1-8.js | 6 ------ - 3 files changed, 11 insertions(+), 7 deletions(-) - -commit 11a6200a0dbd2dcd22281e8c0138d3eb753fe9a5 -Author: Christian Persch -Date: Sun Jul 17 15:47:22 2005 +0000 - - Fix smart bookmark options parsing. Now encoding= really works, and added - - 2005-07-17 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_sync_smart_url): - * src/bookmarks/ephy-bookmarks.c: (resolve_cb), (browse_cb), - (ephy_bookmarks_init), (update_has_smart_address), (get_option), - (ephy_bookmarks_solve_smart_url), - (ephy_bookmarks_get_smart_bookmark_width): - * src/bookmarks/ephy-bookmarks.h: - - Fix smart bookmark options parsing. Now encoding= really works, - and added width= for bug #116709. Also fixes bug #132761. - - ChangeLog | 13 ++ - src/bookmarks/ephy-bookmark-action.c | 28 ++-- - src/bookmarks/ephy-bookmarks.c | 264 ++++++++++++++--------------------- - src/bookmarks/ephy-bookmarks.h | 2 + - 4 files changed, 130 insertions(+), 177 deletions(-) - -commit 36e9eb39a6d68cd8b1b75ef22d79bedd7a3a5586 -Author: Amanpreet Singh Alam -Date: Sun Jul 17 10:00:57 2005 +0000 - - update by amanpreetalam@yahoo.com - - po/pa.po | 2328 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 1163 insertions(+), 1165 deletions(-) - -commit 433acf3896bfaf699788fda839017c325a3379f3 -Author: Christian Persch -Date: Sat Jul 16 15:01:32 2005 +0000 - - Fix URL dragging to other tabs. - - 2005-07-16 Christian Persch - - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - - Fix URL dragging to other tabs. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit dfe3d1432e54ba53f5a6a41aff8df4f5456a82a1 -Author: Gabor Kelemen -Date: Fri Jul 15 12:02:40 2005 +0000 - - Hungarian translation updated. - - 2005-07-15 Gabor Kelemen - - * hu.po: Hungarian translation updated. - - po/ChangeLog | 4 + - po/hu.po | 1184 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 602 insertions(+), 586 deletions(-) - -commit f0a46383624fa97cf350d1949a2a4049dc6d0f08 -Author: Miloslav Trmac -Date: Thu Jul 14 16:42:07 2005 +0000 - - Updated Czech translation. - - 2005-07-14 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 679 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 423 insertions(+), 260 deletions(-) - -commit 465e78e747de8b45ccfec9be98a3e05ce91d4ef5 -Author: Clytie Siddall -Date: Thu Jul 14 06:15:46 2005 +0000 - - vi.po: Updated Vietnamese translation.CVS: ---------------------------------------------------------------------- - - po/ChangeLog | 4 ++++ - po/vi.po | 43 +++++++++++++++++++++++++++---------------- - 2 files changed, 31 insertions(+), 16 deletions(-) - -commit a3fcd8c4dfbdc252dadc52eac72a062f57853c83 -Author: Marcel Telka -Date: Wed Jul 13 17:49:54 2005 +0000 - - Updated Slovak translation. - - 2005-07-13 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++ - po/sk.po | 125 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 66 insertions(+), 63 deletions(-) - -commit 67d7ae3ce288c600a1ff6b32ac72312fcd1896fa -Author: Vincent van Adrighem -Date: Wed Jul 13 15:03:06 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-07-13 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 710 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 453 insertions(+), 261 deletions(-) - -commit 4acc2b0a8453929cbd0a468be50072ed41280a6b -Author: Christian Persch -Date: Wed Jul 13 13:12:10 2005 +0000 - - Add application/rdf+xml to list of known mime types. - - 2005-07-13 Christian Persch - - * data/mime-types-permissions.xml: - - Add application/rdf+xml to list of known mime types. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit 25c01c03b2e9006e33f5ddb49ce5ad169470dea6 -Author: Christian Persch -Date: Wed Jul 13 11:48:52 2005 +0000 - - Fix a couple of strings. Fixes bug #310196. - - 2005-07-13 Christian Persch - - * embed/mozilla/EphyProtocolHandler.cpp: - - Fix a couple of strings. Fixes bug #310196. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyProtocolHandler.cpp | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 5caa7d39f08003cec199f5a5cb6e099d3417d334 -Author: Clytie Siddall -Date: Wed Jul 13 08:03:15 2005 +0000 - - vi.po: Updated Vietnamese translation.CVS: ---------------------------------------------------------------------- - - po/ChangeLog | 4 + - po/vi.po | 318 ++++++++++++++++++++++++++++++++++++++++++++--------------- - 2 files changed, 243 insertions(+), 79 deletions(-) - -commit cd729292b87471408be56cb924393664dacf2de6 -Author: Francisco Javier F. Serrador -Date: Tue Jul 12 22:07:32 2005 +0000 - - Updated Spanish translation. - - 2005-07-13 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 588 ++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 381 insertions(+), 211 deletions(-) - -commit 40cd4d7a1f61926cf9e84664491b3236e9084201 -Author: Christian Persch -Date: Tue Jul 12 20:47:21 2005 +0000 - - Remove the reload workaround, since the mozilla bug is fixed on all - - 2005-07-12 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Remove the reload workaround, since the mozilla bug - is fixed on all supported mozilla version. - - ChangeLog | 9 ++++++++ - configure.ac | 14 ++++++------ - embed/mozilla/EphyBrowser.cpp | 40 ----------------------------------- - embed/mozilla/EphyBrowser.h | 8 ------- - embed/mozilla/EphyProtocolHandler.cpp | 10 +++++++++ - embed/mozilla/mozilla-embed.cpp | 21 +----------------- - 6 files changed, 27 insertions(+), 75 deletions(-) - -commit cccabbcbbe25e8496f6e2bdcc77c235fe3eb3857 -Author: Marcel Telka -Date: Tue Jul 12 17:58:43 2005 +0000 - - Updated Slovak translation. - - 2005-07-12 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 590 ++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 384 insertions(+), 210 deletions(-) - -commit f47ca89ba54f3954646ed97c8c0d69e5903ee5f1 -Author: Christian Persch -Date: Tue Jul 12 16:34:01 2005 +0000 - - Detect seamonkey trunk. - - 2005-07-12 Christian Persch - - * configure.ac: - - Detect seamonkey trunk. - - ChangeLog | 6 ++++++ - configure.ac | 50 +++++++++++++++++++++++++++----------------------- - 2 files changed, 33 insertions(+), 23 deletions(-) - -commit 5e7d713ce0280257ff8529a044417fd90123601d -Author: Christian Persch -Date: Tue Jul 12 12:29:39 2005 +0000 - - Update min-versions for mozilla dependency. - - 2005-07-12 Christian Persch - - * configure.ac: - - Update min-versions for mozilla dependency. - - ChangeLog | 6 ++++++ - configure.ac | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 2a038f033d9e0edf8a20801662202910f32c3483 -Author: Priit Laes -Date: Mon Jul 11 21:27:00 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-07-12 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 68 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 38 insertions(+), 34 deletions(-) - -commit 3d39be8d8a17870ad637f51472016d0d63eb446c -Author: Christian Persch -Date: Mon Jul 11 21:00:25 2005 +0000 - - Post-release version bump. - - 2005-07-11 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit bed7c327e6d2a13ba5ed141be04843ef144e06d9 -Author: Christian Persch -Date: Mon Jul 11 20:59:23 2005 +0000 - - === Release 1.7.2 === - - 2005-07-11 Christian Persch - - === Release 1.7.2 === - - * doc/reference/tmpl/ephy-embed.sgml: - * doc/reference/tmpl/ephy-window.sgml: - * doc/reference/tmpl/epiphany-unused.sgml: - * po/POTFILES.in: - - ChangeLog | 9 +++++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - doc/reference/tmpl/ephy-window.sgml | 8 -------- - doc/reference/tmpl/epiphany-unused.sgml | 7 +++++++ - po/POTFILES.in | 1 + - 5 files changed, 19 insertions(+), 8 deletions(-) - -commit 02a6df50c7276d0fb38e4f9f618ec12261bad415 -Author: Christian Persch -Date: Mon Jul 11 20:41:35 2005 +0000 - - Remove checkbox from trust-CA dialogue. Fixes bug #168295. - - 2005-07-11 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - - Remove checkbox from trust-CA dialogue. Fixes bug #168295. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSDialogs.cpp | 38 +++++++++++++++----------------------- - 2 files changed, 21 insertions(+), 23 deletions(-) - -commit 8edb3efb671cef0c762dac6a67de549f88382479 -Author: Christian Persch -Date: Mon Jul 11 20:23:10 2005 +0000 - - Init the gettext domain. - - 2005-07-11 Christian Persch - - * src/prefs-dialog.c: (prefs_dialog_init): - - Init the gettext domain. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 6 ++++++ - 2 files changed, 12 insertions(+) - -commit 9f25938b8101d5ea10d547d709bc136d4aeddb6b -Author: Christian Persch -Date: Mon Jul 11 19:47:25 2005 +0000 - - Check all selected nodes if they allow dragging. - - 2005-07-11 Christian Persch - - * lib/widgets/ephy-node-view.c: (check_node_is_drag_source), - (can_drag_selection), (button_release_cb), (motion_notify_cb): - - Check all selected nodes if they allow dragging. - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu), (key_pressed_cb): - - Don't allow to delete or rename local sites, or to put them - on the bookmarks bar. - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): - - Fix capitalisation. - - ChangeLog | 17 +++++++++++++++ - lib/widgets/ephy-node-view.c | 40 ++++++++++++++++++++++++++++++++++- - src/bookmarks/ephy-bookmarks-editor.c | 15 +++++++++---- - src/bookmarks/ephy-bookmarks.c | 2 +- - 4 files changed, 68 insertions(+), 6 deletions(-) - -commit d439bc7993fd7d4d490ee4d7a45943dfd5624c9d -Author: Christian Persch -Date: Sun Jul 10 21:39:21 2005 +0000 - - Update - - NEWS | 32 ++++++++++++++++++++++++++++++++ - 1 file changed, 32 insertions(+) - -commit 39e1b868fe021ab8fe04ade6774d04ed87c05a81 -Author: Christian Persch -Date: Sun Jul 10 20:57:14 2005 +0000 - - Implement a way to disallow dragging from resp. dropping on certain nodes. - - 2005-07-10 Christian Persch - - * lib/ephy-node-common.h: - * lib/ephy-node.c: (ephy_node_new_with_id), - (ephy_node_signal_disconnect), (ephy_node_set_is_drag_source), - (ephy_node_get_is_drag_source), (ephy_node_set_is_drag_dest), - (ephy_node_get_is_drag_dest): - * lib/ephy-node.h: - * lib/widgets/ephy-node-view.c: (drag_motion_cb), - (drag_data_received_cb): - - Implement a way to disallow dragging from resp. dropping on certain - nodes. - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu): - * src/bookmarks/ephy-bookmarks.c: (save_filter), - (save_filter_local), (ephy_bookmarks_save), - (update_bookmark_keywords), (bookmark_is_categorized), - (resolve_cb), (browse_cb), (ephy_local_bookmarks_init), - (ephy_local_bookmarks_stop), (ephy_bookmarks_init), - (ephy_bookmarks_finalize), (ephy_bookmarks_get_topic_uri), - (ephy_bookmarks_find_keyword), (ephy_bookmarks_get_favorites), - (ephy_bookmarks_get_local): - * src/bookmarks/ephy-bookmarks.h: - - Implement "Local Sites" topic, filled with zeroconf-discovered - bookmarks. Patch by Bastien Nocera, fixes bug #144969. - - ChangeLog | 29 +++++ - lib/ephy-node-common.h | 3 +- - lib/ephy-node.c | 30 +++++ - lib/ephy-node.h | 6 + - lib/widgets/ephy-node-view.c | 25 ++-- - src/bookmarks/ephy-bookmarks-editor.c | 6 +- - src/bookmarks/ephy-bookmarks.c | 213 +++++++++++++++++++++++++++++++++- - src/bookmarks/ephy-bookmarks.h | 5 +- - 8 files changed, 298 insertions(+), 19 deletions(-) - -commit b6ccb049d514886311520d3c16c8b592dfcde3a3 -Author: Christian Persch -Date: Sun Jul 10 19:15:42 2005 +0000 - - Fix build with -Werror. - - 2005-07-10 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_prepare_close): - - Fix build with -Werror. - - * src/ephy-tab.c: (ephy_tab_dispose), - (ephy_tab_file_monitor_cancel), (ephy_file_monitor_reload_cb), - (ephy_tab_file_monitor_cb), (ephy_tab_update_file_monitor), - (ephy_tab_address_cb): - - Monitor local files for changes and reload them if they do change. - Fixes bug #300040; patch by Raphaël Slinckx. - - ChangeLog | 14 +++++ - embed/ephy-embed-shell.c | 2 - - src/ephy-tab.c | 133 ++++++++++++++++++++++++++++++++++++++++++++++- - 3 files changed, 146 insertions(+), 3 deletions(-) - -commit 61ae0e099b3fcf793468a41d436a2cd7cee2e10f -Author: Danilo Šegan -Date: Sun Jul 10 18:46:34 2005 +0000 - - Updated Serbian translation. - - po/ChangeLog | 6 + - po/POTFILES.in | 1 + - po/sr.po | 1449 +++++++++++++++++++++++++++++++------------------------- - po/sr@Latn.po | 1449 +++++++++++++++++++++++++++++++------------------------- - 4 files changed, 1605 insertions(+), 1300 deletions(-) - -commit 49d5bba44cc0e59ed15cb04299fd36c701d58e59 -Author: Christian Persch -Date: Sun Jul 10 18:28:19 2005 +0000 - - Use contract IDs. - - 2005-07-10 Christian Persch - - * embed/mozilla/EphyProtocolHandler.cpp: - - Use contract IDs. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyProtocolHandler.cpp | 7 ++----- - 2 files changed, 8 insertions(+), 5 deletions(-) - -commit 75ecb3bdd186210a6064b46d3889b5719d786afb -Author: Christian Persch -Date: Sun Jul 10 16:21:23 2005 +0000 - - Add context to two strings. - - 2005-07-10 Christian Persch - - * embed/mozilla/EphyProtocolHandler.cpp: - - Add context to two strings. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyProtocolHandler.cpp | 8 ++++++-- - 2 files changed, 12 insertions(+), 2 deletions(-) - -commit a4629854eaa0cf1414f3e3353a722afc01473f4e -Author: Christian Persch -Date: Sun Jul 10 16:09:31 2005 +0000 - - Improved design and wording of the error pages, and add links to google - - 2005-07-10 Christian Persch - - * embed/mozilla/EphyProtocolHandler.cpp: - * embed/mozilla/EphyProtocolHandler.h: - - Improved design and wording of the error pages, - and add links to google cache and internet archive - where appropriate. Many thanks to mpt for his help! - - ChangeLog | 9 ++ - embed/mozilla/EphyProtocolHandler.cpp | 195 ++++++++++++++++++++++------------ - embed/mozilla/EphyProtocolHandler.h | 12 +-- - 3 files changed, 145 insertions(+), 71 deletions(-) - -commit b60fa57c130d53cfb5154080f3ad5097e62a6fdd -Author: Jean-François Rameau -Date: Sat Jul 9 21:48:41 2005 +0000 - - Uppercase letters shouldn't breaks history autocompletion. Fix Bug - - 2005-07-09 Jean-François Rameau - - * lib/widgets/ephy-location-entry.c: (completion_func): - - Uppercase letters shouldn't breaks history autocompletion. - Fix Bug #308236. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-location-entry.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 3c6deb0840968471a8f50b35fffec58d1057217e -Author: Christian Persch -Date: Sat Jul 9 21:09:05 2005 +0000 - - If the string includes uppercase letters, search case-sensitively. - - 2005-07-09 Christian Persch - - * src/ephy-find-toolbar.c: (entry_changed_cb): - - If the string includes uppercase letters, search case-sensitively. - - ChangeLog | 6 ++++++ - src/ephy-find-toolbar.c | 14 +++++++++++--- - 2 files changed, 17 insertions(+), 3 deletions(-) - -commit 7274cb593c20c9bc973673c0767693c9cf3023bb -Author: Christian Persch -Date: Sat Jul 9 15:57:16 2005 +0000 - - Don't focus the embed on close on !typeaheadfind, since it's a crash. - - 2005-07-09 Christian Persch - - * src/ephy-find-toolbar.c: (ephy_find_toolbar_close): - - Don't focus the embed on close on !typeaheadfind, - since it's a crash. Fixes bug #307675. - - ChangeLog | 7 +++++++ - src/ephy-find-toolbar.c | 7 ++++++- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit 3b390cf6bfc3249ea6af8736e99315e614ea8ef8 -Author: Christian Persch -Date: Sat Jul 9 15:45:30 2005 +0000 - - Make error page nicer; code by Adam Hooper. - - 2005-07-09 Christian Persch - - * embed/mozilla/EphyProtocolHandler.cpp: - - Make error page nicer; code by Adam Hooper. - - ChangeLog | 8 ++++++- - embed/mozilla/EphyProtocolHandler.cpp | 44 +++++++++++------------------------ - 2 files changed, 20 insertions(+), 32 deletions(-) - -commit 62b4c1eff3e950faa21ecdde688bd8a1379853ec -Author: Christian Persch -Date: Fri Jul 8 22:08:15 2005 +0000 - - Credit adamh for the xhtml/css design - - ChangeLog | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 58c02748cef964cc8ae3cc4491b60b2a0ab347a5 -Author: Christian Persch -Date: Fri Jul 8 22:07:14 2005 +0000 - - Error pages implementation. - - 2005-07-09 Christian Persch - - * data/default-prefs-gecko-1-8.js: - * embed/mozilla/EphyProtocolHandler.cpp: - * embed/mozilla/EphyProtocolHandler.h: - - Error pages implementation. - - ChangeLog | 8 + - data/default-prefs-gecko-1-8.js | 4 + - embed/mozilla/EphyProtocolHandler.cpp | 376 +++++++++++++++++++++++++++++++++- - embed/mozilla/EphyProtocolHandler.h | 8 +- - 4 files changed, 387 insertions(+), 9 deletions(-) - -commit 8fccec0d3da3a35d55ee131cc5699cf95c774c51 -Author: Christian Persch -Date: Fri Jul 8 21:15:19 2005 +0000 - - Periodically save the favicon cache. - - 2005-07-08 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_save), - (periodic_save_cb), (ephy_favicon_cache_init), - (ephy_favicon_cache_finalize), (favicon_download_completed_cb), - (favicon_download_cancelled_cb), (ephy_favicon_cache_get): - - Periodically save the favicon cache. - - * embed/ephy-history.c: - - Source ID is guint not int. - - ChangeLog | 13 ++++++++++ - embed/ephy-favicon-cache.c | 63 ++++++++++++++++++++++++++++++++++++++++------ - embed/ephy-history.c | 4 +-- - 3 files changed, 70 insertions(+), 10 deletions(-) - -commit e1af86afc3b7cc733fcb0b86f623106bdbeee7d2 -Author: Christian Persch -Date: Fri Jul 8 20:37:36 2005 +0000 - - Rename favicons so they don't have extensions. Work around broken mime - - 2005-07-08 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download), - (ephy_favicon_cache_get): - - Rename favicons so they don't have extensions. Work around broken - mime detection which cannot detect that a .ico file with HTML content - is really no icon file. - - ChangeLog | 9 +++ - embed/ephy-favicon-cache.c | 165 ++++++++++++++++++++++++++++++++++----------- - 2 files changed, 135 insertions(+), 39 deletions(-) - -commit 77bfef25b822b4aa865ba9fd44a5dc22efafe690 -Author: Christian Persch -Date: Fri Jul 8 07:59:11 2005 +0000 - - Don't leak windows. - - 2005-07-07 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (new_pixbuf_from_widget), - (new_separator_pixbuf): - - Don't leak windows. - - lib/egg/egg-editable-toolbar.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit b99e85756a49c11394ee323a2dee03a521ac93b3 -Author: Priit Laes -Date: Fri Jul 8 05:39:53 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-07-08 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 64 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 38 insertions(+), 30 deletions(-) - -commit a952e13bb0f0be52fb27f6b6d966ac511b56ea73 -Author: Christian Persch -Date: Thu Jul 7 19:10:49 2005 +0000 - - Don't leak windows. - - 2005-07-07 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (new_pixbuf_from_widget), - (new_separator_pixbuf): - - Don't leak windows. - - ChangeLog | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 87ef10da74ea294d5d156e901172fe2d90b2544a -Author: Christian Persch -Date: Thu Jul 7 13:10:25 2005 +0000 - - Fix for mozilla API change. - - 2005-07-07 Christian Persch - - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - Fix for mozilla API change. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 12 +++++++----- - embed/mozilla/MozDownload.h | 5 +++-- - 3 files changed, 17 insertions(+), 7 deletions(-) - -commit e52e0814de88814ee6f2e7a619f3228c973d8f84 -Author: Clytie Siddall -Date: Thu Jul 7 10:07:19 2005 +0000 - - vi.po: Updated Vietnamese translation.CVS: ---------------------------------------------------------------------- - - po/ChangeLog | 4 + - po/vi.po | 3034 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 1247 insertions(+), 1791 deletions(-) - -commit cf6b267cf3e7c86e3348dd8bcede5aa9ce14340e -Author: Christian Persch -Date: Wed Jul 6 15:40:51 2005 +0000 - - Make scroll wheel zoom directions HIG compliant; fixes bug #306110. - - 2005-07-06 Christian Persch - - * data/default-prefs-common.js: - - Make scroll wheel zoom directions HIG compliant; fixes bug #306110. - - ChangeLog | 6 ++++++ - data/default-prefs-common.js | 7 +++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit 1442702fda4c450efdeb2fb95e725b12c396afe2 -Author: Priit Laes -Date: Tue Jul 5 12:13:38 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-07-05 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++++ - po/et.po | 77 +++++++++++++++++++++++++++++------------------------------- - 2 files changed, 41 insertions(+), 40 deletions(-) - -commit 584f55a822f9c65e0c190d1a3668655d64c5c346 -Author: Christian Persch -Date: Tue Jul 5 11:33:54 2005 +0000 - - There's no printer cmd line entry anymore, no need to lock it down. - - 2005-07-05 Christian Persch - - * embed/mozilla/PrintingPromptService.cpp: - - There's no printer cmd line entry anymore, no need to - lock it down. - - ChangeLog | 7 +++++++ - embed/mozilla/PrintingPromptService.cpp | 6 ++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit c1496e9cd3009d78ef624a87db3b50e7fecf76c3 -Author: Priit Laes -Date: Tue Jul 5 07:48:40 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-07-05 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 1067 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 506 insertions(+), 565 deletions(-) - -commit 90e2bd8d1485ade7ba4b8a3f4e17014395f97a95 -Author: Hendrik Richter -Date: Mon Jul 4 15:23:45 2005 +0000 - - Fixed German translation by Jens Seidel . - - 2005-07-04 Hendrik Richter - - * de.po: Fixed German translation by - Jens Seidel . - - po/ChangeLog | 5 +++++ - po/de.po | 8 ++++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit b0a41101dbeab9808c88e9f2d52f6f8f3d4aece3 -Author: Christian Persch -Date: Mon Jul 4 12:27:39 2005 +0000 - - Fix compiler warning. - - 2005-07-04 Christian Persch - - * src/ephy-extensions-manager.c: - - Fix compiler warning. - - ChangeLog | 6 ++++++ - src/ephy-extensions-manager.c | 10 +++++----- - 2 files changed, 11 insertions(+), 5 deletions(-) - -commit 553cf8c4a065086212d22d52715333ee166b85b5 -Author: Christian Persch -Date: Mon Jul 4 12:22:41 2005 +0000 - - Better fix for bug #151037 to make session shutdown work again. Also fix - - 2005-07-04 Christian Persch - - * embed/downloader-view.c: (remove_download), (prepare_close_cb), - (downloader_view_init), (downloader_view_finalize), - (downloader_view_remove_download), (download_dialog_delete_cb): - * embed/ephy-embed-shell.c: (ephy_embed_shell_prepare_close), - (ephy_embed_shell_class_init): - * embed/ephy-embed-shell.h: - * embed/ephy-favicon-cache.c: (prepare_close_cb), - (ephy_favicon_cache_init), (kill_download): - * embed/mozilla/mozilla-embed-find.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-notifiers.h: - * src/ephy-session.c: (ephy_session_init), (ephy_session_dispose), - (ephy_session_autoresume), (close_dialog), (ephy_session_close): - * src/ephy-shell.c: (ephy_shell_startup), (toolwindow_hide_cb): - * src/ephy-window.c: (ephy_window_finalize): - - Better fix for bug #151037 to make session shutdown work again. - Also fix session shutdown while resuming, and preserve the session - in this case. - - ChangeLog | 24 +++++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - embed/downloader-view.c | 62 +++++++++++++++++++++++++++++--- - embed/ephy-embed-shell.c | 33 ++++++++++++++++++ - embed/ephy-embed-shell.h | 4 +++ - embed/ephy-favicon-cache.c | 18 +++++++++- - embed/mozilla/mozilla-embed-find.cpp | 3 +- - embed/mozilla/mozilla-embed-single.cpp | 19 ++++++++++ - embed/mozilla/mozilla-embed.cpp | 13 ++++--- - embed/mozilla/mozilla-notifiers.cpp | 6 ++-- - embed/mozilla/mozilla-notifiers.h | 3 ++ - src/ephy-session.c | 64 ++++++++++++++++++++++------------ - src/ephy-shell.c | 19 +++++----- - src/ephy-window.c | 3 +- - 14 files changed, 223 insertions(+), 50 deletions(-) - -commit 0e935c597fe2e3e00f672b98f77eaebf48660857 -Author: Jean-François Rameau -Date: Sun Jul 3 21:38:55 2005 +0000 - - EphyCookie's expires field is now of time_t type (fixes gcc 4.0 warning). - - 2005-07-03 Jean-François Rameau - - * embed/ephy-cookie-manager.h: - - EphyCookie's expires field is now of time_t type (fixes gcc 4.0 warning). - - * embed/ephy-favicon-cache.c: - * lib/ephy-file-helpers.c: - * lib/ephy-langs.c: - * lib/ephy-node-db.c: - * lib/ephy-node.c: - * lib/ephy-state.c: - * lib/egg/eggtraymanager.c: - * src/ephy-extensions-manager.c: - * src/ephy-main.c: - * src/ephy-notebook.c: - * src/ephy-session.c: - * src/ephy-window.c: - - Fixes more signed/unsigned problems with gcc 4.0. - - ChangeLog | 21 ++++++++++++++++ - embed/ephy-cookie-manager.h | 3 ++- - embed/ephy-favicon-cache.c | 6 ++--- - lib/egg/eggtraymanager.c | 4 +-- - lib/ephy-file-helpers.c | 8 +++--- - lib/ephy-langs.c | 4 +-- - lib/ephy-node-db.c | 16 ++++++------ - lib/ephy-node.c | 57 ++++++++++++++++++++++--------------------- - lib/ephy-state.c | 7 +++--- - src/ephy-extensions-manager.c | 10 ++++---- - src/ephy-main.c | 2 +- - src/ephy-notebook.c | 2 +- - src/ephy-session.c | 4 ++- - src/ephy-window.c | 4 ++- - 14 files changed, 88 insertions(+), 60 deletions(-) - -commit b0488b2a6c81ef558613c34fb398a111643b72e3 -Author: Jean-François Rameau -Date: Thu Jun 30 22:11:38 2005 +0000 - - Show URI in status bar when selecting Back/Forward/Up menu items. Fixes - - 2005-07-01 Jean-François Rameau - - * src/ephy-navigation-action.c: (build_back_or_forward_menu), - (build_up_menu), (select_menu_item_cb), (deselect_menu_item_cb), - (ephy_navigation_action_set_property): - - Show URI in status bar when selecting Back/Forward/Up menu items. - Fixes partly #161710. - - ChangeLog | 9 +++++++ - src/ephy-navigation-action.c | 59 ++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 66 insertions(+), 2 deletions(-) - -commit 98d3c926bde2378bffc3ca14db34f29c07fe421a -Author: Christian Persch -Date: Fri Jun 24 11:43:34 2005 +0000 - - Add text/rtf. - - 2005-06-24 Christian Persch - - * data/mime-types-permissions.xml: - - Add text/rtf. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit e233831aa601ea8eb7967cbb62fe581f7e6cccb5 -Author: Kwok-Koon Cheung -Date: Fri Jun 24 03:27:07 2005 +0000 - - fix language team reference - - po/ChangeLog | 4 + - po/zh_TW.po | 1233 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 652 insertions(+), 585 deletions(-) - -commit 85870a7da8d3d84b980e65bd5824bfa6b1482f1a -Author: Nikos Charonitakis -Date: Sun Jun 19 20:41:08 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 523 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 286 insertions(+), 241 deletions(-) - -commit ae52c16129486d047b37cd0a029e5641ec396823 -Author: Jean-François Rameau -Date: Sun Jun 19 16:39:47 2005 +0000 - - Shift-Ctrl+R now works (Force reload). Fixes #307831. - - 2005-06-19 Jean-François Rameau - - * data/ui/epiphany-ui.xml: - * src/ephy-window.c: - - Shift-Ctrl+R now works (Force reload). Fixes #307831. - - ChangeLog | 7 +++++++ - data/ui/epiphany-ui.xml | 1 + - src/ephy-window.c | 3 +++ - 3 files changed, 11 insertions(+) - -commit 106d95e7c15770f005f3fe694e7201393575ffa8 -Author: Hendrik Richter -Date: Thu Jun 16 23:05:18 2005 +0000 - - Updated German translation. - - 2005-06-17 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 1284 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 665 insertions(+), 623 deletions(-) - -commit e03cd07c248f424a20ea330ee5922eea553ba4ba -Author: Priit Laes -Date: Thu Jun 16 17:38:06 2005 +0000 - - Translation updated. - - 2005-06-16 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 2385 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1170 insertions(+), 1219 deletions(-) - -commit 30c3f34d61827ed1a50e16c09d6d1b0875ab7053 -Author: Christian Persch -Date: Thu Jun 16 12:38:13 2005 +0000 - - Don't show the image after gtk_button_set_image(). Fixes bug #307818. - - 2005-06-16 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * src/ephy-fullscreen-popup.c: (ephy_fullscreen_popup_constructor): - * src/ephy-history-window.c: (confirmation_dialog_construct): - - Don't show the image after gtk_button_set_image(). Fixes bug #307818. - - ChangeLog | 8 ++++++++ - embed/mozilla/ContentHandler.cpp | 2 +- - src/ephy-fullscreen-popup.c | 19 +++++-------------- - src/ephy-history-window.c | 2 +- - 4 files changed, 15 insertions(+), 16 deletions(-) - -commit 3053ba8e28f69454242b74fd10085cd6a42ced84 -Author: Crispin Flowerday -Date: Tue Jun 14 19:12:10 2005 +0000 - - Point to the 'search_key_press' function int eh EphyEmbedIface rather than - - 2005-06-14 Crispin Flowerday - - * embed/ephy-embed.c (ephy_embed_load_url): - - Point to the 'search_key_press' function int eh EphyEmbedIface - rather than the context menu one - - ChangeLog | 7 +++++++ - embed/ephy-embed.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 3b63c65f29d2e5580f9bf4bd1e36eee7182b091f -Author: Martin Willemoes Hansen -Date: Tue Jun 14 09:09:49 2005 +0000 - - Updated Danish translation. - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 ++++ - po/da.po | 6 +++--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 495c3d6fab7a0f7036db2e0a8be39f9cdeaf8f14 -Author: Vincent van Adrighem -Date: Mon Jun 13 19:12:59 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-06-13 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 1331 +++++++++------------------------------------------------- - 2 files changed, 212 insertions(+), 1123 deletions(-) - -commit cc9aa1b769472f1a460c4537da90847dc52d7b6f -Author: Christian Persch -Date: Sun Jun 12 19:25:40 2005 +0000 - - Fix refcount leak. - - 2005-06-12 Christian Persch - - * embed/mozilla/mozilla-ember-persist.cpp: (impl_to_string): - - Fix refcount leak. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 27 +++++++++++++++------------ - 2 files changed, 21 insertions(+), 12 deletions(-) - -commit f208a356f3aebec4c15a59403c8dd30c3a0cc2c3 -Author: Miloslav Trmac -Date: Sun Jun 12 12:44:47 2005 +0000 - - Updated Czech translation. - - 2005-06-12 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 338 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 197 insertions(+), 145 deletions(-) - -commit 7ee4de2b92d0de1ae9a02e083e67abe048f4511e -Author: Christian Persch -Date: Sat Jun 11 19:25:17 2005 +0000 - - Don't hold a ref to the shell from persist objects. - - 2005-06-11 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: - - Don't hold a ref to the shell from persist objects. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 5 ----- - 2 files changed, 6 insertions(+), 5 deletions(-) - -commit 55bcddfd18577f6363842ad3b1772e0db9f1c011 -Author: Christian Persch -Date: Fri Jun 10 21:21:36 2005 +0000 - - Common helper function to unref a GObject from idle. - - 2005-06-10 Christian Persch - - * lib/Makefile.am: - * lib/ephy-object-helpers.c: - * lib/ephy-object-helpers.h: - - Common helper function to unref a GObject from idle. - - * embed/downloader-view.c: (downloader_view_finalize): - * embed/mozilla/mozilla-embed-find.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-extensions-manager.c: (unload_extension): - * src/ephy-main.c: (main): - * src/ephy-shell.c: (toolwindow_hide_cb): - * src/ephy-window.c: (ephy_window_finalize): - - Always unref the shell from idle, never directly. That's because - in case we hold the last reference, we would end up terminating - embedding/XPCOM from a mozilla callback. Fixes bug #151037, - and moz#236688. - - ChangeLog | 22 +++++++++++++++++++ - embed/downloader-view.c | 4 +++- - embed/mozilla/mozilla-embed-find.cpp | 5 ++++- - embed/mozilla/mozilla-embed-persist.cpp | 7 +++++- - embed/mozilla/mozilla-embed.cpp | 10 +++++++++ - lib/Makefile.am | 2 ++ - lib/ephy-object-helpers.c | 38 +++++++++++++++++++++++++++++++++ - lib/ephy-object-helpers.h | 32 +++++++++++++++++++++++++++ - src/ephy-extensions-manager.c | 11 ++-------- - src/ephy-main.c | 10 ++------- - src/ephy-shell.c | 4 +++- - src/ephy-window.c | 3 ++- - 12 files changed, 126 insertions(+), 22 deletions(-) - -commit 525eb97bca09bc9a4abe3925f70c3fc5a485f3f7 -Author: Marcel Telka -Date: Fri Jun 10 20:54:48 2005 +0000 - - Updated Slovak translation. - - 2005-06-10 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 2128 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1018 insertions(+), 1114 deletions(-) - -commit c1b89f1dcb77316c4cad36389c367a2e2638c180 -Author: Martin Willemoes Hansen -Date: Thu Jun 9 09:41:14 2005 +0000 - - Updated Danish translation. - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 1283 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 662 insertions(+), 625 deletions(-) - -commit 5a5019951143ed50de6271c7631fc3d20673a7cb -Author: Christian Persch -Date: Wed Jun 8 21:27:18 2005 +0000 - - Handle Ctrl-F like / to open the find bar without focusing it. Fixes link - - 2005-06-08 Christian Persch - - * src/ephy-window.c: - * src/ephy-window.h: - * src/epiphany.defs: - * src/window-commands.c: (window_cmd_edit_select_all), - (window_cmd_edit_find): - - Handle Ctrl-F like / to open the find bar without focusing it. - Fixes link activation while finding. - - ChangeLog | 11 +++++++++++ - src/ephy-window.c | 15 --------------- - src/ephy-window.h | 2 -- - src/epiphany.defs | 6 ------ - src/window-commands.c | 17 ++++++++++------- - 5 files changed, 21 insertions(+), 30 deletions(-) - -commit d6ce392e91751470ca20c2aa935da6ba8304b43b -Author: Jean-François Rameau -Date: Tue Jun 7 20:14:50 2005 +0000 - - More constification. - - 2005-06-07 Jean-François Rameau - - * embed/mozilla/MozDownload.cpp: (file_is_compressed), - (parse_extension): - - More constification. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit d5a90a38aa82a6542b44e38f3f782f6b3ae43714 -Author: Jean-François Rameau -Date: Tue Jun 7 19:32:04 2005 +0000 - - Unused var. - - 2005-06-07 Jean-François Rameau - - * embed/mozilla/mozilla-embed.cpp: (mozilla_embed_dom_key_press_cb): - - Unused var. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 49459f774a71eea0537fcf7224484cd1c02c7edc -Author: Terance Sola -Date: Tue Jun 7 16:31:47 2005 +0000 - - Updated Updated - - 2005-06-07 Terance Sola - - * nb.po: Updated - * no.po: Updated - - po/ChangeLog | 5 +++++ - po/nb.po | 57 +++++++++++++++++++++++++++++++++++---------------------- - po/no.po | 57 +++++++++++++++++++++++++++++++++++---------------------- - 3 files changed, 75 insertions(+), 44 deletions(-) - -commit 00dd31a655c7366dc72a5f74fb610a2fd2322c1b -Author: Ignacio Casal Quinteiro -Date: Tue Jun 7 15:25:40 2005 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - po/gl.po | 16 ++++++++-------- - 2 files changed, 12 insertions(+), 8 deletions(-) - -commit f2319e83839b68d140216d581deecc7c47076d7c -Author: Funda Wang -Date: Mon Jun 6 16:22:02 2005 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 ++ - po/zh_CN.po | 191 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 122 insertions(+), 73 deletions(-) - -commit ef3326fcc46b546d52d570daaa3662620d523a79 -Author: Christian Persch -Date: Mon Jun 6 10:57:04 2005 +0000 - - Require DBUS 0.34. Bug #306626. - - 2005-06-06 Christian Persch - - * configure.ac: - - Require DBUS 0.34. Bug #306626. - - ChangeLog | 6 ++++++ - configure.ac | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit b354da3b18a15aef33e0160007d9e7ce2493b611 -Author: Alexander Shopov -Date: Mon Jun 6 10:33:41 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-06-06 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 +++ - po/bg.po | 145 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 87 insertions(+), 63 deletions(-) - -commit eb12301465fc2ac217975b2466a5c4744a1ab916 -Author: Ignacio Casal Quinteiro -Date: Sun Jun 5 19:17:47 2005 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/LINGUAS | 2 +- - po/gl.po | 1267 +++++++++++++++++++++++++++++++--------------------------- - 3 files changed, 679 insertions(+), 594 deletions(-) - -commit 0fe212827ac0460e7ebe9bc982302fe7a34bc0bf -Author: Christian Persch -Date: Sun Jun 5 16:43:23 2005 +0000 - - Fix compilation with DBUS 0.3x. Patch by Raphaël Slinckx, fixes bug - - 2005-06-05 Christian Persch - - * lib/ephy-dbus.c: (ephy_dbus_connect_to_system_bus), - (ephy_dbus_connect_to_session_bus), (ephy_dbus_disconnect_bus): - - Fix compilation with DBUS 0.3x. Patch by Raphaël Slinckx, fixes bug - #306565. - - ChangeLog | 8 ++++++++ - lib/ephy-dbus.c | 16 ++++++---------- - 2 files changed, 14 insertions(+), 10 deletions(-) - -commit 38eba2850bea786a4b99c14a07f638f0e6f94e3f -Author: Christian Persch -Date: Sun Jun 5 15:16:34 2005 +0000 - - Update from libegg. - - 2005-06-05 Christian Persch - - * lib/egg/eggtrayicon.c: (egg_tray_icon_manager_filter), - (egg_tray_icon_update_manager_window), - (egg_tray_icon_manager_window_destroyed), (egg_tray_icon_realize): - - Update from libegg. - - ChangeLog | 8 ++++++++ - lib/egg/eggtrayicon.c | 46 ++++++++++++++++++++++++++++++---------------- - 2 files changed, 38 insertions(+), 16 deletions(-) - -commit ff00767f95b3e47edee8dbe562e2efb4b0e7d41f -Author: Christian Persch -Date: Sun Jun 5 15:10:23 2005 +0000 - - Disable "gl", it's buggy. - - 2005-06-05 Christian Persch - - * LINGUAS: Disable "gl", it's buggy. - - po/ChangeLog | 4 ++++ - po/LINGUAS | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 7647db40c63f9b8d5a9aa8559b20fcc98f33f6c0 -Author: Takeshi AIHANA -Date: Sun Jun 5 14:15:45 2005 +0000 - - Updated Japanese translation for v1.7.1. - - 2005-06-05 Takeshi AIHANA - * ja.po: Updated Japanese translation for v1.7.1. - - po/ChangeLog | 4 + - po/ja.po | 1088 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 464 insertions(+), 628 deletions(-) - -commit c36b83a9578960c328a7e0aafd47a83cc22c57fd -Author: Christian Persch -Date: Sun Jun 5 13:17:41 2005 +0000 - - Add release marker - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit cbbc803e100a1424fd0db8bf04e0dad89c9fedaf -Author: Francisco Javier F. Serrador -Date: Sun Jun 5 12:47:18 2005 +0000 - - Updated Spanish translation. - - 2005-06-05 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 547 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 304 insertions(+), 247 deletions(-) - -commit bdb1473c923648cbc0f05dc78ed337502c5d75ef -Author: Christian Persch -Date: Sun Jun 5 09:43:55 2005 +0000 - - Post-release version bump. - - 2005-06-05 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit efcd0960fd775cb262f852f79edfcbbd75a33849 -Author: Christian Persch -Date: Sun Jun 5 09:41:42 2005 +0000 - - Version 1.7.1. - - 2005-06-05 Christian Persch - - Version 1.7.1. - - * Makefile.am: - - Add --enable-python to distcheck configure flags. - - * NEWS: - * configure.ac: - - Updated for version 1.7.1. - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EventContext.cpp: - - Fix warnings. - - * src/ephy-extensions-manager.c: (get_loader_for_type), - (load_extension): - - Fix --disable-python case. - - * src/Makefile.am: - - Fix make distcheck. - - ChangeLog | 27 +++++++++++++++++ - Makefile.am | 2 +- - NEWS | 35 ++++++++++++++++++++++ - configure.ac | 2 +- - doc/reference/tmpl/ephy-embed-persist.sgml | 4 +-- - doc/reference/tmpl/ephy-embed.sgml | 48 ++++++++++++++++++++++-------- - doc/reference/tmpl/ephy-node-db.sgml | 9 ------ - doc/reference/tmpl/ephy-window.sgml | 6 ++++ - doc/reference/tmpl/epiphany-unused.sgml | 17 +++++++++++ - embed/mozilla/EphyBrowser.cpp | 6 ++-- - embed/mozilla/EventContext.cpp | 4 ++- - src/Makefile.am | 1 + - src/ephy-extensions-manager.c | 8 +++-- - 13 files changed, 137 insertions(+), 32 deletions(-) - -commit cbf7d80c5be648d7d7610c5f63d31e8e84995d5d -Author: Christian Rose -Date: Sat Jun 4 23:58:32 2005 +0000 - - Changed the translation of stylesheet. - - 2005-06-05 Christian Rose - - * sv.po: Changed the translation of stylesheet. - - po/ChangeLog | 4 ++++ - po/sv.po | 18 +++++++++--------- - 2 files changed, 13 insertions(+), 9 deletions(-) - -commit 7144cfbeda560ee9dcf8522574defede4df18f98 -Author: Christian Persch -Date: Sat Jun 4 20:16:24 2005 +0000 - - Close find bar on mouse click in the embed. - - 2005-06-04 Christian Persch - - * src/ephy-find-toolbar.c: (tab_dom_mouse_click_cb), - (ephy_find_toolbar_set_embed): - - Close find bar on mouse click in the embed. - - ChangeLog | 7 +++++++ - src/ephy-find-toolbar.c | 18 ++++++++++++++++++ - 2 files changed, 25 insertions(+) - -commit 139a550279cc3289a426ccc9160605ec46955c38 -Author: Christian Rose -Date: Fri Jun 3 19:50:49 2005 +0000 - - Added Galician translation by Ignacio Casal Quinteiro - - 2005-06-03 Christian Rose - - * sv.po: Added Galician translation - by Ignacio Casal Quinteiro . - - po/ChangeLog | 5 + - po/LINGUAS | 2 +- - po/gl.po | 3695 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 3701 insertions(+), 1 deletion(-) - -commit 10be9715c8f213c02cdf714b7188b645e7f0f068 -Author: Jean-François Rameau -Date: Fri Jun 3 16:47:46 2005 +0000 - - Typo. - - 2005-06-03 Jean-François Rameau - - * embed/mozilla/EventContext.cpp: - - Typo. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit eeac7e657d86802e904337ffef1bf5a0341a8cd0 -Author: Christian Persch -Date: Fri Jun 3 13:42:34 2005 +0000 - - Don't open search toolbar on / or ' over formfields: - - 2005-06-03 Christian Persch - - Don't open search toolbar on / or ' over formfields: - - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - - New signal for searchable key presses. - - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - - Add static function to check if a keypress should be forwarded - to the search toolbar. - - * embed/mozilla/mozilla-embed.cpp: - - Emit the signal here. - - * lib/ephy-marshal.list: - * src/ephy-find-toolbar.c: (tab_search_key_press_cb), - (ephy_find_toolbar_set_embed): - - Use the new signal instead of dom-key-press. - - ChangeLog | 25 +++++++++++++++ - embed/ephy-embed.c | 18 +++++++++++ - embed/ephy-embed.h | 2 ++ - embed/mozilla/EventContext.cpp | 68 +++++++++++++++++++++++++++++++++++++++++ - embed/mozilla/EventContext.h | 2 ++ - embed/mozilla/mozilla-embed.cpp | 33 ++++++++++++++++++++ - lib/ephy-marshal.list | 1 + - src/ephy-find-toolbar.c | 42 +++++++++---------------- - 8 files changed, 164 insertions(+), 27 deletions(-) - -commit 822d2a28ff4c437e23043dc03adbb00ddde36e4d -Author: Jean-François Rameau -Date: Thu Jun 2 20:50:28 2005 +0000 - - Add code to handle area tags. Fix bug #152482 - - 2005-06-02 Jean-François Rameau - - * embed/mozilla/EventContext.cpp: (EventContext::GetEventContext): - - Add code to handle area tags. - Fix bug #152482 - - ChangeLog | 7 +++++ - embed/mozilla/EventContext.cpp | 63 ++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 70 insertions(+) - -commit c05ed5c9156eb0bede7b1ed088fdad8c28b2372a -Author: Jean-François Rameau -Date: Thu Jun 2 20:45:15 2005 +0000 - - nsEmbedString doesn't support Equals method. So add some bits to test two - - 2005-06-02 Jean-François Rameau - - * embed/mozilla/EphyUtils.h: - * embed/mozilla/EphyUtils.cpp: - - nsEmbedString doesn't support Equals method. So add some bits - to test two nsEmbedString. - See https://bugzilla.mozilla.org/show_bug.cgi?id=296286 - - ChangeLog | 9 +++++++++ - embed/mozilla/EphyUtils.cpp | 13 +++++++++++++ - embed/mozilla/EphyUtils.h | 2 ++ - 3 files changed, 24 insertions(+) - -commit 96b91da9e8c8ed73eb8bfcad0b360dc54481ead2 -Author: Adam Weinberger -Date: Thu Jun 2 15:31:35 2005 +0000 - - Updated Canadian English translation. - - - 2005-06-02 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 28 ++++++++++++++++++++++++---- - 2 files changed, 28 insertions(+), 4 deletions(-) - -commit 9bad75b60b731ab75c99b2b8e90cf7ee02321f64 -Author: Christian Persch -Date: Wed Jun 1 17:19:10 2005 +0000 - - Fix more signed/unsigned problems with gcc 4.0. Patch by Martin - - 2005-06-01 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (drag_data_get_cb), - (drag_data_received_cb): - * lib/egg/egg-toolbar-editor.c: (drag_data_get_cb), - (parse_item_list), (egg_toolbar_editor_load_actions): - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_to_xml), - (egg_toolbars_model_save), (parse_item_list), (parse_toolbars): - * src/ephy-notebook.c: - * src/ephy-window.c: - - Fix more signed/unsigned problems with gcc 4.0. Patch by Martin - Kretzschmar, bug #306169. - - ChangeLog | 14 ++++++++++++++ - lib/egg/egg-editable-toolbar.c | 8 +++++--- - lib/egg/egg-toolbar-editor.c | 11 ++++++----- - lib/egg/egg-toolbars-model.c | 42 +++++++++++++++++++++--------------------- - 4 files changed, 46 insertions(+), 29 deletions(-) - -commit cf4acf385ff54b405b0a582aa4bff2f32ff8d89a -Author: Christian Persch -Date: Wed Jun 1 10:45:31 2005 +0000 - - Updated. - - 2005-06-01 Christian Persch - - * POTFILES.in: Updated. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit f428ccd2c0cdfcdd1c89da62dc1b540cd332614b -Author: Adam Weinberger -Date: Wed Jun 1 08:45:23 2005 +0000 - - Updated Canadian English translation. - - - 2005-06-01 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 514 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 270 insertions(+), 248 deletions(-) - -commit 58467d9caf27116112d319a312d02da6a353905e -Author: Terance Sola -Date: Tue May 31 21:41:08 2005 +0000 - - Minor fix Minor fix - - 2005-05-31 Terance Sola - - * nb.po: Minor fix - * no.po: Minor fix - - po/ChangeLog | 5 +++++ - po/nb.po | 37 +++++++++++++++++++++++-------------- - po/no.po | 37 +++++++++++++++++++++++-------------- - 3 files changed, 51 insertions(+), 28 deletions(-) - -commit 1d39954f540498ca70f074526121c0895bd2aabd -Author: Terance Sola -Date: Tue May 31 21:15:40 2005 +0000 - - Updated Updated - - 2005-05-31 Terance Sola - - * nb.po: Updated - * no.po: Updated - - po/ChangeLog | 5 + - po/nb.po | 1145 ++++++++++++++++++++++++---------------------------------- - po/no.po | 1145 ++++++++++++++++++++++++---------------------------------- - 3 files changed, 955 insertions(+), 1340 deletions(-) - -commit a3700dedffb6657b0fed8643548b1f1d18de7553 -Author: Christian Persch -Date: Tue May 31 15:27:17 2005 +0000 - - Fix compile warning. - - 2005-05-31 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Fix compile warning. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 65d72dadd8762f9d86c2a1f28a4af0c8dc784973 -Author: Christian Persch -Date: Tue May 31 14:36:51 2005 +0000 - - Add scroll event listener, and change zoom on scroll+wheel events. - - 2005-05-31 Christian Persch - - * data/default-prefs-common.js: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - - Add scroll event listener, and change zoom on scroll+wheel events. - - * lib/ephy-zoom.c: (ephy_zoom_get_changed_zoom_level): - * lib/ephy-zoom.h: - - Fix signed/unsigned integer problems (underflow). - - ChangeLog | 13 ++++++++++ - data/default-prefs-common.js | 7 ++++-- - embed/mozilla/EphyBrowser.cpp | 55 +++++++++++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 10 ++++++++ - lib/ephy-zoom.c | 8 +++---- - lib/ephy-zoom.h | 5 ++-- - 6 files changed, 90 insertions(+), 8 deletions(-) - -commit 30457fd1bc79dfc4e2fc36a165de0abf1b1d5b77 -Author: Christian Persch -Date: Mon May 30 22:39:33 2005 +0000 - - Work around mozilla bug - - 2005-05-31 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_move_tab), - (move_tab_to_another_notebook), (button_release_cb): - * src/ephy-window.c: (update_tabs_menu_sensitivity): - - Work around mozilla bug - https://bugzilla.mozilla.org/show_bug.cgi?id=296002 by disallowing - tabs moves to a different window. Bug #303922. - - ChangeLog | 10 ++++++++++ - src/ephy-notebook.c | 9 +++++++++ - src/ephy-window.c | 6 ++++++ - 3 files changed, 25 insertions(+) - -commit da1e2abce4ee3f0d619dfb99573ecc563c266cdd -Author: Christian Persch -Date: Mon May 30 16:59:37 2005 +0000 - - Remove "Software Developers" checkbox from New CA dialogue. From bug - - 2005-05-30 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - - Remove "Software Developers" checkbox from New CA dialogue. - From bug #168295. - - ChangeLog | 7 +++++++ - embed/mozilla/GtkNSSDialogs.cpp | 11 +---------- - 2 files changed, 8 insertions(+), 10 deletions(-) - -commit 3c7def6311d1ed12cb2f9bf5732f678b9710f137 -Author: Alexander Shopov -Date: Mon May 30 13:41:22 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-05-30 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 7 +- - po/bg.po | 588 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 313 insertions(+), 282 deletions(-) - -commit b22ddd541aec144446ac24fe045ae6757fa0c0ed -Author: Christian Persch -Date: Mon May 30 12:56:52 2005 +0000 - - Don't erase the search term when opening the find bar with Ctrl-F. - - 2005-05-30 Christian Persch - - * src/ephy-find-toolbar.c: (tab_dom_key_press_cb), - (ephy_find_toolbar_open): - * src/ephy-find-toolbar.h: - * src/ephy-window.c: (ephy_window_find): - - Don't erase the search term when opening the find bar with Ctrl-F. - - ChangeLog | 9 +++++++++ - src/ephy-find-toolbar.c | 12 ++++++++---- - src/ephy-find-toolbar.h | 3 ++- - src/ephy-window.c | 2 +- - 4 files changed, 20 insertions(+), 6 deletions(-) - -commit 5aefdeff8343bb6b4cba2bc1f544683e84c73182 -Author: Christian Persch -Date: Sun May 29 16:38:04 2005 +0000 - - Don't special-case ' and / if the find bar is already active. - - 2005-05-29 Christian Persch - - * src/ephy-find-toolbar.c: (tab_dom_key_press_cb): - - Don't special-case ' and / if the find bar is already active. - - ChangeLog | 6 ++++++ - src/ephy-find-toolbar.c | 23 +++++++++++++---------- - 2 files changed, 19 insertions(+), 10 deletions(-) - -commit 87299e4f35efdde09a67fd530812725197bbc87c -Author: Christian Persch -Date: Sun May 29 16:11:06 2005 +0000 - - Deactivate typeaheadfind in print preview mode. - - 2005-05-29 Christian Persch - - * src/ephy-find-toolbar.c: (tab_dom_key_press_cb), - (entry_activate_cb), (sync_print_preview_mode), - (ephy_find_toolbar_set_window), (ephy_find_toolbar_get_property), - (ephy_find_toolbar_set_property), (ephy_find_toolbar_class_init), - (ephy_find_toolbar_new): - * src/ephy-find-toolbar.h: - * src/ephy-window.c: (ephy_window_init), - (ephy_window_set_print_preview), (ephy_window_get_is_popup), - (ephy_window_get_is_print_preview): - * src/ephy-window.h: - - Deactivate typeaheadfind in print preview mode. - - ChangeLog | 15 +++++++++ - src/ephy-find-toolbar.c | 81 +++++++++++++++++++++++++++++++++++++++++++++---- - src/ephy-find-toolbar.h | 2 +- - src/ephy-window.c | 34 +++++++++++++++------ - src/ephy-window.h | 2 ++ - 5 files changed, 117 insertions(+), 17 deletions(-) - -commit 2dfaf78cccff672362ae9f3bbf299da641851306 -Author: Christian Persch -Date: Sun May 29 14:53:55 2005 +0000 - - Only enable typeahead if we actually can do typeaheadfind. - - 2005-05-29 Christian Persch - - * src/ephy-find-toolbar.c: (ephy_find_toolbar_set_embed), - (ephy_find_toolbar_open): - - Only enable typeahead if we actually can do typeaheadfind. - - ChangeLog | 7 +++++++ - src/ephy-find-toolbar.c | 8 ++++++++ - 2 files changed, 15 insertions(+) - -commit 5b39b99462ae5b868bc8aae688255197e850d036 -Author: Christian Persch -Date: Sun May 29 14:46:18 2005 +0000 - - Allow ViewSource for XML documents too. Fixes bug #305788. - - 2005-05-29 Christian Persch - - * src/ephy-window.c: (sync_tab_document_type): - - Allow ViewSource for XML documents too. Fixes bug #305788. - - ChangeLog | 6 ++++++ - data/default-prefs-mozilla.js | 3 +++ - src/ephy-window.c | 5 +++-- - 3 files changed, 12 insertions(+), 2 deletions(-) - -commit 572d72e3739f3e1086544963a524ce74cffdbb3d -Author: Jean-François Rameau -Date: Sun May 29 14:29:02 2005 +0000 - - Add warnings: - when downloading to not writable directory, - when - - 2005-05-29 Jean-François Rameau - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): - - Add warnings: - - when downloading to not writable directory, - - when downloading to not writable file (overwrite). - Fixes bug #124236 - - ChangeLog | 9 ++++++++ - lib/ephy-gui.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++------- - 2 files changed, 73 insertions(+), 8 deletions(-) - -commit d4aa01ce84c7a63669577252d3cbe1cce2e0ac3a -Author: Christian Persch -Date: Sun May 29 09:17:47 2005 +0000 - - Update python bindings. - - 2005-05-29 Christian Persch - - * src/epiphany.defs: - - Update python bindings. - - ChangeLog | 6 ++++++ - src/epiphany.defs | 26 ++++++-------------------- - 2 files changed, 12 insertions(+), 20 deletions(-) - -commit 13f46b7e761523e0f53c34f5d51b50b051b4ad01 -Author: Christian Persch -Date: Sat May 28 23:13:29 2005 +0000 - - Disable mozilla's typeaheadfind. - - 2005-05-29 Christian Persch - - * data/default-prefs-common.js: - * data/default-prefs-toolkit.js: - - Disable mozilla's typeaheadfind. - - * src/ephy-find-toolbar.c: (get_find), (send_focus_change), - (tab_dom_key_press_cb), (entry_changed_cb), - (entry_preedit_changed_cb), (entry_key_press_event_cb), - (entry_activate_cb), (set_focus_cb), - (ephy_find_toolbar_grab_focus), (ephy_find_toolbar_init), - (ephy_find_toolbar_class_init), (ephy_find_toolbar_set_embed), - (ephy_find_toolbar_find_previous), (ephy_find_toolbar_open), - (ephy_find_toolbar_close): - * src/ephy-find-toolbar.h: - * src/ephy-window.c: (sync_tab_document_type), (ephy_window_init), - (ephy_window_set_print_preview), (ephy_window_find): - - Forward key events from the embed to the find toolbar. That way we can - typeaheadfind without losing focus. - - ChangeLog | 22 +++++ - data/default-prefs-common.js | 3 +- - data/default-prefs-toolkit.js | 2 +- - src/ephy-find-toolbar.c | 220 ++++++++++++++++++++++++++++++++++-------- - src/ephy-find-toolbar.h | 5 + - src/ephy-window.c | 15 +-- - 6 files changed, 220 insertions(+), 47 deletions(-) - -commit d0cc3530df347aed28b20fb884321a42b1b1958d -Author: Christian Persch -Date: Sat May 28 21:58:47 2005 +0000 - - Check for toolkit nsITypeAheadFind. - - 2005-05-28 Christian Persch - - * configure.ac: - - Check for toolkit nsITypeAheadFind. - - * embed/Makefile.am: - * embed/ephy-embed-factory.c: (ephy_embed_factory_new_object): - * embed/ephy-embed-find.c: (ephy_embed_find_set_embed), - (ephy_embed_find_set_properties), (ephy_embed_find_find), - (ephy_embed_find_find_again), (ephy_embed_find_get_type): - * embed/ephy-embed-find.h: - * embed/ephy-embed.c: - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EphyFind.cpp: - * embed/mozilla/EphyFind.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-find.cpp: - * embed/mozilla/mozilla-embed-find.h: - * embed/mozilla/mozilla-embed.cpp: - * src/bookmarks/ephy-bookmarks-import.c: - (gul_general_read_line_from_file): - * src/ephy-find-toolbar.c: (get_find), (set_controls), - (tab_content_changed_cb), (entry_changed_cb), - (ephy_find_toolbar_init), (ephy_find_toolbar_finalize), - (ephy_find_toolbar_class_init), (ephy_find_toolbar_new), - (ephy_find_toolbar_get_text), (ephy_find_toolbar_set_embed), - (ephy_find_toolbar_find_next), (ephy_find_toolbar_find_previous): - * src/ephy-find-toolbar.h: - * src/ephy-window.c: (ephy_window_set_active_tab), - (ephy_window_init), (ephy_window_get_find_toolbar), - (ephy_window_notebook_switch_page_cb): - * src/ephy-window.h: - * src/window-commands.c: (window_cmd_edit_find_next), - (window_cmd_edit_find_prev): - - Implement typeaheadfind for the find toolbar. - - ChangeLog | 40 ++++++++ - configure.ac | 17 +++- - embed/Makefile.am | 2 + - embed/ephy-embed-factory.c | 6 ++ - embed/ephy-embed-find.c | 93 +++++++++++++++++ - embed/ephy-embed-find.h | 77 ++++++++++++++ - embed/ephy-embed.c | 37 ------- - embed/ephy-embed.h | 15 --- - embed/mozilla/EphyBrowser.cpp | 30 ------ - embed/mozilla/EphyBrowser.h | 6 -- - embed/mozilla/EphyFind.cpp | 188 +++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyFind.h | 55 ++++++++++ - embed/mozilla/Makefile.am | 5 + - embed/mozilla/mozilla-embed-find.cpp | 175 ++++++++++++++++++++++++++++++++ - embed/mozilla/mozilla-embed-find.h | 57 +++++++++++ - embed/mozilla/mozilla-embed.cpp | 31 ------ - src/ephy-find-toolbar.c | 165 ++++++++++++++++++++---------- - src/ephy-find-toolbar.h | 15 +-- - src/ephy-window.c | 94 ++++-------------- - src/ephy-window.h | 2 + - src/window-commands.c | 17 ++-- - 21 files changed, 867 insertions(+), 260 deletions(-) - -commit 995f6539fb26444a0496b6311fecdbe9ad9cc8ff -Author: Christian Persch -Date: Sat May 28 21:04:49 2005 +0000 - - Check return value of fgets. - - 2005-05-28 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: - (gul_general_read_line_from_file): - - Check return value of fgets. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-import.c | 10 ++++++---- - 2 files changed, 13 insertions(+), 4 deletions(-) - -commit 10c97477f0a3ca8863bba42ec7c5a95985fe0313 -Author: Christian Persch -Date: Sat May 28 19:51:40 2005 +0000 - - Add python libs when building with python bindings. Fixes bug #305767. - - 2005-05-28 Christian Persch - - * doc/reference/Makefile.am: - - Add python libs when building with python bindings. Fixes bug #305767. - - ChangeLog | 6 ++++++ - doc/reference/Makefile.am | 8 ++++++++ - 2 files changed, 14 insertions(+) - -commit ed4d0f2ebcedabd15ebeb73408b69cd314fd1e86 -Author: Jean-François Rameau -Date: Sat May 28 19:00:56 2005 +0000 - - Get a temporary filename to save to only when needed. - - 2005-05-28 Jean-François Rameau - - * embed/mozilla/mozilla-embed-persist.cpp: (impl_save): - - Get a temporary filename to save to only when needed. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 28 ++++++++++++++-------------- - 2 files changed, 20 insertions(+), 14 deletions(-) - -commit a29f71709ee09ddce6da8ddd80c45b5311dd38b2 -Author: Christian Persch -Date: Sat May 28 13:46:28 2005 +0000 - - Check for new DBUS API. - - 2005-05-28 Christian Persch - - * configure.ac: - - Check for new DBUS API. - - * lib/ephy-dbus.c: (session_filter_func), (system_filter_func), - (ephy_dbus_connect_to_system_bus), - (ephy_dbus_connect_to_session_bus): - - Adapt to new DBUS API. Patch by Thom May, fixes bug #301153. - - ChangeLog | 12 ++++++++++++ - configure.ac | 23 ++++++++++++++++++++--- - lib/ephy-dbus.c | 18 ++++++++++++++++++ - 3 files changed, 50 insertions(+), 3 deletions(-) - -commit 72e83ac58129afa3706116830711d2a072f030c9 -Author: Funda Wang -Date: Sat May 28 09:40:04 2005 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 6 +- - po/zh_CN.po | 2171 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1090 insertions(+), 1087 deletions(-) - -commit 344b36582b89dc03299e62264a5ecf182ef636d4 -Author: Gustavo Noronha Silva -Date: Thu May 26 22:31:04 2005 +0000 - - translation update and simple fix - - po/ChangeLog | 6 + - po/pt_BR.po | 2187 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1097 insertions(+), 1096 deletions(-) - -commit fbfbfb22dbb749a0127126ddff9687bffd12a50c -Author: Christian Persch -Date: Thu May 26 13:38:33 2005 +0000 - - Automatically detect whether we have a mozilla debug build. - - 2005-05-26 Christian Persch - - * configure.ac: - - Automatically detect whether we have a mozilla debug build. - - ChangeLog | 6 ++++++ - configure.ac | 45 ++++++++++++++++++++++++++++++--------------- - 2 files changed, 36 insertions(+), 15 deletions(-) - -commit 84894172d70691e36c5ad914925d8d2a3546a05e -Author: Clytie Siddall -Date: Thu May 26 02:32:50 2005 +0000 - - vi.po: Updated Vietnamese translation.CVS: ---------------------------------------------------------------------- - - po/ChangeLog | 4 + - po/vi.po | 4294 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 2422 insertions(+), 1876 deletions(-) - -commit b2ad5e47dac73c5f3d98dcfb3ae14c817201681a -Author: Christian Persch -Date: Wed May 25 22:12:08 2005 +0000 - - Don't use (void). - - 2005-05-26 Christian Persch - - * embed/mozilla/EphyProtocolHandler.cpp: - * embed/mozilla/EphyProtocolHandler.h: - - Don't use (void). - - ChangeLog | 7 +++++++ - embed/mozilla/EphyProtocolHandler.cpp | 2 +- - embed/mozilla/EphyProtocolHandler.h | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit c951555722d4933277a1d468c6508f5ad34711b1 -Author: Christian Persch -Date: Wed May 25 22:08:01 2005 +0000 - - Add protocol handler, which I'll use for our custom error pages. Since - - 2005-05-26 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyProtocolHandler.cpp: - * embed/mozilla/EphyProtocolHandler.h: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozRegisterComponents.cpp: - - Add protocol handler, which I'll use for our custom error pages. - Since it's almost gratis, add about:epiphany back. - - ChangeLog | 17 +++ - Makefile.am | 1 + - embed/mozilla/ContentHandler.cpp | 1 + - embed/mozilla/EphyProtocolHandler.cpp | 181 ++++++++++++++++++++++++++++++ - embed/mozilla/EphyProtocolHandler.h | 58 ++++++++++ - embed/mozilla/EphyUtils.cpp | 3 + - embed/mozilla/EphyUtils.h | 9 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 1 + - embed/mozilla/GtkNSSDialogs.cpp | 1 + - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 4 +- - embed/mozilla/Makefile.am | 6 + - embed/mozilla/MozDownload.cpp | 2 + - embed/mozilla/MozRegisterComponents.cpp | 22 ++++ - 13 files changed, 301 insertions(+), 5 deletions(-) - -commit 2029610e09684f3dec57d3b00af6084f97699fe2 -Author: Christian Persch -Date: Wed May 25 21:43:52 2005 +0000 - - Default to accept cookies from current site only, not from anywhere. - - 2005-05-25 Christian Persch - - * data/epiphany.schemas.in: - - Default to accept cookies from current site only, not from anywhere. - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 3571a080a43a4c9e61791a78f7268ad06670d47c -Author: Christian Persch -Date: Wed May 25 21:42:47 2005 +0000 - - A src/ephy-find-toolbar.c: A src/ephy-find-toolbar.h: - - 2005-05-25 Christian Persch - - * embed/Makefile.am: - * embed/find-dialog.c: - * embed/find-dialog.h: - A src/ephy-find-toolbar.c: - A src/ephy-find-toolbar.h: - * src/ephy-window.c: (sync_tab_document_type), - (tab_content_changed_cb), (ephy_window_set_active_tab), - (ephy_window_dispose), (sync_find_toolbar_text_cb), - (find_toolbar_find_next_cb), (find_toolbar_find_previous_cb), - (find_toolbar_close_cb), (ephy_window_init), - (ephy_window_notebook_switch_page_cb), (ephy_window_find): - - Replace the find dialogue with a find toolbar. Work in progress; - no typeaheadfind yet. - - ChangeLog | 17 +++ - embed/Makefile.am | 2 - - embed/find-dialog.c | 390 ------------------------------------------------ - embed/find-dialog.h | 62 -------- - src/Makefile.am | 2 + - src/ephy-find-toolbar.c | 386 +++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-find-toolbar.h | 72 +++++++++ - src/ephy-window.c | 155 +++++++++++++------ - 8 files changed, 584 insertions(+), 502 deletions(-) - -commit 874ffe279950eaa51506884283452386a5de350b -Author: Christian Persch -Date: Tue May 24 11:37:17 2005 +0000 - - Enable error pages on Gecko 1.8. - - 2005-05-24 Christian Persch - - * data/Makefile.am: - * data/default-prefs-gecko-1-8.js: - - Enable error pages on Gecko 1.8. - - ChangeLog | 7 +++++++ - data/Makefile.am | 15 ++++++++++++--- - data/default-prefs-gecko-1-8.js | 2 ++ - 3 files changed, 21 insertions(+), 3 deletions(-) - -commit d43def89a5a693997c3b3804e24494eadc0e51bc -Author: Jean-François Rameau -Date: Mon May 23 08:43:08 2005 +0000 - - Windows opened from links are not always popups. Windows with menu bar - - 2005-05-23 Jean-François Rameau - - * src/ephy-shell.c: (ephy_shell_new_window_cb): - - Windows opened from links are not always popups. Windows - with menu bar toggled on are not considered as popups. - #304992 - - ChangeLog | 8 ++++++++ - src/ephy-shell.c | 8 +++++++- - 2 files changed, 15 insertions(+), 1 deletion(-) - -commit fa1b39fb2722ec0297cc61703a0bc9d95a20d9a3 -Author: Christian Persch -Date: Sun May 22 12:07:36 2005 +0000 - - Add check for h2def. - - 2005-05-22 Christian Persch - - * configure.ac: - - Add check for h2def. - - ChangeLog | 6 ++++++ - configure.ac | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 042f31fbd699ec5125a2e05f02c82d9e6f015558 -Author: Christian Persch -Date: Sat May 21 14:42:45 2005 +0000 - - Add features variable to the .pc file, so we can check for python and dbus - - 2005-05-21 Christian Persch - - * configure.ac: - * data/epiphany-1.8.pc.in: - - Add features variable to the .pc file, so we can check - for python and dbus from epiphany-extensions. - - ChangeLog | 8 ++++++++ - configure.ac | 5 +++++ - data/epiphany-1.8.pc.in | 1 + - 3 files changed, 14 insertions(+) - -commit 37e4cc15c39af9a10c7d0aaf46210c0d31db9e8e -Author: Christian Persch -Date: Sat May 21 13:58:23 2005 +0000 - - A README.Python A m4/.cvsignore: A m4/python.m4: - - 2005-05-21 Christian Persch - - * Makefile.am: - * configure.ac: - A README.Python - A m4/.cvsignore: - A m4/python.m4: - * src/Makefile.am: - * src/ephy-extensions-manager.c: (get_loader_for_type): - A src/ephy-python-extension.c: - A src/ephy-python-extension.h: - A src/ephy-python-loader.c: - A src/ephy-python-loader.h: - A src/ephy-python.c: - A src/ephy-python.h: - A src/epiphany.defs: - A src/epiphany.override: - - Merge Pyphany. - - AUTHORS | 3 + - ChangeLog | 20 + - Makefile.am | 4 +- - README.Python | 26 + - configure.ac | 124 +- - m4/.cvsignore | 2 + - m4/python.m4 | 62 + - src/Makefile.am | 91 +- - src/ephy-extensions-manager.c | 18 + - src/ephy-python-extension.c | 370 +++++ - src/ephy-python-extension.h | 59 + - src/ephy-python-loader.c | 143 ++ - src/ephy-python-loader.h | 59 + - src/ephy-python.c | 57 + - src/ephy-python.h | 32 + - src/epiphany.defs | 3044 +++++++++++++++++++++++++++++++++++++++++ - src/epiphany.override | 392 ++++++ - 17 files changed, 4498 insertions(+), 8 deletions(-) - -commit 97c1cd51ff1384591c7f137cb3075bc9fcb56dba -Author: Nikos Charonitakis -Date: Thu May 19 22:36:13 2005 +0000 - - Updated Greek translation (numbers-desktop-check) - - po/ChangeLog | 4 ++++ - po/el.po | 9 ++++++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit 9e46b8f13281f853f1c6ec38a6046b8ed8e63b66 -Author: Jean-François Rameau -Date: Sun May 15 21:41:24 2005 +0000 - - Update mime type list. check-mime.py now catches aliases from - - 2005-05-15 Jean-François Rameau - - * data/check-mime.py: - * data/mime-types-permissions.xml: - - Update mime type list. - check-mime.py now catches aliases from freedesktop.org.xml mime type database. - - ChangeLog | 8 ++++++++ - data/check-mime.py | 2 +- - data/mime-types-permissions.xml | 33 +++++++++++++++++++++++++++++++++ - 3 files changed, 42 insertions(+), 1 deletion(-) - -commit 26c0657a5dbb31e1e380645dffef2f71adcfe566 -Author: Christian Persch -Date: Sat May 14 20:19:51 2005 +0000 - - No need to have Init on the event listener classes, move that - - 2005-05-14 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - - No need to have Init on the event listener classes, move that - - ChangeLog | 8 ++++++ - embed/mozilla/EphyBrowser.cpp | 61 ++++--------------------------------------- - embed/mozilla/EphyBrowser.h | 26 +++++++++--------- - 3 files changed, 27 insertions(+), 68 deletions(-) - -commit 4a770ac2d3e35cfc5a32333001ebef8d45bce77f -Author: Christian Persch -Date: Sat May 14 19:33:02 2005 +0000 - - Drop support for mozilla < 1.7.5. - - 2005-05-14 Christian Persch - - * configure.ac: - * embed/mozilla/EphyBrowser.cpp: - - Drop support for mozilla < 1.7.5. - - ChangeLog | 7 +++++++ - configure.ac | 15 --------------- - embed/mozilla/EphyBrowser.cpp | 8 -------- - 3 files changed, 7 insertions(+), 23 deletions(-) - -commit 582f912720d98816c6b818dbb6188e0dd554386b -Author: Christian Persch -Date: Sat May 14 19:29:16 2005 +0000 - - Just replace the check for broken reload by HAVE_GECKO_1_8. - - 2005-05-14 Christian Persch - - * configure.ac: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Just replace the check for broken reload by HAVE_GECKO_1_8. - - ChangeLog | 9 +++++++++ - configure.ac | 14 -------------- - embed/mozilla/EphyBrowser.cpp | 4 ++-- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/mozilla-embed.cpp | 4 ++-- - 5 files changed, 14 insertions(+), 19 deletions(-) - -commit ba4b879234639d7f09edad158eadcd75540effd4 -Author: Iaki Larraaga -Date: Fri May 13 18:06:18 2005 +0000 - - Updated Basque translation. - - 2005-05-13 Iaki Larraaga - - * eu.po: Updated Basque translation. - - po/ChangeLog | 4 + - po/eu.po | 3409 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1637 insertions(+), 1776 deletions(-) - -commit 6a817a5731527cb9fd77524cdd2956eae6f794c2 -Author: Jean-François Rameau -Date: Thu May 12 21:53:05 2005 +0000 - - Add handling of DOMContentLoaded event from Gecko. It is an event that - - 2005-05-12 Jean-François Rameau - - * embed/ephy-embed.h: - * embed/ephy-embed.c: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EventContext.cpp: - - Add handling of DOMContentLoaded event from Gecko. - It is an event that Gecko throws when the dom’s content is loaded, - that is, before all the images and what not have loaded. - - ChangeLog | 11 +++++++++++ - embed/ephy-embed.c | 17 +++++++++++++++++ - embed/ephy-embed.h | 2 ++ - embed/mozilla/EphyBrowser.cpp | 31 +++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 8 ++++++++ - 5 files changed, 69 insertions(+) - -commit 58addfabc1ee4b84459117e2b73e575f9c792165 -Author: Christian Persch -Date: Thu May 12 15:50:46 2005 +0000 - - Add languages.h to NOINST_H_FILES. - - 2005-05-12 Christian Persch - - * src/Makefile.am: - - Add languages.h to NOINST_H_FILES. - - ChangeLog | 6 ++++++ - src/Makefile.am | 1 + - 2 files changed, 7 insertions(+) - -commit 394c9fee49c10a58fa3fd867b5469017f23c26f2 -Author: Alexander Shopov -Date: Thu May 12 06:50:02 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-05-12 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 9 ++++++-- - po/bg.po | 71 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 43 insertions(+), 37 deletions(-) - -commit a23f65fdb1d6695e9446d96897350905d6fa9a2c -Author: Nikos Charonitakis -Date: Wed May 11 22:58:27 2005 +0000 - - updated Greek translation - - po/ChangeLog | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit 8a2a261658de317862550f8cba46bb3273d461b4 -Author: Nikos Charonitakis -Date: Wed May 11 19:03:37 2005 +0000 - - Updated Greek translation - - po/el.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit ea13f09b931123f1236b2357f1393d8f9909b6ad -Author: Nikos Charonitakis -Date: Wed May 11 18:49:00 2005 +0000 - - Updated Greek translation - - po/el.po | 17 ++++++++--------- - 1 file changed, 8 insertions(+), 9 deletions(-) - -commit fb3620c3bc82a24cd51baaa52e1789036fae1813 -Author: Christian Persch -Date: Wed May 11 11:30:37 2005 +0000 - - Change string passed to gnome_program_init() as human readable program - - 2005-05-11 Christian Persch - - * src/ephy-main.c: (main): - - Change string passed to gnome_program_init() as human readable - program name. - - ChangeLog | 7 +++++++ - src/ephy-main.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit a8704b44f04b093837a4aa2c71d29c0a3e1df0f7 -Author: Kostas Papadimas -Date: Wed May 11 09:56:05 2005 +0000 - - Updated Greek Translation. - - po/ChangeLog | 4 + - po/el.po | 2340 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1207 insertions(+), 1137 deletions(-) - -commit db6332110ee1fa475515cfee88c57d5d0aa9ce1d -Author: Christian Persch -Date: Sun May 8 17:59:07 2005 +0000 - - More trusted checks. - - 2005-05-08 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EventContext.cpp: - - More trusted checks. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 18 ++++++++++++++++++ - embed/mozilla/EventContext.cpp | 18 ++++++++++++++++++ - 3 files changed, 43 insertions(+) - -commit 79f63d46a39524f075af29e753cc23e5e699ecb8 -Author: Francisco Javier F. Serrador -Date: Sat May 7 17:18:39 2005 +0000 - - Updated Spanish translation. - - 2005-05-07 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 142 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 77 insertions(+), 69 deletions(-) - -commit 939ee1bad5730c243ddf6ccf95a79163f5e0e08d -Author: Christian Persch -Date: Sat May 7 16:53:34 2005 +0000 - - Remove unused var - - embed/mozilla/EventContext.cpp | 2 -- - 1 file changed, 2 deletions(-) - -commit 9d21a63bf9b13e9b9bde07d9b1963540772dbfd8 -Author: Christian Persch -Date: Sat May 7 11:05:53 2005 +0000 - - Constification. - - 2005-05-07 Christian Persch - - * src/ephy-lockdown.c: - - Constification. - - ChangeLog | 6 ++++++ - src/ephy-lockdown.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 61447fb382b2ec83ba1ec4dc893f042efd728d5c -Author: Christian Persch -Date: Fri May 6 19:11:42 2005 +0000 - - Slight performance improvements. - - 2005-05-06 Christian Persch - - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - - Slight performance improvements. - - ChangeLog | 7 ++++ - embed/mozilla/EventContext.cpp | 90 ++++++++++++++++++++++++++++++------------ - embed/mozilla/EventContext.h | 13 ++++++ - 3 files changed, 85 insertions(+), 25 deletions(-) - -commit c890cd0c5430f702d07bc3112ac5350af601a952 -Author: Christian Persch -Date: Fri May 6 18:21:07 2005 +0000 - - Use the document's URL as tab address, not the info from the location - - 2005-05-06 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * src/ephy-tab.c: (ephy_tab_address_cb): - - Use the document's URL as tab address, not the info from the - location changed signal. - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyBrowser.cpp | 11 ++++++++++- - src/ephy-tab.c | 9 +++++++-- - 3 files changed, 25 insertions(+), 3 deletions(-) - -commit a6fbb67bc18d33fb73337c88b9e1ab05ad9a5893 -Author: Christian Persch -Date: Fri May 6 18:16:43 2005 +0000 - - Set MozDownload as progress listener on the web browser persist. - - 2005-05-06 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Set MozDownload as progress listener on the web browser persist. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 3 +++ - 2 files changed, 9 insertions(+) - -commit a6dfa12b0587d65d8015fbaef94fce453db10148 -Author: Christian Persch -Date: Fri May 6 18:15:29 2005 +0000 - - Use nsICancelable. - - 2005-05-06 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: - - Use nsICancelable. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 9 +++++++++ - 2 files changed, 15 insertions(+) - -commit e03b3fa839387e8316632e15c39290095417f7c2 -Author: Vincent van Adrighem -Date: Fri May 6 16:54:15 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-05-06 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 ++ - po/nl.po | 128 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 63 insertions(+), 69 deletions(-) - -commit e0273e6cf13d88db4af3c31a71e23780a706ba7b -Author: Christian Persch -Date: Fri May 6 14:47:28 2005 +0000 - - Use new way to add user agent info. Fixes bug #173000. - - 2005-05-06 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Use new way to add user agent info. Fixes bug #173000. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 11 +++++++++-- - 2 files changed, 15 insertions(+), 2 deletions(-) - -commit ac9c396df1323960ea05ed345a4c92a3229b962e -Author: Miloslav Trmac -Date: Fri May 6 09:01:38 2005 +0000 - - Updated Czech translation. - - 2005-05-06 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 2146 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 919 insertions(+), 1231 deletions(-) - -commit 0cf70dacf620b65ca58a8e15a18f6894cda17635 -Author: Adam Weinberger -Date: Thu May 5 20:53:40 2005 +0000 - - Updated Canadian English translation. - - 2005-05-05 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 1741 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 867 insertions(+), 878 deletions(-) - -commit 39d6c68acf69f08e5d141b6a2fc91c003a5f594c -Author: Christian Persch -Date: Thu May 5 12:55:11 2005 +0000 - - Thanks to the fastback patch, we can now get the secure browser UI object - - 2005-05-05 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/MozRegisterComponents.cpp: - - Thanks to the fastback patch, we can now get the secure browser UI - object from the docshell. - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyBrowser.cpp | 12 ++++++++++-- - embed/mozilla/MozRegisterComponents.cpp | 8 ++++---- - 3 files changed, 22 insertions(+), 6 deletions(-) - -commit 7e6e562f008531e7197bf71c4526d4d49f040766 -Author: Alexander Shopov -Date: Wed May 4 13:06:17 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-05-04 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 1068 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 541 insertions(+), 532 deletions(-) - -commit f93b953e2ad35cd3fe8a8fe25ae67f20987b7188 -Author: Christian Persch -Date: Wed May 4 11:50:04 2005 +0000 - - Fix comment - - data/epiphany.schemas.in | 1 - - 1 file changed, 1 deletion(-) - -commit 64fa4d0e746593006d5627bfbc5cac0a684a0125 -Author: Vincent van Adrighem -Date: Wed May 4 11:03:58 2005 +0000 - - Translation updated. - - 2005-05-04 Vincent van Adrighem - - * nl.po: Translation updated. - - po/ChangeLog | 4 + - po/nl.po | 2247 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1134 insertions(+), 1117 deletions(-) - -commit 48c16a1a940cef847a0a13cdee05af161aab779b -Author: Christian Persch -Date: Wed May 4 10:26:33 2005 +0000 - - Fix the build from the last commit. - - 2005-05-04 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: - - Fix the build from the last commit. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 12 +++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit 954cb894311967a218ae96b759c00d1a9e120661 -Author: Adam Weinberger -Date: Wed May 4 05:24:38 2005 +0000 - - Updated Canadian English translation. - - 2005-05-04 Adam Weinberger - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 2055 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 935 insertions(+), 1124 deletions(-) - -commit a8903de9c29718f69cb5f847725ca09688e50474 -Author: Christian Persch -Date: Tue May 3 18:49:32 2005 +0000 - - Use the web navigation to get the URI, not the document. Fixes bug - - 2005-05-03 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Use the web navigation to get the URI, not the document. - Fixes bug #301044. - - ChangeLog | 9 ++++++++ - embed/mozilla/EphyBrowser.cpp | 48 ++++++++++++++++------------------------- - embed/mozilla/EphyBrowser.h | 4 ++-- - embed/mozilla/mozilla-embed.cpp | 24 +++++++++++++-------- - 4 files changed, 45 insertions(+), 40 deletions(-) - -commit f4c20450ae05f307f3ccc9b673929c5759685ced -Author: Francisco Javier F. Serrador -Date: Tue May 3 09:00:48 2005 +0000 - - Updated Spanish translation. - - 2005-05-03 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 982 +++++++++++++++++++++++------------------------------------ - 2 files changed, 382 insertions(+), 604 deletions(-) - -commit 5aa95682485eebaa5288510764de0576d3d3e779 -Author: Christian Persch -Date: Sun May 1 19:50:36 2005 +0000 - - A src/languages.h: - - 2005-05-01 Christian Persch - - * data/default-prefs-common.js: - * data/epiphany.schemas.in: - * lib/ephy-langs.c: - A src/languages.h: - * src/prefs-dialog.c: (prefs_dialog_show_help), - (create_language_section), (get_download_button_label), - (prefs_dialog_init): - - Add more font languages, and generate the language list - from the unicode supplemental data. - - * lib/ephy-dialog.c: - * lib/ephy-dialog.h: - * src/prefs-dialog.c: - * src/pdm-dialog.c: - - Constification. - - ChangeLog | 1 + - lib/ephy-langs.c | 39 +++++++++++++++++++++++++++++++++++---- - src/pdm-dialog.c | 2 +- - 3 files changed, 37 insertions(+), 5 deletions(-) - -commit e7d3de6ca1957c42c780d07473e76898a573c796 -Author: Christian Persch -Date: Sun May 1 19:48:05 2005 +0000 - - A src/languages.h: - - 2005-05-01 Christian Persch - - * data/default-prefs-common.js: - * data/epiphany.schemas.in: - * lib/ephy-langs.c: - A src/languages.h: - * src/prefs-dialog.c: (prefs_dialog_show_help), - (create_language_section), (get_download_button_label), - (prefs_dialog_init): - - Add more font languages, and generate the language list - from the unicode supplemental data. - - * lib/ephy-dialog.c: - * lib/ephy-dialog.h: - * src/prefs-dialog.c: - - Constification. - - ChangeLog | 19 ++ - data/default-prefs-common.js | 18 ++ - data/epiphany.schemas.in | 3 +- - lib/ephy-dialog.c | 2 +- - lib/ephy-dialog.h | 2 +- - src/languages.h | 550 +++++++++++++++++++++++++++++++++++++++++++ - src/prefs-dialog.c | 203 +--------------- - 7 files changed, 601 insertions(+), 196 deletions(-) - -commit 165179754e9c3a75b1c5405dd14dc6ea6939dca3 -Author: Christian Persch -Date: Sun May 1 14:04:24 2005 +0000 - - Simplify the class info implementation for EphySidebar. - - 2005-05-01 Christian Persch - - * embed/mozilla/EphySidebar.cpp: - * embed/mozilla/EphySidebar.h: - * embed/mozilla/MozRegisterComponents.cpp: - - Simplify the class info implementation for EphySidebar. - - ChangeLog | 8 +++ - embed/mozilla/EphySidebar.cpp | 91 +-------------------------------- - embed/mozilla/EphySidebar.h | 3 +- - embed/mozilla/MozRegisterComponents.cpp | 13 ++++- - 4 files changed, 21 insertions(+), 94 deletions(-) - -commit acb714c91f67a95851bada8d1c272e52b579f3ab -Author: Christian Persch -Date: Tue Apr 26 12:15:50 2005 +0000 - - Try to fix crash in toolbar editor with X composite extension. Should fix - - 2005-04-26 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (new_pixbuf_from_widget): - - Try to fix crash in toolbar editor with X composite extension. Should fix bug - #159767, patch by Colin Gibbs from Control Centre bug #152490. - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 02cf429a553ed39f8389a8c93ba667305162a9aa -Author: Christian Persch -Date: Tue Apr 26 12:09:52 2005 +0000 - - Fix filepicker check. - - 2005-04-26 Christian Persch - - * configure.ac: - - Fix filepicker check. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit cf8d507e4c6272a5e3f1b2a65724f1938d7d246d -Author: Christian Persch -Date: Tue Apr 26 12:01:39 2005 +0000 - - Ged rid of all API checks which check for 1.8-only API, and introduce a - - 2005-04-26 Christian Persch - - * configure.ac: - - Ged rid of all API checks which check for 1.8-only API, and introduce - a Gecko version check instead. - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - * embed/mozilla/mozilla-download.cpp: - - Fix for mozilla API change, and use the new HAVE_GECKO_1_8 define - where appropriate. - - ChangeLog | 19 +++++ - configure.ac | 144 ++++++--------------------------- - embed/mozilla/ContentHandler.cpp | 20 ++--- - embed/mozilla/ContentHandler.h | 4 +- - embed/mozilla/EventContext.cpp | 6 +- - embed/mozilla/GlobalHistory.cpp | 2 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 22 ++--- - embed/mozilla/MozDownload.cpp | 117 ++++++++++++++++++--------- - embed/mozilla/MozDownload.h | 52 +++++++----- - embed/mozilla/mozilla-download.cpp | 3 +- - 10 files changed, 184 insertions(+), 205 deletions(-) - -commit dbf352aded24013b511267d19c82fa017846ea73 -Author: Christian Persch -Date: Sun Apr 24 12:39:12 2005 +0000 - - Replaces all %s in smartbookmarks. Fixes bug #167319, patch by Raphael - - 2005-04-24 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_solve_smart_url): - - Replaces all %s in smartbookmarks. Fixes bug #167319, patch by - Raphael Slinckx. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks.c | 12 +++++++----- - 2 files changed, 14 insertions(+), 5 deletions(-) - -commit 0321e0c109de8225a82868cb1dc8cfb5455a544f -Author: Christian Persch -Date: Tue Apr 19 11:14:42 2005 +0000 - - More constification. - - 2005-04-19 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (create_dock): - * lib/egg/egg-toolbar-editor.c: (editor_create_item), - (update_editor_sheet): - * lib/ephy-file-helpers.c: (ephy_file): - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_construct_contents): - * lib/widgets/ephy-node-view.c: (ephy_node_view_enable_drag_dest), - (ephy_node_view_enable_drag_source): - * lib/widgets/ephy-node-view.h: - * src/ephy-encoding-menu.c: (ephy_encoding_menu_set_window): - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/ephy-main.c: - * src/ephy-notebook.c: (ephy_notebook_init), - (ephy_notebook_add_tab): - * src/ppview-toolbar.c: - * src/window-commands.c: (window_cmd_help_about): - - More constification. - - ChangeLog | 21 +++++++++++++++++++++ - lib/egg/egg-editable-toolbar.c | 5 ++--- - lib/egg/egg-toolbar-editor.c | 10 ++++------ - lib/ephy-file-helpers.c | 8 ++++---- - lib/widgets/ephy-location-entry.c | 5 ++--- - lib/widgets/ephy-node-view.c | 4 ++-- - lib/widgets/ephy-node-view.h | 4 ++-- - src/ephy-encoding-menu.c | 10 ++++------ - src/ephy-history-window.c | 17 +++++++---------- - src/ephy-main.c | 6 +++--- - src/ephy-notebook.c | 7 +++---- - src/ppview-toolbar.c | 16 ++++++++-------- - src/window-commands.c | 5 ++--- - 13 files changed, 64 insertions(+), 54 deletions(-) - -commit 11a2169cd187c06da6068cd8fa5f725202c680d4 -Author: Christian Persch -Date: Tue Apr 19 10:36:05 2005 +0000 - - Iso-codes is now mandatory. - - 2005-04-19 Christian Persch - - * configure.ac: - * lib/ephy-langs.c: (ephy_langs_iso_3166_table): - * src/prefs-dialog.c: (prefs_dialog_finalize), - (get_name_for_lang_code), (setup_add_language_dialog), - (create_language_section): - - Iso-codes is now mandatory. - - ChangeLog | 10 +++++ - configure.ac | 2 + - lib/ephy-langs.c | 6 --- - src/prefs-dialog.c | 119 +---------------------------------------------------- - 4 files changed, 13 insertions(+), 124 deletions(-) - -commit af383e7037101bcbe21e3da8f33159a66839a220 -Author: Christian Persch -Date: Tue Apr 19 10:31:36 2005 +0000 - - Use gtk_action_set_[sensitive|visible] instead of g_object_set. - - 2005-04-19 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu): - * src/ephy-encoding-menu.c: (update_encoding_menu_cb): - * src/ephy-history-window.c: (ephy_history_window_update_menu): - * src/ephy-toolbar.c: (ephy_toolbar_set_zoom): - * src/ephy-window.c: (update_edit_actions_sensitivity), - (enable_edit_actions_sensitivity), (sync_tab_load_status), - (sync_tab_zoom), (show_embed_popup), - (update_tabs_menu_sensitivity): - * src/ppview-toolbar.c: (toolbar_update_sensitivity): - - Use gtk_action_set_[sensitive|visible] instead of g_object_set. - - ChangeLog | 15 +++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 26 +++++++++--------- - src/ephy-encoding-menu.c | 2 +- - src/ephy-history-window.c | 22 +++++++-------- - src/ephy-toolbar.c | 6 ++--- - src/ephy-window.c | 50 +++++++++++++++++++++-------------- - src/ppview-toolbar.c | 8 +++--- - 7 files changed, 76 insertions(+), 53 deletions(-) - -commit 033f0ac34a64aebbfb42878d0243b08c631e8042 -Author: Christian Persch -Date: Tue Apr 19 09:37:13 2005 +0000 - - A src/ephy-action-helper.c: A src/ephy-action-helper.h: A - - 2005-04-19 Christian Persch - - * lib/ephy-prefs.h: - * src/Makefile.am: - A src/ephy-action-helper.c: - A src/ephy-action-helper.h: - A src/ephy-lockdown.c: - A src/ephy-lockdown.h: - * src/ephy-shell.c: (ephy_shell_finalize), - (ephy_shell_get_lockdown), (ephy_shell_get_extensions_manager): - * src/ephy-tab.c: (ephy_tab_set_location): - * src/ephy-toolbar.c: (ephy_toolbar_set_window), - (ephy_toolbar_set_navigation_actions), (ephy_toolbar_finalize): - * src/ephy-window.c: (sync_tab_document_type), - (sync_tab_navigation), (sync_tab_load_status), (show_embed_popup), - (update_tabs_menu_sensitivity), (ephy_window_set_is_popup), - (ephy_window_dispose), (ephy_window_state_event), - (ephy_window_class_init), (ephy_window_init), - (ephy_window_constructor): - * src/popup-commands.c: - - Move lockdown from EphyWindow into an internal extension. - - ChangeLog | 23 +++ - lib/ephy-prefs.h | 2 + - src/Makefile.am | 4 + - src/ephy-action-helper.c | 55 ++++++++ - src/ephy-action-helper.h | 34 +++++ - src/ephy-lockdown.c | 358 +++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-lockdown.h | 58 ++++++++ - src/ephy-shell.c | 39 ++++++ - src/ephy-tab.c | 2 +- - src/ephy-toolbar.c | 64 ++------- - src/ephy-window.c | 267 ++++++++--------------------------- - src/popup-commands.c | 2 - - 12 files changed, 644 insertions(+), 264 deletions(-) - -commit 4811c10fff061605fbb8b99a2b535250530eea9f -Author: Christian Persch -Date: Mon Apr 18 19:04:03 2005 +0000 - - Fix crash on 64bit architectures when downloading. Fixes bug #301093, - - 2005-04-18 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: - - Fix crash on 64bit architectures when downloading. - Fixes bug #301093, patch by Sjoerd Simons. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit b888a1bb82d3a57cf064c98e5ca548b759b31bea -Author: Gabor Kelemen -Date: Mon Apr 18 16:42:42 2005 +0000 - - Hungarian translation updated. - - 2005-04-18 Gabor Kelemen - - * hu.po: Hungarian translation updated. - - po/ChangeLog | 4 + - po/hu.po | 1869 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 925 insertions(+), 948 deletions(-) - -commit 7a23d5fb25b5675ef1a952abe4e7d43f62b3cd8d -Author: Christian Persch -Date: Mon Apr 18 14:53:54 2005 +0000 - - Constify the action entries. Fixes bug #301065, patch by Paolo Borelli. - - 2005-04-18 Christian Persch - - * src/ephy-window.c: (setup_ui_manager): - - Constify the action entries. Fixes bug #301065, patch by - Paolo Borelli. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 15 ++++++--------- - 2 files changed, 13 insertions(+), 9 deletions(-) - -commit ab2413f51a0497c1ac4f99569fdb725ccdcbb3cd -Author: Christian Persch -Date: Mon Apr 18 12:32:05 2005 +0000 - - Hide the statusbar's resize grip when the window is maximised. Fixes bug - - 2005-04-18 Christian Persch - - * src/ephy-window.c: (ephy_window_state_event), - (ephy_window_class_init), (ephy_window_init): - - Hide the statusbar's resize grip when the window is maximised. - Fixes bug #301048, patchy by Paolo Borelli. - - ChangeLog | 8 +++++ - src/ephy-window.c | 96 +++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 65 insertions(+), 39 deletions(-) - -commit 3b2f2f484313c6b68666913d22a1d1cffe1fdf86 -Author: Christian Persch -Date: Mon Apr 18 12:21:07 2005 +0000 - - Also disallow opening a new tab from EphyLink iface in popup mode. - - 2005-04-18 Christian Persch - - * src/ephy-window.c: (ephy_window_open_link): - - Also disallow opening a new tab from EphyLink iface in popup mode. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit ffdcb7ffd0191129ccee3d377cae306c81b10594 -Author: Christian Persch -Date: Sun Apr 17 19:39:00 2005 +0000 - - Rework popup windows. Introduce "is-popup" property on EphyWindow to - - 2005-04-17 Christian Persch - - * src/ephy-automation.c: - (impl_ephy_automation_loadUrlWithStartupId): - * src/ephy-notebook.c: (ephy_notebook_set_dnd_enabled), - (ephy_notebook_get_property), (ephy_notebook_set_property), - (ephy_notebook_class_init), (move_tab_to_another_notebook), - (button_press_cb), (ephy_notebook_init): - * src/ephy-notebook.h: - * src/ephy-session.c: (ephy_session_get_active_window): - * src/ephy-shell.c: (ephy_shell_new_window_cb), - (ephy_shell_new_tab_full), (ephy_shell_new_tab): - * src/ephy-shell.h: - * src/ephy-tab.c: (ephy_tab_class_init), - (popups_manager_new_window_info), (ephy_tab_dispose), - (ephy_tab_finalize), (let_me_resize_hack), (ephy_tab_set_size), - (ephy_tab_init): - * src/ephy-tab.h: - * src/ephy-window.c: (get_chromes_visibility), - (sync_chromes_visibility), (update_chromes_actions), - (update_actions_sensitivity), (sync_tab_visibility), - (show_embed_popup), (let_me_resize_hack), (tab_size_to_cb), - (ephy_window_set_active_tab), (ephy_window_set_chrome), - (ephy_window_set_is_popup), (ephy_window_dispose), - (ephy_window_set_property), (ephy_window_get_property), - (ephy_window_class_init), (ephy_window_init), - (ephy_window_constructor), (ephy_window_new_with_chrome), - (ephy_window_set_print_preview), (ephy_window_add_tab), - (ephy_window_show), (ephy_window_view_popup_windows_cb), - (ephy_window_get_is_popup): - * src/ephy-window.h: - - Rework popup windows. Introduce "is-popup" property on EphyWindow to - indicate a window who will only have one tab, and can be resized by - javascript calls. Fixes bug #136288 and #155395. - - ChangeLog | 36 +++++++ - src/ephy-automation.c | 2 +- - src/ephy-notebook.c | 100 +++++++++++++++-- - src/ephy-notebook.h | 3 + - src/ephy-session.c | 14 +-- - src/ephy-shell.c | 9 +- - src/ephy-shell.h | 1 + - src/ephy-tab.c | 153 +++++++++++++++----------- - src/ephy-tab.h | 4 + - src/ephy-window.c | 294 +++++++++++++++++++++++++++++++++++++------------- - src/ephy-window.h | 5 +- - 11 files changed, 470 insertions(+), 151 deletions(-) - -commit 7b8fb927ca8c223ba51294bf52ab865b067bd774 -Author: Christian Persch -Date: Sun Apr 17 14:05:17 2005 +0000 - - Add null check. - - 2005-04-17 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: - - Add null check. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 2 ++ - 2 files changed, 8 insertions(+) - -commit 62572e9e1ac7ec9d470b454f6aa04c8aa3d6d2ba -Author: Christian Persch -Date: Sun Apr 17 11:12:15 2005 +0000 - - Mozilla API change. - - 2005-04-17 Christian Persch - - * configure.ac: - * embed/mozilla/ContentHandler.cpp: - - Mozilla API change. - - ChangeLog | 7 +++++++ - configure.ac | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 9 +++++++++ - 3 files changed, 23 insertions(+) - -commit 44532e7b137fc3f5d81677003ce53cf8017e825f -Author: Alexander Shopov -Date: Sun Apr 17 08:32:46 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-04-17 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 703 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 349 insertions(+), 359 deletions(-) - -commit 25ce0a3471e39b5f832a0db85ced9cf672013cea -Author: Kwok-Koon Cheung -Date: Sat Apr 16 23:19:17 2005 +0000 - - Updated traditional Chinese translation from GNOME HK Team - - * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team - - po/ChangeLog | 4 + - po/zh_TW.po | 459 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 225 insertions(+), 238 deletions(-) - -commit 5224146ba1ddd201497dc1342e0f6ae5f5821152 -Author: Christian Persch -Date: Wed Apr 13 10:58:39 2005 +0000 - - Don't add libglade-2 twice to PKG_CHECK_MODULES. Fixes bug #300452, patch - - 2005-04-13 Christian Persch - - * configure.ac: - - Don't add libglade-2 twice to PKG_CHECK_MODULES. Fixes - bug #300452, patch by James Henstridge. - - ChangeLog | 7 +++++++ - configure.ac | 1 - - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 75a519506de74b75ba00982bb654bca023026731 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Apr 13 04:49:37 2005 +0000 - - ankit@redhat.com * Updated Gujarati Translation - - po/ChangeLog | 4 ++++ - po/gu.po | 9 +++++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit 48e7c590e918a5bbba07870ad8e34bdb6da752a8 -Author: Pauli Virtanen -Date: Mon Apr 11 20:00:39 2005 +0000 - - Fixed #173163. - - 2005-04-11 Pauli Virtanen - - * fi.po: Fixed #173163. - - po/ChangeLog | 4 + - po/fi.po | 2010 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1019 insertions(+), 995 deletions(-) - -commit e0254a07fa203513add81a0292b45638fc467b8a -Author: Christian Persch -Date: Mon Apr 11 17:11:53 2005 +0000 - - Add 'video/mp4' to safe list. - - 2005-04-11 Christian Persch - - * data/mime-types-permissions.xml: - - Add 'video/mp4' to safe list. - - ChangeLog | 6 ++++++ - data/mime-types-permissions.xml | 1 + - 2 files changed, 7 insertions(+) - -commit f0b8b45d005528182019a938b69147429c0c0c57 -Author: Francisco Javier F. Serrador -Date: Sun Apr 10 21:02:50 2005 +0000 - - Fixed Bug 173162: epiphany: translation inconsistency - - 2005-04-10 Francisco Javier F. Serrador - - * es.po: Fixed Bug 173162: epiphany: translation inconsistency - - po/ChangeLog | 4 + - po/es.po | 534 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 267 insertions(+), 271 deletions(-) - -commit 36dbd0e5b656c62c8a0860f668c313cf3ae010de -Author: Christian Persch -Date: Sun Apr 10 19:28:10 2005 +0000 - - Restore original URL when pressing ESC. Fixes bug #171179. - - 2005-04-10 Christian Persch - - * lib/widgets/ephy-location-entry.c: (entry_key_press_cb), - (ephy_location_entry_construct_contents), - (ephy_location_entry_get_location), - (ephy_location_entry_restore_location): - * lib/widgets/ephy-location-entry.h: - - Restore original URL when pressing ESC. Fixes bug #171179. - - ChangeLog | 10 ++++++++++ - lib/widgets/ephy-location-entry.c | 32 ++++++++++++++++++++++++++++++++ - lib/widgets/ephy-location-entry.h | 2 ++ - 3 files changed, 44 insertions(+) - -commit b53d58efcee1ef734894b4b7d27afe9535f9e922 -Author: Christian Persch -Date: Sun Apr 10 11:51:48 2005 +0000 - - Remove unused function ephy_node_db_get_by_name(), and clean up a bit. - - 2005-04-10 Christian Persch - - * lib/ephy-node-db.c: (ephy_node_db_get_property), - (ephy_node_db_set_property), (ephy_node_db_finalize), - (ephy_node_db_write_to_xml_safe), (ephy_node_db_class_init), - (ephy_node_db_get_type): - - Remove unused function ephy_node_db_get_by_name(), and - clean up a bit. - - ChangeLog | 10 ++++ - lib/ephy-node-db.c | 170 +++++++++++++++++++---------------------------------- - lib/ephy-node-db.h | 2 - - 3 files changed, 72 insertions(+), 110 deletions(-) - -commit 7542888f38a33adf2053ba28881efd5c884eb7c5 -Author: Changwoo Ryu -Date: Sun Apr 10 00:17:05 2005 +0000 - - Consistency with the control center. Fix #173165. - - 2005-04-10 Changwoo Ryu - - * ko.po: Consistency with the control center. Fix #173165. - - po/ChangeLog | 4 ++++ - po/ko.po | 12 +++++------- - 2 files changed, 9 insertions(+), 7 deletions(-) - -commit 362684154b565935fbe80d45a421aa3ce18ff3a7 -Author: Christian Persch -Date: Sat Apr 9 21:48:20 2005 +0000 - - Re-use the strings from control centre domain, to make it consistent - - 2005-04-09 Christian Persch - - * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_constructor): - - Re-use the strings from control centre domain, to make it consistent - automatically. - - ChangeLog | 7 +++++++ - src/ephy-toolbar-editor.c | 46 ++++++++++++++++++++++++++-------------------- - 2 files changed, 33 insertions(+), 20 deletions(-) - -commit 4f8e3c039bc6fc01e99deeb78645376f2a8b9a18 -Author: Artur Flinta -Date: Sat Apr 9 17:39:07 2005 +0000 - - Updated Polish translation by GNOME PL Team. - - 2005-04-09 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 1809 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 915 insertions(+), 898 deletions(-) - -commit 266f2deff86c11774104062f041e585ab7024756 -Author: Laurent Dhima -Date: Sat Apr 9 14:54:41 2005 +0000 - - Updated Albanian translation. - - 2005-04-09 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++ - po/sq.po | 144 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 70 insertions(+), 78 deletions(-) - -commit e11d0fe80bba139c6e43b7c43c775e03f4f452b1 -Author: Danilo Šegan -Date: Sat Apr 9 14:49:18 2005 +0000 - - Small update of Serbian translations. - - po/ChangeLog | 4 ++++ - po/sr.po | 4 ++-- - po/sr@Latn.po | 4 ++-- - 3 files changed, 8 insertions(+), 4 deletions(-) - -commit d65aca31fe44dde0df5705e87c2ba8b50cd387a2 -Author: Danilo Šegan -Date: Sat Apr 9 14:45:10 2005 +0000 - - Fix #173173 in Serbian translations. - - po/ChangeLog | 4 + - po/sr.po | 1883 +++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 1883 +++++++++++++++++++++++++++++---------------------------- - 3 files changed, 1936 insertions(+), 1834 deletions(-) - -commit 271f6c3b195f5d69e974bcdd571ddf9d78bc0ee2 -Author: Pawan Chitrakar -Date: Sat Apr 9 10:18:22 2005 +0000 - - Updated Nepali Translation - - 2005-04-09 Pawan Chitrakar - - * ne.po: Updated Nepali Translation - - po/ChangeLog | 4 + - po/ne.po | 4104 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 2236 insertions(+), 1872 deletions(-) - -commit 9d0a365d70d7581ede235bfd567179f136f67e85 -Author: Ahmad Riza H Nst -Date: Sat Apr 9 07:50:10 2005 +0000 - - Updated Indonesian Translation. - - 2005-04-09 Ahmad Riza H Nst - - * id.po: Updated Indonesian Translation. - - po/ChangeLog | 4 + - po/id.po | 3268 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1934 insertions(+), 1338 deletions(-) - -commit 84a1f9b6d75a64cc6fad2dddbedc058d79d1bf37 -Author: Christian Persch -Date: Fri Apr 8 20:03:07 2005 +0000 - - More changes for 64bit downloads. - - 2005-04-08 Christian Persch - - * embed/downloader-view.c: (format_interval), - (update_download_row): - * embed/ephy-download.c: (update_remaining_time), - (ephy_download_get_remaining_time): - * embed/ephy-download.h: - * embed/mozilla/mozilla-download.cpp: - - More changes for 64bit downloads. - - ChangeLog | 11 +++++++++++ - embed/downloader-view.c | 22 +++++++++++----------- - embed/ephy-download.c | 12 ++++++------ - embed/ephy-download.h | 6 +++--- - embed/mozilla/mozilla-download.cpp | 2 +- - 5 files changed, 32 insertions(+), 21 deletions(-) - -commit 8fb008ce37b33a366c009d0f06acf46293c1bcd6 -Author: Christian Persch -Date: Fri Apr 8 19:36:13 2005 +0000 - - Don't use G_BEGIN/END_DECLS here, and don't include MozDownload.h. - - 2005-04-08 Christian Persch - - * embed/mozilla/mozilla-download.h: - - Don't use G_BEGIN/END_DECLS here, and don't include MozDownload.h. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-download.cpp | 3 ++- - embed/mozilla/mozilla-download.h | 19 ++++++++----------- - 3 files changed, 16 insertions(+), 12 deletions(-) - -commit d76f446890abac71bd3f3e9d7ad57fd42310a8e4 -Author: Christian Persch -Date: Fri Apr 8 19:30:31 2005 +0000 - - InitForEmbed isn't a NS_IMETHOD, so don't use NS_IMETHODIMP here. - - 2005-04-08 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - InitForEmbed isn't a NS_IMETHOD, so don't use NS_IMETHODIMP here. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b2ad1d23f758a9fb9aeb80d14b104a7b8e65bcdd -Author: Christian Persch -Date: Fri Apr 8 17:02:52 2005 +0000 - - Add G_SIGNAL_TYPE_STATIC_SCOPE to many signals. - - 2005-04-08 Christian Persch - - * embed/ephy-cookie-manager.c: (ephy_cookie_manager_base_init): - * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-history.c: (ephy_history_class_init): - * embed/ephy-permission-manager.c: - (ephy_permission_manager_base_init): - - Add G_SIGNAL_TYPE_STATIC_SCOPE to many signals. - - ChangeLog | 11 +++++++++++ - embed/ephy-cookie-manager.c | 8 ++++---- - embed/ephy-embed-single.c | 10 +++++----- - embed/ephy-embed.c | 10 +++++----- - embed/ephy-history.c | 4 ++-- - embed/ephy-permission-manager.c | 6 +++--- - 6 files changed, 30 insertions(+), 19 deletions(-) - -commit 30cfaa4a4929d85f303b3afc9c8ec240d548ff87 -Author: Christian Persch -Date: Fri Apr 8 13:26:25 2005 +0000 - - Implement a more flexible approach at saving a EphyNodeDb, by allowing to - - 2005-04-08 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_finalize): - * embed/ephy-history.c: (save_filter), (ephy_history_save): - * lib/ephy-node-db.c: (ephy_node_db_write_to_xml_valist): - * lib/ephy-node.h: - * lib/ephy-state.c: (ephy_states_save): - * src/bookmarks/ephy-bookmarks.c: (save_filter), - (ephy_bookmarks_save): - - Implement a more flexible approach at saving a EphyNodeDb, by allowing - to specify a filter func to exclude certain nodes, instead of a fixed - list. - - ChangeLog | 14 ++++++++++++++ - embed/ephy-favicon-cache.c | 3 ++- - embed/ephy-history.c | 11 +++++++++-- - lib/ephy-node-db.c | 19 +++++++------------ - lib/ephy-node.h | 1 + - lib/ephy-state.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 17 +++++++++++++---- - 7 files changed, 47 insertions(+), 20 deletions(-) - -commit 3ddeef804136e9f47f66c38c80d126a4285d525d -Author: Christian Persch -Date: Fri Apr 8 12:58:18 2005 +0000 - - Emit signal when encountering alternate links. Fixes bug #171657. - - 2005-04-08 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * lib/ephy-marshal.list: - - Emit signal when encountering alternate links. Fixes bug #171657. - - ChangeLog | 10 +++ - embed/ephy-embed.c | 23 +++++- - embed/ephy-embed.h | 4 ++ - embed/mozilla/EphyBrowser.cpp | 161 +++++++++++++++++++++++++----------------- - embed/mozilla/EphyBrowser.h | 10 ++- - lib/ephy-marshal.list | 1 + - 6 files changed, 139 insertions(+), 70 deletions(-) - -commit 07e28bd36e76b8122b2a84018a9764cdf6a1aac4 -Author: Christian Persch -Date: Wed Apr 6 14:46:12 2005 +0000 - - Use get/set_int64. - - 2005-04-06 Christian Persch - - * embed/ephy-embed-persist.c: (ephy_embed_persist_set_property), - (ephy_embed_persist_get_property): - - Use get/set_int64. - - ChangeLog | 7 +++++++ - embed/ephy-embed-persist.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit d4c3f7dbac768d26ac755ed20cd0d6fe0d1e7be3 -Author: Christian Persch -Date: Wed Apr 6 14:29:55 2005 +0000 - - Fix for MOZILLA_INTERNAL_API change, and for 64bit downloader change. - - 2005-04-06 Christian Persch - - * configure.ac: - * embed/downloader-view.c: (update_download_row): - * embed/ephy-download.c: - * embed/ephy-download.h: - * embed/ephy-embed-persist.c: (ephy_embed_persist_set_max_size), - (ephy_embed_persist_set_property), - (ephy_embed_persist_get_property), (ephy_embed_persist_class_init): - * embed/ephy-embed-persist.h: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - * embed/mozilla/EphyHistoryListener.cpp: - * embed/mozilla/EphySidebar.cpp: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/FilePicker.h: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - - Fix for MOZILLA_INTERNAL_API change, and for 64bit downloader change. - - ChangeLog | 32 ++++++++++++++++++ - configure.ac | 7 +++- - embed/downloader-view.c | 3 +- - embed/ephy-download.c | 4 +-- - embed/ephy-download.h | 8 ++--- - embed/ephy-embed-persist.c | 24 +++++++------- - embed/ephy-embed-persist.h | 6 ++-- - embed/mozilla/ContentHandler.h | 4 +-- - embed/mozilla/EphyBrowser.cpp | 4 +-- - embed/mozilla/EphyContentPolicy.cpp | 4 +-- - embed/mozilla/EphyHeaderSniffer.h | 4 +-- - embed/mozilla/EphyHistoryListener.cpp | 4 +-- - embed/mozilla/EphySidebar.cpp | 4 +-- - embed/mozilla/EphySingle.cpp | 4 +-- - embed/mozilla/EphyUtils.cpp | 4 +-- - embed/mozilla/EventContext.cpp | 4 +-- - embed/mozilla/FilePicker.cpp | 4 +-- - embed/mozilla/FilePicker.h | 4 +-- - embed/mozilla/GlobalHistory.cpp | 4 +-- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 4 +-- - embed/mozilla/GtkNSSDialogs.cpp | 4 +-- - embed/mozilla/MozDownload.cpp | 55 +++++++++++++++++++++++++------ - embed/mozilla/MozDownload.h | 13 +++++--- - embed/mozilla/mozilla-download.cpp | 12 +++---- - embed/mozilla/mozilla-embed-single.cpp | 4 +-- - embed/mozilla/mozilla-embed.cpp | 4 +-- - 26 files changed, 152 insertions(+), 76 deletions(-) - -commit 7057c3852b199c8d523233c4e669acfae1246709 -Author: Nikos Charonitakis -Date: Sat Apr 2 13:32:43 2005 +0000 - - Updated Greek translation (fix bug 167400) - - po/ChangeLog | 4 + - po/el.po | 555 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 259 insertions(+), 300 deletions(-) - -commit ca70a81b6451f61a24ba193eba7c536bea7039d0 -Author: Steven Michael Murphy -Date: Thu Mar 31 23:41:23 2005 +0000 - - Added new Language, Kinyarwanda (rw), to this package - - po/ChangeLog | 5 + - po/LINGUAS | 2 +- - po/rw.po | 4733 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 4739 insertions(+), 1 deletion(-) - -commit 8be7169c7919767572036252ab0977ee57dbddcb -Author: Christian Persch -Date: Thu Mar 31 14:41:00 2005 +0000 - - Update mime type list. Fixes bug #170493; patch by Jean-François Rameau. - - 2005-03-31 Christian Persch - - * data/mime-types-permissions.xml: - - Update mime type list. Fixes bug #170493; patch by Jean-François Rameau. - - ChangeLog | 6 + - data/mime-types-permissions.xml | 248 +++++++++++++++++++++++----------------- - 2 files changed, 151 insertions(+), 103 deletions(-) - -commit a4f1b2a2fea6fb5f254e44c94cfe71cb41743ecf -Author: Jean-François Rameau -Date: Fri Mar 25 11:55:54 2005 +0000 - - data/check-mime.py - - 2005-03-25 Jean-François Rameau - - * data/check-mime.py - - Set the script directly executable. - Fix problem with args. - Add a message if no arg is supplied. - - ChangeLog | 8 ++++++++ - data/check-mime.py | 12 ++++++++++-- - 2 files changed, 18 insertions(+), 2 deletions(-) - -commit 5a3efe95b1e8d87f406aa0114d95d64e0a02203f -Author: Christian Persch -Date: Thu Mar 24 15:49:01 2005 +0000 - - Treat unknown mime types as 'unsafe'. Patch by Jean-François Rameau, part - - 2005-03-24 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Treat unknown mime types as 'unsafe'. Patch by Jean-François Rameau, - part of bug #170493. - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 2316eb86a54a250a8fd01c72c477159e4fbb7556 -Author: Christian Persch -Date: Wed Mar 23 13:24:54 2005 +0000 - - Fix stupid typos. Fixes bug #171197; thanks to Jean-François Rameau for - - 2005-03-23 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Fix stupid typos. Fixes bug #171197; thanks to Jean-François Rameau - for finding the cause. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit de31ba4197b2e6b51b7077815ee8f6bb834ef942 -Author: Christian Persch -Date: Mon Mar 21 22:01:06 2005 +0000 - - Remove change not indended for commit. - - 2005-03-21 Christian Persch - - * configure.ac: - - Remove change not indended for commit. - - ChangeLog | 6 ++++++ - configure.ac | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 10093dee9948bfb14bca7228539e20a882c0fb38 -Author: Christian Persch -Date: Mon Mar 21 19:49:03 2005 +0000 - - Oh the joys of mozilla API changes :P - - 2005-03-21 Christian Persch - - * configure.ac: - * embed/mozilla/ContentHandler.cpp: - - Oh the joys of mozilla API changes :P - - ChangeLog | 7 +++++++ - configure.ac | 22 ++++++++++++++++++++++ - embed/mozilla/ContentHandler.cpp | 17 ++++++++++++++--- - 3 files changed, 43 insertions(+), 3 deletions(-) - -commit fc3b779f2b1d3f2b665a5deb2ec5c3e5fe2a720d -Author: Takeshi AIHANA -Date: Sun Mar 20 02:55:17 2005 +0000 - - Fixed a wrong translation for HEAD. - - 2005-03-20 Takeshi AIHANA - * ja.po: Fixed a wrong translation for HEAD. - - po/ChangeLog | 4 + - po/ja.po | 328 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 168 insertions(+), 164 deletions(-) - -commit 62e2abff9a006dd39a95fea1b97607bdc2625d67 -Author: Adam Weinberger -Date: Thu Mar 17 05:12:14 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit fda46e4fcc5a21c2f69e74860c4e99b3703243b1 -Author: Christian Persch -Date: Tue Mar 15 23:01:34 2005 +0000 - - Default to links only with the fixed-up typeaheadfind too. - - 2005-03-15 Christian Persch - - * data/default-prefs-toolkit.js: - - Default to links only with the fixed-up typeaheadfind too. - - ChangeLog | 6 ++++++ - data/default-prefs-toolkit.js | 1 + - 2 files changed, 7 insertions(+) - -commit d6cb8bad560c066d05a7806aba23f550a78852cf -Author: Christian Persch -Date: Mon Mar 14 19:02:26 2005 +0000 - - Set the tab label to single-line mode. Fixes bug #167657. - - 2005-03-14 Christian Persch - - * src/ephy-notebook.c: (build_tab_label): - - Set the tab label to single-line mode. Fixes bug #167657. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 1 + - 2 files changed, 7 insertions(+) - -commit dc8537f6861721d37f9bafb3f335ba864ab2f854 -Author: Christian Persch -Date: Mon Mar 14 18:45:24 2005 +0000 - - Fix the build. - - 2005-03-14 Christian Persch - - * src/ephy-window.c: (setup_multimedia_key_actions): - - Fix the build. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 10 +++++----- - 2 files changed, 11 insertions(+), 5 deletions(-) - -commit cf6aa33a55708514144f27220b71a66adb8232a3 -Author: Christian Persch -Date: Mon Mar 14 18:41:35 2005 +0000 - - Support "Multimedia" keys. Fixes bug #162748. - - 2005-03-14 Christian Persch - - * data/ui/epiphany-ui.xml: - * src/ephy-window.c: (ephy_window_key_press_event), - (setup_multimedia_key_actions), (setup_ui_manager): - * src/window-commands.c: (window_cmd_go_home): - * src/window-commands.h: - - Support "Multimedia" keys. Fixes bug #162748. - - ChangeLog | 10 ++++++++ - data/ui/epiphany-ui.xml | 14 +++++++++++ - src/ephy-window.c | 64 ++++++++++++++++++++++++++++++++++++++++++++++++- - src/window-commands.c | 22 +++++++++++++++++ - src/window-commands.h | 5 ++++ - 5 files changed, 114 insertions(+), 1 deletion(-) - -commit 79b688e5ae5c412faf82c4c62aa58913b735feb6 -Author: Christian Persch -Date: Mon Mar 14 18:22:47 2005 +0000 - - Use connect_object, to guard against "title" signal emitted when the - - 2005-03-14 Christian Persch - - * src/ephy-tabs-menu.c: (tab_added_cb): - - Use connect_object, to guard against "title" signal emitted - when the window is dying. Fixes bug #169833. - - ChangeLog | 7 +++++++ - src/ephy-tabs-menu.c | 5 +++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 1cd057fbc1422e10b4b489718dc1f76e8da847c9 -Author: Christian Persch -Date: Mon Mar 14 17:58:44 2005 +0000 - - Fix signal handler disconnection; bug #170353. - - 2005-03-14 Christian Persch - - * src/ephy-tabs-menu.c: (tab_removed_cb): - - Fix signal handler disconnection; bug #170353. - - ChangeLog | 6 ++++++ - src/ephy-tabs-menu.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0d8dd611e669275c40f3113d22b97d467e3545c4 -Author: Christian Persch -Date: Mon Mar 14 15:31:45 2005 +0000 - - Remove custom search, and use gtktreeview typeaheadfind. Fixes bug - - 2005-03-14 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_is_middle_click): - * lib/ephy-gui.h: - * lib/widgets/ephy-node-view.c: (ephy_node_view_key_press_cb), - (ephy_node_view_add_column), (ephy_node_view_init): - - Remove custom search, and use gtktreeview typeaheadfind. Fixes bug - #118107. - - ChangeLog | 10 ++++++++ - lib/ephy-gui.c | 57 +++----------------------------------------- - lib/ephy-gui.h | 4 ---- - lib/widgets/ephy-node-view.c | 27 +++++++-------------- - 4 files changed, 22 insertions(+), 76 deletions(-) - -commit 0551f379b4ec62e5399422b0f2034313fd3daf76 -Author: David Lodge -Date: Sun Mar 13 14:45:29 2005 +0000 - - Fixes for bug 167403 - - 2005-03-13 David Lodge - - * en_GB.po: Fixes for bug 167403 - - po/ChangeLog | 4 + - po/en_GB.po | 812 ++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 532 insertions(+), 284 deletions(-) - -commit 753a3c8ab4843d32fd4decd5d097d92cb8495771 -Author: Christian Persch -Date: Sat Mar 12 23:20:18 2005 +0000 - - Also search nsIPassword.h in unusual places. - - 2005-03-13 Christian Persch - - * configure.ac: - * embed/mozilla/Makefile.am: - - Also search nsIPassword.h in unusual places. - - ChangeLog | 7 +++++++ - configure.ac | 5 ++++- - embed/mozilla/Makefile.am | 1 + - 3 files changed, 12 insertions(+), 1 deletion(-) - -commit 8310f6e1514c5e2a4cfb41a04542a11a0ccedf64 -Author: Christian Persch -Date: Sat Mar 12 23:18:19 2005 +0000 - - Don't force those dialogues to be in front. - - 2005-03-13 Christian Persch - - * src/window-commands.c: (window_cmd_file_print_setup), - (window_cmd_edit_personal_data), (window_cmd_edit_prefs): - - Don't force those dialogues to be in front. - - ChangeLog | 7 +++++++ - src/window-commands.c | 3 --- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 5ee23a2c600d1cc951d185d283c9c0b5565b5991 -Author: Christian Persch -Date: Fri Mar 11 22:12:10 2005 +0000 - - Revert patch from bug #169956, it's not correct. - - 2005-03-11 Christian Persch - - * src/ephy-toolbar.c: (ephy_toolbar_activate_location): - - Revert patch from bug #169956, it's not correct. - - * src/ephy-window.c: (sync_chromes_visibility): - - Fix a crash on window close with active toolbar activation. - - ChangeLog | 10 ++++++++++ - src/ephy-toolbar.c | 13 +++++++------ - src/ephy-window.c | 2 ++ - 3 files changed, 19 insertions(+), 6 deletions(-) - -commit d472d37f725e292602d8b7db87107157cc27971c -Author: Christian Persch -Date: Fri Mar 11 21:17:00 2005 +0000 - - Add FIXME comment about gtkmozembed focus - - src/ephy-toolbar.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 5e41bc513f3dddaf7edd80589c6de1af404897d3 -Author: Christian Persch -Date: Fri Mar 11 20:32:12 2005 +0000 - - Don't activate the location entry if it's hidden. Fixes bug #169956. - - 2005-03-11 Christian Persch - - * src/ephy-toolbar.c: (ephy_toolbar_activate_location): - - Don't activate the location entry if it's hidden. Fixes bug #169956. - - ChangeLog | 6 ++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - src/ephy-toolbar.c | 11 ++++------- - 3 files changed, 12 insertions(+), 7 deletions(-) - -commit 4ae4a46a1b7802a5e537284e0a325e7335fb56d6 -Author: Christian Persch -Date: Fri Mar 11 12:08:23 2005 +0000 - - Disable automatic image resizing on toolkit too. - - 2005-03-11 Christian Persch - - * data/default-prefs-toolkit.js: - - Disable automatic image resizing on toolkit too. - - ChangeLog | 6 ++++++ - data/default-prefs-toolkit.js | 3 +++ - 2 files changed, 9 insertions(+) - -commit 4e6e6a69f2b5a22e094faee189cc38af781facc6 -Author: Hendrik Richter -Date: Thu Mar 10 16:29:40 2005 +0000 - - Updated German translation. - - 2005-03-10 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 5 + - po/de.po | 1864 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 961 insertions(+), 908 deletions(-) - -commit f8cd25beeee86910f3b462151ae524077306c832 -Author: Christian Persch -Date: Thu Mar 10 15:50:36 2005 +0000 - - Remove the wallet hack; it appears not to work correctly using mozilla 1.7 - - 2005-03-10 Christian Persch - - * configure.ac: - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/MozillaPrivate.h: - * embed/mozilla/mozilla-embed-single.cpp: - - Remove the wallet hack; it appears not to work correctly - using mozilla 1.7 (work on trunk; but that's dead). - - ChangeLog | 10 ++++++ - configure.ac | 3 -- - embed/mozilla/MozillaPrivate.cpp | 61 ---------------------------------- - embed/mozilla/MozillaPrivate.h | 4 --- - embed/mozilla/mozilla-embed-single.cpp | 2 -- - 5 files changed, 10 insertions(+), 70 deletions(-) - -commit 7863a1874844bb34f3e11f68f269c87ee03562ae -Author: Christian Persch -Date: Thu Mar 10 14:29:36 2005 +0000 - - Fix theme - - help/C/figures/ephy-history-window-screenshot.png | Bin 41378 -> 39816 bytes - 1 file changed, 0 insertions(+), 0 deletions(-) - -commit 5a678bc380c1e888664f3b35063c005b017eaa82 -Author: Christian Persch -Date: Wed Mar 9 23:35:02 2005 +0000 - - Prefer firefox over mozilla libraries. - - 2005-03-10 Christian Persch - - * configure.ac: - - Prefer firefox over mozilla libraries. - - ChangeLog | 6 ++++++ - configure.ac | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 41c91b71eed3ba293be5b9e57d58ceed7b4a9c31 -Author: Christian Persch -Date: Wed Mar 9 22:03:49 2005 +0000 - - Fix - - help/eu/eu.po | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit 640f47eec633f732ca1418d3fe483bfaee75cfc0 -Author: Christian Persch -Date: Wed Mar 9 22:01:54 2005 +0000 - - Use msguniq - - help/es/es.po | 2723 +++++++++++++++++++++++++++++++++++++++------------------ - help/eu/eu.po | 1208 +++++++++++++++++-------- - help/ja/ja.po | 2519 ++++++++++++++++++++++++++++++++++------------------ - 3 files changed, 4366 insertions(+), 2084 deletions(-) - -commit c967208ba7112575d3aa6dcc099e458339ba961f -Author: Christian Persch -Date: Wed Mar 9 21:58:38 2005 +0000 - - Transformed cc/epiphany.xml -> cc/cc.po - - help/es/es.po | 1801 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - help/eu/eu.po | 849 +++++++++++++++++++++++++++ - help/ja/ja.po | 1801 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 4451 insertions(+) - -commit c25343bd0aaef478b3de594c5bb3dd24eec1206f -Author: Christian Persch -Date: Wed Mar 9 18:20:17 2005 +0000 - - Use libstartup-notification, not gnome-desktop to launch apps. Fixes bug - - 2005-03-09 Christian Persch - - * configure.ac: - * lib/ephy-file-helpers.c: - (my_gdk_spawn_make_environment_for_screen), (sn_error_trap_push), - (sn_error_trap_pop), (make_spawn_environment_for_sn_context), - (free_startup_timeout), (startup_timeout), (add_startup_timeout), - (ephy_file_launch_application), (ephy_file_launch_desktop_file): - - Use libstartup-notification, not gnome-desktop to launch apps. - Fixes bug #169039. - - ChangeLog | 12 ++ - configure.ac | 12 ++ - lib/ephy-file-helpers.c | 363 +++++++++++++++++++++++++++++++++++++++++++----- - 3 files changed, 356 insertions(+), 31 deletions(-) - -commit 25234ed1fb4bcfdc2699352dc3e9a412d1309c55 -Author: Baris Cicek -Date: Tue Mar 8 13:46:56 2005 +0000 - - Updated Turkish Translation - - * tr.po: Updated Turkish Translation - - po/ChangeLog | 4 + - po/tr.po | 1986 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1097 insertions(+), 893 deletions(-) - -commit fd08a49480f43cc2f4a100b3ca1de03a6d58605e -Author: Kwok-Koon Cheung -Date: Mon Mar 7 21:42:19 2005 +0000 - - Updated traditional Chinese translation from GNOME HK Team - - * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team - - po/ChangeLog | 4 + - po/zh_TW.po | 3184 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1863 insertions(+), 1325 deletions(-) - -commit e401bee790ed03c449a1bc442cd31bdc65971789 -Author: Alessio Frusciante -Date: Mon Mar 7 21:25:21 2005 +0000 - - Updated Italian translation. - - po/ChangeLog | 5 + - po/it.po | 3204 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1786 insertions(+), 1423 deletions(-) - -commit 810da373110c52cdafe9738ba8777e09e75b6ce2 -Author: Christian Persch -Date: Mon Mar 7 20:02:32 2005 +0000 - - Version 1.7.0. - - 2005-03-07 Christian Persch - - * configure.ac: - * data/Makefile.am: - * data/epiphany-1.6.pc.in: - * data/epiphany-1.8.pc.in: - * doc/reference/tmpl/ephy-embed.sgml: - * embed/Makefile.am: - * lib/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - Version 1.7.0. - - ChangeLog | 14 ++++++++++++++ - configure.ac | 6 +++--- - data/Makefile.am | 2 +- - data/epiphany-1.6.pc.in | 13 ------------- - data/epiphany-1.8.pc.in | 13 +++++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - embed/Makefile.am | 2 +- - lib/Makefile.am | 2 +- - src/Makefile.am | 6 +++--- - src/bookmarks/Makefile.am | 2 +- - 10 files changed, 39 insertions(+), 23 deletions(-) - -commit 930f7e9074820af5068a38954c4dd5756ac8e671 -Author: Christian Persch -Date: Mon Mar 7 18:19:19 2005 +0000 - - === Release 1.6.0 === - - 2005-03-07 Christian Persch - - === Release 1.6.0 === - - * NEWS: - * configure.ac: - - ChangeLog | 7 +++++++ - NEWS | 15 +++++++++++++++ - configure.ac | 4 ++-- - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 4 files changed, 26 insertions(+), 2 deletions(-) - -commit 9ecd8ab7b0ba5b206ea72d97b46da398c33ac8b9 -Author: Christophe Merlet -Date: Sun Mar 6 19:28:41 2005 +0000 - - Updated French translation. - - po/ChangeLog | 4 ++ - po/fr.po | 186 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 97 insertions(+), 93 deletions(-) - -commit e6a7312ffb0722a914c3983061ef9f70dd5fdf30 -Author: Mugurel Tudor -Date: Sat Mar 5 23:23:37 2005 +0000 - - Updated Romanian translation. - - 2005-03-06 Mugurel Tudor - - * ro.po: Updated Romanian translation. - - po/ChangeLog | 4 + - po/ro.po | 2761 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1572 insertions(+), 1193 deletions(-) - -commit 089c3c8fc0d6c84099b82dd861bd00b745cba079 -Author: Maxim Dziumanenko -Date: Sat Mar 5 16:01:39 2005 +0000 - - Updated Ukrainian translation. - - 2005-03-05 Maxim Dziumanenko - - * Updated Ukrainian translation. - - po/ChangeLog | 4 ++++ - po/uk.po | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 62 insertions(+), 2 deletions(-) - -commit 4ef4f63042e3c2bf4037576d2e1b2fa8ba63c73d -Author: Dafydd Harries -Date: Fri Mar 4 21:28:27 2005 +0000 - - Updated Welsh translation. - - po/ChangeLog | 4 + - po/cy.po | 739 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 396 insertions(+), 347 deletions(-) - -commit eb21403afbf9d248c441a9c52873434b822eb3cf -Author: Laszlo Dvornik -Date: Fri Mar 4 14:19:23 2005 +0000 - - Hungarian translation updated by Gabor Kelemen. - - 2005-03-04 Laszlo Dvornik - - * hu.po: Hungarian translation updated by Gabor Kelemen. - - po/ChangeLog | 4 + - po/hu.po | 3109 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1612 insertions(+), 1501 deletions(-) - -commit be5155ea798c35244d363b1457d161cf3b492019 -Author: Leonid Kanter -Date: Thu Mar 3 14:49:05 2005 +0000 - - Fixed Russian translation - - po/ru.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 22695518a2c61787433d311c851161c595f68c3d -Author: Amanpreet Singh Alam -Date: Thu Mar 3 12:23:46 2005 +0000 - - update by amanpreetalam@yahoo.com for pa.po - - po/pa.po | 152 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 78 insertions(+), 74 deletions(-) - -commit 556363b36c9b0e863bc4b27498d5d723b3c8eeb7 -Author: Ole Laursen -Date: Wed Mar 2 23:33:16 2005 +0000 - - Fixed a couple of strings in the Danish translation. - - 2005-03-03 Ole Laursen - - * da.po: Fixed a couple of strings in the Danish translation. - - po/ChangeLog | 4 +++ - po/da.po | 80 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 44 insertions(+), 40 deletions(-) - -commit a21e3a8acf4b16db1d4c211253cf2fcc7409e504 -Author: Danilo Šegan -Date: Wed Mar 2 12:58:23 2005 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 2801 +++++++++++++++++++++++++++++++++------------------------ - po/sr@Latn.po | 2801 +++++++++++++++++++++++++++++++++------------------------ - 3 files changed, 3264 insertions(+), 2342 deletions(-) - -commit 197856541612d1e8ec85597cdcdf22987797f9e9 -Author: Takeshi AIHANA -Date: Wed Mar 2 00:42:39 2005 +0000 - - Fixed a BUG#134110 in Japanese translation. - - 2005-03-02 Takeshi AIHANA - * ja.po: Fixed a BUG#134110 in Japanese translation. - - po/ChangeLog | 4 +++ - po/ja.po | 102 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 55 insertions(+), 51 deletions(-) - -commit c9231495eee74bbfc8ec254e65d9dfd00513368e -Author: Christian Persch -Date: Tue Mar 1 20:21:51 2005 +0000 - - Update screenshots. Fixes bug #165839. - - 2005-03-01 Christian Persch - - * help/C/figures/ephy-addressbar-smartbookmark-screenshot.png: - * help/C/figures/ephy-bookmarkbar-smartbookmark-screenshot.png: - * help/C/figures/ephy-history-window-screenshot.png: - * help/C/figures/ephy-screenshot.png: - - Update screenshots. Fixes bug #165839. - - ChangeLog | 9 +++++++++ - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 2460 -> 3099 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 1545 -> 1570 bytes - help/C/figures/ephy-history-window-screenshot.png | Bin 96928 -> 41378 bytes - help/C/figures/ephy-screenshot.png | Bin 126138 -> 56909 bytes - 5 files changed, 9 insertions(+) - -commit a3828c848f994186e2b9059d42c98642f76db574 -Author: Maxim Dziumanenko -Date: Tue Mar 1 16:48:17 2005 +0000 - - Updated Ukrainan translation, updated Ukrainian translation of the manual - - 2005-03-01 Maxim Dziumanenko - - * Updated Ukrainan translation, updated Ukrainian translation of the manual - - ChangeLog | 16 + - configure.ac | 1 + - help/Makefile.am | 2 +- - help/uk/epiphany-uk.omf | 14 +- - help/uk/epiphany.xml | 1396 ++++++++------- - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 4273 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 2204 bytes - help/uk/figures/ephy-history-window-screenshot.png | Bin 0 -> 78291 bytes - help/uk/figures/ephy-screenshot.png | Bin 0 -> 174328 bytes - help/uk/uk.po | 1879 ++++++++++++++++++++ - po/ChangeLog | 4 + - po/uk.po | 204 +-- - 12 files changed, 2719 insertions(+), 797 deletions(-) - -commit ea88c0ee1afb5989b9e834c820b727d97deb8ae3 -Author: Christian Persch -Date: Mon Feb 28 22:36:32 2005 +0000 - - Post-release version bump. - - 2005-02-28 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 459be5ba7dcf102777395229f370ddcf996186d3 -Author: Christian Persch -Date: Mon Feb 28 22:35:01 2005 +0000 - - === Release 1.5.8 === - - 2005-02-28 Christian Persch - - === Release 1.5.8 === - - * NEWS: - - ChangeLog | 6 ++++++ - NEWS | 11 +++++++++++ - 2 files changed, 17 insertions(+) - -commit 7aa3b8355acf5d8eec0634980699c32ff69116fb -Author: Christian Persch -Date: Mon Feb 28 22:07:57 2005 +0000 - - NULL check. Fixes bug #165999. - - 2005-02-28 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - NULL check. Fixes bug #165999. - - * src/ephy-main.c: (slowly_and_stupidly_obtain_timestamp), (main): - - Try to get an approximation to the launch time if DESKTOP_STARTUP_ID - is not set. Fixes bug #168820, patch by Elijah Newren. - - ChangeLog | 11 +++++++++ - embed/mozilla/MozDownload.cpp | 2 ++ - src/ephy-main.c | 57 +++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 70 insertions(+) - -commit 783485ff724884f6969f5650b2f73dbd2d37a0fa -Author: Christian Persch -Date: Mon Feb 28 16:15:23 2005 +0000 - - Again - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9514ad8d9cd6c9503e4aea81858074c5b0ba5ea3 -Author: Christian Persch -Date: Mon Feb 28 09:32:27 2005 +0000 - - *** empty log message *** - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e0d391e64d8e5732dfa448d58d34b6628bb67fa8 -Author: Christian Persch -Date: Mon Feb 28 08:43:15 2005 +0000 - - Up gtk+ dependency to 2.6.3 - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 78efde069965594338f465a842653eb512b1fc1c -Author: Christian Persch -Date: Sun Feb 27 22:07:17 2005 +0000 - - Post-release version bump. - - 2005-02-27 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 5343cede55723c75ce53c599465c0bcf1035ead8 -Author: Christian Persch -Date: Sun Feb 27 22:06:34 2005 +0000 - - === Release 1.5.7 === - - 2005-02-27 Christian Persch - - === Release 1.5.7 === - - * doc/reference/Makefile.am: - * doc/reference/tmpl/ephy-embed.sgml: - - ChangeLog | 7 +++++++ - doc/reference/Makefile.am | 7 ++++++- - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 3 files changed, 15 insertions(+), 1 deletion(-) - -commit ebb2b51a3bbd7d49ed39100dbb878f3adc6d3e5a -Author: Christian Persch -Date: Sun Feb 27 20:13:26 2005 +0000 - - Remove unused includes. - - 2005-02-27 Christian Persch - - * src/window-commands.c: - - Remove unused includes. - - ChangeLog | 6 ++++++ - src/window-commands.c | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit d0a446d71cd2091080bf904d0be0bd958b12592f -Author: Christian Persch -Date: Sun Feb 27 19:40:14 2005 +0000 - - Update - - NEWS | 39 +++++++++++++++++++++++++++++++++++++++ - 1 file changed, 39 insertions(+) - -commit 040297c8008020b7f82a496dd803ac5ffe5ac051 -Author: Christian Persch -Date: Sun Feb 27 19:33:11 2005 +0000 - - Version 1.5.7. - - 2005-02-27 Christian Persch - - * configure.ac: - - Version 1.5.7. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 22e053c43179e739314ac9771932e1394ad91387 -Author: Christian Persch -Date: Sun Feb 27 18:50:45 2005 +0000 - - Fix compress_tilde to only look at the prefix, and not substitute in the - - 2005-02-27 Christian Persch - - * lib/eel-gconf-extensions.c: (tilde_compress): - - Fix compress_tilde to only look at the prefix, and not - substitute in the middle. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 2 +- - lib/eel-gconf-extensions.c | 46 +++++++++---------------------------------- - 3 files changed, 17 insertions(+), 38 deletions(-) - -commit d8c89be1293cf71ee242f812b3c4552c3f5e8c66 -Author: Christian Persch -Date: Sun Feb 27 18:38:15 2005 +0000 - - Try to fix the build with 1.7 branch. - - 2005-02-27 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Try to fix the build with 1.7 branch. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 6fb031c9945eff5102c55776a6898927daede351 -Author: Christian Persch -Date: Sun Feb 27 14:13:45 2005 +0000 - - Check for password inputs too. - - 2005-02-27 Christian Persch - - * embed/ephy-embed-event.h: - * embed/mozilla/EventContext.cpp: - - Check for password inputs too. - - ChangeLog | 7 +++++++ - embed/ephy-embed-event.h | 17 +++++++++-------- - embed/mozilla/EventContext.cpp | 5 +++++ - 3 files changed, 21 insertions(+), 8 deletions(-) - -commit dbe82af48107b7ed00e21257507dc4e81ce1600c -Author: Christian Persch -Date: Sun Feb 27 13:14:39 2005 +0000 - - Check the favicon file type and only allow ico, gif & png. Fixes bug - - 2005-02-27 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get): - - Check the favicon file type and only allow ico, gif & png. - Fixes bug #163886. - - ChangeLog | 7 +++++++ - embed/ephy-favicon-cache.c | 48 +++++++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 54 insertions(+), 1 deletion(-) - -commit 6a524f7dfb9b8e4d4f3c4f0c0ef6bd1ce062b504 -Author: Christian Persch -Date: Sat Feb 26 22:48:16 2005 +0000 - - Don't assert if we don't have a new embed in new_window callback. Part of - - 2005-02-26 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Don't assert if we don't have a new embed in new_window callback. - Part of bug #165445. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 10 ++++++---- - 2 files changed, 13 insertions(+), 4 deletions(-) - -commit 74aefa193695d7b6333703ec8539d05022c866a3 -Author: Christian Persch -Date: Sat Feb 26 22:30:20 2005 +0000 - - Make sure folder is != NULL. Fixes bug #163341. - - 2005-02-26 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_folder): - - Make sure folder is != NULL. Fixes bug #163341. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-import.c | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit fbf4b15ed54be3abfe2c3c937c50b9c623804cb5 -Author: Christian Persch -Date: Sat Feb 26 22:01:48 2005 +0000 - - Depend on gnome-desktop for gnome-desktop-item, and up the gnome-vfs - - 2005-02-26 Christian Persch - - * configure.ac: - - Depend on gnome-desktop for gnome-desktop-item, - and up the gnome-vfs dependency version. - - * embed/ephy-embed-persist.c: (ephy_embed_persist_set_user_time), - (ephy_embed_persist_get_user_time), - (ephy_embed_persist_set_property), - (ephy_embed_persist_get_property), (ephy_embed_persist_init), - (ephy_embed_persist_class_init): - * embed/ephy-embed-persist.h: - - Add user time property. - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - - Forward user time to MozDownload via a string. Not perfect, - but better than nothing. - - * embed/mozilla/EphyHeaderSniffer.cpp: - - Set user time on filechooser. - - * embed/mozilla/MozDownload.cpp: - - Get user time from content handler, and use it when - launching the external handler app. - - * lib/ephy-file-helpers.c: (ephy_file_check_mime), - (launch_desktop_item), (ephy_file_launch_desktop_file), - (ephy_file_launch_application), (ephy_file_launch_handler): - * lib/ephy-file-helpers.h: - - Convenience functions to launch an app, or a desktop item, - with user time. - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file), - (ephy_gui_window_update_user_time), (ephy_gui_window_present): - * lib/ephy-gui.h: - - Make our own gtk_window_present, to correctly update user time. - Check if the path is writable in ephy_gui_confirm_overwrite_file(). - - * src/ephy-session.c: (ephy_session_autoresume): - - After showing the recovery dialogue, don't use the old user time - to launch the windows; use the current event time instead. - - * src/popup-commands.c: (background_download_completed), - (image_open_uri), (save_source_completed_cb), - (popup_cmd_open_image): - * src/window-commands.c: (window_cmd_file_save_as), - (save_source_completed_cb), (save_temp_source), - (window_cmd_view_page_source): - - Launch handlers with user time. - - ChangeLog | 60 +++++++++++++ - configure.ac | 8 +- - embed/ephy-embed-persist.c | 62 ++++++++++++- - embed/ephy-embed-persist.h | 4 + - embed/mozilla/ContentHandler.cpp | 41 +++++++-- - embed/mozilla/ContentHandler.h | 1 + - embed/mozilla/EphyHeaderSniffer.cpp | 8 ++ - embed/mozilla/MozDownload.cpp | 52 ++++++----- - lib/ephy-file-helpers.c | 171 +++++++++++++++++++++++++++++++++++- - lib/ephy-file-helpers.h | 14 ++- - lib/ephy-gui.c | 50 ++++++++++- - lib/ephy-gui.h | 3 + - src/ephy-session.c | 4 +- - src/popup-commands.c | 72 +++++---------- - src/window-commands.c | 46 +++------- - 15 files changed, 468 insertions(+), 128 deletions(-) - -commit caba7f03132e463c48405eb602a8b77764c3ec75 -Author: Amanpreet Singh Alam -Date: Sat Feb 26 16:23:14 2005 +0000 - - update by amanpreetalam@yahoo.com - - po/pa.po | 3428 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 1910 insertions(+), 1518 deletions(-) - -commit e4d4253e3d411586e5dd16280cfda05f75ad6b63 -Author: Nikos Charonitakis -Date: Sat Feb 26 16:21:10 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 ++++ - po/el.po | 14 ++++++-------- - 2 files changed, 10 insertions(+), 8 deletions(-) - -commit f687a3e9063c00a1b38bbf273a2ddf442cd1182a -Author: Ole Laursen -Date: Thu Feb 24 20:17:50 2005 +0000 - - Fixed some issues in the Danish translation by comments from Martin - - 2005-02-24 Ole Laursen - - * da.po: Fixed some issues in the Danish translation by comments - from Martin Willemoes Hansen. - - po/ChangeLog | 5 +++++ - po/da.po | 70 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 41 insertions(+), 34 deletions(-) - -commit fa2ed1162e71eb37859ec2a5ef38a9387d06b5af -Author: Christian Persch -Date: Thu Feb 24 15:00:17 2005 +0000 - - Make the signal RUN_LAST. - - 2005-02-24 Christian Persch - - * src/ephy-link.c: (ephy_link_base_init): - - Make the signal RUN_LAST. - - * src/ephy-tab.c: (ephy_tab_get_type), (open_link_in_new_tab), - (clipboard_text_received_cb): - - Make EphyTab implement EphyLink interface. - - * src/ephy-window.c: (modal_alert_cb), (tab_added_cb), - (tab_removed_cb), (ephy_window_open_link): - - Attach to link signal on EphyTab. - Don't switch tabs to modal alerts in ppv mode; block the alerts - instead. - - 2005-02-23 Carlos Garnacho Parro - - ChangeLog | 18 ++++++++++++++++++ - src/ephy-link.c | 2 +- - src/ephy-tab.c | 24 ++++++++++++++++++------ - src/ephy-window.c | 15 ++++++++++++++- - 4 files changed, 51 insertions(+), 8 deletions(-) - -commit 66e037be87fdb7361fa5d69cfe61b17468a82a56 -Author: Nikos Charonitakis -Date: Thu Feb 24 14:19:52 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 ++ - po/el.po | 154 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 94 insertions(+), 64 deletions(-) - -commit 623dcd777f3a64badaaa457248856cc8c2f6d234 -Author: Carlos Garnacho Parro -Date: Wed Feb 23 13:52:22 2005 +0000 - - don't activate startup notification with the "previous session has - - 2005-02-23 Carlos Garnacho Parro - - * src/ephy-session.c: don't activate startup notification with the - "previous session has crashed" dialog - - ChangeLog | 5 +++++ - src/ephy-session.c | 2 ++ - 2 files changed, 7 insertions(+) - -commit 96b010c0b8a90756a560c185f2a2d6f16718c376 -Author: Ankitkumar Rameshchandra Patel -Date: Wed Feb 23 12:29:52 2005 +0000 - - ankit@redhat.com * Updated Gujarati Translation - - po/ChangeLog | 4 + - po/gu.po | 2849 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1617 insertions(+), 1236 deletions(-) - -commit f7d2b33404f9b13df59833c647c750809fdb4985 -Author: Christian Persch -Date: Wed Feb 23 01:29:37 2005 +0000 - - Unset size request if the fixed toolbar is present. That way we don't - - 2005-02-23 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (update_fixed): - - Unset size request if the fixed toolbar is present. That way - we don't truncate the 0th toolbar when it only contains the spinner. - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 3 +++ - 2 files changed, 10 insertions(+) - -commit 21041225ab82f2e13a12f163189110df03c2a598 -Author: Christian Persch -Date: Wed Feb 23 01:23:19 2005 +0000 - - Unparent the fixed toolbar before destroying the dock. - - 2005-02-23 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (toolbar_removed_cb): - - Unparent the fixed toolbar before destroying the dock. - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 5 +++++ - 2 files changed, 11 insertions(+) - -commit bb539d648e80733ebc5eac54dec76344a399195a -Author: Christian Persch -Date: Wed Feb 23 01:20:07 2005 +0000 - - Use spacing instead of a separator. - - 2005-02-23 Christian Persch - - * src/ephy-fullscreen-popup.c: - (ephy_fullscreen_popup_update_visibility), - (ephy_fullscreen_popup_constructor): - - Use spacing instead of a separator. - - ChangeLog | 8 ++++++++ - src/ephy-fullscreen-popup.c | 13 ++----------- - 2 files changed, 10 insertions(+), 11 deletions(-) - -commit d3ac41e419cc7c49de641640bb44727012fef775 -Author: Christian Persch -Date: Tue Feb 22 16:08:07 2005 +0000 - - Autostart typeaheadfind. - - 2005-02-22 Christian Persch - - * data/default-prefs-toolkit.js: - - Autostart typeaheadfind. - - ChangeLog | 6 ++++++ - data/default-prefs-toolkit.js | 1 + - 2 files changed, 7 insertions(+) - -commit 4423ad26dd3c662b0205b2b9b37e45693a0e7c7b -Author: Leonid Kanter -Date: Tue Feb 22 10:48:30 2005 +0000 - - Updated Russian translation - - po/ChangeLog | 4 ++ - po/ru.po | 202 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 109 insertions(+), 97 deletions(-) - -commit 5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa -Author: Christian Persch -Date: Mon Feb 21 18:40:44 2005 +0000 - - Use $PKG_CONFIG. - - 2005-02-21 Christian Persch - - * configure.ac: - - Use $PKG_CONFIG. - - ChangeLog | 6 ++++++ - configure.ac | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 38637a7ffe353f89974e1a9fe1262ce77de062ea -Author: Christian Persch -Date: Mon Feb 21 11:23:21 2005 +0000 - - Load the page after showing the window. That way, if mozilla throws up an - - 2005-02-21 Christian Persch - - * src/ephy-shell.c: (ephy_shell_new_tab_full): - - Load the page after showing the window. That way, if mozilla throws up - an alert, the window is already there. - - ChangeLog | 7 +++++++ - src/ephy-shell.c | 20 ++++++++++---------- - 2 files changed, 17 insertions(+), 10 deletions(-) - -commit 9916bc461bc0d76a4cce690fd2138b0df513bf23 -Author: Alexander Shopov -Date: Mon Feb 21 06:02:53 2005 +0000 - - Updated Bulgarian translation by Alexander Shopov - - 2005-02-21 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Alexander Shopov - - po/ChangeLog | 5 + - po/bg.po | 1843 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 961 insertions(+), 887 deletions(-) - -commit 9335c841e72436b5e063428ff26a70bad198cf81 -Author: Christian Persch -Date: Sun Feb 20 14:46:55 2005 +0000 - - Use event time when grabbing the pointer. Appears to fix bug #167473. - - 2005-02-20 Christian Persch - - * src/ephy-notebook.c: (drag_start), (motion_notify_cb), - (move_tab_to_another_notebook), (button_release_cb): - - Use event time when grabbing the pointer. Appears to fix bug #167473. - - ChangeLog | 7 +++++++ - src/ephy-notebook.c | 29 +++++++++++++++-------------- - 2 files changed, 22 insertions(+), 14 deletions(-) - -commit 5fa9306e1cdafc41866219183039b852b112f553 -Author: Ole Laursen -Date: Sun Feb 20 13:28:26 2005 +0000 - - Updated Danish translation. - - 2005-02-20 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 2743 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1572 insertions(+), 1175 deletions(-) - -commit 00565d9c92eb3eddceaf76356653582c4d0966f1 -Author: Miloslav Trmac -Date: Sun Feb 20 11:45:01 2005 +0000 - - Updated Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 16 ++++++++-------- - 2 files changed, 12 insertions(+), 8 deletions(-) - -commit 6023ae166f1c2d205a62642aec16b3ebdf8d66c5 -Author: Kostas Papadimas -Date: Sun Feb 20 09:22:37 2005 +0000 - - Updated Greek Translation. - - po/ChangeLog | 4 + - po/el.po | 303 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 177 insertions(+), 130 deletions(-) - -commit 7d4ae63831f44aead120b781fa9d8568eb0ded50 -Author: Christophe Merlet -Date: Sat Feb 19 13:01:38 2005 +0000 - - Updated French translation. - - po/ChangeLog | 5 + - po/fr.po | 2720 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1571 insertions(+), 1154 deletions(-) - -commit 5ada994594a2850dd7e66c1e46b02fc4023f6c3e -Author: Ilkka Tuohela -Date: Sat Feb 19 05:15:28 2005 +0000 - - Small change to fi.po (_Ohje -> O_hje) - - po/fi.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 26b14879a25f16a7a06e23143b96aaf5ca92cda3 -Author: Christian Persch -Date: Fri Feb 18 23:44:12 2005 +0000 - - Shut up - - src/bookmarks/.cvsignore | 2 ++ - 1 file changed, 2 insertions(+) - -commit b4820cba2948a8d831ba5b16c4f70d9ed68ef049 -Author: Pauli Virtanen -Date: Fri Feb 18 20:15:11 2005 +0000 - - Updated Finnish translation. - - 2005-02-18 Pauli Virtanen - - * fi.po: Updated Finnish translation. - - po/ChangeLog | 4 ++ - po/fi.po | 220 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 116 insertions(+), 108 deletions(-) - -commit bb162804f08ced731b4b96c4901789fd242d9502 -Author: Maxim Dziumanenko -Date: Fri Feb 18 18:36:06 2005 +0000 - - Update Ukrainian translation. - - 2005-02-18 Maxim Dziumanenko - - * Update Ukrainian translation. - - po/ChangeLog | 4 + - po/uk.po | 2720 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1545 insertions(+), 1179 deletions(-) - -commit 432b219fed5cf8a176b9d2463a0e5696a2e8a048 -Author: Duarte Loreto -Date: Fri Feb 18 02:17:45 2005 +0000 - - Updated Portuguese translation. - - 2005-02-18 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 636 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 331 insertions(+), 309 deletions(-) - -commit 71b930e61ea4b57c7b2305ca47c71b876ce8ae5e -Author: Xan Lopez -Date: Fri Feb 18 00:00:48 2005 +0000 - - Fix #130990 "Mixing up workspaces of windows when restoring session". - - - * src/ephy-session.c: (impl_attach_window), (write_ephy_window), - (restore_geometry), (ephy_session_load): - - Fix #130990 "Mixing up workspaces of windows when restoring - session". - Commited patch referenced in bug with slight modifications - to make it work properly. - - ChangeLog | 9 +++++++++ - src/ephy-session.c | 36 ++++++++++++++++++++++++++++++++++-- - 2 files changed, 43 insertions(+), 2 deletions(-) - -commit a1ed3acf5f1951fc21e5550a15211967f56274f1 -Author: David Lodge -Date: Tue Feb 15 21:36:41 2005 +0000 - - Update English (British) translation. - - 2005-02-15 David Lodge - - * en_GB.po: Update English (British) translation. - - po/ChangeLog | 4 + - po/en_GB.po | 1938 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 996 insertions(+), 946 deletions(-) - -commit c2c09f620cc94bf2f7d3be97c5e7466a6e2563f5 -Author: Kjartan Maraas -Date: Tue Feb 15 13:43:34 2005 +0000 - - Fix errors. Same. - - 2005-02-15 Kjartan Maraas - - * nb.po: Fix errors. - * no.po: Same. - - po/ChangeLog | 5 ++ - po/nb.po | 170 ++++++++++++++++++++++++++++++----------------------------- - po/no.po | 170 ++++++++++++++++++++++++++++++----------------------------- - 3 files changed, 179 insertions(+), 166 deletions(-) - -commit 1d1c3fa35bfdab91ae10a8fc961c3dae67b2d403 -Author: Jordi Mallach -Date: Tue Feb 15 13:02:01 2005 +0000 - - Updated Catalan translation. - - po/ChangeLog | 4 + - po/ca.po | 841 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 462 insertions(+), 383 deletions(-) - -commit 83b0f6b2fa735435e83109b9d60a25c03b29733b -Author: Laurent Dhima -Date: Tue Feb 15 11:40:19 2005 +0000 - - Updated Albanian translation. - - 2005-02-15 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++ - po/sq.po | 122 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 71 insertions(+), 55 deletions(-) - -commit 87f1e2787a8c25a8421dd04a95f9c41dd2293512 -Author: Stanislav Brabec -Date: Tue Feb 15 11:23:28 2005 +0000 - - cs.po: Fixed context based strings and language names. - - po/ChangeLog | 4 +++ - po/cs.po | 97 +++++++++++++++++++++++++++--------------------------------- - 2 files changed, 48 insertions(+), 53 deletions(-) - -commit 90ff2d58e1ea529889d7fa057f13dd8a8b7ad33a -Author: Priit Laes -Date: Tue Feb 15 05:13:36 2005 +0000 - - Translation updated. - - 2005-02-15 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 ++++ - po/et.po | 44 ++++++++++++++++++++++---------------------- - 2 files changed, 26 insertions(+), 22 deletions(-) - -commit 3851b47376eb77ae70921a61b7d5b4e0baa17cb2 -Author: Adam Weinberger -Date: Tue Feb 15 01:30:13 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 8 ++++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit ef7614362de89dbf7ebcfbe18bc1284754f17164 -Author: Christian Persch -Date: Mon Feb 14 20:57:08 2005 +0000 - - Emit a signal in EphySidebar::AddSearchEngine. - - 2005-02-14 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): - * embed/ephy-embed-single.h: - * embed/mozilla/EphySidebar.cpp: - * lib/ephy-marshal.list: - - Emit a signal in EphySidebar::AddSearchEngine. - - ChangeLog | 9 +++++++++ - embed/ephy-embed-single.c | 22 ++++++++++++++++++++++ - embed/ephy-embed-single.h | 9 +++++++-- - embed/mozilla/EphySidebar.cpp | 35 +++++++++++++++++++++++------------ - lib/ephy-marshal.list | 1 + - 5 files changed, 62 insertions(+), 14 deletions(-) - -commit 8393fcfb76309e11471481c922b9fc4ce666fdc9 -Author: Artur Flinta -Date: Mon Feb 14 12:19:11 2005 +0000 - - Updated Polish translation by GNOME PL Team. - - 2005-02-14 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 2939 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 1763 insertions(+), 1180 deletions(-) - -commit c6e0281efee128dd4cee3f70341f0cd7ad6d1d63 -Author: Hendrik Richter -Date: Mon Feb 14 11:45:00 2005 +0000 - - Updated German translation. - - 2005-02-14 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 ++ - po/de.po | 180 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 96 insertions(+), 88 deletions(-) - -commit 92f5e7a942e7d265cc4f69a8ab3985e98fab9ad4 -Author: Laurent Dhima -Date: Mon Feb 14 10:02:38 2005 +0000 - - Updated Albanian translation. - - 2005-02-14 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++ - po/sq.po | 184 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 99 insertions(+), 89 deletions(-) - -commit fc67bdb91484abde13e1610d59c4d378ac2effdf -Author: Alexander Shopov -Date: Mon Feb 14 07:02:42 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-02-14 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 11 ++- - po/bg.po | 288 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 154 insertions(+), 145 deletions(-) - -commit 7bf277c2d514a5143701d16c0db04b5b6f34bf81 -Author: Žygimantas Beručka -Date: Mon Feb 14 01:36:44 2005 +0000 - - Updated Lithuanian translation. - - 2005-02-14 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 1885 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 955 insertions(+), 934 deletions(-) - -commit 139dce29c7d28bdc448dc234b0699843570aeaac -Author: Christian Persch -Date: Mon Feb 14 00:36:53 2005 +0000 - - Merged from gnome-2-6 and gnome-2-8 branches - - NEWS | 197 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 197 insertions(+) - -commit a49772a4086be1676f5e7b74537017a902784670 -Author: Christian Persch -Date: Sun Feb 13 21:52:22 2005 +0000 - - Keep a ref on the tray icon. Should fix bug #166143. - - 2005-02-13 Christian Persch - - * lib/egg/eggstatusicon.c: (egg_status_icon_init), - (egg_status_icon_finalize): - - Keep a ref on the tray icon. Should fix bug #166143. - - ChangeLog | 7 +++++++ - lib/egg/eggstatusicon.c | 3 +++ - 2 files changed, 10 insertions(+) - -commit e598971b8c3e02c0f2266c5fb8f3b6a69cdc633f -Author: Vincent van Adrighem -Date: Sun Feb 13 20:43:31 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-02-13 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 650 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 341 insertions(+), 313 deletions(-) - -commit 3df3f46d2013992c838c0f9ecc49c68b00e8a7fb -Author: David Lodge -Date: Sun Feb 13 20:29:55 2005 +0000 - - Updated British translation. - - 2005-02-13 David Lodge - - * en_GB.po: Updated British translation. - - po/ChangeLog | 4 + - po/en_GB.po | 513 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 262 insertions(+), 255 deletions(-) - -commit cfd93a2a279c4e1a364c79d2fd5405c68f28da09 -Author: Gustavo Noronha Silva -Date: Sun Feb 13 14:49:30 2005 +0000 - - translation update, fixed context'ed translations - - * pt_BR.po: translation update, fixed context'ed - translations - - po/ChangeLog | 5 + - po/pt_BR.po | 675 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 354 insertions(+), 326 deletions(-) - -commit ed030c935d8789284908d39348a84cb4befb1741 -Author: Takeshi AIHANA -Date: Sun Feb 13 04:44:58 2005 +0000 - - Updated Japanese translation for v1.5.6. - - 2005-02-13 Takeshi AIHANA - * ja.po: Updated Japanese translation for v1.5.6. - - po/ChangeLog | 4 + - po/ja.po | 1946 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 991 insertions(+), 959 deletions(-) - -commit 362054318f5d827c1a509839696c78fa15253bdf -Author: Priit Laes -Date: Sun Feb 13 02:05:54 2005 +0000 - - Translation updated. - - 2005-02-13 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 737 +++++++++++++++++++++++++---------------------------------- - 2 files changed, 318 insertions(+), 423 deletions(-) - -commit a4229e330f9fa761b062a47467eb03ac0e85aa11 -Author: Miloslav Trmac -Date: Sun Feb 13 00:58:10 2005 +0000 - - Updated Czech translation. - - 2005-02-12 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 220 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 116 insertions(+), 108 deletions(-) - -commit 8c932e53285b901c1157f3bd4221d77915535c09 -Author: Christian Persch -Date: Sat Feb 12 17:28:59 2005 +0000 - - Fix initial active tab. - - 2005-02-12 Christian Persch - - * src/ephy-tabs-menu.c: (tab_added_cb), (tab_removed_cb), - (sync_active_tab): - - Fix initial active tab. - - ChangeLog | 7 +++++++ - src/ephy-tabs-menu.c | 20 +++++++++++++------- - 2 files changed, 20 insertions(+), 7 deletions(-) - -commit 3fe520c0db9f64f59e0d6429d0004ebc9b2923db -Author: Francisco Javier F. Serrador -Date: Sat Feb 12 12:48:49 2005 +0000 - - Updated Spanish translation. - - 2005-02-12 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 220 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 116 insertions(+), 108 deletions(-) - -commit 1b73a03ab6d8f7dc3e1b9b9bab6d9254fe235341 -Author: Marcel Telka -Date: Sat Feb 12 09:22:51 2005 +0000 - - Updated Slovak translation. - - 2005-02-12 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 522 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 268 insertions(+), 258 deletions(-) - -commit 9ea4903246e148f48122fff663402a1fe1fab1c3 -Author: Funda Wang -Date: Sat Feb 12 08:15:43 2005 +0000 - - Updated Simplified Chinese translation - - po/zh_CN.po | 222 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 112 insertions(+), 110 deletions(-) - -commit 8854250e4455b68d2d185545dcce118e76ca0906 -Author: Changwoo Ryu -Date: Sat Feb 12 01:36:16 2005 +0000 - - Updated Korean translation. - - 2005-02-12 Changwoo Ryu - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 1969 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1017 insertions(+), 956 deletions(-) - -commit 3bb19ce0e1bd1ded338012a998689a92acbee2db -Author: Adam Weinberger -Date: Fri Feb 11 16:11:44 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 220 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 116 insertions(+), 108 deletions(-) - -commit aea39d8177f65432073b257d1b6e2ffa40ed5054 -Author: Christian Persch -Date: Fri Feb 11 13:56:43 2005 +0000 - - Move wallet code to MozillaPrivate since nsIWalletService.h includes - - 2005-02-11 Christian Persch - - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/MozillaPrivate.h: - * embed/mozilla/mozilla-embed-single.cpp: - - Move wallet code to MozillaPrivate since nsIWalletService.h includes - nsString.h in older mozilla versions. - - ChangeLog | 9 +++++ - embed/mozilla/MozillaPrivate.cpp | 67 ++++++++++++++++++++++++++++++++++ - embed/mozilla/MozillaPrivate.h | 4 ++ - embed/mozilla/mozilla-embed-single.cpp | 55 +--------------------------- - 4 files changed, 81 insertions(+), 54 deletions(-) - -commit 6603cf97ba05529d11d62176ba5075cb13a7bc74 -Author: Christian Rose -Date: Fri Feb 11 12:23:39 2005 +0000 - - Added missing file entry. Updated Swedish translation. - - 2005-02-11 Christian Rose - - * POTFILES.in: Added missing file entry. - * sv.po: Updated Swedish translation. - - po/ChangeLog | 5 + - po/POTFILES.in | 7 +- - po/sv.po | 347 ++++++++++++++++++++++++++++++++------------------------- - 3 files changed, 206 insertions(+), 153 deletions(-) - -commit 4fefe275e3f86d25eb58461e085e86728b2c5425 -Author: Christian Persch -Date: Thu Feb 10 23:11:26 2005 +0000 - - Add check for nsIWalletService.h. - - 2005-02-11 Christian Persch - - * configure.ac: - - Add check for nsIWalletService.h. - - * embed/mozilla/mozilla-embed-single.cpp: - - Make sure the wallet store is secured. - - ChangeLog | 10 +++++++ - TODO | 4 +++ - configure.ac | 7 +++-- - embed/mozilla/mozilla-embed-single.cpp | 55 ++++++++++++++++++++++++++++++++++ - 4 files changed, 74 insertions(+), 2 deletions(-) - -commit da3e75ecba1dbc62ee1f6c9e1970f4c140fbef0d -Author: Christian Persch -Date: Thu Feb 10 22:37:15 2005 +0000 - - Remove ephy_tab_get_action(). Adapts the tabs menu accordingly. - - 2005-02-10 Christian Persch - - * src/ephy-tab.c: (ephy_tab_finalize), (ephy_tab_title_cb), - (ensure_page_info), (ephy_tab_init), (ephy_tab_set_title), - (ephy_tab_get_title), (ephy_tab_get_zoom): - * src/ephy-tab.h: - * src/ephy-tabs-menu.c: (ephy_tabs_menu_get_type), - (tab_action_activate_cb), (sync_tab_title), (tab_added_cb), - (tab_removed_cb), (tabs_reordered_cb), (sync_active_tab), - (ephy_tabs_menu_set_window), (ephy_tabs_menu_set_property), - (ephy_tabs_menu_get_property), (ephy_tabs_menu_class_init), - (ephy_tabs_menu_clean), (tab_set_action_accelerator), - (ephy_tabs_menu_update): - * src/ephy-window.c: (ephy_window_set_active_tab), - (ephy_window_get_active_embed): - - Remove ephy_tab_get_action(). Adapts the tabs menu accordingly. - - ChangeLog | 18 ++++ - src/ephy-tab.c | 115 +++++---------------- - src/ephy-tab.h | 8 +- - src/ephy-tabs-menu.c | 286 ++++++++++++++++++++++++++++++++++----------------- - src/ephy-window.c | 13 +-- - 5 files changed, 240 insertions(+), 200 deletions(-) - -commit b48d4a6f2f65afa8b982e09929c67dbfe438d54b -Author: Kjartan Maraas -Date: Thu Feb 10 11:51:26 2005 +0000 - - Update Update - - 2005-02-10 Kjartan Maraas - - * nb.po: Update - * no.po: Update - - po/ChangeLog | 5 + - po/nb.po | 1955 ++++++++++++++++++++++++++++++---------------------------- - po/no.po | 1955 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 1997 insertions(+), 1918 deletions(-) - -commit aa41057e526d94987a446a32378013361e173c52 -Author: Christian Persch -Date: Wed Feb 9 23:19:04 2005 +0000 - - Move all the stuff from finalize to dispose, so that we finalise the UI - - 2005-02-10 Christian Persch - - * src/ephy-window.c: (ephy_window_dispose), - (ephy_window_class_init), (ephy_window_finalize): - - Move all the stuff from finalize to dispose, so that - we finalise the UI manager when disposing and not only - when finalising. Fixes bug #165992. - - ChangeLog | 9 ++++ - src/ephy-window.c | 147 +++++++++++++++++++++++++++++------------------------- - 2 files changed, 88 insertions(+), 68 deletions(-) - -commit 712dc29890aa60293a880a7a1a9a8b03f0cf2e60 -Author: Christian Persch -Date: Wed Feb 9 21:08:03 2005 +0000 - - Move style notifier to ephy-toolbars-model, and also apply the flags to - - 2005-02-09 Christian Persch - - * src/ephy-shell.c: (ephy_shell_finalize), - (ephy_shell_get_toolbars_model): - * src/ephy-toolbars-model.c: (update_flags), - (update_flags_and_save_changes), (get_toolbar_style), - (toolbar_style_notifier), (ephy_toolbars_model_init), - (ephy_toolbars_model_finalize): - - Move style notifier to ephy-toolbars-model, and also apply - the flags to newly added toolbars. - - ChangeLog | 12 +++++++ - src/ephy-shell.c | 53 ------------------------------- - src/ephy-toolbars-model.c | 80 +++++++++++++++++++++++++++++++++++++++++------ - 3 files changed, 82 insertions(+), 63 deletions(-) - -commit f8ab0f22d40c474e5c9bd23cacc7fedeacade0fa -Author: Christian Persch -Date: Wed Feb 9 19:25:10 2005 +0000 - - Implement nsIWebProgressListener. Fixes bug #165328. - - 2005-02-09 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Implement nsIWebProgressListener. Fixes bug #165328. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit d345f8ec7d9de0d8bdb24c3091affd655ee30552 -Author: Priit Laes -Date: Wed Feb 9 16:35:12 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-02-09 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 2807 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1598 insertions(+), 1213 deletions(-) - -commit c730f9c535295c1d9c53a3659d01d10df4386b8d -Author: Laurent Dhima -Date: Wed Feb 9 16:11:51 2005 +0000 - - Updated Albanian translation. - - 2005-02-09 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++ - po/sq.po | 122 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 65 insertions(+), 61 deletions(-) - -commit be9ceeb4c93a74d0369632599c5acc68c0bac680 -Author: Christian Persch -Date: Tue Feb 8 23:28:30 2005 +0000 - - Dist po/LINGUAS. - - 2005-02-09 Christian Persch - - * Makefile.am: - - Dist po/LINGUAS. - - ChangeLog | 6 ++++++ - Makefile.am | 1 + - 2 files changed, 7 insertions(+) - -commit 071b244f260abb0eff110fa21eca512ff947a38b -Author: Christian Persch -Date: Tue Feb 8 23:09:39 2005 +0000 - - A po/LINGUAS: - - 2005-02-09 Christian Persch - - * configure.ac: - A po/LINGUAS: - - Get list of languages from po/LINGUAS. - - ChangeLog | 7 +++++++ - Makefile.am | 2 +- - configure.ac | 16 +++++++++++++--- - po/LINGUAS | 3 +++ - 4 files changed, 24 insertions(+), 4 deletions(-) - -commit 9fc1a3e8d79d9d44c0dc3b2cb4b4f0c6bd083f56 -Author: Hendrik Richter -Date: Tue Feb 8 13:56:26 2005 +0000 - - Updated German translation. - - 2005-02-08 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 483 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 253 insertions(+), 234 deletions(-) - -commit e6701b9db7647b16f564f7b26e5d44d62fd70257 -Author: Christian Persch -Date: Mon Feb 7 23:48:56 2005 +0000 - - Post-release version bump. - - 2005-02-08 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 78f765828dffd924d82a24915c4a758ad8c8b39c -Author: Christian Persch -Date: Mon Feb 7 23:47:57 2005 +0000 - - === Release 1.5.6 === - - 2005-02-08 Christian Persch - - === Release 1.5.6 === - - * Makefile.am: - * configure.ac: - * doc/reference/tmpl/ephy-embed.sgml: - - ChangeLog | 8 ++++++++ - Makefile.am | 2 +- - configure.ac | 5 ++--- - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 4 files changed, 13 insertions(+), 4 deletions(-) - -commit 48cbe4e73febce12b9673fbd34eb712de5329f1e -Author: Christian Persch -Date: Mon Feb 7 23:04:10 2005 +0000 - - Fix for mozilla API change. - - 2005-02-07 Christian Persch - - * embed/mozilla/MozRegisterComponents.cpp: - - Fix for mozilla API change. - - ChangeLog | 6 ++++++ - embed/mozilla/MozRegisterComponents.cpp | 4 ++++ - 2 files changed, 10 insertions(+) - -commit 24ec36cab39bfdb6b136a5a5a8adf3a540f81f8c -Author: Christian Persch -Date: Mon Feb 7 15:30:40 2005 +0000 - - Update - - NEWS | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 57 insertions(+) - -commit 242c50b9298e86069176e12417a3f364eb595321 -Author: Jordi Mallach -Date: Mon Feb 7 13:12:51 2005 +0000 - - Remove bogus conflict marker. - - po/ChangeLog | 1 - - 1 file changed, 1 deletion(-) - -commit 4c5db59a331d7406e48d9b61941528d2b5834cd8 -Author: Jordi Mallach -Date: Mon Feb 7 13:11:54 2005 +0000 - - Updated Catalan translation by Xavier Conde Rueda . - - po/ChangeLog | 6 + - po/ca.po | 2529 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1386 insertions(+), 1149 deletions(-) - -commit 0e0570e0b519c480a853f61420c6555044c59dfe -Author: Leonid Kanter -Date: Mon Feb 7 13:10:06 2005 +0000 - - Updated Russian translation - - po/ChangeLog | 4 + - po/ru.po | 535 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 285 insertions(+), 254 deletions(-) - -commit 3fff099a28115d778e9df112d12dc2b543d4414b -Author: Christian Persch -Date: Sun Feb 6 19:33:20 2005 +0000 - - Use 'true'/'false' for bool keys, not 1/0. - - 2005-02-06 Christian Persch - - * data/epiphany.schemas.in: - - Use 'true'/'false' for bool keys, not 1/0. - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 16 ++++++++-------- - 2 files changed, 14 insertions(+), 8 deletions(-) - -commit c7621657b7f9d37dd4777821dfd539fd6473b5d7 -Author: Christian Persch -Date: Sun Feb 6 14:37:12 2005 +0000 - - Don't set the lock icon as drag source. Actually emit the lock-clicked - - 2005-02-06 Christian Persch - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_class_init), (lock_button_press_event_cb), - (ephy_location_entry_construct_contents): - - Don't set the lock icon as drag source. Actually emit the lock-clicked - signal when pressed. - - * lib/widgets/ephy-location-entry.h: - * src/ephy-location-action.c: (lock_clicked_cb), (connect_proxy), - (ephy_location_action_class_init): - * src/ephy-location-action.h: - * src/ephy-toolbar.c: (lock_clicked_cb), (ephy_toolbar_set_window): - - Actually forward the lock-clicked signal to the toolbar. - - ChangeLog | 17 +++++++++++++++++ - 1 file changed, 17 insertions(+) - -commit 9de30c8784509df5ea9e80ed3eb093b3f5e35a95 -Author: Christian Persch -Date: Sun Feb 6 14:32:59 2005 +0000 - - Don't set the lock icon as drag source. Actually emit the lock-clicked - - 2005-02-06 Christian Persch - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_class_init), (lock_button_press_event_cb), - (ephy_location_entry_construct_contents): - - Don't set the lock icon as drag source. Actually emit the lock-clicked - signal when pressed. - - * lib/widgets/ephy-location-entry.h: - * src/ephy-location-action.c: (lock_clicked_cb), (connect_proxy), - (ephy_location_action_class_init): - * src/ephy-location-action.h: - * src/ephy-toolbar.c: (lock_clicked_cb), (ephy_toolbar_set_window): - - Actually forward the lock-clicked signal to the toolbar. - - lib/widgets/ephy-location-entry.c | 44 ++++++++++++++++++++++++++------------- - lib/widgets/ephy-location-entry.h | 1 + - src/ephy-location-action.c | 26 +++++++++++++++++++++++ - src/ephy-location-action.h | 3 +++ - src/ephy-toolbar.c | 9 ++++++++ - 5 files changed, 69 insertions(+), 14 deletions(-) - -commit deecc2b60894f1bdd55f9818dd75845e4a6a956b -Author: Francisco Javier F. Serrador -Date: Sun Feb 6 14:14:03 2005 +0000 - - Updated Spanish translation. - - 2005-02-06 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++++ - po/es.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit ec83ab64298df9699ca4fd04d74ca13b67e8c7f5 -Author: Francisco Javier F. Serrador -Date: Sun Feb 6 13:59:27 2005 +0000 - - Updated Spanish translation. - - 2005-02-06 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/es.po | 396 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 199 insertions(+), 197 deletions(-) - -commit 3ddb8998e6a80662528de0043258daf51255182e -Author: Alexander Shopov -Date: Sun Feb 6 09:14:12 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-02-06 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 576 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 303 insertions(+), 278 deletions(-) - -commit 1e4b54440133ccd164d4b2184f58b99df4215d03 -Author: Miloslav Trmac -Date: Fri Feb 4 12:47:16 2005 +0000 - - Updated Czech translation. - - 2005-02-04 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++++ - po/cs.po | 71 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 39 insertions(+), 36 deletions(-) - -commit 8aa19a0855cb23e1ff92e9c5ab7a7cefd8166af3 -Author: Pauli Virtanen -Date: Fri Feb 4 10:05:22 2005 +0000 - - Updated Finnish translation. - - 2005-02-04 Pauli Virtanen - - * fi.po: Updated Finnish translation. - - po/ChangeLog | 4 + - po/fi.po | 2938 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1597 insertions(+), 1345 deletions(-) - -commit c86b6db4b669c48e906fa6089c65c15cc92d83ec -Author: Adam Weinberger -Date: Fri Feb 4 07:28:04 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 9 +++++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit 1df4c1cb2333e352044f00e18f27bb83a8e1f67a -Author: Jean-François Rameau -Date: Thu Feb 3 23:15:32 2005 +0000 - - We don't want Epiphany to exit when DBUS restarts. - - 2005-02-04 Jean-François Rameau - - * lib/ephy-dbus.c: (ephy_dbus_connect_to_system_bus, - ephy_dbus_connect_to_session_bus): - - We don't want Epiphany to exit when DBUS restarts. - - * lib/ephy-dbus.c: (ephy_dbus_connect_to_system_bus_cb): - - Bug: bad test. - - ChangeLog | 11 +++++++++++ - lib/ephy-dbus.c | 4 +++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit df91f5ce52550537d113d771f46a8c77bf739de4 -Author: Nikos Charonitakis -Date: Thu Feb 3 21:57:12 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 468 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 243 insertions(+), 229 deletions(-) - -commit 0986231f2ee8a2ee66d98dcb8e9f0cd56bb3d1ed -Author: Žygimantas Beručka -Date: Thu Feb 3 19:42:32 2005 +0000 - - Updated Lithuanian translation. - - 2005-02-03 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 ++ - po/lt.po | 132 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 70 insertions(+), 66 deletions(-) - -commit f6eaf86e320e6e748e06a04b6a34155a3246367a -Author: Adam Weinberger -Date: Thu Feb 3 19:28:00 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 78 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 44 insertions(+), 38 deletions(-) - -commit 13ad98aebc09e4ccc72d49d15416971f5b45d02f -Author: Funda Wang -Date: Thu Feb 3 16:24:32 2005 +0000 - - Updated Simplified Chinese translation - - po/zh_CN.po | 77 ++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 40 insertions(+), 37 deletions(-) - -commit 535444ddd288b75cde5c36856cd8478c0247ad48 -Author: Miloslav Trmac -Date: Wed Feb 2 20:34:37 2005 +0000 - - Updated Czech translation. - - 2005-02-02 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 143 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 78 insertions(+), 69 deletions(-) - -commit 0d58e4078b9ab33ad5aaf4c2661e68a24a4f98cb -Author: Christian Persch -Date: Wed Feb 2 20:05:22 2005 +0000 - - Revert the schema change too. - - 2005-02-02 Christian Persch - - * data/epiphany-lockdown.schemas.in: - - Revert the schema change too. - - ChangeLog | 6 ++++++ - data/epiphany-lockdown.schemas.in | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit fd568c15b290afbdc80b2864f65c954cdff420e4 -Author: Christian Persch -Date: Wed Feb 2 19:53:26 2005 +0000 - - Revert the fix for bug #165550, it wasn't correct. - - 2005-02-02 Christian Persch - - * src/ephy-window.c: (sync_chromes_visibility), (setup_ui_manager), - (ephy_window_set_print_preview): - - Revert the fix for bug #165550, it wasn't correct. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 46 ++++++++++++++++------------------------------ - 2 files changed, 23 insertions(+), 30 deletions(-) - -commit e074659671a4545808f509de37597fc9161bb993 -Author: Christian Persch -Date: Wed Feb 2 19:48:10 2005 +0000 - - Don't copy params with the email address. Fixes bug #144469. - - 2005-02-02 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Don't copy params with the email address. Fixes bug #144469. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 7 +++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit eea97b9de2d079295ed6bb2454b5fe367d569b70 -Author: Christian Persch -Date: Wed Feb 2 19:32:47 2005 +0000 - - Add chrome param to ephy_shell_new_tab_full, and use it in - - 2005-02-02 Christian Persch - - * src/ephy-automation.c: - (impl_ephy_automation_loadUrlWithStartupId): - * src/ephy-shell.c: (ephy_shell_new_window_cb), - (ephy_shell_new_tab_full), (ephy_shell_new_tab): - * src/ephy-shell.h: - - Add chrome param to ephy_shell_new_tab_full, and use it - in ephy_shell_new_window_cb(). Fixes bug #165566. - - ChangeLog | 11 ++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 4 ++++ - doc/reference/tmpl/ephy-shell.sgml | 5 ++++- - src/ephy-automation.c | 2 +- - src/ephy-shell.c | 41 +++++++++++++++++++++++++------------- - src/ephy-shell.h | 4 +++- - 6 files changed, 50 insertions(+), 17 deletions(-) - -commit 2bb88affbb80a7556dfe4d5a0fb194fe4b147c4e -Author: Christian Persch -Date: Wed Feb 2 19:27:07 2005 +0000 - - Weak ref the parent window. - - 2005-02-02 Christian Persch - - * embed/ephy-embed-persist.c: (ephy_embed_persist_set_fc_parent), - (ephy_embed_persist_finalize): - - Weak ref the parent window. - - ChangeLog | 7 +++++++ - embed/ephy-embed-persist.c | 27 ++++++++++++++++++++++----- - 2 files changed, 29 insertions(+), 5 deletions(-) - -commit b6006aec036e030f33bdbf593164642ed4edd6b8 -Author: Funda Wang -Date: Wed Feb 2 09:42:57 2005 +0000 - - Updated Simplified Chinese translation - - po/zh_CN.po | 398 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 198 insertions(+), 200 deletions(-) - -commit 7a6b5b52174d53bf90f09546a3d7fa271a401661 -Author: Laurent Dhima -Date: Wed Feb 2 09:05:49 2005 +0000 - - Updated Albanian translation. - - 2005-02-02 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 752 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 417 insertions(+), 339 deletions(-) - -commit deebb2df1640b4129197e35bbcacb633aaf754b9 -Author: Adam Weinberger -Date: Tue Feb 1 23:51:26 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 394 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 200 insertions(+), 198 deletions(-) - -commit 3cc751a30e83efeed8fc9707d2069c545aa005c6 -Author: Christian Persch -Date: Tue Feb 1 23:42:48 2005 +0000 - - Define variants with startup ID. - - 2005-02-02 Christian Persch - - * idl/EphyAutomation.idl: - - Define variants with startup ID. - - * lib/ephy-gui.c: (ephy_gui_window_update_user_time): - * lib/ephy-gui.h: - * src/bookmarks/ephy-bookmarks.c: (redirect_cb): - * src/ephy-automation.c: - (impl_ephy_automation_loadUrlWithStartupId), - (impl_ephy_automation_loadurl), (impl_ephy_automation_addBookmark), - (impl_ephy_automation_importBookmarks), - (impl_ephy_automation_loadSessionWithStartupId), - (impl_ephy_automation_loadSession), - (impl_ephy_automation_openBookmarksEditorWithStartupId), - (impl_ephy_automation_openBookmarksEditor), - (ephy_automation_class_init): - * src/ephy-main.c: (get_startup_id), (main): - * src/ephy-session.c: (offer_to_resume), (ephy_session_autoresume), - (ephy_session_load): - * src/ephy-session.h: - * src/ephy-shell.c: (open_urls), (ephy_shell_startup), - (ephy_shell_new_tab_full), (ephy_shell_new_tab): - * src/ephy-shell.h: - - Implement startup ID forwarding to the already-running ephy instance. - Part of bug #150085. - - ChangeLog | 29 ++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 + - doc/reference/tmpl/ephy-session.sgml | 2 + - doc/reference/tmpl/ephy-shell.sgml | 1 + - idl/EphyAutomation.idl | 11 ++++ - lib/ephy-gui.c | 14 +++++ - lib/ephy-gui.h | 3 ++ - src/bookmarks/ephy-bookmarks.c | 3 ++ - src/ephy-automation.c | 101 ++++++++++++++++++++++++++--------- - src/ephy-main.c | 39 ++++++++++++++ - src/ephy-session.c | 35 +++++++++--- - src/ephy-session.h | 6 ++- - src/ephy-shell.c | 67 +++++++++++++++++------ - src/ephy-shell.h | 8 +++ - 14 files changed, 270 insertions(+), 51 deletions(-) - -commit ab9e3429d7c547aad67106a04847e16cda1279b4 -Author: Žygimantas Beručka -Date: Tue Feb 1 23:33:14 2005 +0000 - - Updated Lithuanian translation. - - 2005-02-02 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 357 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 184 insertions(+), 177 deletions(-) - -commit bbe51560c5c217f6d942aff4a3770e6703416326 -Author: Christian Persch -Date: Tue Feb 1 22:51:33 2005 +0000 - - Remove the accel group from the window when hiding the menubar in lockdown - - 2005-02-01 Christian Persch - - * data/epiphany-lockdown.schemas.in: - * src/ephy-window.c: (sync_chromes_visibility), (setup_ui_manager), - (ephy_window_set_print_preview): - - Remove the accel group from the window when hiding the menubar - in lockdown mode. From bug #165550. - - ChangeLog | 9 ++++++++ - data/epiphany-lockdown.schemas.in | 5 ++--- - src/ephy-window.c | 46 +++++++++++++++++++++++++-------------- - 3 files changed, 41 insertions(+), 19 deletions(-) - -commit 7864d3ac6cb6527f871b3932a05a868cdb60e126 -Author: Christian Persch -Date: Tue Feb 1 21:17:46 2005 +0000 - - Plug a mem leak. - - 2005-02-01 Christian Persch - - * src/ephy-shell.c: (toolbar_style_notifier): - - Plug a mem leak. - - ChangeLog | 6 ++++++ - src/ephy-shell.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit d8efa7bee4c2d57b3914840b9f33ef7d71e4d667 -Author: Christian Persch -Date: Tue Feb 1 20:32:16 2005 +0000 - - Back out the patch from bug #141963 since it caused bug #165811. - - 2005-02-01 Christian Persch - - * data/default-prefs-common.js: - * data/default-prefs-toolkit.js: - - Back out the patch from bug #141963 since it caused bug #165811. - - ChangeLog | 7 +++++++ - data/default-prefs-common.js | 3 +-- - data/default-prefs-toolkit.js | 2 -- - 3 files changed, 8 insertions(+), 4 deletions(-) - -commit ca38b66c43d6bc8d5658109cd7d4b47e59242ac8 -Author: Christian Persch -Date: Tue Feb 1 20:25:18 2005 +0000 - - Don't assign to ephy_shell global variable, that's already done in its - - 2005-02-01 Christian Persch - - * src/ephy-main.c: (main): - - Don't assign to ephy_shell global variable, that's already done - in its constructor. - - ChangeLog | 7 +++++++ - src/ephy-main.c | 3 ++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 551c3257365e4410049cd0c2efe01fe8c703bd03 -Author: Christian Persch -Date: Tue Feb 1 19:51:55 2005 +0000 - - Don't disable print preview if print setup is locked down. Fixes bug - - 2005-02-01 Christian Persch - - * src/ephy-window.c: (update_print_actions): - - Don't disable print preview if print setup is locked down. - Fixes bug #165552. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit ed8dda32836a42ac73365719f399685746bce939 -Author: Christian Persch -Date: Tue Feb 1 19:45:23 2005 +0000 - - Don't show the menubar with F10 in lockdown mode. Make sure we always - - 2005-02-01 Christian Persch - - * src/ephy-window.c: (ephy_window_key_press_event): - - Don't show the menubar with F10 in lockdown mode. - Make sure we always chain up to GtkWindow's keypress handler. - Fixes bug #165550. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 6 +++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit c0d392cbae39f50fd029c58fac14a95b5a5f2cc3 -Author: Christian Persch -Date: Tue Feb 1 19:40:51 2005 +0000 - - Don't weak ref the shell when it's finalised already. Fixes bug #165542. - - 2005-02-01 Christian Persch - - * src/ephy-main.c: (main): - * src/ephy-shell.c: (ephy_shell_finalize): - - Don't weak ref the shell when it's finalised already. - Fixes bug #165542. - - ChangeLog | 8 ++++++++ - src/ephy-main.c | 2 +- - src/ephy-shell.c | 1 + - 3 files changed, 10 insertions(+), 1 deletion(-) - -commit 6345432b15c7ce20dad3844d72592e8ecbbe1577 -Author: Christian Persch -Date: Tue Feb 1 19:32:12 2005 +0000 - - Set "Clear" context menu entry insensitive in lockdown mode. Fixes bug - - 2005-02-01 Christian Persch - - * lib/widgets/ephy-location-entry.c: (entry_populate_popup_cb): - - Set "Clear" context menu entry insensitive in lockdown mode. - Fixes bug #165540. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-location-entry.c | 3 +++ - 2 files changed, 10 insertions(+) - -commit 2f4357ef874b11caa38200119264e9826d72d689 -Author: Christian Persch -Date: Tue Feb 1 14:47:33 2005 +0000 - - Ungrab the pointer when moving tab between notebooks. Fixes bug #165797. - - 2005-02-01 Christian Persch - - * src/ephy-notebook.c: (motion_notify_cb), - (move_tab_to_another_notebook), (button_release_cb), - (ephy_notebook_finalize): - - Ungrab the pointer when moving tab between notebooks. - Fixes bug #165797. - - ChangeLog | 9 +++++++++ - src/ephy-notebook.c | 18 ++++++++++++++---- - 2 files changed, 23 insertions(+), 4 deletions(-) - -commit 48260d29c265eebcc9f1761a359aa645f852f8ec -Author: Kjartan Maraas -Date: Tue Feb 1 12:15:33 2005 +0000 - - Update Update - - 2005-02-01 Kjartan Maraas - - * nb.po: Update - * no.po: Update - - po/ChangeLog | 11 +- - po/nb.po | 1156 +++++++++++++++++++++++++++++++--------------------------- - po/no.po | 1156 +++++++++++++++++++++++++++++++--------------------------- - 3 files changed, 1256 insertions(+), 1067 deletions(-) - -commit 70e3f1ac4b6cba0af0bb3bf3c4cb2dadacbe1da6 -Author: Christian Persch -Date: Mon Jan 31 13:53:05 2005 +0000 - - Add title signal handler for XUL dialogues. - - 2005-01-31 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: - - Add title signal handler for XUL dialogues. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 14 ++++++++++++++ - 2 files changed, 20 insertions(+) - -commit f840d514640c5790e76cb7572513204be1bb375f -Author: Christian Rose -Date: Mon Jan 31 13:32:34 2005 +0000 - - Updated Swedish translation. - - 2005-01-31 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 994 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 541 insertions(+), 457 deletions(-) - -commit 61a8253158e04b2ac8b067a51fb1791a397907ae -Author: Miloslav Trmac -Date: Mon Jan 31 09:58:49 2005 +0000 - - Updated Czech translation. - - 2005-01-31 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 409 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 214 insertions(+), 199 deletions(-) - -commit 95269523ef77e65452698787ac1bf983475380ee -Author: Christian Persch -Date: Mon Jan 31 00:22:15 2005 +0000 - - Make EphyWindow implement EphyLink interface. Make ephy-link.h public. - - 2005-01-31 Christian Persch - - * src/Makefile.am: - * src/ephy-window.c: (ephy_window_get_type), - (ephy_window_link_iface_init), (ephy_window_open_link), - (ephy_window_init), (ephy_window_load_url): - - Make EphyWindow implement EphyLink interface. - Make ephy-link.h public. - - ChangeLog | 10 ++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - src/Makefile.am | 2 +- - src/ephy-window.c | 62 +++++++++++++++++++++++--------------- - 4 files changed, 51 insertions(+), 25 deletions(-) - -commit baba1a0df1d6383295d16172b69064c93115fb16 -Author: David Lodge -Date: Sun Jan 30 21:33:37 2005 +0000 - - Updated British translation. - - 2005-01-30 David Lodge - - * en_GB.po: Updated British translation. - - po/ChangeLog | 4 + - po/en_GB.po | 1966 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1064 insertions(+), 906 deletions(-) - -commit 27f7eb4d241a38d5f880179390e57ad21ed2862e -Author: Changwoo Ryu -Date: Sun Jan 30 20:48:44 2005 +0000 - - Updated Korean translation. - - 2005-01-31 Changwoo Ryu - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 2748 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1566 insertions(+), 1186 deletions(-) - -commit e079b8f01e96df848268e822afc531acc98bf68f -Author: Christian Persch -Date: Sun Jan 30 20:09:59 2005 +0000 - - Some sparse fixes. - - 2005-01-30 Christian Persch - - * embed/ephy-history.c: (ephy_history_new): - * lib/ephy-dialog.c: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_new): - * src/ephy-link.c: (ephy_link_open): - * src/ephy-statusbar.c: (create_statusbar_security_icon): - * src/ephy-window.c: - * src/prefs-dialog.c: (get_download_button_label): - - Some sparse fixes. - - ChangeLog | 12 ++++++++++++ - embed/ephy-history.c | 2 +- - lib/ephy-dialog.c | 10 +++++----- - src/bookmarks/ephy-bookmarks.c | 2 +- - src/ephy-link.c | 2 +- - src/ephy-statusbar.c | 2 +- - src/ephy-window.c | 10 +++++----- - src/prefs-dialog.c | 2 +- - 8 files changed, 27 insertions(+), 15 deletions(-) - -commit 8f01817138c1852b319898a5de3f4b9f244cdea5 -Author: Christian Persch -Date: Sun Jan 30 15:20:36 2005 +0000 - - Move new-window signal to the embed single, and new window creation from - - 2005-01-30 Christian Persch - - * doc/reference/tmpl/ephy-embed.sgml: - * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): - * embed/ephy-embed-single.h: - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-embed.h: - * lib/ephy-marshal.list: - * lib/ephy-prefs.h: - * src/ephy-shell.c: (ephy_shell_new_window_cb), - (impl_get_embed_single): - * src/ephy-tab.c: (ephy_tab_new_window_cb): - - Move new-window signal to the embed single, and new window creation - from EphyTab to EphyShell. - - ChangeLog | 19 ++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 6 +++- - embed/ephy-embed-single.c | 23 +++++++++++++ - embed/ephy-embed-single.h | 4 +++ - embed/ephy-embed.c | 14 ++++---- - embed/ephy-embed.h | 4 +-- - embed/mozilla/mozilla-embed-single.cpp | 27 ++++++++++++--- - embed/mozilla/mozilla-embed.cpp | 63 +++++++++++++++++++++------------- - embed/mozilla/mozilla-embed.h | 10 ++++-- - lib/ephy-marshal.list | 2 +- - lib/ephy-prefs.h | 1 + - src/ephy-shell.c | 42 ++++++++++++++++++++--- - src/ephy-tab.c | 27 +++------------ - 13 files changed, 172 insertions(+), 70 deletions(-) - -commit 58dba74abaf6313221c50629e546dc4492672486 -Author: Marcel Telka -Date: Sun Jan 30 13:15:52 2005 +0000 - - Updated Slovak translation. - - 2005-01-30 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 439 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 263 insertions(+), 180 deletions(-) - -commit 39c2c4fedc8ede2ddea01668283aab479b174118 -Author: Raphael Higino -Date: Sun Jan 30 11:26:01 2005 +0000 - - Updated pt_BR translation - - po/ChangeLog | 4 + - po/pt_BR.po | 2701 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1434 insertions(+), 1271 deletions(-) - -commit a5bb75a559e5ef40501785489812c247674c6039 -Author: Francisco Javier F. Serrador -Date: Sun Jan 30 01:22:05 2005 +0000 - - Updated Spanish translation. - - 2005-01-30 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++++ - po/es.po | 33 ++++++++++++++++++--------------- - 2 files changed, 22 insertions(+), 15 deletions(-) - -commit 18f3b9164346f43dd11ea96889bcb9c156beb6b5 -Author: Francisco Javier F. Serrador -Date: Sat Jan 29 17:22:31 2005 +0000 - - Updated Spanish translation. - - 2005-01-29 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 1898 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 959 insertions(+), 943 deletions(-) - -commit 6728f1da7ca248fe1c7121ed2362f5f6c131ebc0 -Author: Žygimantas Beručka -Date: Sat Jan 29 13:31:10 2005 +0000 - - Updated Lithuanian translation. - - 2005-01-29 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 ++ - po/lt.po | 159 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 77 insertions(+), 86 deletions(-) - -commit 4c4c98d37f774d1039e430530193a59c530c66a1 -Author: Funda Wang -Date: Sat Jan 29 08:39:08 2005 +0000 - - Updated Simplified Chinese translation - - po/zh_CN.po | 186 +++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 96 insertions(+), 90 deletions(-) - -commit af190f629896a570fa732fb694479c5831143c38 -Author: Adam Weinberger -Date: Sat Jan 29 05:04:25 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 162 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 90 insertions(+), 76 deletions(-) - -commit 6489ead25062142ab0dd9fc7285dc65cb438b284 -Author: Christian Persch -Date: Fri Jan 28 22:51:20 2005 +0000 - - Refactored to elimiate code duplication. - - 2005-01-28 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: - - Refactored to elimiate code duplication. - - ChangeLog | 6 +++ - embed/mozilla/mozilla-embed.cpp | 87 +++++++++++++---------------------------- - 2 files changed, 34 insertions(+), 59 deletions(-) - -commit 8ed0c8f6318e7800ad3968f6e3cd19a53dcd5c8c -Author: Christian Persch -Date: Fri Jan 28 22:25:02 2005 +0000 - - Add ; to all LOG statements, and adapt ephy-debug.h for non-GNUC-varargs - - 2005-01-28 Christian Persch - - * doc/reference/tmpl/ephy-embed.sgml: - * embed/ephy-embed-persist.c: (ephy_embed_persist_init), - (ephy_embed_persist_finalize): - * embed/ephy-embed-shell.c: (ephy_embed_shell_finalize): - * embed/ephy-encodings.c: (ephy_encodings_finalize), - (ephy_encodings_init): - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_finalize), - (favicon_download_completed_cb), (favicon_download_cancelled_cb), - (ephy_favicon_cache_download), (ephy_favicon_cache_get): - * embed/ephy-history.c: (ephy_history_set_enabled), - (ephy_history_save), (ephy_history_finalize), - (ephy_history_host_visited), (ephy_history_set_page_title), - (ephy_history_set_icon), (ephy_history_clear): - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHistoryListener.cpp: - * embed/mozilla/EphySidebar.cpp: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-embed-event.cpp: - * lib/ephy-dbus.c: (session_filter_func), (system_filter_func), - (ephy_dbus_connect_to_system_bus), - (ephy_dbus_connect_to_session_bus), (path_message_func), - (ephy_dbus_startup), (ephy_dbus_shutdown), (ephy_dbus_init), - (ephy_dbus_finalize): - * lib/ephy-debug.h: - * lib/ephy-file-chooser.c: (ephy_file_chooser_finalize): - * lib/ephy-file-helpers.c: (ephy_file_helpers_shutdown): - * lib/ephy-langs.c: (load_iso_entries): - * lib/ephy-module.c: (ephy_module_load), (ephy_module_unload), - (ephy_module_new_object), (ephy_module_init), - (ephy_module_finalize): - * lib/ephy-node-db.c: (ephy_node_db_load_from_file), - (ephy_node_db_write_to_xml_valist): - * lib/ephy-shlib-loader.c: (ephy_shlib_loader_init), - (ephy_shlib_loader_finalize): - * lib/widgets/ephy-location-entry.c: (entry_style_set_cb), - (entry_realize_cb), (ephy_location_entry_construct_contents), - (ephy_location_entry_init): - * lib/widgets/ephy-spinner.c: (ephy_spinner_cache_load), - (ephy_spinner_cache_get_images), (ephy_spinner_cache_init), - (ephy_spinner_cache_finalize): - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_update_node): - * lib/widgets/ephy-tree-model-sort.c: - (each_property_get_data_binder): - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (connect_proxy), (ephy_bookmark_action_finalize): - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_set_bookmark), (set_window_icon): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu), (provide_favicon): - * src/bookmarks/ephy-bookmarks-export.c: - (ephy_bookmarks_export_rdf), (ephy_bookmarks_export_mozilla): - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): - * src/bookmarks/ephy-bookmarks-menu.c: - (ephy_bookmarks_menu_rebuild), (do_update_cb), - (bookmarks_tree_changed_cb), (topics_added_cb), - (topics_removed_cb), (topic_child_changed_cb), (bookmark_added_cb), - (bookmark_removed_cb), (activate_cb), - (ephy_bookmarks_menu_finalize): - * src/bookmarks/ephy-bookmarks.c: - (ephy_bookmarks_get_toolbars_model), (ephy_bookmarks_save), - (ephy_bookmarks_finalize), (ephy_bookmarks_find_keyword), - (ephy_bookmarks_set_keyword), (ephy_bookmarks_unset_keyword): - * src/bookmarks/ephy-bookmarksbar-model.c: (save_changes_idle), - (load_toolbars), (ephy_bookmarksbar_model_init), - (ephy_bookmarksbar_model_dispose), - (ephy_bookmarksbar_model_finalize): - * src/bookmarks/ephy-bookmarksbar.c: - (ephy_bookmarksbar_action_request), (ephy_bookmarksbar_finalize): - * src/bookmarks/ephy-favorites-menu.c: - (ephy_favorites_menu_rebuild): - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_set_title): - * src/bookmarks/ephy-topic-action.c: (connect_proxy): - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_set_bookmark): - * src/ephy-encoding-menu.c: (add_action): - * src/ephy-extensions-manager.c: (ephy_extensions_manager_load), - (ephy_extensions_manager_unload), - (ephy_extensions_manager_load_string), (get_loader_for_type), - (load_extension), (unload_extension), (sync_loaded_extensions), - (ephy_extensions_manager_load_dir), (ephy_extensions_manager_init), - (ephy_extensions_manager_startup), - (ephy_extensions_manager_finalize), (impl_attach_window), - (impl_detach_window), (impl_attach_tab), (impl_detach_tab): - * src/ephy-history-window.c: (setup_filters), (provide_favicon): - * src/ephy-link.c: (ephy_link_open): - * src/ephy-location-action.c: (user_changed_cb), (sync_address), - (ephy_location_action_set_address): - * src/ephy-navigation-action.c: (menu_activated_cb), - (connect_proxy): - * src/ephy-notebook.c: (ephy_notebook_finalize): - * src/ephy-session.c: (window_focus_in_event_cb), - (impl_attach_window), (impl_detach_window), (ephy_session_init), - (ephy_session_dispose), (ephy_session_finalize), - (ephy_session_autoresume), (ephy_session_close), - (ephy_session_save), (ephy_session_load), - (ephy_session_add_window), (ephy_session_remove_window): - * src/ephy-shell.c: (save_yourself_cb), (die_cb), - (ephy_shell_finalize), (ephy_shell_new_tab), - (ephy_shell_get_toolbars_model), (toolwindow_show_cb), - (toolwindow_hide_cb): - * src/ephy-tab.c: (popups_manager_add), - (popups_manager_add_window), (ephy_tab_get_popups_allowed), - (popups_manager_show_all), (popups_manager_hide_all), - (ephy_tab_finalize), (ephy_tab_address_cb), - (ephy_tab_zoom_changed_cb), (ephy_tab_new_window_cb), - (ephy_tab_visibility_cb), (ephy_tab_destroy_brsr_cb), - (ephy_tab_size_to_cb), (ephy_tab_dom_mouse_click_cb), - (ephy_tab_init): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_update): - * src/ephy-toolbar.c: (sync_user_input_cb): - * src/ephy-toolbars-model.c: (save_changes_idle), - (ephy_toolbars_model_load): - * src/ephy-window.c: (ephy_window_destroy), (show_embed_popup), - (ephy_window_init), (ephy_window_finalize): - * src/pdm-dialog.c: (pdm_dialog_cookies_construct), - (cookie_added_cb), (cookie_changed_cb), (cookie_deleted_cb), - (cookies_cleared_cb), (pdm_dialog_passwords_construct), - (passwords_changed_cb): - * src/prefs-dialog.c: (fonts_language_changed_cb): - - Add ; to all LOG statements, and adapt ephy-debug.h for - non-GNUC-varargs case. - - ChangeLog | 135 ++++++++++++++++++++++++++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 + - embed/ephy-embed-persist.c | 4 +- - embed/ephy-embed-shell.c | 10 +-- - embed/ephy-encodings.c | 4 +- - embed/ephy-favicon-cache.c | 10 +-- - embed/ephy-history.c | 12 +-- - embed/mozilla/ContentHandler.cpp | 6 +- - embed/mozilla/EphyBrowser.cpp | 12 +-- - embed/mozilla/EphyContentPolicy.cpp | 6 +- - embed/mozilla/EphyHeaderSniffer.cpp | 6 +- - embed/mozilla/EphyHistoryListener.cpp | 4 +- - embed/mozilla/EphySingle.cpp | 22 ++--- - embed/mozilla/FilePicker.cpp | 36 ++++---- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 4 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 4 +- - embed/mozilla/MozDownload.cpp | 4 +- - embed/mozilla/PrintingPromptService.cpp | 4 +- - embed/mozilla/mozilla-download.cpp | 4 +- - embed/mozilla/mozilla-embed-event.cpp | 4 +- - lib/ephy-dbus.c | 20 ++--- - lib/ephy-debug.h | 22 +++-- - lib/ephy-file-chooser.c | 2 +- - lib/ephy-file-helpers.c | 2 +- - lib/ephy-langs.c | 2 +- - lib/ephy-module.c | 10 +-- - lib/ephy-node-db.c | 6 +- - lib/ephy-shlib-loader.c | 4 +- - lib/widgets/ephy-location-entry.c | 8 +- - lib/widgets/ephy-spinner.c | 8 +- - lib/widgets/ephy-tree-model-node.c | 2 +- - lib/widgets/ephy-tree-model-sort.c | 2 +- - src/bookmarks/ephy-bookmark-action.c | 6 +- - src/bookmarks/ephy-bookmark-properties.c | 4 +- - src/bookmarks/ephy-bookmarks-editor.c | 4 +- - src/bookmarks/ephy-bookmarks-export.c | 8 +- - src/bookmarks/ephy-bookmarks-import.c | 2 +- - src/bookmarks/ephy-bookmarks-menu.c | 22 ++--- - src/bookmarks/ephy-bookmarks.c | 14 ++-- - src/bookmarks/ephy-bookmarksbar-model.c | 14 ++-- - src/bookmarks/ephy-bookmarksbar.c | 4 +- - src/bookmarks/ephy-favorites-menu.c | 2 +- - src/bookmarks/ephy-new-bookmark.c | 2 +- - src/bookmarks/ephy-topic-action.c | 2 +- - src/bookmarks/ephy-topics-selector.c | 2 +- - src/ephy-encoding-menu.c | 2 +- - src/ephy-extensions-manager.c | 28 +++---- - src/ephy-history-window.c | 2 +- - src/ephy-link.c | 2 +- - src/ephy-location-action.c | 6 +- - src/ephy-navigation-action.c | 4 +- - src/ephy-notebook.c | 2 +- - src/ephy-session.c | 24 +++--- - src/ephy-shell.c | 32 +++---- - src/ephy-tab.c | 28 +++---- - src/ephy-tabs-menu.c | 2 +- - src/ephy-toolbar.c | 2 +- - src/ephy-toolbars-model.c | 8 +- - src/ephy-window.c | 8 +- - src/pdm-dialog.c | 14 ++-- - src/prefs-dialog.c | 4 +- - 61 files changed, 392 insertions(+), 243 deletions(-) - -commit c26b22ca2c21d169b135115abc9e26d0176640d0 -Author: Piers Cornwell -Date: Fri Jan 28 20:37:29 2005 +0000 - - Add lock fullscreen key and improve key descriptions. - - 2005-01-28 Piers Cornwell - - * data/epiphany-lockdown.schemas.in: - - Add lock fullscreen key and improve key descriptions. - - ChangeLog | 6 ++++++ - data/epiphany-lockdown.schemas.in | 32 +++++++++++++++++++++++--------- - 2 files changed, 29 insertions(+), 9 deletions(-) - -commit 95e9e0b7c14cb72b1032a73fcabcd8077fcc068f -Author: Christian Persch -Date: Fri Jan 28 20:34:23 2005 +0000 - - Disable DownloadLinkAs and SetAsBackground if saving to disk is disabled. - - 2005-01-28 Christian Persch - - * src/ephy-window.c: (update_actions_sensitivity): - - Disable DownloadLinkAs and SetAsBackground if saving to disk - is disabled. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 4 +++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 466d145f7682dc4e6dc1ee8b0e7e55f018972704 -Author: Miloslav Trmac -Date: Fri Jan 28 14:06:59 2005 +0000 - - Updated Czech translation. - - 2005-01-28 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 267 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 155 insertions(+), 116 deletions(-) - -commit 41c12503869dacd565653f9722fd393b5f95f21f -Author: Jean-François Rameau -Date: Thu Jan 27 22:57:30 2005 +0000 - - Extension manager owns only one ref on extensions which don't implement - - 2005-01-27 Jean-François Rameau - - * src/ephy-extensions-manager.c: (unload_extension): - - Extension manager owns only one ref on extensions which - don't implement EphyExtension interface. Only their loader has - to unref them. - - ChangeLog | 8 ++++++++ - src/ephy-extensions-manager.c | 16 ++++++++-------- - 2 files changed, 16 insertions(+), 8 deletions(-) - -commit 04e29e495de65ceb27a3af34638e11eebf4607b0 -Author: Žygimantas Beručka -Date: Thu Jan 27 17:31:05 2005 +0000 - - Updated Lithuanian translation. - - 2005-01-27 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 236 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 137 insertions(+), 103 deletions(-) - -commit f01869839f48bd100655879d3531337ef5b75b0b -Author: Nikos Charonitakis -Date: Thu Jan 27 15:36:22 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 1149 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 645 insertions(+), 508 deletions(-) - -commit 49dfcb12c068b3aa6bb0b62034439a1b9c8d69c5 -Author: Vincent van Adrighem -Date: Wed Jan 26 19:02:46 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-01-26 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 1542 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 890 insertions(+), 656 deletions(-) - -commit 2e4b61c8058d7405812277b2ac88f37ae642cbf8 -Author: Christian Persch -Date: Wed Jan 26 15:06:42 2005 +0000 - - Don't show the Leave Fullscreen button in lockdown fullscreen mode. Switch - - 2005-01-26 Christian Persch - - * src/ephy-fullscreen-popup.c: - (ephy_fullscreen_popup_update_visibility), - (ephy_fullscreen_popup_set_show_leave), - (ephy_fullscreen_popup_init): - * src/ephy-fullscreen-popup.h: - * src/ephy-toolbar.c: (ephy_toolbar_update_fixed_visibility), - (ephy_toolbar_set_show_leave_fullscreen): - * src/ephy-toolbar.h: - * src/ephy-window.c: (ephy_window_fullscreen), - (ephy_window_unfullscreen): - - Don't show the Leave Fullscreen button in lockdown fullscreen mode. - Switch to fullscreen toolbar also in lockdown fullscreen mode. - Fixes bug #165256. - - ChangeLog | 17 +++++++++++++++++ - src/ephy-fullscreen-popup.c | 28 +++++++++++++++++++++++----- - src/ephy-fullscreen-popup.h | 15 +++++++++------ - src/ephy-toolbar.c | 16 +++++++++------- - src/ephy-toolbar.h | 4 ++-- - src/ephy-window.c | 23 +++++++++-------------- - 6 files changed, 69 insertions(+), 34 deletions(-) - -commit f4052ebd5b307db9adf77f8e61a6badf39c4a7af -Author: Funda Wang -Date: Wed Jan 26 05:44:53 2005 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 ++ - po/zh_CN.po | 134 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 89 insertions(+), 49 deletions(-) - -commit eca848e94b09c125c5ce2dfdb2fa3e4581fd0da4 -Author: Piers Cornwell -Date: Wed Jan 26 00:46:06 2005 +0000 - - Update documentation. - - 2005-01-26 Piers Cornwell - - * help/C/epiphany.xml: - * help/C/epiphany-C.omf: - - Update documentation. - - ChangeLog | 7 +++++ - help/C/epiphany-C.omf | 6 ++-- - help/C/epiphany.xml | 86 +++++++++++++++++++++++++++++++++++---------------- - 3 files changed, 70 insertions(+), 29 deletions(-) - -commit 13c1df87dba62ff58c32107f3e1d548c4f591db8 -Author: Duarte Loreto -Date: Tue Jan 25 23:45:25 2005 +0000 - - Updated Portuguese translation. - - 2005-01-25 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 2831 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1689 insertions(+), 1146 deletions(-) - -commit 6dca56c7a75415e2e1b3a019c1a9069b0d0b305b -Author: Francisco Javier Fernandez -Date: Tue Jan 25 16:17:55 2005 +0000 - - Updated Spanish translation. - - 2005-01-25 Francisco Javier Fernandez - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 169 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 106 insertions(+), 67 deletions(-) - -commit 591a0ba999b63593fb4c87b94b3c4004b1d51b92 -Author: Adam Weinberger -Date: Tue Jan 25 15:54:07 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 +++ - po/en_CA.po | 111 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 74 insertions(+), 41 deletions(-) - -commit fa3d7e143ac2da7c79d70568c84092fc0b911c19 -Author: Updated ja.po. T.Aihana -Date: Tue Jan 25 13:01:13 2005 +0000 - - 2005-01-25 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 278 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 177 insertions(+), 105 deletions(-) - -commit 9d126eb97cce848be42ce050891718fb90b89db6 -Author: Leonid Kanter -Date: Tue Jan 25 11:19:19 2005 +0000 - - Updated Russian translation - - po/ChangeLog | 4 + - po/ru.po | 1738 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1005 insertions(+), 737 deletions(-) - -commit 4dbfce471f5d3f99b5b39fb0e6fb707e3de6072c -Author: Hendrik Richter -Date: Tue Jan 25 08:35:39 2005 +0000 - - Updated German translation. - - 2005-01-25 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 4 +++ - po/de.po | 79 +++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 53 insertions(+), 30 deletions(-) - -commit 2fe563af75ec8d4fc0127a6385307775dd2df368 -Author: Crispin Flowerday -Date: Mon Jan 24 22:48:05 2005 +0000 - - Add a alert when the user clicks on a sidebar link, telling that the - - 2005-01-24 Crispin Flowerday - - * embed/ephy-embed-shell.c: (impl_get_embed_single), - (ephy_embed_shell_get_embed_single), (ephy_embed_shell_class_init): - * embed/ephy-embed-shell.h: - * src/ephy-shell.c: (ephy_shell_class_init), - (ephy_shell_add_sidebar_cb), (impl_get_embed_single): - - Add a alert when the user clicks on a sidebar link, telling - that the sidebar extension is required. Fixes bug #162685 - - ChangeLog | 11 ++++++++ - embed/ephy-embed-shell.c | 14 +++++++++-- - embed/ephy-embed-shell.h | 3 +++ - src/ephy-shell.c | 65 ++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 91 insertions(+), 2 deletions(-) - -commit cd81c004a5fd5299e795ffd1fec4413e8b2e3300 -Author: Christian Persch -Date: Mon Jan 24 22:13:26 2005 +0000 - - Fix "Go Up" not to omit the directory if the uri references a file. Patch - - 2005-01-24 Christian Persch,,, - - * embed/mozilla/mozilla-embed.cpp: - - Fix "Go Up" not to omit the directory if the uri references - a file. Patch taken from galeon. Fixes equiv. of bug #165094. - - ChangeLog | 7 +++ - embed/mozilla/mozilla-embed.cpp | 101 +++++++++++++++++++++------------------- - 2 files changed, 61 insertions(+), 47 deletions(-) - -commit 79335bd6261dba80338eeefdf8e563ec350db501 -Author: Crispin Flowerday -Date: Mon Jan 24 21:46:25 2005 +0000 - - Fix the g_signal_emit to pass an argument for the result, otherwise things - - 2005-01-24 Crispin Flowerday - - * embed/mozilla/EphySidebar.cpp (AddPanel): - - Fix the g_signal_emit to pass an argument for the result, - otherwise things break. - - ChangeLog | 7 +++++++ - embed/mozilla/EphySidebar.cpp | 3 ++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit bc7484e902d2d363cd9238b53d62d9e6cbec7f85 -Author: Christian Persch -Date: Mon Jan 24 20:38:11 2005 +0000 - - Default security.warn_submit_insecure.show_once to false. Avoids us - - 2005-01-24 Christian Persch,,, - - * data/default-prefs-common.js: - - Default security.warn_submit_insecure.show_once to false. - Avoids us displaying the submit-insecure warning, ever. - - ChangeLog | 7 +++++++ - data/default-prefs-common.js | 1 + - 2 files changed, 8 insertions(+) - -commit bea011cf50259f0ea5cf6bb397d7793c203a5cba -Author: Christian Persch -Date: Mon Jan 24 18:36:23 2005 +0000 - - Better wording for the import-failed dialogue. - - 2005-01-24 Christian Persch,,, - - * src/bookmarks/ephy-bookmarks-editor.c: (import_bookmarks): - - Better wording for the import-failed dialogue. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit f6db4901f29d1d82607818639ac86a15e575c547 -Author: Christian Persch -Date: Mon Jan 24 18:32:25 2005 +0000 - - `head -5 ChangeLog` - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 584df6ab31c90c3fbc85ed8c2a00f9ec662bf30e -Author: Hendrik Richter -Date: Mon Jan 24 16:21:41 2005 +0000 - - Updated German translation. - - 2005-01-24 Hendrik Richter - - * de.po: Updated German translation. - - po/ChangeLog | 5 ++++- - po/de.po | 71 +++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 45 insertions(+), 31 deletions(-) - -commit be4d2e598c79171b8046d6b626357f6504b7a080 -Author: Christian Persch -Date: Mon Jan 24 15:18:03 2005 +0000 - - Post-release version bump. - - 2005-01-24 Christian Persch,,, - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 522489ddbfe7a23b44a5622bd5e1fd7b6e884148 -Author: Christian Persch -Date: Mon Jan 24 15:16:35 2005 +0000 - - === Release 1.5.5 === - - 2005-01-24 Christian Persch - - === Release 1.5.5 === - - * doc/reference/tmpl/ephy-cookie-manager.sgml: - * doc/reference/tmpl/ephy-embed.sgml: - * doc/reference/tmpl/ephy-password-manager.sgml: - * doc/reference/tmpl/ephy-tab.sgml: - * doc/reference/tmpl/epiphany-unused.sgml: - - ChangeLog | 12 +++++- - doc/reference/tmpl/ephy-cookie-manager.sgml | 23 ------------ - doc/reference/tmpl/ephy-embed.sgml | 2 + - doc/reference/tmpl/ephy-password-manager.sgml | 27 -------------- - doc/reference/tmpl/ephy-tab.sgml | 2 +- - doc/reference/tmpl/epiphany-unused.sgml | 53 +++++++++++++++++++++++++++ - 6 files changed, 67 insertions(+), 52 deletions(-) - -commit fb90b369416a2b1bfb970d42df2a818772f3f426 -Author: Christian Perhristian Persch -Date: Mon Jan 24 14:45:53 2005 +0000 - - Inform the user of failed bookmarks import. - - 2005-01-24 Christian Perhristian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (import_bookmarks): - - Inform the user of failed bookmarks import. - - ChangeLog | 6 +++++ - src/bookmarks/ephy-bookmarks-editor.c | 45 +++++++++++++++++++++++++++++++---- - 2 files changed, 46 insertions(+), 5 deletions(-) - -commit 42cfc33e3ce61e4cb52a0472dadea27dd4336734 -Author: Christian Persch -Date: Mon Jan 24 14:19:22 2005 +0000 - - Update - - NEWS | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 69df3812531fa98935aec900c7425bf1e27bf179 -Author: Christian Persch -Date: Mon Jan 24 14:10:54 2005 +0000 - - Version 1.5.5. - - 2005-01-24 Christian Persch - - * NEWS: - * configure.ac: - - Version 1.5.5. - - ChangeLog | 7 +++++++ - NEWS | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - configure.ac | 2 +- - 3 files changed, 73 insertions(+), 1 deletion(-) - -commit 9242cd362e394f3923d1b9bef45ab1bd86095c9d -Author: Christian Persch -Date: Mon Jan 24 13:43:58 2005 +0000 - - Work around a mozilla bug by diverting the contract ID of - - 2005-01-24 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/MozRegisterComponents.cpp: - - Work around a mozilla bug by diverting the contract ID of - - ChangeLog | 11 +++++++- - embed/mozilla/EphyBrowser.cpp | 46 +++++++++++++++++++++++++++++---- - embed/mozilla/MozRegisterComponents.cpp | 46 +++++++++++++++++++++++++++++++++ - 3 files changed, 97 insertions(+), 6 deletions(-) - -commit 9c4ac97f11db1000557af51a4be1a875561c3fe2 -Author: Christian Persch -Date: Mon Jan 24 12:40:51 2005 +0000 - - Add more categories to bme.desktop.in. Fixes bug #162973. - - 2005-01-24 Christian Persch,,, - - * data/bme.desktop.in: - - Add more categories to bme.desktop.in. Fixes bug #162973. - - ChangeLog | 6 ++++++ - data/bme.desktop.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit d70fe54c1a04e7d59d956194d57ec3c6f00e2229 -Author: Alexander Shopov -Date: Mon Jan 24 10:36:16 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-01-24 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 ++ - po/bg.po | 147 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 90 insertions(+), 62 deletions(-) - -commit a4f8ce19d085f6461a6ff526c3aaf72cc7e1e18f -Author: Frank Arnold -Date: Mon Jan 24 04:30:43 2005 +0000 - - Fix for #164601 - - 2005-01-24 Frank Arnold - - * de.po: Fix for #164601 - - po/ChangeLog | 4 ++++ - po/de.po | 66 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 37 insertions(+), 33 deletions(-) - -commit 224d1da680c43e345454f5f3791ef24bcceffadd -Author: Frank Arnold -Date: Mon Jan 24 04:14:34 2005 +0000 - - Fix for #164133 - - 2005-01-24 Frank Arnold - - * de.po: Fix for #164133 - - po/ChangeLog | 4 ++ - po/de.po | 210 +++++++++++++++++++++++++---------------------------------- - 2 files changed, 92 insertions(+), 122 deletions(-) - -commit 44fc8c4bb8f58873d41b0136400f34d63f31b080 -Author: Christian Persch -Date: Sun Jan 23 16:50:00 2005 +0000 - - Ellipsize the value and path labels in the cookie content dialogue. - - 2005-01-23 Christian Persch - - * src/pdm-dialog.c: (show_cookies_properties): - - Ellipsize the value and path labels in the cookie content dialogue. - - ChangeLog | 6 ++++++ - src/pdm-dialog.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 361ed3d1c475f7b1ab2226abf7605405411ab185 -Author: Christian Persch -Date: Sun Jan 23 15:38:02 2005 +0000 - - Check for broken context event button. - - 2005-01-23 Christian Persch - - * configure.ac: - - Check for broken context event button. - - * embed/ephy-embed-event.c: (ephy_embed_event_get_context), - (ephy_embed_event_get_button): - * embed/ephy-embed-event.h: - * embed/mozilla/mozilla-embed-event.cpp: - * embed/mozilla/mozilla-embed-event.h: - - Change get_type to get_button, and don't store a nsCOMPtr in .priv. - - * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb): - * src/ephy-window.c: (show_embed_popup), (tab_context_menu_cb), - (ephy_window_set_active_tab): - - Adapted for above change. - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - - Attach listener to oncontextmenu event. - - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - - Get event target coordinates also for 'mouse' context events. - - * embed/mozilla/mozilla-embed.cpp: - - Remove key-down handler, and context code from mouse-down handler. - - .cvsignore | 2 + - ChangeLog | 34 ++++++++++ - configure.ac | 17 +++++ - embed/ephy-embed-event.c | 12 ++-- - embed/ephy-embed-event.h | 14 +---- - embed/mozilla/EphyBrowser.cpp | 113 +++++++++++++++++++++++++++++++++- - embed/mozilla/EphyBrowser.h | 22 +++++++ - embed/mozilla/EventContext.cpp | 94 +++++++++++++++++----------- - embed/mozilla/EventContext.h | 2 + - embed/mozilla/mozilla-embed-event.cpp | 20 +++--- - embed/mozilla/mozilla-embed-event.h | 12 ++-- - embed/mozilla/mozilla-embed.cpp | 92 ++------------------------- - src/ephy-tab.c | 13 ++-- - src/ephy-window.c | 16 ++--- - 14 files changed, 290 insertions(+), 173 deletions(-) - -commit 8f10d345ad4bebf6a99c8a62e2448f49338eeb33 -Author: Christian Persch -Date: Sun Jan 23 13:38:30 2005 +0000 - - Set typeaheadfind.autostart to off. Fixes bug #141963. - - 2005-01-23 Christian Persch - - * data/default-prefs-common.js: - * data/default-prefs-toolkit.js: - - Set typeaheadfind.autostart to off. Fixes bug #141963. - - ChangeLog | 7 +++++++ - data/default-prefs-common.js | 3 ++- - data/default-prefs-toolkit.js | 2 ++ - 3 files changed, 11 insertions(+), 1 deletion(-) - -commit eb9df565b9b379c28ee7b2b941c7e7b9ad07919e -Author: Christian Persch -Date: Sun Jan 23 13:34:31 2005 +0000 - - Default typeaheadfindsea to on. From bug #157435. - - 2005-01-23 Christian Persch - - * data/default-prefs-toolkit.js: - - Default typeaheadfindsea to on. From bug #157435. - - ChangeLog | 6 ++++++ - data/default-prefs-toolkit.js | 3 +++ - 2 files changed, 9 insertions(+) - -commit 72c1002ef79e9ae112699e24bd0c98c106f02138 -Author: Christian Persch -Date: Sat Jan 22 18:47:09 2005 +0000 - - Remove INSTALL from cvs - - INSTALL | 231 ---------------------------------------------------------------- - 1 file changed, 231 deletions(-) - -commit b63e76a630323b3bc17ad545d9fc81902c632d67 -Author: Christian Persch -Date: Sat Jan 22 18:31:35 2005 +0000 - - Rename "visible" property. - - 2005-01-22 Christian Persch - - * src/ephy-tab.c: (ephy_tab_class_init), (ephy_tab_visibility_cb): - * src/ephy-window.c: (tab_added_cb): - - Rename "visible" property. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 4 ++-- - src/ephy-window.c | 2 +- - 3 files changed, 10 insertions(+), 3 deletions(-) - -commit a08cea610f2ce5b7fec984aeea9746c650635e71 -Author: Funda Wang -Date: Sat Jan 22 09:15:00 2005 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 + - po/zh_CN.po | 2071 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1169 insertions(+), 906 deletions(-) - -commit 549171e9af818b784548fc2bed4bd375006b7adc -Author: Jorn Baayen -Date: Fri Jan 21 19:33:03 2005 +0000 - - Add proper _NETSCAPE_URL drag support, supplying the URL as well as the - - 2005-01-21 Jorn Baayen - - * lib/widgets/ephy-node-view.c: (ephy_node_view_add_column), - (ephy_node_view_enable_drag_source): - * lib/widgets/ephy-node-view.h: - * lib/widgets/ephy-tree-model-sort.c: (ephy_tree_model_sort_init), - (ephy_tree_model_sort_multi_row_draggable), - (ephy_tree_model_sort_set_base_drag_column_id), - (ephy_tree_model_sort_set_extra_drag_column_id), - (each_property_get_data_binder): - * lib/widgets/ephy-tree-model-sort.h: - * src/bookmarks/ephy-bookmark-action.c: (drag_data_get_cb): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_constructor): - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_init): - * src/ephy-history-window.c: (ephy_history_window_construct): - - Add proper _NETSCAPE_URL drag support, supplying the URL as well as - the title. As a side effect most data_columns in NodeViews have been - obsoleted. Fixes #163937. - - ChangeLog | 23 ++++++++++ - lib/widgets/ephy-node-view.c | 19 +++++--- - lib/widgets/ephy-node-view.h | 82 ++++++++++++++++++----------------- - lib/widgets/ephy-tree-model-sort.c | 51 +++++++++++++++------- - lib/widgets/ephy-tree-model-sort.h | 10 +++-- - src/bookmarks/ephy-bookmark-action.c | 11 ++++- - src/bookmarks/ephy-bookmarks-editor.c | 37 ++++++++-------- - src/bookmarks/ephy-topics-selector.c | 2 +- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-history-window.c | 52 +++++++++++----------- - 10 files changed, 174 insertions(+), 115 deletions(-) - -commit 39f7d93acea222b6b3e1cd53875ac16f5cbdea4f -Author: Rhys Jones -Date: Fri Jan 21 07:44:52 2005 +0000 - - Updated Welsh translation. - - 2005-01-21 Rhys Jones - - * cy.po: Updated Welsh translation. - - po/ChangeLog | 4 + - po/cy.po | 1014 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 543 insertions(+), 475 deletions(-) - -commit f1a8af524780cde0043f9c3a06461d7f5e0465a1 -Author: Adam Hooper -Date: Fri Jan 21 04:08:38 2005 +0000 - - Added ephy_statusbar_remove_widget(). - - ChangeLog | 8 ++++++++ - src/ephy-statusbar.c | 23 +++++++++++++++++++++-- - src/ephy-statusbar.h | 3 +++ - 3 files changed, 32 insertions(+), 2 deletions(-) - -commit 82dffea232ae41bdb21129490fec3a3a3e9c5bf6 -Author: Adam Weinberger -Date: Thu Jan 20 22:43:39 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 215 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 130 insertions(+), 89 deletions(-) - -commit ab16742ab03f1e3b78231eb9235c0ed9a6c43d7a -Author: Miloslav Trmac -Date: Thu Jan 20 19:28:25 2005 +0000 - - Updated Czech translation. - - 2005-01-20 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 405 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 225 insertions(+), 184 deletions(-) - -commit 0611ef2fe780b5d8b3abea917921ceca2fdf544a -Author: Jean-François Rameau -Date: Thu Jan 20 19:04:31 2005 +0000 - - Make ephy-bookmarks.h's enum a named enum. Auto-generate types for - - 2005-01-20 Jean-François Rameau - - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_get_type): - - Make ephy-bookmarks.h's enum a named enum. - Auto-generate types for ephy-bookmarks.h's enum. - Make sure our enum type is registered. - - ChangeLog | 10 ++++++++ - src/bookmarks/Makefile.am | 57 +++++++++++++++++++++++++++++++++++++++++- - src/bookmarks/ephy-bookmarks.c | 5 ++++ - src/bookmarks/ephy-bookmarks.h | 4 +-- - 4 files changed, 73 insertions(+), 3 deletions(-) - -commit 7158c7b4c0c51189580126c4966e5868c920f8d7 -Author: Žygimantas Beručka -Date: Thu Jan 20 18:14:58 2005 +0000 - - Updated Lithuanian translation. - - 2005-01-20 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 543 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 307 insertions(+), 240 deletions(-) - -commit 1f2f15314e83e2a234ea7bef72d78116bb8fef6b -Author: Frank Arnold -Date: Thu Jan 20 16:25:47 2005 +0000 - - Updated German translation. - - 2005-01-20 Frank Arnold - - * de.po: Updated German translation. - - po/ChangeLog | 4 ++ - po/de.po | 169 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 108 insertions(+), 65 deletions(-) - -commit 78cf67b1075498d392372cf8069a76aa98a07939 -Author: Francisco Javier F. Serrador -Date: Thu Jan 20 14:59:22 2005 +0000 - - Updated Spanish translation. - - 2005-01-20 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 190 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 120 insertions(+), 74 deletions(-) - -commit d299c83519b5e03d9d24f1ec80c25afcb793a73f -Author: Christian Persch -Date: Thu Jan 20 14:45:06 2005 +0000 - - Use new leave-fullscreen icon from g-i-t. Fixes bug #164676. - - 2005-01-20 Christian Persch - - * configure.ac: - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * lib/ephy-stock-icons.h: - * src/ephy-fullscreen-popup.c: (ephy_fullscreen_popup_constructor): - * src/ephy-toolbar.c: (ephy_toolbar_constructor): - - Use new leave-fullscreen icon from g-i-t. Fixes bug #164676. - - ChangeLog | 10 ++++++++++ - configure.ac | 12 +++--------- - lib/ephy-stock-icons.c | 3 ++- - lib/ephy-stock-icons.h | 1 + - src/ephy-fullscreen-popup.c | 3 ++- - src/ephy-toolbar.c | 2 +- - 6 files changed, 19 insertions(+), 12 deletions(-) - -commit d051f30561597cd4e389ec8a6cc2573d02ffa0a5 -Author: Christian Persch -Date: Thu Jan 20 14:30:51 2005 +0000 - - Add a translator comment. - - 2005-01-20 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (add_bookmarks_source): - - Add a translator comment. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 1 + - 2 files changed, 7 insertions(+) - -commit c260a8168af8690e49652bb699f028467240d57a -Author: Alexander Shopov -Date: Thu Jan 20 12:53:58 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-01-20 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 1308 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 741 insertions(+), 572 deletions(-) - -commit 454d188805cce10e8995046878a46889dbb14b85 -Author: Christian Persch -Date: Wed Jan 19 21:45:42 2005 +0000 - - Don't leak the path. - - 2005-01-19 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (add_bookmarks_source): - - Don't leak the path. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit a43ee535a9b483a7e28abae496854c65a5c25703 -Author: Christian Persch -Date: Wed Jan 19 21:39:01 2005 +0000 - - Show profile name for mozilla bookmarks, so we can distinguish between - - 2005-01-19 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_find_file_recursive): - * src/bookmarks/ephy-bookmarks-editor.c: (add_bookmarks_files), - (add_bookmarks_source), (import_dialog_response_cb), - (cmd_bookmarks_import): - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): - * src/bookmarks/ephy-bookmarks-import.h: - - Show profile name for mozilla bookmarks, so we can distinguish between - different profiles. Don't show firefox bookmarks as mozilla bookmarks. - Fixes bug #143982. - - ChangeLog | 13 ++++ - Makefile.am | 1 + - TODO | 4 ++ - lib/ephy-file-helpers.c | 33 +++++---- - src/bookmarks/ephy-bookmarks-editor.c | 126 +++++++++++++++++++++++----------- - src/bookmarks/ephy-bookmarks-import.c | 21 +++--- - src/bookmarks/ephy-bookmarks-import.h | 8 ++- - 7 files changed, 134 insertions(+), 72 deletions(-) - -commit 1f991ceea9103d6e4c364e5584d092b1b866b469 -Author: Christian Persch -Date: Wed Jan 19 15:48:55 2005 +0000 - - More translator comments. - - 2005-01-19 Christian Persch - - * lib/ephy-langs.c: - - More translator comments. - - ChangeLog | 6 ++++++ - lib/ephy-langs.c | 34 ++++++++++++++++++++++++++++++++++ - 2 files changed, 40 insertions(+) - -commit ba45c6aed2fe37e678494c21391769584382a6dc -Author: Frank Arnold -Date: Wed Jan 19 14:36:06 2005 +0000 - - Fixed/added translations with context marker. - - 2005-01-19 Frank Arnold - - * de.po: Fixed/added translations with context marker. - - po/ChangeLog | 4 ++ - po/de.po | 130 +++++++++++++++++++++++++++++++++++++++++------------------ - 2 files changed, 94 insertions(+), 40 deletions(-) - -commit 3ad8fe0057edabd3718973dc07f5a1bac5938aab -Author: Frank Arnold -Date: Tue Jan 18 22:36:53 2005 +0000 - - Updated German translation. - - 2005-01-18 Frank Arnold - - * de.po: Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 261 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 142 insertions(+), 123 deletions(-) - -commit 2688a7e9057bb51181918210e674fb6a15298576 -Author: Christian Persch -Date: Tue Jan 18 22:11:49 2005 +0000 - - Add ephy-node.h enums to ephy-lib-type-builtins.[ch]. - - 2005-01-18 Christian Persch - - * lib/Makefile.am: - - Add ephy-node.h enums to ephy-lib-type-builtins.[ch]. - - ChangeLog | 6 ++++++ - lib/Makefile.am | 1 + - 2 files changed, 7 insertions(+) - -commit c2cf774369853da2a4d0030171fe5f53926f6547 -Author: Christian Persch -Date: Tue Jan 18 19:33:24 2005 +0000 - - Really make confirm-overwrite dialogue have a parent window. Fixes bug - - 2005-01-18 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - - Really make confirm-overwrite dialogue have a parent window. - Fixes bug #164189. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 7 ++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit 79acbb4c2b636bf714fa7243f5e1ec7f8a9f5b97 -Author: Christian Persch -Date: Tue Jan 18 19:28:14 2005 +0000 - - Fix mem leak. Fixes bug #164302. - - 2005-01-18 Christian Persch - - * lib/ephy-dialog.c: (ephy_dialog_set_size_group): - - Fix mem leak. Fixes bug #164302. - - ChangeLog | 6 ++++++ - lib/ephy-dialog.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit c01c79740c1e3213c540db7e94f617681555e1a1 -Author: Priit Laes -Date: Tue Jan 18 13:21:10 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-01-18 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 ++ - po/et.po | 176 +++-------------------------------------------------------- - 2 files changed, 13 insertions(+), 167 deletions(-) - -commit af384ad8e03a41271ccbda15f6e34fe89ab88f34 -Author: Christian Rose -Date: Mon Jan 17 22:20:38 2005 +0000 - - Updated Swedish translation. - - 2005-01-17 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 2920 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1689 insertions(+), 1235 deletions(-) - -commit a53ad0b4aab0f2d0f1932b3ac4b9665115ce1971 -Author: Laurent Dhima -Date: Mon Jan 17 11:27:08 2005 +0000 - - Updated Albanian translation. - - 2005-01-17 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 259 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 134 insertions(+), 129 deletions(-) - -commit c35f7740f943dac3993493682e64e36bcf7a6feb -Author: Jean-François rameau -Date: Sun Jan 16 21:17:54 2005 +0000 - - Remove useless ephy_node_get_property_time method. - - 2005-01-16 Jean-François rameau - - * lib/ephy-node.h: - - Remove useless ephy_node_get_property_time method. - - ChangeLog | 6 ++++++ - lib/ephy-node.h | 3 --- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 09ff02da308023ff9a98e6bd649ce5ad8d9b4b0a -Author: Marcel Telka -Date: Sun Jan 16 20:03:50 2005 +0000 - - Updated Slovak translation. - - 2005-01-16 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 361 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 186 insertions(+), 179 deletions(-) - -commit 732d8dc98dac7a5fe46c669564dde46ddcf10382 -Author: Christian Persch -Date: Sun Jan 16 16:56:32 2005 +0000 - - Remove stamp files also on make clean. - - 2005-01-16 Christian Persch - - * embed/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * src/Makefile.am: - - Remove stamp files also on make clean. - - ChangeLog | 9 +++++++++ - embed/Makefile.am | 4 ++-- - lib/Makefile.am | 2 +- - lib/egg/Makefile.am | 2 +- - src/Makefile.am | 2 +- - 5 files changed, 14 insertions(+), 5 deletions(-) - -commit fb1c140eaa2855bd3ddeaef203a51107a0af6122 -Author: Miloslav Trmac -Date: Sun Jan 16 15:57:05 2005 +0000 - - Updated Czech translation. - - 2005-01-16 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 674 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 373 insertions(+), 305 deletions(-) - -commit 3143fdac7662e53b797861f1edfdbe05293c61b6 -Author: Adam Weinberger -Date: Sun Jan 16 04:32:50 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 237 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 123 insertions(+), 118 deletions(-) - -commit 7ac4823534a1d860732c16be8e8457903b4e9f02 -Author: Updated ja.po and Fixed bug translations. T.Aihana -Date: Sun Jan 16 02:24:29 2005 +0000 - - 2005-01-16 Updated ja.po and Fixed bug translations. T.Aihana - - po/ChangeLog | 4 ++ - po/ja.po | 232 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 121 insertions(+), 115 deletions(-) - -commit 3b15e52422e5602aa01872c8cb8015ce9f4932f1 -Author: Francisco Javier F. Serrador -Date: Sun Jan 16 00:46:23 2005 +0000 - - Updated Spanish translation. - - 2005-01-16 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 239 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 130 insertions(+), 113 deletions(-) - -commit eac6bda9d96e359dd409c0ad7b4286805685351c -Author: Christian Persch -Date: Sat Jan 15 20:30:49 2005 +0000 - - Unify more strings. - - 2005-01-15 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (add_open_in_tabs_menu): - - Unify more strings. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topic-action.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit a2d092dfd000284b249b722f225456e700359e09 -Author: Jean-François rameau -Date: Sat Jan 15 20:26:37 2005 +0000 - - Rename the password manager's methods to give better names in the - - 2005-01-15 Jean-François rameau - - * embed/ephy-password-manager.h: - * embed/ephy-password-manager.c: - * src/pdm-dialog.c: (pdm_dialog_password_remove), - (pdm_dialog_fill_passwords_list) - - Rename the password manager's methods to give better names - in the bindings. - ephy_password_manager_add -> ephy_password_manager_add_password - ephy_password_manager_remove -> ephy_password_manager_remove_password - ephy_password_manager_list -> ephy_password_manager_list_passwords - - ChangeLog | 13 +++++++++++++ - embed/ephy-password-manager.c | 16 ++++++++-------- - embed/ephy-password-manager.h | 6 +++--- - src/pdm-dialog.c | 4 ++-- - 4 files changed, 26 insertions(+), 13 deletions(-) - -commit 24ab90cd059587d89ea297ecb8d24bb8e3285449 -Author: Christian Persch -Date: Sat Jan 15 20:22:50 2005 +0000 - - Unify accels to Open in New _Window[s], and also change to Open Link in - - 2005-01-15 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu): - * src/ephy-history-window.c: (ephy_history_window_update_menu): - * src/ephy-window.c: - - Unify accels to Open in New _Window[s], and also change to - Open Link in New _Window. Fixes bug #164130. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 6 +++--- - src/ephy-history-window.c | 6 +++--- - src/ephy-window.c | 2 +- - 4 files changed, 17 insertions(+), 7 deletions(-) - -commit da190dddf2ce2f71b2fe0a32e21d93347b6e7abc -Author: Christian Persch -Date: Sat Jan 15 20:08:38 2005 +0000 - - Add boxed type for EphyNode. - - 2005-01-15 Christian Persch - - * lib/ephy-node.c: (ephy_node_get_type): - * lib/ephy-node.h: - - Add boxed type for EphyNode. - - ChangeLog | 7 +++++++ - lib/ephy-node.c | 15 +++++++++++++++ - lib/ephy-node.h | 5 +++-- - 3 files changed, 25 insertions(+), 2 deletions(-) - -commit 1e95d209e75a03c8340726a8c088d4d6abfed752 -Author: Christian Persch -Date: Sat Jan 15 20:08:07 2005 +0000 - - Don't use in the strings. Fixes bug #163378. - - 2005-01-15 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - - Don't use in the strings. Fixes bug #163378. - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): - * src/bookmarks/ephy-bookmarks.c: (redirect_cb): - - Fix button text and capitalisation in the confirm-redirect-update - dialogue. Fixes bug #164131. - - * src/ephy-window.c: (confirm_close_with_modified_forms): - - Fix primary text of confirm-close command not to have a period. - - ChangeLog | 17 +++++++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 8 ++-- - embed/mozilla/GtkNSSDialogs.cpp | 79 ++++++++++++------------------- - lib/ephy-gui.c | 12 ++--- - src/bookmarks/ephy-bookmarks.c | 8 ++-- - src/ephy-window.c | 2 +- - 6 files changed, 61 insertions(+), 65 deletions(-) - -commit 984bb65c96c5f310313557eca924e9ba73adb8b9 -Author: Crispin Flowerday -Date: Sat Jan 15 16:47:39 2005 +0000 - - Add a function to get the default ephy_shell, this makes it easier for - - 2005-01-15 Crispin Flowerday - - * src/ephy-shell.c (ephy_shell_get_default): - * src/ephy-shell.h: - - Add a function to get the default ephy_shell, this makes - it easier for bindings to get it. - - ChangeLog | 8 ++++++++ - src/ephy-shell.c | 14 ++++++++++++++ - src/ephy-shell.h | 2 ++ - 3 files changed, 24 insertions(+) - -commit bfb0471ca2ed4decec07d4cefe1498ccd397dbea -Author: Priit Laes -Date: Sat Jan 15 15:50:27 2005 +0000 - - Translation updated by Ivar Smolin. - - 2005-01-15 Priit Laes - - * et.po: Translation updated by Ivar Smolin. - - po/ChangeLog | 4 + - po/et.po | 1048 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 570 insertions(+), 482 deletions(-) - -commit 40f5c9001b6e9b2945170e81536abffbdc52b262 -Author: Francisco Javier F. Serrador -Date: Sat Jan 15 12:29:20 2005 +0000 - - Updated Spanish translation. - - 2005-01-15 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 611 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 311 insertions(+), 304 deletions(-) - -commit e24eabfb78cd97c4f1eed4b5eafc09b3ecc84831 -Author: Alexander Winston -Date: Sat Jan 15 03:28:40 2005 +0000 - - Updated Canadian English translation. - - 2005-01-14 Alexander Winston - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 10 ++++------ - 2 files changed, 8 insertions(+), 6 deletions(-) - -commit 7592ca984e201ff7ef443dc605b58c486713c539 -Author: Christian Persch -Date: Fri Jan 14 23:54:52 2005 +0000 - - Remove p3p info from EphyCookie. - - 2005-01-15 Christian Persch - - * embed/ephy-cookie-manager.c: (ephy_cookie_copy): - * embed/ephy-cookie-manager.h: - * embed/mozilla/EphySingle.cpp: - - Remove p3p info from EphyCookie. - - ChangeLog | 8 ++++++++ - embed/ephy-cookie-manager.c | 2 -- - embed/ephy-cookie-manager.h | 23 +---------------------- - embed/mozilla/EphySingle.cpp | 8 -------- - 4 files changed, 9 insertions(+), 32 deletions(-) - -commit b1b418dfe0a405ed8f886baa2caf98abba385876 -Author: Hendrik Richter -Date: Fri Jan 14 23:50:57 2005 +0000 - - Updated German translation. - - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 2159 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1248 insertions(+), 915 deletions(-) - -commit da7ab3c7aa6f21a1c1b66130fd932bb94aa292a8 -Author: Adam Weinberger -Date: Fri Jan 14 18:40:42 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 68 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 38 insertions(+), 34 deletions(-) - -commit b2c63dcf330a86eacfc37b58b35514df0a384501 -Author: Christian Persch -Date: Fri Jan 14 18:08:29 2005 +0000 - - Don't focus the combo on click. - - 2005-01-14 Christian Persch - - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_init): - - Don't focus the combo on click. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-zoom-control.c | 1 + - 2 files changed, 7 insertions(+) - -commit fa91112fb5c59af734bd34b64949e807d5a1fd77 -Author: Updated ja.po. T.Aihana -Date: Fri Jan 14 17:21:15 2005 +0000 - - 2005-01-15 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 1304 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 760 insertions(+), 548 deletions(-) - -commit ad645bfdc28d845f08f1b8e2e4199d593d550dc5 -Author: Laurent Dhima -Date: Fri Jan 14 11:29:31 2005 +0000 - - Updated Albanian translation. - - 2005-01-14 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 943 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 540 insertions(+), 407 deletions(-) - -commit a1044872ddfc98a008c3b63baad95ba2e3f88c9d -Author: Adam Weinberger -Date: Fri Jan 14 04:53:33 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 583 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 298 insertions(+), 289 deletions(-) - -commit f711dff8257028084ba97ebe7bdc863c23fe8f44 -Author: Adam Hooper -Date: Fri Jan 14 04:23:05 2005 +0000 - - Puny docs change. - - ChangeLog | 6 ++++++ - embed/ephy-embed-single.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 1853f8251a60b50a3719b147571aaac88df8a1eb -Author: Jorn Baayen -Date: Fri Jan 14 00:58:26 2005 +0000 - - Add GDK_ACTION_ASK, and prefer _NETSCAPE_URL over uri-list drag types. - - 2005-01-14 Jorn Baayen - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_construct_contents): - * lib/widgets/ephy-node-view.c: (motion_notify_cb): - * src/bookmarks/ephy-bookmark-action.c: (drag_motion_cb): - * src/bookmarks/ephy-bookmarks-editor.c: - * src/ephy-history-window.c: - - Add GDK_ACTION_ASK, and prefer _NETSCAPE_URL over uri-list drag types. - This is to match the new Nautilus _NETSCAPE_URL DnD behaviour. - - Fixes #163937. - - ChangeLog | 14 ++++++++++++++ - lib/widgets/ephy-location-entry.c | 8 ++++---- - lib/widgets/ephy-node-view.c | 2 +- - src/bookmarks/ephy-bookmark-action.c | 5 +++-- - src/bookmarks/ephy-bookmarks-editor.c | 6 +++--- - src/ephy-history-window.c | 6 +++--- - 6 files changed, 28 insertions(+), 13 deletions(-) - -commit b79a2ee8d325de52aa792123256a9d70a1ef4ee9 -Author: Christian Persch -Date: Fri Jan 14 00:30:41 2005 +0000 - - Renamed Remove action on bookmarksbar context menu. Fixes bug #162132. - - 2005-01-14 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (show_context_menu): - * src/bookmarks/ephy-topic-action.c: (show_context_menu): - - Renamed Remove action on bookmarksbar context menu. Fixes bug #162132. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmark-action.c | 7 +++++-- - src/bookmarks/ephy-topic-action.c | 7 +++++-- - 3 files changed, 17 insertions(+), 4 deletions(-) - -commit e8161bb7bb84356ecbb6cc61fce822104d0c7fa3 -Author: Christian Persch -Date: Fri Jan 14 00:24:12 2005 +0000 - - Remove the type builtins .h files from INST_H_FILES again. - - 2005-01-14 Christian Persch - - * embed/Makefile.am: - * lib/Makefile.am: - * src/Makefile.am: - - Remove the type builtins .h files from INST_H_FILES again. - - ChangeLog | 8 ++++++++ - embed/Makefile.am | 1 - - lib/Makefile.am | 1 - - src/Makefile.am | 1 - - 4 files changed, 8 insertions(+), 3 deletions(-) - -commit a94b49300fcf5b8dda47a794d2687467043d8c55 -Author: Christian Persch -Date: Thu Jan 13 23:47:32 2005 +0000 - - Add favicon and lock icon to the entry. Fixes bug #116482 and bug #149506. - - 2005-01-14 Christian Persch - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_set_tooltip), (ephy_location_entry_finalize), - (ephy_location_entry_class_init), (modify_background), - (entry_style_set_cb), (entry_realize_cb), - (ephy_location_entry_construct_contents), - (ephy_location_entry_init), (ephy_location_entry_set_favicon), - (ephy_location_entry_set_show_lock), - (ephy_location_entry_set_lock_stock), - (ephy_location_entry_set_lock_tooltip): - * lib/widgets/ephy-location-entry.h: - * src/ephy-fullscreen-popup.c: (ephy_fullscreen_popup_constructor): - * src/ephy-location-action.c: (sync_icon), (sync_lock_stock_id), - (sync_lock_tooltip), (sync_show_lock), (connect_proxy), - (ephy_location_action_set_property), - (ephy_location_action_get_property), - (ephy_location_action_class_init), (ephy_location_action_finalize): - * src/ephy-toolbar.c: (ephy_toolbar_set_security_state), - (ephy_toolbar_set_lock_visibility), (ephy_toolbar_constructor): - * src/ephy-toolbar.h: - * src/ephy-window.c: (sync_chromes_visibility): - - Add favicon and lock icon to the entry. Fixes bug #116482 and bug #149506. - Change "Exit Fullscreen" to "Leave Fullscreen" as per HIG, part of bug #153270. - - ChangeLog | 26 +++++++ - lib/widgets/ephy-location-entry.c | 149 +++++++++++++++++++++++++++++++++++--- - lib/widgets/ephy-location-entry.h | 12 ++- - src/ephy-fullscreen-popup.c | 2 +- - src/ephy-location-action.c | 110 +++++++++++++++++++++++++--- - src/ephy-toolbar.c | 23 +++++- - src/ephy-toolbar.h | 3 + - src/ephy-window.c | 2 + - 8 files changed, 300 insertions(+), 27 deletions(-) - -commit 2dbc06a5454482f62bc1d1b656431b798c548c7e -Author: Christian Persch -Date: Thu Jan 13 22:22:54 2005 +0000 - - Install ephy-*-type-builtins.h. - - 2005-01-12 Christian Persch - - * embed/Makefile.am: - * lib/Makefile.am: - * src/Makefile.am: - - Install ephy-*-type-builtins.h. - - ChangeLog | 8 ++++++++ - embed/Makefile.am | 1 + - lib/Makefile.am | 1 + - src/Makefile.am | 1 + - 4 files changed, 11 insertions(+) - -commit 2cac69055d30409a530fd90e19ef841c6619fb85 -Author: Žygimantas Beručka -Date: Wed Jan 12 23:32:19 2005 +0000 - - Updated Lithuanian translation. - - 2005-01-13 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 629 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 343 insertions(+), 290 deletions(-) - -commit fb1dc862ed506c2a96cb82c8ef61f8d56f13aa15 -Author: Marcel Telka -Date: Wed Jan 12 21:41:29 2005 +0000 - - Updated Slovak translation. - - 2005-01-12 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 985 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 557 insertions(+), 432 deletions(-) - -commit 3564d87bc51c44ac10645479f3523fff81d892f1 -Author: Christian Persch -Date: Wed Jan 12 19:04:48 2005 +0000 - - Add Toolbar toggle to document context menu in fullscreen mode. - - 2005-01-12 Christian Persch - - * data/ui/epiphany-ui.xml: - - Add Toolbar toggle to document context menu in fullscreen mode. - - * lib/egg/egg-editable-toolbar.c: (set_fixed_style), - (update_fixed), (egg_editable_toolbar_set_fixed): - * lib/egg/egg-editable-toolbar.h: - - Changed to allow setting a toolbar as fixed, not just one item. - - * lib/widgets/ephy-search-entry.h: - - Add _ prefixed struct declarations. - - * po/POTFILES.in: - - Updated. - - * src/Makefile.am: - A src/ephy-fullscreen-popup.c: - A src/ephy-fullscreen-popup.h: - * src/ephy-history-window.c: - * src/ephy-shell.c: (ephy_shell_new_tab): - A src/ephy-toolbar.c: - A src/ephy-toolbar.h: - * src/ephy-window.c: (destroy_fullscreen_popup), - (ephy_window_destroy), (exit_fullscreen_clicked_cb), - (get_toolbar_visibility), (sync_chromes_visibility), - (ephy_window_fullscreen), (ephy_window_unfullscreen), - (sync_tab_address), (sync_tab_icon), (sync_tab_navigation), - (sync_tab_security), (sync_tab_load_status), (sync_tab_zoom), - (show_embed_popup), (modal_alert_cb), (ephy_window_focus_in_event), - (ephy_window_focus_out_event), (ephy_window_init), - (ephy_window_activate_location): - R src/toolbar.c: - R src/toolbar.h: - * src/window-commands.c: (window_cmd_load_location): - - Implemented in-toolbar exit button, and integrated status indicator in - the exit fullscreen popup. Moved toolbar.[ch] to ephy-toolbar.[ch] for - namespace correcness, and much-needed code cleanup. - - ChangeLog | 44 +++ - data/ui/epiphany-ui.xml | 36 +- - lib/egg/egg-editable-toolbar.c | 44 +-- - lib/egg/egg-editable-toolbar.h | 18 +- - lib/widgets/ephy-location-entry.c | 4 +- - lib/widgets/ephy-location-entry.h | 4 +- - lib/widgets/ephy-search-entry.h | 28 +- - po/POTFILES.in | 3 +- - src/Makefile.am | 6 +- - src/ephy-fullscreen-popup.c | 466 ++++++++++++++++++++++ - src/ephy-fullscreen-popup.h | 71 ++++ - src/ephy-history-window.c | 1 - - src/ephy-shell.c | 6 +- - src/ephy-toolbar.c | 807 ++++++++++++++++++++++++++++++++++++++ - src/ephy-toolbar.h | 100 +++++ - src/ephy-window.c | 218 +++++----- - src/toolbar.c | 671 ------------------------------- - src/toolbar.h | 90 ----- - src/window-commands.c | 6 +- - 19 files changed, 1680 insertions(+), 943 deletions(-) - -commit a27be014985599ab073926bbf676846bdb2657c3 -Author: Matthew Schick -Date: Wed Jan 12 13:49:51 2005 +0000 - - Remove unnecessary line from DBUS configure check. - - 2005-01-12 Matthew Schick - - * configure.ac: - - Remove unnecessary line from DBUS configure check. - - ChangeLog | 6 ++++++ - configure.ac | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 4e924a040d0329795205ab8ba40626b8a9a9f2b5 -Author: Adam Hooper -Date: Wed Jan 12 02:25:57 2005 +0000 - - Remove an extra line of gtk-doc which doesn't belong. - - ChangeLog | 6 ++++++ - embed/ephy-embed-single.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 2057401f9e892836984560cf32667c0679a4beb5 -Author: Francisco Javier F. Serrador -Date: Wed Jan 12 00:56:03 2005 +0000 - - Updated Spanish translation. - - 2005-01-12 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 121 ++++++++++++++++++++++++++++++++++++++++++++++------------- - 2 files changed, 99 insertions(+), 26 deletions(-) - -commit 632e4a28a9c7c3722388e6ccce99a0d09fa2c8c8 -Author: Rhys Jones -Date: Tue Jan 11 23:38:49 2005 +0000 - - Updated Welsh translation. - - 2005-01-11 Rhys Jones - - * cy.po: Updated Welsh translation. - - po/ChangeLog | 4 + - po/cy.po | 2691 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1553 insertions(+), 1142 deletions(-) - -commit 2a6654a3fd29f993ad79e4697c735a39faa3f5ea -Author: Tomasz Kłoczko -Date: Tue Jan 11 22:50:01 2005 +0000 - - Fxs parallel build ("make -j"). Do not include full path to .la file in - - 2005-01-11 Tomasz Kłoczko - - * src/Makefile.am: - Fxs parallel build ("make -j"). - Do not include full path to .la file in case when it is in current - directory (it breaks dependences framework generated by automake in - Makefile file). - - ChangeLog | 8 ++++++++ - src/Makefile.am | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 706c311778082e9deaf4126d15e451915ae469de -Author: Christian Persch -Date: Tue Jan 11 19:32:33 2005 +0000 - - Post-release version bump. - - 2005-01-11 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit ae39d7f125e3bd3c61668079f8bd5af916dfa963 -Author: Christian Persch -Date: Tue Jan 11 19:31:48 2005 +0000 - - === Release 1.5.4 === - - 2005-01-11 Christian Persch - - === Release 1.5.4 === - - ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 4f4141d49c35db2106fc8b84f08a03a4e416dc20 -Author: Christian Persch -Date: Tue Jan 11 19:15:27 2005 +0000 - - Add "check-content" signal. - - 2005-01-11 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): - * embed/ephy-embed-single.h: - - Add "check-content" signal. - - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyContentPolicy.h: - - Emit from here. - - * lib/ephy-marshal.list: - - New marshal. - - ChangeLog | 16 ++++ - NEWS | 1 - - doc/reference/tmpl/ephy-embed.sgml | 6 +- - doc/reference/tmpl/ephy-glade.sgml | 13 ++++ - doc/reference/tmpl/ephy-node-db.sgml | 101 ++++++++++++++++++++++++++ - doc/reference/tmpl/epiphany-unused.sgml | 106 --------------------------- - embed/ephy-embed-single.c | 29 ++++++++ - embed/ephy-embed-single.h | 19 ++++- - embed/mozilla/EphyContentPolicy.cpp | 125 +++++++++++++++++++++++--------- - embed/mozilla/EphyContentPolicy.h | 2 + - lib/ephy-marshal.list | 1 + - 11 files changed, 275 insertions(+), 144 deletions(-) - -commit fa0d7a25b665db353b859e3785271d02dfb2be36 -Author: Christian Persch -Date: Tue Jan 11 17:36:15 2005 +0000 - - Use the enums instead of ints. - - 2005-01-11 Christian Persch - - * embed/ephy-cookie-manager.h: - * embed/mozilla/EphySingle.cpp: - - Use the enums instead of ints. - - ChangeLog | 7 +++++++ - embed/ephy-cookie-manager.h | 8 ++++---- - embed/mozilla/EphySingle.cpp | 4 ++-- - 3 files changed, 13 insertions(+), 6 deletions(-) - -commit 70b3c5658c449f89369e86d6943a944473facf26 -Author: Christian Persch -Date: Tue Jan 11 16:32:49 2005 +0000 - - Fix [DIST]CLEANFILES so that make distcheck passes. - - 2005-01-11 Christian Persch - - * src/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * embed/Makefile.am: - - Fix [DIST]CLEANFILES so that make distcheck passes. - - ChangeLog | 11 ++++++++++- - embed/Makefile.am | 4 ++-- - lib/Makefile.am | 4 ++-- - lib/egg/Makefile.am | 2 +- - src/Makefile.am | 2 +- - 5 files changed, 16 insertions(+), 7 deletions(-) - -commit 21f9298d2fbdee48df3adfe1120a54dd495d1bdb -Author: Christian Persch -Date: Tue Jan 11 14:40:39 2005 +0000 - - Use UnEscapeURIForUI instead of UnEscapeNonAsciiURI. - - 2005-01-10 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Use UnEscapeURIForUI instead of UnEscapeNonAsciiURI. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4b2f2a03096a6844aac9b7bf84750828da5f09ed -Author: Adam Weinberger -Date: Tue Jan 11 05:53:38 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++---------- - 2 files changed, 63 insertions(+), 11 deletions(-) - -commit e1aa2700d307dd33a0c1814783a26ca634b6dc0e -Author: Kjartan Maraas -Date: Tue Jan 11 00:14:43 2005 +0000 - - Update Update - - 2005-01-11 Kjartan Maraas - - * nb.po: Update - * no.po: Update - - po/ChangeLog | 5 + - po/nb.po | 947 ++++++++++++++++++++++++++++++++++------------------------- - po/no.po | 947 ++++++++++++++++++++++++++++++++++------------------------- - 3 files changed, 1109 insertions(+), 790 deletions(-) - -commit 2412c1375e216ce0ec60c4a400fc98f2c1296008 -Author: Christian Persch -Date: Mon Jan 10 23:35:35 2005 +0000 - - Update - - NEWS | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ - po/POTFILES.in | 1 + - 2 files changed, 51 insertions(+) - -commit 45208042e2ed00e56542ade4814814f8f914e932 -Author: Christian Persch -Date: Mon Jan 10 21:05:04 2005 +0000 - - Alerts should not have terminating periods in the primary text. - - 2005-01-10 Christian Persch - - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - - Alerts should not have terminating periods in the primary text. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 4de557a82bcd2114e84c6d16ceb18429019eb391 -Author: Miloslav Trmac -Date: Mon Jan 10 20:56:36 2005 +0000 - - Updated Czech translation. - - 2005-01-10 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 654 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 370 insertions(+), 288 deletions(-) - -commit 117d167e3616fd103c72d3787829fd14eacdae84 -Author: Jean-François Rameau -Date: Mon Jan 10 18:11:16 2005 +0000 - - Fix a mem leak. - - 2005-01-10 Jean-François Rameau - - * embed/print-dialog.c: (ephy_print_get_print_info): - - Fix a mem leak. - - ChangeLog | 6 ++++++ - embed/print-dialog.c | 1 + - 2 files changed, 7 insertions(+) - -commit 177dbe4d6f2ca0fb0cf787dad410a526fd6a6149 -Author: Nikos Charonitakis -Date: Mon Jan 10 16:31:44 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 1020 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 462 insertions(+), 562 deletions(-) - -commit 3f16cb4451bb23e8414723cb779ec95f20f13b29 -Author: Francisco Javier Fernandez -Date: Mon Jan 10 15:53:55 2005 +0000 - - Updated spanish translation - - 2005-01-10 Francisco Javier Fernandez - - * es.po: Updated spanish translation - - po/ChangeLog | 4 + - po/es.po | 731 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 354 insertions(+), 381 deletions(-) - -commit d956570540704a44161f0422689f1ae5e5b3b0ba -Author: Christian Persch -Date: Mon Jan 10 13:01:14 2005 +0000 - - Add $(stamp_files) to MAINTAINERCLEANFILES. - - 2005-01-10 Christian Persch - - * src/Makefile.am: - - Add $(stamp_files) to MAINTAINERCLEANFILES. - - ChangeLog | 6 ++++++ - src/Makefile.am | 1 + - 2 files changed, 7 insertions(+) - -commit 00108aae0abe78a07636b2c9813c0180457619b6 -Author: Adam Weinberger -Date: Mon Jan 10 06:35:57 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 76 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 45 insertions(+), 35 deletions(-) - -commit b03d104f9aa9c9348bfd5fa202b10b17ef05b3f2 -Author: Žygimantas Beručka -Date: Mon Jan 10 03:59:18 2005 +0000 - - Updated Lithuanian translation. - - 2005-01-10 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 800 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 378 insertions(+), 426 deletions(-) - -commit 46c10af32a80037c438c3c54f455a1db43a93e25 -Author: Christian Persch -Date: Mon Jan 10 00:23:14 2005 +0000 - - A src/ephy-toolbar-editor.c: A src/ephy-toolbar-editor.h: - - 2005-01-10 Christian Persch - - * data/epiphany.schemas.in: - * lib/ephy-prefs.h: - * src/Makefile.am: - * src/ephy-notebook.c: (tab_label_style_set_cb): - * src/ephy-shell.c: (ephy_shell_finalize), - (toolbar_style_notifier), (ephy_shell_get_toolbars_model): - A src/ephy-toolbar-editor.c: - A src/ephy-toolbar-editor.h: - * src/window-commands.c: (window_cmd_edit_toolbar): - - Move toolbar editor dialogue into its own class, and implement a - toolbar style override there. Fixes bug #102520. - - ChangeLog | 15 ++ - data/epiphany.schemas.in | 13 ++ - lib/ephy-prefs.h | 1 + - src/Makefile.am | 3 + - src/ephy-notebook.c | 3 - - src/ephy-shell.c | 50 ++++++ - src/ephy-toolbar-editor.c | 416 ++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-toolbar-editor.h | 60 +++++++ - src/window-commands.c | 96 +---------- - 9 files changed, 560 insertions(+), 97 deletions(-) - -commit 0db1c0f440d4388e7000eaa6aa2ea8e53776aded -Author: Christian Persch -Date: Mon Jan 10 00:14:23 2005 +0000 - - Rename toolbar model flags to be more in line with GtkToolbarStyle. - - 2005-01-10 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (toolbar_changed_cb), - (egg_editable_toolbar_construct): - * lib/egg/egg-toolbars-model.c: (parse_toolbars): - * lib/egg/egg-toolbars-model.h: - - Rename toolbar model flags to be more in line with GtkToolbarStyle. - - ChangeLog | 9 +++++++++ - lib/egg/egg-editable-toolbar.c | 25 ++++++++++--------------- - lib/egg/egg-toolbars-model.c | 2 +- - lib/egg/egg-toolbars-model.h | 9 +++++---- - 4 files changed, 25 insertions(+), 20 deletions(-) - -commit db1d9c156dce000c86c7ea961ac55c9a46b48e8e -Author: Christian Persch -Date: Mon Jan 10 00:11:34 2005 +0000 - - Fix dbus configure check to really default to off. - - 2005-01-10 Christian Persch - - * configure.ac: - - Fix dbus configure check to really default to off. - - ChangeLog | 6 ++++++ - configure.ac | 14 +++++++------- - 2 files changed, 13 insertions(+), 7 deletions(-) - -commit c841a4c82601d795e75dfec0007eb9e0e3580f53 -Author: Christian Persch -Date: Sun Jan 9 23:11:36 2005 +0000 - - A lib/ephy-dbus.c: A lib/ephy-dbus.h: - - 2005-01-10 Christian Persch - - * configure.ac: - * lib/Makefile.am: - A lib/ephy-dbus.c: - A lib/ephy-dbus.h: - * lib/ephy-marshal.list: - * src/Makefile.am: - * src/ephy-shell.c: (ephy_shell_finalize), - (ephy_shell_get_dbus_service): - * src/ephy-shell.h: - - Add experimental dbus service, disabled by default. Configure with - --enable-dbus to enable. - - ChangeLog | 15 ++ - configure.ac | 27 +++- - lib/Makefile.am | 17 +++ - lib/ephy-dbus.c | 398 ++++++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-dbus.h | 80 ++++++++++ - lib/ephy-marshal.list | 1 + - src/Makefile.am | 8 + - src/ephy-shell.c | 29 ++++ - src/ephy-shell.h | 2 + - 9 files changed, 576 insertions(+), 1 deletion(-) - -commit f7c90cf8b4189935d69b2ad6a67f3708b4afe4bd -Author: Piers Cornwell -Date: Sun Jan 9 21:55:59 2005 +0000 - - data/epiphany.desktop.in - - 2005-01-09 Piers Cornwell - - * data/epiphany.desktop.in - - Add extra catagories. Fixes bug #162973. - - ChangeLog | 6 ++++++ - data/epiphany.desktop.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 494563051c3fc7ca37c428fd1883bcf86efdc9cc -Author: Adam Weinberger -Date: Sun Jan 9 20:46:31 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 598 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 338 insertions(+), 264 deletions(-) - -commit b0db89833c3973dd34b670fd40f0ca90a07766a7 -Author: Christian Persch -Date: Sun Jan 9 15:06:36 2005 +0000 - - Don't check for nsIBrowserHistory. - - 2005-01-09 Christian Persch - - * configure.ac: - * embed/mozilla/GlobalHistory.cpp: - - Don't check for nsIBrowserHistory. - - ChangeLog | 8 ++++++++ - configure.ac | 7 +++---- - embed/mozilla/GlobalHistory.cpp | 2 +- - 3 files changed, 12 insertions(+), 5 deletions(-) - -commit 0b5eddd9ee4966a0d4863a997acbf7a444bdfb77 -Author: Christian Persch -Date: Sun Jan 9 15:05:24 2005 +0000 - - Add mnemonic to Send button. - - 2005-01-09 Christian Persch - - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - - Add mnemonic to Send button. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit efd9d3522dc2ab3275e5239e07049be9ca6a0c6e -Author: Christian Persch -Date: Sun Jan 9 14:44:35 2005 +0000 - - Set show-once to PR_FALSE if the GetBoolPref call fails. - - 2005-01-09 Christian Persch - - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - - Set show-once to PR_FALSE if the GetBoolPref call fails. - - ChangeLog | 16 ++++++++++++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 9 +++------ - 2 files changed, 19 insertions(+), 6 deletions(-) - -commit 5002e573727d32a729e44e6b9f8260ae2230883c -Author: Christian Persch -Date: Sun Jan 9 14:42:18 2005 +0000 - - Shut up - - embed/.cvsignore | 1 + - lib/.cvsignore | 1 + - lib/egg/.cvsignore | 1 + - src/.cvsignore | 1 + - 4 files changed, 4 insertions(+) - -commit 086cd1230c7f9c55b54436358e38f413ad4d24f0 -Author: Crispin Flowerday -Date: Sun Jan 9 14:35:40 2005 +0000 - - Remove some unneeded includes and defines - - 2005-01-09 Crispin Flowerday - - * src/Makefile.am (epiphany_CPPFLAGS): - - Remove some unneeded includes and defines - - ChangeLog | 6 ++++++ - src/Makefile.am | 5 ----- - 2 files changed, 6 insertions(+), 5 deletions(-) - -commit 4f144e61fc4dbbf1a4ccd809e35181782cf94f68 -Author: Christian Persch -Date: Sun Jan 9 13:39:30 2005 +0000 - - Updated. - - 2005-01-09 Christian Persch - - * POTFILES.in: Updated. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit 83164008c7b412660d812edb9b5689dea519562d -Author: Adam Hooper -Date: Sun Jan 9 01:52:18 2005 +0000 - - Don't store more than 5 hidden popups. Fixes bug #160863. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 22 +++++++++++++++++++++- - 2 files changed, 27 insertions(+), 1 deletion(-) - -commit 26655a0641769e2b8d27980b9dc463f5282a489c -Author: Christian Persch -Date: Sun Jan 9 01:29:17 2005 +0000 - - Don't show the description for no-secure and broken sites. - - 2005-01-09 Christian Persch - - * src/ephy-window.c: (sync_tab_security): - - Don't show the description for no-secure and broken sites. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 19 ++++++++++++------- - 2 files changed, 18 insertions(+), 7 deletions(-) - -commit 2427e942801133136a6d63874eee960f1249f0d2 -Author: Christian Persch -Date: Sun Jan 9 00:35:45 2005 +0000 - - Set default response to ACCEPT in send-to-insecure dialogue, only write - - 2005-01-09 Christian Persch - - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - * embed/mozilla/GtkNSSSecurityWarningDialogs.h: - - Set default response to ACCEPT in send-to-insecure dialogue, - only write back show_once pref when not shown by default, - and add the dialogue to its parent's window group - (note that there isn't a parent without a mozilla patch, currently). - - ChangeLog | 10 ++++++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 24 +++++++++++++++--------- - embed/mozilla/GtkNSSSecurityWarningDialogs.h | 1 + - 3 files changed, 26 insertions(+), 9 deletions(-) - -commit ba0aafaf687b42c36ce032e31e94a9013d843d41 -Author: Christian Persch -Date: Sat Jan 8 23:56:46 2005 +0000 - - Correct bug # in ChangeLog - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8ca71da1520ac99d2adb663727b7a6284fbf0ac2 -Author: Christian Persch -Date: Sat Jan 8 23:40:14 2005 +0000 - - Improve dialogue wording. Thanks to spark for his help. - - 2005-01-09 Christian Persch - - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - - Improve dialogue wording. Thanks to spark for his help. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 22 +++++++++++----------- - 2 files changed, 17 insertions(+), 11 deletions(-) - -commit 01c3079aa89f17eea022c0740a287855fbad786e -Author: Christian Persch -Date: Sat Jan 8 23:17:58 2005 +0000 - - Override the default security warning dialogues implementation with our - - 2005-01-09 Christian Persch - - * data/default-prefs-common.js: - * embed/mozilla/GtkNSSSecurityWarningDialogs.cpp: - * embed/mozilla/GtkNSSSecurityWarningDialogs.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - - Override the default security warning dialogues implementation with our own - class which follows HIG and our interface design. Fixes bug #163371. - Also show the entering-secure dialogue once, to inform about the - lock icon in the statusbar. - - ChangeLog | 13 ++ - data/default-prefs-common.js | 1 + - embed/mozilla/GtkNSSSecurityWarningDialogs.cpp | 276 +++++++++++++++++++++++++ - embed/mozilla/GtkNSSSecurityWarningDialogs.h | 81 ++++++++ - embed/mozilla/Makefile.am | 4 +- - embed/mozilla/MozRegisterComponents.cpp | 8 + - 6 files changed, 382 insertions(+), 1 deletion(-) - -commit 6e8ce69055a363b045a59f8f380e1aeedf54ebf4 -Author: Christian Persch -Date: Sat Jan 8 21:34:29 2005 +0000 - - Also generate types for ephy-cookie-manager.h's enums. - - 2005-01-08 Christian Persch - - * embed/Makefile.am: - - Also generate types for ephy-cookie-manager.h's enums. - - ChangeLog | 6 ++++++ - embed/Makefile.am | 10 ++-------- - 2 files changed, 8 insertions(+), 8 deletions(-) - -commit 3b8b7372417b7bcf64ef2e5c0304815e8c3b416a -Author: Christian Persch -Date: Sat Jan 8 19:58:01 2005 +0000 - - More stamp magic. - - 2005-01-08 Christian Persch - - * embed/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * src/Makefile.am: - - More stamp magic. - - .cvsignore | 2 +- - ChangeLog | 9 +++++++++ - embed/Makefile.am | 10 +++++++--- - lib/Makefile.am | 18 +++++++++++++----- - lib/egg/Makefile.am | 18 +++++++++++++----- - src/Makefile.am | 10 +++++++--- - 6 files changed, 50 insertions(+), 17 deletions(-) - -commit 4fc9af6cff1494c3cbbe48f253a84a5d9a3b92e5 -Author: Christian Persch -Date: Sat Jan 8 19:41:47 2005 +0000 - - Make all structs prefixed by _. - - 2005-01-08 Christian Persch - - * embed/ephy-cookie-manager.h: - * embed/ephy-download.c: - * embed/ephy-download.h: - * embed/ephy-embed-dialog.c: - * embed/ephy-embed-dialog.h: - * embed/ephy-embed-persist.c: - * embed/ephy-embed-persist.h: - * embed/ephy-encodings.c: - * embed/ephy-encodings.h: - * embed/ephy-favicon-cache.c: - * embed/ephy-favicon-cache.h: - * embed/ephy-history.c: - * embed/ephy-history.h: - * embed/ephy-password-manager.h: - * embed/ephy-permission-manager.h: - * lib/ephy-file-chooser.c: - * lib/ephy-file-chooser.h: - * lib/ephy-node-db.c: - * lib/ephy-node-db.h: - * lib/ephy-node-filter.c: - * lib/ephy-node-filter.h: - * lib/ephy-node.c: - * lib/ephy-node.h: - * lib/widgets/ephy-node-view.c: - * lib/widgets/ephy-node-view.h: - * lib/widgets/ephy-search-entry.c: - * lib/widgets/ephy-search-entry.h: - * lib/widgets/ephy-spinner.c: - * lib/widgets/ephy-spinner.h: - * lib/widgets/ephy-tree-model-node.c: - * lib/widgets/ephy-tree-model-node.h: - * lib/widgets/ephy-tree-model-sort.c: - * lib/widgets/ephy-tree-model-sort.h: - * lib/widgets/ephy-zoom-action.c: - * lib/widgets/ephy-zoom-action.h: - * src/bookmarks/ephy-bookmark-properties.c: - * src/bookmarks/ephy-bookmark-properties.h: - * src/bookmarks/ephy-bookmarks-editor.c: - * src/bookmarks/ephy-bookmarks-editor.h: - * src/bookmarks/ephy-bookmarks.c: - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-bookmarksbar-model.c: - * src/bookmarks/ephy-bookmarksbar-model.h: - * src/bookmarks/ephy-bookmarksbar.c: - * src/bookmarks/ephy-bookmarksbar.h: - * src/bookmarks/ephy-new-bookmark.c: - * src/bookmarks/ephy-new-bookmark.h: - * src/bookmarks/ephy-topics-selector.c: - * src/bookmarks/ephy-topics-selector.h: - * src/ephy-completion-model.c: - * src/ephy-completion-model.h: - * src/ephy-encoding-dialog.c: - * src/ephy-encoding-dialog.h: - * src/ephy-history-window.c: - * src/ephy-history-window.h: - - Make all structs prefixed by _. - - ChangeLog | 60 ++++++++++++++++++++++++++++++++ - embed/ephy-cookie-manager.h | 6 ++-- - embed/ephy-download.c | 2 +- - embed/ephy-download.h | 10 +++--- - embed/ephy-embed-dialog.c | 2 +- - embed/ephy-embed-dialog.h | 10 +++--- - embed/ephy-embed-persist.c | 2 +- - embed/ephy-embed-persist.h | 6 ++-- - embed/ephy-encodings.c | 2 +- - embed/ephy-encodings.h | 12 ++++--- - embed/ephy-favicon-cache.c | 2 +- - embed/ephy-favicon-cache.h | 10 +++--- - embed/ephy-history.c | 2 +- - embed/ephy-history.h | 10 +++--- - embed/ephy-password-manager.h | 6 ++-- - embed/ephy-permission-manager.h | 6 ++-- - lib/ephy-file-chooser.c | 2 +- - lib/ephy-file-chooser.h | 12 ++++--- - lib/ephy-node-db.c | 2 +- - lib/ephy-node-db.h | 2 +- - lib/ephy-node-filter.c | 4 +-- - lib/ephy-node-filter.h | 4 +-- - lib/ephy-node.c | 2 +- - lib/ephy-node.h | 2 +- - lib/widgets/ephy-node-view.c | 2 +- - lib/widgets/ephy-node-view.h | 2 +- - lib/widgets/ephy-search-entry.c | 2 +- - lib/widgets/ephy-search-entry.h | 2 +- - lib/widgets/ephy-spinner.c | 2 +- - lib/widgets/ephy-spinner.h | 10 +++--- - lib/widgets/ephy-tree-model-node.c | 2 +- - lib/widgets/ephy-tree-model-node.h | 2 +- - lib/widgets/ephy-tree-model-sort.c | 2 +- - lib/widgets/ephy-tree-model-sort.h | 2 +- - lib/widgets/ephy-zoom-action.c | 2 +- - lib/widgets/ephy-zoom-action.h | 10 +++--- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmark-properties.h | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.h | 2 +- - src/bookmarks/ephy-bookmarks.c | 2 +- - src/bookmarks/ephy-bookmarks.h | 10 +++--- - src/bookmarks/ephy-bookmarksbar-model.c | 2 +- - src/bookmarks/ephy-bookmarksbar-model.h | 10 +++--- - src/bookmarks/ephy-bookmarksbar.c | 2 +- - src/bookmarks/ephy-bookmarksbar.h | 10 +++--- - src/bookmarks/ephy-new-bookmark.c | 2 +- - src/bookmarks/ephy-new-bookmark.h | 2 +- - src/bookmarks/ephy-topics-selector.c | 2 +- - src/bookmarks/ephy-topics-selector.h | 2 +- - src/ephy-completion-model.c | 2 +- - src/ephy-completion-model.h | 2 +- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-encoding-dialog.h | 10 +++--- - src/ephy-history-window.c | 2 +- - src/ephy-history-window.h | 2 +- - 56 files changed, 177 insertions(+), 113 deletions(-) - -commit c4d4c87e3be705bbafaafa5f75d4141a9994db48 -Author: Laurent Dhima -Date: Sat Jan 8 17:19:46 2005 +0000 - - Updated Albanian translation. - - 2005-01-08 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 390 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 196 insertions(+), 198 deletions(-) - -commit 451aab6359ae937a488c6c9df05134c830f8fb62 -Author: Vincent van Adrighem -Date: Sat Jan 8 16:55:45 2005 +0000 - - Translation updated by Reinout van Schouwen. - - 2005-01-08 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 693 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 380 insertions(+), 317 deletions(-) - -commit 1b0e8ed184e0d629e7bb2575f61ca4a97834de71 -Author: Christian Persch -Date: Sat Jan 8 16:40:45 2005 +0000 - - Prefix structs with _. - - 2005-01-08 Christian Persch - - * src/ephy-notebook.c: - * src/ephy-notebook.h: - * src/ephy-session.c: - * src/ephy-session.h: - * src/ephy-statusbar.c: - * src/ephy-statusbar.h: - * src/ephy-toolbars-model.c: - * src/ephy-toolbars-model.h: - - Prefix structs with _. - - ChangeLog | 13 +++++++++++++ - src/ephy-notebook.c | 2 +- - src/ephy-notebook.h | 10 +++++----- - src/ephy-session.c | 2 +- - src/ephy-session.h | 10 +++++----- - src/ephy-statusbar.c | 2 +- - src/ephy-statusbar.h | 10 +++++----- - src/ephy-toolbars-model.c | 2 +- - src/ephy-toolbars-model.h | 10 +++++----- - 9 files changed, 37 insertions(+), 24 deletions(-) - -commit 7ce29fb6fa59d22f516f07535f31bcb227331ef0 -Author: Christian Persch -Date: Sat Jan 8 16:32:09 2005 +0000 - - Remove unused include from public header ephy-window.h. - - 2005-01-08 Christian Persch - - * src/ephy-shell.c: - * src/ephy-tabs-menu.c: - * src/ephy-window.c: - * src/ephy-window.h: - * src/pdm-dialog.c: - * src/prefs-dialog.c: - * src/window-commands.c: - - Remove unused include from public header ephy-window.h. - - ChangeLog | 12 ++++++++++++ - src/ephy-shell.c | 1 + - src/ephy-tabs-menu.c | 1 + - src/ephy-window.c | 1 + - src/ephy-window.h | 2 -- - src/pdm-dialog.c | 2 +- - src/prefs-dialog.c | 1 + - src/window-commands.c | 1 + - 8 files changed, 18 insertions(+), 3 deletions(-) - -commit d9ec1f482b6b8926cbb10f1fb6b55b6b6685a1fd -Author: Christian Persch -Date: Sat Jan 8 14:02:20 2005 +0000 - - Unify the location and favicon actions. - - 2005-01-08 Christian Persch - - * data/ui/epiphany-toolbar.xml: - * lib/ephy-marshal.list: - * lib/ephy-signal-accumulator.c: (ephy_signal_accumulator_string): - * lib/ephy-signal-accumulator.h: - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_set_tooltip), - (ephy_location_entry_class_init), (editable_changed_cb), - (each_url_get_data_binder), (favicon_drag_data_get_cb), - (ephy_location_entry_construct_contents), - (ephy_location_entry_activate), (ephy_location_entry_get_entry), - (ephy_location_entry_get_image): - * lib/widgets/ephy-location-entry.h: - * src/Makefile.am: - * src/ephy-favicon-action.c: - * src/ephy-favicon-action.h: - * src/ephy-location-action.c: (sync_address), (sync_editable), - (sync_icon), (get_location_cb), (get_title_cb), - (remove_completion_actions), (add_completion_actions), - (connect_proxy), (disconnect_proxy), - (ephy_location_action_set_property), - (ephy_location_action_get_property), - (ephy_location_action_class_init), (ephy_location_action_init), - (ephy_location_action_finalize): - * src/ephy-window.c: (sync_tab_icon): - * src/toolbar.c: (toolbar_setup_actions), (toolbar_update_favicon): - * src/toolbar.h: - - Unify the location and favicon actions. - - * src/window-commands.c: (window_cmd_help_about): - - Add translator comment to the translation-credits string. - - ChangeLog | 45 ++++++ - data/ui/epiphany-toolbar.xml | 2 - - lib/ephy-marshal.list | 1 + - lib/ephy-signal-accumulator.c | 11 ++ - lib/ephy-signal-accumulator.h | 4 + - lib/widgets/ephy-location-entry.c | 156 ++++++++++++++---- - lib/widgets/ephy-location-entry.h | 11 +- - src/Makefile.am | 2 - - src/ephy-favicon-action.c | 323 -------------------------------------- - src/ephy-favicon-action.h | 52 ------ - src/ephy-location-action.c | 181 ++++++++++++++++----- - src/ephy-window.c | 2 +- - src/toolbar.c | 23 +-- - src/toolbar.h | 3 +- - src/window-commands.c | 8 + - 15 files changed, 357 insertions(+), 467 deletions(-) - -commit 1db0996634c234cfde4330ebaa7697d041a5d0ee -Author: Alexander Shopov -Date: Sat Jan 8 10:50:21 2005 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2005-01-08 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 793 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 425 insertions(+), 373 deletions(-) - -commit c81ece6b170eb51015db950983c8cdac0b051091 -Author: Christian Persch -Date: Fri Jan 7 18:57:55 2005 +0000 - - Shut up - - embed/.cvsignore | 1 + - lib/.cvsignore | 1 + - lib/egg/.cvsignore | 1 + - src/.cvsignore | 1 + - 4 files changed, 4 insertions(+) - -commit 9362c2d2c2e0a386eac7a0c8f9cb683ad1e3af98 -Author: Christian Persch -Date: Fri Jan 7 14:59:56 2005 +0000 - - Avoid unnecessary rebuilts of the generated enum .h files by using stamp - - 2005-01-07 Christian Persch - - * embed/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * src/Makefile.am: - - Avoid unnecessary rebuilts of the generated enum .h files by using - stamp files. - - embed/Makefile.am | 13 ++++++++++--- - lib/Makefile.am | 21 ++++++++++++++++----- - lib/egg/Makefile.am | 23 +++++++++++++++++------ - src/Makefile.am | 12 +++++++++--- - 4 files changed, 52 insertions(+), 17 deletions(-) - -commit c3da24579d8f707e1da5ed2a2e0040e2b724757f -Author: Christian Persch -Date: Fri Jan 7 14:15:34 2005 +0000 - - Make sure our flags/enum types are registered. - - 2005-01-07 Christian Persch - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_get_type), - (egg_toolbars_model_get_item_type): - * lib/ephy-state.c: (ensure_states): - - Make sure our flags/enum types are registered. - - ChangeLog | 8 ++++++++ - lib/egg/egg-toolbars-model.c | 10 ++++------ - lib/ephy-state.c | 10 ++++------ - 3 files changed, 16 insertions(+), 12 deletions(-) - -commit 056bcae1bf6a4a9faf18806388107cbcc7131372 -Author: Francisco Javier F. Serrador -Date: Fri Jan 7 01:06:55 2005 +0000 - - Updated Spanish translation. - - 2005-01-07 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 732 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 394 insertions(+), 342 deletions(-) - -commit 51b8a066e40581b8f141e44bfcd0a904d53fe400 -Author: Christian Persch -Date: Thu Jan 6 23:14:23 2005 +0000 - - Remove duplicate define - - lib/ephy-state.h | 2 -- - 1 file changed, 2 deletions(-) - -commit 020d759fa2d1a462d4179210bf7f5f8622246380 -Author: Christian Persch -Date: Thu Jan 6 23:13:11 2005 +0000 - - Add dummy functions to call some get_types funcs, otherwise they don't get - - 2005-01-07 Christian Persch - - * lib/egg/egg-toolbars-model.c: (register_type): - * lib/ephy-state.c: (register_type): - * lib/ephy-state.h: - - Add dummy functions to call some get_types funcs, otherwise - they don't get exported. - - * src/Makefile.am: - - Remove unused defines. - - ChangeLog | 13 +++++++++++++ - lib/egg/egg-toolbars-model.c | 6 ++++++ - lib/ephy-state.c | 7 +++++++ - src/Makefile.am | 2 -- - 4 files changed, 26 insertions(+), 2 deletions(-) - -commit 3b089d15448350161cfe7cee83dbfc57d33df11b -Author: Žygimantas Beručka -Date: Thu Jan 6 21:38:08 2005 +0000 - - Updated Lithuanian translation. - - 2005-01-06 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 678 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 370 insertions(+), 312 deletions(-) - -commit 1344095a0b89a00b346f53227c6e6c7e59d37e82 -Author: Miloslav Trmac -Date: Thu Jan 6 19:52:07 2005 +0000 - - Updated Czech translation. - - 2005-01-06 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 432 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 229 insertions(+), 207 deletions(-) - -commit 5e981603003e1cabbc0d9b0d0a0f37e04c0da998 -Author: Christian Persch -Date: Thu Jan 6 19:41:09 2005 +0000 - - More auto-generated types. - - 2005-01-06 Christian Persch - - * lib/Makefile.am: - * lib/ephy-state.c: - * lib/ephy-state.h: - - More auto-generated types. - - ChangeLog | 8 ++++++++ - lib/Makefile.am | 50 +++++++++++++++++++++++++++++++++++++++++++++----- - lib/ephy-state.c | 22 ---------------------- - lib/ephy-state.h | 2 -- - 4 files changed, 53 insertions(+), 29 deletions(-) - -commit 7116e574da0fbe0c66c11e099996ad0f4c481035 -Author: Christian Persch -Date: Thu Jan 6 18:49:24 2005 +0000 - - Simplfiy the rule a bit. - - 2005-01-06 Christian Persch - - * embed/Makefile.am: - * lib/egg/Makefile.am: - * src/Makefile.am: - - Simplfiy the rule a bit. - - ChangeLog | 8 ++++++++ - embed/Makefile.am | 4 ++-- - lib/egg/Makefile.am | 4 ++-- - src/Makefile.am | 4 ++-- - 4 files changed, 14 insertions(+), 6 deletions(-) - -commit 35ad841aceed89072e2cc6f589405a6feb411f74 -Author: Christian Persch -Date: Thu Jan 6 18:14:42 2005 +0000 - - Use glib-mkenums to generate the enum and flags get_type functions. - - 2005-01-06 Christian Persch - - * configure.ac: - * embed/Makefile.am: - * embed/ephy-embed-event.c: - * embed/ephy-embed-event.h: - * embed/ephy-embed-persist.c: - * embed/ephy-embed-persist.h: - * embed/ephy-embed.c: - * embed/ephy-embed.h: - * embed/ephy-permission-manager.c: - * embed/ephy-permission-manager.h: - * lib/egg/Makefile.am: - * lib/egg/egg-toolbars-model.c: - * lib/egg/egg-toolbars-model.h: - * src/Makefile.am: - * src/ephy-link.c: - * src/ephy-link.h: - * src/ephy-navigation-action.c: - * src/ephy-shell.c: (ephy_shell_error_quark): - * src/ephy-shell.h: - * src/ephy-tab.c: - * src/ephy-tab.h: - * src/ephy-window.c: - - Use glib-mkenums to generate the enum and flags get_type functions. - - ChangeLog | 27 +++++++++ - configure.ac | 7 +++ - embed/Makefile.am | 53 +++++++++++++++++- - embed/ephy-embed-event.c | 49 +--------------- - embed/ephy-embed-event.h | 3 - - embed/ephy-embed-persist.c | 23 -------- - embed/ephy-embed-persist.h | 2 - - embed/ephy-embed.c | 120 +--------------------------------------- - embed/ephy-embed.h | 24 +++----- - embed/ephy-permission-manager.c | 24 +------- - embed/ephy-permission-manager.h | 1 - - lib/egg/Makefile.am | 41 +++++++++++++- - lib/egg/egg-toolbars-model.c | 25 +-------- - lib/egg/egg-toolbars-model.h | 2 - - src/Makefile.am | 47 +++++++++++++++- - src/ephy-link.c | 22 +------- - src/ephy-link.h | 2 - - src/ephy-navigation-action.c | 1 + - src/ephy-shell.c | 93 +------------------------------ - src/ephy-shell.h | 14 ++--- - src/ephy-tab.c | 40 +------------- - src/ephy-tab.h | 3 - - src/ephy-window.c | 2 + - 23 files changed, 194 insertions(+), 431 deletions(-) - -commit 58a62ea3932ab6bdb599a0c519460a56622fe884 -Author: Christian Persch -Date: Thu Jan 6 15:24:47 2005 +0000 - - Add placeholder group for tabs move actions. - - 2005-01-06 Christian Persch - - * data/ui/epiphany-ui.xml: - - Add placeholder group for tabs move actions. - - * src/ephy-window.c: (show_notebook_popup_menu): - - Activate the action before showing the context menu, so - extensions can sync their UI. - - ChangeLog | 11 +++++++++++ - data/ui/epiphany-ui.xml | 15 +++++++++------ - src/ephy-window.c | 8 ++++++++ - 3 files changed, 28 insertions(+), 6 deletions(-) - -commit 1a6b25785d7934d87bff6615ba875279958e49c2 -Author: Adam Weinberger -Date: Thu Jan 6 03:40:57 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 130 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 66 insertions(+), 68 deletions(-) - -commit dfde304925628b1a450f0593a6b90ef128406fd2 -Author: Christian Persch -Date: Thu Jan 6 00:48:03 2005 +0000 - - Don't focus the button on click. - - 2005-01-06 Christian Persch - - * src/ephy-go-action.c: (create_tool_item): - - Don't focus the button on click. - - ChangeLog | 6 ++++++ - src/ephy-go-action.c | 1 + - 2 files changed, 7 insertions(+) - -commit 4c4033f2578c222627d2158110bfb6dcda39e7ac -Author: Christian Persch -Date: Thu Jan 6 00:28:41 2005 +0000 - - Open the GNOME background properties capplet when setting the background - - 2005-01-06 Christian Persch - - * src/popup-commands.c: (background_download_completed): - - Open the GNOME background properties capplet when setting the - background from an image. Fixes bug #161215. - - ChangeLog | 7 +++++++ - src/popup-commands.c | 11 ++++++++++- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit 75c63d21e5a03f20bcc1f46972cec9526e510369 -Author: Christian Persch -Date: Thu Jan 6 00:02:55 2005 +0000 - - Display open lock for low 'secure' sites too. Fixes bug #151709. - - 2005-01-06 Christian Persch - - * src/ephy-window.c: (sync_tab_security): - - Display open lock for low 'secure' sites too. Fixes bug #151709. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 7 ++----- - 2 files changed, 8 insertions(+), 5 deletions(-) - -commit e2ee4721db774bd0ba9ae698872a46b87c7c2d67 -Author: Christian Persch -Date: Wed Jan 5 23:05:20 2005 +0000 - - Don't add "Close" to the tab's context menu. When you're using keynav, the - - 2005-01-06 Christian Persch - - * data/ui/epiphany-ui.xml: - - Don't add "Close" to the tab's context menu. When you're using keynav, - the tab is active so normal ways (File menu, Ctrl-W) work; when you're - mousing why not use the close button! - - ChangeLog | 8 ++++++++ - data/ui/epiphany-ui.xml | 1 - - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit c51c0a31374ebf465d2713c3c448ae81b561d8b6 -Author: Christian Persch -Date: Wed Jan 5 22:57:51 2005 +0000 - - Use "Add _Bookmark" not "_Bookmark Link". - - 2005-01-05 Christian Persch - - * src/ephy-history-window.c: - - Use "Add _Bookmark" not "_Bookmark Link". - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 3b41b3bfb2ac16fe1bf1d1314f89d346528da1d6 -Author: Christian Persch -Date: Wed Jan 5 21:11:41 2005 +0000 - - Retain old menu item name for compatibility. - - 2005-01-05 Christian Persch - - * data/ui/epiphany-ui.xml: - - Retain old menu item name for compatibility. - - ChangeLog | 6 ++++++ - data/ui/epiphany-ui.xml | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 40dafa4179a4349c73c2acce6330970698159767 -Author: Christian Persch -Date: Wed Jan 5 20:58:45 2005 +0000 - - Add context menu on notebook. Fixes bug #132989. - - 2005-01-05 Christian Persch - - * data/ui/epiphany-ui.xml: - * src/ephy-notebook.c: (button_press_cb): - * src/ephy-window.c: (show_notebook_popup_menu), - (notebook_button_press_cb), (notebook_popup_menu_cb), - (setup_notebook): - - Add context menu on notebook. Fixes bug #132989. - - ChangeLog | 10 ++++++++ - data/ui/epiphany-ui.xml | 10 +++++++- - src/ephy-notebook.c | 15 ++++++++++++ - src/ephy-window.c | 65 +++++++++++++++++++++++++++++++++++++++++++++++-- - 4 files changed, 97 insertions(+), 3 deletions(-) - -commit 4953a4bdb2cb833574b4188f6795e796b4ff9a2d -Author: Christian Persch -Date: Wed Jan 5 20:57:00 2005 +0000 - - Remove trailing whitespace. - - 2005-01-05 Christian Persch - - * data/Makefile.am: - - Remove trailing whitespace. - - * embed/mozilla/MozDownload.cpp: - - Fix build with moz 1.7. - - ChangeLog | 10 ++++++++++ - data/Makefile.am | 2 +- - embed/mozilla/MozDownload.cpp | 3 ++- - 3 files changed, 13 insertions(+), 2 deletions(-) - -commit 1bb2458bbd832096bb10d850524c560129224b46 -Author: Christian Persch -Date: Wed Jan 5 20:48:47 2005 +0000 - - Only implement nsITransfer if possible. - - 2005-01-05 Christian Persch - - * configure.ac: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - Only implement nsITransfer if possible. - - ChangeLog | 8 ++++ - configure.ac | 10 ++++- - doc/reference/tmpl/ephy-embed-persist.sgml | 23 ---------- - doc/reference/tmpl/ephy-embed.sgml | 42 +----------------- - doc/reference/tmpl/ephy-window.sgml | 8 ---- - doc/reference/tmpl/epiphany-unused.sgml | 70 ++++++++++++++++++++++++++++++ - embed/mozilla/MozDownload.cpp | 54 +++++++++++++---------- - embed/mozilla/MozDownload.h | 25 +++++++++-- - 8 files changed, 143 insertions(+), 97 deletions(-) - -commit a5d0e720fade615d0009a42d38b195a2db57b959 -Author: Crispin Flowerday -Date: Wed Jan 5 20:09:09 2005 +0000 - - Consistently start enum names with EPHY_*. - - 2005-01-05 Crispin Flowerday - - * embed/ephy-embed-event.c: (ephy_embed_event_context_get_type): - * embed/ephy-embed-event.h: - * embed/ephy-embed-persist.c: (ephy_embed_persist_flags_get_type): - * embed/ephy-embed-persist.h: - * embed/ephy-embed.c: (ephy_embed_net_state_get_type), - (ephy_embed_ppv_navigation_get_type), - (ephy_embed_security_level_get_type), - (ephy_embed_document_type_get_type): - * embed/ephy-embed.h: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download): - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-tab.c: (ephy_tab_address_expire_get_type), - (ephy_tab_navigation_flags_get_type), (ephy_tab_set_property), - (ephy_tab_class_init), (ephy_tab_get_document_type), - (ephy_tab_address_cb), (update_net_state_message), - (build_progress_from_requests), (ensure_page_info), - (ephy_tab_net_state_cb), (ephy_tab_dom_mouse_click_cb), - (ephy_tab_init), (ephy_tab_update_navigation_flags), - (ephy_tab_set_location), (ephy_tab_get_security_level): - * src/ephy-tab.h: - * src/ephy-window.c: (sync_tab_document_type), - (sync_tab_navigation), (sync_tab_security), (sync_tab_zoom), - (update_popups_tooltips), (show_embed_popup): - * src/popup-commands.c: (popup_cmd_copy_link_address), - (save_property_url), (popup_cmd_set_image_as_background), - (save_temp_source): - * src/ppview-toolbar.c: (toolbar_cmd_ppv_goto_first), - (toolbar_cmd_ppv_goto_last), (toolbar_cmd_ppv_go_back), - (toolbar_cmd_ppv_go_forward): - * src/toolbar.c: (sync_user_input_cb): - * src/window-commands.c: (window_cmd_file_save_as), - (save_temp_source): - - Consistently start enum names with EPHY_*. - - ChangeLog | 43 ++++++++++++++++ - embed/ephy-embed-event.c | 16 +++--- - embed/ephy-embed-event.h | 16 +++--- - embed/ephy-embed-persist.c | 20 ++++---- - embed/ephy-embed-persist.h | 10 ++-- - embed/ephy-embed.c | 52 +++++++++---------- - embed/ephy-embed.h | 52 +++++++++---------- - embed/ephy-favicon-cache.c | 4 +- - embed/mozilla/EphyBrowser.cpp | 8 +-- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/EventContext.cpp | 28 +++++------ - embed/mozilla/MozDownload.cpp | 14 +++--- - embed/mozilla/mozilla-embed-persist.cpp | 8 +-- - embed/mozilla/mozilla-embed.cpp | 36 +++++++------- - src/ephy-shell.c | 2 +- - src/ephy-tab.c | 88 ++++++++++++++++----------------- - src/ephy-tab.h | 12 ++--- - src/ephy-window.c | 46 ++++++++--------- - src/popup-commands.c | 10 ++-- - src/ppview-toolbar.c | 8 +-- - src/toolbar.c | 2 +- - src/window-commands.c | 6 +-- - 22 files changed, 263 insertions(+), 220 deletions(-) - -commit 41e8ca8d5152c7acf6e39070b49c8f3715110e8d -Author: Nikos Charonitakis -Date: Wed Jan 5 00:06:51 2005 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 2377 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1349 insertions(+), 1032 deletions(-) - -commit adac32cbff6c28cecfb0cab0edaf1bc69b25b545 -Author: Christian Persch -Date: Tue Jan 4 21:42:58 2005 +0000 - - Don't focus the buttons on click. - - 2005-01-04 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item): - * src/bookmarks/ephy-topic-action.c: (create_tool_item): - - Don't focus the buttons on click. - - * src/bookmarks/ephy-topic-action.c: (add_open_in_tabs_menu): - - Use "Open in New Tabs" label for consistency. - - ChangeLog | 11 +++++++++++ - src/bookmarks/ephy-bookmark-action.c | 1 + - src/bookmarks/ephy-topic-action.c | 8 +++++++- - 3 files changed, 19 insertions(+), 1 deletion(-) - -commit c22cb479dbb9879f1b153f391b57e972f53c1b9f -Author: Christian Persch -Date: Tue Jan 4 21:31:06 2005 +0000 - - Use ngettext to get the Open in New Tab[s]/Window[s] label. - - 2005-01-04 Christian Persch - - * lib/widgets/ephy-node-view.c: - * lib/widgets/ephy-node-view.h: - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu): - * src/ephy-history-window.c: (ephy_history_window_update_menu): - - Use ngettext to get the Open in New Tab[s]/Window[s] label. - - 2005-01-04 Christian Persch - - ChangeLog | 10 +++++++ - lib/widgets/ephy-node-view.c | 17 ----------- - lib/widgets/ephy-node-view.h | 3 -- - src/bookmarks/ephy-bookmarks-editor.c | 53 +++++++++++++++++------------------ - src/ephy-history-window.c | 45 ++++++++++++++--------------- - 5 files changed, 57 insertions(+), 71 deletions(-) - -commit af3fc43e417a96bc31b5bda39153980486da1ca9 -Author: Christian Persch -Date: Tue Jan 4 20:22:46 2005 +0000 - - Better fix for bug #119461, just use gtk_button_set_focus_on_click(). - - 2005-01-04 Christian Persch - - * src/ephy-notebook.c: (close_button_clicked_cb), - (build_tab_label): - - Better fix for bug #119461, just use gtk_button_set_focus_on_click(). - Thanks to tko for pointing this out to me. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 13 ++----------- - 2 files changed, 10 insertions(+), 11 deletions(-) - -commit 85902550f35183f47b8ecb188047c0bb375b6d26 -Author: Marcel Telka -Date: Tue Jan 4 19:36:16 2005 +0000 - - Updated Slovak translation. - - 2005-01-04 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 +++ - po/sk.po | 111 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 58 insertions(+), 57 deletions(-) - -commit 5a29ed23c11d5a267c2f9fe9b0671490356d4cf3 -Author: Laurent Dhima -Date: Tue Jan 4 10:01:51 2005 +0000 - - Updated Albanian translation. - - 2005-01-04 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 1074 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 579 insertions(+), 499 deletions(-) - -commit 2bf2276465286be9c713b7dbaa26bea6f05563a0 -Author: Adam Hooper -Date: Tue Jan 4 00:10:15 2005 +0000 - - Use G_TYPE_STRING instead of G_TYPE_POINTER for address and features - of ge-popup-blocked signal. - - ChangeLog | 7 +++++++ - embed/ephy-embed.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 428d89af2b31fc5dc14d4c64437b46baa4ad7b1c -Author: Adam Weinberger -Date: Mon Jan 3 23:32:14 2005 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 267 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 148 insertions(+), 123 deletions(-) - -commit 3ab9a0de0534c260fec251c9e76e54cf5989d507 -Author: Christian Persch -Date: Mon Jan 3 19:36:07 2005 +0000 - - Add type for flags. - - 2005-01-03 Christian Persch - - * lib/ephy-state.c: (ephy_state_window_flags_get_type): - * lib/ephy-state.h: - - Add type for flags. - - ChangeLog | 7 +++++++ - lib/ephy-state.c | 22 ++++++++++++++++++++++ - lib/ephy-state.h | 12 ++++++++---- - 3 files changed, 37 insertions(+), 4 deletions(-) - -commit c7eaafa8fa678b1908b629495fb263dca7b76751 -Author: Christian Persch -Date: Mon Jan 3 19:29:08 2005 +0000 - - Add type for flags. - - 2005-01-03 Christian Persch - - * embed/ephy-embed-persist.c: (ephy_embed_persist_flags_get_type): - * embed/ephy-embed-persist.h: - - Add type for flags. - - ChangeLog | 7 +++++++ - embed/ephy-embed-persist.c | 23 +++++++++++++++++++++++ - embed/ephy-embed-persist.h | 6 +++++- - 3 files changed, 35 insertions(+), 1 deletion(-) - -commit 82a6f3e75f4e46be84fc3d650918badc8e1563a1 -Author: Crispin Flowerday -Date: Mon Jan 3 19:27:04 2005 +0000 - - Prefix class structs with '_' so that the python code generator finds it. - - 2005-01-03 Crispin Flowerday - - * lib/ephy-dialog.c: - * lib/ephy-dialog.h: Prefix class structs with '_' - so that the python code generator finds it. - - ChangeLog | 6 ++++++ - lib/ephy-dialog.c | 2 +- - lib/ephy-dialog.h | 10 +++++----- - 3 files changed, 12 insertions(+), 6 deletions(-) - -commit 93497400220851d93705a0340dbff5d8d45d176f -Author: Crispin Flowerday -Date: Mon Jan 3 19:22:58 2005 +0000 - - Ensure that flags and enums start with 'Ephy' - - 2005-01-03 Crispin Flowerday - - * embed/ephy-embed-event.c: - * embed/ephy-embed-event.h: - * embed/ephy-embed-persist.c: (ephy_embed_persist_set_flags): - * embed/ephy-embed-persist.h: - * embed/ephy-embed.c: (ephy_embed_base_init), - (ephy_embed_get_security_level), - (ephy_embed_print_preview_navigate): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/mozilla-embed-event.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-tab.c: (ephy_tab_address_expire_get_type), - (ephy_tab_navigation_flags_get_type), (ephy_tab_document_type_cb), - (update_net_state_message), (build_progress_from_requests), - (ephy_tab_net_state_cb), (ephy_tab_dom_mouse_click_cb), - (ephy_tab_security_change_cb), (ephy_tab_update_navigation_flags), - (ephy_tab_set_location), (ephy_tab_set_security_level): - * src/ephy-tab.h: - * src/ephy-window.c: (sync_tab_document_type), - (sync_tab_navigation), (sync_tab_security), (sync_tab_zoom), - (update_popups_tooltips), (show_embed_popup), - (ephy_window_class_init): - * src/popup-commands.c: (popup_cmd_copy_link_address): - - Ensure that flags and enums start with 'Ephy' - - ChangeLog | 32 ++++++++++++++++++++++++++ - embed/ephy-embed-event.c | 2 +- - embed/ephy-embed-event.h | 6 ++--- - embed/ephy-embed-persist.c | 18 +++++++-------- - embed/ephy-embed-persist.h | 6 ++--- - embed/ephy-embed.c | 10 ++++----- - embed/ephy-embed.h | 26 ++++++++++----------- - embed/mozilla/EphyBrowser.cpp | 4 ++-- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/MozDownload.cpp | 4 ++-- - embed/mozilla/mozilla-embed-event.cpp | 4 ++-- - embed/mozilla/mozilla-embed-persist.cpp | 4 ++-- - embed/mozilla/mozilla-embed.cpp | 16 ++++++------- - src/ephy-tab.c | 40 ++++++++++++++++----------------- - src/ephy-tab.h | 12 +++++----- - src/ephy-window.c | 14 ++++++------ - src/popup-commands.c | 2 +- - 18 files changed, 118 insertions(+), 86 deletions(-) - -commit 569106975500d16750f6bf9dcfd716c4e898f891 -Author: Christian Persch -Date: Mon Jan 3 18:43:33 2005 +0000 - - Use new enum and flags types. - - 2005-01-03 Christian Persch - - * src/ephy-tab.c: (ephy_tab_get_property), (ephy_tab_class_init): - - Use new enum and flags types. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 19 ++++++++----------- - 2 files changed, 14 insertions(+), 11 deletions(-) - -commit 8665558111a7e4bc439818a8fc1c34c81bac7da4 -Author: Christian Persch -Date: Mon Jan 3 18:30:35 2005 +0000 - - Add type for flags. - - 2005-01-03 Christian Persch - - * lib/egg/egg-toolbars-model.c: - (egg_toolbars_model_flags_get_type): - * lib/egg/egg-toolbars-model.h: - - Add type for flags. - - ChangeLog | 8 ++++++++ - lib/egg/egg-toolbars-model.c | 24 ++++++++++++++++++++++++ - lib/egg/egg-toolbars-model.h | 3 +++ - 3 files changed, 35 insertions(+) - -commit b369515aba539de144a26529515fdcbeb1b7e07d -Author: Crispin Flowerday -Date: Mon Jan 3 18:28:50 2005 +0000 - - Add some more types for enums and flags - - 2005-01-03 Crispin Flowerday - - * src/ephy-shell.c: (ephy_shell_error_get_type), - (ephy_shell_startup_flags_get_type), (ephy_new_tab_flags_get_type): - * src/ephy-shell.h: - * src/ephy-tab.c: (ephy_tab_address_expire_get_type), - (ephy_tab_navigation_flags_get_type): - * src/ephy-tab.h: - - Add some more types for enums and flags - - ChangeLog | 11 +++++++ - src/ephy-shell.c | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-shell.h | 10 +++++++ - src/ephy-tab.c | 38 ++++++++++++++++++++++++ - src/ephy-tab.h | 7 +++++ - 5 files changed, 156 insertions(+) - -commit a27574b5576a9ee8cbbd83ad361290c7d0bc9704 -Author: Christian Persch -Date: Mon Jan 3 18:19:10 2005 +0000 - - Make ephy-encodings.h not public anymore. - - 2005-01-03 Christian Persch - - * embed/Makefile.am: - - Make ephy-encodings.h not public anymore. - - ChangeLog | 6 ++++++ - embed/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 78c98f4f1bd781a6d83f91a37b3ed0c457d19457 -Author: Christian Persch -Date: Mon Jan 3 18:15:25 2005 +0000 - - Another enum type. - - 2005-01-03 Christian Persch - - * embed/ephy-permission-manager.c: (ephy_permission_get_type): - * embed/ephy-permission-manager.h: - - Another enum type. - - * lib/ephy-marshal.list: - - Remove unused marshal. - - * src/ephy-tab.c: (ephy_tab_class_init): - - Use enum for security level type. - - ChangeLog | 15 +++++++++++++++ - embed/ephy-permission-manager.c | 21 +++++++++++++++++++++ - embed/ephy-permission-manager.h | 3 +++ - lib/ephy-marshal.list | 1 - - src/ephy-tab.c | 11 +++++------ - 5 files changed, 44 insertions(+), 7 deletions(-) - -commit c4b9c39ec588430681b25d52a1cd5f57dab716d4 -Author: Christian Persch -Date: Mon Jan 3 18:07:19 2005 +0000 - - Add types for some enums and flags. - - 2005-01-03 Christian Persch - - * embed/ephy-embed-event.c: (ephy_embed_event_context_get_type), - (ephy_embed_event_type_get_type): - * embed/ephy-embed-event.h: - * embed/ephy-embed.c: (ephy_embed_net_state_get_type), - (ephy_embed_ppv_navigation_get_type), - (ephy_embed_security_level_get_type), (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - * lib/ephy-marshal.list: - * src/ephy-tab.c: (update_net_state_message), - (build_progress_from_requests), (ephy_tab_net_state_cb): - - Add types for some enums and flags. - - ChangeLog | 16 ++++++++ - embed/ephy-embed-event.c | 48 ++++++++++++++++++++++++ - embed/ephy-embed-event.h | 15 ++++++-- - embed/ephy-embed.c | 83 +++++++++++++++++++++++++++++++++++++++-- - embed/ephy-embed.h | 15 ++++++-- - embed/mozilla/mozilla-embed.cpp | 6 +-- - lib/ephy-marshal.list | 1 + - src/ephy-tab.c | 10 +++-- - 8 files changed, 176 insertions(+), 18 deletions(-) - -commit 3c97a9bf4a384a76c51e4684b2d9a02266cf458f -Author: Adam Hooper -Date: Mon Jan 3 17:44:35 2005 +0000 - - Change Cl_ear History to Clear _History - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 61e3a5c5501f9d0789fcd9565fd934e84e6262dc -Author: Christian Persch -Date: Mon Jan 3 17:12:31 2005 +0000 - - Add loader directory to the .pc file. - - 2005-01-03 Christian Persch - - * data/epiphany-1.6.pc.in: - - Add loader directory to the .pc file. - - * src/ephy-extensions-manager.c: (sanitise_type), - (get_loader_for_type), (ephy_extensions_manager_finalize): - - Load new loaders with the sblib loader. - - ChangeLog | 11 ++++++++++ - data/epiphany-1.6.pc.in | 1 + - src/Makefile.am | 1 + - src/ephy-extensions-manager.c | 49 +++++++++++++++++++++++++++++++++++++++++-- - 4 files changed, 60 insertions(+), 2 deletions(-) - -commit 9361618f18ff024b4913e2a6987920d510b8499d -Author: Christian Persch -Date: Mon Jan 3 15:08:58 2005 +0000 - - Remove ephy_window_print(). - - 2005-01-03 Christian Persch - - * src/ephy-window.h: - - Remove ephy_window_print(). - - * embed/ephy-encodings.h: - - Remove unused enum. - - ChangeLog | 10 ++++++++++ - embed/ephy-encodings.h | 23 ----------------------- - src/ephy-window.h | 2 -- - 3 files changed, 10 insertions(+), 25 deletions(-) - -commit 51771ef681764279addf76485d3bfa037306281e -Author: Adam Hooper -Date: Sun Jan 2 17:33:50 2005 +0000 - - Change C_lear to Cl_ear. Fixes bug #162706. - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 25b25468e0c11a1e2434aa2d5c8e994d509aba0f -Author: Miloslav Trmac -Date: Sun Jan 2 14:15:27 2005 +0000 - - Updated Czech translation. - - 2005-01-02 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 261 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 151 insertions(+), 114 deletions(-) - -commit 8999f2e890891e4286f501d2076716d523c7d169 -Author: Crispin Flowerday -Date: Sat Jan 1 21:32:57 2005 +0000 - - Add an "add-sidebar" signal on the EphyEmbedSingle interface, it gets - - 2005-01-01 Crispin Flowerday - - * embed/ephy-embed-single.c: (ephy_embed_single_iface_init): - * embed/ephy-embed-single.h: - * embed/mozilla/EphySidebar.cpp: - * embed/mozilla/EphySidebar.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - - Add an "add-sidebar" signal on the EphyEmbedSingle interface, - it gets emitted when a user clicks on a link that wants - to add a url to the sidebar. - - ChangeLog | 13 +++ - embed/ephy-embed-single.c | 20 ++++ - embed/ephy-embed-single.h | 5 + - embed/mozilla/EphySidebar.cpp | 181 ++++++++++++++++++++++++++++++++ - embed/mozilla/EphySidebar.h | 53 ++++++++++ - embed/mozilla/Makefile.am | 3 + - embed/mozilla/MozRegisterComponents.cpp | 23 ++++ - 7 files changed, 298 insertions(+) - -commit 478e8b73f9a7302f0c30aaa685fc3104b99d7480 -Author: Christian Persch -Date: Sat Jan 1 20:54:18 2005 +0000 - - We don't need to implement nsIBrowserHistory. - - 2005-01-01 Christian Persch - - * configure.ac: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GlobalHistory.h: - - We don't need to implement nsIBrowserHistory. - - ChangeLog | 8 +++++ - configure.ac | 38 --------------------- - embed/mozilla/GlobalHistory.cpp | 76 +---------------------------------------- - embed/mozilla/GlobalHistory.h | 4 +-- - 4 files changed, 10 insertions(+), 116 deletions(-) - -commit d8ef21e4e64809d0c244c6b68701505807620569 -Author: Christian Persch -Date: Sat Jan 1 19:51:39 2005 +0000 - - Grab focus on the active tab before removing a tab. Fixes bug #119461. - - 2005-01-01 Christian Persch - - * src/ephy-notebook.c: (close_button_clicked_cb), - (build_tab_label): - * src/ephy-tab.c: (ephy_tab_grab_focus), (ephy_tab_class_init): - - Grab focus on the active tab before removing a tab. Fixes bug #119461. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 12 ++++++++++++ - src/ephy-tab.c | 9 +++++++++ - 3 files changed, 29 insertions(+) - -commit 2a64029e3b463d91bde19fc14e53c34a81d4a1c9 -Author: Christian Persch -Date: Fri Dec 31 21:56:33 2004 +0000 - - Update copyright notice - - src/window-commands.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2c39c7bbf944814a80e7494bf8029391ce97a5b2 -Author: Christian Persch -Date: Fri Dec 31 21:51:20 2004 +0000 - - Set selection mode to BROWSE. Fixes bug #162331. - - 2004-12-31 Christian Persch - - * src/bookmarks/ephy-topics-selector.c: (ephy_topics_selector_constructor): - - Set selection mode to BROWSE. Fixes bug #162331. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topics-selector.c | 6 ++++++ - 2 files changed, 12 insertions(+) - -commit a18faef3c2f38b27d866586926ef7f437dafb6a7 -Author: Christian Persch -Date: Fri Dec 31 21:43:16 2004 +0000 - - Update - - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 1 file changed, 2 insertions(+) - -commit 34c5e8ff0832886205484355caa01d3c1931107f -Author: Christian Persch -Date: Fri Dec 31 21:43:04 2004 +0000 - - Save a strdup. - - 2004-12-31 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (delete_topic_dialog_construct): - - Save a strdup. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 8 ++------ - 2 files changed, 8 insertions(+), 6 deletions(-) - -commit 040b546a6e265a82700b4659dfec221c38c7d40e -Author: Christian Persch -Date: Fri Dec 31 21:39:45 2004 +0000 - - Use approximate_digit_width, and use a smaller number of chars. From bug - - 2004-12-31 Christian Persch - - * src/ephy-notebook.c: (tab_label_style_set_cb): - - Use approximate_digit_width, and use a smaller number of chars. - From bug #153725. - - ChangeLog | 7 +++++++ - src/ephy-notebook.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 0a1d99faa339cf89c80b156305688ee4901578bb -Author: Christian Persch -Date: Fri Dec 31 21:35:21 2004 +0000 - - Fix compilation in the !HAVE_MOZILLA_PSM case. - - 2004-12-31 Christian Persch - - * embed/mozilla/EphyBrowser.h: - - Fix compilation in the !HAVE_MOZILLA_PSM case. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.h | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 603f7e2f4471384f40680b12a91d48ed1d299c9c -Author: Marcel Telka -Date: Fri Dec 31 16:46:23 2004 +0000 - - Updated Slovak translation. - - 2004-12-31 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 +++ - po/sk.po | 112 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 70 insertions(+), 46 deletions(-) - -commit 24a4be7f189e8b6eb558e5bda3a9fc4c427155fd -Author: Christian Persch -Date: Fri Dec 31 16:10:42 2004 +0000 - - Fix ChangeLog - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9b8959a4de1dc5eacdf807ae6d311defce4fad51 -Author: Christian Persch -Date: Fri Dec 31 16:09:40 2004 +0000 - - Move mime permission checks to ephy-file-helpers. - - 2004-12-31 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_finalize), - (ephy_embed_shell_get_encodings): - * embed/ephy-embed-shell.h: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * lib/ephy-file-helpers.c: (ephy_file_helpers_shutdown), - (ephy_file_delete_on_exit), (load_mime_from_xml), - (ephy_file_check_mime): - * lib/ephy-file-helpers.h: - - Move mime permission checks to ephy-file-helpers. - - * src/popup-commands.c: (image_open_uri), - (save_source_completed_cb), (popup_cmd_open_image): - - Only open the image if its mime type is 'safe'. - - ChangeLog | 19 ++++++++ - embed/ephy-embed-shell.c | 94 +------------------------------------- - embed/ephy-embed-shell.h | 22 +++------ - embed/mozilla/ContentHandler.cpp | 5 ++- - embed/mozilla/ContentHandler.h | 2 +- - lib/ephy-file-helpers.c | 97 ++++++++++++++++++++++++++++++++++++++++ - lib/ephy-file-helpers.h | 11 +++++ - src/popup-commands.c | 20 ++++++--- - 8 files changed, 152 insertions(+), 118 deletions(-) - -commit ddf12994065314b103f57969640845d7344974f2 -Author: Christian Persch -Date: Fri Dec 31 14:59:14 2004 +0000 - - Make "Open Image" open the image in the default application. Fixes bug - - 2004-12-31 Christian Persch - - * src/popup-commands.c: (image_open_uri), - (save_source_completed_cb), (save_temp_source), - (popup_cmd_open_image): - - Make "Open Image" open the image in the default application. - Fixes bug #138396. - - ChangeLog | 9 +++++ - src/popup-commands.c | 112 +++++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 118 insertions(+), 3 deletions(-) - -commit 16ce1b8ba8df14c4afa53113384197e8a95d5bb8 -Author: Christian Persch -Date: Fri Dec 31 13:57:13 2004 +0000 - - Add translator's comments to contextualised strings. - - 2004-12-31 Christian Persch - - * embed/downloader-view.c: (progress_cell_data_func): - * embed/ephy-encodings.c: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): - * src/prefs-dialog.c: (get_name_for_lang_code): - - Add translator's comments to contextualised strings. - - ChangeLog | 9 +++++++++ - embed/downloader-view.c | 6 ++++++ - embed/ephy-encodings.c | 20 ++++++++++++++++++++ - src/bookmarks/ephy-bookmarks.c | 12 +++++++++--- - src/prefs-dialog.c | 10 ++++++++-- - 5 files changed, 52 insertions(+), 5 deletions(-) - -commit e832fe15f66ebacd3e624bc93c7ef8111f061829 -Author: Christian Persch -Date: Fri Dec 31 13:40:46 2004 +0000 - - R data/conspiracy.xhtml: R data/epiphany.html: R - - 2004-12-31 Christian Persch - - * data/Makefile.am: - R data/conspiracy.xhtml: - R data/epiphany.html: - R embed/mozilla/EphyAboutRedirector.cpp: - R embed/mozilla/EphyAboutRedirector.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - - Remove about: redirections. - - ChangeLog | 12 ++++ - data/Makefile.am | 2 +- - data/conspiracy.xhtml | 62 ----------------- - data/epiphany.html | 1 - - embed/mozilla/EphyAboutRedirector.cpp | 115 -------------------------------- - embed/mozilla/EphyAboutRedirector.h | 75 --------------------- - embed/mozilla/Makefile.am | 2 - - embed/mozilla/MozRegisterComponents.cpp | 20 ------ - 8 files changed, 13 insertions(+), 276 deletions(-) - -commit 1a020228feaff5cb89eae4ffa212ad94277fada2 -Author: Christian Persch -Date: Thu Dec 30 17:51:41 2004 +0000 - - Use gnome_vfs_url_show() for Send To, not ephy_embed_load_url() which - - 2004-12-30 Christian Persch - - * src/window-commands.c: (window_cmd_file_send_to): - - Use gnome_vfs_url_show() for Send To, not ephy_embed_load_url() which - shows that annoying confirmation dialogue. Fixes bug #162532. - - ChangeLog | 7 +++++++ - src/window-commands.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit c8cbfe359be5649b3c387c6e42730ecebbdb6129 -Author: Vincent van Adrighem -Date: Wed Dec 29 21:48:43 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-12-29 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 770 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 438 insertions(+), 336 deletions(-) - -commit c42524ba531885e4dd8fd0c090029e67718293be -Author: Christian Perschristian Persch -Date: Tue Dec 28 16:47:32 2004 +0000 - - Free the gconf value. Thanks to jfr for noticing this. - - 2004-12-28 Christian Perschristian Persch - - * src/ephy-extensions-manager.c: (sync_loaded_extensions): - - Free the gconf value. Thanks to jfr for noticing this. - - ChangeLog | 6 ++++++ - src/ephy-extensions-manager.c | 4 ++++ - 2 files changed, 10 insertions(+) - -commit 30fe50516754f0a9922e8c1a8d26a1f15651ad26 -Author: Marcel Telka -Date: Tue Dec 28 00:01:04 2004 +0000 - - Updated Slovak translation. - - 2004-12-28 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 290 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 167 insertions(+), 127 deletions(-) - -commit ab744e506c97ce91eb189daafe5abd1a87b9be0f -Author: Žygimantas Beručka -Date: Mon Dec 27 18:12:25 2004 +0000 - - Updated Lithuanian translation. - - 2004-12-27 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 667 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 384 insertions(+), 287 deletions(-) - -commit aa260a9aa734c92a9cfc189af565a07377d563b6 -Author: Kjartan Maraas -Date: Mon Dec 27 11:35:49 2004 +0000 - - Update - - 2004-12-27 Kjartan Maraas - - * nb.po: Update - - 2004-12-27 Miloslav Trmac - - po/ChangeLog | 4 + - po/nb.po | 1685 +++++++++++++++++++++++--------------------- - po/no.po | 2197 +++++++++++++++++++++++++++++++--------------------------- - 3 files changed, 2058 insertions(+), 1828 deletions(-) - -commit cf9f7290885b364fc03bd80980c68776e4e4189b -Author: Miloslav Trmac -Date: Mon Dec 27 00:52:25 2004 +0000 - - Updated Czech translation. - - 2004-12-27 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 205 ++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 138 insertions(+), 71 deletions(-) - -commit c627a579e87cc3d5e25bf7a3d67d007ec0d6079b -Author: Christian Perschristian Persch -Date: Sun Dec 26 20:40:38 2004 +0000 - - Use stock buttons. - - 2004-12-26 Christian Perschristian Persch - - * data/glade/prefs-dialog.glade: - - Use stock buttons. - - ChangeLog | 6 + - data/glade/prefs-dialog.glade | 264 ++---------------------------------------- - 2 files changed, 14 insertions(+), 256 deletions(-) - -commit ef133a334140cc293c6eb313675e8298744de5a1 -Author: Christian Persch -Date: Sun Dec 26 19:31:50 2004 +0000 - - Don't destroy the dialogue with the parent, since that makes gtk+ go - - 2004-12-26 Christian Persch - - * embed/mozilla/FilePicker.cpp: - - Don't destroy the dialogue with the parent, since that makes - gtk+ go crazy. Fixes bug #156816. - - ChangeLog | 7 +++++++ - embed/mozilla/FilePicker.cpp | 1 + - 2 files changed, 8 insertions(+) - -commit 8347d576372c908c748b227020fe46acbe16ca22 -Author: Christian Persch -Date: Sun Dec 26 19:31:00 2004 +0000 - - Updated - - doc/reference/tmpl/ephy-embed.sgml | 8 ++- - doc/reference/tmpl/ephy-glade.sgml | 13 ---- - doc/reference/tmpl/ephy-node-db.sgml | 101 ------------------------------ - doc/reference/tmpl/epiphany-unused.sgml | 106 ++++++++++++++++++++++++++++++++ - 4 files changed, 112 insertions(+), 116 deletions(-) - -commit 4dce734b677faa887732d009bb03eb2ffce8ce82 -Author: Francisco Javier F. Serrador -Date: Sun Dec 26 19:16:17 2004 +0000 - - Updated Spanish translation. - - 2004-12-26 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 922 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 514 insertions(+), 412 deletions(-) - -commit 221e3f7b74e1d362a3e8d90c8fc05ec3592b20c9 -Author: Adam Weinberger -Date: Sun Dec 26 08:27:57 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 587 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 329 insertions(+), 262 deletions(-) - -commit 490d923c81ec7fb222ca4d57bc799f72d461e496 -Author: Christian Persch -Date: Sat Dec 25 16:43:22 2004 +0000 - - Add context to ambiguous strings. Fixes bug #113932. - - 2004-12-25 Christian Persch - - * embed/ephy-encodings.c: (ephy_encodings_init): - * lib/ephy-langs.c: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): - * src/ephy-window.c: (show_embed_popup), (tab_context_menu_cb), - (ephy_window_set_active_tab): - * src/prefs-dialog.c: (create_fonts_language_menu): - - Add context to ambiguous strings. Fixes bug #113932. - - ChangeLog | 11 +++++++++++ - embed/ephy-encodings.c | 24 +++++++++++++----------- - lib/ephy-langs.c | 34 +++++++++++++++++----------------- - src/bookmarks/ephy-bookmarks.c | 9 ++++++--- - src/prefs-dialog.c | 2 +- - 5 files changed, 48 insertions(+), 32 deletions(-) - -commit 84862972eb6111ae08fd740680a3bdc2e028a696 -Author: Miloslav Trmac -Date: Sat Dec 25 15:00:01 2004 +0000 - - Updated Czech translation. - - 2004-12-25 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 488 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 250 insertions(+), 242 deletions(-) - -commit 3fb4e4db0026102a716b60c3ea3ed78a87820376 -Author: Christian Persch -Date: Fri Dec 24 18:44:19 2004 +0000 - - Remove tons of unused marshals. - - 2004-12-24 Christian Persch - - * lib/ephy-marshal.list: - - Remove tons of unused marshals. - - * src/ephy-link.c: (ephy_link_base_init): - - Fix marshaler to match actual signal signature. - - ChangeLog | 10 ++++++++++ - lib/ephy-marshal.list | 7 +------ - src/ephy-link.c | 2 +- - 3 files changed, 12 insertions(+), 7 deletions(-) - -commit 90d8eb2d9f1e0d77e7f5f673c8872e23eda52378 -Author: Leonid Kanter -Date: Fri Dec 24 14:43:57 2004 +0000 - - Updated Russian translation - - po/ChangeLog | 4 + - po/ru.po | 2103 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1127 insertions(+), 980 deletions(-) - -commit 57975a3760911acf0e7153d2955ad1640f110df6 -Author: Christian Persch -Date: Fri Dec 24 13:49:33 2004 +0000 - - Remove obsolete ephy_window_load_in_tabs() and use generic link opening - - 2004-12-24 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_get_type), - (notebook_drag_data_received_cb): - * src/ephy-window.c: (open_link_cb), (ephy_window_init), - (ephy_window_set_zoom): - * src/ephy-window.h: - - Remove obsolete ephy_window_load_in_tabs() and use generic - link opening framework instead. - - ChangeLog | 11 +++++++++ - src/ephy-notebook.c | 53 +++++++++++++++++++++++++++++--------------- - src/ephy-window.c | 64 ++++++++++++++--------------------------------------- - src/ephy-window.h | 4 ---- - 4 files changed, 63 insertions(+), 69 deletions(-) - -commit acfb18598072007d69bf4eaca299737542904dfe -Author: Marcel Telka -Date: Fri Dec 24 12:39:20 2004 +0000 - - Updated Slovak translation. - - 2004-12-24 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 413 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 216 insertions(+), 201 deletions(-) - -commit 0843d1c9c9398765dba7816b08c815502c5530fe -Author: Christian Persch -Date: Fri Dec 24 01:03:49 2004 +0000 - - Open the bookmarks in the new tabs in the same order as they are in the - - 2004-12-24 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (append_bookmarks_menu), - (open_in_tabs_activate_cb): - - Open the bookmarks in the new tabs in the same order as they - are in the menu, not in some random order. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-topic-action.c | 22 +++++++++++++++------- - 2 files changed, 23 insertions(+), 7 deletions(-) - -commit d127ec47856ee69466b909af12e5f1020a12cb15 -Author: Christian Persch -Date: Fri Dec 24 00:21:16 2004 +0000 - - A src/ephy-home-action.c: (ephy_home_action_activate), - - 2004-12-24 Christian Persch - - * lib/ephy-marshal.list: - * src/Makefile.am: - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_get_type), (create_tool_item), - (open_in_tab_activate_cb), (open_in_window_activate_cb), - (activate_cb), (connect_proxy), (ephy_bookmark_action_class_init): - * src/bookmarks/ephy-bookmark-action.h: - * src/bookmarks/ephy-bookmarks-menu.c: - (ephy_bookmarks_menu_get_type), (add_action_for_bookmark), - (ephy_bookmarks_menu_class_init): - * src/bookmarks/ephy-bookmarks-menu.h: - * src/bookmarks/ephy-bookmarksbar.c: (ephy_bookmarksbar_get_type), - (ephy_bookmarksbar_action_request): - * src/bookmarks/ephy-favorites-menu.c: - (ephy_favorites_menu_get_type), (ephy_favorites_menu_rebuild): - * src/bookmarks/ephy-favorites-menu.h: - * src/bookmarks/ephy-topic-action.c: (ephy_topic_action_get_type), - (menu_activate_cb), (open_in_tabs_activate_cb), - (ephy_topic_action_class_init): - * src/bookmarks/ephy-topic-action.h: - A src/ephy-home-action.c: (ephy_home_action_activate), - (ephy_home_action_class_init), (ephy_home_action_get_type): - A src/ephy-home-action.h: - A src/ephy-link-action.c: (ephy_link_action_get_type): - A src/ephy-link-action.h: - A src/ephy-link.c: (ephy_link_flags_get_type), - (ephy_link_base_init), (ephy_link_get_type), (ephy_link_open): - A src/ephy-link.h: - * src/ephy-location-action.c: (ephy_location_action_get_type), - (action_activated_cb), (location_url_activate_cb), (connect_proxy), - (disconnect_proxy), (ephy_location_action_class_init): - * src/ephy-location-action.h: - * src/ephy-navigation-action.c: (ephy_navigation_action_get_type), - (activate_back_or_forward_menu_item_cb), - (activate_up_menu_item_cb), (build_back_or_forward_menu), - (build_up_menu): - * src/ephy-navigation-action.h: - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-window.c: (setup_ui_manager), (open_link_cb), - (ephy_window_init): - * src/toolbar.c: (toolbar_get_type), (toolbar_setup_actions): - * src/window-commands.c: - * src/window-commands.h: - - Consolidate link opening in one place by introducing an EphyLink interface - which bookmarks, topics, navigation, location, home, toolbars, bookmarks menu - and favourites menu implement, forwarding the link opening to the window. - - ChangeLog | 50 +++++++++++++++ - lib/egg/egg-toolbars-model.h | 3 +- - lib/ephy-marshal.list | 4 +- - src/Makefile.am | 120 ++++++++++++++++++----------------- - src/bookmarks/ephy-bookmark-action.c | 89 ++++++++++---------------- - src/bookmarks/ephy-bookmark-action.h | 40 ++++++------ - src/bookmarks/ephy-bookmarks-menu.c | 59 ++++------------- - src/bookmarks/ephy-bookmarks-menu.h | 8 +-- - src/bookmarks/ephy-bookmarksbar.c | 67 ++++--------------- - src/bookmarks/ephy-favorites-menu.c | 26 +++++--- - src/bookmarks/ephy-favorites-menu.h | 6 +- - src/bookmarks/ephy-topic-action.c | 98 ++++++++-------------------- - src/bookmarks/ephy-topic-action.h | 25 +++----- - src/ephy-home-action.c | 78 +++++++++++++++++++++++ - src/ephy-home-action.h | 52 +++++++++++++++ - src/ephy-link-action.c | 61 ++++++++++++++++++ - src/ephy-link-action.h | 52 +++++++++++++++ - src/ephy-link.c | 119 ++++++++++++++++++++++++++++++++++ - src/ephy-link.h | 71 +++++++++++++++++++++ - src/ephy-location-action.c | 38 +++-------- - src/ephy-location-action.h | 12 ++-- - src/ephy-navigation-action.c | 22 ++++--- - src/ephy-navigation-action.h | 17 +++-- - src/ephy-shell.c | 3 + - src/ephy-window.c | 97 +++++++++++++++++++--------- - src/toolbar.c | 77 ++++++++++++++-------- - src/window-commands.c | 20 ------ - src/window-commands.h | 3 - - 28 files changed, 849 insertions(+), 468 deletions(-) - -commit 93079ee8ea5a7a2e89d4842c9c4cad71724a99f4 -Author: Christian Persch -Date: Thu Dec 23 23:03:08 2004 +0000 - - EphyEmbedChrome is flags, not enum. - - 2004-12-24 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_base_init): - * lib/ephy-marshal.list: - - EphyEmbedChrome is flags, not enum. - - ChangeLog | 7 +++++++ - embed/ephy-embed.c | 2 +- - lib/ephy-marshal.list | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit ae406f215282f65b7179ffbbe94eb1ce69768099 -Author: Christian Persch -Date: Thu Dec 23 15:46:58 2004 +0000 - - A lib/ephy-signal-accumulator.c: (ephy_signal_accumulator_object): A - - 2004-12-23 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - * lib/Makefile.am: - * lib/ephy-marshal.list: - A lib/ephy-signal-accumulator.c: (ephy_signal_accumulator_object): - A lib/ephy-signal-accumulator.h: - * src/ephy-tab.c: (ephy_tab_new_window_cb): - - Fix new_window signal. - - ChangeLog | 13 +++++++++++ - embed/ephy-embed.c | 18 +++++++-------- - embed/ephy-embed.h | 5 ++--- - embed/mozilla/mozilla-embed.cpp | 8 ++++--- - lib/Makefile.am | 2 ++ - lib/ephy-marshal.list | 1 + - lib/ephy-signal-accumulator.c | 50 +++++++++++++++++++++++++++++++++++++++++ - lib/ephy-signal-accumulator.h | 36 +++++++++++++++++++++++++++++ - src/ephy-tab.c | 11 ++++----- - 9 files changed, 124 insertions(+), 20 deletions(-) - -commit 98224f1760350ef3dfe6d8062d2c0627c02eb150 -Author: Adam Weinberger -Date: Thu Dec 23 02:29:46 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 53 ++++++++++++++++++++++++++++++++++++++++------------- - 2 files changed, 44 insertions(+), 13 deletions(-) - -commit cbb988d6b112d7d6bf2a49247cf89d3fefd04b2f -Author: Žygimantas Beručka -Date: Wed Dec 22 20:33:22 2004 +0000 - - Updated Lithuanian translation. - - 2004-12-22 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 669 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 341 insertions(+), 332 deletions(-) - -commit ec11ff1e9af30d3e60a72e43f255cbf0241f28cd -Author: Alexander Shopov -Date: Wed Dec 22 16:13:15 2004 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2004-12-22 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 1692 +++++++++++++++++++++++----------------------------------- - 2 files changed, 667 insertions(+), 1030 deletions(-) - -commit c52164cfd516dfb16f5a01fafb5c7e6cff62efcb -Author: Vincent van Adrighem -Date: Tue Dec 21 20:36:48 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-12-21 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 1406 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 724 insertions(+), 686 deletions(-) - -commit 30d3622481ddf6a0d10a465dfe1ef4951a738a23 -Author: Christian Persch -Date: Tue Dec 21 18:47:56 2004 +0000 - - Add comment for translators - - embed/downloader-view.c | 1 + - 1 file changed, 1 insertion(+) - -commit 6745408309d7a2996fb84f8df972445c156a15bc -Author: Leonid Kanter -Date: Tue Dec 21 11:23:25 2004 +0000 - - Updated Russian translation - - po/ChangeLog | 4 + - po/ru.po | 1185 +++++++++++++++++++--------------------------------------- - 2 files changed, 398 insertions(+), 791 deletions(-) - -commit 4ff5e5c965234dd06ce8e1c9954ff91fdccc7e5e -Author: Updated ja.po. T.Aihana -Date: Tue Dec 21 02:41:06 2004 +0000 - - 2004-12-21 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 1419 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 731 insertions(+), 692 deletions(-) - -commit 9dcea0d487e1e8ec63f463d8cf3fca126d1c4c9f -Author: Christian Persch -Date: Mon Dec 20 18:32:10 2004 +0000 - - Forgot to commit this - - lib/ephy-dialog.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 591ed3c87cba07b28fe91eec0fd6bb5d3d9d2ec8 -Author: Christian Persch -Date: Mon Dec 20 18:30:14 2004 +0000 - - Don't crash if trying to get the document type before the widget is - - 2004-12-20 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Don't crash if trying to get the document type before the widget - is realised. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 2 ++ - 2 files changed, 9 insertions(+) - -commit 4d16d48d1b151abe8d3afc2e01afab76177d0095 -Author: Christian Persch -Date: Mon Dec 20 18:10:36 2004 +0000 - - Post-release version bump. - - 2004-12-20 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit ae9e8880271c3ae7af9dfbc4eb007cf02892b0ce -Author: Adam Weinberger -Date: Mon Dec 20 14:22:26 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 24 +++++++++++++++++------- - 2 files changed, 21 insertions(+), 7 deletions(-) - -commit 58e7e6745ee73bb69b3de60dfec57bd03c91f129 -Author: Christian Persch -Date: Mon Dec 20 14:21:02 2004 +0000 - - === Release 1.5.3 === - - 2004-12-20 Christian Persch - - === Release 1.5.3 === - - * data/Makefile.am: - * doc/reference/tmpl/ephy-embed.sgml: - * doc/reference/tmpl/ephy-tab.sgml: - - ChangeLog | 8 ++++++++ - data/Makefile.am | 1 + - doc/reference/tmpl/ephy-embed.sgml | 11 +++++++++++ - doc/reference/tmpl/ephy-tab.sgml | 5 +++++ - 4 files changed, 25 insertions(+) - -commit 9ee8116914da8ac15c8a1042c4c19c99847123fa -Author: Christian Persch -Date: Mon Dec 20 13:12:20 2004 +0000 - - Update - - NEWS | 1 + - 1 file changed, 1 insertion(+) - -commit 41faee026cf286802847ed449860fdad91b17d13 -Author: Christian Persch -Date: Mon Dec 20 13:06:44 2004 +0000 - - Fix untranslated string. Fixes bug #161739. - - 2004-12-20 Christian Persch - - * embed/downloader-view.c: (update_download_row): - - Fix untranslated string. Fixes bug #161739. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 44d1914de33c38fb0f60e7088dc91491a1010d71 -Author: Christian Persch -Date: Mon Dec 20 12:51:44 2004 +0000 - - Really make the configure check for -Wdeclaration-after-statement work. - - 2004-12-20 Christian Persch - - * configure.ac: - - Really make the configure check for -Wdeclaration-after-statement work. - - ChangeLog | 6 ++++++ - configure.ac | 3 +++ - 2 files changed, 9 insertions(+) - -commit 9f0e94e176bea8b847b802b75d56403bce712b4c -Author: Marcel Telka -Date: Mon Dec 20 12:48:16 2004 +0000 - - Updated Slovak translation. - - 2004-12-20 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 599 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 294 insertions(+), 309 deletions(-) - -commit b9c5eefd544fcc163d9b9a930926b2c4cd4b4a38 -Author: Adam Weinberger -Date: Sun Dec 19 23:48:42 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 623 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 293 insertions(+), 334 deletions(-) - -commit 0bdcb680f4ac4f256ef1c539d4b05ace36349582 -Author: Christian Persch -Date: Sun Dec 19 23:10:20 2004 +0000 - - Updated for version 1.5.3. - - 2004-12-20 Christian Persch - - * configure.ac: - - Updated for version 1.5.3. - - ChangeLog | 6 ++++++ - configure.ac | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit d5515524d3c3b0c5b641a214bf119ec986606bb3 -Author: Christian Persch -Date: Sun Dec 19 21:02:58 2004 +0000 - - Update for 1.5.3 - - NEWS | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 68 insertions(+) - -commit a7f9fcd9572ee1649a2af23b531dbcebd7c36538 -Author: Christian Persch -Date: Sun Dec 19 18:11:10 2004 +0000 - - Fix a mem leak, and update copyright notice. - - 2004-12-19 Christian Persch - - * lib/ephy-langs.c: (ephy_langs_append_languages), - (load_iso_entries): - * lib/ephy-langs.h: - - Fix a mem leak, and update copyright notice. - - ChangeLog | 8 ++++++++ - lib/ephy-langs.c | 22 ++-------------------- - lib/ephy-langs.h | 2 +- - 3 files changed, 11 insertions(+), 21 deletions(-) - -commit a050d6bc3f0d4f73499cc7a995e154428ca08702 -Author: Christian Persch -Date: Sun Dec 19 16:54:46 2004 +0000 - - Remove inline help. Fixes bug #137603. - - 2004-12-19 Christian Persch - - * lib/egg/egg-toolbar-editor.c: (setup_editor): - - Remove inline help. Fixes bug #137603. - - ChangeLog | 6 ++++++ - lib/egg/egg-toolbar-editor.c | 17 ----------------- - 2 files changed, 6 insertions(+), 17 deletions(-) - -commit d67465faa4318f7d774ef2d41d78c04f4caae264 -Author: Christian Persch -Date: Sun Dec 19 15:15:47 2004 +0000 - - Add "View Properties" to duplicated bookmarks dialogue. Fixes bug #117643 - - 2004-12-19 Christian Persch - - * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct), - (duplicate_bookmark_response_cb), (duplicated_node_destroy_cb), - (ephy_new_bookmark_is_unique): - - Add "View Properties" to duplicated bookmarks dialogue. Fixes bug #117643 - and bug #138300. - - ChangeLog | 9 +++++++ - src/bookmarks/ephy-new-bookmark.c | 53 ++++++++++++++++++++++++++++----------- - 2 files changed, 47 insertions(+), 15 deletions(-) - -commit 528fd1a0f78826908618b98644012c33c9a1674e -Author: Christian Persch -Date: Sun Dec 19 14:40:21 2004 +0000 - - Fix crash, thanks to Crispin for noticing this. - - 2004-12-19 Christian Persch - - * embed/mozilla/MozRegisterComponents.cpp: - - Fix crash, thanks to Crispin for noticing this. - - ChangeLog | 6 ++++++ - embed/mozilla/MozRegisterComponents.cpp | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit f33d345bf985d35b9a997d95cbf197af959479b1 -Author: Christian Persch -Date: Sun Dec 19 14:19:03 2004 +0000 - - Correct code for "Afrikaans". - - 2004-12-19 Christian Persch - - * src/prefs-dialog.c: - - Correct code for "Afrikaans". - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 21a7df79be3e72b67f3f202da4995843dcd047ba -Author: Christian Persch -Date: Sun Dec 19 13:43:21 2004 +0000 - - Try to fix the build. - - 2004-12-19 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/FilePicker.cpp: - - Try to fix the build. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 6 +++--- - embed/mozilla/FilePicker.cpp | 1 - - 3 files changed, 10 insertions(+), 4 deletions(-) - -commit c04b54c0ee70c594e440c039cddb22551be05809 -Author: Christian Persch -Date: Sun Dec 19 13:26:37 2004 +0000 - - Fix the build. - - 2004-12-19 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_base_init): - * src/ephy-window.c: - - Fix the build. - - ChangeLog | 7 +++++++ - embed/ephy-embed.c | 2 +- - src/ephy-window.c | 14 -------------- - 3 files changed, 8 insertions(+), 15 deletions(-) - -commit 3560966d1492dc788eb089116c1d077043176b1e -Author: Christian Persch -Date: Sun Dec 19 13:21:32 2004 +0000 - - Check for -Wdeclaration-after-statement, it's not universally available. - - 2004-12-19 Christian Persch - - * configure.ac: - - Check for -Wdeclaration-after-statement, it's not universally available. - - ChangeLog | 6 ++++++ - configure.ac | 27 ++++++++++++++++++++++++++- - 2 files changed, 32 insertions(+), 1 deletion(-) - -commit 86853c6e1768fc5e6aa86454f60d4a4b976ee290 -Author: Christian Persch -Date: Sun Dec 19 13:06:35 2004 +0000 - - Fix a mem leak - - embed/mozilla/MozRegisterComponents.cpp | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - -commit c9d52a9e07b37eba315d0ad4b41172a8369ba8d5 -Author: Christian Persch -Date: Sun Dec 19 13:03:22 2004 +0000 - - Fix my name - - lib/ephy-langs.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 4c8cb67438d342bb8f9579cb9e3b80eb4fc86cd2 -Author: Miloslav Trmac -Date: Sun Dec 19 12:06:41 2004 +0000 - - Updated Czech translation. - - 2004-12-19 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 1252 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 641 insertions(+), 615 deletions(-) - -commit 84f65901dc8c489683433402293aac2a062e0aa1 -Author: Christian Persch -Date: Sun Dec 19 11:00:50 2004 +0000 - - Remove stray g_print - - lib/ephy-gui.c | 2 +- - lib/ephy-node-filter.c | 2 +- - src/ephy-tab.c | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -commit a2f961edc8727333836550c7923886c4b7f24897 -Author: Christian Persch -Date: Sun Dec 19 00:10:38 2004 +0000 - - Mozilla API change. - - 2004-12-19 Christian Persch - - * configure.ac: - * embed/mozilla/MozDownload.cpp: - - Mozilla API change. - - ChangeLog | 7 +++++++ - configure.ac | 20 ++++++++++++++++++-- - embed/mozilla/MozDownload.cpp | 16 ++++++++++++++++ - 3 files changed, 41 insertions(+), 2 deletions(-) - -commit 323baedeb83c11c4640b77f4ce96b192eeb3c3f7 -Author: Christian Persch -Date: Sat Dec 18 22:16:40 2004 +0000 - - Don't show multiple toolbar editors for the same window. Part of bug - - 2004-12-18 Christian Persch - - * src/window-commands.c: (toolbar_editor_destroy_cb), - (window_cmd_edit_toolbar): - - Don't show multiple toolbar editors for the same window. - Part of bug #111114. - - ChangeLog | 8 ++++++++ - src/window-commands.c | 20 +++++++++++++++----- - 2 files changed, 23 insertions(+), 5 deletions(-) - -commit fb964a82fd2244d91b6303853d3a49ec338b94cc -Author: Christian Persch -Date: Sat Dec 18 21:51:48 2004 +0000 - - Make sure we don't have any app-modal dialogues. Fixes bug #110479. - - 2004-12-18 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * lib/ephy-file-chooser.c: (ephy_file_chooser_new): - * lib/ephy-gui.c: (ephy_gui_ensure_window_group), - (ephy_gui_confirm_overwrite_file): - * lib/ephy-gui.h: - * src/bookmarks/ephy-bookmarks-editor.c: - (delete_topic_dialog_construct), (ephy_bookmarks_editor_construct): - * src/ephy-window.c: (ephy_window_init): - * src/pdm-dialog.c: (show_cookies_properties): - - Make sure we don't have any app-modal dialogues. Fixes bug #110479. - - ChangeLog | 18 +++++++++ - embed/mozilla/ContentHandler.cpp | 6 +++ - embed/mozilla/FilePicker.cpp | 7 ++++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 11 ++++- - embed/mozilla/GtkNSSDialogs.cpp | 67 ++++++++++++++++++++++--------- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 14 +++++-- - lib/ephy-file-chooser.c | 4 +- - lib/ephy-gui.c | 27 ++++++++++++- - lib/ephy-gui.h | 2 + - src/bookmarks/ephy-bookmarks-editor.c | 25 ++---------- - src/ephy-window.c | 6 +-- - src/pdm-dialog.c | 9 +++-- - 12 files changed, 142 insertions(+), 54 deletions(-) - -commit 419bf3af0979b9d9c0bc04e0e8c02ad68bcd4dd6 -Author: Christian Persch -Date: Sat Dec 18 21:46:35 2004 +0000 - - Disable Zoom items for images, and disable zoom, encoding and view source - - 2004-12-18 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_chrome_get_type), - (ephy_embed_document_type_get_type), (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-tab.c: (ephy_tab_set_property), (ephy_tab_get_property), - (ephy_tab_class_init), (ephy_tab_get_document_type), - (ephy_tab_document_type_cb), (ephy_tab_init): - * src/ephy-tab.h: - * src/ephy-window.c: (sync_tab_document_type), (sync_tab_zoom), - (ephy_window_set_active_tab): - * src/toolbar.c: (toolbar_update_zoom): - * src/toolbar.h: - - Disable Zoom items for images, and disable zoom, encoding and view source - for images and xml (xul) documents. Fixes bug #132240. - - lib/ephy-marshal.list | 1 + - 1 file changed, 1 insertion(+) - -commit eae3fc20b75aba36fead5def75d974062fc12507 -Author: Christian Persch -Date: Sat Dec 18 21:02:55 2004 +0000 - - Disable Print and Print Preview while still loading the page. Fixes bug - - 2004-12-18 Christian Persch - - * src/ephy-window.c: (update_print_actions), - (update_actions_sensitivity), (sync_tab_load_status): - - Disable Print and Print Preview while still loading the page. - Fixes bug #116344. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 40 +++++++++++++++++++++++++++------------- - 2 files changed, 35 insertions(+), 13 deletions(-) - -commit 0a389e07241775316dfb866341a1a3c9f6b8a441 -Author: Christian Persch -Date: Sat Dec 18 19:40:08 2004 +0000 - - Disable Zoom items for images, and disable zoom, encoding and view source - - 2004-12-18 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_chrome_get_type), - (ephy_embed_document_type_get_type), (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-tab.c: (ephy_tab_set_property), (ephy_tab_get_property), - (ephy_tab_class_init), (ephy_tab_get_document_type), - (ephy_tab_document_type_cb), (ephy_tab_init): - * src/ephy-tab.h: - * src/ephy-window.c: (sync_tab_document_type), (sync_tab_zoom), - (ephy_window_set_active_tab): - * src/toolbar.c: (toolbar_update_zoom): - * src/toolbar.h: - - Disable Zoom items for images, and disable zoom, encoding and view source - for images and xml (xul) documents. Fixes bug #132240. - - ChangeLog | 20 +++++++++++++++ - embed/ephy-embed.c | 49 +++++++++++++++++++++++++++++++++---- - embed/ephy-embed.h | 13 ++++++++++ - embed/mozilla/EphyBrowser.cpp | 33 +++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 2 ++ - embed/mozilla/mozilla-embed.cpp | 7 ++++++ - src/ephy-tab.c | 48 ++++++++++++++++++++++++++++++++++++ - src/ephy-tab.h | 2 ++ - src/ephy-window.c | 54 +++++++++++++++++++++++++++++++++++++---- - src/toolbar.c | 8 ++++-- - src/toolbar.h | 1 + - 11 files changed, 225 insertions(+), 12 deletions(-) - -commit 29604a8fa8cf16a2b0e55ff6f8b9d10e57dd9be5 -Author: Francisco Javier F. Serrador -Date: Sat Dec 18 13:08:29 2004 +0000 - - Updated Spanish translation. - - 2004-12-18 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 8 + - po/es.po | 1020 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 549 insertions(+), 479 deletions(-) - -commit 1dbacb5d25b19ce1997657baea165d4d62f5b7c2 -Author: Marcel Telka -Date: Sat Dec 18 08:00:06 2004 +0000 - - Updated Slovak translation. - - 2004-12-18 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++++ - po/sk.po | 64 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 38 insertions(+), 30 deletions(-) - -commit 11300ebe261bb9fc83b95b5f3b94e9c6cc588ceb -Author: Adam Weinberger -Date: Sat Dec 18 01:23:43 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 +++ - po/en_CA.po | 110 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 61 insertions(+), 53 deletions(-) - -commit e29c799473dc8edf629c92b27c0a8d1c18ce8035 -Author: Christian Persch -Date: Fri Dec 17 21:49:55 2004 +0000 - - Fix email links by prepending mailto: before calling gnome_vfs_url_show(). - - 2004-12-17 Christian Persch - - * src/ephy-main.c: (handle_email): - - Fix email links by prepending mailto: before - calling gnome_vfs_url_show(). - - ChangeLog | 7 +++++++ - src/ephy-main.c | 6 +++++- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 13c8b7335b1aacf79bb4f1e735f6b88bd8dd6e08 -Author: Adam Hooper -Date: Fri Dec 17 20:02:42 2004 +0000 - - Use gtk_show_about_dialog(), and handle urls and mailto. - - ChangeLog | 8 ++++++++ - src/ephy-main.c | 23 +++++++++++++++++++++++ - src/ephy-shell.c | 2 +- - src/window-commands.c | 46 ++++++++++++---------------------------------- - 4 files changed, 44 insertions(+), 35 deletions(-) - -commit 9bf71295e9a4e5cdfe9dc4380343616c49b161c6 -Author: Adam Hooper -Date: Fri Dec 17 18:03:35 2004 +0000 - - Add attach_tab and detach_tab functions to extension interface (bug - #153732). Thanks to Crispin for almost all of the code. - - ChangeLog | 15 ++++++++ - src/ephy-extension.c | 34 ++++++++++++++++-- - src/ephy-extension.h | 14 ++++++++ - src/ephy-extensions-manager.c | 83 +++++++++++++++++++++++++++++++++++++++++-- - src/ephy-window.c | 10 ++++++ - 5 files changed, 152 insertions(+), 4 deletions(-) - -commit c5b4d13e2e64dd3e28de75b17f6a436f339d5dc2 -Author: Christian Persch -Date: Fri Dec 17 13:40:19 2004 +0000 - - Fix name for "gd" language (Scots Gaelic). Fixes bug #161509. - - 2004-12-17 Christian Persch - - * src/prefs-dialog.c: - - Fix name for "gd" language (Scots Gaelic). Fixes bug #161509. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 02866b345342ac0e2691fa9498b4c4b150369fc1 -Author: Laurent Dhima -Date: Fri Dec 17 12:36:04 2004 +0000 - - Updated Albanian translation. - - 2004-12-17 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 1409 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 743 insertions(+), 670 deletions(-) - -commit 89148a72e731b68328f10dacf1ab405a4808169c -Author: Žygimantas Beručka -Date: Fri Dec 17 04:10:34 2004 +0000 - - Updated Lithuanian translation. - - 2004-12-17 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 768 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 403 insertions(+), 369 deletions(-) - -commit b6ffed04a138926af3293e1a8b8a1d1330726678 -Author: Baris Cicek -Date: Fri Dec 17 03:19:42 2004 +0000 - - Fixed typo in Turkish Translation fixed bug #161308 - - 2004-12-17 Baris Cicek - - * tr.po: Fixed typo in Turkish Translation - fixed bug #161308 - - po/ChangeLog | 5 + - po/tr.po | 1766 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 947 insertions(+), 824 deletions(-) - -commit 1fa3646aef3c3bb7ff3a95f8d5f5be05d5c3abc6 -Author: Marcel Telka -Date: Thu Dec 16 21:05:32 2004 +0000 - - Updated Slovak translation. - - 2004-12-16 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 424 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 213 insertions(+), 215 deletions(-) - -commit fb9a15960ab8001fa51ecb794afda2738e8de4b0 -Author: Christian Persch -Date: Thu Dec 16 20:52:58 2004 +0000 - - Implement context menu on tray icon, as per HIG. Fixes bug #152903. - - 2004-12-16 Christian Persch - - * embed/downloader-view.c: (show_downloader_cb), - (status_icon_popup_menu_cb), (show_status_icon): - * lib/egg/eggstatusicon.c: (egg_status_icon_class_init), - (egg_status_icon_init), (egg_status_icon_finalize), - (emit_activate_signal), (emit_popup_menu_signal), - (egg_status_icon_size_allocate), (egg_status_icon_button_press), - (egg_status_icon_set_tooltip): - * lib/egg/eggstatusicon.h: - * lib/ephy-gui.c: (ephy_gui_menu_position_under_widget), - (ephy_gui_menu_position_on_panel): - * lib/ephy-gui.h: - - Implement context menu on tray icon, as per HIG. Fixes bug #152903. - - ChangeLog | 16 +++++++++++++ - embed/downloader-view.c | 36 +++++++++++++++++++++++++--- - lib/egg/eggstatusicon.c | 63 +++++++++++++++++++++++++------------------------ - lib/egg/eggstatusicon.h | 7 +++--- - lib/ephy-gui.c | 42 +++++++++++++++++++++++++++++---- - lib/ephy-gui.h | 6 +++++ - 6 files changed, 129 insertions(+), 41 deletions(-) - -commit 7e75b259439311d98f52fbdd5f1f5e8df47f1a7f -Author: Christian Persch -Date: Thu Dec 16 20:09:33 2004 +0000 - - Add stock icon to the "Clear" button. - - 2004-12-16 Christian Persch - - * src/ephy-history-window.c: (confirmation_dialog_construct): - - Add stock icon to the "Clear" button. - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 11 ++++++++--- - 2 files changed, 14 insertions(+), 3 deletions(-) - -commit 91088b896a39629ee4c938c3e124ad260257213a -Author: Christian Persch -Date: Thu Dec 16 20:02:35 2004 +0000 - - Check the encodings before we set the mozilla pref. From bug #150266. - - 2004-12-16 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-notifiers.h: - - Check the encodings before we set the mozilla pref. From bug #150266. - - ChangeLog | 7 +++ - embed/mozilla/mozilla-notifiers.cpp | 89 ++++++++++++++++++++++++++++--------- - embed/mozilla/mozilla-notifiers.h | 13 +++--- - 3 files changed, 83 insertions(+), 26 deletions(-) - -commit 73a6332c7811065e2d5af1fb100ebe30439f0e00 -Author: Adam Weinberger -Date: Thu Dec 16 15:55:14 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 65 +++++++++++++++++++++++++++++++++++++++++++++--------------- - 2 files changed, 53 insertions(+), 16 deletions(-) - -commit 9c3d47f0455cc19b849135c67eaec88a922978f4 -Author: Christian Persch -Date: Thu Dec 16 15:43:09 2004 +0000 - - Quote app name. - - 2004-12-16 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Quote app name. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit c1d15c1d82e1784531f8bf775dcf3ceef167eae6 -Author: Christian Persch -Date: Thu Dec 16 14:26:14 2004 +0000 - - Disable search. Fixes bug #157157. - - 2004-12-16 Christian Persch - - * embed/downloader-view.c: (downloader_view_build_ui): - - Disable search. Fixes bug #157157. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 2b06b8d92fd6c6ec334264a5c5cf8f8480e58498 -Author: Christian Persch -Date: Thu Dec 16 14:24:27 2004 +0000 - - Small improvement. - - 2004-12-16 Christian Persch - - * lib/widgets/ephy-location-entry.c: (entry_populate_popup_cb): - - Small improvement. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 3 +-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 1c9c069ecfed2c100d07984c287a18b71338fa14 -Author: Christian Persch -Date: Thu Dec 16 14:08:00 2004 +0000 - - Added lib/widgets/ephy-location-entry.c. - - 2004-12-16 Christian Persch - - * POTFILES.in: Added lib/widgets/ephy-location-entry.c. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit 12c97512ebb1dbabf8be16945d50213162c3ddfa -Author: Christian Persch -Date: Thu Dec 16 14:07:16 2004 +0000 - - Move Clear after Select All. - - 2004-12-16 Christian Persch - - * lib/widgets/ephy-location-entry.c: (entry_populate_popup_cb): - - Move Clear after Select All. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 31 ++++++++++++++++++++----------- - 2 files changed, 26 insertions(+), 11 deletions(-) - -commit c9c56355eace2bb4589d151c97599625582f42d4 -Author: Christian Persch -Date: Thu Dec 16 13:55:33 2004 +0000 - - Add app name to primary text, too. Fixes bug #141327. - - 2004-12-16 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Add app name to primary text, too. Fixes bug #141327. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 863bbb4f3e67cafad1f08d7bc08362b6df2785bd -Author: Christian Persch -Date: Thu Dec 16 13:41:10 2004 +0000 - - Removed - - embed/mozilla/mozilla-version.h | 60 ----------------------------------------- - 1 file changed, 60 deletions(-) - -commit 046e8b96bc77f0adfed67ed7f111a9e6002913f9 -Author: Christian Persch -Date: Thu Dec 16 13:30:21 2004 +0000 - - Add "Clear" to entry context menu. Fixes bug #118395. - - 2004-12-16 Christian Persch - - * lib/widgets/ephy-location-entry.c: (entry_clear_activate_cb), - (entry_populate_popup_cb), - (ephy_location_entry_construct_contents): - - Add "Clear" to entry context menu. Fixes bug #118395. - - ChangeLog | 8 +++++++ - lib/widgets/ephy-location-entry.c | 48 +++++++++++++++++++++++++++++++++++++++ - 2 files changed, 56 insertions(+) - -commit 37f5375bc8c2d18dfe776332d0206806f672d81b -Author: Christian Persch -Date: Thu Dec 16 13:19:51 2004 +0000 - - Add stock icon to "Save As..." button. - - 2004-12-16 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Add stock icon to "Save As..." button. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 13 ++++++++++--- - 2 files changed, 16 insertions(+), 3 deletions(-) - -commit 2d80c1635d0deafaae46a0237f2d76f76b5ed265 -Author: Christian Persch -Date: Thu Dec 16 13:06:31 2004 +0000 - - Tell the user with which application we're going to open the content. - - 2004-12-16 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Tell the user with which application we're going to open the content. - Fixes bug #141327. - - ChangeLog | 7 +++++ - embed/mozilla/ContentHandler.cpp | 58 ++++++++++++++++++++++------------------ - 2 files changed, 39 insertions(+), 26 deletions(-) - -commit 763386d357847f92e95b62497b1cb3707d36c695 -Author: Adam Weinberger -Date: Tue Dec 14 23:57:19 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 671 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 330 insertions(+), 345 deletions(-) - -commit 3c3ef4e9159bf8646a9d498617ffc0d4c2ab7f7c -Author: Christian Persch -Date: Tue Dec 14 18:24:17 2004 +0000 - - Remove a duplicated lang code. - - 2004-12-14 Christian Persch - - * src/prefs-dialog.c: - - Remove a duplicated lang code. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit f3ec5713110e12290e98b4841f8d3234e042cd30 -Author: Christian Persch -Date: Tue Dec 14 15:23:14 2004 +0000 - - Use alignments instead of empty labels for alignment. - - 2004-12-14 Christian Persch - - * data/glade/certificate-dialogs.glade: - * data/glade/epiphany.glade: - * data/glade/prefs-dialog.glade: - * data/glade/print.glade: - - Use alignments instead of empty labels for alignment. - - * src/prefs-dialog.c: (prefs_dialog_init): - - Remove a size group, it's not needed anymore. - - ChangeLog | 13 + - data/glade/certificate-dialogs.glade | 286 ++++---- - data/glade/epiphany.glade | 138 ++-- - data/glade/prefs-dialog.glade | 1250 +++++++++++++++------------------- - data/glade/print.glade | 378 ++++------ - src/prefs-dialog.c | 7 +- - 6 files changed, 951 insertions(+), 1121 deletions(-) - -commit 7d5d898452ba6e5c7689541d9ac35d93203cee7f -Author: Marcel Telka -Date: Mon Dec 13 22:19:48 2004 +0000 - - Updated Slovak translation. - - 2004-12-13 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 314 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 171 insertions(+), 147 deletions(-) - -commit bf4e5152d8a4a34e238878eac89b90864fed4026 -Author: Miloslav Trmac -Date: Mon Dec 13 21:48:57 2004 +0000 - - Updated Czech translation. - - 2004-12-13 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++++ - po/cs.po | 49 +++++++++++++++++++++++++++++++++++++------------ - 2 files changed, 41 insertions(+), 12 deletions(-) - -commit c3e9180f55b217abe2f3e695fc386b1f7799fcb1 -Author: David Lodge -Date: Mon Dec 13 20:38:36 2004 +0000 - - Updated British translation. - - 2004-12-13 David Lodge - - * en_GB.po: Updated British translation. - - po/ChangeLog | 4 + - po/en_GB.po | 1200 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 623 insertions(+), 581 deletions(-) - -commit 37f3c27cbfd23c7d06efbfcdcc11f46ae92485a9 -Author: Martin Willemoes Hansen -Date: Mon Dec 13 20:19:22 2004 +0000 - - Updated Danish translation. - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 ++++ - po/da.po | 50 ++++++++++++++++++++++++++++++-------------------- - 2 files changed, 34 insertions(+), 20 deletions(-) - -commit b8a28413061981a7db2495a1c5a4cca334b9f0d5 -Author: Martin Willemoes Hansen -Date: Mon Dec 13 20:12:27 2004 +0000 - - Updated Danish translation. - - * da.po: Updated Danish translation. - - po/da.po | 577 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 314 insertions(+), 263 deletions(-) - -commit f170a385e3e7e91c53b1790d3da2e3ddfeacd8c3 -Author: Christian Persch -Date: Mon Dec 13 19:43:18 2004 +0000 - - ChangeLog - - ChangeLog | 12 ++++++++++++ - 1 file changed, 12 insertions(+) - -commit cacc504b9a60460fc312220ba7461f23e196fd83 -Author: Christian Persch -Date: Mon Dec 13 19:04:01 2004 +0000 - - Prompt for bookmark update. - - 2004-12-13 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (update_bookmark_response_cb), - (update_bookmark_destroy_cb), (redirect_cb): - - Prompt for bookmark update. - - * src/prefs-dialog.c: (get_download_button_label): - - Use gtk domain for Home and Desktop strings to get the same - as the filechooser. - - src/bookmarks/ephy-bookmarks.c | 85 ++++++++++++++++++++++++++++++++++++------ - src/prefs-dialog.c | 18 ++++----- - 2 files changed, 81 insertions(+), 22 deletions(-) - -commit 08a1289e48356e9da66ca2a16afa8355d8929cf3 -Author: Christian Persch -Date: Mon Dec 13 19:00:24 2004 +0000 - - Make distcheck fix. - - 2004-12-13 Christian Persch - - * Makefile.am: - - Make distcheck fix. - - * lib/ephy-string.c: - * lib/ephy-string.h: - - Finally remove ephy_string_shorten(). - - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (ephy_bookmark_action_sync_label): - * src/bookmarks/ephy-bookmarks-menu.c: (connect_proxy_cb): - * src/bookmarks/ephy-favorites-menu.c: (connect_proxy_cb): - * src/bookmarks/ephy-topic-action.c: (create_tool_item), - (ephy_topic_action_sync_label), (append_bookmarks_menu), - (build_topics_menu): - * src/ephy-navigation-action.c: (new_history_menu_item): - - Use gtk_label_set_max_width_chars() and ellipsise the labels. - - src/bookmarks/ephy-bookmarks-menu.c | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -commit 39dad59354eb6d7093c9f95817b5278de9f19982 -Author: Christian Persch -Date: Mon Dec 13 18:58:58 2004 +0000 - - Get rid of ephy_string_[elide|double]_underscores(). Remove unnecessary - - 2004-12-13 Christian Persch - - * embed/ephy-encodings.c: (elide_underscores), (add_encoding): - * embed/mozilla/FilePicker.cpp: - * lib/ephy-dnd.c: - * lib/ephy-node.c: - * lib/ephy-string.c: (ephy_string_blank_chr): - * lib/ephy-string.h: - * lib/widgets/ephy-node-view.c: - * src/ephy-encoding-menu.c: - * src/ephy-notebook.c: - * src/ephy-session.c: - * src/ephy-statusbar.c: - * src/ephy-tab.c: (ephy_tab_set_title): - * src/ephy-tabs-menu.c: (connect_proxy_cb): - * src/ppview-toolbar.c: - - Get rid of ephy_string_[elide|double]_underscores(). - Remove unnecessary ephy-string.h includes. - - ChangeLog | 20 +++++++++++++ - embed/ephy-encodings.c | 32 +++++++++++++++++++-- - embed/mozilla/FilePicker.cpp | 1 - - lib/ephy-dnd.c | 1 - - lib/ephy-node.c | 1 - - lib/ephy-string.c | 67 -------------------------------------------- - lib/ephy-string.h | 4 --- - lib/widgets/ephy-node-view.c | 3 +- - src/ephy-encoding-menu.c | 1 - - src/ephy-notebook.c | 1 - - src/ephy-session.c | 1 - - src/ephy-statusbar.c | 1 - - src/ephy-tab.c | 8 ++---- - src/ephy-tabs-menu.c | 12 +++++--- - src/ppview-toolbar.c | 1 - - 15 files changed, 61 insertions(+), 93 deletions(-) - -commit 43955b584199f99428660d47bc2a7297ffdf763f -Author: Christian Persch -Date: Mon Dec 13 17:57:12 2004 +0000 - - Make distcheck fix. - - 2004-12-13 Christian Persch - - * Makefile.am: - - Make distcheck fix. - - * lib/ephy-string.c: - * lib/ephy-string.h: - - Finally remove ephy_string_shorten(). - - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (ephy_bookmark_action_sync_label): - * src/bookmarks/ephy-bookmarks-menu.c: (connect_proxy_cb): - * src/bookmarks/ephy-favorites-menu.c: (connect_proxy_cb): - * src/bookmarks/ephy-topic-action.c: (create_tool_item), - (ephy_topic_action_sync_label), (append_bookmarks_menu), - (build_topics_menu): - * src/ephy-navigation-action.c: (new_history_menu_item): - - Use gtk_label_set_max_width_chars() and ellipsise the labels. - - ChangeLog | 22 +++++++++++++++++++++ - Makefile.am | 2 +- - lib/ephy-string.c | 37 ------------------------------------ - lib/ephy-string.h | 3 --- - src/bookmarks/ephy-bookmark-action.c | 27 ++++++++++---------------- - src/bookmarks/ephy-bookmarks-menu.c | 2 +- - src/bookmarks/ephy-favorites-menu.c | 2 +- - src/bookmarks/ephy-topic-action.c | 19 +++++++----------- - src/ephy-navigation-action.c | 17 +++++++++-------- - 9 files changed, 51 insertions(+), 80 deletions(-) - -commit f58beaee60ebf176074bcad300c5e7ac0e253694 -Author: Christian Persch -Date: Mon Dec 13 17:49:56 2004 +0000 - - Adapt PSM configure check for new header location in SDK. Up gtk+ - - 2004-12-13 Christian Persch - - * configure.ac: - - Adapt PSM configure check for new header location in SDK. - Up gtk+ dependency to 2.5.7. - - ChangeLog | 7 +++++ - configure.ac | 84 +++++++++++++++++++++++++++++++++++++++++++++--------------- - 2 files changed, 70 insertions(+), 21 deletions(-) - -commit e90232f3b3839f0f42431454346d217ac6890b97 -Author: Vincent van Adrighem -Date: Mon Dec 13 12:41:02 2004 +0000 - - Translation updated. - - 2004-12-13 Vincent van Adrighem - - * nl.po: Translation updated. - - po/ChangeLog | 4 + - po/nl.po | 798 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 442 insertions(+), 360 deletions(-) - -commit 6d2a96050d288eb71598774950e707f27e4cbe32 -Author: Christian Persch -Date: Sun Dec 12 22:19:32 2004 +0000 - - Back out the fix for bug #158466, it's wrong. - - 2004-12-12 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Back out the fix for bug #158466, it's wrong. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 3 +-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 583cb4f3d3c1102d50971984bae3c1a5ab1784be -Author: Adam Weinberger -Date: Sun Dec 12 07:31:35 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 29 +++++++++++++++++++++++++++-- - 2 files changed, 31 insertions(+), 2 deletions(-) - -commit b06256c2791759ac025291628411ce21b08ad174 -Author: Funda Wang -Date: Sat Dec 11 12:36:08 2004 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 + - po/zh_CN.po | 1693 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 900 insertions(+), 797 deletions(-) - -commit d9571283429ea3824ef276c223c5d2885cc34423 -Author: Alexander Shopov -Date: Fri Dec 10 07:38:20 2004 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2004-12-10 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 5 + - po/bg.po | 1574 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 829 insertions(+), 750 deletions(-) - -commit 6606add19f1588d2912104c96cbe803f461f78db -Author: Žygimantas Beručka -Date: Thu Dec 9 18:40:19 2004 +0000 - - Updated Lithuanian translation. - - 2004-12-09 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 ++ - po/lt.po | 228 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 131 insertions(+), 101 deletions(-) - -commit cf7fa3235b4b9a4604a2e873e40b231ae3ea0922 -Author: Adam Weinberger -Date: Wed Dec 8 02:59:27 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 224 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 129 insertions(+), 99 deletions(-) - -commit e4d67aca54e6d49ccd63d8fe8a5478824f1890e5 -Author: Marcel Telka -Date: Tue Dec 7 21:31:26 2004 +0000 - - Updated Slovak translation. - - 2004-12-07 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 256 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 145 insertions(+), 115 deletions(-) - -commit 42d1be7fa0fd41da71b274d1195b97a2e9bb02b1 -Author: Christian Persch -Date: Tue Dec 7 21:06:18 2004 +0000 - - Fix attribution in ChangeLog - - ChangeLog | 1 + - 1 file changed, 1 insertion(+) - -commit aba2ddeec17a6c294ba3a4ca048ea6b697c798c1 -Author: Miloslav Trmac -Date: Tue Dec 7 17:21:09 2004 +0000 - - Updated Czech translation. - - 2004-12-07 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 234 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 134 insertions(+), 104 deletions(-) - -commit 258fa23beaa5c6096dcd2081ccc5f3fa1e6e6f1e -Author: Christian Persch -Date: Mon Dec 6 23:00:08 2004 +0000 - - A data/epiphany-bookmarks-html.xsl: - - 2004-12-06 Christian Persch - - * configure.ac: - * data/Makefile.am: - A data/epiphany-bookmarks-html.xsl: - * data/ui/epiphany-bookmark-editor-ui.xml: - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_export), - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks-export.c: (write_rdf), - (ephy_bookmarks_export_rdf), (ephy_bookmarks_export_mozilla): - * src/bookmarks/ephy-bookmarks-export.h: - * src/ephy-main.c: (main): - - Add bookmarks export to bookmarks editor. Fixes bug #157745. - - ChangeLog | 15 ++++ - configure.ac | 3 + - data/Makefile.am | 4 + - data/epiphany-bookmarks-html.xsl | 77 ++++++++++++++++++ - data/ui/epiphany-bookmark-editor-ui.xml | 1 + - src/bookmarks/ephy-bookmarks-editor.c | 98 +++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks-export.c | 133 ++++++++++++++++++++++++++------ - src/bookmarks/ephy-bookmarks-export.h | 3 + - src/ephy-main.c | 1 + - 9 files changed, 310 insertions(+), 25 deletions(-) - -commit 7d41f0ac49c67d18ff6852f92f730c0929852790 -Author: Updated ja.po. T.Aihana -Date: Sat Dec 4 16:17:38 2004 +0000 - - 2004-12-05 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 1013 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 535 insertions(+), 482 deletions(-) - -commit d5865daa4e3433aaf160aff5258f16ff51a419b1 -Author: Christian Persch -Date: Sat Dec 4 11:15:54 2004 +0000 - - Fix typo. - - 2004-12-04 Christian Persch - - * embed/mozilla/Makefile.am: - - Fix typo. - - ChangeLog | 6 ++++++ - embed/mozilla/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit d44c00ab545b4c2a14177247dee70cd5738155c9 -Author: Christian Persch -Date: Sat Dec 4 10:58:31 2004 +0000 - - Deactivate the context menu on window close. Fixes bug #156812. - - 2004-12-04 Christian Persch - - * src/ephy-window.c: (ephy_window_destroy): - - Deactivate the context menu on window close. Fixes bug #156812. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 159c151dd5c79a425b6b3270f2867bde767cbe2a -Author: Christian Persch -Date: Fri Dec 3 15:56:48 2004 +0000 - - Don't offer to resume if there are open windows. Fixes bug #160345. - - 2004-12-03 Christian Persch - - * src/ephy-session.c: (ephy_session_autoresume): - - Don't offer to resume if there are open windows. - Fixes bug #160345. - - ChangeLog | 7 +++++++ - src/ephy-session.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit b517aebcc8201fbf5218a8b5b819ea8d146dc52d -Author: Žygimantas Beručka -Date: Fri Dec 3 05:49:08 2004 +0000 - - Updated Lithuanian translation. - - 2004-12-03 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 647 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 341 insertions(+), 310 deletions(-) - -commit 9fb990902b0b518f6a8a16ed2f34fc7087aefc3b -Author: Adam Weinberger -Date: Fri Dec 3 04:51:01 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 406 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 212 insertions(+), 198 deletions(-) - -commit 883bda8aada93c7bea4f39205f1747414389ea16 -Author: Christian Persch -Date: Fri Dec 3 01:22:55 2004 +0000 - - Use stock icon for "Open In New Tab". - - 2004-12-03 Christian Persch - - * src/ephy-history-window.c: - - Use stock icon for "Open In New Tab". - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 3840b3b24812e874eb83de028d6254a8307e0893 -Author: Christian Persch -Date: Fri Dec 3 01:20:20 2004 +0000 - - Use stock icon for "Open In New Tab". - - 2004-12-03 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - - Use stock icon for "Open In New Tab". - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 69c94bb85ee4c25ea545b872c7d81e34fd922a36 -Author: Christian Persch -Date: Thu Dec 2 16:14:15 2004 +0000 - - Don't use NS_LITERAL_CSTRING. - - 2004-12-02 Christian Persch - - * embed/mozilla/EphyHistoryListener.cpp: - - Don't use NS_LITERAL_CSTRING. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyHistoryListener.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 86e3f1670d56b62244ed99d73dc9490791402fd6 -Author: Christian Persch -Date: Thu Dec 2 15:32:57 2004 +0000 - - Remove FIXME comment - - embed/mozilla/EphyHistoryListener.cpp | 1 - - 1 file changed, 1 deletion(-) - -commit ff7bd3f6af7667231de441eb6849307367b26da3 -Author: Christian Persch -Date: Thu Dec 2 15:19:45 2004 +0000 - - Removed references to removed files. - - 2004-12-02 Christian Persch - - * doc/reference/Makefile.am: - - Removed references to removed files. - - ChangeLog | 24 ++++++++++++++++++++++++ - doc/reference/Makefile.am | 10 ---------- - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 3 files changed, 26 insertions(+), 10 deletions(-) - -commit 37cc7f0bb5f9e4e7257ff9b7106dd92467590d43 -Author: Christian Persch -Date: Thu Dec 2 15:16:41 2004 +0000 - - Update bookmarks from HTTP 301. Fixes bug #126312. - - 2004-12-02 Christian Persch - - * embed/ephy-history.c: (ephy_history_class_init): - * embed/ephy-history.h: - * embed/mozilla/EphyHistoryListener.cpp: - * embed/mozilla/EphyHistoryListener.h: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GlobalHistory.h: - * embed/mozilla/Makefile.am: - * src/bookmarks/ephy-bookmarks.c: (redirect_cb), - (ephy_setup_history_notifiers): - * src/ephy-window.c: (confirm_close_with_modified_forms), - (ensure_window_group), (ephy_window_init): - - Update bookmarks from HTTP 301. Fixes bug #126312. - - embed/ephy-history.c | 16 +++- - embed/ephy-history.h | 4 + - embed/mozilla/EphyHistoryListener.cpp | 172 ++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyHistoryListener.h | 51 ++++++++++ - embed/mozilla/EphyUtils.cpp | 16 +++- - embed/mozilla/EphyUtils.h | 12 ++- - embed/mozilla/GlobalHistory.cpp | 3 + - embed/mozilla/GlobalHistory.h | 6 ++ - embed/mozilla/Makefile.am | 2 + - src/bookmarks/ephy-bookmarks.c | 25 +++++ - src/ephy-window.c | 27 ++++-- - 11 files changed, 316 insertions(+), 18 deletions(-) - -commit 2f0a4969602af118edfcb2959d422b7c03e022b0 -Author: Christian Persch -Date: Thu Dec 2 12:24:27 2004 +0000 - - Downgrade automake requirement to 1.8. - - 2004-12-02 Christian Persch - - * doc/reference/Makefile.am: - - Downgrade automake requirement to 1.8. - - ChangeLog | 6 ++++++ - doc/reference/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit de9580a84fb32dac5c5bcb93ea601e1364a400d1 -Author: Miloslav Trmac -Date: Wed Dec 1 18:49:52 2004 +0000 - - Updated Czech translation. - - 2004-12-01 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 399 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 210 insertions(+), 193 deletions(-) - -commit c45dadafdfbab32b43b037400e4373b690e571b6 -Author: Christian Persch -Date: Wed Dec 1 18:04:55 2004 +0000 - - Shut up - - .cvsignore | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 4759edbaf17bf4c7b3fbd523fdd2f6bb70c5f6c2 -Author: Christian Persch -Date: Wed Dec 1 17:55:38 2004 +0000 - - If the gconf key doesn't exist, or has the wrong value type, set it to - - 2004-12-01 Christian Persch - - * src/ephy-extensions-manager.c: (sync_loaded_extensions): - - If the gconf key doesn't exist, or has the wrong value type, - set it to ["extensions-manager-ui"] to ensure the extensions manager - UI is loaded if it's installed. - - ChangeLog | 8 ++++++++ - src/ephy-extensions-manager.c | 27 +++++++++++++++++++++++++-- - 2 files changed, 33 insertions(+), 2 deletions(-) - -commit dbdc93016ca22fc58bf4ee71ba6c55002a256c4a -Author: Christian Persch -Date: Tue Nov 30 23:46:56 2004 +0000 - - *** empty log message *** - - ChangeLog | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 69de773032d150651f13a11dfdd5f71515021052 -Author: Christian Persch -Date: Tue Nov 30 23:45:47 2004 +0000 - - Remove cruft. - - 2004-12-01 Christian Persch - - * embed/mozilla/Makefile.am: - - Remove cruft. - - ChangeLog | 6 ++++++ - embed/mozilla/Makefile.am | 31 ------------------------------- - 2 files changed, 6 insertions(+), 31 deletions(-) - -commit cde1dbc2942cf146c01774b76ba0466e775ab761 -Author: Christian Persch -Date: Tue Nov 30 23:35:15 2004 +0000 - - Add deprecated defines to AM_CPPFLAGS in maintainer-mode. - - 2004-12-01 Christian Persch - - * configure.ac: - - Add deprecated defines to AM_CPPFLAGS in maintainer-mode. - - * doc/reference/Makefile.am: - * embed/Makefile.am: - * embed/mozilla/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - * lib/egg/eggintl.h: - * lib/widgets/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - INCLUDES is deprecated, use AM_CPPFLAGS and AM_CFLAGS instead. - - * lib/eel-gconf-extensions.c: (eel_gconf_client_get_global): - - Removed usage of deprecated gconf API. - - * src/ephy-main.c: (main): - - Removed usage of deprecated glade API. - - ChangeLog | 26 ++++++++ - configure.ac | 20 ++++-- - doc/reference/Makefile.am | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 2 + - embed/Makefile.am | 38 ++++++----- - embed/mozilla/Makefile.am | 128 +++++++++++++++++++++++-------------- - lib/Makefile.am | 19 +++--- - lib/eel-gconf-extensions.c | 13 +--- - lib/egg/Makefile.am | 65 ++++++++++--------- - lib/egg/eggintl.h | 2 +- - lib/widgets/Makefile.am | 23 ++++--- - src/Makefile.am | 56 ++++++++++------ - src/bookmarks/Makefile.am | 33 ++++------ - src/ephy-main.c | 2 - - 14 files changed, 253 insertions(+), 176 deletions(-) - -commit 65e5b595792b3ba941db3a1f77707946fe8810ed -Author: Marcel Telka -Date: Tue Nov 30 22:45:05 2004 +0000 - - Updated Slovak translation. - - 2004-11-30 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 374 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 196 insertions(+), 182 deletions(-) - -commit 16ca2908fbbd9fb78801f56f8c70b103dba036e9 -Author: Martin Willemoes Hansen -Date: Tue Nov 30 14:16:21 2004 +0000 - - Updated Danish translation. - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 ++++ - po/da.po | 43 ++++++++++++++++++++++--------------------- - 2 files changed, 26 insertions(+), 21 deletions(-) - -commit e647389b4ae6146a3be0c46f9e9222c7e171b725 -Author: Christian Persch -Date: Mon Nov 29 19:42:37 2004 +0000 - - Fix "Open Frame" menu item name. Fixes bug #153816. - - 2004-11-29 Christian Persch - - * src/ephy-window.c: - - Fix "Open Frame" menu item name. Fixes bug #153816. - - ChangeLog | 6 ++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - src/ephy-window.c | 4 ++-- - 3 files changed, 10 insertions(+), 2 deletions(-) - -commit 22fd2b41687138f62b1a4ea6069883f4551f4d8a -Author: Christian Persch -Date: Mon Nov 29 15:31:27 2004 +0000 - - Post-release version bunmp. - - 2004-11-29 Christian Persch - - * configure.ac: - - Post-release version bunmp. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit c4683bc396bac815c7695f4331122e744424aa5c -Author: Christian Persch -Date: Mon Nov 29 15:29:41 2004 +0000 - - === Release 1.5.2 === - - 2004-11-29 Christian Persch - - === Release 1.5.2 === - - ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit db41a7ebeab0d7fb214718a85106f75890afe031 -Author: Martin Willemoes Hansen -Date: Mon Nov 29 15:21:27 2004 +0000 - - Updated Danish translation. - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 1505 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 767 insertions(+), 742 deletions(-) - -commit eadb9859e30090caab1385e6597e5b30e4da3e34 -Author: Christian Persch -Date: Mon Nov 29 13:43:24 2004 +0000 - - Version 1.5.2. - - 2004-11-29 Christian Persch - - * NEWS: - * configure.ac: - * doc/reference/tmpl/ephy-embed.sgml: - * lib/ephy-file-chooser.c: (ephy_file_chooser_add_pattern_filter): - - Version 1.5.2. - - ChangeLog | 15 +++++++++++++++ - NEWS | 1 + - configure.ac | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 3 +++ - lib/ephy-file-chooser.c | 4 ---- - 5 files changed, 20 insertions(+), 5 deletions(-) - -commit 30c54e6d94dfbc079231da2bf29de2274703986c -Author: Francisco Javier F. Serrador -Date: Sun Nov 28 15:29:48 2004 +0000 - - Updated Spanish translation. - - 2004-11-28 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 672 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 353 insertions(+), 323 deletions(-) - -commit d603e36146d2bf98e8564ad11ac1fe2b24e24b47 -Author: Vincent Untz -Date: Sun Nov 28 13:23:34 2004 +0000 - - Fixes leak. - - 2004-11-28 Vincent Untz - - * src/bookmarks/ephy-bookmarksbar-model.c: (impl_get_item_id): - - Fixes leak. - - src/bookmarks/ephy-bookmarksbar-model.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit 82e9e16bda9398c1d0ddb27847c1fedd4d719cd9 -Author: Christian Persch -Date: Sat Nov 27 23:41:02 2004 +0000 - - Revert the earlier patch: don't emit tabs-reordered when the tab-added - - 2004-11-28 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_add_tab): - - Revert the earlier patch: don't emit tabs-reordered when - the tab-added signal handler reordered the tab, since - ephy_notebook_move_tab does it already. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 14 ++------------ - 2 files changed, 10 insertions(+), 12 deletions(-) - -commit 8b604fbce2f26cb80061bbedf6fdfa0e16e5ac04 -Author: Jordi Mallach -Date: Sat Nov 27 21:54:49 2004 +0000 - - Updated Catalan translation. - - po/ChangeLog | 4 + - po/ca.po | 1768 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 947 insertions(+), 825 deletions(-) - -commit 31e0bb87dc5de15587bf81696ca7d861ce5b9ea8 -Author: Christian Persch -Date: Sat Nov 27 21:53:23 2004 +0000 - - Add translator comments - - src/toolbar.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit c2b4a2366d806218971883b90089ffddd0270499 -Author: Christian Persch -Date: Sat Nov 27 21:44:33 2004 +0000 - - Better translator's comment - - src/ephy-window.c | 16 ++++++++++++++++ - 1 file changed, 16 insertions(+) - -commit dc0c44fdb50a75e1cad4dd06f1397c9922b7ac38 -Author: Marcel Telka -Date: Sat Nov 27 20:40:22 2004 +0000 - - Updated Slovak translation. - - 2004-11-27 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++ - po/sk.po | 171 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 87 insertions(+), 88 deletions(-) - -commit 7c19fe87b4d7f608c226c81174556517a6ada224 -Author: Christian Persch -Date: Sat Nov 27 19:32:20 2004 +0000 - - Updating NEWS - - NEWS | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 84 insertions(+) - -commit 6668bd17c458e3d2dcfe0fe0fab397a8eb225a0b -Author: Adam Weinberger -Date: Fri Nov 26 23:44:36 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 165 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 84 insertions(+), 85 deletions(-) - -commit 8bee94d4c69710a68d18bb8be170c48b129d1fdb -Author: Miloslav Trmac -Date: Fri Nov 26 14:44:12 2004 +0000 - - Updated Czech translation. - - 2004-11-26 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 172 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 89 insertions(+), 87 deletions(-) - -commit dc968d09d8326b397d473e7762773db7efcdeb5c -Author: Christian Persch -Date: Thu Nov 25 23:03:33 2004 +0000 - - Don't move the window, just show it. Fixes bug #158923. - - 2004-11-26 Christian Persch - - * src/ephy-shell.c: (ephy_shell_new_tab): - - Don't move the window, just show it. Fixes bug #158923. - - ChangeLog | 6 ++++++ - src/ephy-shell.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a494e90f6af12a433efa26f337a7cd415667dd9c -Author: Christian Persch -Date: Thu Nov 25 20:08:18 2004 +0000 - - Build auto-generated files in builddir, not in srcdir. - - 2004-11-25 Christian Persch - - * data/Makefile.am: - * lib/Makefile.am: - * lib/egg/Makefile.am: - - Build auto-generated files in builddir, not in srcdir. - - ChangeLog | 8 ++++++++ - data/Makefile.am | 1 - - lib/Makefile.am | 6 ++++-- - lib/egg/Makefile.am | 13 +++---------- - 4 files changed, 15 insertions(+), 13 deletions(-) - -commit e692c755dbce0092e8a012ec0555325934be5c78 -Author: Marco Pesenti Gritti -Date: Thu Nov 25 19:01:26 2004 +0000 - - reviewed by: Christian Persch - - 2004-11-25 Marco Pesenti Gritti - - reviewed by: Christian Persch - - * embed/Makefile.am: - * lib/widgets/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - Fix build out of src directory. - - * src/window-commands.c: (editor_open_uri), - (window_cmd_view_page_source): - - Rework the code to not use deprecated API. - - ChangeLog | 16 +++++++++++ - embed/Makefile.am | 1 + - lib/widgets/Makefile.am | 1 + - src/Makefile.am | 1 + - src/bookmarks/Makefile.am | 1 + - src/window-commands.c | 68 ++++++++--------------------------------------- - 6 files changed, 31 insertions(+), 57 deletions(-) - -commit e0b14f264936aa2b060abb8190d47e68fe265ba3 -Author: Christian Persch -Date: Thu Nov 25 14:45:12 2004 +0000 - - Fix compile in the !HAVE_ISO_CODES case. - - 2004-11-25 Christian Persch - - * src/prefs-dialog.c: (create_language_section): - - Fix compile in the !HAVE_ISO_CODES case. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 7ee1915ef8101e1cac5b9a2d5c858aac371d6367 -Author: Christian Persch -Date: Thu Nov 25 13:51:57 2004 +0000 - - Check for iso-codes package. - - 2004-11-25 Christian Persch - - * configure.ac: - - Check for iso-codes package. - - * data/glade/prefs-dialog.glade: - * lib/ephy-langs.c: (ephy_langs_bind_iso_domains), - (read_iso_639_entry), (read_iso_3166_entry), (load_iso_entries), - (ephy_langs_iso_639_table), (ephy_langs_iso_3166_table): - * lib/ephy-langs.h: - - Load language and locales list from iso-codes package, if available. - - * src/prefs-dialog.c: (prefs_dialog_finalize), - (add_lang_dialog_selection_changed), (add_lang_dialog_response_cb), - (get_name_for_lang_code), (add_system_language_entry), - (setup_add_language_dialog), (create_language_section): - - If the iso-codes package is available, use that to translate - language names and offer a wider variety of languages. - Fixes bug #155498. - - ChangeLog | 23 +++ - configure.ac | 29 +++- - data/glade/prefs-dialog.glade | 8 +- - lib/ephy-langs.c | 204 +++++++++++++++++++++++++++ - lib/ephy-langs.h | 7 + - src/prefs-dialog.c | 318 ++++++++++++++++++++++++++++++++++++++++-- - 6 files changed, 575 insertions(+), 14 deletions(-) - -commit b0521a16c246aea0742fb25e5195c817de1d2326 -Author: Kjartan Maraas -Date: Thu Nov 25 10:01:03 2004 +0000 - - Updated Norwegian bokmål translation. - - 2004-11-25 Kjartan Maraas - - * nb.po: Updated Norwegian bokmål translation. - - po/ChangeLog | 4 + - po/nb.po | 1664 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 866 insertions(+), 802 deletions(-) - -commit e1893aa5460cdc1ae3687cb5fae3288b381df94f -Author: Adam Weinberger -Date: Thu Nov 25 02:05:17 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 161 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 81 insertions(+), 84 deletions(-) - -commit f6fae22547e56347335a20cc2f4bcc2ca89392a9 -Author: Christian Persch -Date: Wed Nov 24 20:01:27 2004 +0000 - - Fix ChangeLog - - ChangeLog | 1 + - 1 file changed, 1 insertion(+) - -commit b18bbc79c18be7bd72f8c276979a5b3c0a262b27 -Author: Christian Persch -Date: Wed Nov 24 20:00:59 2004 +0000 - - Adapt to changing mozilla API here. - - 2004-11-24 Christian Persch - - * configure.ac: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - - Adapt to changing mozilla API here. - - ChangeLog | 7 +++++ - configure.ac | 28 +++++++++++++++---- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 50 ++++++++++++++++++++++++++++++---- - 3 files changed, 75 insertions(+), 10 deletions(-) - -commit e928fbb31c12ebb194f1f3dee0433fe85285b1be -Author: Christian Persch -Date: Wed Nov 24 19:20:38 2004 +0000 - - Lowercase the lang codes. - - 2004-11-24 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - - Lowercase the lang codes. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 2122b5a61daf5f682d6f5181fc21564e03b2cf83 -Author: Miloslav Trmac -Date: Wed Nov 24 12:09:09 2004 +0000 - - Updated Czech translation. - - 2004-11-24 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 198 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 104 insertions(+), 98 deletions(-) - -commit a575c4a09d4f656d1669be9e3cf1461af28aa4d7 -Author: Marcel Telka -Date: Tue Nov 23 22:13:06 2004 +0000 - - Updated Slovak translation. - - 2004-11-23 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++ - po/sk.po | 169 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 86 insertions(+), 87 deletions(-) - -commit 5268ec265959564776b3e4f11e4cba6432c56103 -Author: Christian Persch -Date: Mon Nov 22 22:12:03 2004 +0000 - - Fix string comparisions. - - 2004-11-22 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Fix string comparisions. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 16 ++++++++-------- - 2 files changed, 14 insertions(+), 8 deletions(-) - -commit cb47435ec293928496c39cf7e8bed389c381e42f -Author: Christian Persch -Date: Mon Nov 22 20:48:41 2004 +0000 - - Fix missing 'else if' and a superflous failure check. - - 2004-11-22 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Fix missing 'else if' and a superflous failure check. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 4 +--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 28610d97e19068fcfab85d06b7ed8d621cb0bfdd -Author: Jordi Mallach -Date: Mon Nov 22 00:37:07 2004 +0000 - - Updated Catalan translation. - - po/ChangeLog | 4 ++++ - po/ca.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 6cfe8dc809c1028e0ec9f7f38d9640dc5d234fa8 -Author: Christian Persch -Date: Mon Nov 22 00:15:26 2004 +0000 - - Fix ngettext usage. - - 2004-11-22 Christian Persch - - * src/prefs-dialog.c: (add_system_language_entry): - - Fix ngettext usage. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 248d53ff25301c1530e187262ad8b330b0789e91 -Author: Vincent van Adrighem -Date: Sun Nov 21 23:55:23 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-11-22 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 1449 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 744 insertions(+), 709 deletions(-) - -commit 89e91e1b9afb5e66241f39eaf0c21f8444198758 -Author: Christian Persch -Date: Sun Nov 21 13:56:32 2004 +0000 - - Fix generic 'site' hostname fallback. Fixes bug #155442. - - 2004-11-21 Christian Persch - - * src/ephy-tab.c: (update_net_state_message): - - Fix generic 'site' hostname fallback. Fixes bug #155442. - - ChangeLog | 6 +++++ - src/ephy-tab.c | 75 +++++++++++++++++++++++----------------------------------- - 2 files changed, 36 insertions(+), 45 deletions(-) - -commit e2aa41afe7aaf0d856645551ceb30601062c5b79 -Author: Christian Persch -Date: Sun Nov 21 01:22:18 2004 +0000 - - If the signal handler for tab-added reordered the tabs, emit the - - 2004-11-21 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_add_tab): - - If the signal handler for tab-added reordered the tabs, - emit the tabs-reordered signal. - - ChangeLog | 7 +++++++ - src/ephy-notebook.c | 18 ++++++++++++++---- - 2 files changed, 21 insertions(+), 4 deletions(-) - -commit ba145035681242943bac2712a43ee325489c685d -Author: Christian Persch -Date: Sat Nov 20 23:17:59 2004 +0000 - - Add version marker - - embed/mozilla/EphyUtils.h | 1 + - 1 file changed, 1 insertion(+) - -commit 689a84a20c5a62e90afd22630281c7633b58b7f8 -Author: Christian Persch -Date: Sat Nov 20 23:16:38 2004 +0000 - - Don't include print-dialog.h in EphyUtils.h. - - 2004-11-21 Christian Persch - - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - * embed/print-dialog.h: - - Don't include print-dialog.h in EphyUtils.h. - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyUtils.cpp | 2 ++ - embed/mozilla/EphyUtils.h | 7 ++++--- - embed/print-dialog.h | 2 +- - 4 files changed, 15 insertions(+), 4 deletions(-) - -commit 78ed4ddf68133188de0eba69d7826d06afd7994a -Author: Christian Persch -Date: Fri Nov 19 20:24:31 2004 +0000 - - Only build those files when we have mozilla psm. - - 2004-11-19 Christian Persch - - * configure.ac: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/Makefile.am: - - Only build those files when we have mozilla psm. - - ChangeLog | 10 ++++++++++ - configure.ac | 6 ++++-- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 4 ---- - embed/mozilla/GtkNSSDialogs.cpp | 4 ---- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 4 ---- - embed/mozilla/Makefile.am | 16 ++++++++++------ - 6 files changed, 24 insertions(+), 20 deletions(-) - -commit 53335d175e672507e860d16292fca8fb75648e0b -Author: Christian Persch -Date: Fri Nov 19 20:16:45 2004 +0000 - - Use the dom window from the event. - - 2004-11-19 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Use the dom window from the event. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b0e668237680c11a5e3189d367ea1dbc7544d130 -Author: Christian Persch -Date: Fri Nov 19 20:13:44 2004 +0000 - - Add --disable-filepicker to use when the mozilla build itself has native - - 2004-11-19 Christian Persch - - * configure.ac: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - - Add --disable-filepicker to use when the mozilla build itself has - native gtk+ filepicker. - - ChangeLog | 9 +++++++++ - configure.ac | 12 ++++++++++++ - embed/mozilla/Makefile.am | 8 ++++++-- - embed/mozilla/MozRegisterComponents.cpp | 14 +++++++++++--- - 4 files changed, 38 insertions(+), 5 deletions(-) - -commit c98367a38ddb3af23365caa49a0684e7ba7750ef -Author: Christian Persch -Date: Fri Nov 19 19:13:40 2004 +0000 - - Add version markers - - embed/mozilla/MozillaPrivate.cpp | 2 +- - embed/mozilla/MozillaPrivate.h | 1 + - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit 7764b39b75aa6c671ce6f293bead46a35b98b57b -Author: Francisco Javier F. Serrador -Date: Thu Nov 18 16:08:47 2004 +0000 - - Updated Spanish translation - - 2004-11-18 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation - - po/ChangeLog | 4 + - po/es.po | 2479 ++++++++++++++++------------------------------------------ - 2 files changed, 664 insertions(+), 1819 deletions(-) - -commit efbf7ff6143e2f74425d6b4b198069fcb1117aaf -Author: Christian Persch -Date: Thu Nov 18 15:18:55 2004 +0000 - - Add defines and #ifdef to enable validation; disabled for now. - - 2004-11-18 Christian Persch - - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_load_string), - (ephy_extensions_manager_startup), - (ephy_extensions_manager_finalize): - - Add defines and #ifdef to enable validation; disabled for now. - - ChangeLog | 9 +++++++++ - src/ephy-extensions-manager.c | 18 ++++++++++++++++-- - 2 files changed, 25 insertions(+), 2 deletions(-) - -commit 74fa0412fb03b25b09465d1191dc43beedf37b02 -Author: Christian Persch -Date: Thu Nov 18 13:50:46 2004 +0000 - - Fix opening of content when not downloading automatically. Fixes bug - - 2004-11-18 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Fix opening of content when not downloading automatically. - Fixes bug #158466. - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 5 +++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 61e750e762ea9112ebfa8339808021ab3c1d2c7e -Author: Christian Persch -Date: Thu Nov 18 13:06:32 2004 +0000 - - Disallow favicon links from subframes. - - 2004-11-18 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - - Disallow favicon links from subframes. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 45 +++++++++++++++++++++++++++++++------------ - embed/mozilla/EphyBrowser.h | 15 +++++++++++---- - 3 files changed, 51 insertions(+), 16 deletions(-) - -commit 1f04e1b7cf26c0c5f07a785135edae6a4878d321 -Author: Christian Persch -Date: Wed Nov 17 22:25:51 2004 +0000 - - Updated - - AUTHORS | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit a2d29f8462492b08ec0926be7a77a0fdb994ef74 -Author: Christian Persch -Date: Wed Nov 17 20:03:25 2004 +0000 - - Include stdlib.h. - - 2004-11-17 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Include stdlib.h. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 ++ - 2 files changed, 8 insertions(+) - -commit 200aa47a3843fd0194efdaa03184ff96d7b7d10c -Author: Christian Persch -Date: Wed Nov 17 19:41:57 2004 +0000 - - Retain original uri. - - 2004-11-17 Christian Persch - - * embed/mozilla/EphyAboutRedirector.cpp: - - Retain original uri. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutRedirector.cpp | 2 ++ - 2 files changed, 8 insertions(+) - -commit 0b0f98a2a486cfa4257b017446bbe93f7e352d1e -Author: Christian Persch -Date: Wed Nov 17 19:39:38 2004 +0000 - - Fix wrong certificate shown; Epiphany equivalent of galeon bug #158453. - - 2004-11-17 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Fix wrong certificate shown; Epiphany equivalent of galeon bug #158453. - - ChangeLog | 8 +++++++ - embed/mozilla/EphyBrowser.cpp | 49 +++++++++++++++++------------------------ - embed/mozilla/EphyBrowser.h | 11 +++++---- - embed/mozilla/mozilla-embed.cpp | 37 +++++++++++++------------------ - 4 files changed, 50 insertions(+), 55 deletions(-) - -commit 24619e355a9632293107bda10768b4b5bbc07e49 -Author: Christian Persch -Date: Tue Nov 16 22:36:10 2004 +0000 - - More cruft exorcised. - - 2004-11-16 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - - More cruft exorcised. - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 35 ++++------------------------------- - embed/mozilla/ContentHandler.h | 4 ---- - 3 files changed, 11 insertions(+), 35 deletions(-) - -commit fc8b2f38ec97eaeb1090c5c4fa10318fa573a76d -Author: Christian Persch -Date: Tue Nov 16 14:21:23 2004 +0000 - - Add a way to show the cert info dialogue for the page's certificate. - - 2004-11-16 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_show_page_certificate): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Add a way to show the cert info dialogue for the page's certificate. - - ChangeLog | 10 ++++++++++ - embed/ephy-embed.c | 13 +++++++++++++ - embed/ephy-embed.h | 3 +++ - embed/mozilla/EphyBrowser.cpp | 36 ++++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 1 + - embed/mozilla/mozilla-embed.cpp | 9 +++++++++ - 6 files changed, 72 insertions(+) - -commit 1d8df1dcd8dd809ab8d9936e9a682e0c8e62faee -Author: Christian Persch -Date: Tue Nov 16 13:36:54 2004 +0000 - - No need to include nsEmbedString.h. - - 2004-11-16 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - - No need to include nsEmbedString.h. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 3 --- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 1e7b267e2f2b459991ec797423146974936f54f7 -Author: Christian Persch -Date: Tue Nov 16 13:34:36 2004 +0000 - - Make mozilla_notifier_add return the connection ID, and - - 2004-11-16 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-notifiers.h: - - Make mozilla_notifier_add return the connection ID, and - mozilla_notifier_remove take that. - - ChangeLog | 16 +++++++++++ - embed/mozilla/mozilla-notifiers.cpp | 56 ++++++++++++++----------------------- - embed/mozilla/mozilla-notifiers.h | 6 ++-- - 3 files changed, 39 insertions(+), 39 deletions(-) - -commit 6ca0ed69fcf77dc21c5501bd6685d0872f282330 -Author: Christian Persch -Date: Mon Nov 15 21:29:00 2004 +0000 - - Simplify the gconf -> mozilla prefs bridge. - - 2004-11-15 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-notifiers.h: - - Simplify the gconf -> mozilla prefs bridge. - - embed/mozilla/mozilla-embed-single.cpp | 4 +- - embed/mozilla/mozilla-notifiers.cpp | 996 +++++++++++++++------------------ - embed/mozilla/mozilla-notifiers.h | 33 +- - 3 files changed, 496 insertions(+), 537 deletions(-) - -commit a4592d5f7811b38e5ae3111d683c5f96f5c7bf45 -Author: Hendrik Richter -Date: Mon Nov 15 19:01:20 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 1778 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 942 insertions(+), 840 deletions(-) - -commit d5b40783896bd8c5abe7e0f0ba1b697f548a10e2 -Author: Marcel Telka -Date: Sun Nov 14 21:23:32 2004 +0000 - - Updated Slovak translation. - - 2004-11-14 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 1280 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 649 insertions(+), 635 deletions(-) - -commit 54e1e566731bb2dd84c956ee5994d85a4f5d4fb0 -Author: David Lodge -Date: Sun Nov 14 19:27:17 2004 +0000 - - Updated British English translation. - - 2004-11-14 David Lodge - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 1397 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 715 insertions(+), 686 deletions(-) - -commit 5590990e31cce98ab0f975541999862ab6778e25 -Author: Christian Persch -Date: Sun Nov 14 17:40:19 2004 +0000 - - Save one strdup. - - 2004-11-14 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Save one strdup. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 4 +--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 0702d70a92b4b46d5a94c5df092288358b89d2fb -Author: Gustavo Noronha Silva -Date: Sun Nov 14 16:17:11 2004 +0000 - - translation update. - - * pt_BR.po: translation update. - - po/ChangeLog | 4 + - po/pt_BR.po | 1736 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 914 insertions(+), 826 deletions(-) - -commit 2c88315e6e2546470485400058ad20b7e115d93c -Author: Christian Persch -Date: Sun Nov 14 16:04:44 2004 +0000 - - Check favicon urls with script sec manager and content policy. - - 2004-11-14 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/Makefile.am: - - Check favicon urls with script sec manager and content policy. - - ChangeLog | 8 ++++ - embed/mozilla/EphyBrowser.cpp | 97 ++++++++++++++++++++++++++++++++----------- - embed/mozilla/EphyBrowser.h | 3 -- - embed/mozilla/Makefile.am | 3 ++ - 4 files changed, 83 insertions(+), 28 deletions(-) - -commit 8d62a2a659d2c31b28b1ae7df7d3185a3e11d4bc -Author: Christian Persch -Date: Sun Nov 14 14:20:26 2004 +0000 - - Fix includes. - - 2004-11-14 Christian Persch - - * embed/mozilla/ContentHandler.h: - - Fix includes. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.h | 2 ++ - 2 files changed, 8 insertions(+) - -commit 5d0698b956c43b701ec681865884568f9ee123b6 -Author: Christian Persch -Date: Sun Nov 14 13:50:22 2004 +0000 - - Remove unused variable. - - 2004-11-14 Christian Persch - - * src/ephy-notebook.c: (build_tab_label): - - Remove unused variable. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 4 +--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 577de0d4fbef9869e5e865b7d2bb589619b3a4f5 -Author: Christian Persch -Date: Sun Nov 14 11:45:01 2004 +0000 - - Remove notice about tab-loading.gif since we don't have that anymore. - - 2004-11-14 Christian Persch - - * COPYING: - - Remove notice about tab-loading.gif since we don't have that anymore. - - COPYING | 5 ----- - ChangeLog | 6 ++++++ - 2 files changed, 6 insertions(+), 5 deletions(-) - -commit 6b12cd1eefbb78edc8345076b60a2a04fbc82af1 -Author: Adam Weinberger -Date: Sun Nov 14 06:57:25 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 389 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 205 insertions(+), 188 deletions(-) - -commit be773bd381ccf824582d19c0f88405dcdbdd90ba -Author: Christian Persch -Date: Sat Nov 13 21:39:18 2004 +0000 - - Don't save session_crashed.xml while shutting down. - - 2004-11-13 Christian Persch - - * src/ephy-session.c: (ephy_session_autoresume), - (ephy_session_close), (ephy_session_save): - - Don't save session_crashed.xml while shutting down. - - ChangeLog | 7 +++++++ - src/ephy-session.c | 10 ++++++---- - 2 files changed, 13 insertions(+), 4 deletions(-) - -commit 24664b3b9a56643eb383e3db7aa24f7a18bd5979 -Author: Christian Persch -Date: Sat Nov 13 21:38:40 2004 +0000 - - No need to make the content handler dialogue modal. - - 2004-11-13 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - - No need to make the content handler dialogue modal. - - ChangeLog | 7 +++ - embed/mozilla/ContentHandler.cpp | 107 ++++++++++++++++++++------------------- - embed/mozilla/ContentHandler.h | 26 +++++----- - 3 files changed, 74 insertions(+), 66 deletions(-) - -commit 14fb72aeb0cc6a75d7326298607887dbc7d9fdd7 -Author: Christian Persch -Date: Sat Nov 13 21:35:48 2004 +0000 - - Better fix for bug #158202, thanks to Christian Biesinger. - - 2004-11-13 Christian Persch - - * embed/mozilla/MozillaPrivate.cpp: - - Better fix for bug #158202, thanks to Christian Biesinger. - - ChangeLog | 6 ++++++ - embed/mozilla/MozillaPrivate.cpp | 3 +-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 6444c713b1f0f7b5cf90ee8a232d5cdc63e92eb7 -Author: Christian Persch -Date: Sat Nov 13 21:26:11 2004 +0000 - - Remove last instances of gnome-i18n.h inclusion. - - 2004-11-13 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - - Remove last instances of gnome-i18n.h inclusion. - - ChangeLog | 7 +++++++ - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 19 +++++++++---------- - 3 files changed, 17 insertions(+), 11 deletions(-) - -commit 92ff2b1c306c09eb5b7c722ba0d6b52cb15a63e9 -Author: Christian Persch -Date: Sat Nov 13 20:48:51 2004 +0000 - - Updated - - INSTALL | 159 ++++++++++++++++++++++++++++++++++++++++++---------------------- - 1 file changed, 104 insertions(+), 55 deletions(-) - -commit abe27ec1ce52bb620dac85541eaf77de2dd54f71 -Author: Christian Persch -Date: Sat Nov 13 20:47:53 2004 +0000 - - Fix FMR. Fixes bug #158202. - - 2004-11-13 Christian Persch - - * embed/mozilla/MozillaPrivate.cpp: - - Fix FMR. Fixes bug #158202. - - ChangeLog | 6 ++++++ - embed/mozilla/MozillaPrivate.cpp | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit ebcbba7543b242c2bcb9d43e91636f30a8793bb6 -Author: Christian Persch -Date: Sat Nov 13 19:53:38 2004 +0000 - - nsEmbedString.h now requires MOZILLA_STRICT_API define. - - 2004-11-13 Christian Persch - - * configure.ac: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/EphyAboutRedirector.cpp: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/FilePicker.h: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - - nsEmbedString.h now requires MOZILLA_STRICT_API define. - - ChangeLog | 24 ++++++++++++++++++++++++ - configure.ac | 2 +- - embed/mozilla/ContentHandler.h | 2 ++ - embed/mozilla/EphyAboutRedirector.cpp | 2 ++ - embed/mozilla/EphyBrowser.cpp | 2 ++ - embed/mozilla/EphyContentPolicy.cpp | 2 ++ - embed/mozilla/EphyHeaderSniffer.h | 2 ++ - embed/mozilla/EphySingle.cpp | 2 ++ - embed/mozilla/EphyUtils.cpp | 2 ++ - embed/mozilla/EventContext.cpp | 2 ++ - embed/mozilla/FilePicker.cpp | 2 ++ - embed/mozilla/FilePicker.h | 2 ++ - embed/mozilla/GlobalHistory.cpp | 2 ++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 ++ - embed/mozilla/GtkNSSDialogs.cpp | 2 ++ - embed/mozilla/MozDownload.cpp | 2 ++ - embed/mozilla/mozilla-download.cpp | 2 ++ - embed/mozilla/mozilla-embed-single.cpp | 2 ++ - embed/mozilla/mozilla-embed.cpp | 2 ++ - embed/mozilla/mozilla-notifiers.cpp | 2 ++ - 20 files changed, 61 insertions(+), 1 deletion(-) - -commit a0db6ede263474f109d47eefc27e03aa620db3c2 -Author: Žugimantas Beručka -Date: Sat Nov 13 04:35:30 2004 +0000 - - Updated Lithuanian translation, - - 2004-11-13 Žugimantas Beručka - - * lt.po: Updated Lithuanian translation, - - po/ChangeLog | 4 + - po/lt.po | 1496 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 767 insertions(+), 733 deletions(-) - -commit 269b3699252e070dadc602df8d79dd105f4bca11 -Author: Christian Persch -Date: Sat Nov 13 00:33:19 2004 +0000 - - Fix ChangeLog - - ChangeLog | 5 ----- - 1 file changed, 5 deletions(-) - -commit bb2325b0400dcd15fb49c1628e2c3836aebdaa8a -Author: Christian Persch -Date: Fri Nov 12 21:39:28 2004 +0000 - - Size-allocate the embed if it's not mapped but has never been - - 2004-11-12 Christian Persch - - * src/ephy-tab.c: (ephy_tab_size_allocate), (ephy_tab_map): - - Size-allocate the embed if it's not mapped but has never been - size-allocated before. Fixes bug #156854. - - ChangeLog | 12 ++++++++++++ - src/ephy-tab.c | 15 ++++++++++++--- - 2 files changed, 24 insertions(+), 3 deletions(-) - -commit f3bc7acce2043d85011e71c369a06b3979c30734 -Author: Christian Persch -Date: Fri Nov 12 19:48:36 2004 +0000 - - Update gtk+ dependency. - - 2004-11-12 Christian Persch - - * configure.ac: - - Update gtk+ dependency. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 7ff7ebc89194f56a7b6bf66e852112e36ae81b0d -Author: Christian Persch -Date: Fri Nov 12 00:15:17 2004 +0000 - - Add shortcut to Send To menuitem, as per HIG. Fixes bug #148655. - - 2004-11-12 Christian Persch - - * src/ephy-window.c: - - Add shortcut to Send To menuitem, as per HIG. Fixes bug #148655. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 6194bb0a843bf6f1e4b0a81aa66fcb537bc237f9 -Author: Christian Persch -Date: Thu Nov 11 18:08:11 2004 +0000 - - Don't hardcode "epiphany" as argv[0], use g_get_prgname() instead. Fixes - - 2004-11-11 Christian Persch - - * src/ephy-shell.c: (save_yourself_cb): - - Don't hardcode "epiphany" as argv[0], use g_get_prgname() instead. - Fixes bug #118427. - - ChangeLog | 7 +++++++ - src/ephy-shell.c | 7 ++++++- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit bd066da5d8edf4d71c872bdaec86621c13145237 -Author: Christian Persch -Date: Thu Nov 11 17:56:44 2004 +0000 - - Keep a ref on EphyShell in ephy_session_close(). Otherwise we get a crash - - 2004-11-11 Christian Persch - - * src/ephy-session.c: (ephy_session_close): - - Keep a ref on EphyShell in ephy_session_close(). Otherwise we - get a crash when the session manager sends us the "die" signal, - and we don't have a tool window (bme, history) open. - - ChangeLog | 8 ++++++++ - src/ephy-session.c | 7 +++++++ - 2 files changed, 15 insertions(+) - -commit 7592d35abb3e72e4318f4a767922a5a0f263b7ad -Author: Miloslav Trmac -Date: Thu Nov 11 15:17:41 2004 +0000 - - Updated Czech translation. - - 2004-11-11 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 171 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 101 insertions(+), 74 deletions(-) - -commit 52f4197e335956ab886506abf7df246c13ef9fd6 -Author: Christian Persch -Date: Thu Nov 11 14:19:17 2004 +0000 - - Fix signed/unsigned int confusion when iterating over a GPtrArray. - - 2004-11-11 Christian Persch - - * embed/ephy-history.c: (remove_obsolete_pages): - * src/bookmarks/ephy-bookmarks.c: (clear_favorites): - - Fix signed/unsigned int confusion when iterating over - a GPtrArray. - - ChangeLog | 8 ++++++++ - embed/ephy-history.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 2 +- - 3 files changed, 10 insertions(+), 2 deletions(-) - -commit 3307a35bc76131d03e392f4e87a9baddc3b3c883 -Author: Christian Persch -Date: Thu Nov 11 14:17:24 2004 +0000 - - Implement history deletion on per-site basis. Fixes bug #116609. - - 2004-11-11 Christian Persch - - * embed/ephy-history.c: (remove_pages_from_host_cb), - (connect_page_removed_from_host), (ephy_history_get_host): - * src/ephy-history-window.c: (cmd_delete), - (ephy_history_window_construct): - * src/ephy-window.c: (ephy_window_fullscreen): - - Implement history deletion on per-site basis. Fixes bug #116609. - - ChangeLog | 10 ++++++++++ - embed/ephy-history.c | 26 ++++++++++++++++++++++++++ - src/ephy-history-window.c | 24 ++++++++++++++++++++++++ - 3 files changed, 60 insertions(+) - -commit 30511d4441c2f5238737ac57dc165b00e558942c -Author: Christian Persch -Date: Thu Nov 11 14:14:51 2004 +0000 - - Change column order for the languages list in the code. - - 2004-11-11 Christian Persch - - * src/prefs-dialog.c: - - Change column order for the languages list in the code. - - ChangeLog | 6 +++ - src/prefs-dialog.c | 114 ++++++++++++++++++++++++++--------------------------- - 2 files changed, 63 insertions(+), 57 deletions(-) - -commit bfdc6be6ad7688c6884ad4fb208a9943b06230f7 -Author: Christian Persch -Date: Thu Nov 11 12:52:20 2004 +0000 - - Don't unref, then weak ref, then enter main loop; this won't work when - - 2004-11-11 Christian Persch - - * src/ephy-main.c: (idle_unref), (main): - - Don't unref, then weak ref, then enter main loop; this won't work - when refcount was 1. Instead weakref and unref on idle. - Fixes bug #136170. - - ChangeLog | 8 ++++++++ - src/ephy-main.c | 10 ++++++++-- - 2 files changed, 16 insertions(+), 2 deletions(-) - -commit dc701761a20235890c5972fe7856da39a1bfb376 -Author: Laurent Dhima -Date: Thu Nov 11 10:26:18 2004 +0000 - - Updated Albanian translation. - - 2004-11-11 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 1428 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 722 insertions(+), 710 deletions(-) - -commit 5505c32b141fceaf735431b6b04b34a706ac6839 -Author: James Henstridge -Date: Thu Nov 11 05:36:57 2004 +0000 - - make len a gsize rather than an int to fix compilation on 64-bit systems. - - 2004-11-11 James Henstridge - - * src/ephy-extensions-manager.c (load_file_from_monitor): make len - a gsize rather than an int to fix compilation on 64-bit systems. - - ChangeLog | 5 +++++ - src/ephy-extensions-manager.c | 2 +- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 9bffc9190fae704747c284b04c7722d8f2fb1b17 -Author: Xan Lopez -Date: Wed Nov 10 23:06:46 2004 +0000 - - Do not warn if topic is empty, better title and primary text. - - - * src/bookmarks/ephy-bookmarks-editor.c: - (delete_topic_dialog_construct), (cmd_delete): - - Do not warn if topic is empty, better title and primary text. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 35 +++++++++++++++++++++++++---------- - 2 files changed, 32 insertions(+), 10 deletions(-) - -commit a36abe0a0fc8029b6336cbe6f26e79a79ec70aaf -Author: Xan Lopez -Date: Wed Nov 10 22:34:46 2004 +0000 - - Warn before deleting a topic, fixes #149294 - - - * src/bookmarks/ephy-bookmarks-editor.c: - (delete_topic_dialog_construct), (cmd_delete): - - Warn before deleting a topic, fixes #149294 - - ChangeLog | 7 +++++ - src/bookmarks/ephy-bookmarks-editor.c | 52 ++++++++++++++++++++++++++++++++++- - 2 files changed, 58 insertions(+), 1 deletion(-) - -commit 621962485a23186a0f5871abdb83a3d672f9e026 -Author: Christian Persch -Date: Wed Nov 10 16:53:28 2004 +0000 - - Add resize grip. Fixes bug #137845. - - 2004-11-10 Christian Persch - - * src/ephy-statusbar.c: (ephy_statusbar_init): - - Add resize grip. Fixes bug #137845. - - ChangeLog | 12 ++++++++++++ - src/ephy-statusbar.c | 3 +-- - 2 files changed, 13 insertions(+), 2 deletions(-) - -commit 2adb51b91a4bef0ee4cec877932b833b572f411a -Author: Christian Persch -Date: Wed Nov 10 13:27:15 2004 +0000 - - Fix opening content with external content handlers. - - 2004-11-10 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Fix opening content with external content handlers. - - embed/mozilla/ContentHandler.cpp | 18 ++---------------- - 1 file changed, 2 insertions(+), 16 deletions(-) - -commit 7dcc6d4bb192250daf127584f544a2c6f44d17e9 -Author: Christian Persch -Date: Wed Nov 10 13:25:51 2004 +0000 - - Fix 2 mem leaks; thanks to Xan for noticing them. - - 2004-11-09 Christian Persch - - * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct): - - Fix 2 mem leaks; thanks to Xan for noticing them. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-new-bookmark.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 7c6b70e43fe00f85535daaa0e8766913a6bd3bca -Author: Adam Weinberger -Date: Tue Nov 9 22:19:02 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 1417 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 710 insertions(+), 711 deletions(-) - -commit 489e77d814f2ce449e87ba61590eb9ca9bd711bc -Author: Christian Persch -Date: Tue Nov 9 20:32:01 2004 +0000 - - Better positioning for the context menu popup in a treeview. Patch by - - 2004-11-09 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_menu_position_tree_selection): - - Better positioning for the context menu popup in a treeview. - Patch by Crispin Flowerday. - - Remove obsolete global variables. - - ChangeLog | 9 +++++++++ - lib/ephy-gui.c | 13 +++++++------ - 2 files changed, 16 insertions(+), 6 deletions(-) - -commit 7000fbcb2798ff9a87604a0ea400881075c6be93 -Author: Jordi Mallach -Date: Tue Nov 9 19:57:34 2004 +0000 - - Fix typo: s/Applications_DATA/applications_DATA/. - - 2004-11-09 Jordi Mallach - - * data/Makefile.am (EXTRA_DIST): - - Fix typo: s/Applications_DATA/applications_DATA/. - - ChangeLog | 6 ++++++ - data/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 5271d3f561fb658ba746944287ffdeaf0cc1a499 -Author: Christian Persch -Date: Tue Nov 9 18:27:15 2004 +0000 - - Fix signed/unsigned int confusion exposed by empty accept-lang list. - - 2004-11-09 Christian Persch - - * lib/ephy-langs.c: (ephy_langs_sanitise): - - Fix signed/unsigned int confusion exposed by empty accept-lang - list. - - ChangeLog | 7 +++++++ - lib/ephy-langs.c | 8 ++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit a2d5ac63c3cc7e22b829938fefa85b3f2ae64aea -Author: Miloslav Trmac -Date: Tue Nov 9 14:20:21 2004 +0000 - - Updated Czech translation. - - 2004-11-09 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 1420 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 711 insertions(+), 713 deletions(-) - -commit aa0ae6239738f58c02c74dc403aa74fc6b4cb294 -Author: Christian Persch -Date: Tue Nov 9 12:19:58 2004 +0000 - - Fix check for nsIPassword.h header to look in the right place. Fixes bug - - 2004-11-09 Christian Persch - - * configure.ac: - - Fix check for nsIPassword.h header to look in the right place. - Fixes bug #157743. - - ChangeLog | 7 +++++++ - configure.ac | 12 +++++++++--- - 2 files changed, 16 insertions(+), 3 deletions(-) - -commit b3492a27945b00ab6ff7da81fefc313d838fce7e -Author: Christian Persch -Date: Tue Nov 9 01:03:38 2004 +0000 - - Removed a FIXME comment where the problem it pointed to has already been fixed. - - src/ephy-statusbar.c | 1 - - 1 file changed, 1 deletion(-) - -commit 71efb0fede5176ff7970903621a66f518020843b -Author: Christian Persch -Date: Tue Nov 9 00:57:40 2004 +0000 - - Simplified the code a bit. - - 2004-11-09 Christian Persch - - * src/ephy-history-window.c: (add_by_date_filter): - - Simplified the code a bit. - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 29 ++++++++++++++--------------- - 2 files changed, 20 insertions(+), 15 deletions(-) - -commit 47ff8cbbb25a28197c38d2ae6272e404d45a577d -Author: Christian Persch -Date: Tue Nov 9 00:44:05 2004 +0000 - - Make it also correct on DST changes. - - 2004-11-09 Christian Persch - - * src/ephy-history-window.c: (add_by_date_filter): - - Make it also correct on DST changes. - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 28 ++++++++++++++++++---------- - 2 files changed, 24 insertions(+), 10 deletions(-) - -commit fb3d5903b4fac8d6b3aeca0f652af2c419c4fc02 -Author: Christian Persch -Date: Mon Nov 8 23:53:12 2004 +0000 - - Fix time filter for time zones != GMT, and add "Last 30 Minutes" filter. - - 2004-11-09 Christian Persch - - * src/ephy-history-window.c: (add_by_date_filter), - (build_search_box), (save_date_filter): - - Fix time filter for time zones != GMT, and add "Last 30 Minutes" filter. - - ChangeLog | 7 +++++++ - src/ephy-history-window.c | 50 +++++++++++++++++++++++++++++++++++------------ - 2 files changed, 45 insertions(+), 12 deletions(-) - -commit eb27c4a12de885c9ec27e0025fe10faaa3226f24 -Author: Christian Persch -Date: Mon Nov 8 19:26:51 2004 +0000 - - Better wording on the "unable to trust" string. Fixes bug #127234. - - 2004-11-08 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - - Better wording on the "unable to trust" string. Fixes bug #127234. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 62908c18a62753382c83be7df67769014bf8f5ca -Author: Christian Persch -Date: Mon Nov 8 14:42:56 2004 +0000 - - This dialogue doesn't need to be modal. - - 2004-11-08 Christian Persch - - * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct): - - This dialogue doesn't need to be modal. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-new-bookmark.c | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 6254bf230454ba0f77cd6c21b74424666fe31eb8 -Author: Christian Persch -Date: Mon Nov 8 14:21:41 2004 +0000 - - Order this in the source code by lang code, not english lang name. - - 2004-11-08 Christian Persch - - * src/prefs-dialog.c: - - Order this in the source code by lang code, not english lang name. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 40 ++++++++++++++++++++-------------------- - 2 files changed, 26 insertions(+), 20 deletions(-) - -commit bbbcab837cdbfc156132a94f6531bafa1ee0bad0 -Author: Christian Persch -Date: Sun Nov 7 22:58:22 2004 +0000 - - Fix button sensitivity setting in language editor not to first disable the - - 2004-11-07 Christian Persch - - * src/prefs-dialog.c: (language_editor_update_buttons): - - Fix button sensitivity setting in language editor not to first - disable the buttons. Fixes moving an item more than once at a time. - - ChangeLog | 7 +++++++ - src/prefs-dialog.c | 19 ++++++++++--------- - 2 files changed, 17 insertions(+), 9 deletions(-) - -commit 7245f1231d628f400eeafaf89d57fcdb9649634f -Author: Christian Persch -Date: Sun Nov 7 21:55:50 2004 +0000 - - Shut up - - help/fi/.cvsignore | 4 ++++ - 1 file changed, 4 insertions(+) - -commit fcc5b2c4cb190b47180bd4359f15e59fe41a99fd -Author: Christian Persch -Date: Sun Nov 7 21:52:52 2004 +0000 - - A idl/.cvsignore: A idl/Makefile.am: - - 2004-11-07 Christian Persch - - * Makefile.am: - * configure.ac: - A idl/.cvsignore: - A idl/Makefile.am: - * src/Makefile.am: - - Add idl/Makefile.am and move src/Makefile.am's EXTRA_DIST there. - - ChangeLog | 10 ++++++++++ - Makefile.am | 2 +- - configure.ac | 1 + - idl/.cvsignore | 9 +++++++++ - idl/Makefile.am | 2 ++ - src/Makefile.am | 2 -- - 6 files changed, 23 insertions(+), 3 deletions(-) - -commit 1f545ca03b769815e6e1da4cb180c5028d69d827 -Author: Christian Persch -Date: Sun Nov 7 20:26:57 2004 +0000 - - Sanitise the embed popup position. Fixes bug #157162. - - 2004-11-07 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_sanitise_popup_position), - (ephy_gui_menu_position_tree_selection), - (ephy_gui_menu_position_under_widget): - * lib/ephy-gui.h: - * src/ephy-window.c: (popup_menu_at_coords), (show_embed_popup): - - Sanitise the embed popup position. Fixes bug #157162. - - ChangeLog | 10 ++++++++++ - lib/ephy-gui.c | 13 +++++++++---- - lib/ephy-gui.h | 5 +++++ - src/ephy-window.c | 12 ++++++++++-- - 4 files changed, 34 insertions(+), 6 deletions(-) - -commit 27909c033836613152167b9969b8014b98238006 -Author: Christian Persch -Date: Sun Nov 7 20:07:02 2004 +0000 - - Better wording for the crash recovery dialogue. Thanks to Spark for this. - - 2004-11-07 Christian Persch - - * src/ephy-session.c: (offer_to_resume): - - Better wording for the crash recovery dialogue. Thanks to Spark - for this. - - ChangeLog | 7 +++++++ - src/ephy-session.c | 5 +++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 3372beb68daffec1bd2560e38e1d9fea3bca9972 -Author: Christian Persch -Date: Sun Nov 7 19:59:48 2004 +0000 - - Don't detach the tab when releasing the mouse button while still over the - - 2004-11-07 Christian Persch - - * src/ephy-notebook.c: (find_notebook_at_pointer), - (is_in_notebook_window): - - Don't detach the tab when releasing the mouse button while still - over the same window. Fixes bug #143954. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 44 ++++++++++++++------------------------------ - 2 files changed, 22 insertions(+), 30 deletions(-) - -commit 934fafce5581c0cff57a9712d0816557a3f61f34 -Author: Christian Persch -Date: Sun Nov 7 19:32:17 2004 +0000 - - When popping up the context menu with keyboard, select the first menu - - 2004-11-07 Christian Persch - - * lib/widgets/ephy-node-view.c: (ephy_node_view_popup): - * src/bookmarks/ephy-bookmark-action.c: (show_context_menu), - (popup_menu_cb), (button_press_cb): - * src/bookmarks/ephy-topic-action.c: (button_toggled_cb), - (show_context_menu), (popup_menu_cb), (button_press_cb): - * src/ephy-window.c: (show_embed_popup): - - When popping up the context menu with keyboard, select the first - menu item. Fixes bug #154907. - - ChangeLog | 12 ++++++++ - lib/widgets/ephy-node-view.c | 11 ++++++-- - src/bookmarks/ephy-bookmark-action.c | 21 ++++++++++---- - src/bookmarks/ephy-topic-action.c | 53 ++++++++++++++++++++++++++++++------ - src/ephy-window.c | 3 +- - 5 files changed, 83 insertions(+), 17 deletions(-) - -commit 10b9e346654223940392f8c9e19b77b552e5ba79 -Author: Christian Persch -Date: Sun Nov 7 16:58:58 2004 +0000 - - Use GtkMessageDialog here. - - 2004-11-07 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Use GtkMessageDialog here. - - ChangeLog | 6 +++ - embed/mozilla/ContentHandler.cpp | 95 +++++++++++++++------------------------- - 2 files changed, 42 insertions(+), 59 deletions(-) - -commit 7c1faa92b84f4feac0cf5f82e16fb8326598a3ae -Author: Christian Persch -Date: Sun Nov 7 15:38:41 2004 +0000 - - Show language code in the string in languages editor. Fixes bug #115355. - - 2004-11-07 Christian Persch - - * data/epiphany.schemas.in: - * embed/mozilla/mozilla-notifiers.cpp: - * lib/ephy-langs.c: (ephy_font_n_languages), (ephy_langs_sanitise), - (ephy_langs_append_languages), (ephy_langs_get_languages): - * lib/ephy-langs.h: - * src/prefs-dialog.c: (add_system_language_entry), - (setup_add_language_dialog), (create_language_section): - - Show language code in the string in languages editor. Fixes bug #115355. - - ChangeLog | 12 ++++ - data/epiphany.schemas.in | 2 +- - embed/mozilla/mozilla-notifiers.cpp | 115 ++++++------------------------ - lib/ephy-langs.c | 138 ++++++++++++++++++++++++++++++++++++ - lib/ephy-langs.h | 10 ++- - src/prefs-dialog.c | 56 +++++++++++---- - 6 files changed, 223 insertions(+), 110 deletions(-) - -commit 9f4b8495af0a6305d442fbcd81085ecfcca80001 -Author: Christian Persch -Date: Sun Nov 7 10:01:32 2004 +0000 - - Make tooltips on the zoom control also work on Ctrl-F1. - - 2004-11-07 Christian Persch - - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_init), - (set_combo_tooltip), (combo_realized), - (ephy_zoom_control_set_tooltip): - - Make tooltips on the zoom control also work on Ctrl-F1. - - ChangeLog | 8 ++++++ - lib/widgets/ephy-zoom-control.c | 57 +++++++++++++++++++++++++++++++---------- - 2 files changed, 52 insertions(+), 13 deletions(-) - -commit 8226e2c8f649c0843deb0f2e2ce06f21db8a1e79 -Author: Christian Persch -Date: Sat Nov 6 17:37:35 2004 +0000 - - Make static. - - 2004-11-06 Christian Persch - - * src/ephy-window.c: (ephy_window_show): - - Make static. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 8 +------- - 2 files changed, 7 insertions(+), 7 deletions(-) - -commit f85e07ce3fb002d97b84177ad86b7b757ea9b00e -Author: Pauli Virtanen -Date: Thu Nov 4 16:14:35 2004 +0000 - - Translated entries to Finnish. - - 2004-11-04 Pauli Virtanen - - * help/fi/epiphany-fi.omf: - - Translated entries to Finnish. - - ChangeLog | 6 ++++++ - help/fi/epiphany-fi.omf | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 3c00f6eb60791cf122ce1a73390d59ee586b6422 -Author: Christian Persch -Date: Thu Nov 4 14:19:23 2004 +0000 - - Added manual translation into Finnish, by Pauli Virtanen. - - 2004-11-04 Christian Persch - - * configure.ac: - * help/Makefile.am: - * help/fi/Makefile.am: - * help/fi/epiphany-fi.omf: - * help/fi/epiphany.xml: - * help/fi/fi.po: - * help/fi/figures/ephy-addressbar-smartbookmark-screenshot.png: - * help/fi/figures/ephy-bookmarkbar-smartbookmark-screenshot.png: - * help/fi/figures/ephy-history-window-screenshot.png: - * help/fi/figures/ephy-screenshot.png: - * help/fi/legal.xml: - - Added manual translation into Finnish, by Pauli Virtanen. - - ChangeLog | 16 + - configure.ac | 1 + - help/Makefile.am | 2 +- - help/fi/Makefile.am | 7 + - help/fi/epiphany-fi.omf | 31 + - help/fi/epiphany.xml | 2573 ++++++++++++++ - help/fi/fi.po | 3567 ++++++++++++++++++++ - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 2518 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 1032 bytes - help/fi/figures/ephy-history-window-screenshot.png | Bin 0 -> 25839 bytes - help/fi/figures/ephy-screenshot.png | Bin 0 -> 101272 bytes - help/fi/legal.xml | 25 + - 12 files changed, 6221 insertions(+), 1 deletion(-) - -commit 645e0402af889864ae30833553550cd215318299 -Author: Updated ja.po. T.Aihana -Date: Thu Nov 4 04:43:50 2004 +0000 - - 2004-11-04 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 1514 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 785 insertions(+), 733 deletions(-) - -commit 53b0b121d9b891989f2c1bad4934bd475746891d -Author: Christian Persch -Date: Thu Nov 4 01:43:58 2004 +0000 - - Updated glib dependency. - - 2004-11-04 Christian Persch - - * configure.ac: - - Updated glib dependency. - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): - - Use g_filename_display_name() here. - - ChangeLog | 10 ++++++++++ - autogen.sh | 2 +- - configure.ac | 2 +- - lib/egg/egg-toolbar-editor.c | 2 ++ - lib/ephy-gui.c | 9 ++++----- - 5 files changed, 18 insertions(+), 7 deletions(-) - -commit 3808248a3d7e6de282f38f92d77311ed5d603d77 -Author: Christian Persch -Date: Wed Nov 3 21:40:11 2004 +0000 - - Also bring the window to the front. - - 2004-11-03 Christian Persch - - * src/ephy-window.c: (modal_alert_cb): - - Also bring the window to the front. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 5 +++++ - 2 files changed, 11 insertions(+) - -commit a6b19e2aa48950d339d319e34ee1ab72eae6cbe3 -Author: Adam Hooper -Date: Wed Nov 3 12:44:57 2004 +0000 - - Free XML data after parsing it. Noticed by jfr. I'm an idiot. - - ChangeLog | 7 +++++++ - src/ephy-extensions-manager.c | 8 +++++++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 65df5f0299d4e158169d7d858c078d12fe62d31c -Author: Christian Persch -Date: Tue Nov 2 20:57:34 2004 +0000 - - We always have config.h, no need to guard its inclusion. - - 2004-11-02 Christian Persch - - * embed/downloader-view.c: - * embed/ephy-command-manager.c: - * embed/ephy-cookie-manager.c: - * embed/ephy-download.c: - * embed/ephy-embed-dialog.c: - * embed/ephy-embed-event.c: - * embed/ephy-embed-factory.c: - * embed/ephy-embed-persist.c: - * embed/ephy-embed-shell.c: - * embed/ephy-embed-single.c: - * embed/ephy-embed.c: - * embed/ephy-encodings.c: - * embed/ephy-favicon-cache.c: - * embed/ephy-history.c: - * embed/ephy-password-manager.c: - * embed/ephy-permission-manager.c: - * embed/find-dialog.c: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/EphyAboutRedirector.cpp: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-embed-event.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/print-dialog.c: - * lib/eel-gconf-extensions.c: - * lib/egg/egg-editable-toolbar.c: - * lib/egg/egg-toolbars-model.c: - * lib/ephy-debug.c: - * lib/ephy-debug.h: - * lib/ephy-dialog.c: - * lib/ephy-dnd.c: - * lib/ephy-file-chooser.c: - * lib/ephy-file-helpers.c: - * lib/ephy-glade.c: - * lib/ephy-gui.c: - * lib/ephy-langs.c: - * lib/ephy-loader.c: - * lib/ephy-module.c: - * lib/ephy-node-db.c: - * lib/ephy-node-filter.c: - * lib/ephy-node.c: - * lib/ephy-shlib-loader.c: - * lib/ephy-state.c: - * lib/ephy-stock-icons.c: - * lib/ephy-string.c: - * lib/ephy-zoom.c: - * lib/widgets/ephy-location-entry.c: - * lib/widgets/ephy-node-view.c: - * lib/widgets/ephy-search-entry.c: - * lib/widgets/ephy-spinner.c: - * lib/widgets/ephy-tree-model-node.c: - * lib/widgets/ephy-tree-model-sort.c: - * lib/widgets/ephy-zoom-action.c: - * lib/widgets/ephy-zoom-control.c: - * src/bookmarks/ephy-bookmark-action.c: - * src/bookmarks/ephy-bookmark-properties.c: - * src/bookmarks/ephy-bookmarks-editor.c: - * src/bookmarks/ephy-bookmarks-export.c: - * src/bookmarks/ephy-bookmarks-import.c: - * src/bookmarks/ephy-bookmarks-menu.c: - * src/bookmarks/ephy-bookmarks.c: - * src/bookmarks/ephy-bookmarksbar-model.c: - * src/bookmarks/ephy-bookmarksbar.c: - * src/bookmarks/ephy-favorites-menu.c: - * src/bookmarks/ephy-new-bookmark.c: - * src/bookmarks/ephy-topic-action.c: - * src/bookmarks/ephy-topics-selector.c: - * src/ephy-automation.c: - * src/ephy-completion-model.c: - * src/ephy-encoding-dialog.c: - * src/ephy-encoding-menu.c: - * src/ephy-extension.c: - * src/ephy-extensions-manager.c: - * src/ephy-favicon-action.c: - * src/ephy-go-action.c: - * src/ephy-history-window.c: - * src/ephy-location-action.c: - * src/ephy-main.c: - * src/ephy-navigation-action.c: - * src/ephy-notebook.c: - * src/ephy-session.c: - * src/ephy-shell.c: - * src/ephy-statusbar.c: - * src/ephy-tab.c: - * src/ephy-tabs-menu.c: - * src/ephy-toolbars-model.c: - * src/ephy-window.c: - * src/pdm-dialog.c: - * src/popup-commands.c: - * src/ppview-toolbar.c: - * src/prefs-dialog.c: - * src/toolbar.c: - * src/window-commands.c: - - We always have config.h, no need to guard its inclusion. - - ChangeLog | 117 ++++++++++++++++++++++++++++++ - embed/downloader-view.c | 2 - - embed/ephy-command-manager.c | 2 - - embed/ephy-cookie-manager.c | 2 - - embed/ephy-download.c | 2 - - embed/ephy-embed-dialog.c | 2 - - embed/ephy-embed-event.c | 2 - - embed/ephy-embed-factory.c | 2 - - embed/ephy-embed-persist.c | 2 - - embed/ephy-embed-shell.c | 2 - - embed/ephy-embed-single.c | 2 - - embed/ephy-embed.c | 2 - - embed/ephy-encodings.c | 2 - - embed/ephy-favicon-cache.c | 2 - - embed/ephy-history.c | 2 - - embed/ephy-password-manager.c | 2 - - embed/ephy-permission-manager.c | 2 - - embed/find-dialog.c | 2 - - embed/mozilla/ContentHandler.cpp | 2 - - embed/mozilla/ContentHandler.h | 2 - - embed/mozilla/EphyAboutRedirector.cpp | 2 - - embed/mozilla/EphyBrowser.cpp | 2 - - embed/mozilla/EphyBrowser.h | 2 - - embed/mozilla/EphyContentPolicy.cpp | 2 - - embed/mozilla/EphyHeaderSniffer.cpp | 2 - - embed/mozilla/EphySingle.cpp | 2 - - embed/mozilla/EphyUtils.cpp | 2 - - embed/mozilla/EventContext.cpp | 2 - - embed/mozilla/FilePicker.cpp | 2 - - embed/mozilla/GlobalHistory.cpp | 2 - - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 - - embed/mozilla/GtkNSSDialogs.cpp | 2 - - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 - - embed/mozilla/MozDownload.cpp | 2 - - embed/mozilla/MozDownload.h | 2 - - embed/mozilla/MozRegisterComponents.cpp | 2 - - embed/mozilla/PrintingPromptService.cpp | 2 - - embed/mozilla/mozilla-download.cpp | 2 - - embed/mozilla/mozilla-embed-event.cpp | 2 - - embed/mozilla/mozilla-embed-persist.cpp | 2 - - embed/mozilla/mozilla-embed-single.cpp | 2 - - embed/mozilla/mozilla-embed.cpp | 2 - - embed/mozilla/mozilla-notifiers.cpp | 2 - - embed/print-dialog.c | 2 - - lib/eel-gconf-extensions.c | 2 - - lib/egg/egg-editable-toolbar.c | 2 - - lib/egg/egg-toolbars-model.c | 2 - - lib/ephy-debug.c | 2 - - lib/ephy-debug.h | 2 - - lib/ephy-dialog.c | 2 - - lib/ephy-dnd.c | 2 - - lib/ephy-file-chooser.c | 2 - - lib/ephy-file-helpers.c | 2 - - lib/ephy-glade.c | 2 - - lib/ephy-gui.c | 2 - - lib/ephy-langs.c | 2 - - lib/ephy-loader.c | 2 - - lib/ephy-module.c | 2 - - lib/ephy-node-db.c | 2 - - lib/ephy-node-filter.c | 2 - - lib/ephy-node.c | 2 - - lib/ephy-shlib-loader.c | 2 - - lib/ephy-state.c | 2 - - lib/ephy-stock-icons.c | 2 - - lib/ephy-string.c | 2 - - lib/ephy-zoom.c | 2 - - lib/widgets/ephy-location-entry.c | 2 - - lib/widgets/ephy-node-view.c | 2 - - lib/widgets/ephy-search-entry.c | 2 - - lib/widgets/ephy-spinner.c | 2 - - lib/widgets/ephy-tree-model-node.c | 2 - - lib/widgets/ephy-tree-model-sort.c | 2 - - lib/widgets/ephy-zoom-action.c | 2 - - lib/widgets/ephy-zoom-control.c | 2 - - src/bookmarks/ephy-bookmark-action.c | 2 - - src/bookmarks/ephy-bookmark-properties.c | 2 - - src/bookmarks/ephy-bookmarks-editor.c | 2 - - src/bookmarks/ephy-bookmarks-export.c | 2 - - src/bookmarks/ephy-bookmarks-import.c | 2 - - src/bookmarks/ephy-bookmarks-menu.c | 2 - - src/bookmarks/ephy-bookmarks.c | 2 - - src/bookmarks/ephy-bookmarksbar-model.c | 2 - - src/bookmarks/ephy-bookmarksbar.c | 2 - - src/bookmarks/ephy-favorites-menu.c | 2 - - src/bookmarks/ephy-new-bookmark.c | 2 - - src/bookmarks/ephy-topic-action.c | 2 - - src/bookmarks/ephy-topics-selector.c | 2 - - src/ephy-automation.c | 2 - - src/ephy-completion-model.c | 2 - - src/ephy-encoding-dialog.c | 2 - - src/ephy-encoding-menu.c | 2 - - src/ephy-extension.c | 2 - - src/ephy-extensions-manager.c | 2 - - src/ephy-favicon-action.c | 2 - - src/ephy-go-action.c | 2 - - src/ephy-history-window.c | 2 - - src/ephy-location-action.c | 2 - - src/ephy-main.c | 2 - - src/ephy-navigation-action.c | 2 - - src/ephy-notebook.c | 2 - - src/ephy-session.c | 2 - - src/ephy-shell.c | 2 - - src/ephy-statusbar.c | 2 - - src/ephy-tab.c | 2 - - src/ephy-tabs-menu.c | 2 - - src/ephy-toolbars-model.c | 2 - - src/ephy-window.c | 2 - - src/pdm-dialog.c | 2 - - src/popup-commands.c | 2 - - src/ppview-toolbar.c | 2 - - src/prefs-dialog.c | 2 - - src/toolbar.c | 2 - - src/window-commands.c | 2 - - 113 files changed, 117 insertions(+), 224 deletions(-) - -commit 7febd6005ba749c190f47bc2fd8cf962b3b0ade3 -Author: Christian Persch -Date: Mon Nov 1 21:21:08 2004 +0000 - - Fix zoom control so that it shows tooltips again. Fixes bug #155826. - - 2004-11-01 Christian Persch - - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_init), - (ephy_zoom_control_set_tooltip): - - Fix zoom control so that it shows tooltips again. Fixes bug #155826. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-zoom-control.c | 22 +++++++++++++++------- - 2 files changed, 22 insertions(+), 7 deletions(-) - -commit 80ca35af0de41ace1590eda437536674953b88cb -Author: Christian Persch -Date: Mon Nov 1 16:00:48 2004 +0000 - - Post-release version bump. - - 2004-11-01 Christian Persch - - * configure.ac: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 00483294230d94a040f5191191e4d7a2ff4a7cf9 -Author: Christian Persch -Date: Mon Nov 1 15:59:28 2004 +0000 - - === Release 1.5.1 === - - 2004-11-01 Christian Persch - - === Release 1.5.1 === - - ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 901ff153540e64d011b9ac75dfcfcf2a2368654a -Author: Christian Persch -Date: Mon Nov 1 15:31:22 2004 +0000 - - Updating NEWS - - NEWS | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 748a94321a69d4220b97d75cc5e64aa15a2112c7 -Author: Christian Persch -Date: Mon Nov 1 14:48:55 2004 +0000 - - Don't deactivate the toolbar when another item in the same toolbar gains - - 2004-11-01 Christian Persch - - * lib/widgets/ephy-location-entry.c: (ephy_location_entry_init), - (ephy_location_entry_activate): - * src/ephy-location-action.c: (ephy_location_action_class_init): - * src/ephy-window.c: (ephy_window_init): - * src/toolbar.c: (toolbar_class_init), (toolbar_finalize), - (maybe_finish_activation_cb), (toolbar_activate_location), - (toolbar_update_zoom), (toolbar_new): - * src/toolbar.h: - - Don't deactivate the toolbar when another item in the same toolbar - gains focus. Fixes bug #155650. - - ChangeLog | 14 ++++++ - lib/widgets/ephy-location-entry.c | 36 +------------- - src/ephy-location-action.c | 15 ------ - src/ephy-window.c | 3 ++ - src/toolbar.c | 98 +++++++++++++++++++++++++++++++++++---- - src/toolbar.h | 3 ++ - 6 files changed, 109 insertions(+), 60 deletions(-) - -commit 57730e8161a159fdb5a38b9dd0d19dda3bdde8e5 -Author: Christian Persch -Date: Mon Nov 1 14:39:24 2004 +0000 - - Remove seconds remaining display from tooltip of tray icon. Fixes bug - - 2004-11-01 Christian Persch - - * embed/downloader-view.c: (update_status_icon): - - Remove seconds remaining display from tooltip of tray icon. - Fixes bug #145955. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 52 +++---------------------------------------------- - 2 files changed, 10 insertions(+), 49 deletions(-) - -commit a9f5f6a3a6f6de18242e6e0e89b93bfa70e1a535 -Author: Christian Persch -Date: Mon Nov 1 14:29:11 2004 +0000 - - Bump version number and fix aclocal flags. - - 2004-11-01 Christian Persch - - * configure.ac: - - Bump version number and fix aclocal flags. - - * doc/reference/tmpl/ephy-embed-persist.sgml: - * doc/reference/tmpl/ephy-embed.sgml: - * doc/reference/tmpl/ephy-extensions-manager.sgml: - * doc/reference/tmpl/ephy-window.sgml: - * doc/reference/tmpl/epiphany-unused.sgml: - - Update. - - ChangeLog | 14 +++++++++++ - configure.ac | 9 ++++--- - doc/reference/tmpl/ephy-embed-persist.sgml | 1 + - doc/reference/tmpl/ephy-embed.sgml | 19 +++++++++++++++ - doc/reference/tmpl/ephy-extensions-manager.sgml | 32 ++++--------------------- - doc/reference/tmpl/ephy-window.sgml | 5 ++++ - doc/reference/tmpl/epiphany-unused.sgml | 24 +++++++++++++++++++ - 7 files changed, 73 insertions(+), 31 deletions(-) - -commit f686d272ac4558e0ebda8f3aa873d2d9eefb17b5 -Author: Christian Persch -Date: Mon Nov 1 14:00:06 2004 +0000 - - Make sure there's only one bookmark properties dialogue for each bookmark. - - 2004-11-01 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (properties_activate_cb), - (bookmark_destroy_cb), (ephy_bookmark_action_finalize): - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_new): - * src/bookmarks/ephy-bookmark-properties.h: - * src/bookmarks/ephy-bookmarks-editor.c: (show_properties_dialog), - (ephy_bookmarks_editor_finalize), (ephy_bookmarks_editor_init): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init), - (ephy_bookmarks_finalize), (ephy_bookmarks_add_keyword), - (prop_dialog_destroy_cb), (bookmark_destroyed_cb), - (ephy_bookmarks_show_bookmark_properties): - * src/bookmarks/ephy-bookmarks.h: - - Make sure there's only one bookmark properties dialogue for each - bookmark. Fixes bug #148398 and also bug #155880. - - ChangeLog | 18 ++++++++++ - src/bookmarks/ephy-bookmark-action.c | 34 ++++-------------- - src/bookmarks/ephy-bookmark-properties.c | 6 ++-- - src/bookmarks/ephy-bookmark-properties.h | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 34 +++--------------- - src/bookmarks/ephy-bookmarks.c | 59 +++++++++++++++++++++++++++++++- - src/bookmarks/ephy-bookmarks.h | 6 ++++ - 7 files changed, 98 insertions(+), 61 deletions(-) - -commit a716fbc5466f2f33a094062745f2d07b60df340d -Author: Christian Persch -Date: Mon Nov 1 13:44:12 2004 +0000 - - Fix a nasty bug when removing signal handlers during a node signal - - 2004-11-01 Christian Persch - - * lib/ephy-node.c: (callback), (remove_invalidated_signals), - (ephy_node_emit_signal), (signal_object_weak_notify), - (ephy_node_new_with_id), (ephy_node_signal_connect_object), - (remove_matching_signal_data), (invalidate_matching_signal_data), - (ephy_node_signal_disconnect_object), - (ephy_node_signal_disconnect): - - Fix a nasty bug when removing signal handlers during a node signal - emission. Don't remove the handler immediately, but invalidate it, - and remove it after all emissions are done. Part of bug #155880. - - ChangeLog | 13 +++++++ - lib/ephy-node.c | 110 ++++++++++++++++++++++++++++++++++++++++++++++---------- - 2 files changed, 104 insertions(+), 19 deletions(-) - -commit ae87354083c16f5ea79fd5f020523e16e4ca471f -Author: Christian Persch -Date: Sun Oct 31 19:43:45 2004 +0000 - - Removing debug spew - - lib/widgets/ephy-zoom-action.c | 1 - - 1 file changed, 1 deletion(-) - -commit 1fc055f8428191456fbf1dc5da8130d2488aa8d9 -Author: Christian Persch -Date: Sun Oct 31 18:37:00 2004 +0000 - - Disable extensions description validation for now. - - 2004-10-31 Christian Persch - - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_load_string): - - Disable extensions description validation for now. - - ChangeLog | 7 +++++++ - src/ephy-extensions-manager.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 48cf478f03ec2e047c5d95a00a940c3b723a2ea2 -Author: Christian Persch -Date: Sun Oct 31 15:26:42 2004 +0000 - - Process xml:lang in extension description files. - - 2004-10-31 Christian Persch - - * src/ephy-extensions-manager.c: (assign_localised_string), - (ephy_extensions_manager_load_string), - (ephy_extensions_manager_class_init): - - Process xml:lang in extension description files. - - ChangeLog | 8 +++++++ - src/ephy-extensions-manager.c | 55 +++++++++++++++++++++++++++++++++++++++---- - 2 files changed, 59 insertions(+), 4 deletions(-) - -commit 27cb305ae1978811ffe3734dc04b0a4b468ac9bc -Author: Vincent van Adrighem -Date: Sun Oct 31 13:54:45 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-10-31 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 526 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 278 insertions(+), 252 deletions(-) - -commit 0bdbc84fb48ab9ac9fbf34181a6609fc2b74ad5f -Author: Christian Persch -Date: Sun Oct 31 12:51:27 2004 +0000 - - Updated. - - 2004-10-31 Christian Persch - - * NEWS: - - Updated. - - ChangeLog | 6 +++ - NEWS | 126 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 132 insertions(+) - -commit 030bf29d864cc8f5bd872b79a7eccb1840bb317d -Author: Marcel Telka -Date: Sun Oct 31 05:05:45 2004 +0000 - - Updated Slovak translation. - - 2004-10-31 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 388 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 204 insertions(+), 188 deletions(-) - -commit f55083ff83d130e53eb11f58713c380eb0f794b2 -Author: Christian Persch -Date: Sat Oct 30 20:39:13 2004 +0000 - - Fix restoring window size on crash recovery by moving the setting of the - - 2004-10-30 Christian Persch - - * lib/ephy-state.c: (ephy_state_window_set_size): - * src/ephy-session.c: (write_window_geometry), (int_from_string), - (restore_geometry), (ephy_session_load): - - Fix restoring window size on crash recovery by moving the setting - of the size before the initial show which occurs from - ephy_shell_new_tab from parse_embed. Fixes bug #156881. - - ChangeLog | 10 +++++++ - lib/ephy-state.c | 6 ++--- - src/ephy-session.c | 79 ++++++++++++++++++++++++++++++++++++++---------------- - 3 files changed, 69 insertions(+), 26 deletions(-) - -commit 4c41745e525a7fc35f29622e382ec7f881cc2e50 -Author: Christian Persch -Date: Sat Oct 30 18:04:40 2004 +0000 - - Check for nsIDOMNSEvent::GetIsTrusted. - - 2004-10-30 Christian Persch - - * configure.ac: - - Check for nsIDOMNSEvent::GetIsTrusted. - - * embed/mozilla/EphyBrowser.cpp: - - Conditionally compile this code. - - * lib/ephy-marshal.list: - - Forgot to commit this. - - ChangeLog | 14 ++++++++++++++ - configure.ac | 15 +++++++++++++++ - embed/mozilla/EphyBrowser.cpp | 2 ++ - lib/ephy-marshal.list | 1 + - 4 files changed, 32 insertions(+) - -commit ebddd6104b96e1da09e8f6375ef7707ff42ee447 -Author: Christian Persch -Date: Sat Oct 30 17:47:22 2004 +0000 - - Add NULL check - - embed/mozilla/EphyBrowser.cpp | 1 + - 1 file changed, 1 insertion(+) - -commit 96b61f1e2c50ce20423136738e1a3e0a9d7364dc -Author: Christian Persch -Date: Sat Oct 30 17:46:05 2004 +0000 - - When showing a modal alert put up by a web page, switch the window to that - - 2004-10-30 Christian Persch - - * configure.ac: - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * src/ephy-window.c: (modal_alert_cb), (tab_added_cb), - (tab_removed_cb): - - When showing a modal alert put up by a web page, switch the window - to that tab. - - ChangeLog | 13 +++++++++ - configure.ac | 2 +- - embed/ephy-embed.c | 33 ++++++++++++++++++++++ - embed/ephy-embed.h | 2 ++ - embed/mozilla/EphyBrowser.cpp | 64 +++++++++++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 7 +++++ - src/ephy-window.c | 37 +++++++++++++++++++++++++ - 7 files changed, 157 insertions(+), 1 deletion(-) - -commit c9ccac921537b68b5620b485848094a0ffecc3c1 -Author: Christian Persch -Date: Fri Oct 29 22:41:05 2004 +0000 - - Move idle unreffing to extensions manager. Makes sure that extensions are - - 2004-10-30 Christian Persch - - * lib/ephy-shlib-loader.c: (impl_release_object): - * src/ephy-extensions-manager.c: (idle_unref), (unload_extension): - - Move idle unreffing to extensions manager. Makes sure that extensions - are finalised. - - ChangeLog | 8 ++++++++ - lib/ephy-shlib-loader.c | 15 +-------------- - src/ephy-extensions-manager.c | 17 ++++++++++++++++- - 3 files changed, 25 insertions(+), 15 deletions(-) - -commit f0cae57f3be1b8ac61a09086dfe0eff1b8657013 -Author: Adam Hooper -Date: Fri Oct 29 22:38:30 2004 +0000 - - Listen for changes to extension directories using - gnome_vfs_monitor_add(). Paves the way for drag-and-drop installation - of extensions, and makes extensions immediately available when - installing via 'make install', 'apt-get install', etc. - - ChangeLog | 16 +++ - src/ephy-extensions-manager.c | 311 ++++++++++++++++++++++++++++++++++-------- - src/ephy-extensions-manager.h | 4 + - 3 files changed, 272 insertions(+), 59 deletions(-) - -commit c0e325a7b10904f1a49f18696938c679b054f9f7 -Author: Adam Hooper -Date: Fri Oct 29 22:31:23 2004 +0000 - - Comment that unfortunately, elements in must be in order. - - ChangeLog | 6 ++++++ - data/epiphany-extension.xsd | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit e00a88869cc659b8980f9516d632314bf9529cda -Author: Adam Hooper -Date: Fri Oct 29 21:40:15 2004 +0000 - - Depend on libxml 2.6.12 (for its fix of bug 150647). - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b1d9cd1f773f6f2fc6fe054d964bf71179388f91 -Author: Christian Persch -Date: Fri Oct 29 20:53:49 2004 +0000 - - Slightly refactor bookmarks menu, to take a configurable path where to - - 2004-10-29 Christian Persch - - * src/bookmarks/ephy-bookmarks-menu.c: (open_bookmark_cb), - (open_bookmark_in_tab_cb), (add_action_for_bookmark), - (create_submenu), (ephy_bookmarks_menu_rebuild), - (ephy_bookmarks_menu_set_property), - (ephy_bookmarks_menu_get_property), - (ephy_bookmarks_menu_constructor), (ephy_bookmarks_menu_finalize), - (ephy_bookmarks_menu_class_init), (ephy_bookmarks_menu_new): - * src/bookmarks/ephy-bookmarks-menu.h: - * src/ephy-window.c: (open_bookmark_cb), (ephy_window_init): - - Slightly refactor bookmarks menu, to take a configurable path - where to merge its UI. - - ChangeLog | 15 +++++ - src/bookmarks/ephy-bookmarks-menu.c | 110 +++++++++++++++++++++++------------- - src/bookmarks/ephy-bookmarks-menu.h | 10 +++- - src/ephy-window.c | 17 +++++- - 4 files changed, 111 insertions(+), 41 deletions(-) - -commit efd191cf64c092e8f47997b8731d6eb52a6f5326 -Author: Christian Persch -Date: Fri Oct 29 19:00:47 2004 +0000 - - Don't open all bookmarks in tabs. Fixes bug #156843. - - 2004-10-29 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (can_open_in_tabs), - (open_in_tabs_activate_cb), (add_open_in_tabs_menu), - (build_bookmarks_menu), (show_context_menu): - - Don't open all bookmarks in tabs. Fixes bug #156843. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-topic-action.c | 32 ++++++++++++++++++++++---------- - 2 files changed, 30 insertions(+), 10 deletions(-) - -commit b047f6aa506602910cccc2e81335dd6d5a88fd6c -Author: Christian Persch -Date: Wed Oct 27 20:10:34 2004 +0000 - - Correctly change the statusbar children's frams's shadow type when the - - 2004-10-27 Christian Persch - - * src/ephy-statusbar.c: (sync_shadow_type), (ephy_statusbar_init): - - Correctly change the statusbar children's frams's shadow type when - the statusbar shadow type changes. - - ChangeLog | 7 +++++++ - src/ephy-statusbar.c | 5 ++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 7a955848e5551318467c911b358ccd2343a3a4de -Author: Christian Persch -Date: Wed Oct 27 20:03:56 2004 +0000 - - Print dialogue isn't an EphyEmbedDialog anymore, remove the - - 2004-10-27 Christian Persch - - * embed/print-dialog.c: (ephy_print_dialog_new): - - Print dialogue isn't an EphyEmbedDialog anymore, remove the - - ChangeLog | 7 +++++++ - embed/print-dialog.c | 10 +--------- - lib/ephy-dialog.c | 2 -- - 3 files changed, 8 insertions(+), 11 deletions(-) - -commit 529f8a142ef1b5cf04062216a442c5f492ec12e0 -Author: Christian Persch -Date: Wed Oct 27 19:54:57 2004 +0000 - - Private data is 0-initialised, no need to set members to NULL, 0, or - - 2004-10-27 Christian Persch - - * embed/ephy-embed-dialog.c: (ephy_embed_dialog_init): - * embed/ephy-embed-persist.c: (ephy_embed_persist_init), - (ephy_embed_persist_to_string): - * embed/ephy-embed-shell.c: (ephy_embed_shell_init): - * embed/find-dialog.c: (find_dialog_init): - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * lib/ephy-dialog.c: (ephy_dialog_set_modal), (ephy_dialog_init): - * lib/ephy-file-chooser.c: (ephy_file_chooser_init): - * lib/ephy-node-db.c: (ephy_node_db_init): - * lib/widgets/ephy-node-view.c: (ephy_node_view_init): - * lib/widgets/ephy-search-entry.c: (ephy_search_entry_init): - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_init): - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_init): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): - * src/bookmarks/ephy-favorites-menu.c: (ephy_favorites_menu_init): - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_init): - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_init): - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_init): - * src/ephy-encoding-menu.c: (ephy_encoding_menu_init): - * src/ephy-favicon-action.c: (ephy_favicon_action_init): - * src/ephy-location-action.c: (ephy_location_action_init): - * src/ephy-notebook.c: (ephy_notebook_init): - * src/ephy-session.c: (ephy_session_init): - * src/ephy-shell.c: (ephy_shell_init): - * src/ephy-tab.c: (ephy_tab_init): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_init): - * src/ephy-window.c: (ephy_window_init): - * src/pdm-dialog.c: (pdm_dialog_init): - * src/ppview-toolbar.c: (ppview_toolbar_init): - - Private data is 0-initialised, no need to set members to NULL, 0, - or FALSE. - - ChangeLog | 39 ++++++++++++++++++++++++++++++++ - embed/ephy-embed-dialog.c | 2 -- - embed/ephy-embed-persist.c | 7 ------ - embed/ephy-embed-shell.c | 6 ----- - embed/find-dialog.c | 3 --- - embed/mozilla/mozilla-embed-persist.cpp | 1 + - embed/mozilla/mozilla-embed-single.cpp | 3 --- - lib/ephy-dialog.c | 20 ++++++---------- - lib/ephy-file-chooser.c | 2 -- - lib/ephy-node-db.c | 2 -- - lib/widgets/ephy-node-view.c | 5 ---- - lib/widgets/ephy-search-entry.c | 3 --- - src/bookmarks/ephy-bookmark-action.c | 4 ---- - src/bookmarks/ephy-bookmark-properties.c | 2 -- - src/bookmarks/ephy-bookmarks.c | 4 +--- - src/bookmarks/ephy-favorites-menu.c | 3 --- - src/bookmarks/ephy-new-bookmark.c | 4 ---- - src/bookmarks/ephy-topics-selector.c | 2 -- - src/ephy-encoding-dialog.c | 3 --- - src/ephy-encoding-menu.c | 6 ----- - src/ephy-favicon-action.c | 2 -- - src/ephy-location-action.c | 1 - - src/ephy-notebook.c | 3 --- - src/ephy-session.c | 5 ---- - src/ephy-shell.c | 10 -------- - src/ephy-tab.c | 9 -------- - src/ephy-tabs-menu.c | 3 --- - src/ephy-window.c | 9 -------- - src/pdm-dialog.c | 3 --- - src/ppview-toolbar.c | 2 -- - 30 files changed, 48 insertions(+), 120 deletions(-) - -commit 9b7fb421b624db43270af92c9742961a07260b90 -Author: Meelad Zakaria -Date: Wed Oct 27 16:08:14 2004 +0000 - - Updated Persian translation. - - 2004-10-27 Meelad Zakaria - - * fa.po: Updated Persian translation. - - po/ChangeLog | 4 + - po/fa.po | 629 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 376 insertions(+), 257 deletions(-) - -commit 218f71c4db0bebc9cee487484470d391c7020809 -Author: Christian Persch -Date: Wed Oct 27 13:58:55 2004 +0000 - - Remove unused signal from EphyNodeView struct. - - 2004-10-27 Christian Persch - - * lib/widgets/ephy-node-view.h: - - Remove unused signal from EphyNodeView struct. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-node-view.h | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit a4feb18c20c79c1929fe2fe6d7c0828077dc18f8 -Author: Christian Persch -Date: Wed Oct 27 13:00:49 2004 +0000 - - Fix label of "All" topic on bookmarksbar. - - 2004-10-27 Christian Persch - - * src/bookmarks/ephy-topic-action.c: - (ephy_topic_action_sync_label), (connect_proxy): - - Fix label of "All" topic on bookmarksbar. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-topic-action.c | 7 +++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 6e074fb3eb0f51be6ca04c440d7435b965312d89 -Author: Christian Persch -Date: Wed Oct 27 12:44:52 2004 +0000 - - Avoid strdups in entry completion func. Patch by Peter Harvey. - - 2004-10-27 Christian Persch - - * lib/widgets/ephy-location-entry.c: (completion_func): - - Avoid strdups in entry completion func. Patch by Peter Harvey. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 37 ++++++++++++++++++------------------- - 2 files changed, 24 insertions(+), 19 deletions(-) - -commit 86c2f402bbc078f538bccce5b2c52546fb7a185a -Author: Christian Persch -Date: Tue Oct 26 22:14:05 2004 +0000 - - Use ellipsising labels to shorten the bookmarks and topics titles in - - 2004-10-27 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (ephy_bookmark_action_sync_label), (connect_proxy), - (bookmark_changed_cb): - * src/bookmarks/ephy-bookmarks-menu.c: (connect_proxy_cb), - (ensure_bookmark_actions), (ephy_bookmarks_menu_rebuild): - * src/bookmarks/ephy-favorites-menu.c: (connect_proxy_cb), - (ephy_favorites_menu_rebuild): - * src/bookmarks/ephy-topic-action.c: - (ephy_topic_action_sync_label), (append_bookmarks_menu), - (build_topics_menu), (connect_proxy), (topic_changed_cb): - - Use ellipsising labels to shorten the bookmarks and topics titles in - menus, instead of chopping the strings off at the end. - Fixes bug #147765. - - Use gtk_entry_set_width_chars() to set the smart bookmark entry width, - not gtk_widget_set_size_request(). - - ChangeLog | 20 ++++++++++ - src/bookmarks/ephy-bookmark-action.c | 77 ++++++++++++++++++------------------ - src/bookmarks/ephy-bookmarks-menu.c | 22 +++++++++++ - src/bookmarks/ephy-favorites-menu.c | 22 ++++++++++- - src/bookmarks/ephy-topic-action.c | 77 +++++++++++++++++++----------------- - 5 files changed, 142 insertions(+), 76 deletions(-) - -commit d51326e6b1a458b57cfae445fda4ed4b97b715a6 -Author: Christian Persch -Date: Tue Oct 26 20:47:57 2004 +0000 - - Revert last change, it's a warning after all. - - 2004-10-26 Christian Persch - - * src/ephy-session.c: (offer_to_resume): - - Revert last change, it's a warning after all. - - ChangeLog | 6 ++++++ - src/ephy-session.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 04866901c3e69b6254aecb1a370ed87d2ef4491c -Author: Christian Persch -Date: Tue Oct 26 20:15:01 2004 +0000 - - Make the confirm-close-with-form-data dialogue window modal, instead of - - 2004-10-26 Christian Persch - - * src/ephy-window.c: (confirm_close_with_modified_forms): - - Make the confirm-close-with-form-data dialogue window modal, instead - of app modal. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 11 +++++++++++ - 2 files changed, 18 insertions(+) - -commit d87cdef42b985761672186b11ba583fa871b4ef2 -Author: Christian Persch -Date: Tue Oct 26 20:11:54 2004 +0000 - - Make the crash revovery dialogue GTK_MESSAGE_QUESTION instead of _WARNING. - - 2004-10-26 Christian Persch - - * src/ephy-session.c: (offer_to_resume): - - Make the crash revovery dialogue GTK_MESSAGE_QUESTION instead of - _WARNING. - - ChangeLog | 7 +++++++ - src/ephy-session.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit e254f96f141f66bd7669426d3a8543047d734bfa -Author: Christian Persch -Date: Tue Oct 26 20:02:22 2004 +0000 - - Use new gtk+ HIG message dialogue API. Fixes bug #130232. - - 2004-10-26 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): - * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct): - * src/ephy-history-window.c: (confirmation_dialog_response_cb), - (confirmation_dialog_construct), (cmd_clear): - * src/ephy-session.c: (offer_to_resume): - * src/ephy-window.c: (confirm_close_with_modified_forms): - - Use new gtk+ HIG message dialogue API. Fixes bug #130232. - - ChangeLog | 11 ++++ - lib/ephy-gui.c | 55 +++++++------------ - src/bookmarks/ephy-new-bookmark.c | 67 ++++++---------------- - src/ephy-history-window.c | 113 ++++++++++---------------------------- - src/ephy-session.c | 76 ++++++++----------------- - src/ephy-window.c | 60 ++++++-------------- - 6 files changed, 118 insertions(+), 264 deletions(-) - -commit c463cbf5210374398fd6897eedbc2b3b2c2578f6 -Author: Martin Willemoes Hansen -Date: Tue Oct 26 19:48:39 2004 +0000 - - da.po: Fixed credits - - po/da.po | 107 ++++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 64 insertions(+), 43 deletions(-) - -commit 420b17b1dbc5d3ebea10ea44c155b34c118a6f99 -Author: Christian Persch -Date: Tue Oct 26 18:51:21 2004 +0000 - - Use gtk_widget_get_settings on the EphyDialog's window, not on the dialog - - 2004-10-26 Christian Persch - - * embed/downloader-view.c: (downloader_view_add_download): - - Use gtk_widget_get_settings on the EphyDialog's window, not on the - dialog itself. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit a1ef272177c238c5e1b6196b3ed4c8f948e236f3 -Author: Christian Persch -Date: Mon Oct 25 19:26:23 2004 +0000 - - Use named icon for the logo in about dialogue. - - 2004-10-25 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Use named icon for the logo in about dialogue. - - ChangeLog | 6 ++++++ - src/window-commands.c | 20 ++------------------ - 2 files changed, 8 insertions(+), 18 deletions(-) - -commit edd48d92ae634d1b32269ddb1d2b3152eb800169 -Author: Christian Persch -Date: Mon Oct 25 19:19:13 2004 +0000 - - De-couple instantiation and initialisation of the extensions manager. - - 2004-10-25 Christian Persch - - * src/ephy-extensions-manager.c: (ephy_extensions_manager_init), - (ephy_extensions_manager_startup): - * src/ephy-extensions-manager.h: - * src/ephy-shell.c: (ephy_shell_get_extensions_manager): - - De-couple instantiation and initialisation of the extensions manager. - Fixes double-instance and weirdness and double-type-registration - on startup when extensions use the session in their instance_init. - - ChangeLog | 11 +++++++++++ - src/ephy-extensions-manager.c | 12 ++++++++++-- - src/ephy-extensions-manager.h | 2 ++ - src/ephy-shell.c | 2 ++ - 4 files changed, 25 insertions(+), 2 deletions(-) - -commit da7d0959009b472233de886affce4ed9a81b2475 -Author: Christian Persch -Date: Mon Oct 25 13:54:25 2004 +0000 - - Move window destruction after tab-removed signal emission. Fixes bug - - 2004-10-25 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_remove_tab): - * src/ephy-window.c: (ephy_window_get_active_tab): - - Move window destruction after tab-removed signal emission. - Fixes bug #151607. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 19 +++++++------------ - src/ephy-window.c | 1 - - 3 files changed, 15 insertions(+), 13 deletions(-) - -commit 46d371aa12282b3d8cd8549acb0898071b0097fe -Author: Christian Persch -Date: Mon Oct 25 13:43:02 2004 +0000 - - Fix return type of tab_delete slot. - - 2004-10-25 Christian Persch - - * src/ephy-notebook.h: - - Fix return type of tab_delete slot. - - ChangeLog | 6 ++++++ - src/ephy-notebook.h | 18 +++++++++--------- - 2 files changed, 15 insertions(+), 9 deletions(-) - -commit 0994e5f756dca8a0b4bb98da701132b733506a1b -Author: Christian Persch -Date: Mon Oct 25 12:42:06 2004 +0000 - - Unset the use-underline label property instead of doubling the - - 2004-10-25 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (connect_proxy), - (bookmark_changed_cb): - * src/bookmarks/ephy-topic-action.c: (create_menu_item), - (topic_changed_cb): - - Unset the use-underline label property instead of doubling the - underscores. Saves tons of strdups. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmark-action.c | 12 +++++++----- - src/bookmarks/ephy-topic-action.c | 22 +++++++--------------- - 3 files changed, 24 insertions(+), 20 deletions(-) - -commit a33d5f514695d3d487043397f3baf4f31cc92b73 -Author: Christian Persch -Date: Mon Oct 25 11:50:03 2004 +0000 - - Use gtk_icon_size_lookup_for_settings() here. - - 2004-10-25 Christian Persch - - * embed/downloader-view.c: (downloader_view_add_download): - * lib/widgets/ephy-spinner.c: (ephy_spinner_cache_get_images), - (ephy_spinner_size_request): - * src/ephy-notebook.c: (tab_label_style_set_cb): - * src/window-commands.c: (window_cmd_help_about): - - Use gtk_icon_size_lookup_for_settings() here. - - ChangeLog | 10 ++++++++++ - embed/downloader-view.c | 3 ++- - lib/widgets/ephy-spinner.c | 10 ++++++---- - src/ephy-notebook.c | 3 ++- - src/window-commands.c | 3 ++- - 5 files changed, 22 insertions(+), 7 deletions(-) - -commit ebe9e8c7f0333591c5120d9645f9a0c1d7ebd0a9 -Author: Christian Persch -Date: Sun Oct 24 18:18:23 2004 +0000 - - Add EPHY_NODE_CHANGED signal. Patch by Peter Harvey. - - 2004-10-24 Christian Persch - - * lib/ephy-node.c: (callback), (ephy_node_set_property), - (ephy_node_signal_connect_object), (match_signal_data), - (ephy_node_signal_disconnect_object): - * lib/ephy-node.h: - - Add EPHY_NODE_CHANGED signal. Patch by Peter Harvey. - - * src/bookmarks/ephy-bookmark-action.c: (favicon_cache_changed_cb), - (ephy_bookmark_action_sync_icon), - (ephy_bookmark_action_sync_label), (open_in_tab_activate_cb), - (open_in_window_activate_cb), (activate_cb), (drag_data_get_cb), - (properties_activate_cb), (bookmark_changed_cb), - (bookmark_destroy_cb), (ephy_bookmark_action_set_bookmark), - (ephy_bookmark_action_set_property), - (ephy_bookmark_action_get_property), - (ephy_bookmark_action_finalize), (ephy_bookmark_action_class_init), - (smart_child_added_cb), (smart_child_removed_cb), - (ephy_bookmark_action_init), (ephy_bookmark_action_new): - * src/bookmarks/ephy-bookmark-action.h: - * src/bookmarks/ephy-bookmarks-menu.c: (add_action_for_bookmark): - * src/bookmarks/ephy-bookmarksbar.c: - (ephy_bookmarksbar_action_request): - * src/bookmarks/ephy-favorites-menu.c: - (ephy_favorites_menu_rebuild): - * src/bookmarks/ephy-topic-action.c: (build_menu), - (topic_changed_cb), (ephy_topic_action_set_topic), - (ephy_topic_action_set_property), (ephy_topic_action_get_property), - (ephy_topic_action_class_init), (ephy_topic_action_init), - (ephy_topic_action_new): - * src/bookmarks/ephy-topic-action.h: - - Changed ephy_[bookmark|topic]_action_new from node-id to node. Saves one - round-trip node->node-id->node. - - Save lots of strdups by using the node's properties directly, instead of - storing them again in the action. - - Listen to changes on the node itself, not for child-changed on the - bookmarks node. - - ChangeLog | 42 +++++ - lib/ephy-node.c | 41 +++++ - lib/ephy-node.h | 6 + - src/bookmarks/ephy-bookmark-action.c | 329 +++++++++++++++++------------------ - src/bookmarks/ephy-bookmark-action.h | 3 +- - src/bookmarks/ephy-bookmarks-menu.c | 2 +- - src/bookmarks/ephy-bookmarksbar.c | 4 +- - src/bookmarks/ephy-favorites-menu.c | 3 +- - src/bookmarks/ephy-topic-action.c | 162 +++++++---------- - src/bookmarks/ephy-topic-action.h | 10 +- - 10 files changed, 321 insertions(+), 281 deletions(-) - -commit b215d12909f4fb3e27a146b03caa896a1f95d38c -Author: Christian Persch -Date: Sat Oct 23 20:52:03 2004 +0000 - - file .cvsignore was initially added on branch webcore-branch. - -commit 10288e80d44a9e9c408024f46a41ef10f9175154 -Author: Christian Persch -Date: Sat Oct 23 20:49:26 2004 +0000 - - Chain up to parent's dispose handler. - - 2004-10-23 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: (mozilla_embed_single_dispose): - * lib/ephy-dialog.c: (ephy_dialog_dispose): - * src/ephy-session.c: (ephy_session_dispose): - - Chain up to parent's dispose handler. - - ChangeLog | 8 ++++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 ++ - lib/ephy-dialog.c | 2 ++ - src/ephy-session.c | 2 ++ - 4 files changed, 14 insertions(+) - -commit eb5266d8aedcac4435fd01ba2639b3a5f5349ef5 -Author: Xan Lopez -Date: Sat Oct 23 20:20:16 2004 +0000 - - file Makefile.am was initially added on branch webcore-branch. - -commit 5d7920789d68648ee6ca43b48181dbd74b5fc6ed -Author: Xan Lopez -Date: Sat Oct 23 20:19:52 2004 +0000 - - file webcore-embed.c was initially added on branch webcore-branch. - -commit ab4d545ec9a9f857df601c04dc64b3449c52907c -Author: Xan Lopez -Date: Sat Oct 23 20:19:27 2004 +0000 - - file webcore-embed-persist.c was initially added on branch webcore-branch. - -commit 1bdadedc7ed82cbd45565d2a6cc81735a5f4ba6e -Author: Xan Lopez -Date: Sat Oct 23 20:19:27 2004 +0000 - - file webcore-embed-persist.h was initially added on branch webcore-branch. - -commit 610e5cc06a0f520d819a8af11e23272a24de6d85 -Author: Xan Lopez -Date: Sat Oct 23 20:19:12 2004 +0000 - - file webcore-embed-single.c was initially added on branch webcore-branch. - -commit bb91df6296b51896eac2987c02d38aa6aba82221 -Author: Xan Lopez -Date: Sat Oct 23 20:19:12 2004 +0000 - - file webcore-embed-single.h was initially added on branch webcore-branch. - -commit 0e53172e606f1a8857061cad638bed51fbcc6fb1 -Author: Christian Persch -Date: Sat Oct 23 16:49:18 2004 +0000 - - Annotate "if (type == 0)" in get_type functions with G_UNLIKELY, like the - - 2004-10-23 Christian Persch - - * embed/downloader-view.c: (downloader_view_get_type): - * embed/ephy-command-manager.c: (ephy_command_manager_get_type): - * embed/ephy-cookie-manager.c: (ephy_cookie_get_type), - (ephy_cookie_manager_get_type): - * embed/ephy-download.c: (ephy_download_get_type): - * embed/ephy-embed-dialog.c: (ephy_embed_dialog_get_type): - * embed/ephy-embed-event.c: (ephy_embed_event_get_type): - * embed/ephy-embed-persist.c: (ephy_embed_persist_get_type): - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_type): - * embed/ephy-embed-single.c: (ephy_embed_single_get_type): - * embed/ephy-embed.c: (ephy_embed_get_type): - * embed/ephy-encodings.c: (ephy_encodings_get_type): - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get_type): - * embed/ephy-history.c: (ephy_history_get_type): - * embed/ephy-password-manager.c: (ephy_password_info_get_type), - (ephy_password_manager_get_type): - * embed/ephy-permission-manager.c: (ephy_permission_info_get_type), - (ephy_permission_manager_get_type): - * embed/find-dialog.c: (find_dialog_get_type): - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-embed-event.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_get_type): - * lib/egg/egg-toolbar-editor.c: (egg_toolbar_editor_get_type): - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_get_type): - * lib/ephy-dialog.c: (ephy_dialog_get_type): - * lib/ephy-file-chooser.c: (ephy_file_chooser_get_type): - * lib/ephy-loader.c: (ephy_loader_get_type): - * lib/ephy-module.c: (ephy_module_get_type): - * lib/ephy-node-db.c: (ephy_node_db_get_type): - * lib/ephy-node-filter.c: (ephy_node_filter_get_type): - * lib/ephy-shlib-loader.c: (ephy_shlib_loader_get_type): - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_get_type): - * lib/widgets/ephy-node-view.c: (ephy_node_view_get_type): - * lib/widgets/ephy-search-entry.c: (ephy_search_entry_get_type): - * lib/widgets/ephy-spinner.c: (ephy_spinner_cache_get_type), - (ephy_spinner_get_type): - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_get_type): - * lib/widgets/ephy-tree-model-sort.c: - (ephy_tree_model_sort_get_type): - * lib/widgets/ephy-zoom-action.c: (ephy_zoom_action_get_type): - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_get_type): - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_get_type): - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_get_type): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_get_type): - * src/bookmarks/ephy-bookmarks-menu.c: - (ephy_bookmarks_menu_get_type): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_get_type): - * src/bookmarks/ephy-bookmarksbar-model.c: - (ephy_bookmarksbar_model_get_type): - * src/bookmarks/ephy-bookmarksbar.c: (ephy_bookmarksbar_get_type): - * src/bookmarks/ephy-favorites-menu.c: - (ephy_favorites_menu_get_type): - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_get_type): - * src/bookmarks/ephy-topic-action.c: (ephy_topic_action_get_type): - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_get_type): - * src/ephy-completion-model.c: (ephy_completion_model_get_type): - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_get_type): - * src/ephy-encoding-menu.c: (ephy_encoding_menu_get_type): - * src/ephy-extension.c: (ephy_extension_get_type): - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_get_type): - * src/ephy-favicon-action.c: (ephy_favicon_action_get_type): - * src/ephy-go-action.c: (ephy_go_action_get_type): - * src/ephy-history-window.c: (ephy_history_window_get_type): - * src/ephy-location-action.c: (ephy_location_action_get_type): - * src/ephy-navigation-action.c: (ephy_navigation_action_get_type): - * src/ephy-notebook.c: (ephy_notebook_get_type): - * src/ephy-session.c: (ephy_session_get_type): - * src/ephy-shell.c: (ephy_shell_get_type): - * src/ephy-statusbar.c: (ephy_statusbar_get_type): - * src/ephy-tab.c: (ephy_tab_get_type): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_get_type): - * src/ephy-toolbars-model.c: (ephy_toolbars_model_get_type): - * src/ephy-window.c: (ephy_window_get_type): - * src/pdm-dialog.c: (pdm_dialog_get_type): - * src/ppview-toolbar.c: (ppview_toolbar_get_type): - * src/prefs-dialog.c: (prefs_dialog_get_type): - * src/toolbar.c: (toolbar_get_type): - - Annotate "if (type == 0)" in get_type functions with G_UNLIKELY, - like the G_TYPE_DEFINE macros do. - - ChangeLog | 93 ++++++++++++++++++++++++++++++++ - TODO | 12 +++++ - embed/downloader-view.c | 12 ++--- - embed/ephy-command-manager.c | 2 +- - embed/ephy-cookie-manager.c | 4 +- - embed/ephy-download.c | 12 ++--- - embed/ephy-embed-dialog.c | 12 ++--- - embed/ephy-embed-event.c | 2 +- - embed/ephy-embed-persist.c | 2 +- - embed/ephy-embed-shell.c | 2 +- - embed/ephy-embed-single.c | 2 +- - embed/ephy-embed.c | 13 +++-- - embed/ephy-encodings.c | 12 ++--- - embed/ephy-favicon-cache.c | 2 +- - embed/ephy-history.c | 2 +- - embed/ephy-password-manager.c | 4 +- - embed/ephy-permission-manager.c | 4 +- - embed/find-dialog.c | 12 ++--- - embed/mozilla/mozilla-download.cpp | 22 ++++---- - embed/mozilla/mozilla-embed-event.cpp | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 13 +++-- - embed/mozilla/mozilla-embed-single.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 18 +++---- - lib/egg/egg-editable-toolbar.c | 12 ++--- - lib/egg/egg-toolbar-editor.c | 12 ++--- - lib/egg/egg-toolbars-model.c | 2 +- - lib/ephy-dialog.c | 2 +- - lib/ephy-file-chooser.c | 2 +- - lib/ephy-loader.c | 2 +- - lib/ephy-module.c | 2 +- - lib/ephy-node-db.c | 16 +++--- - lib/ephy-node-filter.c | 12 ++--- - lib/ephy-shlib-loader.c | 2 +- - lib/widgets/ephy-location-entry.c | 12 ++--- - lib/widgets/ephy-node-view.c | 12 ++--- - lib/widgets/ephy-search-entry.c | 12 ++--- - lib/widgets/ephy-spinner.c | 4 +- - lib/widgets/ephy-tree-model-node.c | 14 ++--- - lib/widgets/ephy-tree-model-sort.c | 14 ++--- - lib/widgets/ephy-zoom-action.c | 2 +- - lib/widgets/ephy-zoom-control.c | 2 +- - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 12 ++--- - src/bookmarks/ephy-bookmarks-editor.c | 12 ++--- - src/bookmarks/ephy-bookmarks-menu.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 2 +- - src/bookmarks/ephy-bookmarksbar-model.c | 2 +- - src/bookmarks/ephy-bookmarksbar.c | 2 +- - src/bookmarks/ephy-favorites-menu.c | 12 ++--- - src/bookmarks/ephy-new-bookmark.c | 12 ++--- - src/bookmarks/ephy-topic-action.c | 2 +- - src/bookmarks/ephy-topics-selector.c | 2 +- - src/ephy-completion-model.c | 14 ++--- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-encoding-menu.c | 12 ++--- - src/ephy-extension.c | 2 +- - src/ephy-extensions-manager.c | 2 +- - src/ephy-favicon-action.c | 2 +- - src/ephy-go-action.c | 2 +- - src/ephy-history-window.c | 12 ++--- - src/ephy-location-action.c | 3 +- - src/ephy-navigation-action.c | 2 +- - src/ephy-notebook.c | 12 ++--- - src/ephy-session.c | 2 +- - src/ephy-shell.c | 2 +- - src/ephy-statusbar.c | 2 +- - src/ephy-tab.c | 12 ++--- - src/ephy-tabs-menu.c | 12 ++--- - src/ephy-toolbars-model.c | 2 +- - src/ephy-window.c | 2 +- - src/pdm-dialog.c | 2 +- - src/ppview-toolbar.c | 2 +- - src/prefs-dialog.c | 2 +- - src/toolbar.c | 13 +++-- - 74 files changed, 339 insertions(+), 238 deletions(-) - -commit 786d8d71d03f87108bdfa13d3fa194347ea2ee0d -Author: Christian Persch -Date: Sat Oct 23 15:32:10 2004 +0000 - - Use gtk_selection_data_get_uris(). - - 2004-10-23 Christian Persch - - * lib/widgets/ephy-node-view.c: (drag_data_received_cb): - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - - Use gtk_selection_data_get_uris(). - - ChangeLog | 7 +++++++ - lib/widgets/ephy-node-view.c | 2 +- - src/ephy-notebook.c | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit 9f8919f41e8e768698cd71736c989d01f534a5d5 -Author: Žygimantas Beručka -Date: Sat Oct 23 15:04:22 2004 +0000 - - Updated Lithuanian translation. - - 2004-10-23 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 553 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 325 insertions(+), 232 deletions(-) - -commit 05c243f5df9e005b7b308bc859f265f02c444323 -Author: Francisco Javier F. Serrador -Date: Sat Oct 23 14:02:43 2004 +0000 - - Updated Spanish translation - - 2004-10-23 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation - - po/ChangeLog | 4 + - po/es.po | 924 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 496 insertions(+), 432 deletions(-) - -commit 998766fac24e978221dd61438757ae9331329db5 -Author: Miloslav Trmac -Date: Sat Oct 23 11:40:39 2004 +0000 - - Updated Czech translation. - - 2004-10-23 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 +++ - po/cs.po | 91 ++++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 59 insertions(+), 36 deletions(-) - -commit a0737098fd7fe276099a22fa33f547df27e152c1 -Author: Xan Lopez -Date: Sat Oct 23 11:25:02 2004 +0000 - - file webcore-embed.h was initially added on branch webcore-branch. - -commit c227c17359c0b87d3db9cba87cb953bfd88f2f10 -Author: Laurent Dhima -Date: Sat Oct 23 10:49:27 2004 +0000 - - Updated Albanian translation. - - 2004-10-23 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 +++ - po/sq.po | 88 +++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 56 insertions(+), 36 deletions(-) - -commit bd253f9a484f1209be2fc4bb6631b9fb997795e7 -Author: Görkem Çetin -Date: Sat Oct 23 08:08:43 2004 +0000 - - CVS_SILENT - - po/tr.po | 938 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 508 insertions(+), 430 deletions(-) - -commit c49ecfb21d284fce9ddc4b88920d8a57fa253ca6 -Author: Christian Persch -Date: Fri Oct 22 22:02:38 2004 +0000 - - Updating glib requirement - - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2432ddfee8e21a62a80e94d875508242a8034015 -Author: Christian Persch -Date: Fri Oct 22 21:52:45 2004 +0000 - - Only multiplex [attach|detach]_window to extensions implementing the - - 2004-10-22 Christian Persch - - * src/ephy-extensions-manager.c: (load_extension), - (unload_extension): - - Only multiplex [attach|detach]_window to extensions implementing the - EphyExtension interface. - - ChangeLog | 8 ++++++++ - src/ephy-extensions-manager.c | 19 ++++++++++++++----- - 2 files changed, 22 insertions(+), 5 deletions(-) - -commit 64ff5c590db02cddccc6088162747c2b69ccd87d -Author: Christian Persch -Date: Fri Oct 22 21:43:02 2004 +0000 - - Remove ephy_string_parse_uri_list, and use new glib function - - 2004-10-22 Christian Persch - - * lib/ephy-string.c: (ephy_string_double_underscores): - * lib/ephy-string.h: - * lib/widgets/ephy-node-view.c: (drag_data_received_cb): - * src/bookmarks/ephy-bookmarks-editor.c: (node_dropped_cb): - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - * src/ephy-window.c: (ephy_window_load_in_tabs): - * src/ephy-window.h: - - Remove ephy_string_parse_uri_list, and use new glib function - g_uri_list_extract_uris() instead. - - ChangeLog | 13 +++++++++ - lib/ephy-string.c | 52 ----------------------------------- - lib/ephy-string.h | 2 -- - lib/widgets/ephy-node-view.c | 8 +++--- - src/bookmarks/ephy-bookmarks-editor.c | 18 ++++++------ - src/ephy-notebook.c | 41 +++++++++++++-------------- - src/ephy-window.c | 17 +++++------- - src/ephy-window.h | 2 +- - 8 files changed, 56 insertions(+), 97 deletions(-) - -commit 2fca0657c1b30df95f4c7cc4d7d8801f4c6ff703 -Author: Adam Weinberger -Date: Fri Oct 22 20:16:17 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 +++ - po/en_CA.po | 80 ++++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 52 insertions(+), 32 deletions(-) - -commit 9c8fbdedf9173a553517471343d39fd1534c86af -Author: Christian Persch -Date: Fri Oct 22 17:26:15 2004 +0000 - - Indentation fixes - - src/ephy-favicon-action.c | 78 +++++++++++++++++++++++------------------------ - src/ephy-favicon-action.h | 20 ++++++------ - 2 files changed, 49 insertions(+), 49 deletions(-) - -commit 920972fed99ccae0e0c6471c72148ed400ef6dbb -Author: Martin Willemoes Hansen -Date: Fri Oct 22 16:10:39 2004 +0000 - - da.po: quick fix - - po/da.po | 18 +++++++++--------- - 1 file changed, 9 insertions(+), 9 deletions(-) - -commit f5c6fbe9fb682b8d9a26c3e27c8c2e609bf83970 -Author: Martin Willemoes Hansen -Date: Fri Oct 22 16:07:31 2004 +0000 - - Updated Danish translation. - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 882 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 475 insertions(+), 411 deletions(-) - -commit 1df51f70987dd8e32bcbc08dc5ee970be7b58e20 -Author: Christian Persch -Date: Fri Oct 22 15:59:07 2004 +0000 - - Add tooltip on close button. Thanks to spark for the string review; fixes - - 2004-10-22 Christian Persch - - * src/ephy-notebook.c: (build_tab_label): - - Add tooltip on close button. Thanks to spark for the string review; - fixes bug #155828. - - ChangeLog | 7 +++++++ - src/ephy-notebook.c | 3 +++ - 2 files changed, 10 insertions(+) - -commit 5e0872332cd0be1b5035df05805cc76ebb6ba820 -Author: Christian Persch -Date: Fri Oct 22 15:53:45 2004 +0000 - - Add tooltip on the drag handle. Fixes bug #155827. - - 2004-10-22 Christian Persch - - * src/ephy-favicon-action.c: (create_tool_item), (set_tooltip_cb), - (connect_proxy), (ephy_favicon_action_set_property), - (ephy_favicon_action_get_property): - * src/toolbar.c: (toolbar_setup_actions): - - Add tooltip on the drag handle. Fixes bug #155827. - - ChangeLog | 9 +++++++++ - src/ephy-favicon-action.c | 44 +++++++++++++++++++++++++++++++++----------- - src/toolbar.c | 1 + - 3 files changed, 43 insertions(+), 11 deletions(-) - -commit c32a9d9770aa342802bb8f8bdf5e54663b40437f -Author: Christian Persch -Date: Fri Oct 22 15:50:27 2004 +0000 - - Add tooltips on the arrows, and fix the tooltip on the "Up" button to be - - 2004-10-22 Christian Persch - - * src/ephy-navigation-action.c: (set_tooltip_cb), (connect_proxy), - (ephy_navigation_action_finalize), - (ephy_navigation_action_set_property), - (ephy_navigation_action_get_property), - (ephy_navigation_action_class_init): - * src/ephy-navigation-action.h: - * src/toolbar.c: (toolbar_setup_actions): - - Add tooltips on the arrows, and fix the tooltip on the "Up" button - to be consistent with nautilus. Thanks to spark for the string review; - fixes bug #155825. - - ChangeLog | 14 +++++++++++ - src/ephy-navigation-action.c | 57 ++++++++++++++++++++++++++++++++++++++------ - src/ephy-navigation-action.h | 6 ++--- - src/toolbar.c | 5 +++- - 4 files changed, 71 insertions(+), 11 deletions(-) - -commit 79d6fe5e18ec0e08e8ed165d47b41f012316ec55 -Author: Christian Persch -Date: Thu Oct 21 23:47:13 2004 +0000 - - Remove bogus debug output. - - 2004-10-22 Christian Persch - - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_register): - - Remove bogus debug output. - - ChangeLog | 7 +++++++ - src/ephy-extensions-manager.c | 3 --- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 359f14df6b76ebf2a236245f51cf69e1ae0f351e -Author: Christian Persch -Date: Thu Oct 21 23:46:13 2004 +0000 - - Add varargs version of ephy_dialog_get_control to get more than one - - 2004-10-22 Christian Persch - - * lib/ephy-dialog.c: (ephy_dialog_get_controls): - * lib/ephy-dialog.h: - - Add varargs version of ephy_dialog_get_control to get more - than one control at a time. - - * embed/downloader-view.c: (downloader_view_build_ui): - * src/pdm-dialog.c: (pdm_dialog_show_help), (pdm_dialog_init): - * src/prefs-dialog.c: (prefs_dialog_show_help), - (setup_add_language_dialog), (create_language_section), - (prefs_dialog_init): - - Use that. - - ChangeLog | 16 +++++++++++++ - embed/downloader-view.c | 11 +++++---- - lib/ephy-dialog.c | 25 ++++++++++++++++++++ - lib/ephy-dialog.h | 4 ++++ - src/pdm-dialog.c | 20 +++++++++------- - src/prefs-dialog.c | 62 +++++++++++++++++++++++++++---------------------- - 6 files changed, 97 insertions(+), 41 deletions(-) - -commit f946f0f12df551e2960114e1378785ab245ae0c6 -Author: Jordi Mallach -Date: Thu Oct 21 21:58:12 2004 +0000 - - Document bug number. - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a44e5de97e64e5c31bd21ef6115854c99c3bf15d -Author: Jordi Mallach -Date: Thu Oct 21 21:54:59 2004 +0000 - - Add manpage from Debian. - - ChangeLog | 7 +++++++ - doc/Makefile.am | 5 +++++ - doc/epiphany.1 | 46 ++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 58 insertions(+) - -commit 203cb87edb379f1ce020670bd29e69e0d6be8bf8 -Author: Christian Persch -Date: Thu Oct 21 19:26:19 2004 +0000 - - Better fix, taken from bug #135861. - - 2004-10-21 Christian Persch - - * lib/egg/eggstatusicon.c: (egg_status_icon_init), - (egg_status_icon_button_press): - - Better fix, taken from bug #135861. - - ChangeLog | 7 +++++++ - lib/egg/eggstatusicon.c | 23 +---------------------- - 2 files changed, 8 insertions(+), 22 deletions(-) - -commit 35ff42ccce89878195e06f2372baaf86b12f3f46 -Author: Christian Persch -Date: Thu Oct 21 19:21:03 2004 +0000 - - Activate with double-click, as per HIG. Fixes bug #152899. - - 2004-10-21 Christian Persch - - * lib/egg/eggstatusicon.c: (egg_status_icon_button_press): - - Activate with double-click, as per HIG. Fixes bug #152899. - - ChangeLog | 6 ++++++ - lib/egg/eggstatusicon.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 392f5b27dabf3c95cff363e172855892d47c9f32 -Author: Marcel Telka -Date: Wed Oct 20 02:57:33 2004 +0000 - - Updated Slovak translation. - - 2004-10-20 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 +++ - po/sk.po | 80 ++++++++++++++++++++++++++++-------------------------------- - 2 files changed, 41 insertions(+), 43 deletions(-) - -commit 51d9cb2d971c06038eeca975aa9b59027203f452 -Author: Christian Persch -Date: Tue Oct 19 17:35:31 2004 +0000 - - Fix import of bookmarks in root folder. Fixes bug #152443. - - 2004-10-19 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_xbel): - - Fix import of bookmarks in root folder. Fixes bug #152443. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-import.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e2adcaa9c470111f7e585fe959de4b17f75fef7e -Author: Laurent Dhima -Date: Tue Oct 19 16:42:34 2004 +0000 - - Updated Albanian translation. - - 2004-10-19 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 +++ - po/sq.po | 97 +++++++++++++++++++++++++++--------------------------------- - 2 files changed, 48 insertions(+), 53 deletions(-) - -commit 046fa12c2feffd1f4bf1a90e2362911eab211e50 -Author: Adam Hooper -Date: Mon Oct 18 20:02:40 2004 +0000 - - Validate extension XML files against an XSD Schema. - - ChangeLog | 10 +++ - data/epiphany-extension.xsd | 162 ++++++++---------------------------------- - src/ephy-extensions-manager.c | 103 +++++++++++++++++++++++++-- - 3 files changed, 137 insertions(+), 138 deletions(-) - -commit a419d70f176b0b0cbe40e6458cc17e57bbaec67d -Author: David Lodge -Date: Mon Oct 18 19:53:07 2004 +0000 - - Updated British English translation. - - 2004-10-18 David Lodge - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 ++++ - po/en_GB.po | 74 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 41 insertions(+), 37 deletions(-) - -commit d63d3f930c7f75dfbd94d00668da47894c4e2207 -Author: Christian Persch -Date: Mon Oct 18 15:07:14 2004 +0000 - - Autoupdated. - - 2004-10-18 Christian Persch - - * configure.ac: - - Autoupdated. - - ChangeLog | 6 ++++++ - configure.ac | 30 +++++++++++++++--------------- - 2 files changed, 21 insertions(+), 15 deletions(-) - -commit d41dabc5024f1a679cd26238c32114a48e64e581 -Author: Adam Weinberger -Date: Mon Oct 18 14:37:40 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 +++ - po/en_CA.po | 94 +++++++++++++++++++++++++++--------------------------------- - 2 files changed, 46 insertions(+), 52 deletions(-) - -commit d802463d42dbefa539b38c9305f3f507d7dd6219 -Author: Miloslav Trmac -Date: Mon Oct 18 09:51:21 2004 +0000 - - Updated Czech translation. - - 2004-10-18 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 +++ - po/cs.po | 103 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 55 insertions(+), 52 deletions(-) - -commit 5a302011e43729c5a3b66e22eb5bb411e5a6c9ed -Author: Vincent van Adrighem -Date: Sun Oct 17 23:11:32 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-10-18 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 ++++ - po/nl.po | 12 ++++++------ - 2 files changed, 10 insertions(+), 6 deletions(-) - -commit 4592c7a84eaf7a44ce617a14161d66da6b863f49 -Author: Adam Hooper -Date: Sun Oct 17 22:55:28 2004 +0000 - - Fix compilation - - ChangeLog | 7 +++++++ - doc/reference/Makefile.am | 1 - - doc/reference/epiphany.types | 2 -- - 3 files changed, 7 insertions(+), 3 deletions(-) - -commit c165cf94e08a9dec5f69b132d450192d75853648 -Author: Vincent van Adrighem -Date: Sun Oct 17 19:38:02 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-10-17 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 871 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 478 insertions(+), 397 deletions(-) - -commit aff20a83bfb6d11baf553ad5a1364331ccee62bf -Author: Christian Persch -Date: Sun Oct 17 15:33:00 2004 +0000 - - Fix EphyNode callback data destruction. Patch by Peter Harvey, fixes bug - - 2004-10-17 Christian Persch - - * lib/ephy-node.c: (signal_object_weak_notify), - (destroy_signal_data), (ephy_node_destroy), - (ephy_node_new_with_id), (ephy_node_unref): - - Fix EphyNode callback data destruction. Patch by Peter Harvey, - fixes bug #152718. - - ChangeLog | 9 +++++++ - lib/ephy-node.c | 81 +++++++++++++++++++++++++-------------------------------- - 2 files changed, 44 insertions(+), 46 deletions(-) - -commit 611e5407571e19353a98292d953e90e63073ba61 -Author: Christian Persch -Date: Sun Oct 17 13:39:12 2004 +0000 - - R lib/ephy-module-loader.c: R lib/ephy-module-loader.h: A - - 2004-10-17 Christian Persch - - * lib/Makefile.am: - R lib/ephy-module-loader.c: - R lib/ephy-module-loader.h: - A lib/ephy-module.c: (ephy_module_get_type), (ephy_module_load), - (ephy_module_unload), (ephy_module_get_path), - (ephy_module_new_object), (ephy_module_init), - (ephy_module_finalize), (ephy_module_class_init), - (ephy_module_new): - A lib/ephy-module.h: - - s/EphyModuleLoader/EphyModule/g since "loader" now means something - different. - - A lib/ephy-loader.c: (ephy_loader_get_type), (ephy_loader_type), - (ephy_loader_get_object), (ephy_loader_release_object): - A lib/ephy-loader.h: - - Generic object loader. - - A lib/ephy-shlib-loader.c: (ephy_shlib_loader_get_type), - (free_loader_data), (ephy_shlib_loader_init), - (ephy_shlib_loader_finalize), (find_library), (find_object), - (idle_unref), (impl_get_object), (impl_release_object), - (ephy_shlib_loader_iface_init), (ephy_shlib_loader_class_init): - A lib/ephy-shlib-loader.h: - - A .so loader. - - * src/Makefile.am: - * src/ephy-extensions-manager.c: (ephy_extensions_manager_load), - (ephy_extensions_manager_unload), - (ephy_extensions_manager_register), - (ephy_extensions_manager_get_extensions), (free_extension_info), - (free_loader_info), (find_extension_info), - (ephy_extensions_manager_load_file), (find_loader), - (get_loader_for_type), (attach_window), (load_extension), - (detach_window), (unload_extension), - (ephy_extensions_manager_load_dir), (active_extensions_notifier), - (ephy_extensions_manager_init), (ephy_extensions_manager_finalize), - (impl_attach_window), (impl_detach_window), - (ephy_extensions_manager_class_init): - * src/ephy-extensions-manager.h: - - Read extension descriptions from .xml, load them with the specified - loader (for now, just only .so is supported). - - * src/ephy-shell.c: (ephy_shell_finalize), - (ephy_shell_get_session), (ephy_shell_get_extensions_manager): - - Minor API change in extensions manager. - - * data/epiphany.schemas.in: - - Add extensions-manager-ui as default active extension. - - 2004-10-10 Marco Pesenti Gritti - - ChangeLog | 58 ++- - data/epiphany.schemas.in | 7 +- - lib/Makefile.am | 9 +- - lib/ephy-loader.c | 71 ++++ - lib/ephy-loader.h | 66 ++++ - lib/ephy-module-loader.c | 205 ---------- - lib/ephy-module-loader.h | 47 --- - lib/ephy-module.c | 205 ++++++++++ - lib/ephy-module.h | 48 +++ - lib/ephy-shlib-loader.c | 256 +++++++++++++ - lib/ephy-shlib-loader.h | 57 +++ - src/Makefile.am | 2 +- - src/ephy-extensions-manager.c | 867 ++++++++++++++++++++++++++++++------------ - src/ephy-extensions-manager.h | 44 ++- - src/ephy-shell.c | 38 +- - 15 files changed, 1446 insertions(+), 534 deletions(-) - -commit c21eba3c01185673b2ab4e7ceee995f6f52b6f25 -Author: Hasbullah Bin Pit -Date: Sat Oct 16 14:31:08 2004 +0000 - - Updated Malay translation. - - 2004-10-16 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - - po/ChangeLog | 10 +- - po/ms.po | 1294 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 763 insertions(+), 541 deletions(-) - -commit 76c2bb23955bcc2d4c34b602511466ac8aaa1a8d -Author: Danilo Šegan -Date: Fri Oct 15 21:08:33 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 858 +++++++++++++++++++++++++++++++--------------------------- - po/sr@Latn.po | 858 +++++++++++++++++++++++++++++++--------------------------- - 3 files changed, 926 insertions(+), 794 deletions(-) - -commit 546924d8fd3c7b5ab7bb7087aacf13ab24ab4a6b -Author: Alexander Shopov -Date: Fri Oct 15 05:48:33 2004 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2004-10-15 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov - - po/ChangeLog | 11 +- - po/bg.po | 840 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 455 insertions(+), 396 deletions(-) - -commit d8c596997e26b412c24e563f0174baa9e4bbc0e1 -Author: David Lodge -Date: Wed Oct 13 21:00:34 2004 +0000 - - Updated British English translation. - - 2004-10-13 David Lodge - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 ++ - po/en_GB.po | 170 +++++++++++++++++++++++++++++++++++++++++------------------ - 2 files changed, 122 insertions(+), 52 deletions(-) - -commit 701ea3b5b6c7a1021ec0fae39eb9dd06aa97b320 -Author: Marcel Telka -Date: Sun Oct 10 16:49:16 2004 +0000 - - Updated Slovak translation. - - 2004-10-10 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++ - po/sk.po | 170 +++++++++++++++++++++++++++++++++++++++++------------------ - 2 files changed, 122 insertions(+), 52 deletions(-) - -commit ef0d06b1cca990d13d0f1e3e051248e795c4d79b -Author: Marco Pesenti Gritti -Date: Sun Oct 10 16:03:53 2004 +0000 - - reviewed by: Christian Persch - - 2004-10-10 Marco Pesenti Gritti - - reviewed by: Christian Persch - - * data/glade/print.glade: - * embed/ephy-embed-single.c: (ephy_embed_single_get_printer_list): - * embed/ephy-embed-single.h: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EphyUtils.h: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/MozillaPrivate.h: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/print-dialog.c: (ephy_print_dialog_new): - * lib/ephy-dialog.c: (set_combo_box_from_value): - - Move current MozillaPrivate helpers to EphyUtils. - Use MozillaPrivate for stuff that needs mozilla - internal strings. - - Support multiple printers in the print dialog. - This is actually a bug fix because on several - distributions using hardcoded Poscript/default - will simply not work at all. - - ChangeLog | 33 ++++++ - data/glade/print.glade | 35 +++--- - embed/ephy-embed-single.c | 7 ++ - embed/ephy-embed-single.h | 15 ++- - embed/mozilla/ContentHandler.cpp | 6 +- - embed/mozilla/EphyBrowser.cpp | 3 +- - embed/mozilla/EphyHeaderSniffer.cpp | 1 - - embed/mozilla/EphyUtils.cpp | 142 ++++++++++++++++++++++++ - embed/mozilla/EphyUtils.h | 18 ++- - embed/mozilla/FilePicker.cpp | 4 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 4 +- - embed/mozilla/GtkNSSDialogs.cpp | 18 +-- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 4 +- - embed/mozilla/MozillaPrivate.cpp | 177 +++++++----------------------- - embed/mozilla/MozillaPrivate.h | 16 +-- - embed/mozilla/PrintingPromptService.cpp | 8 +- - embed/mozilla/mozilla-embed-single.cpp | 9 +- - embed/mozilla/mozilla-embed.cpp | 1 - - embed/print-dialog.c | 57 ++++++++-- - lib/ephy-dialog.c | 8 +- - 20 files changed, 344 insertions(+), 222 deletions(-) - -commit 840e12a02b3e26c0697b81af8bdfdb5398017fb8 -Author: Christian Persch -Date: Sun Oct 10 15:17:22 2004 +0000 - - Remove duplicate AM_PROG_INTLTOOL, fixes bug #155028. Use - - 2004-10-10 Christian Persch - - * configure.ac: - * src/Makefile.am: - - Remove duplicate AM_PROG_INTLTOOL, fixes bug #155028. - Use AM_GLIB_DEFINE_LOCALEDIR to define locale dir. - - ChangeLog | 8 ++++++++ - configure.ac | 2 +- - src/Makefile.am | 3 +-- - 3 files changed, 10 insertions(+), 3 deletions(-) - -commit 4b032c0d606c8ddacdb117bcaa0d36d6ed2b8fe9 -Author: Christian Persch -Date: Sun Oct 10 14:03:19 2004 +0000 - - Fix mistranslated "system-language" string. - - 2004-10-10 Christian Persch - - * fr.po: - - Fix mistranslated "system-language" string. - - po/ChangeLog | 6 ++++++ - po/fr.po | 2 +- - po/mk.po | 2 +- - 3 files changed, 8 insertions(+), 2 deletions(-) - -commit 8b6eb1a6a87b8a7e220dfdb3557e79eaed783fa0 -Author: Roozbeh Pournader -Date: Sun Oct 10 13:27:24 2004 +0000 - - Updated Persian translation by Meelad Zakaria . - - 2004-10-10 Roozbeh Pournader - - * fa.po: Updated Persian translation by Meelad Zakaria - . - - po/ChangeLog | 5 + - po/fa.po | 1917 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 997 insertions(+), 925 deletions(-) - -commit 6fedf51b69b510a4504d63126ab8a79e172e0097 -Author: Miloslav Trmac -Date: Sat Oct 9 22:22:51 2004 +0000 - - Updated Czech translation. - - 2004-10-10 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 160 +++++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 120 insertions(+), 44 deletions(-) - -commit 2eb922a0b9f3cbb3b020cf2f8e18e6a8bc908ab5 -Author: Laurent Dhima -Date: Sat Oct 9 14:59:28 2004 +0000 - - Updated Albanian translation. - - 2004-10-09 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 839 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 445 insertions(+), 398 deletions(-) - -commit ffadac2886d8cc191bff8e919532c1d5c3d0b929 -Author: Christian Persch -Date: Fri Oct 8 21:11:17 2004 +0000 - - No circular dependencies anymore. - - 2004-10-08 Christian Persch - - * src/ephy-tab.c: - * src/ephy-tab.h: - * src/ephy-window.c: - * src/ephy-window.h: - - No circular dependencies anymore. - - ChangeLog | 9 +++++++++ - src/ephy-tab.c | 2 +- - src/ephy-tab.h | 9 +++------ - src/ephy-window.c | 2 +- - src/ephy-window.h | 12 +++++------- - 5 files changed, 19 insertions(+), 15 deletions(-) - -commit 4572d3fa946660dc1c2b869453a0fbd475f36d42 -Author: Adam Weinberger -Date: Fri Oct 8 20:47:17 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 156 +++++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 117 insertions(+), 43 deletions(-) - -commit 52584020dd55c64d632c225fb17b8952538dbf1d -Author: Christian Persch -Date: Fri Oct 8 13:44:46 2004 +0000 - - When adding a bookmark, check if it has same node ID as one scheduled for - - 2004-10-08 Christian Persch - - * src/bookmarks/ephy-bookmarks-menu.c: (bookmark_added_cb): - - When adding a bookmark, check if it has same node ID as one - scheduled for removal, and if so, process the removal immediately. - Fixes bug #154805. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-menu.c | 17 +++++++++++++++++ - 2 files changed, 25 insertions(+) - -commit 7c730da7a711402b5b60576f00652450a3a4f2f9 -Author: Marco Pesenti Gritti -Date: Fri Oct 8 12:24:54 2004 +0000 - - reviewed by: Christian Persch - - 2004-10-08 Marco Pesenti Gritti - - reviewed by: Christian Persch - - * src/ephy-window.c: (get_name_from_address_value), - (update_popups_tooltips), (show_embed_popup): - - Add tooltips for context menus. Fix #151764 - - ChangeLog | 9 ++++ - src/ephy-window.c | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++--- - 2 files changed, 133 insertions(+), 7 deletions(-) - -commit 99739fa78091fb41ccd2431b1a5249a8d24d2287 -Author: Marco Pesenti Gritti -Date: Fri Oct 8 12:19:35 2004 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/bookmarks/ephy-new-bookmark.c | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -commit 244b0d64db282670ab2f0d6baa49366708ad26e8 -Author: Marco Pesenti Gritti -Date: Fri Oct 8 12:18:58 2004 +0000 - - reviewed by: Christian Persch - - 2004-10-08 Marco Pesenti Gritti - - reviewed by: Christian Persch - - * lib/ephy-dialog.c: (setup_default_size): - * lib/ephy-state.c: (create_window_node), (ephy_state_add_window): - * lib/ephy-state.h: - * src/bookmarks/ephy-bookmark-properties.c: (build_ui): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_construct): - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/ephy-window.c: (ephy_window_show): - * src/pdm-dialog.c: (show_cookies_properties): - * src/window-commands.c: (window_cmd_edit_toolbar): - - Allow to set the default window state to maximize. - Default to maximize for the browser window. - - ChangeLog | 19 +++++++++++++++++++ - lib/ephy-dialog.c | 2 +- - lib/ephy-state.c | 7 +++++-- - lib/ephy-state.h | 1 + - src/ephy-history-window.c | 2 +- - src/ephy-window.c | 2 +- - src/pdm-dialog.c | 3 ++- - src/window-commands.c | 5 ++--- - 8 files changed, 32 insertions(+), 9 deletions(-) - -commit 38fd32a8c0541a959537161ac7dd8737a0c86b7b -Author: Marco Pesenti Gritti -Date: Thu Oct 7 11:04:25 2004 +0000 - - reviewed by: Christian Persch - - 2004-10-07 Marco Pesenti Gritti - - reviewed by: Christian Persch - - * configure.ac: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - - Initialize plugins path env var for backward compatibility - - ChangeLog | 10 ++++++++++ - configure.ac | 3 +++ - embed/mozilla/Makefile.am | 1 + - embed/mozilla/mozilla-embed-single.cpp | 18 ++++++++++++++++++ - 4 files changed, 32 insertions(+) - -commit e100320fecf3a8432d2506b48e62c10cd9a13224 -Author: Christian Persch -Date: Wed Oct 6 20:09:48 2004 +0000 - - Fix a mistranslation. - - 2004-10-06 Christian Persch - - * en_GB.po: Fix a mistranslation. - - po/ChangeLog | 4 ++++ - po/en_GB.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 5a2245cfe7d3e97b8818c0ac125a9f2a0fc98ff0 -Author: David Lodge -Date: Wed Oct 6 18:32:54 2004 +0000 - - Updated British English translation. - - 2004-10-06 David Lodge - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 274 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 144 insertions(+), 134 deletions(-) - -commit f7ed0f21b327537b5a843d056e4ee7a03515559a -Author: Miloslav Trmac -Date: Wed Oct 6 16:33:41 2004 +0000 - - Updated Czech translation. - - 2004-10-06 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 259 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 134 insertions(+), 129 deletions(-) - -commit 074f8119c1372644057336e5ad4eeff0e15b5818 -Author: Adam Weinberger -Date: Wed Oct 6 15:36:37 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 286 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 147 insertions(+), 143 deletions(-) - -commit 38086da77c689b1f04849ce16f9db7e37af14edb -Author: Christian Persch -Date: Wed Oct 6 13:27:52 2004 +0000 - - Remove unnecessary include. - - 2004-10-06 Christian Persch - - * embed/ephy-embed.h: - - Remove unnecessary include. - - ChangeLog | 6 ++++++ - embed/ephy-embed.h | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit f930448d67fd82019311755a12e0972f776ddaa7 -Author: Christian Persch -Date: Wed Oct 6 13:27:25 2004 +0000 - - Notify when entering or leaving print preview mode. Fixes bug #154591. - - 2004-10-06 Christian Persch - - * src/ephy-window.c: (ephy_window_set_property), - (ephy_window_get_property), (ephy_window_class_init), - (ephy_window_set_print_preview): - - Notify when entering or leaving print preview mode. Fixes bug #154591. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 21 +++++++++++++++++++-- - 2 files changed, 27 insertions(+), 2 deletions(-) - -commit 1811e906901628e83dfe6439c75f5399e8ec2d9b -Author: Marcel Telka -Date: Tue Oct 5 21:16:43 2004 +0000 - - Updated Slovak translation. - - 2004-10-05 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++++ - po/sk.po | 14 +++++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit 5e7e28519b8114fde74db514064c3c1da91765e7 -Author: Marcel Telka -Date: Tue Oct 5 20:18:55 2004 +0000 - - Updated Slovak translation. - - 2004-10-05 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 1242 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 674 insertions(+), 572 deletions(-) - -commit d7ed6369fbd29d4ab1ed22739d2859dab1b9a3fa -Author: Christian Persch -Date: Tue Oct 5 19:58:16 2004 +0000 - - Grammar fix. Fixes bug #154605. - - 2004-10-05 Christian Persch - - * data/epiphany.schemas.in: - - Grammar fix. Fixes bug #154605. - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 07dfd77348e366b922bf12e0ae51619cfb5636d5 -Author: Christian Persch -Date: Tue Oct 5 19:49:16 2004 +0000 - - Fix a warning, noticed by Crispin. - - 2004-10-05 Christian Persch - - * src/ephy-navigation-action.c: (build_back_or_forward_menu), - (build_up_menu), (menu_activated_cb): - - Fix a warning, noticed by Crispin. - - ChangeLog | 7 +++++++ - src/ephy-navigation-action.c | 10 +++++----- - 2 files changed, 12 insertions(+), 5 deletions(-) - -commit 95156e10ff8f5e1ed863735a5d4842dc02f0deb3 -Author: Christian Persch -Date: Tue Oct 5 18:06:47 2004 +0000 - - Don't allow activation of the hidden menubar in ppv mode. - - 2004-10-05 Christian Persch - - * src/ephy-window.c: (ephy_window_key_press_event): - - Don't allow activation of the hidden menubar in ppv mode. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 6 ++++++ - 2 files changed, 12 insertions(+) - -commit c227777cd867186d690539d4efd8f8b3809c6fa5 -Author: Christian Persch -Date: Tue Oct 5 17:37:57 2004 +0000 - - Fix print preview and fullscreen mode interaction. Fixes bug #154456. - - 2004-10-05 Christian Persch - - * src/ephy-window.c: (get_chromes_visibility), - (ephy_window_fullscreen), (ephy_window_unfullscreen), - (ephy_window_delete_event_cb), (show_embed_popup), - (ephy_window_init), (ephy_window_set_print_preview): - - Fix print preview and fullscreen mode interaction. Fixes bug #154456. - - ChangeLog | 9 ++++++++ - src/ephy-window.c | 65 ++++++++++++++++++++++++------------------------------- - 2 files changed, 37 insertions(+), 37 deletions(-) - -commit 93ea2e443535f7f4cc7caea44338805e3c77a2d7 -Author: Christian Persch -Date: Tue Oct 5 14:56:09 2004 +0000 - - Don't size-allocate unmapped tabs, fixing slow resizes. Fixes bug #128191. - - 2004-10-05 Christian Persch - - * src/ephy-tab.c: (ephy_tab_size_allocate), (ephy_tab_map), - (ephy_tab_class_init): - - Don't size-allocate unmapped tabs, fixing slow resizes. - Fixes bug #128191. - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 25 +++++++++++++++++++++++-- - 2 files changed, 31 insertions(+), 2 deletions(-) - -commit 4a908fdf31de0e6af305beac5eb95e3f471fefdd -Author: Christian Persch -Date: Tue Oct 5 14:51:04 2004 +0000 - - R lib/egg/eggdropdowntoolbutton.c: R lib/egg/eggdropdowntoolbutton.h: - - 2004-10-05 Christian Persch - - * configure.ac: - * lib/egg/Makefile.am: - R lib/egg/eggdropdowntoolbutton.c: - R lib/egg/eggdropdowntoolbutton.h: - * src/ephy-navigation-action.c: (menu_activated_cb), - (connect_proxy), (ephy_navigation_action_class_init): - - Port to GtkMenuToolButton. - - ChangeLog | 11 ++ - configure.ac | 2 +- - lib/egg/Makefile.am | 2 - - lib/egg/eggdropdowntoolbutton.c | 411 ---------------------------------------- - lib/egg/eggdropdowntoolbutton.h | 73 ------- - src/ephy-navigation-action.c | 18 +- - 6 files changed, 24 insertions(+), 493 deletions(-) - -commit 3d7629fc67819da501b38ad3a85cf1f616e5d27b -Author: Christian Persch -Date: Tue Oct 5 11:53:47 2004 +0000 - - Set window icon. - - 2004-10-05 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - - Set window icon. - - ChangeLog | 8 ++++++++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 ++ - embed/mozilla/GtkNSSDialogs.cpp | 16 ++++++++++++++++ - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 ++ - 4 files changed, 28 insertions(+) - -commit 72cc23164627a75a0a390e98035e321f5b96fe01 -Author: Christian Persch -Date: Mon Oct 4 21:29:14 2004 +0000 - - Set window icon. - - 2004-10-04 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_menu_position_tree_selection), - (ephy_gui_confirm_overwrite_file): - * src/ephy-window.c: (confirm_close_with_modified_forms), - (ephy_window_init): - - Set window icon. - - ChangeLog | 9 +++++++++ - lib/ephy-gui.c | 5 ++++- - src/ephy-window.c | 10 ++++++---- - 3 files changed, 19 insertions(+), 5 deletions(-) - -commit 07e2d63d6a93a572b26ed4d79d3e22a90475a544 -Author: Christian Persch -Date: Mon Oct 4 21:18:49 2004 +0000 - - Set window icon. - - 2004-10-04 Christian Persch - - * src/bookmarks/ephy-bookmark-properties.c: (set_window_icon), - (ephy_bookmark_properties_get_node): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_construct), - (duplicate_dialog_construct): - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/window-commands.c: (window_cmd_edit_toolbar): - - Set window icon. - - ChangeLog | 13 +++++++++++++ - src/bookmarks/ephy-bookmark-properties.c | 19 ++++++++----------- - src/bookmarks/ephy-bookmarks-editor.c | 8 +------- - src/bookmarks/ephy-new-bookmark.c | 13 ++++--------- - src/ephy-history-window.c | 8 +------- - src/window-commands.c | 1 + - 6 files changed, 28 insertions(+), 34 deletions(-) - -commit cfb26886967078899fdd8aefa3560b4626a3d29f -Author: Christian Persch -Date: Mon Oct 4 21:03:43 2004 +0000 - - Set ephy icon as window icon. - - 2004-10-04 Christian Persch - - * lib/ephy-file-chooser.c: (ephy_file_chooser_constructor): - - Set ephy icon as window icon. - - ChangeLog | 6 ++++++ - lib/ephy-file-chooser.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit e889ef175ec5bd29379bf1d89816b54c8b776c72 -Author: Christian Persch -Date: Mon Oct 4 21:01:29 2004 +0000 - - Set ephy icon as window icon. - - 2004-10-04 Christian Persch - - * src/pdm-dialog.c: (pdm_dialog_init): - - Set ephy icon as window icon. - - ChangeLog | 6 ++++++ - src/pdm-dialog.c | 6 +++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit b1c398cec070c58d4a287ab8e7d9bffde1b0a20b -Author: Christian Persch -Date: Mon Oct 4 20:56:33 2004 +0000 - - Same here. - - 2004-10-04 Christian Persch - - * src/prefs-dialog.c: (prefs_dialog_init): - - Same here. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 9 +-------- - 2 files changed, 7 insertions(+), 8 deletions(-) - -commit 54c88bfb012c3af321480eb685937052d2fa2292 -Author: Christian Persch -Date: Mon Oct 4 20:54:56 2004 +0000 - - Same here. - - 2004-10-04 Christian Persch - - * embed/find-dialog.c: (find_dialog_init): - - Same here. - - ChangeLog | 6 ++++++ - embed/find-dialog.c | 8 +------- - 2 files changed, 7 insertions(+), 7 deletions(-) - -commit 2c645faf84fb0a66d2bee7552e2cae3f617e4bf6 -Author: Christian Persch -Date: Mon Oct 4 20:53:35 2004 +0000 - - Set window icon with gtk_window_set_icon_name(). - - 2004-10-04 Christian Persch - - * embed/print-dialog.c: (ephy_print_dialog_new), - (ephy_print_setup_dialog_new): - - Set window icon with gtk_window_set_icon_name(). - - ChangeLog | 7 +++++++ - embed/print-dialog.c | 16 ++-------------- - 2 files changed, 9 insertions(+), 14 deletions(-) - -commit 3279267d7355538532e7d4b831aaaea5fcb482d6 -Author: Christian Persch -Date: Mon Oct 4 20:51:01 2004 +0000 - - Set the window icon. - - 2004-10-04 Christian Persch - - * embed/downloader-view.c: (downloader_view_build_ui): - - Set the window icon. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 7 +------ - 2 files changed, 7 insertions(+), 6 deletions(-) - -commit 10c24e409012e113bf8dd28d30ef2f6a89b7438b -Author: Christian Persch -Date: Mon Oct 4 20:48:10 2004 +0000 - - Arg 4 of gtk_icon_theme_lookup_icon is flags, not height. - - 2004-10-04 Christian Persch - - * embed/downloader-view.c: (downloader_view_add_download): - - Arg 4 of gtk_icon_theme_lookup_icon is flags, not height. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 12 +++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit dfc20ea405ca7bb32b4f3f2d46df2bb8ab9560a5 -Author: Christian Persch -Date: Mon Oct 4 18:17:32 2004 +0000 - - Set epiphany icon on the about dialogue. - - 2004-10-04 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Set epiphany icon on the about dialogue. - - ChangeLog | 6 ++++++ - src/window-commands.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 9c4c24fb594657e88afbd687f8c7d8f154e60c47 -Author: Christian Persch -Date: Mon Oct 4 13:38:09 2004 +0000 - - Clean up a bit. - - 2004-10-04 Christian Persch - - * src/ppview-toolbar.c: (ppview_toolbar_get_type), - (ppview_toolbar_class_init), (ppview_toolbar_set_property), - (ppview_toolbar_get_property), (ppview_toolbar_set_window), - (ppview_toolbar_init), (ppview_toolbar_finalize), - (ppview_toolbar_new), (toolbar_cmd_ppv_close): - * src/ppview-toolbar.h: - - Clean up a bit. - - ChangeLog | 11 +++++++++ - src/ppview-toolbar.c | 70 ++++++++++++++++++++++------------------------------ - src/ppview-toolbar.h | 4 +-- - 3 files changed, 42 insertions(+), 43 deletions(-) - -commit c74cae5e214e1f9e27b0e9c624fcb1e2f48fb450 -Author: Christian Persch -Date: Mon Oct 4 12:53:22 2004 +0000 - - Fix a warning. - - 2004-10-04 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Fix a warning. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 ++ - 2 files changed, 8 insertions(+) - -commit 5c2a8cec5877e3e030ef8d563ac98b108e655e2c -Author: David Lodge -Date: Sun Oct 3 22:08:35 2004 +0000 - - Updated British English translation. - - 2004-10-03 David Lodge - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 1503 +++++++++++++++++----------------------------------------- - 2 files changed, 432 insertions(+), 1075 deletions(-) - -commit 1f83720e0ff3583e9d0c48a6224b383814ddf1f2 -Author: Christian Persch -Date: Sun Oct 3 14:30:21 2004 +0000 - - Remove unused variable. - - 2004-10-03 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Remove unused variable. - - ChangeLog | 6 ++++++ - src/window-commands.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 36f5d3bdb753e5a3bed513f17b63e1bb2c151f95 -Author: Miloslav Trmac -Date: Sun Oct 3 00:44:42 2004 +0000 - - Updated Czech translation. - - 2004-10-03 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 577 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 295 insertions(+), 286 deletions(-) - -commit 3286fed6dc6481286cd9e438506b8637d0ea984c -Author: Christian Persch -Date: Sat Oct 2 14:25:20 2004 +0000 - - Shut up - - data/.cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit 5d5a8b49ca1742cc34161ba73287540f779795a5 -Author: Christian Persch -Date: Sat Oct 2 14:25:00 2004 +0000 - - Recognise "Desktop" special downloads directory. Fixes bug #152926. - - 2004-10-02 Christian Persch - - * embed/mozilla/MozDownload.cpp: - * lib/ephy-file-helpers.c: (ephy_file_downloads_dir), - (ephy_file_desktop_dir): - * lib/ephy-file-helpers.h: - * src/prefs-dialog.c: (get_download_button_label): - - Recognise "Desktop" special downloads directory. Fixes bug #152926. - - ChangeLog | 10 ++++++++++ - embed/mozilla/MozDownload.cpp | 5 +++++ - lib/ephy-file-helpers.c | 25 ++++++++++++++++++------- - lib/ephy-file-helpers.h | 2 ++ - src/prefs-dialog.c | 4 ++++ - 5 files changed, 39 insertions(+), 7 deletions(-) - -commit 59c38b2fabd382321fbcf1e4a8db70c8c59016ec -Author: Christian Persch -Date: Sat Oct 2 12:51:18 2004 +0000 - - Add --with-mozilla to distcheck's configure arguments. - - 2004-10-02 Christian Persch - - * Makefile.am: - - Add --with-mozilla to distcheck's configure arguments. - - ChangeLog | 6 ++++++ - Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0668ebb09e521861056cb36d9e162fbdee63f9f4 -Author: Christian Persch -Date: Sat Oct 2 12:33:51 2004 +0000 - - Simply use gtk_icon_theme_load_icon(). - - 2004-10-02 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Simply use gtk_icon_theme_load_icon(). - - ChangeLog | 6 ++++++ - src/window-commands.c | 22 +++++----------------- - 2 files changed, 11 insertions(+), 17 deletions(-) - -commit e44702a9048d6cf4e8de81387a38d3838cd8f4b3 -Author: Christian Persch -Date: Sat Oct 2 12:33:04 2004 +0000 - - Use gtk_window_set_default_icon_name(). - - 2004-10-02 Christian Persch - - * src/ephy-main.c: (main): - * src/ephy-window.c: (ephy_window_init): - - Use gtk_window_set_default_icon_name(). - - ChangeLog | 7 +++++++ - src/ephy-main.c | 5 ++++- - src/ephy-window.c | 36 ------------------------------------ - 3 files changed, 11 insertions(+), 37 deletions(-) - -commit 2bf03e3c19c612e45fd14ba190fb3aa4431a40c8 -Author: Christian Persch -Date: Thu Sep 30 10:15:26 2004 +0000 - - Remove explicit PAC autoconf call, it works perfectly ok without it. - - 2004-09-30 Christian Persch - - * configure.ac: - * embed/mozilla/mozilla-notifiers.cpp: - - Remove explicit PAC autoconf call, it works perfectly ok without it. - - ChangeLog | 7 +++++++ - configure.ac | 16 ---------------- - embed/mozilla/mozilla-notifiers.cpp | 30 ------------------------------ - 3 files changed, 7 insertions(+), 46 deletions(-) - -commit 97b7d16d20e23022cd9d108c709bfc58488b162d -Author: Christian Persch -Date: Tue Sep 28 15:21:53 2004 +0000 - - Remove "abort", since you can have the same with --g-fatal-warnings. - - 2004-09-28 Christian Persch - - * lib/ephy-debug.c: (trap_handler): - - Remove "abort", since you can have the same with --g-fatal-warnings. - - ChangeLog | 6 ++++++ - lib/ephy-debug.c | 4 ---- - 2 files changed, 6 insertions(+), 4 deletions(-) - -commit 5c1b08f757eca6ca9ba98e9691156484e854efd5 -Author: Christian Persch -Date: Tue Sep 28 15:19:43 2004 +0000 - - Document EPHY_DEBUG_BREAK. - - 2004-09-28 Christian Persch - - * doc/debugging.txt: - - Document EPHY_DEBUG_BREAK. - - ChangeLog | 6 ++++++ - doc/debugging.txt | 20 ++++++++++++++++++-- - 2 files changed, 24 insertions(+), 2 deletions(-) - -commit 7a2d258ca56a94cca48bb2875d7b2a1dfb4e0e09 -Author: Christian Persch -Date: Tue Sep 28 12:46:24 2004 +0000 - - A data/default-prefs-common.js: A data/default-prefs-mozilla.js: A - - 2004-09-28 Christian Persch - - * configure.ac: - * data/Makefile.am: - A data/default-prefs-common.js: - A data/default-prefs-mozilla.js: - A data/default-prefs-toolkit.js: - R data/default-prefs.js: - - Split the default prefs into the common part, and mozilla/new toolkit - specific parts. - - ChangeLog | 12 ++++++ - configure.ac | 11 ++++-- - data/Makefile.am | 13 ++++++- - data/default-prefs-common.js | 90 +++++++++++++++++++++++++++++++++++++++++++ - data/default-prefs-mozilla.js | 0 - data/default-prefs-toolkit.js | 6 +++ - data/default-prefs.js | 87 ----------------------------------------- - 7 files changed, 128 insertions(+), 91 deletions(-) - -commit a913abc0b33ea25f706d5ebf6e98626d31da39d5 -Author: Christian Persch -Date: Mon Sep 27 18:13:11 2004 +0000 - - Don't reference private objects from public headers. Fixes bug #153766. - - 2004-09-27 Christian Persch - - * lib/egg/Makefile.am: - * src/bookmarks/ephy-bookmark-action.c: (remove_from_model), - (move_in_model): - * src/bookmarks/ephy-bookmarks.c: - (ephy_bookmarks_get_toolbars_model): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-bookmarksbar.c: - (ephy_bookmarksbar_set_property): - * src/bookmarks/ephy-topic-action.c: (remove_from_model), - (move_in_model): - * src/ephy-shell.c: (ephy_shell_get_toolbars_model): - - Don't reference private objects from public headers. Fixes bug #153766. - - ChangeLog | 16 ++++++++++++++++ - lib/egg/Makefile.am | 14 ++++++-------- - src/bookmarks/ephy-bookmark-action.c | 4 ++-- - src/bookmarks/ephy-bookmarks.c | 4 ++-- - src/bookmarks/ephy-bookmarks.h | 3 +-- - src/bookmarks/ephy-bookmarksbar.c | 2 +- - src/bookmarks/ephy-topic-action.c | 4 ++-- - src/ephy-shell.c | 4 ++-- - 8 files changed, 32 insertions(+), 19 deletions(-) - -commit 03b4c9bb41fcedda967007ee860d567ecbaed365 -Author: Christian Persch -Date: Mon Sep 27 18:09:55 2004 +0000 - - Don't reference private objects from public headers. Fixes bug #153766. - - 2004-09-27 Christian Persch - - * lib/egg/Makefile.am: - * src/bookmarks/ephy-bookmark-action.c: (remove_from_model), - (move_in_model): - * src/bookmarks/ephy-bookmarks.c: - (ephy_bookmarks_get_toolbars_model): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-bookmarksbar.c: - (ephy_bookmarksbar_set_property): - * src/bookmarks/ephy-topic-action.c: (remove_from_model), - (move_in_model): - * src/ephy-shell.c: (ephy_shell_get_toolbars_model): - - Don't reference private objects from public headers. Fixes bug #153766. - - lib/egg/Makefile.am | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 01d4432d9c051e5381aa4ebca6b945d30f1075b8 -Author: Christian Persch -Date: Mon Sep 27 13:19:53 2004 +0000 - - Remove the hack, and just use the libc function for it. Thanks to Crispin - - 2004-09-27 Christian Persch - - * configure.ac: - * lib/ephy-debug.c: (trap_handler), (ephy_debug_init): - - Remove the hack, and just use the libc function for it. - Thanks to Crispin for suggesting this. - - ChangeLog | 8 ++++++++ - configure.ac | 7 ------- - lib/ephy-debug.c | 23 ++++++++++------------- - 3 files changed, 18 insertions(+), 20 deletions(-) - -commit 43e470f7461e38da9ec1894df5fbe619fb65ceb2 -Author: Christian Persch -Date: Mon Sep 27 13:00:06 2004 +0000 - - Improve configure check for DumpStackToFile to actually work. - - 2004-09-27 Christian Persch - - * configure.ac: - - Improve configure check for DumpStackToFile to actually work. - - ChangeLog | 6 ++++++ - configure.ac | 14 ++++---------- - 2 files changed, 10 insertions(+), 10 deletions(-) - -commit 8656e7d44895631c82053c9630139015cb95ef57 -Author: Christian Persch -Date: Mon Sep 27 12:42:19 2004 +0000 - - Improved debugging support. Fixes bug #153805. - - 2004-09-27 Christian Persch - - * configure.ac: - * lib/ephy-debug.c: (trap_handler), (ephy_debug_init): - - Improved debugging support. Fixes bug #153805. - - ChangeLog | 7 +++++++ - configure.ac | 14 ++++++++++++++ - lib/ephy-debug.c | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-- - 3 files changed, 77 insertions(+), 2 deletions(-) - -commit 8b94ac9b3e071f2813e495c64d15c8af72300176 -Author: Christian Persch -Date: Mon Sep 27 12:17:32 2004 +0000 - - Install a placeholder for the view toggles group. Fixes bug #153767. - - 2004-09-27 Christian Persch - - * data/ui/epiphany-ui.xml: - - Install a placeholder for the view toggles group. Fixes bug #153767. - - ChangeLog | 8 +++++++- - data/ui/epiphany-ui.xml | 8 +++++--- - 2 files changed, 12 insertions(+), 4 deletions(-) - -commit 8f4eb51364a20e5aaafa4153ca086831c24dcab9 -Author: Christian Persch -Date: Mon Sep 27 12:11:34 2004 +0000 - - Make ephy-state.h public. - - 2004-09-27 Christian Persch - - * lib/Makefile.am: - - Make ephy-state.h public. - - ChangeLog | 6 ++++++ - lib/Makefile.am | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit d66a3acaab3c670737d59d002186881855aa582a -Author: Christian Persch -Date: Sun Sep 26 16:50:32 2004 +0000 - - Fix compiler warnings. - - 2004-09-26 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * lib/egg/eggtrayicon.h: - - Fix compiler warnings. - - * src/ephy-window.c: (hide_embed_popup_cb), (show_embed_popup): - - Fix a signal leak. - - ChangeLog | 14 ++++++++++++++ - Makefile.am | 2 +- - embed/mozilla/EphyBrowser.cpp | 8 ++++---- - embed/mozilla/EventContext.cpp | 2 -- - embed/mozilla/GtkNSSDialogs.cpp | 6 +++--- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - lib/egg/eggtrayicon.h | 3 +++ - src/ephy-window.c | 5 ++++- - 8 files changed, 30 insertions(+), 12 deletions(-) - -commit 3a641a3b7a25d5ae85eaf5c3f1911c6033ea1e15 -Author: Christian Persch -Date: Sun Sep 26 15:51:17 2004 +0000 - - Remove some unused code. Patch by Crispin Flowerday. - - 2004-09-26 Christian Persch - - * src/popup-commands.c: (popup_cmd_bookmark_link), - (popup_cmd_copy_image_location): - - Remove some unused code. Patch by Crispin Flowerday. - - ChangeLog | 7 +++++++ - src/popup-commands.c | 6 ------ - 2 files changed, 7 insertions(+), 6 deletions(-) - -commit 2a22d05e9e0dfc84beb57cbb6b5a63768b47e770 -Author: Marco Pesenti Gritti -Date: Sun Sep 26 10:25:40 2004 +0000 - - Install egg-toolbars-model.h - - 2004-09-27 Marco Pesenti Gritti - - * lib/egg/Makefile.am: - - Install egg-toolbars-model.h - - ChangeLog | 6 ++++++ - lib/egg/Makefile.am | 15 +++++++++------ - 2 files changed, 15 insertions(+), 6 deletions(-) - -commit 67dc5fb05edf0087d28e49c57da024258966b855 -Author: Christian Persch -Date: Sat Sep 25 19:01:04 2004 +0000 - - Remove another unnecessary define. - - 2004-09-25 Christian Persch - - * configure.ac: - - Remove another unnecessary define. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 71ac36c23b636dfeb1a810e9ded8180aae4548b8 -Author: Christian Persch -Date: Sat Sep 25 18:58:35 2004 +0000 - - Remove an unnecessary define. - - 2004-09-25 Christian Persch - - * configure.ac: - - Remove an unnecessary define. - - ChangeLog | 6 ++++++ - configure.ac | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit ce6e072e9619efd9ac093080ad33ad2bbe6bf604 -Author: Christian Persch -Date: Sat Sep 25 13:22:27 2004 +0000 - - Mozilla API changes. - - 2004-09-25 Christian Persch - - * configure.ac: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - - Mozilla API changes. - - ChangeLog | 8 ++++++++ - configure.ac | 23 +++++++++++++++++++++++ - embed/mozilla/GlobalHistory.cpp | 5 +++++ - embed/mozilla/mozilla-embed-single.cpp | 13 +++++++++++-- - 4 files changed, 47 insertions(+), 2 deletions(-) - -commit 0a635fdfd785c25386198b957aa5cd4e640c2cd3 -Author: Christophe Merlet -Date: Sat Sep 25 11:21:54 2004 +0000 - - Updated French translation. - - po/ChangeLog | 5 + - po/fr.po | 1790 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 858 insertions(+), 937 deletions(-) - -commit e61fa503824917240244021f53bfbe17beb629ac -Author: Adam Weinberger -Date: Fri Sep 24 18:47:49 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 554 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 276 insertions(+), 282 deletions(-) - -commit 8dc5fc7866b734dbbaa2f8bc03a131775884a594 -Author: Christian Persch -Date: Thu Sep 23 14:27:20 2004 +0000 - - Remove reference to MOZILLA_FIVE_HOME. - - 2004-09-23 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Remove reference to MOZILLA_FIVE_HOME. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 5 +---- - 2 files changed, 7 insertions(+), 4 deletions(-) - -commit 4583132b823a56e203f6d94f26c57dcf8c4df87a -Author: Christian Persch -Date: Wed Sep 22 19:14:56 2004 +0000 - - Fix a mem leak. - - 2004-09-22 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Fix a mem leak. - - ChangeLog | 6 ++++++ - src/window-commands.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 38a400ad4f2119289400add5aebae8ac5285d5fd -Author: Christian Persch -Date: Wed Sep 22 18:20:24 2004 +0000 - - Fix a mem leak. - - 2004-09-22 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (drag_motion_cb): - - Fix a mem leak. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topic-action.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 403518381b86a05c97e3c3b260754a0176f09c23 -Author: Christian Persch -Date: Wed Sep 22 18:11:20 2004 +0000 - - Initialise position passed to gtk_editable_insert_text(). - - 2004-09-22 Christian Persch - - * lib/ephy-dialog.c: (set_editable_from_value): - - Initialise position passed to gtk_editable_insert_text(). - - ChangeLog | 6 ++++++ - lib/ephy-dialog.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 7b46c83f7317340694c49138420ecffe681a4516 -Author: Christian Persch -Date: Wed Sep 22 12:49:51 2004 +0000 - - Fix the build. - - 2004-09-22 Christian Persch - - * embed/ephy-download.c: (update_remaining_time): - - Fix the build. - - ChangeLog | 6 ++++++ - embed/ephy-download.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit d04334becd2f54d92061b136c9abcd80509fbfe9 -Author: Christian Persch -Date: Tue Sep 21 12:14:45 2004 +0000 - - Fix this - - embed/mozilla/EphyContentPolicy.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3b0183d0c5fe0fac101a63a4e1a065dfb23e4f6b -Author: Christian Persch -Date: Tue Sep 21 12:13:37 2004 +0000 - - Simplified nsIContentPolicy API check. - - 2004-09-21 Christian Persch - - * configure.ac: - * embed/mozilla/EphyContentPolicy.cpp: - - Simplified nsIContentPolicy API check. - - ChangeLog | 7 +++++++ - configure.ac | 8 +++++--- - embed/mozilla/EphyContentPolicy.cpp | 4 ++-- - 3 files changed, 14 insertions(+), 5 deletions(-) - -commit 5e58a03b8d5fb6e18e8c56d0e86ac96d90522b6f -Author: Christian Persch -Date: Tue Sep 21 11:09:32 2004 +0000 - - Fix mozilla API checks to correctly detect firefox libraries. - - 2004-09-21 Christian Persch - - * configure.ac: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - - Fix mozilla API checks to correctly detect firefox libraries. - - ChangeLog | 20 +++ - configure.ac | 272 ++++++++++++++++++++++----------- - embed/mozilla/ContentHandler.cpp | 14 +- - embed/mozilla/ContentHandler.h | 3 +- - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyBrowser.h | 4 +- - embed/mozilla/EphyContentPolicy.cpp | 14 +- - embed/mozilla/FilePicker.cpp | 28 ++-- - embed/mozilla/GlobalHistory.cpp | 14 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 12 -- - embed/mozilla/Makefile.am | 4 +- - embed/mozilla/MozDownload.cpp | 4 +- - embed/mozilla/mozilla-download.cpp | 3 +- - embed/mozilla/mozilla-embed-single.cpp | 6 +- - embed/mozilla/mozilla-embed.cpp | 6 +- - embed/mozilla/mozilla-notifiers.cpp | 4 +- - 16 files changed, 247 insertions(+), 163 deletions(-) - -commit 695c95a8a47d6d2c1092bd6a379743d3939961bc -Author: Marco Pesenti Gritti -Date: Tue Sep 21 09:16:17 2004 +0000 - - Fix overflow in remaining time calculation. Fix bug #153136. Thanks to - - 2004-09-21 Marco Pesenti Gritti - - * embed/ephy-download.c: (update_remaining_time): - - Fix overflow in remaining time calculation. Fix bug - #153136. Thanks to Jhon Spray for tracking this. - - ChangeLog | 7 +++++++ - embed/ephy-download.c | 5 ++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 56d52a23335ee2c0fe6dcfe79e778e50cfd41ee7 -Author: Christian Persch -Date: Sat Sep 18 13:06:12 2004 +0000 - - Fix ChangeLog - - ChangeLog | 1 - - 1 file changed, 1 deletion(-) - -commit f1ef34a569c6a97a5ba2516f4e4511d2a93f05f6 -Author: Christian Persch -Date: Sat Sep 18 12:03:15 2004 +0000 - - Fix download progress indicator in downloader view. - - 2004-09-18 Christian Persch - - * embed/downloader-view.c: (progress_cell_data_func): - * embed/mozilla/MozDownload.cpp: - * lib/ephy-gui.c: (ephy_gui_menu_position_tree_selection): - - Fix download progress indicator in downloader view. - - ChangeLog | 8 ++++++++ - embed/downloader-view.c | 13 ++++++++++--- - embed/mozilla/MozDownload.cpp | 10 ++++++++++ - 3 files changed, 28 insertions(+), 3 deletions(-) - -commit 3b1f9048fa3055b317c78db5d8490702e5d253f8 -Author: Žygimantas Beručka -Date: Sat Sep 18 11:20:26 2004 +0000 - - Updated Lithuanian translation. - - 2004-09-18 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 665 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 342 insertions(+), 327 deletions(-) - -commit 1d7901ce605fa19fbd558e70541b2afe83df5f94 -Author: Marco Pesenti Gritti -Date: Sat Sep 18 07:50:10 2004 +0000 - - reviewed by: Christian Persch - - 2004-09-18 Marco Pesenti Gritti - - reviewed by: Christian Persch - - * embed/ephy-embed-persist.h: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download): - * embed/mozilla/MozDownload.cpp: - - Enable conversion for favicon downloads. Fix #152866. - - ChangeLog | 10 ++++++++++ - embed/ephy-embed-persist.h | 3 ++- - embed/ephy-favicon-cache.c | 3 ++- - embed/mozilla/MozDownload.cpp | 3 ++- - 4 files changed, 16 insertions(+), 3 deletions(-) - -commit 1c684e17cea6d34cd967c2c902251792ae53fc30 -Author: Marco Pesenti Gritti -Date: Thu Sep 16 09:10:30 2004 +0000 - - Show the fullscreen button only when the window is active. Fix #115296. - - 2004-09-16 Marco Pesenti Gritti - - * src/ephy-window.c: (ephy_window_focus_in_event), - (ephy_window_focus_out_event), (ephy_window_class_init): - - Show the fullscreen button only when the window is active. - Fix #115296. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 28 ++++++++++++++++++++++++++++ - 2 files changed, 36 insertions(+) - -commit 841173079ae8a262f0ecbafabf0cdc4ae56dcbb6 -Author: Marco Pesenti Gritti -Date: Thu Sep 16 08:11:13 2004 +0000 - - Keep popup position synced with his size requisition. Fix #143585 - - 2004-09-16 Marco Pesenti Gritti - - * src/ephy-window.c: (update_fullscreen_popup), - (screen_size_changed_cb), (fullscreen_popup_size_request_cb), - (ephy_window_fullscreen): - - Keep popup position synced with his size requisition. - Fix #143585 - - ChangeLog | 9 +++++++++ - src/ephy-window.c | 19 ++++++++++++++----- - 2 files changed, 23 insertions(+), 5 deletions(-) - -commit 75cdac480b514938bd0ac4c138e9fd59beb5023b -Author: Christian Persch -Date: Wed Sep 15 22:17:37 2004 +0000 - - Port to GtkAboutDialog. - - 2004-09-16 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Port to GtkAboutDialog. - - ChangeLog | 6 ++++++ - src/window-commands.c | 39 +++++++++++++++++++-------------------- - 2 files changed, 25 insertions(+), 20 deletions(-) - -commit 05ee490e2960320c5fdb6ff8c265b2fab91ac630 -Author: Christian Persch -Date: Wed Sep 15 17:23:57 2004 +0000 - - More fix for mozilla 1.7.3 API-non-change. - - 2004-09-15 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: - - More fix for mozilla 1.7.3 API-non-change. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit e7cd1f3559f0b0f8ad8d2ccdf3dbd4180b505ae6 -Author: Christian Persch -Date: Wed Sep 15 11:02:06 2004 +0000 - - Fix for mozilla 1.7.3 API-non-change. - - 2004-09-15 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/GlobalHistory.cpp: - - Fix for mozilla 1.7.3 API-non-change. - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/GlobalHistory.cpp | 4 ++-- - 4 files changed, 12 insertions(+), 4 deletions(-) - -commit 9d03728737c3ac793ac7a8d63398dad4053be7f9 -Author: Marco Pesenti Gritti -Date: Wed Sep 15 08:04:46 2004 +0000 - - Add api to show a context menu. Useful to make distinction between key and - - 2004-09-15 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (ephy_node_view_add_toggle), - (ephy_node_view_popup): - * lib/widgets/ephy-node-view.h: - - Add api to show a context menu. Useful to make distinction - between key and mouse events. - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_show_popup_cb), - (keyword_node_show_popup_cb): - * src/ephy-history-window.c: (ephy_history_window_show_popup_cb): - - Use it. Fix #152431 - - ChangeLog | 16 ++++++++++++++++ - lib/widgets/ephy-node-view.c | 25 +++++++++++++++++++++++++ - lib/widgets/ephy-node-view.h | 3 +++ - src/bookmarks/ephy-bookmarks-editor.c | 8 ++------ - src/ephy-history-window.c | 4 +--- - 5 files changed, 47 insertions(+), 9 deletions(-) - -commit ad595146b5a48a6b527d0f643e5b06edae32917d -Author: Marco Pesenti Gritti -Date: Tue Sep 14 20:28:42 2004 +0000 - - Better positioning of context menus for treeviews. Fix #152431 - - 2004-09-13 Marco Pesenti Gritti - - * lib/ephy-guy.c: - * src/bookmarks/ephy-bookmarks-editor.c: - * src/ephy-history-window.c: - - Better positioning of context menus for treeviews. - Fix #152431 - - ChangeLog | 9 +++++ - lib/ephy-gui.c | 63 +++++++++++++++++++++++++++++++---- - lib/ephy-gui.h | 6 ++++ - src/bookmarks/ephy-bookmarks-editor.c | 6 ++-- - src/ephy-history-window.c | 3 +- - 5 files changed, 77 insertions(+), 10 deletions(-) - -commit e40e2cff4000f665f4b7c99f376b94f6c4e4b3bb -Author: Adam Hooper -Date: Tue Sep 14 01:24:42 2004 +0000 - - Added (proposed) XML schema for Extension metadata files (work in - progress). - - ChangeLog | 8 ++ - data/Makefile.am | 4 + - data/epiphany-extension.xsd | 181 ++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 193 insertions(+) - -commit 809f1aca44d03364d59d33780684ad8c524a0025 -Author: Adam Hooper -Date: Mon Sep 13 21:52:00 2004 +0000 - - Load/unload extensions based on GConf key - /apps/epiphany/general/active_extensions. - - Update documentation a bit (i.e., make sure it actually builds). - - ChangeLog | 36 +++ - data/epiphany.schemas.in | 13 + - doc/reference/Makefile.am | 2 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 19 ++ - doc/reference/epiphany.types | 2 - - doc/reference/tmpl/ephy-embed-factory.sgml | 4 +- - doc/reference/tmpl/ephy-embed.sgml | 8 + - doc/reference/tmpl/ephy-extensions-manager.sgml | 63 +++++ - doc/reference/tmpl/ephy-shell.sgml | 10 - - doc/reference/tmpl/ephy-window.sgml | 1 - - doc/reference/tmpl/epiphany-unused.sgml | 8 + - lib/ephy-module-loader.c | 20 +- - lib/ephy-module-loader.h | 2 + - src/ephy-extensions-manager.c | 350 ++++++++++++++++++++---- - src/ephy-extensions-manager.h | 5 +- - src/ephy-shell.c | 6 +- - 17 files changed, 472 insertions(+), 78 deletions(-) - -commit 25a80e3d76c1c74e810271f0cf46832f7b6e127d -Author: Christian Persch -Date: Mon Sep 13 21:26:31 2004 +0000 - - It's .ac now - - configure.in | 289 ----------------------------------------------------------- - 1 file changed, 289 deletions(-) - -commit bf60b7ae05e75e10a8f15ec8ca2635874c4dab90 -Author: Christian Persch -Date: Mon Sep 13 20:46:14 2004 +0000 - - Add ephy_window_get_ui_manager(), and remove the manager from the public - - 2004-09-13 Christian Persch - - * data/art/epiphany-entry.png: - * src/bookmarks/ephy-bookmarks-menu.c: - (ephy_bookmarks_menu_set_window): - * src/bookmarks/ephy-bookmarksbar.c: - (ephy_bookmarksbar_set_window): - * src/bookmarks/ephy-favorites-menu.c: (ephy_favorites_menu_clean), - (ephy_favorites_menu_rebuild): - * src/ephy-encoding-menu.c: (ephy_encoding_menu_set_window): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_set_window), - (ephy_tabs_menu_clean), (ephy_tabs_menu_update): - * src/ephy-window.c: (add_widget), (sync_chromes_visibility), - (ephy_window_key_press_event), (init_menu_updaters), - (setup_ui_manager), (show_embed_popup), (ephy_window_init), - (ephy_window_finalize), (ephy_window_set_print_preview), - (ephy_window_get_ui_manager): - * src/ephy-window.h: - * src/ppview-toolbar.c: (ppview_toolbar_set_window): - * src/toolbar.c: (toolbar_set_window), (toolbar_new): - * src/window-commands.c: (window_cmd_edit_toolbar): - - Add ephy_window_get_ui_manager(), and remove the manager - from the public EphyWindow struct. - - ChangeLog | 25 ++++++++++++++++ - data/art/epiphany-entry.png | Bin 383 -> 433 bytes - src/bookmarks/ephy-bookmarks-menu.c | 2 +- - src/bookmarks/ephy-bookmarksbar.c | 2 +- - src/bookmarks/ephy-favorites-menu.c | 4 +-- - src/ephy-encoding-menu.c | 2 +- - src/ephy-tabs-menu.c | 24 +++++++-------- - src/ephy-window.c | 58 +++++++++++++++++++++++------------- - src/ephy-window.h | 6 ++-- - src/ppview-toolbar.c | 2 +- - src/toolbar.c | 4 +-- - src/window-commands.c | 2 +- - 12 files changed, 84 insertions(+), 47 deletions(-) - -commit 816da20fe31c6186a80ef92fe824ccd9088f9a15 -Author: Arafat Medini -Date: Mon Sep 13 17:08:48 2004 +0000 - - Updated Arabic translation. - - - 2004-09-13 Arafat Medini - - * ar.po: Updated Arabic translation. - - po/ChangeLog | 4 + - po/ar.po | 449 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 247 insertions(+), 206 deletions(-) - -commit 4857adf35d8377e6a1890de18edbc8cbdc50abb5 -Author: Christian Persch -Date: Mon Sep 13 10:40:15 2004 +0000 - - Add ChangeLog-20040912 to EXTRA_DIST. - - 2004-09-13 Christian Persch - - * Makefile.am: - - Add ChangeLog-20040912 to EXTRA_DIST. - - ChangeLog | 6 ++++++ - Makefile.am | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 2606279995f614634062e0aeb9833c482db5d083 -Author: Christian Persch -Date: Mon Sep 13 10:24:56 2004 +0000 - - Merging pre-gnome-2-10 branch to HEAD. - - 2004-09-13 Christian Persch - - Merging pre-gnome-2-10 branch to HEAD. - - Splitting ChangeLog. - - ChangeLog | 10774 +-------------------------- - ChangeLog-20040912 | 10997 ++++++++++++++++++++++++++++ - autogen.sh | 2 +- - configure.ac | 308 + - data/.cvsignore | 4 +- - data/Makefile.am | 2 +- - data/art/Makefile.am | 3 +- - data/art/epiphany-close-tab.png | Bin 0 -> 260 bytes - data/art/epiphany-secure.png | Bin 866 -> 0 bytes - data/art/epiphany-unsecure.png | Bin 792 -> 0 bytes - data/epiphany-1.4.pc.in | 12 - - data/epiphany-1.6.pc.in | 12 + - data/ui/epiphany-ui.xml | 17 + - embed/downloader-view.c | 63 +- - embed/ephy-download.h | 1 + - embed/ephy-embed-factory.c | 71 +- - embed/ephy-embed-factory.h | 4 +- - embed/ephy-embed-shell.c | 2 +- - embed/ephy-encodings.c | 15 - - embed/ephy-encodings.h | 18 +- - embed/ephy-favicon-cache.c | 2 +- - embed/mozilla/EventContext.cpp | 5 +- - embed/mozilla/MozDownload.cpp | 2 +- - lib/egg/.cvsignore | 2 + - lib/egg/Makefile.am | 4 + - lib/egg/eggdropdowntoolbutton.c | 411 ++ - lib/egg/eggdropdowntoolbutton.h | 73 + - lib/egg/eggmarshalers.c | 638 -- - lib/egg/eggmarshalers.h | 143 - - lib/egg/eggmarshalers.list | 1 + - lib/egg/update-from-egg.sh | 3 + - lib/ephy-stock-icons.c | 10 +- - lib/ephy-stock-icons.h | 8 +- - lib/widgets/Makefile.am | 6 - - lib/widgets/ephy-arrow-toolbutton.c | 273 - - lib/widgets/ephy-arrow-toolbutton.h | 62 - - lib/widgets/ephy-cell-renderer-progress.c | 388 - - lib/widgets/ephy-cell-renderer-progress.h | 75 - - lib/widgets/ephy-label.c | 3463 --------- - lib/widgets/ephy-label.h | 189 - - po/ChangeLog | 4 + - po/POTFILES.in | 2 - - src/bookmarks/ephy-bookmarks-editor.c | 4 +- - src/bookmarks/ephy-topics-selector.c | 11 +- - src/ephy-go-action.c | 9 +- - src/ephy-location-action.c | 21 - - src/ephy-main.c | 8 - - src/ephy-navigation-action.c | 259 +- - src/ephy-notebook.c | 17 +- - src/ephy-shell.c | 26 +- - src/ephy-shell.h | 5 +- - src/ephy-statusbar.c | 12 +- - src/ephy-statusbar.h | 2 +- - src/ephy-tab.c | 15 +- - src/ephy-tabs-menu.c | 27 +- - src/ephy-window.c | 57 +- - src/pdm-dialog.c | 9 +- - src/popup-commands.c | 4 +- - src/prefs-dialog.c | 7 +- - src/toolbar.c | 8 +- - src/window-commands.c | 4 +- - 61 files changed, 12178 insertions(+), 16396 deletions(-) - -commit 79ec35d68d698710604fd4e9682188ae28ba1ae0 -Author: Christian Persch -Date: Mon Sep 13 09:21:05 2004 +0000 - - Updating - - ChangeLog | 10 ++++++++++ - data/default-prefs.js | 3 --- - embed/Makefile.am | 1 + - embed/print-dialog.c | 2 +- - po/ne.po | 14 -------------- - 5 files changed, 12 insertions(+), 18 deletions(-) - -commit c6a41595fc561991525b168083a4b4a972a4f0f3 -Author: Christian Persch -Date: Mon Sep 13 09:18:18 2004 +0000 - - Version 1.4.0. - - 2004-09-13 Christian Persch - - * NEWS: - * configure.in: - - Version 1.4.0. - - ChangeLog | 11 ++++++++++- - NEWS | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - configure.in | 6 +++--- - 3 files changed, 72 insertions(+), 4 deletions(-) - -commit 7981325d1dd64bfc2de1fe068210be6f3f053c65 -Author: Kwok-Koon Cheung -Date: Sun Sep 12 23:02:57 2004 +0000 - - Updated traditional Chinese translation by GNOME HK Team - - * zh_TW.po: Updated traditional Chinese translation by GNOME HK Team - - po/ChangeLog | 4 + - po/zh_TW.po | 1643 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 822 insertions(+), 825 deletions(-) - -commit 7027e0044174816ff57fffdcf1b58938edfd1ba9 -Author: Amila Akagić -Date: Sun Sep 12 20:45:36 2004 +0000 - - 2004-09-12 Akagic Amila * bs.po: Updated Bosnian translation. - - po/ChangeLog | 4 + - po/bs.po | 584 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 306 insertions(+), 282 deletions(-) - -commit f620acdc0cb9837515374e254cd6ccdad7f4eb13 -Author: Pawan Chitrakar -Date: Sun Sep 12 07:42:21 2004 +0000 - - Updated Nepali Translation bug removed for System Language error - - 2004-09-12 Pawan Chitrakar - - * ne.po: Updated Nepali Translation - bug removed for System Language error - - po/ChangeLog | 4 ++++ - po/ne.po | 23 +++++++++++------------ - 2 files changed, 15 insertions(+), 12 deletions(-) - -commit 082c2bd2f8556a9ba038bbbf3d25282c5ceafc51 -Author: Shaun McCance -Date: Sat Sep 11 19:20:06 2004 +0000 - - - Fix non-well-formed XML - - * help/C/epiphany.xml: - - Fix non-well-formed XML - - ChangeLog | 5 +++++ - help/C/epiphany.xml | 4 ++-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 690302b94d6eaedbb7a5d8dc7741cd521e41c142 -Author: Dafydd Harries -Date: Sat Sep 11 18:53:36 2004 +0000 - - Updated Welsh translation. - - po/ChangeLog | 4 + - po/cy.po | 1111 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 591 insertions(+), 524 deletions(-) - -commit ee3724999cf176dbc810905dca4d3d2894bd1939 -Author: Jordi Mallach -Date: Fri Sep 10 18:59:33 2004 +0000 - - Updated Catalan translation. - - po/ChangeLog | 4 + - po/ca.po | 635 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 343 insertions(+), 296 deletions(-) - -commit 0e09381765e2269013f93cdf662e27147745cdd5 -Author: Mugurel Tudor -Date: Fri Sep 10 13:49:19 2004 +0000 - - Fixed a string in Romanian translation - - 2004-09-10 Mugurel Tudor - - * ro.po: Fixed a string in Romanian translation - - po/ChangeLog | 4 ++++ - po/ro.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 0ffd4e6920b73d67b2460450def1715b7b579705 -Author: Baris Cicek -Date: Thu Sep 9 21:03:04 2004 +0000 - - Updated Turkish Translation - - * tr.po: Updated Turkish Translation - - po/ChangeLog | 4 + - po/tr.po | 1055 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 570 insertions(+), 489 deletions(-) - -commit ded5991fa59bfd5a7736b31ef39d3a841577e4bc -Author: Ole Laursen -Date: Thu Sep 9 19:58:08 2004 +0000 - - Fixed a couple of strings in the Danish translation. - - 2004-09-09 Ole Laursen - - * da.po: Fixed a couple of strings in the Danish translation. - - po/ChangeLog | 4 +++ - po/da.po | 83 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 46 insertions(+), 41 deletions(-) - -commit ac4e7df13c44908f1ad8742d1e92afc54f8ed688 -Author: Paisa Seeluangsawat -Date: Thu Sep 9 16:32:14 2004 +0000 - - Fixed bug #151213 - - 2004-09-09 Paisa Seeluangsawat - - * th.po: Fixed bug #151213 - - po/ChangeLog | 4 ++++ - po/th.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 969dd0777ea49b3eee0596e1684de7c8d9defd0c -Author: Görkem Çetin -Date: Wed Sep 8 21:17:39 2004 +0000 - - CVS_SILENT - - po/tr.po | 262 ++++++++++----------------------------------------------------- - 1 file changed, 39 insertions(+), 223 deletions(-) - -commit a5d4d960636a0ff7c9943373dde9fe478885ee8a -Author: Nguyen Thai Ngoc Duy -Date: Wed Sep 8 06:13:26 2004 +0000 - - Updated vi.po - - po/vi.po | 65 +++++++++++++++++++++++++--------------------------------------- - 1 file changed, 25 insertions(+), 40 deletions(-) - -commit a3869032425c4f030a3a17b9c10f0fe7b4e5d2a6 -Author: Adam Hooper -Date: Wed Sep 8 00:38:53 2004 +0000 - - Document popup window functionality (bug #145412) - - ChangeLog | 6 ++++++ - help/C/epiphany.xml | 13 +++++++++++++ - 2 files changed, 19 insertions(+) - -commit 02feb8ec46643345b8125783c4764294cef6bc76 -Author: Alexander Shopov -Date: Tue Sep 7 17:49:10 2004 +0000 - - Updated Bulgarian translation - - 2004-09-07 Alexander Shopov - - * bg.po: Updated Bulgarian translation - - po/ChangeLog | 4 + - po/bg.po | 526 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 289 insertions(+), 241 deletions(-) - -commit ae8e4e3cc4275512e9619f8e6a507e3365e45a5d -Author: Raphael Higino -Date: Tue Sep 7 11:33:00 2004 +0000 - - Updating pt_BR translation - - po/ChangeLog | 4 + - po/pt_BR.po | 588 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 310 insertions(+), 282 deletions(-) - -commit b2817c682b4a6bb5cd6fe3ba09a68e3a52b14d97 -Author: Nikos Charonitakis -Date: Tue Sep 7 08:35:02 2004 +0000 - - Updated Greek translation. - - po/ChangeLog | 4 +++ - po/el.po | 82 ++++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 51 insertions(+), 35 deletions(-) - -commit 48350f693b50ff4572203197fbcbd4f3a7becbe2 -Author: Mugurel Tudor -Date: Tue Sep 7 06:38:30 2004 +0000 - - Updated Romanian translation - - 2004-09-07 Mugurel Tudor - - * ro.po: Updated Romanian translation - - po/ChangeLog | 4 + - po/ro.po | 1293 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 598 insertions(+), 699 deletions(-) - -commit a6f256d85b8d55cdb6ca92cdd9f5f497c52ce2cb -Author: Nguyen Thai Ngoc Duy -Date: Tue Sep 7 04:44:00 2004 +0000 - - Updated vi.po - - po/vi.po | 1207 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 586 insertions(+), 621 deletions(-) - -commit 997c75c0bfa5fab57981edb999e297ad44c2d88e -Author: Kjartan Maraas -Date: Sun Sep 5 20:51:14 2004 +0000 - - Updated Updated - - 2004-09-05 Kjartan Maraas - - * nb.po: Updated - * no.po: Updated - - po/ChangeLog | 5 + - po/nb.po | 441 +++++++++++++++++++++++++++++++---------------------------- - po/no.po | 441 +++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 469 insertions(+), 418 deletions(-) - -commit b49da17266102b43bb246619fabdf3967f085117 -Author: Pawan Chitrakar -Date: Sun Sep 5 14:52:16 2004 +0000 - - Added ne Nepali in ALL_LINGUAS - - 2004-09-05 Pawan Chitrakar - - * configure.in: Added ne Nepali in ALL_LINGUAS - - * ne.po: Added Nepali Translation - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/ne.po | 3538 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3547 insertions(+), 1 deletion(-) - -commit 14c5e69eb2e3de545549f9f1ab4e3b19f7f252fd -Author: Christian Persch -Date: Sat Sep 4 23:02:05 2004 +0000 - - Add "ml" to ALL_LINGUAS. - - 2004-09-05 Christian Persch - - * configure.in: - - Add "ml" to ALL_LINGUAS. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 663002a25afbb001e630df7ee9d9ded660d7d24b -Author: Christian Persch -Date: Wed Sep 1 22:11:36 2004 +0000 - - Fix invisible status icon. Fixes bug #151501; patch approved by RT. - - 2004-09-02 Christian Persch - - * embed/downloader-view.c: (show_status_icon): - - Fix invisible status icon. Fixes bug #151501; - patch approved by RT. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 7 +++++-- - 2 files changed, 12 insertions(+), 2 deletions(-) - -commit b211f52a1547f70cd946f885aefec2eaa41794c7 -Author: Reinout van Schouwen -Date: Wed Sep 1 13:34:26 2004 +0000 - - updated Dutch translation - - 2004-09-01 Reinout van Schouwen - * nl.po: updated Dutch translation - - po/ChangeLog | 13 +-- - po/nl.po | 286 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 153 insertions(+), 146 deletions(-) - -commit 35a23a5f0ed0b923cfb242570542c7417c043cf3 -Author: Runa Bhattacharjee -Date: Tue Aug 31 10:54:06 2004 +0000 - - Updated Bengali (bn) Translation - - po/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 85b9890928cd775f1b88d8dedc74653612e7008b -Author: Runa Bhattacharjee -Date: Tue Aug 31 10:52:19 2004 +0000 - - Updated BEngali(bn) Translation - - po/bn.po | 1372 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 650 insertions(+), 722 deletions(-) - -commit 19eb97eac87b6c08d57273e100a1ee219a8ad8bd -Author: Arafat Medini -Date: Tue Aug 31 07:13:05 2004 +0000 - - Updated Arabic translation - - - 2004-08-31 Arafat Medini - - * ar.po: Updated Arabic translation - - po/ChangeLog | 4 + - po/ar.po | 2222 +++++++++++++++++----------------------------------------- - 2 files changed, 645 insertions(+), 1581 deletions(-) - -commit 07af952031c9c08493d1fab05b38690c555bb86a -Author: Åsmund Skjæveland -Date: Mon Aug 30 23:10:55 2004 +0000 - - Updated Norwegian Nynorsk translation. - - 2004-08-31 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 + - po/nn.po | 1010 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 528 insertions(+), 486 deletions(-) - -commit 8304ed8a71a9bde93543643ec51cc54f97b7570e -Author: Christian Persch -Date: Mon Aug 30 14:54:18 2004 +0000 - - Post-release version bump. - - 2004-08-30 Christian Persch - - * configure.in: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a824f0ecdd9b8255ce8ee2ffa9273ee2cb8c1d24 -Author: Christian Persch -Date: Mon Aug 30 14:53:19 2004 +0000 - - === Release 1.3.8 === - - 2004-08-30 Christian Persch - - * doc/reference/tmpl/ephy-embed.sgml: - - === Release 1.3.8 === - - ChangeLog | 6 ++++++ - doc/reference/tmpl/ephy-embed.sgml | 6 ++++++ - help/ja/epiphany.xml | 2 +- - 3 files changed, 13 insertions(+), 1 deletion(-) - -commit f5bd2cade7740e79ef5bb2abf5c790ed05d16c35 -Author: Christian Persch -Date: Mon Aug 30 09:36:47 2004 +0000 - - Version 1.3.8. - - 2004-08-30 Christian Persch - - * NEWS: - * configure.in: - - Version 1.3.8. - - 2004-08-29 Christian Persch - - ChangeLog | 7 +++++++ - NEWS | 5 +++-- - configure.in | 2 +- - 3 files changed, 11 insertions(+), 3 deletions(-) - -commit 69e765332fbdd7b897afc53bd8f30ea5a501a41f -Author: Nikos Charonitakis -Date: Sun Aug 29 22:39:39 2004 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 610 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 311 insertions(+), 303 deletions(-) - -commit a941a1755f847bf100287e9c68537d5674d06e18 -Author: Christian Persch -Date: Sun Aug 29 19:42:36 2004 +0000 - - Make sure the filename to print to doesn't contain slashes. Fixes bug - - 2004-08-29 Christian Persch - - * embed/print-dialog.c: (sanitize_filename), - (ephy_print_get_print_info): - - Make sure the filename to print to doesn't contain slashes. - Fixes bug #148849. - - ChangeLog | 8 ++++++ - embed/print-dialog.c | 76 +++++++++++++++++++++++++++++++++++++++++++++------- - 2 files changed, 74 insertions(+), 10 deletions(-) - -commit 19d8469ac62082ac4101026655ca957c3cd48041 -Author: Christian Persch -Date: Sun Aug 29 19:41:22 2004 +0000 - - Disable SSLv2 by default. - - 2004-08-29 Christian Persch - - * data/default-prefs.js: - - Disable SSLv2 by default. - - ChangeLog | 6 ++++++ - data/default-prefs.js | 4 ++++ - 2 files changed, 10 insertions(+) - -commit 3a71d052a4a3ce7cc9553c408dc2dd0dc7890140 -Author: Christian Neumair -Date: Sun Aug 29 11:11:56 2004 +0000 - - Updated German translation. - - po/ChangeLog | 5 + - po/de.po | 554 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 292 insertions(+), 267 deletions(-) - -commit 585bf80d2c90004c124cc788a0431af23e381a96 -Author: Christian Persch -Date: Sat Aug 28 19:33:36 2004 +0000 - - Updating NEWS - - NEWS | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f5bcf49d4206b8d28f769f81ca079f7c340420f4 -Author: Christian Persch -Date: Sat Aug 28 19:30:58 2004 +0000 - - Translate this too. Translation by 佐藤 暁 (SATOH Satoru). - - 2004-08-28 Christian Persch - - * help/ja/legal.xml: - - Translate this too. Translation by 佐藤 暁 (SATOH Satoru). - - ChangeLog | 8 +++- - help/ja/legal.xml | 121 +++++++++++++++++++++--------------------------------- - 2 files changed, 53 insertions(+), 76 deletions(-) - -commit 353d0ec538e1d3317047b0ca0e8a6fd4580e3005 -Author: Christian Persch -Date: Sat Aug 28 13:39:10 2004 +0000 - - Shut up - - help/ja/.cvsignore | 4 ++++ - 1 file changed, 4 insertions(+) - -commit a9bd3da2c8c3ddd1e63a2b0beb6a67afcf50d0ae -Author: Christian Persch -Date: Sat Aug 28 13:33:41 2004 +0000 - - Updated. - - 2004-08-28 Christian Persch - - * NEWS: - - Updated. - - ChangeLog | 6 ++++++ - NEWS | 29 +++++++++++++++++++++++++++++ - 2 files changed, 35 insertions(+) - -commit c0ac3b3497854ec3ef9da257e4b070a53ba141b4 -Author: Christian Persch -Date: Sat Aug 28 13:25:16 2004 +0000 - - Added japanese translation of the manual. Translated by SATOH Satoru - - * configure.in: - * help/Makefile.am: - * help/ja/Makefile.am: - * help/ja/epiphany-ja.omf: - * help/ja/epiphany.xml: - * help/ja/figures/ephy-addressbar-smartbookmark-screenshot.png: - * help/ja/figures/ephy-bookmarkbar-smartbookmark-screenshot.png: - * help/ja/figures/ephy-history-window-screenshot.png: - * help/ja/figures/ephy-screenshot.png: - * help/ja/legal.xml: - - Added japanese translation of the manual. - Translated by SATOH Satoru . - - ChangeLog | 16 + - configure.in | 1 + - help/Makefile.am | 2 +- - help/ja/Makefile.am | 7 + - help/ja/epiphany-ja.omf | 34 + - help/ja/epiphany.xml | 2558 ++++++++++++++++++++ - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 6904 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 5032 bytes - help/ja/figures/ephy-history-window-screenshot.png | Bin 0 -> 26435 bytes - help/ja/figures/ephy-screenshot.png | Bin 0 -> 146198 bytes - help/ja/legal.xml | 76 + - 11 files changed, 2693 insertions(+), 1 deletion(-) - -commit ac8fa4fe7f3f05c67c3270c136defd4301c2906f -Author: Christian Persch -Date: Sat Aug 28 11:00:13 2004 +0000 - - popup_menu signal handler has to return gboolean, not void. - - 2004-08-28 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (popup_menu_cb), - (ephy_topic_action_new): - - popup_menu signal handler has to return gboolean, not void. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-topic-action.c | 6 ++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 2c4872759bb9ec3fe2e971824ad9f887f6d2ba24 -Author: Christian Persch -Date: Sat Aug 28 10:56:29 2004 +0000 - - popup_menu signal handler has to return gboolean, not void. - - 2004-08-28 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (popup_menu_cb), - (ephy_bookmark_action_finalize): - - popup_menu signal handler has to return gboolean, not void. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmark-action.c | 7 +++++-- - 2 files changed, 12 insertions(+), 2 deletions(-) - -commit 61f1784c134b5126864d43c1839439f66fda92b0 -Author: Christian Persch -Date: Sat Aug 28 10:22:00 2004 +0000 - - Add debug output - - src/bookmarks/ephy-bookmarks.c | 2 ++ - src/ephy-shell.c | 2 ++ - 2 files changed, 4 insertions(+) - -commit f8d9f3f5d4d9f104118e87dddc3af8d43acb4f92 -Author: Christian Persch -Date: Sat Aug 28 10:21:06 2004 +0000 - - Remove the save timeout on dispose. - - 2004-08-28 Christian Persch - - * src/bookmarks/ephy-bookmarksbar-model.c: - (ephy_bookmarksbar_model_init), (ephy_bookmarksbar_model_dispose), - (ephy_bookmarksbar_model_finalize): - - Remove the save timeout on dispose. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarksbar-model.c | 18 ++++++++++++------ - 2 files changed, 20 insertions(+), 6 deletions(-) - -commit 6908bbda3b2cb195d43f79e656273150380c0235 -Author: Christian Persch -Date: Sat Aug 28 10:19:44 2004 +0000 - - Make sure to instantiate the toolbars model before instantiating the - - 2004-08-28 Christian Persch - - * src/ephy-window.c: (ephy_window_init): - - Make sure to instantiate the toolbars model before instantiating the - bookmarksbar model; otherwise forwarding doesn't work. - Fixes bug #151267. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 13 +++++++++---- - 2 files changed, 17 insertions(+), 4 deletions(-) - -commit fc86ddf59abd40064eeb80748e67339a07f4f5e8 -Author: Christian Persch -Date: Fri Aug 27 20:39:10 2004 +0000 - - Mozilla API change on stable branch. - - 2004-08-27 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Mozilla API change on stable branch. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 684585cc9d6630f541440f692b26d2385f597aba -Author: Ghorban Mohammad Tavakkoli -Date: Fri Aug 27 20:02:47 2004 +0000 - - Bug 151214 fixed. - - po/ChangeLog | 4 + - po/tk.po | 1090 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 578 insertions(+), 516 deletions(-) - -commit 0be8e114523b762ec29e73872dde07818abce133 -Author: Christian Persch -Date: Fri Aug 27 18:26:33 2004 +0000 - - QI instead of cast. - - 2004-08-27 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - QI instead of cast. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 3 +-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit cec5535dda5c684f5f63ca6a8eb8a42ca6ee0c48 -Author: Ole Laursen -Date: Fri Aug 27 15:17:14 2004 +0000 - - s/Overfringer/Overfrsler/ - - 2004-08-27 Ole Laursen - - * da.po: s/Overfringer/Overfrsler/ - - po/ChangeLog | 4 ++ - po/da.po | 129 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 64 insertions(+), 69 deletions(-) - -commit ce45737cd8f5479e05e839de13652b7c31d45a59 -Author: Kartik B. Mistry -Date: Fri Aug 27 14:45:41 2004 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - po/gu.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 8ce3b0877a0b587161b862005d1ab98fae9ecac4 -Author: Iñaki Larrañaga -Date: Fri Aug 27 14:31:56 2004 +0000 - - Bug 151212 fixed. - - 2004-08-27 Iñaki Larrañaga - - * eu.po: Bug 151212 fixed. - - po/ChangeLog | 4 + - po/eu.po | 1062 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 576 insertions(+), 490 deletions(-) - -commit a4d3213cd8ef21ee938ccdd33f8456324ef76deb -Author: Christian Persch -Date: Fri Aug 27 13:46:02 2004 +0000 - - Updated British English translation. - - 2004-08-27 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 557 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 293 insertions(+), 268 deletions(-) - -commit 6e2dd16aab99579360000ff1d2c66ece64dc3af3 -Author: Christian Persch -Date: Thu Aug 26 18:50:46 2004 +0000 - - Get the position of the new tab after the tab_added signal was emitted, to - - 2004-08-26 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_add_tab): - - Get the position of the new tab after the tab_added signal was emitted, - to get it right in the case the signal handler reorders the tabs. - Patch by Justin Wake. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 3 +++ - 2 files changed, 11 insertions(+) - -commit c0dadbdebf6135ea000e171009f876907140cc3f -Author: Amanpreet Singh Alam -Date: Thu Aug 26 07:33:49 2004 +0000 - - check - - po/pa.po | 84 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 42 insertions(+), 42 deletions(-) - -commit c2838f7768c4984aab40b4cf614ea7db5127c029 -Author: Amanpreet Singh Alam -Date: Thu Aug 26 07:32:18 2004 +0000 - - check - - po/pa.po | 112 ++++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 64 insertions(+), 48 deletions(-) - -commit f1acc214a3e8a7593fde9fdc8bd984b1dc832603 -Author: Christian Persch -Date: Wed Aug 25 21:30:25 2004 +0000 - - Make "FileSave" action obey lockdown too. Fixes bug #151039. - - 2004-08-26 Christian Persch - - * src/ephy-window.c: (update_actions_sensitivity): - - Make "FileSave" action obey lockdown too. Fixes bug #151039. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 24a3397aa730dd8cf6c1d0951a8bd10084614f3c -Author: Christian Persch -Date: Wed Aug 25 12:17:33 2004 +0000 - - Shut up - - .cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit 6830dc4a2a4272a035b8af56e98c3d8d04c4467c -Author: Christian Persch -Date: Tue Aug 24 23:03:55 2004 +0000 - - Post-release version bump. - - 2004-08-25 Christian Persch - - * configure.in: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a7d788e5ee20302668b2335bd5f7f8d6aa64e36a -Author: Christian Persch -Date: Tue Aug 24 23:03:08 2004 +0000 - - === Release 1.3.7 === - - 2004-08-25 Christian Persch - - === Release 1.3.7 === - - * src/bookmarks/ephy-bookmarks-menu.c: (open_bookmark_cb), - (add_action_for_bookmark): - - Fix crash when opening a bookmark from the menu. Fixes bug #150982. - - * NEWS: - * configure.in: - - Version 1.3.7. - - ChangeLog | 14 ++++++++++++++ - NEWS | 13 +++++++++++++ - configure.in | 2 +- - src/bookmarks/ephy-bookmarks-menu.c | 4 ++-- - 4 files changed, 30 insertions(+), 3 deletions(-) - -commit 0c3c6309091cc7e597d3f4f12a2b5253c081f450 -Author: Francisco Javier F. Serrador -Date: Tue Aug 24 20:46:28 2004 +0000 - - Updated Spanish translation - - 2004-08-24 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation - - po/ChangeLog | 4 ++++ - po/es.po | 36 ++++++++++++++---------------------- - 2 files changed, 18 insertions(+), 22 deletions(-) - -commit e50dc5bba17b404b7b340ba224e43adc76e34d7b -Author: Christian Persch -Date: Tue Aug 24 11:20:43 2004 +0000 - - Post-release version bump. - - 2004-08-24 Christian Persch - - * configure.in: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4bd072979d6568d518c9c37abd7236f292cc7498 -Author: Christian Persch -Date: Tue Aug 24 11:20:00 2004 +0000 - - === Release 1.3.6 === - - 2004-08-24 Christian Persch - - === Release 1.3.6 === - - ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 9224b4d13385758198b001975ddb858529e5dd16 -Author: Christian Persch -Date: Tue Aug 24 10:58:53 2004 +0000 - - Version 1.3.6. - - 2004-08-24 Christian Persch - - * NEWS: - * configure.in: - - Version 1.3.6. - - ChangeLog | 7 +++++++ - NEWS | 5 +++-- - configure.in | 2 +- - 3 files changed, 11 insertions(+), 3 deletions(-) - -commit a3993adc4d6fb04a29e14e0c9c4a36aec226a6d3 -Author: Christian Rose -Date: Mon Aug 23 22:18:49 2004 +0000 - - Updated Swedish translation. - - 2004-08-24 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 5 + - po/sv.po | 1157 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 636 insertions(+), 526 deletions(-) - -commit 29b3f08fd3fce6d8c6a9ce0793410bd089374192 -Author: Christian Persch -Date: Mon Aug 23 16:04:38 2004 +0000 - - Sync. - - 2004-08-23 Christian Persch - - * lib/widgets/ephy-label.c: (ephy_label_ensure_layout), - (ephy_label_size_allocate): - - Sync. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-label.c | 13 ++++++++----- - 2 files changed, 15 insertions(+), 5 deletions(-) - -commit dbf51aed9ffb4a50152b2652428707b75fc74967 -Author: Christian Persch -Date: Mon Aug 23 13:47:48 2004 +0000 - - Update for 1.3.6. - - 2004-08-23 Christian Persch - - * NEWS: - - Update for 1.3.6. - - ChangeLog | 7 +++++++ - NEWS | 32 ++++++++++++++++++++++++++++++++ - 2 files changed, 39 insertions(+) - -commit 333f3539fef0bd52d338855cbe3b82f3d53a453a -Author: Christian Persch -Date: Mon Aug 23 12:42:03 2004 +0000 - - Just use the popup_menu signal. Fixes bug #150830. - - 2004-08-23 Christian Persch - - * lib/widgets/ephy-node-view.c: (ephy_node_view_key_press_cb), - (ephy_node_view_button_press_cb), (ephy_node_view_class_init): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_show_popup_cb), - (keyword_node_show_popup_cb), (ephy_bookmarks_editor_construct): - * src/ephy-history-window.c: (ephy_history_window_show_popup_cb), - (ephy_history_window_construct), (ephy_history_window_dispose): - - Just use the popup_menu signal. Fixes bug #150830. - - ChangeLog | 12 ++++++++++++ - lib/widgets/ephy-node-view.c | 21 +++------------------ - src/bookmarks/ephy-bookmarks-editor.c | 12 ++++++++---- - src/ephy-history-window.c | 7 ++++--- - 4 files changed, 27 insertions(+), 25 deletions(-) - -commit 7cab7b7f5d4605a77b804c0e6cccc826e7bb311d -Author: Christian Persch -Date: Mon Aug 23 12:15:56 2004 +0000 - - Change hierarchy separator to "->". Fixes bug #149150. - - 2004-08-23 Christian Persch - - * src/bookmarks/ephy-bookmarks.h: - - Change hierarchy separator to "->". Fixes bug #149150. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.h | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b5a198b5d45ae6460919c4001a27574ff640ba27 -Author: Christian Persch -Date: Mon Aug 23 12:08:01 2004 +0000 - - Make the hierarchy separator a #define. - - 2004-08-23 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_import): - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_folder), - (folders_list_to_topic_name): - * src/bookmarks/ephy-bookmarks.h: - - Make the hierarchy separator a #define. - - * src/bookmarks/ephy-bookmarks-menu.c: (remove_action), - (ephy_bookmarks_menu_clean), (open_bookmark_cb), - (add_action_for_bookmark), (ensure_bookmark_actions), - (create_menu), (create_submenu), (ephy_bookmarks_menu_rebuild), - (do_update_cb), (ephy_bookmarks_menu_maybe_update), - (ephy_bookmarks_menu_set_window), - (ephy_bookmarks_menu_set_property), - (ephy_bookmarks_menu_get_property), (bookmarks_tree_changed_cb), - (topics_added_cb), (topics_removed_cb), (topic_child_changed_cb), - (bookmark_added_cb), (bookmark_removed_cb), (activate_cb), - (ephy_bookmarks_menu_init), (ephy_bookmarks_menu_constructor), - (ephy_bookmarks_menu_finalize), (ephy_bookmarks_menu_class_init), - (ephy_bookmarks_menu_new): - * src/bookmarks/ephy-bookmarks-menu.h: - * src/bookmarks/ephy-bookmarks.c: (bookmarks_removed_cb), - (topics_removed_cb), (ephy_bookmarks_add): - - Speed up bookmarks menu with large bookmarks collections, partially - fixes bug #141269. - Fix topic hierarchy and updating on changes, fixes bug #147470, - bug 147786, and bug #150246. - - ChangeLog | 31 ++ - src/bookmarks/ephy-bookmarks-editor.c | 33 +- - src/bookmarks/ephy-bookmarks-import.c | 8 +- - src/bookmarks/ephy-bookmarks-menu.c | 565 ++++++++++++++++++++++++---------- - src/bookmarks/ephy-bookmarks-menu.h | 17 +- - src/bookmarks/ephy-bookmarks.c | 4 - - src/bookmarks/ephy-bookmarks.h | 2 + - 7 files changed, 463 insertions(+), 197 deletions(-) - -commit d07a7cfd1903d727b888eeafd1858850ed467540 -Author: Ankitkumar Rameshchandra Patel -Date: Mon Aug 23 11:54:45 2004 +0000 - - ankit@redhat.com 23/08/2004 * gu.po : Final Proofread. - - po/gu.po | 150 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 76 insertions(+), 74 deletions(-) - -commit 84c2f50c40edab3c2fa3bb82baead06c4deeb6e2 -Author: Christian Persch -Date: Mon Aug 23 09:43:42 2004 +0000 - - Merge from gnome-2-6 branch. - - 2004-08-23 Christian Persch - - * NEWS: - - Merge from gnome-2-6 branch. - - ChangeLog | 6 ++ - NEWS | 236 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 242 insertions(+) - -commit 32602313694b6507377011091d9e7986dc561434 -Author: Christian Persch -Date: Mon Aug 23 09:40:53 2004 +0000 - - Fix a warning when moving tabs between windows; see bug #150822. - - 2004-08-23 Christian Persch - - * lib/widgets/ephy-label.c: (ephy_label_size_allocate): - - Fix a warning when moving tabs between windows; see bug #150822. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-label.c | 5 ++++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit b3afd2e2d5c7af68021cde589fba1bf339f6a82c -Author: Alexander Shopov -Date: Mon Aug 23 08:29:06 2004 +0000 - - Updated Bulgarian translation by Vladimir "Kaladan" Petkov - - 2004-08-23 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir "Kaladan" Petkov - - po/ChangeLog | 5 + - po/bg.po | 613 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 306 insertions(+), 312 deletions(-) - -commit 428f93169d358985f1c6ff4d404f42929edd973e -Author: N Jayaradha -Date: Mon Aug 23 04:50:12 2004 +0000 - - yet to proof read - - po/ta.po | 1088 ++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 603 insertions(+), 485 deletions(-) - -commit 4e5948cd2b82b2fd1c7d82763d97cbd6bbd4d43f -Author: Laszlo Dvornik -Date: Sun Aug 22 11:48:12 2004 +0000 - - Updated Hungarian translation. - - 2004-08-22 Laszlo Dvornik - - * hu.po: Updated Hungarian translation. - - po/ChangeLog | 4 + - po/hu.po | 336 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 184 insertions(+), 156 deletions(-) - -commit f2d41daea48b9dd3295cc978758c57272c2ad205 -Author: Christian Persch -Date: Sat Aug 21 16:45:25 2004 +0000 - - Fix crash when removing a password, introduced by the last commit. - - 2004-08-21 Christian Persch - - * doc/reference/tmpl/ephy-embed.sgml: - * src/pdm-dialog.c: (pdm_dialog_password_remove): - - Fix crash when removing a password, introduced by the last commit. - - ChangeLog | 7 +++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - src/pdm-dialog.c | 4 ++-- - 3 files changed, 11 insertions(+), 2 deletions(-) - -commit 6bb4c6468a602920f04f7d38f4de7247d8719de5 -Author: Christian Persch -Date: Sat Aug 21 16:33:59 2004 +0000 - - Keep the passwords list in the pdm dialogue up-to-date wrt. new passwords - - 2004-08-21 Christian Persch - - * embed/ephy-password-manager.c: (ephy_password_manager_get_type), - (ephy_password_manager_base_init): - * embed/ephy-password-manager.h: - * embed/mozilla/EphySingle.cpp: - * src/pdm-dialog.c: (cookies_cleared_cb), - (pdm_dialog_fill_cookies_list), (passwords_changed_cb), - (pdm_dialog_fill_passwords_list), (pdm_dialog_password_remove), - (pdm_dialog_finalize): - - Keep the passwords list in the pdm dialogue up-to-date wrt. - new passwords saved from web pages. - Fixes bug #150296. - - ChangeLog | 15 ++++++++++ - embed/ephy-password-manager.c | 31 +++++++++++++++++++- - embed/ephy-password-manager.h | 3 ++ - embed/mozilla/EphySingle.cpp | 10 +++++++ - src/pdm-dialog.c | 67 ++++++++++++++++++++++++++++++------------- - 5 files changed, 105 insertions(+), 21 deletions(-) - -commit eaa082e9d2e5ac4fb69799596ce234c35f32aeab -Author: Christian Persch -Date: Sat Aug 21 16:31:49 2004 +0000 - - Set accel for normal zoom, as per HIG. - - 2004-08-21 Christian Persch - - * src/ephy-window.c: - - Set accel for normal zoom, as per HIG. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit af465705f7f00464a2d120d6e43e13f748a5c767 -Author: Amanpreet Singh Alam -Date: Sat Aug 21 09:40:19 2004 +0000 - - check - - po/pa.po | 345 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 184 insertions(+), 161 deletions(-) - -commit f440947ff047db432176897082cccb2ef8ac6d40 -Author: Christian Persch -Date: Sat Aug 21 08:38:46 2004 +0000 - - Add autoconf check for dlopen, and add '-dlopen self' to LDFLAGS. Fixes - - 2004-08-21 Christian Persch - - * configure.in: - * src/Makefile.am: - - Add autoconf check for dlopen, and add '-dlopen self' to - LDFLAGS. Fixes bug #150673. - - ChangeLog | 8 ++++++++ - configure.in | 1 + - src/Makefile.am | 2 +- - 3 files changed, 10 insertions(+), 1 deletion(-) - -commit df782ccc4eb34aae382c2808d5d2752b85142c5e -Author: Christian Persch -Date: Fri Aug 20 17:53:47 2004 +0000 - - Set default horizontal wheel action to 'scroll'. Fixes bug #148557. - - 2004-08-20 Christian Persch - - * data/default-prefs.js: - - Set default horizontal wheel action to 'scroll'. - Fixes bug #148557. - - ChangeLog | 7 +++++++ - data/default-prefs.js | 3 +++ - 2 files changed, 10 insertions(+) - -commit be4b2d3b67e28426f5b073b5d5a31d0fc3a1eda1 -Author: Laurent Dhima -Date: Fri Aug 20 16:41:11 2004 +0000 - - Updated Albanian translation. - - 2004-08-20 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++++ - po/sq.po | 13 +++++++------ - 2 files changed, 11 insertions(+), 6 deletions(-) - -commit 1461b9e888ecc19ee123ed708395df171354bc22 -Author: N Jayaradha -Date: Fri Aug 20 11:26:38 2004 +0000 - - tamil update - - po/ChangeLog | 3 +++ - 1 file changed, 3 insertions(+) - -commit 7c1d3c2012212d444f066afed2952b7b6d6d7207 -Author: N Jayaradha -Date: Fri Aug 20 11:25:07 2004 +0000 - - yet to proof read - - po/ta.po | 364 ++++++++++++++------------------------------------------------- - 1 file changed, 82 insertions(+), 282 deletions(-) - -commit 121c2db29317267d409cec973d143bef1e72b965 -Author: Artur Flinta -Date: Fri Aug 20 05:46:50 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-08-20 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++++ - po/pl.po | 6 +++--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 95e661f6e0a9b21b79bacfcd74fd9373df8d289a -Author: Marco Pesenti Gritti -Date: Thu Aug 19 17:48:43 2004 +0000 - - Set mozilla binaries path before firing up. - - 2004-08-19 Marco Pesenti Gritti - - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - - Set mozilla binaries path before firing up. - - ChangeLog | 7 +++++++ - embed/mozilla/Makefile.am | 1 + - embed/mozilla/mozilla-embed-single.cpp | 5 +++++ - 3 files changed, 13 insertions(+) - -commit 26466a9edc6df383033a45b74627824bd75de858 -Author: Pauli Virtanen -Date: Wed Aug 18 22:22:02 2004 +0000 - - Updated Finnish translation. - - * fi.po: Updated Finnish translation. - - po/ChangeLog | 4 + - po/fi.po | 1180 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 625 insertions(+), 559 deletions(-) - -commit 91c229b4c51df21c6d62fd28a2ed4868cb64690d -Author: Christian Persch -Date: Wed Aug 18 15:44:44 2004 +0000 - - Change guint to correct enum type. - - 2004-08-18 Christian Persch - - * lib/widgets/ephy-cell-renderer-progress.c: - (ephy_cell_renderer_progress_render): - * lib/widgets/ephy-tree-model-node.c: - * src/ephy-completion-model.c: - - Change guint to correct enum type. - - ChangeLog | 9 +++++++++ - lib/widgets/ephy-cell-renderer-progress.c | 4 ++-- - lib/widgets/ephy-tree-model-node.c | 2 +- - src/ephy-completion-model.c | 2 +- - 4 files changed, 13 insertions(+), 4 deletions(-) - -commit ec6e8924e3ce6f1395d0b3985b63eeec648d28a5 -Author: Fixed translations. T.Aihana -Date: Wed Aug 18 14:00:44 2004 +0000 - - 2004-08-18 Fixed translations. T.Aihana - - po/ja.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 0c4cb23c3fdb04e979fd0851880ea57d5d360740 -Author: Updated ja.po. T.Aihana -Date: Wed Aug 18 13:28:00 2004 +0000 - - 2004-08-18 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 333 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 182 insertions(+), 155 deletions(-) - -commit 59e3c7276de876395231169df8d4b3f240dab16a -Author: Laurent Dhima -Date: Wed Aug 18 10:48:26 2004 +0000 - - Updated Albanian translation. - - 2004-08-18 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++++ - po/sq.po | 44 +++++++++++++++++++++++++++++--------------- - 2 files changed, 33 insertions(+), 15 deletions(-) - -commit 078bdcb8a4b470d6a9d8cb9efdd36f90f7e1719c -Author: Maxim Dziumanenko -Date: Wed Aug 18 10:02:15 2004 +0000 - - Updated Ukrainian translation. - - 2004-08-18 Maxim Dziumanenko - - * Updated Ukrainian translation. - - po/ChangeLog | 4 + - po/uk.po | 335 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 183 insertions(+), 156 deletions(-) - -commit 83fa9e715a4543d33dc1b9fde0ef05e349070b01 -Author: Artur Flinta -Date: Mon Aug 16 22:35:38 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-08-17 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++++ - po/pl.po | 19 ++++++++++--------- - 2 files changed, 14 insertions(+), 9 deletions(-) - -commit d6de5170111874999568f6e9e37c693179508d68 -Author: Christian Rose -Date: Mon Aug 16 20:11:43 2004 +0000 - - Added "bs" to ALL_LINGUAS. Added Bosnian translation by Kenan Hadžiavdić - - 2004-08-16 Christian Rose - - * configure.in: Added "bs" to ALL_LINGUAS. - * po/bs.po: Added Bosnian translation by - Kenan Hadžiavdić . - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/bs.po | 3479 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3489 insertions(+), 1 deletion(-) - -commit f6ce28a9d86c8756d3a63e72a660eb3e99233379 -Author: Metin Amiroff -Date: Mon Aug 16 19:43:58 2004 +0000 - - Translation updated by Mətin Əmirov. - - 2004-08-17 Metin Amiroff - - * az.po: Translation updated by Mətin Əmirov. - - po/ChangeLog | 4 + - po/az.po | 964 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 527 insertions(+), 441 deletions(-) - -commit 88ee6df913becbd11b6ab82f5999cb3c12ea1fe1 -Author: Kjartan Maraas -Date: Mon Aug 16 15:04:12 2004 +0000 - - Added nb to ALL_LINGUAS. - - 2004-08-16 Kjartan Maraas - - * configure.in: Added nb to ALL_LINGUAS. - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 542aebc09eb75434d7435582eb6716923ff4f00e -Author: Kjartan Maraas -Date: Mon Aug 16 15:03:27 2004 +0000 - - Added this. - - 2004-08-16 Kjartan Maraas - - * nb.po: Added this. - - po/ChangeLog | 4 + - po/nb.po | 3468 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 3472 insertions(+) - -commit 712ee00ae52fa20eb859902651c7021c386fa70c -Author: Christian Persch -Date: Mon Aug 16 14:40:00 2004 +0000 - - Remove superflous private struct. - - 2004-08-16 Christian Persch - - * embed/ephy-embed-event.c: - - Remove superflous private struct. - - ChangeLog | 6 ++++++ - embed/ephy-embed-event.c | 7 ------- - 2 files changed, 6 insertions(+), 7 deletions(-) - -commit a61667dfd9ae1dbaf88bb0353848d7f4963d3577 -Author: Christian Persch -Date: Mon Aug 16 11:02:20 2004 +0000 - - Post-release version bump. - - 2004-08-16 Christian Persch - - * configure.in: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 2dfc0701933b4655005dc2a1145eb805c4bde6c5 -Author: Christian Persch -Date: Mon Aug 16 11:01:27 2004 +0000 - - === Release 1.3.5 === - - 2004-08-16 Christian Persch - - * doc/reference/tmpl/ephy-embed.sgml: - - === Release 1.3.5 === - - ChangeLog | 6 ++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 2 files changed, 8 insertions(+) - -commit 489d321fda2eda66650b2211eaf5be18e21a25fd -Author: Christian Persch -Date: Mon Aug 16 10:20:16 2004 +0000 - - Update for 1.3.5. - - 2004-08-16 Christian Persch - - * NEWS: - - Update for 1.3.5. - - ChangeLog | 6 ++++++ - NEWS | 31 +++++++++++++++++++++++++++++-- - 2 files changed, 35 insertions(+), 2 deletions(-) - -commit bfbf5d7031a55a15efab16195fd80ef86fd8b0c1 -Author: Christian Persch -Date: Mon Aug 16 10:14:04 2004 +0000 - - Version 1.3.5. Make dist produce a .tar.bz2 too. - - 2004-08-16 Christian Persch - - * configure.in: - - Version 1.3.5. - Make dist produce a .tar.bz2 too. - - ChangeLog | 7 +++++++ - configure.in | 6 +++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit 9f534be424c1285f83e53cf00c39726d68a6cb04 -Author: Christian Persch -Date: Sun Aug 15 22:24:01 2004 +0000 - - Use GetLocalName instead of GetTagName to get the attribute name. Patch by - - 2004-08-16 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Use GetLocalName instead of GetTagName to get the attribute name. - Patch by Mikael Brockman, fixes bug #150208. - - ChangeLog | 7 +++++++ - embed/mozilla/EventContext.cpp | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 0d70e6e6a59004c95306985c97ab5df8d0160d78 -Author: Francisco Javier F. Serrador -Date: Sat Aug 14 22:52:32 2004 +0000 - - Updated Spanish translation. - - 2004-08-15 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 412 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 220 insertions(+), 196 deletions(-) - -commit f11777bd8c968c11cb68b823df8bab2c5bde0e19 -Author: Martin Willemoes Hansen -Date: Sat Aug 14 09:50:23 2004 +0000 - - da.po: quick fix - - po/da.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 093157612e1221f285662239a8b77511bc41db08 -Author: Martin Willemoes Hansen -Date: Sat Aug 14 09:46:22 2004 +0000 - - Updated Danish translation - - * da.po: Updated Danish translation - - po/ChangeLog | 4 + - po/da.po | 647 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 351 insertions(+), 300 deletions(-) - -commit c66125e70c6313cab254cd280229d804b3205694 -Author: Duarte Loreto -Date: Fri Aug 13 23:25:49 2004 +0000 - - Updated Portuguese translation. - - 2004-08-14 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 546 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 287 insertions(+), 263 deletions(-) - -commit 7db3f8021e3c2ac617ec331aae13ac72afb534c5 -Author: Tommi Vainikainen -Date: Fri Aug 13 19:46:11 2004 +0000 - - Unified po headers for Finnish Team - - po/ChangeLog | 4 ++++ - po/fi.po | 5 ++--- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 77be9b92265ef47cb9473210bf8bea3d32a00bbb -Author: Changwoo Ryu -Date: Fri Aug 13 15:17:06 2004 +0000 - - Updated Korean translation - - po/ChangeLog | 4 ++++ - po/ko.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 4b63492c4ff2d4290075cf39487659e1c8d95526 -Author: Laurent Dhima -Date: Thu Aug 12 15:34:37 2004 +0000 - - Updated Albanian translation. - - 2004-08-12 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++ - po/sq.po | 175 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 96 insertions(+), 83 deletions(-) - -commit 2d42137eedc47910a32a0acf8739025d60c262f8 -Author: Christian Persch -Date: Thu Aug 12 10:30:50 2004 +0000 - - We don't build against 1.8a1, so don't list it in the help for - - 2004-08-12 Christian Persch - - * configure.in: - - We don't build against 1.8a1, so don't list it in the help - for --with-mozilla-snapshot. - - ChangeLog | 7 +++++++ - configure.in | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 66f7d714a68d866226e96f6cba2dafc31390c367 -Author: Changwoo Ryu -Date: Wed Aug 11 17:36:14 2004 +0000 - - Updated Korean translation - - po/ChangeLog | 4 + - po/ko.po | 543 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 287 insertions(+), 260 deletions(-) - -commit 5e19a686a3c7df82a0ffa0b335cd1a322165d34b -Author: Hasbullah Bin Pit -Date: Wed Aug 11 14:32:38 2004 +0000 - - heh - - po/ChangeLog | 4 + - po/ms.po | 1673 +++++++++++++++++++++++++--------------------------------- - 2 files changed, 722 insertions(+), 955 deletions(-) - -commit 9ec80873907eb3f7e8f9da187963827f2e4fbe5d -Author: Christian Persch -Date: Wed Aug 11 12:31:06 2004 +0000 - - Remove unused variables. - - 2004-08-11 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (drag_data_get_cb), - (set_item_drag_source), (egg_editable_toolbar_set_model): - - Remove unused variables. - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 4 ---- - 2 files changed, 7 insertions(+), 4 deletions(-) - -commit 37443b4552bfdbe5a0cb3c2bc8d562d55c0ca184 -Author: Dmitry Mastrukov -Date: Wed Aug 11 09:57:32 2004 +0000 - - ru.po: Updated Russian translation from Russian team . - - po/ChangeLog | 5 + - po/ru.po | 1070 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 576 insertions(+), 499 deletions(-) - -commit ff0120ee32f40e113ef500c2b5ca70c4ae5e4bca -Author: Christian Persch -Date: Tue Aug 10 14:13:58 2004 +0000 - - Updating NEWS - - NEWS | 29 +++++++++++++++++++++++++++++ - 1 file changed, 29 insertions(+) - -commit a56e443212e972375dfaa24ab763952d50b288ac -Author: Christian Persch -Date: Tue Aug 10 09:23:18 2004 +0000 - - Include mozilla-version.h; thanks to Crispin for testing. - - 2004-08-10 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Include mozilla-version.h; thanks to Crispin for testing. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 2 ++ - 2 files changed, 8 insertions(+) - -commit 5f7cba71418f41acc5944e7fdcba75ac5e9b7c78 -Author: Christian Persch -Date: Tue Aug 10 08:50:09 2004 +0000 - - Yet another mozilla API change. - - 2004-08-10 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GlobalHistory.h: - - Yet another mozilla API change. - - ChangeLog | 7 +++++++ - embed/mozilla/GlobalHistory.cpp | 23 +++++++++++++++++++++++ - embed/mozilla/GlobalHistory.h | 4 ---- - 3 files changed, 30 insertions(+), 4 deletions(-) - -commit b5c73bbdc3572bb91f9328d7e357c8018009dd43 -Author: Funda Wang -Date: Tue Aug 10 06:29:22 2004 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 ++ - po/zh_CN.po | 173 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 95 insertions(+), 82 deletions(-) - -commit c8f10790d2972c18ba0d949c7f67d6b8b94cf7af -Author: Christian Persch -Date: Mon Aug 9 18:41:49 2004 +0000 - - Fix object property naming leftover from EggMenuMerge days, to UI manager. - - 2004-08-09 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (find_action), - (egg_editable_toolbar_construct), (egg_editable_toolbar_set_model), - (egg_editable_toolbar_set_ui_manager), - (egg_editable_toolbar_set_property), - (egg_editable_toolbar_get_property), - (egg_editable_toolbar_class_init), (egg_editable_toolbar_finalize), - (egg_editable_toolbar_new), (egg_editable_toolbar_new_with_model), - (egg_editable_toolbar_get_model): - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-toolbar-editor.c: (find_action), - (egg_toolbar_editor_set_ui_manager), - (egg_toolbar_editor_set_property), - (egg_toolbar_editor_get_property), (egg_toolbar_editor_class_init), - (egg_toolbar_editor_finalize), (egg_toolbar_editor_new), - (egg_toolbar_editor_init): - * lib/egg/egg-toolbar-editor.h: - * src/bookmarks/ephy-bookmarksbar.c: - (ephy_bookmarksbar_set_window): - * src/toolbar.c: (toolbar_new): - - Fix object property naming leftover from EggMenuMerge days, to - UI manager. - - ChangeLog | 25 ++++++++++++++++++ - lib/egg/egg-editable-toolbar.c | 55 +++++++++++++++++++-------------------- - lib/egg/egg-editable-toolbar.h | 4 +-- - lib/egg/egg-toolbar-editor.c | 47 ++++++++++++++++----------------- - lib/egg/egg-toolbar-editor.h | 2 +- - src/bookmarks/ephy-bookmarksbar.c | 4 +-- - src/toolbar.c | 2 +- - 7 files changed, 81 insertions(+), 58 deletions(-) - -commit 38c4250e5fa1fa0e3069b2a14985c9d439ba0916 -Author: Christian Persch -Date: Mon Aug 9 18:24:08 2004 +0000 - - 2004-08-09 Christian Persch - - * lib/egg/egg-editable-toolbar.c: - (egg_editable_toolbar_deconstruct): - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 9 ++------- - 2 files changed, 9 insertions(+), 7 deletions(-) - -commit ed872a964040e709a3eade1867a85b2891beb656 -Author: Christian Persch -Date: Mon Aug 9 15:19:39 2004 +0000 - - Fix a mem leak. - - 2004-08-09 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): - - Fix a mem leak. - - ChangeLog | 8 +++++++- - src/bookmarks/ephy-bookmarks-import.c | 23 +++++++++++++++-------- - 2 files changed, 22 insertions(+), 9 deletions(-) - -commit 8d8654617655360a8c2535b1b7e1057f99f7d6ae -Author: Christian Persch -Date: Mon Aug 9 15:07:52 2004 +0000 - - Add bug # for reference - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 481db20f90d4bba5f68e8597dfa10e8dfdd3bc71 -Author: Christian Persch -Date: Mon Aug 9 15:03:48 2004 +0000 - - Fix compilation with gcc 2.95. - - 2004-08-09 Christian Persch - - * lib/egg/egg-toolbar-editor.c: (compare_actions): - - Fix compilation with gcc 2.95. - - ChangeLog | 6 ++++++ - lib/egg/egg-toolbar-editor.c | 6 ++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit 4db18fadc560f190147edc9d64d7f8aa129f9248 -Author: Artur Flinta -Date: Mon Aug 9 11:55:23 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-08-09 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 853 +++++++++++++++++++++++++---------------------------------- - 2 files changed, 357 insertions(+), 500 deletions(-) - -commit f8d6d6047ca02b66a3f0a3768cb18ec10a7e1904 -Author: Danilo Šegan -Date: Mon Aug 9 10:53:27 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++ - po/sr.po | 170 ++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 170 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 180 insertions(+), 164 deletions(-) - -commit 0fa033bbcf9129176b5f48363021300bed9fa96a -Author: Christian Persch -Date: Mon Aug 9 10:48:02 2004 +0000 - - Note original cvs versions - - lib/widgets/ephy-label.c | 2 ++ - lib/widgets/ephy-label.h | 2 ++ - 2 files changed, 4 insertions(+) - -commit d8bb5b65d73668942101b33feda431e941a7f94c -Author: Christian Persch -Date: Mon Aug 9 10:41:17 2004 +0000 - - Include config.h upfront. - - 2004-08-09 Christian Persch - - * lib/widgets/ephy-label.c: - - Include config.h upfront. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-label.c | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit fedbee566107f89acab946d5ebd4ef3f5f6d7bdb -Author: Christian Persch -Date: Mon Aug 9 10:35:24 2004 +0000 - - Only use this for gtk < 2.5.1, and just add a few #defines otherwise. - - 2004-08-09 Christian Persch - - * lib/widgets/ephy-label.c: - * lib/widgets/ephy-label.h: - - Only use this for gtk < 2.5.1, and just add a few - #defines otherwise. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-label.c | 9 ++++++++- - lib/widgets/ephy-label.h | 15 +++++++++++++++ - 3 files changed, 31 insertions(+), 1 deletion(-) - -commit dfa44d593b805613c57550eda9863e24e3235645 -Author: Christian Persch -Date: Mon Aug 9 10:29:49 2004 +0000 - - Free list and filter on finalize; fixes bug #149689. Use g_list_prepend - - 2004-08-09 Christian Persch - - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_get_type), (ephy_topics_selector_apply), - (provide_toggle), (ephy_topics_selector_constructor), - (topic_destroy_cb), (node_toggled_cb), - (ephy_topics_selector_finalize), (ephy_topics_selector_class_init): - - Free list and filter on finalize; fixes bug #149689. - Use g_list_prepend instead of _append. - Mark the column title for translation. - - ChangeLog | 12 +++++++++++ - src/bookmarks/ephy-topics-selector.c | 42 +++++++++++++++++++++++++----------- - 2 files changed, 42 insertions(+), 12 deletions(-) - -commit c91322e6e8ae3f86e2aa9e1012232c42f8eb389d -Author: Ankitkumar Rameshchandra Patel -Date: Mon Aug 9 07:27:40 2004 +0000 - - ankit@redhat.com 09/08/04 - - po/gu.po | 319 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 171 insertions(+), 148 deletions(-) - -commit 598b40c6011b6d93351e5b010492934be5dcfd4d -Author: Miloslav Trmac -Date: Sun Aug 8 21:53:55 2004 +0000 - - Updated Czech translation. - - 2004-08-08 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 166 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 91 insertions(+), 79 deletions(-) - -commit 9f8e56ae4d42d318f5812527e25f5c42986c9ced -Author: Adam Weinberger -Date: Sun Aug 8 19:10:07 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 325 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 177 insertions(+), 152 deletions(-) - -commit ab5fe114f9aace01c98a6407fb657adf274cb531 -Author: Christian Persch -Date: Sun Aug 8 18:11:56 2004 +0000 - - Fix compiler warning about anon enum mismatch. - - 2004-08-08 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - - Fix compiler warning about anon enum mismatch. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyBrowser.h | 8 ++++---- - embed/mozilla/mozilla-embed-single.cpp | 10 +++++----- - embed/mozilla/mozilla-embed.cpp | 3 ++- - embed/mozilla/mozilla-embed.h | 10 ++++++---- - 6 files changed, 25 insertions(+), 15 deletions(-) - -commit 859bd4706dba82e469d699aebd3f6336c0482c7a -Author: Christian Persch -Date: Sun Aug 8 17:48:30 2004 +0000 - - Allow XUL windows to open new windows. - - 2004-08-08 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: - - Allow XUL windows to open new windows. - - ChangeLog | 8 +++++++- - embed/mozilla/mozilla-embed.cpp | 18 ++++++++++++++++-- - 2 files changed, 23 insertions(+), 3 deletions(-) - -commit 8f30d82289466a8983b48d1a269f2f6779711772 -Author: Christian Neumair -Date: Sun Aug 8 16:39:53 2004 +0000 - - Sort topics in topic selector by name. Fixes #149639. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-topics-selector.c | 2 ++ - 2 files changed, 9 insertions(+) - -commit 98ce8dd3c3b2718296df130a0ef4b445fc9a4343 -Author: Reinout van Schouwen -Date: Sun Aug 8 16:27:44 2004 +0000 - - po/ChangeLog update - - 2004-08-08 Reinout van Schouwen - * po/ChangeLog update - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 3760ade3ea7000a67702e1272ad5db35a40d9bf2 -Author: Marco Pesenti Gritti -Date: Sun Aug 8 16:13:24 2004 +0000 - - *** empty log message *** - - doc/reference/tmpl/ephy-embed-single.sgml | 2 ++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 2 files changed, 4 insertions(+) - -commit 6f7238262f13bf5db3ee169c2ae032e0df702bd8 -Author: Funda Wang -Date: Sun Aug 8 16:11:57 2004 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 ++ - po/zh_CN.po | 165 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 93 insertions(+), 76 deletions(-) - -commit f79d6731fa9d10b370efe776ca7f0bd35c522900 -Author: Christian Persch -Date: Sun Aug 8 16:07:58 2004 +0000 - - Removed reference to ephy-ellipsizing-label. - - 2004-08-08 Christian Persch - - * doc/reference/Makefile.am: - - Removed reference to ephy-ellipsizing-label. - - * po/POTFILES.in: - - Added lib/widgets/ephy-label.c - - ChangeLog | 10 ++++++++++ - doc/reference/Makefile.am | 2 +- - po/POTFILES.in | 1 + - 3 files changed, 12 insertions(+), 1 deletion(-) - -commit 10256b2ff6a49d5283ca281ea0068e1acbe7686e -Author: Christian Persch -Date: Sun Aug 8 15:33:26 2004 +0000 - - R lib/widgets/ephy-ellipsizing-label.c: R - - 2004-08-08 Christian Persch - - * lib/ephy-marshal.list: - * lib/widgets/Makefile.am: - R lib/widgets/ephy-ellipsizing-label.c: - R lib/widgets/ephy-ellipsizing-label.h: - A lib/widgets/ephy-label.c: - A lib/widgets/ephy-label.h: - * src/ephy-notebook.c: (sync_label), (build_tab_label): - * src/pdm-dialog.c: (show_cookies_properties): - * src/prefs-dialog.c: (create_download_path_label), - (download_path_response_cb): - - Kill our ellipsizing label implementation, and import GtkLabel - into our prefix. - - * configure.in: - - Depend on pango 1.5.1 for ellipsisation support. - - ChangeLog | 20 + - configure.in | 3 + - lib/ephy-marshal.list | 1 + - lib/widgets/Makefile.am | 4 +- - lib/widgets/ephy-ellipsizing-label.c | 780 -------- - lib/widgets/ephy-ellipsizing-label.h | 74 - - lib/widgets/ephy-label.c | 3448 ++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-label.h | 172 ++ - src/ephy-notebook.c | 9 +- - src/pdm-dialog.c | 11 +- - src/prefs-dialog.c | 11 +- - 11 files changed, 3661 insertions(+), 872 deletions(-) - -commit d368e97a37dbd9ed2163f0a446fa3723ed57c732 -Author: Reinout van Schouwen -Date: Sun Aug 8 14:41:32 2004 +0000 - - updated Dutch translation - - 2004-08-08 Reinout van Schouwen - * nl.po: updated Dutch translation - - po/nl.po | 170 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 92 insertions(+), 78 deletions(-) - -commit c62df70a33121ddd514987d88db9484353cb960f -Author: Christian Persch -Date: Sun Aug 8 13:47:11 2004 +0000 - - Really remove epiphany.in - - src/epiphany.in | 35 ----------------------------------- - 1 file changed, 35 deletions(-) - -commit 1944203b014cc0e2ff23c81534e03206936a1578 -Author: Christian Persch -Date: Sun Aug 8 13:42:23 2004 +0000 - - R src/epiphany.in: - - 2004-08-08 Christian Persch - - * configure.in: - * src/Makefile.am: - R src/epiphany.in: - - Get rid of the startup script, and use rpath linking instead. - Ported from galeon. - - ChangeLog | 9 +++++++++ - configure.in | 4 +--- - src/Makefile.am | 9 +++++---- - 3 files changed, 15 insertions(+), 7 deletions(-) - -commit 512da5665179b1bf7815e33f2d2e9f3a4f59380c -Author: Christian Persch -Date: Sun Aug 8 13:41:29 2004 +0000 - - Remove unused variable. - - 2004-08-08 Christian Persch - - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - - Remove unused variable. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit bc27de61c1022e7e557840bb0a680bb38076656a -Author: Christian Persch -Date: Sun Aug 8 12:25:21 2004 +0000 - - Include "ephy-string.h", fixes build with -Werror. - - 2004-08-08 Christian Persch - - * src/ephy-notebook.c: - - Include "ephy-string.h", fixes build with -Werror. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 1 + - 2 files changed, 7 insertions(+) - -commit d0bf32aad9e7f27f50ffc45abe0e1e0cb0a433ad -Author: Christian Persch -Date: Sun Aug 8 11:54:11 2004 +0000 - - Consistent naming for nsresult vars. Since 'rv' had the majority, 'rv' it - - 2004-08-08 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - - Consistent naming for nsresult vars. Since 'rv' had the majority, - 'rv' it is. - - ChangeLog | 12 +++++ - embed/mozilla/EphyBrowser.cpp | 57 ++++++++++---------- - embed/mozilla/EphySingle.cpp | 6 +-- - embed/mozilla/EventContext.cpp | 31 ++++++----- - embed/mozilla/MozillaPrivate.cpp | 6 +-- - embed/mozilla/mozilla-embed-single.cpp | 30 +++++------ - embed/mozilla/mozilla-embed.cpp | 96 +++++++++++++++++----------------- - 7 files changed, 123 insertions(+), 115 deletions(-) - -commit 1bb4b10ce6a3e857b14e0637e17203960dcc9543 -Author: Christian Persch -Date: Sun Aug 8 11:32:18 2004 +0000 - - Make ephy_embed_single_open_window() return the newly opened embed widget. - - 2004-08-08 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_open_window): - * embed/ephy-embed-single.h: - * embed/mozilla/mozilla-embed-single.cpp: (impl_open_window): - * src/ephy-tab.c: (popups_manager_show): - - Make ephy_embed_single_open_window() return the newly opened - embed widget. - - ChangeLog | 10 +++++++ - embed/ephy-embed-single.c | 11 +++++--- - embed/ephy-embed-single.h | 48 ++++++++++++++++++---------------- - embed/mozilla/mozilla-embed-single.cpp | 14 ++++++---- - src/ephy-tab.c | 2 +- - 5 files changed, 53 insertions(+), 32 deletions(-) - -commit 5edd4b22cdae0b762add8316fe023a334f67060d -Author: Laurent Dhima -Date: Sun Aug 8 10:33:18 2004 +0000 - - Updated Albanian translation. - - 2004-08-08 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 + - po/sq.po | 425 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 213 insertions(+), 216 deletions(-) - -commit 7d355cfeffeadf9b72b23887bc6d4452675f2332 -Author: Miloslav Trmac -Date: Sat Aug 7 15:37:46 2004 +0000 - - Updated Czech translation. - - 2004-08-07 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 899 +++++++++++++---------------------------------------------- - 2 files changed, 199 insertions(+), 704 deletions(-) - -commit 2089762dabe53b2d181628541e78d8a194b3496c -Author: Danilo Šegan -Date: Sat Aug 7 09:18:12 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 20 +++++++++++++++++--- - po/sr@Latn.po | 20 +++++++++++++++++--- - 3 files changed, 38 insertions(+), 6 deletions(-) - -commit e91d6066857c87e70ec2359d34a634aa3010a0ee -Author: Danilo Šegan -Date: Fri Aug 6 18:49:25 2004 +0000 - - Updated Serbian translations. - - po/ChangeLog | 4 + - po/sr.po | 726 ++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 726 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 766 insertions(+), 690 deletions(-) - -commit 0bd4166c066d6f50133e41c71151b1bb31f917e4 -Author: Christian Persch -Date: Fri Aug 6 18:44:52 2004 +0000 - - Make keyword search URL localisable. Fixes bug #144909. - - 2004-08-06 Christian Persch - - * data/default-prefs.js: - * embed/mozilla/mozilla-embed-single.cpp: - - Make keyword search URL localisable. Fixes bug #144909. - - ChangeLog | 7 +++++++ - data/default-prefs.js | 1 - - embed/mozilla/mozilla-embed-single.cpp | 20 ++++++++++++++++---- - 3 files changed, 23 insertions(+), 5 deletions(-) - -commit ace0653216f5e6e4d8f4f972cc96a0f27f147cf8 -Author: Christian Persch -Date: Fri Aug 6 15:31:18 2004 +0000 - - Fix the reload workaround version checks to look for the correct versions. - - 2004-08-06 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-version.h: - - Fix the reload workaround version checks to look for the - correct versions. Thanks to Crispin for noticing this. - - ChangeLog | 10 ++++++++++ - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/mozilla-embed.cpp | 4 ++-- - embed/mozilla/mozilla-version.h | 3 +++ - 5 files changed, 17 insertions(+), 4 deletions(-) - -commit 54f1919cae74d3551c23eef9d00975344d1c78a9 -Author: Christian Persch -Date: Fri Aug 6 14:34:43 2004 +0000 - - Fix dragging of urls which gnome-vfs can't handle. Fix new tab positioning - - 2004-08-06 Christian Persch - - * lib/ephy-string.c: (ephy_string_parse_uri_list): - * lib/ephy-string.h: - * lib/widgets/ephy-node-view.c: (drag_data_received_cb), - (ephy_node_view_class_init): - * src/bookmarks/ephy-bookmarks-editor.c: - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - * src/ephy-notebook.h: - * src/ephy-session.c: - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-tab.c: (ephy_tab_new_window_cb): - * src/ephy-window.c: (ephy_window_load_in_tabs): - - Fix dragging of urls which gnome-vfs can't handle. - Fix new tab positioning when opening tabs from drags. - - ChangeLog | 17 +++++++++++ - lib/ephy-string.c | 52 ++++++++++++++++++++++++++++++++ - lib/ephy-string.h | 2 ++ - lib/widgets/ephy-node-view.c | 57 ++--------------------------------- - src/bookmarks/ephy-bookmarks-editor.c | 1 - - src/ephy-notebook.c | 21 ++++++------- - src/ephy-notebook.h | 5 --- - src/ephy-session.c | 4 +-- - src/ephy-shell.c | 20 +++++------- - src/ephy-tab.c | 2 +- - src/ephy-window.c | 12 +++----- - 11 files changed, 97 insertions(+), 96 deletions(-) - -commit 394409d0ccca365dd8d9e8a29752d2fb27cb7bbe -Author: Ankitkumar Rameshchandra Patel -Date: Fri Aug 6 13:58:09 2004 +0000 - - ankit@redhat.com 06/08/04 - - po/gu.po | 1520 +++++++++++++++++++++++--------------------------------------- - 1 file changed, 568 insertions(+), 952 deletions(-) - -commit de613c2209c88b8a50623ce920e886685f7086c3 -Author: Christian Persch -Date: Fri Aug 6 13:14:14 2004 +0000 - - Fix restoring the history window on resume. - - 2004-08-06 Christian Persch - - * src/ephy-session.c: (write_window_geometry), (write_tool_window), - (ephy_session_load): - - Fix restoring the history window on resume. - - ChangeLog | 7 +++++++ - src/ephy-session.c | 20 ++++++++++---------- - 2 files changed, 17 insertions(+), 10 deletions(-) - -commit 7ca43af0be7e068d0a2634bd814a8f42b8b2abb2 -Author: Christian Persch -Date: Fri Aug 6 13:08:03 2004 +0000 - - Avoid overwriting the session file while resuming; preserves the crashed - - 2004-08-06 Christian Persch - - * src/ephy-session.c: (ephy_session_init), - (ephy_session_autoresume), (ephy_session_save), - (ephy_session_get_active_window): - - Avoid overwriting the session file while resuming; preserves - the crashed session when crashing while resuming. - - ChangeLog | 9 +++++++++ - src/ephy-session.c | 24 +++++++++++++++++++++--- - 2 files changed, 30 insertions(+), 3 deletions(-) - -commit f15105e06c66e1156f6c8f4542db62eed0ee46f2 -Author: Christian Persch -Date: Fri Aug 6 12:51:09 2004 +0000 - - Now that mozilla bug #246392 is fixed, only enable our work-around for old - - 2004-08-06 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Now that mozilla bug #246392 is fixed, only enable our work-around - for old mozilla versions. - - ChangeLog | 9 +++++++++ - embed/mozilla/EphyBrowser.cpp | 2 ++ - embed/mozilla/EphyBrowser.h | 8 ++++++++ - embed/mozilla/mozilla-embed.cpp | 18 ++++++++---------- - 4 files changed, 27 insertions(+), 10 deletions(-) - -commit f9f94be91053ec7560e4b6e34a338dda9a40457d -Author: Christian Persch -Date: Fri Aug 6 12:49:19 2004 +0000 - - Use s/""/NULL/ in g_string_new(). - - 2004-08-06 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_solve_smart_url): - - Use s/""/NULL/ in g_string_new(). - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 19f14575a21dd7e93440916cdbd2e4f41c8f2776 -Author: Christian Persch -Date: Fri Aug 6 12:48:16 2004 +0000 - - Make ephy_session_get_windows() return only the list of EphyWindows, and - - 2004-08-06 Christian Persch - - * src/ephy-session.c: (ephy_session_init), (ephy_session_finalize), - (ephy_session_set_property), (ephy_session_class_init), - (ephy_session_close), (write_tool_window), (ephy_session_save), - (parse_embed), (ephy_session_load), (ephy_session_add_window), - (ephy_session_remove_window), (ephy_session_get_active_window): - - Make ephy_session_get_windows() return only the list of - EphyWindows, and store the tool windows internally. - - ChangeLog | 11 ++++++ - src/ephy-session.c | 103 ++++++++++++++++++++++++++++------------------------- - 2 files changed, 66 insertions(+), 48 deletions(-) - -commit 3e389a63c4b7d7795d35ea87fa34e7ce2a84ccac -Author: Guntupalli Karunakar -Date: Fri Aug 6 11:05:16 2004 +0000 - - updated hindi translation - - po/ChangeLog | 4 ++++ - po/hi.po | 55 +++++++++++++++++++++++++------------------------------ - 2 files changed, 29 insertions(+), 30 deletions(-) - -commit ba6163e3d5b197f83a4251056bcda8be820eb144 -Author: Amanpreet Singh Alam -Date: Thu Aug 5 13:45:15 2004 +0000 - - check file - - po/pa.po | 1384 +++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 640 insertions(+), 744 deletions(-) - -commit 92472dc6a4b9f851eed9b40106d03e0e10ee06a0 -Author: Christian Persch -Date: Wed Aug 4 21:15:14 2004 +0000 - - Code cleanup. - - 2004-08-04 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Code cleanup. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 18 ++++++++---------- - 2 files changed, 14 insertions(+), 10 deletions(-) - -commit 8e29e18e7a936a07e78d47feb33213c46e80378d -Author: Laszlo Dvornik -Date: Wed Aug 4 17:25:20 2004 +0000 - - Updated Hungarian translation. - - 2004-08-04 Laszlo Dvornik - - * hu.po: Updated Hungarian translation. - - po/ChangeLog | 4 + - po/hu.po | 279 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 146 insertions(+), 137 deletions(-) - -commit 7b4fd20c923fcf2e85bcdd1173170c895e08be21 -Author: Åsmund Skjæveland -Date: Wed Aug 4 16:21:30 2004 +0000 - - Updated Norwegian Nynorsk translation. - - 2004-08-04 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 ++ - po/nn.po | 135 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 67 insertions(+), 72 deletions(-) - -commit acb4adfcde9581fcf4caf0766c6a8743d99ee6fd -Author: Åsmund Skjæveland -Date: Wed Aug 4 14:42:48 2004 +0000 - - Updated Norwegian Nynorsk translation. - - 2004-08-04 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 + - po/nn.po | 1473 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 742 insertions(+), 735 deletions(-) - -commit 305c9d1169ccc964f0c9443053cc470b7611d83a -Author: Christian Persch -Date: Wed Aug 4 13:52:46 2004 +0000 - - Fix mem leak; noticed by Jean-François Rameau. - - 2004-08-04 Christian Persch - - * src/window-commands.c: (editor_can_open_uri): - - Fix mem leak; noticed by Jean-François Rameau. - - ChangeLog | 6 ++++++ - src/window-commands.c | 5 +++++ - 2 files changed, 11 insertions(+) - -commit cf8ecc215f7ea1edaa9e22902b2e62f3f9a4bb48 -Author: Christian Persch -Date: Wed Aug 4 13:08:37 2004 +0000 - - Fix mem leak; noticed by Jean-François Rameau. - - 2004-08-04 Christian Persch - - * src/window-commands.c: (window_cmd_view_page_source): - - Fix mem leak; noticed by Jean-François Rameau. - - ChangeLog | 6 ++++++ - src/window-commands.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit c765b880677acb195f0c03b153bb02d66353251b -Author: Christian Persch -Date: Wed Aug 4 10:33:12 2004 +0000 - - Adjust comment for fixed bug - - src/ephy-location-action.c | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit 65af4b8bde07e527755baf16169993d8d157b720 -Author: Alexander Shopov -Date: Wed Aug 4 06:22:37 2004 +0000 - - Updated Bulgarian translation by Vladimir "Kaladan" Petkov - - 2004-08-04 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir "Kaladan" Petkov - - po/ChangeLog | 5 + - po/bg.po | 811 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 409 insertions(+), 407 deletions(-) - -commit bbf31dfa3ce64d0655c82f238dd0449bf7fea1a6 -Author: Maxim Dziumanenko -Date: Tue Aug 3 14:16:27 2004 +0000 - - Updated Ukrainian translation - - 2004-08-03 Maxim Dziumanenko - - * Updated Ukrainian translation - - po/ChangeLog | 4 + - po/uk.po | 1265 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 576 insertions(+), 693 deletions(-) - -commit a0a1a73ca7096d3f96b21f5788c28c57f165ec2b -Author: Adam Weinberger -Date: Mon Aug 2 17:08:59 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 928 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 489 insertions(+), 443 deletions(-) - -commit e52beb7e5b0812ce45d7584a860c15c1d7fd2f3d -Author: Updated ja.po. T.Aihana -Date: Mon Aug 2 13:26:06 2004 +0000 - - 2004-08-02 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 264 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 138 insertions(+), 130 deletions(-) - -commit 1e75c071efac49d93cf9a1e41803e0c013513deb -Author: Funda Wang -Date: Mon Aug 2 07:04:58 2004 +0000 - - Updated Simplified Chinese translation - - po/zh_CN.po | 980 ++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 518 insertions(+), 462 deletions(-) - -commit 37ff262220b123c756f41727a95ebffdde824b2c -Author: Christian Persch -Date: Sun Aug 1 22:16:23 2004 +0000 - - Move g_set_application_name() call after gnome_program_init(), - - 2004-08-02 Christian Persch - - * src/ephy-main.c: (main): - - Move g_set_application_name() call after gnome_program_init(), - - ChangeLog | 7 +++++++ - src/ephy-main.c | 3 ++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit c66c64145b28c44bd19cb6fa9b7781ddf6c57ff8 -Author: Christian Persch -Date: Sun Aug 1 21:59:08 2004 +0000 - - Don't QI the event target to nsIDOMEventReceiver and back to - - 2004-08-01 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - - Don't QI the event target to nsIDOMEventReceiver and back - to nsIDOMEventTarget when using it, just store it as-is. - Thanks to Crispin for noticing this. - - ChangeLog | 9 ++++++++ - embed/mozilla/EphyBrowser.cpp | 48 +++++++++++++++---------------------------- - embed/mozilla/EphyBrowser.h | 6 +++--- - 3 files changed, 29 insertions(+), 34 deletions(-) - -commit d07304f7633e3b3456686b22d3c55b898b2758c9 -Author: Reinout van Schouwen -Date: Sun Aug 1 17:09:31 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-08-01 Reinout van Schouwen - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 517 ++++++++++--------------------------------------- - po/nl.po | 619 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 430 insertions(+), 706 deletions(-) - -commit ce65d048b1eaf89e4660a5bf2617454f198037ba -Author: Christian Persch -Date: Sun Aug 1 11:33:22 2004 +0000 - - Post-release version bump. - - 2004-08-01 Christian Persch - - * configure.in: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit ac83d69c67cc1c5b569e23970b0b0819ac448955 -Author: Christian Persch -Date: Sun Aug 1 11:32:23 2004 +0000 - - === Release 1.3.4 === - - 2004-08-01 Christian Persch - - * NEWS: - * doc/reference/tmpl/ephy-embed.sgml: - - === Release 1.3.4 === - - ChangeLog | 7 +++++++ - NEWS | 1 + - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 3 files changed, 10 insertions(+) - -commit 8372d2c620315f658b644a182d7603ddd2649e68 -Author: Christian Persch -Date: Sun Aug 1 11:04:49 2004 +0000 - - Version 1.3.4. - - 2004-08-01 Christian Persch - - * configure.in: - - Version 1.3.4. - - * NEWS: - - Updated for 1.3.4. - - ChangeLog | 10 ++++++++++ - NEWS | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ - configure.in | 4 ++-- - 3 files changed, 63 insertions(+), 2 deletions(-) - -commit f4136997688796f1b6ad574f70d58ed32f3eb6c6 -Author: Christian Persch -Date: Sat Jul 31 19:03:36 2004 +0000 - - Diconnect from screen's size-changed signal on finalize too. - - 2004-07-31 Christian Persch - - * src/ephy-window.c: (ephy_window_get_type), - (update_exit_fullscreen_popup_position), (screen_size_changed_cb), - (destroy_exit_fullscreen_popup), (ephy_window_destroy), - (add_widget), (ephy_window_fullscreen), (ephy_window_unfullscreen), - (update_chromes_actions), (update_actions_sensitivity): - - Diconnect from screen's size-changed signal on finalize too. - - ChangeLog | 10 +++++ - src/ephy-window.c | 119 +++++++++++++++++++++++++++++------------------------- - 2 files changed, 74 insertions(+), 55 deletions(-) - -commit 0429fb7f9526f93c453591c57139e7ac837429f1 -Author: Adam Hooper -Date: Sat Jul 31 17:37:07 2004 +0000 - - Rename property to "popups-allowed" consistently. Move page change - code from address_cb to content_change_cb so that the location from - the embed is the one of the loaded page. - - ChangeLog | 11 +++++++++++ - src/ephy-tab.c | 29 +++++++++++++++-------------- - 2 files changed, 26 insertions(+), 14 deletions(-) - -commit 13b1482cc77f07235308f418e485e9b32300dc6a -Author: Christian Persch -Date: Sat Jul 31 13:41:09 2004 +0000 - - Fix a mem leak. - - 2004-07-31 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Fix a mem leak. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 1 + - 2 files changed, 7 insertions(+) - -commit dd79f8051f61ffe8c463b24a4f9e1ff815afd107 -Author: Christian Persch -Date: Sat Jul 31 13:39:47 2004 +0000 - - Confirm before overwriting a file. Fixes bug #143501. - - 2004-07-31 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Confirm before overwriting a file. Fixes bug #143501. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 14 +++++++++++--- - 2 files changed, 17 insertions(+), 3 deletions(-) - -commit c9294601d6951d8745cbcbf8c24112d3a1e78d35 -Author: Christian Persch -Date: Sat Jul 31 13:18:03 2004 +0000 - - Start the directory choose in the home dir. Fixes bug #146055. - - 2004-07-31 Christian Persch - - * src/prefs-dialog.c: (prefs_download_path_button_clicked_cb): - - Start the directory choose in the home dir. Fixes bug #146055. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 814d4259404ed6275ae48f2ebd4d2f1cc9597ecb -Author: Christian Persch -Date: Sat Jul 31 12:47:10 2004 +0000 - - Fix submenu creation with non-ascii topic names. Fixes bug #147469. - - 2004-07-31 Christian Persch - - * src/bookmarks/ephy-bookmarks-menu.c: (ensure_folder), - (create_submenu): - - Fix submenu creation with non-ascii topic names. Fixes bug #147469. - - ChangeLog | 7 ++++++ - src/bookmarks/ephy-bookmarks-menu.c | 47 ++++++++++++++----------------------- - 2 files changed, 24 insertions(+), 30 deletions(-) - -commit a1708ca0d9f45fd662e13012d8265c9f15413f3d -Author: Christian Persch -Date: Sat Jul 31 11:58:56 2004 +0000 - - Fix signedness difference warnings with gcc 3.5. Patch by Jon Oberheide. - - 2004-07-31 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (drag_data_get_cb): - * src/bookmarks/ephy-bookmarks-export.c: (write_topics_list), - (ephy_bookmarks_export_rdf): - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_bookmark), - (xbel_parse_folder), (xbel_parse_xbel), (parse_rdf_subjects), - (parse_rdf_item), (ephy_bookmarks_import_rdf): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_save), - (ephy_bookmarks_init): - * src/bookmarks/ephy-bookmarksbar-model.c: - (ephy_bookmarksbar_model_get_node): - * src/bookmarks/ephy-topic-action.c: (drag_data_get_cb): - * src/ephy-session.c: (write_tab), (write_window_geometry), - (write_tool_window), (write_ephy_window), (ephy_session_save), - (parse_embed), (ephy_session_load): - - Fix signedness difference warnings with gcc 3.5. Patch by Jon Oberheide. - - ChangeLog | 19 +++++++ - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/bookmarks/ephy-bookmarks-export.c | 93 ++++++++++++++++++++++++++------- - src/bookmarks/ephy-bookmarks-import.c | 68 ++++++++++++------------ - src/bookmarks/ephy-bookmarks.c | 13 ++--- - src/bookmarks/ephy-bookmarksbar-model.c | 2 +- - src/bookmarks/ephy-topic-action.c | 2 +- - src/ephy-session.c | 58 ++++++++++---------- - 8 files changed, 166 insertions(+), 91 deletions(-) - -commit 0b3f4745f07cf3206ee2060e37062f5b281c6d0e -Author: Christian Persch -Date: Sat Jul 31 11:55:24 2004 +0000 - - Small code style cleanups. - - 2004-07-31 Christian Persch - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_get_type), - (toolbars_toolbar_new), (toolbars_item_new), - (egg_toolbars_model_set_flags), (egg_toolbars_model_add_separator), - (impl_add_item), (egg_toolbars_model_add_toolbar), - (egg_toolbars_model_class_init), - (egg_toolbars_model_remove_toolbar), - (egg_toolbars_model_remove_item), (egg_toolbars_model_move_item), - (egg_toolbars_model_get_item_id), - (egg_toolbars_model_get_item_data), - (egg_toolbars_model_get_item_type): - * lib/egg/egg-toolbars-model.h: - - Small code style cleanups. - - ChangeLog | 16 +++++++++++ - lib/egg/egg-toolbars-model.c | 66 ++++++++++++++++++++++++-------------------- - lib/egg/egg-toolbars-model.h | 52 +++++++++++++++++----------------- - 3 files changed, 78 insertions(+), 56 deletions(-) - -commit 976ceb7fb2c0a18eaf198cc29d1104daee570f09 -Author: Christian Persch -Date: Sat Jul 31 11:43:48 2004 +0000 - - Free node data and destroy nodes on finalize. - - 2004-07-31 Christian Persch - - * lib/egg/egg-toolbars-model.c: (free_toolbar_node), - (free_item_node), (free_toolbar), (egg_toolbars_model_finalize), - (egg_toolbars_model_remove_toolbar), - (egg_toolbars_model_remove_item): - - Free node data and destroy nodes on finalize. - - ChangeLog | 9 +++++++++ - lib/egg/egg-toolbars-model.c | 31 +++++++++++++++++++++---------- - 2 files changed, 30 insertions(+), 10 deletions(-) - -commit 6f8fb4ae6e3c8e3e1186fd59eb840386d1ad749f -Author: Christian Persch -Date: Sat Jul 31 11:16:32 2004 +0000 - - Correctly clear the not-removable toolbar flag. - - 2004-07-31 Christian Persch - - * src/ephy-toolbars-model.c: (update_flags_and_save_changes): - - Correctly clear the not-removable toolbar flag. - - ChangeLog | 6 ++++++ - src/ephy-toolbars-model.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 0af643bb58097e031e79fc56adf3a0b8ee1451ee -Author: Francisco Javier F. Serrador -Date: Sat Jul 31 09:55:47 2004 +0000 - - Updated Spanish translation. - - 2004-07-31 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 256 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 134 insertions(+), 126 deletions(-) - -commit 97e22f2c8bc5a492f918111abfc714dcf26301fc -Author: Kjartan Maraas -Date: Sat Jul 31 09:47:23 2004 +0000 - - Updated Norwegian translation. - - 2004-07-31 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 1218 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 552 insertions(+), 670 deletions(-) - -commit 33b3bebb3c97644a69949acda8992ebc85e9bf8d -Author: Christian Persch -Date: Fri Jul 30 19:56:08 2004 +0000 - - Don't use -include which compilers other than gcc don't understand. - - 2004-07-30 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyAboutRedirector.cpp: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EphyUtils.cpp: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-embed-event.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - - Don't use -include which compilers other than gcc don't - understand. Instead include mozilla-config.h as first thing - in each file. Part of bug #143094. - - * embed/mozilla/EphyUtils.cpp: - - Also include config.h. - - ChangeLog | 35 +++++++++++++++++++++++++++++++ - embed/mozilla/ContentHandler.cpp | 2 ++ - embed/mozilla/EphyAboutRedirector.cpp | 2 ++ - embed/mozilla/EphyBrowser.cpp | 2 ++ - embed/mozilla/EphyContentPolicy.cpp | 3 ++- - embed/mozilla/EphyHeaderSniffer.cpp | 2 ++ - embed/mozilla/EphySingle.cpp | 2 ++ - embed/mozilla/EphyUtils.cpp | 7 +++++++ - embed/mozilla/EventContext.cpp | 2 ++ - embed/mozilla/FilePicker.cpp | 2 ++ - embed/mozilla/GlobalHistory.cpp | 2 ++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 ++ - embed/mozilla/GtkNSSDialogs.cpp | 2 ++ - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 ++ - embed/mozilla/Makefile.am | 3 +-- - embed/mozilla/MozDownload.cpp | 3 ++- - embed/mozilla/MozRegisterComponents.cpp | 4 ++-- - embed/mozilla/MozillaPrivate.cpp | 2 ++ - embed/mozilla/PrintingPromptService.cpp | 2 ++ - embed/mozilla/mozilla-download.cpp | 2 ++ - embed/mozilla/mozilla-embed-event.cpp | 2 ++ - embed/mozilla/mozilla-embed-persist.cpp | 2 ++ - embed/mozilla/mozilla-embed-single.cpp | 2 ++ - embed/mozilla/mozilla-embed.cpp | 2 ++ - embed/mozilla/mozilla-notifiers.cpp | 3 ++- - 25 files changed, 87 insertions(+), 7 deletions(-) - -commit 650a6bea5d3b3bf0dfc7f3b7f9170d801f37486c -Author: Nikos Charonitakis -Date: Fri Jul 30 10:47:23 2004 +0000 - - Updated Greek translation - - po/ChangeLog | 4 ++ - po/el.po | 229 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 127 insertions(+), 106 deletions(-) - -commit cdf7b3e7bfdc2bb4383b626bdfcc1336dd165ffc -Author: Christian Neumair -Date: Thu Jul 29 18:03:30 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 ++ - po/de.po | 218 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 120 insertions(+), 102 deletions(-) - -commit 44082f6663169c8b09486e2f123cb69c1e539f46 -Author: Christian Persch -Date: Thu Jul 29 16:02:12 2004 +0000 - - Fix a call to egg_toolbars_model_set_flags(). - - 2004-07-29 Christian Persch - - * lib/egg/egg-toolbars-model.c: (parse_toolbars): - - Fix a call to egg_toolbars_model_set_flags(). - - ChangeLog | 6 ++++++ - lib/egg/egg-toolbars-model.c | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 9cb2f185a5b2ddcbbe9b833d9f1915337e03a1b3 -Author: Christian Persch -Date: Wed Jul 28 21:52:39 2004 +0000 - - Mozilla API change. - - 2004-07-28 Christian Persch - - * embed/mozilla/EphyContentPolicy.cpp: - - Mozilla API change. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyContentPolicy.cpp | 8 ++++++++ - 2 files changed, 14 insertions(+) - -commit 7e415c28ac44244dfb0f3b2ffb0451b8dc34861f -Author: Laurent Dhima -Date: Wed Jul 28 16:55:55 2004 +0000 - - Updated Albanian translation. - - 2004-07-28 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++++ - po/sq.po | 65 ++++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 47 insertions(+), 22 deletions(-) - -commit ac7200e9b071d0beb4b9963f04c2cf78e4ae8589 -Author: Žygimantas Beručka -Date: Wed Jul 28 10:13:13 2004 +0000 - - Updated Lithuanian translation. - - 2004-07-28 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 987 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 528 insertions(+), 463 deletions(-) - -commit 9cf0f14166323e37d435348837992f3b820f54ba -Author: Christian Persch -Date: Tue Jul 27 11:04:52 2004 +0000 - - Remove load_proxy_autoconf() vfunc. - - 2004-07-27 Christian Persch - - * embed/ephy-embed-single.h: - - Remove load_proxy_autoconf() vfunc. - - * embed/mozilla/mozilla-notifiers.cpp: - - Only include gnome-i18n.h here. - - Thanks to Crispin for noticing those buglets. - - ChangeLog | 12 ++++++++++++ - embed/ephy-embed-single.h | 2 -- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - 3 files changed, 13 insertions(+), 3 deletions(-) - -commit ca08f244b95de739b05b84a18a0c8a732c23814f -Author: Laurent Dhima -Date: Tue Jul 27 10:21:12 2004 +0000 - - Updated Albanian translation. - - 2004-07-27 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 ++ - po/sq.po | 184 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 91 insertions(+), 97 deletions(-) - -commit b606d24a0318e45d3a97f07e01017e03e4e9eb2b -Author: David Lodge -Date: Mon Jul 26 22:28:47 2004 +0000 - - Updated British translation. - - 2004-07-26 David Lodge - - * en_GB.po: Updated British translation. - - po/ChangeLog | 6 ++- - po/en_GB.po | 132 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 73 insertions(+), 65 deletions(-) - -commit c4a62f25642fa0696f6d58b3ae65aba138f17b6e -Author: Artur Flinta -Date: Mon Jul 26 14:57:51 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-07-26 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 794 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 426 insertions(+), 372 deletions(-) - -commit 2dce7570939fce28bfefbf1454984721cd664779 -Author: Miloslav Trmac -Date: Mon Jul 26 10:50:40 2004 +0000 - - Updated Czech translation. - - 2004-07-26 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 146 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 79 insertions(+), 71 deletions(-) - -commit 9536137c5a16d298570713202805532c808d67ae -Author: Christian Persch -Date: Mon Jul 26 09:17:10 2004 +0000 - - Switch parameter order for egg_toolbars_model_set_flags(). - - 2004-07-26 Christian Persch - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_set_flags): - * lib/egg/egg-toolbars-model.h: - * src/bookmarks/ephy-bookmarksbar-model.c: - (update_flags_and_save_changes): - * src/ephy-toolbars-model.c: (update_flags_and_save_changes): - - Switch parameter order for egg_toolbars_model_set_flags(). - - ChangeLog | 10 ++++++++++ - lib/egg/egg-toolbars-model.c | 4 ++-- - lib/egg/egg-toolbars-model.h | 4 ++-- - src/bookmarks/ephy-bookmarksbar-model.c | 2 +- - src/ephy-toolbars-model.c | 2 +- - 5 files changed, 16 insertions(+), 6 deletions(-) - -commit f8ae08170e30e0d9cb938dd55249cd7985ca1c5b -Author: Duarte Loreto -Date: Mon Jul 26 00:47:26 2004 +0000 - - Updated Portuguese translation. - - 2004-07-26 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 1021 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 539 insertions(+), 486 deletions(-) - -commit ed4356604df0f1a3eeb85e34354d33f42cd02054 -Author: Changwoo Ryu -Date: Sun Jul 25 19:26:49 2004 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 1221 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 553 insertions(+), 672 deletions(-) - -commit 78d5bd1874dff802c7416deb5f056ce89aab1e5c -Author: Christian Persch -Date: Sun Jul 25 12:49:06 2004 +0000 - - Fix "Save Link As" filechooser title, and change capitalisation on the - - 2004-07-25 Christian Persch - - * src/popup-commands.c: (popup_cmd_download_link), - (popup_cmd_download_link_as): - - Fix "Save Link As" filechooser title, and change - capitalisation on the "Download Link" filechooser - title. Fixes bug #138208. - - ChangeLog | 9 +++++++++ - src/popup-commands.c | 4 ++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit c108708fd68ed5d6363d02ab0408d7dcf9f5073b -Author: Christian Persch -Date: Sun Jul 25 11:03:48 2004 +0000 - - Make sure we don't release the single observer more than - - 2004-07-25 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Make sure we don't release the single observer more than - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 1 + - 2 files changed, 8 insertions(+) - -commit c5c6546ff0c9b843e49b0cf50f7b690d09363142 -Author: Christian Persch -Date: Sun Jul 25 09:33:03 2004 +0000 - - Disallow some more characters in the suggested filename. - - 2004-07-25 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - - Disallow some more characters in the suggested filename. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit bf9c73d3a594df3decf46cf8767e54b2f42d7b38 -Author: Adam Hooper -Date: Sat Jul 24 16:41:40 2004 +0000 - - #include - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 1 + - 2 files changed, 7 insertions(+) - -commit fa8d611634ce612e828929a8d9720fbab86217ed -Author: Christian Persch -Date: Sat Jul 24 14:28:04 2004 +0000 - - Make egg_toolbar_editor_add_action public again. - - 2004-07-24 Christian Persch - - * lib/egg/egg-toolbar-editor.c: - * lib/egg/egg-toolbar-editor.h: - - Make egg_toolbar_editor_add_action public again. - - ChangeLog | 7 +++++++ - lib/egg/egg-toolbar-editor.c | 2 +- - lib/egg/egg-toolbar-editor.h | 3 +++ - 3 files changed, 11 insertions(+), 1 deletion(-) - -commit b229de2a64d9a96439d1d8099d22e017df93bafd -Author: Christian Persch -Date: Sat Jul 24 10:32:51 2004 +0000 - - Remove some unneeded includes. - - 2004-07-24 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Remove some unneeded includes. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 897181c896daf9e63a83a65d0bed12c2ce3952f8 -Author: Christian Persch -Date: Sat Jul 24 10:17:29 2004 +0000 - - Don't load the status icon from the file, use the registered stock icon - - 2004-07-24 Christian Persch - - * embed/downloader-view.c: (show_status_icon): - - Don't load the status icon from the file, use the - registered stock icon instead. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 7 ++----- - 2 files changed, 9 insertions(+), 5 deletions(-) - -commit af8bbdbc5bc95e1e3cd3fc6fc49f9f1e3eea91ed -Author: Christian Persch -Date: Sat Jul 24 10:16:10 2004 +0000 - - Refactores storing the security info, move it into EphyBrowser. - - 2004-07-24 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Refactores storing the security info, move it into - EphyBrowser. - - ChangeLog | 9 ++++++++ - embed/mozilla/EphyBrowser.cpp | 49 +++++++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 5 ++++ - embed/mozilla/mozilla-embed.cpp | 51 ++++++++--------------------------------- - 4 files changed, 73 insertions(+), 41 deletions(-) - -commit 4d4808cdc6c565dbdefea90b567b3efe9718c5c4 -Author: Marco Pesenti Gritti -Date: Fri Jul 23 10:49:39 2004 +0000 - - Do not remove the topic when rename is cancelled. - - 2004-07-23 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (cell_renderer_edited), - (renderer_editing_canceled_cb), (ephy_node_view_init), - (ephy_node_view_edit): - * lib/widgets/ephy-node-view.h: - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_add_topic), - (cmd_rename): - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_new_topic): - - Do not remove the topic when rename is cancelled. - - ChangeLog | 13 +++++++++++++ - lib/widgets/ephy-node-view.c | 13 +++++++++++-- - lib/widgets/ephy-node-view.h | 3 ++- - src/bookmarks/ephy-bookmarks-editor.c | 6 +++--- - src/bookmarks/ephy-topics-selector.c | 2 +- - 5 files changed, 30 insertions(+), 7 deletions(-) - -commit 456d9144bd889aa71e277fc9e7b06f3d654931cf -Author: Marco Pesenti Gritti -Date: Fri Jul 23 10:03:56 2004 +0000 - - Add support for toggles. When editing is canceled remove the node. - - 2004-07-23 Marco Pesenti Gritti - - * lib/ephy-marshal.list: - * lib/widgets/ephy-node-view.c: (path_toggled), - (ephy_node_view_key_press_cb), (get_selection_refs), - (ephy_node_view_button_press_cb), (cell_renderer_edited), - (renderer_editing_canceled_cb), (ephy_node_view_add_column), - (ephy_node_view_init), (ephy_node_view_edit), - (ephy_node_view_constructor), (ephy_node_view_add_toggle), - (ephy_node_view_class_init): - * lib/widgets/ephy-node-view.h: - - Add support for toggles. When editing is canceled remove - the node. - - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_add): - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_get_type), - (ephy_topics_selector_set_bookmarks), - (ephy_topics_selector_set_property), (ephy_topics_selector_apply), - (provide_toggle), (ephy_topics_selector_constructor), - (topic_destroy_cb), (node_toggled_cb), (ephy_topics_selector_init), - (ephy_topics_selector_new), (ephy_topics_selector_new_topic), - (ephy_topics_selector_class_init): - * src/bookmarks/ephy-topics-selector.h: - - Use EphyNodeView instead of a list store. Share a lot of code - and we get updating for free. Fix bug #144770 - - ChangeLog | 29 ++ - doc/reference/tmpl/ephy-embed-single.sgml | 11 - - doc/reference/tmpl/ephy-embed.sgml | 2 + - doc/reference/tmpl/epiphany-unused.sgml | 9 + - lib/ephy-marshal.list | 1 + - lib/widgets/ephy-node-view.c | 132 +++++++-- - lib/widgets/ephy-node-view.h | 5 + - src/bookmarks/ephy-new-bookmark.c | 3 +- - src/bookmarks/ephy-topics-selector.c | 445 ++++++++++-------------------- - src/bookmarks/ephy-topics-selector.h | 13 +- - 10 files changed, 302 insertions(+), 348 deletions(-) - -commit dc446979575a5a845199a48c926c34df0ef9d49e -Author: Marco Pesenti Gritti -Date: Fri Jul 23 02:25:05 2004 +0000 - - Simplify node view filtering code and make it a normal property (no more - - 2004-07-23 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (filter_changed_cb), - (ephy_node_view_set_filter), (ephy_node_view_set_property), - (ephy_node_view_init), (ephy_node_view_select_node), - (filter_visible_func), (ephy_node_view_constructor), - (ephy_node_view_class_init): - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_set_property), - (ephy_tree_model_node_get_property), - (ephy_tree_model_node_class_init), (ephy_tree_model_node_init), - (ephy_tree_model_node_new), (ephy_tree_model_node_get_column_type), - (ephy_tree_model_node_get_value): - * lib/widgets/ephy-tree-model-node.h: - * src/prefs-dialog.c: (create_node_combo): - - Simplify node view filtering code and make it a normal - property (no more constructor only) - - ChangeLog | 19 +++++++ - lib/widgets/ephy-node-view.c | 75 ++++++++++++++++++--------- - lib/widgets/ephy-tree-model-node.c | 103 ++++++------------------------------- - lib/widgets/ephy-tree-model-node.h | 10 +--- - src/prefs-dialog.c | 2 +- - 5 files changed, 90 insertions(+), 119 deletions(-) - -commit 279b35fe0123505605c9fe0ddf4e4ac21a71b2ab -Author: Marco Pesenti Gritti -Date: Fri Jul 23 00:12:02 2004 +0000 - - Use gobject constructor - - 2004-07-23 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (ephy_node_view_new), - (ephy_node_view_constructor), (ephy_node_view_class_init): - - Use gobject constructor - - ChangeLog | 7 ++ - lib/widgets/ephy-node-view.c | 231 +++++++++++++++++++++---------------------- - 2 files changed, 120 insertions(+), 118 deletions(-) - -commit 8239a246be6ca1a0dc9d128186f3f770eff8ebed -Author: Christian Persch -Date: Thu Jul 22 18:28:55 2004 +0000 - - Ignore the microseconds part of the g_timer_elapsed call, its redundant - - 2004-07-22 Christian Persch - - * lib/ephy-debug.c: (ephy_profiler_dump): - - Ignore the microseconds part - of the g_timer_elapsed call, its redundant information, - and breaks when the timer is over a second. - (ported from galeon). - - ChangeLog | 9 +++++++++ - lib/ephy-debug.c | 7 +++---- - 2 files changed, 12 insertions(+), 4 deletions(-) - -commit b0797c8f3de7e0be7c616dc61f8f6323c9f98a98 -Author: Christian Persch -Date: Thu Jul 22 18:15:22 2004 +0000 - - No need to make proxy PAC configuration public, we only use it in a pref - - 2004-07-22 Christian Persch - - * embed/ephy-embed-single.c: - * embed/ephy-embed-single.h: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - - No need to make proxy PAC configuration public, we only - use it in a pref notifier. - - ChangeLog | 10 ++++++++++ - embed/ephy-embed-single.c | 15 --------------- - embed/ephy-embed-single.h | 5 +---- - embed/mozilla/mozilla-embed-single.cpp | 19 ------------------- - embed/mozilla/mozilla-notifiers.cpp | 19 +++++++++++++++---- - 5 files changed, 26 insertions(+), 42 deletions(-) - -commit 8ed863129291204c3b293e41dae4bc3a1c7e9127 -Author: Marco Pesenti Gritti -Date: Thu Jul 22 09:17:09 2004 +0000 - - Handle the case where the downloads dir cannot be created gracefully. Fix - - 2004-07-22 Marco Pesenti Gritti - - * doc/reference/tmpl/ephy-embed.sgml: - * embed/mozilla/MozDownload.cpp: - * lib/ephy-file-helpers.c: (ephy_ensure_dir_exists): - * lib/ephy-file-helpers.h: - - Handle the case where the downloads dir cannot be - created gracefully. Fix #146902 - - ChangeLog | 10 +++++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - embed/mozilla/MozDownload.cpp | 42 ++++++++++++++++++-------------------- - lib/ephy-file-helpers.c | 14 ++++++++++--- - lib/ephy-file-helpers.h | 2 +- - 5 files changed, 44 insertions(+), 26 deletions(-) - -commit 561c5a9432b239aee5581ef83b0f38c5eeecd30c -Author: Marco Pesenti Gritti -Date: Thu Jul 22 08:45:14 2004 +0000 - - Handle the bookmark in the root folder case correctly. Fix #145611 - - 2004-07-22 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-import.c: - (ephy_bookmarks_import_mozilla): - - Handle the bookmark in the root folder case - correctly. Fix #145611 - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-import.c | 24 ++++++++++++++---------- - 2 files changed, 22 insertions(+), 10 deletions(-) - -commit 370a95a23d6475cffcb1a82a81ee65c683371853 -Author: Christian Persch -Date: Thu Jul 22 07:53:35 2004 +0000 - - Fix mem leaks (ported from Galeon). - - 2004-07-22 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - - Fix mem leaks (ported from Galeon). - - ChangeLog | 7 +++++++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 1 + - embed/mozilla/GtkNSSDialogs.cpp | 2 ++ - 3 files changed, 10 insertions(+) - -commit 10ca2e6a8a062e7736c1e58ccc6e15b57edf91c2 -Author: Xan Lopez -Date: Wed Jul 21 16:34:34 2004 +0000 - - Added application/xhtml+xml, text/html, text/xml for MimeType entry. - - - * data/epiphany.desktop.in: - - Added application/xhtml+xml, text/html, text/xml for MimeType - entry. - - ChangeLog | 6 ++++++ - data/epiphany.desktop.in | 1 + - 2 files changed, 7 insertions(+) - -commit 22ca4b8a0865be57288710557b1d24ea865eef3b -Author: Guntupalli Karunakar -Date: Wed Jul 21 11:53:14 2004 +0000 - - updated hindi translation - - po/ChangeLog | 4 + - po/hi.po | 2427 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1164 insertions(+), 1267 deletions(-) - -commit 750efa7d51d97859f37e9e59065ba176d7520cce -Author: Marco Pesenti Gritti -Date: Tue Jul 20 22:28:55 2004 +0000 - - No need to use a weak ref for the observer, makes the single code easier. - - 2004-07-21 Marco Pesenti Gritti - - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EphySingle.h: - * embed/mozilla/mozilla-embed-single.cpp: - - No need to use a weak ref for the observer, - makes the single code easier. - - ChangeLog | 9 +++++++++ - embed/mozilla/EphySingle.cpp | 10 +++++----- - embed/mozilla/EphySingle.h | 3 +-- - embed/mozilla/mozilla-embed-single.cpp | 7 +------ - 4 files changed, 16 insertions(+), 13 deletions(-) - -commit 0e8132c237b8da5837ea2f8889507d91b0ead33c -Author: Marco Pesenti Gritti -Date: Tue Jul 20 18:21:23 2004 +0000 - - *** empty log message *** - - embed/mozilla/mozilla-embed-persist.cpp | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -commit a2ac8ca7dd579263c826d87dded5265749900da4 -Author: Marco Pesenti Gritti -Date: Tue Jul 20 18:15:45 2004 +0000 - - Pass single to the sniffer and weak ref it. Fix #141928 - - 2004-07-20 Marco Pesenti Gritti - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - * embed/mozilla/mozilla-embed-persist.cpp: - - Pass single to the sniffer and weak ref it. - Fix #141928 - - ChangeLog | 9 +++++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 24 ++++++++++++++++-------- - embed/mozilla/EphyHeaderSniffer.h | 6 ++++-- - 3 files changed, 29 insertions(+), 10 deletions(-) - -commit 4a28a25c29ecb619138dc03fd80e24eaf899f0dd -Author: Updated ja.po. T.Aihana -Date: Tue Jul 20 13:34:42 2004 +0000 - - 2004-07-20 Updated ja.po. T.Aihana - - po/ChangeLog | 4 +++ - po/ja.po | 116 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 67 insertions(+), 53 deletions(-) - -commit 5381dc1818da64dfde6053a33c856451e849bb96 -Author: Alexander Shopov -Date: Tue Jul 20 10:46:34 2004 +0000 - - Updated Bulgarian translation by Vladimir "Kaladan" Petkov - - 2004-07-20 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir "Kaladan" Petkov - - po/ChangeLog | 5 + - po/bg.po | 7652 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 3839 insertions(+), 3818 deletions(-) - -commit 893b5efca15082e8a3a20676f657b2a17146da7e -Author: Marco Pesenti Gritti -Date: Mon Jul 19 19:04:27 2004 +0000 - - === Release 1.3.3 === - - 2004-07-19 Marco Pesenti Gritti - - * NEWS: - * configure.in: - * doc/reference/tmpl/ephy-embed.sgml: - - === Release 1.3.3 === - - ChangeLog | 8 ++++++++ - NEWS | 30 +++++++++++++++++++++++++++++- - configure.in | 2 +- - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 4 files changed, 40 insertions(+), 2 deletions(-) - -commit a43be88202d423307d4612e444e984cea45f6d99 -Author: Marco Pesenti Gritti -Date: Mon Jul 19 08:27:06 2004 +0000 - - Add disable_quit, disable_new_window, first_window_fullscreen lockdown - - 2004-07-19 Marco Pesenti Gritti - - * lib/ephy-prefs.h: - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-window.c: (ephy_window_fullscreen), - (ephy_window_unfullscreen), (update_actions_sensitivity), - (tab_detached_cb), (tab_delete_cb), (ephy_window_init): - * src/window-commands.c: (window_cmd_file_new_window), - (window_cmd_file_close_window): - - Add disable_quit, disable_new_window, first_window_fullscreen - lockdown options. - - ChangeLog | 13 +++++++++++++ - lib/ephy-prefs.h | 2 ++ - src/ephy-shell.c | 2 ++ - src/ephy-window.c | 50 +++++++++++++++++++++++++++++++++++++++++--------- - src/window-commands.c | 8 +++++++- - 5 files changed, 65 insertions(+), 10 deletions(-) - -commit c12a362e88752a1c26c79a830c12ff5a254a66c2 -Author: David Lodge -Date: Sun Jul 18 21:54:25 2004 +0000 - - Updated British translation. - - 2004-07-18 David Lodge - - * en_GB.po: Updated British translation. - - po/ChangeLog | 4 + - po/en_GB.po | 752 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 403 insertions(+), 353 deletions(-) - -commit a338610575cd69a1b0377d06fe201df4c4032ee9 -Author: Christian Persch -Date: Sat Jul 17 14:34:38 2004 +0000 - - Since the print dialogue is modal the filechooser needs to be modal too. - - 2004-07-17 Christian Persch - - * embed/print-dialog.c: (ephy_print_dialog_browse_button_cb): - - Since the print dialogue is modal the filechooser needs to be modal - too. Fixes bug #147628. - - ChangeLog | 7 +++++++ - embed/print-dialog.c | 1 + - 2 files changed, 8 insertions(+) - -commit cde02d089c8022bed5e0b4cd49f9e93954b9a9a0 -Author: Nikos Charonitakis -Date: Fri Jul 16 18:50:06 2004 +0000 - - Updated Greek translation:desmos->sindesmos - - po/ChangeLog | 4 ++ - po/el.po | 128 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 72 insertions(+), 60 deletions(-) - -commit a503909a03c69af87af287069befedf7379da125 -Author: Gil Osher -Date: Fri Jul 16 10:02:18 2004 +0000 - - Updated Hebrew translation. - - - * he.po: Updated Hebrew translation. - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 6d1babc237022c0a84fc0a56f6a6198f7674d163 -Author: Gil Osher -Date: Fri Jul 16 07:59:39 2004 +0000 - - Updated Hebrew translation. - - po/he.po | 1913 ++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 927 insertions(+), 986 deletions(-) - -commit 4150db523492e04f20ea708bd78fa1e3ae000fde -Author: Francisco Javier F. Serrador -Date: Thu Jul 15 19:43:57 2004 +0000 - - Updated Spanish help - - 2004-07-15 Francisco Javier F. Serrador - - * es.po: Updated Spanish help - - po/ChangeLog | 4 +++ - po/es.po | 98 +++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 62 insertions(+), 40 deletions(-) - -commit 6105fb4d7c5a86592f51555a8d08012ea7aba5af -Author: Laszlo Dvornik -Date: Thu Jul 15 11:05:09 2004 +0000 - - Updated Hungarian translation. - - 2004-07-15 Laszlo Dvornik - - * hu.po: Updated Hungarian translation. - - po/ChangeLog | 4 + - po/hu.po | 1328 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 599 insertions(+), 733 deletions(-) - -commit f00410b2ac5b2965fc39b0e66365ac199a2d1174 -Author: Gustavo Maciel Dias Vieira -Date: Wed Jul 14 20:04:47 2004 +0000 - - Updated Brazilian Portuguese translation done by Goedson Teixeira Paixao - - 2004-07-14 Gustavo Maciel Dias Vieira - - * pt_BR.po: Updated Brazilian Portuguese translation done by - Goedson Teixeira Paixao . - - po/ChangeLog | 5 + - po/pt_BR.po | 768 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 416 insertions(+), 357 deletions(-) - -commit a73d4d600b8be7e21cd6ea9e956f6a7c6c3e4828 -Author: Marco Pesenti Gritti -Date: Wed Jul 14 16:44:35 2004 +0000 - - Improve sort/priority API. - - 2004-07-14 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (compare_string_values), - (ephy_node_view_sort_func), (ephy_node_view_add_data_column), - (ephy_node_view_add_column), (ephy_node_view_set_priority), - (ephy_node_view_set_sort), (ephy_node_view_init): - * lib/widgets/ephy-node-view.h: - - Improve sort/priority API. - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_init): - * src/ephy-history-window.c: (ephy_history_window_construct): - - Sort history items by last visit - - ChangeLog | 17 ++++ - lib/widgets/ephy-node-view.c | 170 ++++++++++++++++++++++------------ - lib/widgets/ephy-node-view.h | 21 +++-- - src/bookmarks/ephy-bookmarks-editor.c | 14 ++- - src/ephy-encoding-dialog.c | 6 +- - src/ephy-history-window.c | 17 +++- - 6 files changed, 168 insertions(+), 77 deletions(-) - -commit e1ddd3e07929a6200ae58272b22c8bb98de323c7 -Author: Miloslav Trmac -Date: Mon Jul 12 19:20:30 2004 +0000 - - Updated Czech translation. - - 2004-07-12 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 +++ - po/cs.po | 116 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 67 insertions(+), 53 deletions(-) - -commit 97abd57bb91fb48d49f696e2a11f0bf47fd69fa1 -Author: Marco Pesenti Gritti -Date: Mon Jul 12 18:37:04 2004 +0000 - - Add a Properties item to bookmark context menu - - 2004-07-12 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: (properties_activate_cb), - (show_context_menu), (bookmark_destroy_cb), - (ephy_bookmark_action_set_bookmark_id), - (ephy_bookmark_action_set_property), - (ephy_bookmark_action_finalize), (ephy_bookmark_action_init): - - Add a Properties item to bookmark context menu - - ChangeLog | 10 +++++ - src/bookmarks/ephy-bookmark-action.c | 72 +++++++++++++++++++++++++++++++++++- - 2 files changed, 81 insertions(+), 1 deletion(-) - -commit 28b4ede39c469cc557b5f6ffadadc0c852e33d87 -Author: Alexander Shopov -Date: Mon Jul 12 11:16:29 2004 +0000 - - Updated Bulgarian translation by Vladimir "Kaladan" Petkov - - 2004-07-12 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir "Kaladan" Petkov - - po/ChangeLog | 5 + - po/bg.po | 7635 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 3823 insertions(+), 3817 deletions(-) - -commit 38656813a66efc9e3ce6d484e347b624dfbace57 -Author: Amanpreet Singh Alam -Date: Mon Jul 12 11:00:20 2004 +0000 - - 12/7/2004 aman (amanlinux@netscape.net) update - - po/pa.po | 1454 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 748 insertions(+), 706 deletions(-) - -commit a652b24dabcd1bc70839613240759ea15c2e7d37 -Author: Laurent Dhima -Date: Mon Jul 12 09:40:59 2004 +0000 - - Updated Albanian translation. - - 2004-07-12 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 +++ - po/sq.po | 86 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 52 insertions(+), 38 deletions(-) - -commit 46d2a595dc9ea2df5a856c9466967f0eb5389efb -Author: Marco Pesenti Gritti -Date: Sun Jul 11 12:07:09 2004 +0000 - - When opening bookmarks in a tab from toolbars jump to them. - - 2004-07-11 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarksbar.c: (bookmark_open_in_tab_cb): - - When opening bookmarks in a tab from toolbars jump to them. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarksbar.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit cd110924e482c3c217fd1561d82698b3ad9c2dc3 -Author: Marco Pesenti Gritti -Date: Sun Jul 11 11:43:51 2004 +0000 - - *** empty log message *** - - lib/egg/egg-editable-toolbar.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 1e5208d26c293d3569f7410397ea18755fe9f73b -Author: Marco Pesenti Gritti -Date: Sun Jul 11 11:43:18 2004 +0000 - - Disable sliding when not in toolbar editing mode. We cant assume - - 2004-07-11 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (toolbar_drag_motion_cb): - * src/bookmarks/ephy-bookmark-action.c: (connect_proxy): - * src/bookmarks/ephy-topic-action.c: (connect_proxy): - - Disable sliding when not in toolbar editing mode. - We cant assume GDK_ACTION_MOVE there. - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-bookmark-action.c | 26 -------------------------- - src/bookmarks/ephy-topic-action.c | 26 -------------------------- - 3 files changed, 9 insertions(+), 52 deletions(-) - -commit 0e419aaf06e325e0ad4b6c7a9929e66773a3fb74 -Author: Marco Pesenti Gritti -Date: Sun Jul 11 11:06:57 2004 +0000 - - Make sure we stop the drag check also when button is released while the - - 2004-07-11 Marco Pesenti Gritti - - * src/bookmarks/ephy-topic-action.c: (stop_drag_check), - (button_release_cb), (button_press_cb): - - Make sure we stop the drag check also when button - is released while the menu grab is still in effect. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-topic-action.c | 20 ++++++++++++++------ - 2 files changed, 22 insertions(+), 6 deletions(-) - -commit b341a4983b97e022d87e16590d5b7d8aa88c5374 -Author: Marco Pesenti Gritti -Date: Sun Jul 11 10:31:28 2004 +0000 - - Add api to move items. - - 2004-07-11 Marco Pesenti Gritti - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_move_item): - * lib/egg/egg-toolbars-model.h: - - Add api to move items. - - * src/bookmarks/ephy-bookmark-action.c: (get_item_position), - (remove_from_model), (move_in_model), (move_left_activate_cb), - (move_right_activate_cb), (show_context_menu): - * src/bookmarks/ephy-topic-action.c: (get_item_position), - (remove_from_model), (move_in_model), (move_left_activate_cb), - (move_right_activate_cb), (show_context_menu): - - Add Move Left/Move Right context menus. - - ChangeLog | 16 +++++++ - lib/egg/egg-toolbars-model.c | 31 +++++++++++++ - lib/egg/egg-toolbars-model.h | 5 +++ - src/bookmarks/ephy-bookmark-action.c | 86 +++++++++++++++++++++++++++++++----- - src/bookmarks/ephy-topic-action.c | 82 ++++++++++++++++++++++++++++++---- - 5 files changed, 202 insertions(+), 18 deletions(-) - -commit 391cc13ee086c2af18e9ad75ad0c626d7e6a26e6 -Author: Marco Pesenti Gritti -Date: Sun Jul 11 09:37:47 2004 +0000 - - Hide the item when dragging it like we do for normal toolbars. - - 2004-07-11 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: (drag_begin_cb), - (drag_end_cb), (connect_proxy): - * src/bookmarks/ephy-topic-action.c: (drag_begin_cb), - (drag_end_cb), (connect_proxy): - - Hide the item when dragging it like we do for normal - toolbars. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmark-action.c | 26 ++++++++++++++++++++++++++ - src/bookmarks/ephy-topic-action.c | 26 ++++++++++++++++++++++++++ - 3 files changed, 62 insertions(+) - -commit d951d0c0a056b245ed50292e4d48341283660fe3 -Author: Marco Pesenti Gritti -Date: Sun Jul 11 09:19:36 2004 +0000 - - Implement topics drag and drop. Totally tricky but it seem to work fine :) - - 2004-07-11 Marco Pesenti Gritti - - * src/bookmarks/ephy-topic-action.c: (create_tool_item), - (menu_deactivate_cb), (remove_from_model), (remove_activate_cb), - (drag_data_get_cb), (drag_data_delete_cb), (stop_drag_check), - (check_horizontal_threshold), (drag_motion_cb), - (button_toggled_cb), (button_release_cb), (button_press_cb), - (connect_proxy): - - Implement topics drag and drop. Totally tricky but it seem - to work fine :) - - ChangeLog | 12 +++ - src/bookmarks/ephy-topic-action.c | 169 ++++++++++++++++++++++++++++++++++---- - 2 files changed, 165 insertions(+), 16 deletions(-) - -commit fd19e880c83d4436b6e2867c175aa1015feddff3 -Author: Christian Persch -Date: Sat Jul 10 22:54:35 2004 +0000 - - Fix a mem leak. - - 2004-07-11 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (drag_motion_cb): - - Fix a mem leak. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmark-action.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit a2df1c82e50c669df21072d240ee35f55cee7c3a -Author: Updated ja.po. T.Aihana -Date: Sat Jul 10 08:47:21 2004 +0000 - - 2004-07-10 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 820 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 435 insertions(+), 389 deletions(-) - -commit 62db6920d08bce596852b0c4821ca44c9f42574f -Author: Alexander Shopov -Date: Sat Jul 10 07:06:55 2004 +0000 - - Updated Bulgarian translation by Vladimir "Kaladan" Petkov - - 2004-07-10 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir "Kaladan" Petkov - - po/ChangeLog | 5 + - po/bg.po | 7625 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 3822 insertions(+), 3808 deletions(-) - -commit 751e9c3df575289d2b9ab71fb90248ba90612aee -Author: Christian Persch -Date: Thu Jul 8 22:14:38 2004 +0000 - - Depend on lignomeui >= 2.6.0. - - 2004-07-09 Christian Persch - - * configure.in: - - Depend on lignomeui >= 2.6.0. - - ChangeLog | 6 ++++++ - configure.in | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 9effe14f1bb2307b4c504c8c360841dbbd539679 -Author: Xan Lopez -Date: Thu Jul 8 22:11:22 2004 +0000 - - Plug leak, thanks to Crispin. - - - * embed/downloader-view.c: (downloader_view_add_download): - - Plug leak, thanks to Crispin. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 1 + - 2 files changed, 7 insertions(+) - -commit 8b1b6fca6b46636c9234d2266ce435fba5b02cb1 -Author: Nikos Charonitakis -Date: Thu Jul 8 20:56:40 2004 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 806 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 425 insertions(+), 385 deletions(-) - -commit b3af3dd786f57ac076cbab8e54267213c4ea8da5 -Author: Marco Pesenti Gritti -Date: Thu Jul 8 19:05:25 2004 +0000 - - When moving in the same toolbar force GDK_ACTION_MOVE. Fix #145529 - - 2004-07-08 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (toolbar_drag_motion_cb): - - When moving in the same toolbar force GDK_ACTION_MOVE. - Fix #145529 - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 5 +++++ - 2 files changed, 12 insertions(+) - -commit 8adf2de315954bedb84f6c05eba3fc9b0d046ebf -Author: Ole Laursen -Date: Wed Jul 7 15:27:13 2004 +0000 - - Updated Danish translation. - - 2004-07-07 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 953 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 502 insertions(+), 455 deletions(-) - -commit a02fb55769bff1b02a3ce9237b81b507e7bfe7be -Author: Francisco Javier F. Serrador -Date: Wed Jul 7 15:16:06 2004 +0000 - - Updated Spanish translation - - 2004-07-07 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation - - po/ChangeLog | 4 + - po/es.po | 983 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 514 insertions(+), 473 deletions(-) - -commit 007bdf427ce649acd65e856170451980404929cd -Author: Christian Persch -Date: Wed Jul 7 14:03:54 2004 +0000 - - Add xpcom/ to INCLUDES - - embed/mozilla/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit 075d8e0cc6baa1cb489fd8857dc1db05f3b1e95f -Author: Christian Persch -Date: Wed Jul 7 13:24:09 2004 +0000 - - Don't convert filename encoding here, since we use it as UTF-8 in - - 2004-07-07 Christian Persch - - * embed/print-dialog.c: (ephy_print_get_print_info): - - Don't convert filename encoding here, since we use it - as UTF-8 in MozillaPrivate. - - ChangeLog | 7 +++++++ - embed/print-dialog.c | 6 +----- - 2 files changed, 8 insertions(+), 5 deletions(-) - -commit 4beacf33a63ad8b8075b18d50c629317989083a8 -Author: Christian Persch -Date: Tue Jul 6 21:08:03 2004 +0000 - - Updating NEWS - - NEWS | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit 675687512de86253a3ead036e868bf8c3fe88b99 -Author: Christian Persch -Date: Tue Jul 6 20:49:41 2004 +0000 - - Add "he" to ALL_LINGUAS. - - 2004-07-06 Christian Persch - - * configure.in: - - Add "he" to ALL_LINGUAS. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 35254ee03a3b52f9e73fdeb8d54911bf75d7a3bf -Author: Gil Osher -Date: Tue Jul 6 20:40:30 2004 +0000 - - Added Hebrew translation. Thanks to Roie Kerstein. - - - * he.po: Added Hebrew translation. - Thanks to Roie Kerstein. - - po/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 0af6e9a2d0ae57cbfc12c0f35d707da6cba4ffcf -Author: Gil Osher -Date: Tue Jul 6 20:39:51 2004 +0000 - - Added Hebrew translation. - Thanks to Roie Kerstein. - - po/he.po | 3509 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 3509 insertions(+) - -commit 0d21adc810497452692b2e079c1fa6d7c66ec87b -Author: Christian Persch -Date: Tue Jul 6 19:26:41 2004 +0000 - - Post-release version bump. - - 2004-07-06 Christian Persch - - * configure.in: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 96ef31433f8c4796195c1635e92733fcad05259a -Author: Christian Persch -Date: Tue Jul 6 19:20:00 2004 +0000 - - === Release 1.3.2 === - - 2004-07-06 Christian Persch - - === Release 1.3.2 === - - ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 3ed4438ffcaf46ca7c60c5aaf7e77c9882c4d353 -Author: Christian Persch -Date: Tue Jul 6 18:24:28 2004 +0000 - - Updatings NEWS - - NEWS | 3 +++ - 1 file changed, 3 insertions(+) - -commit a0ab69a55120f3ddd71ba2ac563c10316c84d71c -Author: Jordi Mallach -Date: Tue Jul 6 18:21:48 2004 +0000 - - Updated Catalan translation by Xavier Conde Rueda . - - po/ChangeLog | 5 + - po/ca.po | 1253 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 565 insertions(+), 693 deletions(-) - -commit 1154d1c6f4e153b54658b25b3525b60317697f7b -Author: Christian Persch -Date: Tue Jul 6 18:10:34 2004 +0000 - - Version 1.3.2. - - 2004-07-06 Christian Persch - - * NEWS: - * configure.in: - - Version 1.3.2. - - ChangeLog | 7 +++++++ - NEWS | 10 ++++++++++ - configure.in | 2 +- - 3 files changed, 18 insertions(+), 1 deletion(-) - -commit feddcd0ff6551ca695897dbc88d91f05a087a3be -Author: Xan Lopez -Date: Tue Jul 6 18:07:24 2004 +0000 - - didn't I said to make that NS_IF_ADDREF () ? mmm, yes - - - * embed/mozilla/MozDownload.cpp: - - didn't I said to make that NS_IF_ADDREF () ? - mmm, yes - - Fix the downloader crasher. - - ChangeLog | 275 ++++++++++++++++++++++-------------------- - embed/mozilla/MozDownload.cpp | 2 +- - 2 files changed, 143 insertions(+), 134 deletions(-) - -commit 82bf3117e9196f51b5c8d1c51636dad443fdb386 -Author: Christian Persch -Date: Tue Jul 6 17:43:51 2004 +0000 - - -1 is valid button number, it's used for synthesised "mouse" events on - - 2004-07-06 Christian Persch - - * embed/mozilla/EventContext.cpp: - - -1 is valid button number, it's used for synthesised "mouse" events - on form submit via Return key. Fixes bug #145420. - - ChangeLog | 7 +++++++ - embed/mozilla/EventContext.cpp | 7 +++++++ - 2 files changed, 14 insertions(+) - -commit cbcee897b1d3e58f7215098e97f5365b81a48a8f -Author: Christian Persch -Date: Tue Jul 6 14:46:57 2004 +0000 - - Post-release version bump. - - 2004-07-06 Christian Persch - - * configure.in: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 399e39509687e41167a1f49140b3bb268782b828 -Author: Christian Persch -Date: Tue Jul 6 14:44:32 2004 +0000 - - === Release 1.3.1 === - - 2004-07-06 Christian Persch - - * doc/reference/tmpl/ephy-embed.sgml: - - === Release 1.3.1 === - - ChangeLog | 6 ++++++ - doc/reference/tmpl/ephy-embed.sgml | 2 ++ - 2 files changed, 8 insertions(+) - -commit dae261aff6f586de8880cb1a928fcd6a976575cb -Author: Christian Persch -Date: Tue Jul 6 14:11:20 2004 +0000 - - Updating NEWS - - NEWS | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 3289f253a58dac56d91c0930005c0c37c2dec6c2 -Author: Xan Lopez -Date: Tue Jul 6 14:00:51 2004 +0000 - - If the MIME is unknown, use application/octet-stream. - - - * embed/downloader-view.c: (downloader_view_add_download): - * embed/mozilla/mozilla-download.cpp: - - If the MIME is unknown, use application/octet-stream. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 1 - - embed/mozilla/mozilla-download.cpp | 2 +- - 3 files changed, 8 insertions(+), 2 deletions(-) - -commit 9c1de34bccc36279aabfb0fb21cec9e6caf1d952 -Author: Christian Persch -Date: Tue Jul 6 13:46:12 2004 +0000 - - Add MAINTAINERS to EXTRA_DIST, and make gconf schema install less noisy. - - 2004-07-06 Christian Persch - - * Makefile.am: - * data/Makefile.am: - - Add MAINTAINERS to EXTRA_DIST, and make gconf schema install - less noisy. - - Makefile.am | 1 + - data/Makefile.am | 2 +- - 2 files changed, 2 insertions(+), 1 deletion(-) - -commit 7959ae8df7774f0c6cf76171a112aa82d404c0b0 -Author: Christian Persch -Date: Tue Jul 6 13:46:04 2004 +0000 - - Version 1.3.1. - - 2004-07-06 Christian Persch - - * configure.in: - - Version 1.3.1. - - ChangeLog | 14 ++++++++++++++ - configure.in | 5 +++-- - 2 files changed, 17 insertions(+), 2 deletions(-) - -commit 3aad0c257ea9dc65f747fffcd54204fef2962467 -Author: Alexander Shopov -Date: Tue Jul 6 06:36:51 2004 +0000 - - Updated Bulgarian translation by Vladimir "Kaladan" Petkov - - 2004-07-06 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir "Kaladan" Petkov - - po/ChangeLog | 5 + - po/bg.po | 2037 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1057 insertions(+), 985 deletions(-) - -commit d690b9e5eaf31ec1131b078c412921ade2d5c745 -Author: Laurent Dhima -Date: Mon Jul 5 15:39:11 2004 +0000 - - Updated Albanian translation. - - 2004-07-05 Laurent Dhima - - * sq.po: Updated Albanian translation. - - po/ChangeLog | 4 +++ - po/sq.po | 114 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 68 insertions(+), 50 deletions(-) - -commit 1fe1842e8c45bc020c202b4dda26389c38a0a96f -Author: Xan Lopez -Date: Mon Jul 5 14:52:03 2004 +0000 - - Scale the MIME icon. - - - * embed/downloader-view.c: (downloader_view_add_download): - - Scale the MIME icon. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 35 +++++++++++++++++++---------------- - 2 files changed, 25 insertions(+), 16 deletions(-) - -commit 86174df35cd77038e4850e96ac4b933ed6677bd5 -Author: Marco Pesenti Gritti -Date: Mon Jul 5 10:37:44 2004 +0000 - - Some ordering/sizing tweak - - 2004-07-05 Marco Pesenti Gritti - - * embed/downloader-view.c: (downloader_view_build_ui): - - Some ordering/sizing tweak - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 15 ++++----------- - 2 files changed, 10 insertions(+), 11 deletions(-) - -commit 6de1e563220b6d6c33bab75ca073132533051951 -Author: Marco Pesenti Gritti -Date: Mon Jul 5 09:42:39 2004 +0000 - - *** empty log message *** - - embed/mozilla/Makefile.am | 1 + - 1 file changed, 1 insertion(+) - -commit d074a82a8c1427eeafc1c2f65db0a00c0755bac8 -Author: Marco Pesenti Gritti -Date: Mon Jul 5 00:02:09 2004 +0000 - - Support also GDK_ACTION_COPY. Fix #145254. - - 2004-07-05 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: (drag_motion_cb): - - Support also GDK_ACTION_COPY. Fix #145254. - - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - - Use the notebook to access the toplevel, data passed to the - signal can be NULL. - - ChangeLog | 11 +++++++++++ - src/bookmarks/ephy-bookmark-action.c | 3 ++- - src/ephy-notebook.c | 2 +- - 3 files changed, 14 insertions(+), 2 deletions(-) - -commit 88b80a860b47b19756c162df89307a58a43ceeeb -Author: Christian Persch -Date: Sun Jul 4 23:56:26 2004 +0000 - - Decode ACE for UI, and encode UTF-8 hostnames before using cookie and - - 2004-07-05 Christian Persch - - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - - Decode ACE for UI, and encode UTF-8 hostnames before using - cookie and passwords functions with them. - Fixes bug #130930. - - ChangeLog | 9 +++++++++ - embed/mozilla/EphySingle.cpp | 29 ++++++++++++++++++++++++++--- - embed/mozilla/mozilla-embed-single.cpp | 33 ++++++++++++++++++++++++++++++--- - 3 files changed, 65 insertions(+), 6 deletions(-) - -commit cb2cadac4196048e1caf47bb9a876d6edc2cfa34 -Author: Christian Persch -Date: Sun Jul 4 23:50:52 2004 +0000 - - Unescape the mailto: address, fixes bug #144462. - - 2004-07-05 Christian Persch - - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - - Unescape the mailto: address, fixes bug #144462. - - ChangeLog | 7 +++++++ - embed/mozilla/EventContext.cpp | 36 ++++++++++++++++++++++++++++++++++-- - embed/mozilla/EventContext.h | 1 + - 3 files changed, 42 insertions(+), 2 deletions(-) - -commit 1448306a534067e474d26a2e590c96c45cc6d40d -Author: Christian Persch -Date: Sun Jul 4 23:46:26 2004 +0000 - - Cache the scaled spinner images to make creating new spinners very fast, - - 2004-07-05 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_cache_get_type), - (ephy_spinner_images_free), (ephy_spinner_images_copy), - (ephy_spinner_cache_unload), (extract_frame), - (ephy_spinner_cache_load), (compare_size), (scale_to_size), - (ephy_spinner_cache_get_images), (ephy_spinner_cache_init), - (ephy_spinner_cache_finalize), (ephy_spinner_cache_class_init), - (ephy_spinner_cache_ref), (ephy_spinner_load_images), - (ephy_spinner_unload_images), (icon_theme_changed_cb), - (ephy_spinner_init), (select_spinner_image), (ephy_spinner_expose), - (bump_spinner_frame_cb), (ephy_spinner_start), - (ephy_spinner_remove_update_callback), (ephy_spinner_stop), - (ephy_spinner_set_size), (ephy_spinner_size_request), - (ephy_spinner_finalize), (ephy_spinner_class_init): - - Cache the scaled spinner images to make creating new spinners very - fast, now that we use so many of them. - - ChangeLog | 19 ++ - lib/widgets/ephy-spinner.c | 819 ++++++++++++++++++++++++++++----------------- - 2 files changed, 535 insertions(+), 303 deletions(-) - -commit f710ef7614259d91c45e56e63568c1e241232792 -Author: Christian Persch -Date: Sun Jul 4 18:03:09 2004 +0000 - - Updated for 1.3.1. - - 2004-07-04 Christian Persch - - * NEWS: - - Updated for 1.3.1. - - ChangeLog | 6 ++++++ - NEWS | 46 +++++++++++++++++++++++++--------------------- - 2 files changed, 31 insertions(+), 21 deletions(-) - -commit d4cb75b8ff49df8b2b6abb16f7fe255aebf19c7d -Author: Miloslav Trmac -Date: Sun Jul 4 15:37:10 2004 +0000 - - Updated Czech translation. - - 2004-07-04 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++++ - po/cs.po | 73 ++++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 43 insertions(+), 34 deletions(-) - -commit 1550b9761c6e78aaf7ed8b8ecca63b65a8ffef3f -Author: Christian Persch -Date: Sun Jul 4 11:28:47 2004 +0000 - - Show and activate the menubar with F10 when it's hidden. Fixes bug - - 2004-07-04 Christian Persch - - * src/ephy-window.c: (menubar_deactivate_cb), - (ephy_window_key_press_event), (ephy_window_class_init): - - Show and activate the menubar with F10 when it's hidden. - Fixes bug #141999. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 43 +++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 51 insertions(+) - -commit 3d5210a4ca588096cd847bff8a5e89b2d9f8c28b -Author: Christian Persch -Date: Sun Jul 4 10:56:23 2004 +0000 - - Normal context menus for check/radio/submit buttons. Fixes bug #143942. - - 2004-07-04 Christian Persch - - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - - Normal context menus for check/radio/submit buttons. - Fixes bug #143942. - - ChangeLog | 8 ++++ - embed/mozilla/EventContext.cpp | 87 ++++++++++++++++++++++++------------------ - embed/mozilla/EventContext.h | 1 + - 3 files changed, 59 insertions(+), 37 deletions(-) - -commit 19c653c5affa0717a1fe627833b667bd0fb226a6 -Author: Christian Persch -Date: Sat Jul 3 23:16:28 2004 +0000 - - Use regular return for valid error conditions, not g_return_if_fail. - - 2004-07-04 Christian Persch - - * embed/downloader-view.c: (downloader_view_add_download): - - Use regular return for valid error conditions, not - g_return_if_fail. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 8 +++++--- - 2 files changed, 12 insertions(+), 3 deletions(-) - -commit 9ca863b51695d5f237e5083948b88cb140b1358e -Author: Christian Persch -Date: Sat Jul 3 23:02:41 2004 +0000 - - Fix compilation with mozilla 1.7. - - 2004-07-04 Christian Persch - - * embed/mozilla/mozilla-download.cpp: (impl_get_mime_type): - - Fix compilation with mozilla 1.7. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-download.cpp | 17 +++++++++++++++-- - 2 files changed, 21 insertions(+), 2 deletions(-) - -commit 6a0c3f0befbc71168923838d9f2b2dca7ab9d5df -Author: Xan Lopez -Date: Sat Jul 3 22:52:28 2004 +0000 - - Add a MIME icon in the File column. Some indent fixes. - - - - * embed/downloader-view.c: (downloader_view_get_type), - (downloader_view_class_init), (downloader_view_init), - (downloader_view_finalize), (format_interval), - (downloader_view_add_download), (downloader_view_build_ui), - (downloader_view_remove_download): - - Add a MIME icon in the File column. Some indent fixes. - - * embed/ephy-download.c: (ephy_download_get_mime): - * embed/ephy-download.h: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/mozilla-download.cpp: - - Implement the method to get the MIME of a download and - port to nsEmbedString. - - * embed/mozilla/PrintingPromptService.cpp: - - Remove bogus nsString.h header. - - ChangeLog | 22 ++++ - embed/downloader-view.c | 197 ++++++++++++++++++++------------ - embed/ephy-download.c | 7 ++ - embed/ephy-download.h | 3 + - embed/mozilla/MozDownload.cpp | 5 +- - embed/mozilla/PrintingPromptService.cpp | 1 - - embed/mozilla/mozilla-download.cpp | 23 +++- - 7 files changed, 182 insertions(+), 76 deletions(-) - -commit 5a4f5d1450a62608504d8e157e63257f214e1ea2 -Author: Marco Pesenti Gritti -Date: Sat Jul 3 18:46:22 2004 +0000 - - *** empty log message *** - - data/ui/epiphany-ui.xml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0ac23c8e7e5daa98a016308b7c4e0cc1fe510f86 -Author: Marco Pesenti Gritti -Date: Sat Jul 3 18:09:52 2004 +0000 - - "Open in tabs" insensitive when there are not multiple bookmarks in the - - 2004-07-03 Marco Pesenti Gritti - - * src/bookmarks/ephy-topic-action.c: (can_open_in_tabs), - (append_bookmarks_menu), (add_open_in_tabs_menu), - (build_bookmarks_menu), (show_context_menu): - - "Open in tabs" insensitive when there are not - multiple bookmarks in the topic. - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-topic-action.c | 28 +++++++++++++++++++--------- - 2 files changed, 28 insertions(+), 9 deletions(-) - -commit 134f4c838708b6a80e9ff8ee4d7ac8bf0f03bf6e -Author: Laurent Dhima -Date: Sat Jul 3 17:49:56 2004 +0000 - - Translation updated. - - 2004-07-03 Laurent Dhima - - * sq.po: Translation updated. - - po/ChangeLog | 4 ++++ - po/sq.po | 45 +++++++++++++++++++++++++-------------------- - 2 files changed, 29 insertions(+), 20 deletions(-) - -commit 1aec992f242611c430998c8a6c0a8782bccbbc2f -Author: Christian Persch -Date: Sat Jul 3 11:39:07 2004 +0000 - - Add profiler calls. - - 2004-07-03 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_load_images): - - Add profiler calls. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-spinner.c | 9 +++++++++ - 2 files changed, 15 insertions(+) - -commit 4f05ea67e32470322a557738b548f31e1f15c4f3 -Author: Christian Persch -Date: Sat Jul 3 11:34:21 2004 +0000 - - Mozilla API change. - - 2004-07-03 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Mozilla API change. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 3dfe6d63ae73d28f1dbe2f9815a02e0b2b47a2c7 -Author: Christian Persch -Date: Fri Jul 2 22:59:45 2004 +0000 - - Add G_[BEGIN|END]_DECLS - - lib/widgets/ephy-location-entry.h | 43 ++++++++++++++++++++------------------- - 1 file changed, 22 insertions(+), 21 deletions(-) - -commit 099873bb3ced9f2189b87d12641a6e61de9ae5d8 -Author: Christian Persch -Date: Fri Jul 2 22:05:59 2004 +0000 - - Codestyle and whitespace cleanup - - lib/widgets/ephy-spinner.c | 82 +++++++++++++++++++++++----------------------- - lib/widgets/ephy-spinner.h | 37 +++++++++++---------- - 2 files changed, 60 insertions(+), 59 deletions(-) - -commit b597caf899ec8778d8302f6ccce3a01651bb1b25 -Author: Christian Persch -Date: Fri Jul 2 21:59:32 2004 +0000 - - R data/art/epiphany-tab-loading.gif: - - 2004-07-02 Christian Persch - - * data/art/Makefile.am: - R data/art/epiphany-tab-loading.gif: - * lib/widgets/ephy-spinner.c: (get_spinner_dimensions), - (ephy_spinner_init), (ephy_spinner_expose), - (ephy_spinner_unload_images), (scale_to_real_size), - (ephy_spinner_set_size), (ephy_spinner_size_request): - * lib/widgets/ephy-spinner.h: - * src/ephy-notebook.c: (sync_load_status), (build_tab_label): - * src/toolbar.c: (fixed_toolbar_reconfigured_cb), (toolbar_init): - - Remove our tab loading animation and use mini-spinners instead. - - ChangeLog | 14 ++++++ - data/art/Makefile.am | 1 - - data/art/epiphany-tab-loading.gif | Bin 825 -> 0 bytes - lib/widgets/ephy-spinner.c | 97 +++++++++++++++++++++++--------------- - lib/widgets/ephy-spinner.h | 5 +- - src/ephy-notebook.c | 47 +++++++++--------- - src/toolbar.c | 43 ++++++----------- - 7 files changed, 111 insertions(+), 96 deletions(-) - -commit d7a633cd5f758d3812959fe562dd2dd35b275c1e -Author: Christian Neumair -Date: Fri Jul 2 18:18:44 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 803 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 427 insertions(+), 380 deletions(-) - -commit 70952afe4a186f5790368d7c4a41746fd7a12cd1 -Author: Marco Pesenti Gritti -Date: Fri Jul 2 18:07:36 2004 +0000 - - Use blank document as default favicon - - 2004-07-02 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_sync_icon): - * src/ephy-favicon-action.c: (ephy_favicon_action_sync_icon): - - Use blank document as default favicon - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/ephy-favicon-action.c | 2 +- - 3 files changed, 10 insertions(+), 2 deletions(-) - -commit cd9cbc846a259d14140ad5f11726565d64a0d03d -Author: Christian Persch -Date: Fri Jul 2 17:19:37 2004 +0000 - - Depend on mozilla >= 1.7 final. Simplify some mozilla version checks. - - 2004-07-02 Christian Persch - - * configure.in: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - - Depend on mozilla >= 1.7 final. Simplify some mozilla - version checks. - - ChangeLog | 8 ++++++++ - configure.in | 2 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 6 +++--- - 3 files changed, 12 insertions(+), 4 deletions(-) - -commit 7496a69745a356aa97df30d8cac0113bafd5792d -Author: Marco Pesenti Gritti -Date: Fri Jul 2 10:24:37 2004 +0000 - - Follow popups keybindings. - - 2004-07-02 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: (show_context_menu), - (popup_menu_cb), (button_press_cb), (connect_proxy): - * src/bookmarks/ephy-topic-action.c: (show_context_menu), - (popup_menu_cb), (button_press_cb), (connect_proxy): - - Follow popups keybindings. - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-bookmark-action.c | 19 ++++++++++++++++--- - src/bookmarks/ephy-topic-action.c | 22 ++++++++++++++++------ - 3 files changed, 41 insertions(+), 9 deletions(-) - -commit abda398ba465f54fdf890177146c22260edef64b -Author: Marco Pesenti Gritti -Date: Fri Jul 2 09:59:11 2004 +0000 - - Implement bookmark context menu. - - 2004-07-02 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: (open_in_tab_activate_cb), - (open_in_window_activate_cb), (remove_from_model), - (drag_data_delete_cb), (remove_activate_cb), (show_context_menu), - (button_press_cb): - - Implement bookmark context menu. - - ChangeLog | 9 +++++ - src/bookmarks/ephy-bookmark-action.c | 71 ++++++++++++++++++++++++++++++++++-- - 2 files changed, 77 insertions(+), 3 deletions(-) - -commit e4d85cc76bedf4d4a39453095f2ed9a97ce398ff -Author: Marco Pesenti Gritti -Date: Fri Jul 2 09:40:09 2004 +0000 - - Implement topic context menu. - - 2004-07-02 Marco Pesenti Gritti - - * src/bookmarks/ephy-topic-action.c: (remove_activate_cb), - (add_open_in_tabs_menu), (build_bookmarks_menu), - (show_context_menu), (button_press_cb), (connect_proxy): - - Implement topic context menu. - - ChangeLog | 8 ++++ - src/bookmarks/ephy-topic-action.c | 84 ++++++++++++++++++++++++++++++++++++--- - 2 files changed, 86 insertions(+), 6 deletions(-) - -commit 6dadef323fb59daefac69200014b1d5f238a911a -Author: Marco Pesenti Gritti -Date: Fri Jul 2 09:03:42 2004 +0000 - - Move in the bookmarks dir. - - 2004-07-02 Marco Pesenti Gritti - - * src/bookmarks/ephy-favorites-menu.c: - * src/bookmarks/ephy-favorites-menu.h: - - Move in the bookmarks dir. - - * lib/ephy-gui.c: (ephy_gui_select_row_by_key), - (ephy_gui_is_middle_click): - * lib/ephy-gui.h: - - Add a function to check if menus was activated - by a middle or a ctrl+click (which is equivalent in epiphany) - - * lib/ephy-marshal.list: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmark-action.c: (activate_cb), - (ephy_bookmark_action_class_init): - * src/bookmarks/ephy-bookmark-action.h: - * src/bookmarks/ephy-bookmarks-menu.c: (open_bookmark_cb), - (create_menu): - * src/bookmarks/ephy-bookmarksbar.c: (bookmark_open_in_tab_cb), - (bookmark_open_cb), (ephy_bookmarksbar_action_request): - * src/bookmarks/ephy-topic-action.c: (menu_activate_cb), - (ephy_topic_action_class_init): - * src/bookmarks/ephy-topic-action.h: - - Add signals to open bookmarks in new window/tab. I'll need - them for context menus. - Use them for middle/ctrl click. - - ChangeLog | 32 ++++ - lib/ephy-gui.c | 32 ++++ - lib/ephy-gui.h | 2 + - lib/ephy-marshal.list | 1 + - src/Makefile.am | 2 - - src/bookmarks/Makefile.am | 6 +- - src/bookmarks/ephy-bookmark-action.c | 32 +++- - src/bookmarks/ephy-bookmark-action.h | 6 +- - src/bookmarks/ephy-bookmarks-menu.c | 6 +- - src/bookmarks/ephy-bookmarksbar.c | 56 ++----- - src/bookmarks/ephy-favorites-menu.c | 297 +++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-favorites-menu.h | 59 +++++++ - src/bookmarks/ephy-topic-action.c | 37 ++++- - src/bookmarks/ephy-topic-action.h | 9 +- - src/ephy-favorites-menu.c | 297 ----------------------------------- - src/ephy-favorites-menu.h | 59 ------- - 16 files changed, 516 insertions(+), 417 deletions(-) - -commit 5788200966658bf840916954af8718426d33c177 -Author: Laurent Dhima -Date: Fri Jul 2 08:25:55 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 793c32bd36dcf6eff13692bdc06bb359ddd55ebe -Author: Laurent Dhima -Date: Fri Jul 2 08:24:22 2004 +0000 - - Updated - - po/sq.po | 321 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 170 insertions(+), 151 deletions(-) - -commit 0ac0cecee89d31d466df424a992d9117638c81db -Author: Miloslav Trmac -Date: Fri Jul 2 06:43:08 2004 +0000 - - Updated Czech translation. - - 2004-07-02 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 324 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 176 insertions(+), 152 deletions(-) - -commit b54249d22518ae96b83e2cdd7665c04c59feb3ff -Author: Christian Persch -Date: Thu Jul 1 18:07:29 2004 +0000 - - s/Off-Line/Offline/ - - 2004-07-01 Christian Persch - - * src/ephy-window.c: - - s/Off-Line/Offline/ - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 2c3fa59bebd1f6679b06172e48a894f6bb1de6cd -Author: Marco Pesenti Gritti -Date: Thu Jul 1 16:53:33 2004 +0000 - - Change position to popups and offline menus. - - 2004-07-01 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml: - - Change position to popups and offline menus. - - ChangeLog | 6 ++++++ - data/ui/epiphany-ui.xml | 9 +++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit dbded0c3e46fa3126019e14f025cfb4d0d3598ad -Author: Marco Pesenti Gritti -Date: Thu Jul 1 10:11:15 2004 +0000 - - Do not show the icon for smartbookmarks - - 2004-07-01 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_sync_smart_url): - - Do not show the icon for smartbookmarks - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmark-action.c | 5 ++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 14c2f5ec0db32d2c9c08cb4a5af0edb210968de5 -Author: Marco Pesenti Gritti -Date: Thu Jul 1 10:00:40 2004 +0000 - - *** empty log message *** - - lib/egg/egg-editable-toolbar.c | 10 ++++++---- - 1 file changed, 6 insertions(+), 4 deletions(-) - -commit 49390b4e0047fbb33312988906b95e673ce146db -Author: Marco Pesenti Gritti -Date: Thu Jul 1 09:51:21 2004 +0000 - - Do not allow dragging out of edit mode on ITEMS_ONLY toolbars. - - 2004-07-01 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (toolbar_drag_motion_cb): - - Do not allow dragging out of edit mode on ITEMS_ONLY toolbars. - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 7 ++++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit dc18cc6b2040bfdf629a671bc8718030cb37260e -Author: Marco Pesenti Gritti -Date: Thu Jul 1 09:40:23 2004 +0000 - - No need to show the default icon for bookmarks menu. - - 2004-07-01 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_sync_icon): - - No need to show the default icon for bookmarks menu. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmark-action.c | 19 +++++++++++-------- - 2 files changed, 18 insertions(+), 8 deletions(-) - -commit 582199edf5b76697fba83ade64eddcf1349224cf -Author: Marco Pesenti Gritti -Date: Thu Jul 1 09:24:34 2004 +0000 - - Allow to drag bookmarks around also when not in edit mode. Use the default - - 2004-07-01 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (favicon_cache_changed_cb), (ephy_bookmark_action_sync_icon), - (stop_drag_check), (drag_data_get_cb), (drag_data_delete_cb), - (drag_motion_cb), (button_press_cb), (button_release_cb), - (connect_proxy), (ephy_bookmark_action_init): - - Allow to drag bookmarks around also when not in edit mode. - Use the default bookmark icon when there is not a specific - one, it acts as a separator. Put some space between the icon - and the text. - - ChangeLog | 13 ++++ - src/bookmarks/ephy-bookmark-action.c | 127 ++++++++++++++++++++++++++++++----- - 2 files changed, 124 insertions(+), 16 deletions(-) - -commit bbd9d6551d3f84f4cc7afa5ef4c21dfadceb668d -Author: Adam Hooper -Date: Thu Jul 1 01:47:17 2004 +0000 - - Popup blocking support. View -> Popup Windows. - - ChangeLog | 44 ++++ - data/art/Makefile.am | 1 + - data/art/epiphany-popup-hidden.png | Bin 0 -> 1365 bytes - data/art/epiphany-popup-hidden.svg | 218 ++++++++++++++++ - data/ui/epiphany-ui.xml | 1 + - doc/reference/Makefile.am | 1 + - doc/reference/epiphany-sections.txt | 1 + - doc/reference/tmpl/ephy-embed-single.sgml | 11 + - doc/reference/tmpl/ephy-embed.sgml | 46 ++-- - doc/reference/tmpl/ephy-permission-manager.sgml | 2 +- - doc/reference/tmpl/ephy-shell.sgml | 1 - - doc/reference/tmpl/ephy-tab.sgml | 10 + - doc/reference/tmpl/epiphany-unused.sgml | 18 +- - lib/ephy-stock-icons.c | 1 + - lib/ephy-stock-icons.h | 1 + - src/ephy-statusbar.c | 62 ++++- - src/ephy-statusbar.h | 5 + - src/ephy-tab.c | 324 ++++++++++++++++++++++++ - src/ephy-window.c | 137 +++++++++- - 19 files changed, 861 insertions(+), 23 deletions(-) - -commit 61533f01f0f6df3b9dafc18d1567507830db0752 -Author: Marco Pesenti Gritti -Date: Wed Jun 30 18:24:22 2004 +0000 - - Use a new window for "Open in Tabs" - - 2004-06-30 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarksbar.c: (open_in_tabs_cb): - * src/bookmarks/ephy-topic-action.c: (append_bookmarks_menu), - (open_in_tabs_activate_cb), (build_bookmarks_menu): - - Use a new window for "Open in Tabs" - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarksbar.c | 21 +++++++++++++++++---- - src/bookmarks/ephy-topic-action.c | 17 ++++++++--------- - 3 files changed, 33 insertions(+), 13 deletions(-) - -commit c260e516d7bb7aec504793170a48eb79f61fb50c -Author: Xan Lopez -Date: Wed Jun 30 18:03:31 2004 +0000 - - Be a bit smarter about double extensions. - - - * embed/mozilla/MozDownload.cpp: - - Be a bit smarter about double extensions. - - ChangeLog | 6 +++++ - embed/mozilla/MozDownload.cpp | 57 +++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 61 insertions(+), 2 deletions(-) - -commit bca7f0c0b59fc4f0c15daf830b7fc760bebeebd7 -Author: Marco Pesenti Gritti -Date: Wed Jun 30 17:59:32 2004 +0000 - - Change tabs sizing again. Now we use a width of 20 (estimated) chars. - - 2004-06-30 Marco Pesenti Gritti - - * src/ephy-notebook.c: - - Change tabs sizing again. Now we use a width - of 20 (estimated) chars. - - ChangeLog | 7 +++++++ - src/ephy-notebook.c | 10 ++++------ - 2 files changed, 11 insertions(+), 6 deletions(-) - -commit 6ba68abe9e5b0cbc1036e616ded7919546140bac -Author: Christian Persch -Date: Tue Jun 29 21:52:13 2004 +0000 - - Update for 1.3.1. - - 2004-06-29 Christian Persch - - * NEWS: - - Update for 1.3.1. - - ChangeLog | 6 +++++ - NEWS | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 88 insertions(+) - -commit 83a96d345c7604d359e988fb5359b3d1ebb9054b -Author: Danilo Šegan -Date: Tue Jun 29 15:57:51 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 681 ++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 681 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 702 insertions(+), 664 deletions(-) - -commit 0c58d7bc8c1d9203d8c4c9e1524fbc81ba5f044e -Author: Christian Persch -Date: Tue Jun 29 12:38:29 2004 +0000 - - Set sane_state to TRUE from user changes, otherwise broken prefs will - - 2004-06-29 Christian Persch - - * lib/ephy-dialog.c: (togglebutton_clicked_cb), - (radiobutton_clicked_cb), (spinbutton_timeout_cb), (changed_cb): - - Set sane_state to TRUE from user changes, otherwise broken prefs - will never get overwritten. - - ChangeLog | 8 ++++++++ - lib/ephy-dialog.c | 8 ++++++++ - 2 files changed, 16 insertions(+) - -commit 35b2f4c884078c8bc29464ada4f34b044491527b -Author: Laurent Dhima -Date: Tue Jun 29 10:57:31 2004 +0000 - - Translation updated. - - 2004-06-29 Laurent Dhima - - * sq.po: Translation updated. - - po/ChangeLog | 4 + - po/sq.po | 374 +++++++++++++++++++++++++++-------------------------------- - 2 files changed, 178 insertions(+), 200 deletions(-) - -commit be5383dd414e29ae8b2afeed2f1d60c9083bce23 -Author: Vincent van Adrighem -Date: Tue Jun 29 00:10:50 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-06-29 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 945 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 485 insertions(+), 464 deletions(-) - -commit 3ba67082f9e3e6ca2fd226f6c38db0eb0adabe0c -Author: Laurent Dhima -Date: Mon Jun 28 15:04:29 2004 +0000 - - Translation updated. - - 2004-06-28 Laurent Dhima - - * sq.po: Translation updated. - - po/ChangeLog | 4 + - po/sq.po | 824 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 433 insertions(+), 395 deletions(-) - -commit 573bc2158951d02cdcb4462dd46bd52ac7946e7a -Author: Miloslav Trmac -Date: Mon Jun 28 14:50:49 2004 +0000 - - Updated Czech translation. - - 2004-06-28 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 301 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 159 insertions(+), 146 deletions(-) - -commit cc2e070cb399d4581df590127f964add66aa0124 -Author: Christian Persch -Date: Sun Jun 27 11:53:34 2004 +0000 - - EphySingle needs to implement nsISupportsWeakReference. - - 2004-06-27 Christian Persch - - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EphySingle.h: - * embed/mozilla/mozilla-embed-single.cpp: - - EphySingle needs to implement nsISupportsWeakReference. - - 2004-06-26 Christian Persch - - ChangeLog | 8 ++++++++ - embed/mozilla/EphySingle.cpp | 10 +++++++--- - embed/mozilla/EphySingle.h | 4 +++- - embed/mozilla/mozilla-embed-single.cpp | 20 ++++++++++++-------- - 4 files changed, 30 insertions(+), 12 deletions(-) - -commit e497b299846293f001ad98f2b7dca3e68db2bf26 -Author: Christian Persch -Date: Sat Jun 26 18:28:44 2004 +0000 - - Implement File->Work Off-Line command and backend. No DBUS/HAL/whatever - - 2004-06-26 Christian Persch - - * data/ui/epiphany-ui.xml: - * embed/ephy-embed-single.c: (ephy_embed_single_iface_init), - (ephy_embed_single_set_offline_mode), - (ephy_embed_single_get_offline_mode): - * embed/ephy-embed-single.h: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * src/ephy-window.c: (network_status_changed), (ephy_window_init), - (ephy_window_finalize): - * src/window-commands.c: (window_cmd_file_save_as), - (window_cmd_file_work_offline): - * src/window-commands.h: - - Implement File->Work Off-Line command and backend. - No DBUS/HAL/whatever integration yet. - - ChangeLog | 18 ++++++++++++++ - data/ui/epiphany-ui.xml | 1 + - embed/ephy-embed-single.c | 30 +++++++++++++++++++++++ - embed/ephy-embed-single.h | 44 +++++++++++++++++++--------------- - embed/mozilla/EphySingle.cpp | 35 ++++++++++++++++++--------- - embed/mozilla/mozilla-embed-single.cpp | 41 ++++++++++++++++++++++++++++--- - src/ephy-window.c | 37 ++++++++++++++++++++++++++++ - src/window-commands.c | 15 ++++++++++++ - src/window-commands.h | 3 +++ - 9 files changed, 191 insertions(+), 33 deletions(-) - -commit 4119e2dbc0194ff0bc2d7c903b10cd35180b32b0 -Author: Marco Pesenti Gritti -Date: Sat Jun 26 12:15:21 2004 +0000 - - Preserve hierarchy in the xbel importer too. Use mime sniffing to - - 2004-06-26 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import), - (xbel_parse_folder), (xbel_parse_xbel): - - Preserve hierarchy in the xbel importer too. Use mime - sniffing to determine the file mime type. - - ChangeLog | 8 ++++ - src/bookmarks/ephy-bookmarks-import.c | 88 +++++++++++++++-------------------- - 2 files changed, 45 insertions(+), 51 deletions(-) - -commit 528f2c2ef23b88a57a8725986ccb9a45bdd98180 -Author: Marco Pesenti Gritti -Date: Fri Jun 25 19:13:39 2004 +0000 - - Move PrintInfo to print-dialog since it's no more use by embed api. - - 2004-06-25 Marco Pesenti Gritti - - * embed/ephy-embed.h: - * embed/mozilla/MozillaPrivate.h: - * embed/print-dialog.h: - - Move PrintInfo to print-dialog since - it's no more use by embed api. - - ChangeLog | 9 +++++++++ - embed/ephy-embed.h | 36 ------------------------------------ - embed/mozilla/MozillaPrivate.h | 2 +- - embed/print-dialog.h | 36 ++++++++++++++++++++++++++++++++++++ - 4 files changed, 46 insertions(+), 37 deletions(-) - -commit 285a8e2322d2a8f612e0f8e7b2f923f96af9bf3a -Author: Marco Pesenti Gritti -Date: Fri Jun 25 14:08:45 2004 +0000 - - Fix typo in the printer name - - 2004-06-25 Marco Pesenti Gritti - - * embed/MozillaPrivate.cpp: - - Fix typo in the printer name - - ChangeLog | 6 ++++++ - embed/mozilla/MozillaPrivate.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4d95823df4166a6430bb07fc0701a8ab1c838a38 -Author: Marco Pesenti Gritti -Date: Fri Jun 25 13:38:36 2004 +0000 - - Remove preview flag - - 2004-06-25 Marco Pesenti Gritti - - * embed/MozillaPrivate.cpp: - - Remove preview flag - - ChangeLog | 6 ++++++ - embed/ephy-embed.h | 1 - - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/MozillaPrivate.cpp | 5 +++-- - embed/mozilla/MozillaPrivate.h | 3 ++- - embed/mozilla/PrintingPromptService.cpp | 2 +- - embed/print-dialog.c | 1 - - 7 files changed, 13 insertions(+), 7 deletions(-) - -commit 1e6c9597b2253ace1b921f1247164b7f7e1fa6f5 -Author: Miloslav Trmac -Date: Fri Jun 25 12:39:59 2004 +0000 - - Updated Czech translation. - - 2004-06-25 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 428 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 221 insertions(+), 211 deletions(-) - -commit 36ad80414746a470d3f64849266817c58fef2344 -Author: Marco Pesenti Gritti -Date: Fri Jun 25 11:31:22 2004 +0000 - - Simplify print code. Now there is only one case to deal with, the mozilla - - 2004-06-25 Marco Pesenti Gritti - - * embed/ephy-embed.c: (ephy_embed_print), - (ephy_embed_set_print_preview_mode): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/print-dialog.c: (ephy_print_dialog_response_cb), - (ephy_print_dialog_new): - * embed/print-dialog.h: - * src/ephy-window.c: (ephy_window_delete_event_cb), - (ephy_window_finalize), (update_embed_dialogs), (ephy_window_find): - * src/ppview-toolbar.c: (toolbar_cmd_ppv_close): - * src/window-commands.c: (window_cmd_file_print_preview), - (window_cmd_file_print): - - Simplify print code. Now there is only one case to deal with, - the mozilla prompt dialog. - This should help with xprint. - - ChangeLog | 22 ++++++++++++ - embed/ephy-embed.c | 18 +++++----- - embed/ephy-embed.h | 12 +++---- - embed/mozilla/EphyBrowser.cpp | 56 ++++++++++++++--------------- - embed/mozilla/EphyBrowser.h | 5 ++- - embed/mozilla/PrintingPromptService.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 32 ++++------------- - embed/print-dialog.c | 31 +--------------- - embed/print-dialog.h | 3 +- - src/ephy-window.c | 64 +-------------------------------- - src/ppview-toolbar.c | 2 +- - src/window-commands.c | 16 ++++----- - 12 files changed, 83 insertions(+), 180 deletions(-) - -commit b6b7539092921b12790435b10e6bfb68ec9339f5 -Author: Christian Persch -Date: Thu Jun 24 13:21:26 2004 +0000 - - Added src/bookmarks/ephy-topics-selector.c. - - 2004-06-24 Christian Persch - - * POTFILES.in: Added src/bookmarks/ephy-topics-selector.c. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit 61578d1e428abbd67ba292fcfe7310a71274ae10 -Author: Marco Pesenti Gritti -Date: Thu Jun 24 10:03:31 2004 +0000 - - Use guint consistently for node ids - - 2004-06-24 Marco Pesenti Gritti - - * lib/ephy-node.c: (ephy_node_new_with_id), (ephy_node_get_id), - (child_changed), (write_parent): - * lib/ephy-node.h: - * src/bookmarks/ephy-bookmark-action.c: - (bookmarks_child_changed_cb): - * src/bookmarks/ephy-bookmark-properties.c: - (toolbar_checkbox_changed_cb), (build_ui): - * src/bookmarks/ephy-bookmarks-editor.c: - (cmd_show_in_bookmarks_bar), (ephy_bookmarks_editor_update_menu): - * src/bookmarks/ephy-bookmarks-menu.c: (create_menu), - (topic_child_changed_cb): - * src/bookmarks/ephy-new-bookmark.c: - * src/bookmarks/ephy-new-bookmark.h: - * src/bookmarks/ephy-topic-action.c: - (ephy_topic_action_set_topic_id), (topic_child_changed_cb): - - Use guint consistently for node ids - - ChangeLog | 20 ++++++++++++++++++++ - lib/ephy-node.c | 12 ++++++------ - lib/ephy-node.h | 4 ++-- - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 4 ++-- - src/bookmarks/ephy-bookmarks-editor.c | 6 +++--- - src/bookmarks/ephy-bookmarks-menu.c | 4 ++-- - src/bookmarks/ephy-new-bookmark.c | 4 ++-- - src/bookmarks/ephy-new-bookmark.h | 2 +- - src/bookmarks/ephy-topic-action.c | 6 +++--- - 10 files changed, 42 insertions(+), 22 deletions(-) - -commit 6fcf143b625f3423798bea58621a231446eac361 -Author: Marco Pesenti Gritti -Date: Thu Jun 24 08:58:52 2004 +0000 - - Implement open in tabs from toolbar topics - - 2004-06-24 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarksbar.c: (open_in_tabs_cb), - (go_location_cb), (ephy_bookmarksbar_action_request): - * src/bookmarks/ephy-topic-action.c: (append_bookmarks_menu), - (open_in_tabs_activate_cb), (build_bookmarks_menu), - (build_topics_menu), (build_menu), - (ephy_topic_action_set_topic_id), (ephy_topic_action_set_property), - (ephy_topic_action_class_init): - * src/bookmarks/ephy-topic-action.h: - * src/ephy-window.c: (ephy_window_load_in_tabs): - - Implement open in tabs from toolbar topics - - ChangeLog | 14 +++++ - src/bookmarks/ephy-bookmarksbar.c | 20 ++++++-- - src/bookmarks/ephy-topic-action.c | 104 +++++++++++++++++++++++++++++++------- - src/bookmarks/ephy-topic-action.h | 3 +- - src/ephy-window.c | 3 +- - 5 files changed, 120 insertions(+), 24 deletions(-) - -commit 24833bb6604df5e36c39bab539fdbea4b5b57fe5 -Author: Christian Persch -Date: Wed Jun 23 22:55:20 2004 +0000 - - Removed unused array, and added a few missing statics. - - 2004-06-24 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Removed unused array, and added a few missing statics. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 13 +++---------- - 2 files changed, 9 insertions(+), 10 deletions(-) - -commit e551b43db8b8342ec39df544921c39f2e377d5bf -Author: Christian Persch -Date: Wed Jun 23 20:10:49 2004 +0000 - - Use g_signal_connect_after to connect to the toolbar_added signal, - - 2004-06-23 Christian Persch - - * src/bookmarks/ephy-bookmarksbar.c: - (ephy_bookmarksbar_set_window): - * src/toolbar.c: (toolbar_realize): - - Use g_signal_connect_after to connect to the toolbar_added - signal, otherwise the toolbar isn't created yet and we crash - when trying to set the drag dests on a newly added toolbar. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmarksbar.c | 4 ++-- - src/toolbar.c | 4 ++-- - 3 files changed, 14 insertions(+), 4 deletions(-) - -commit 4e884b1c0332c875cb3041daa0626770ee5ec7da -Author: Christian Persch -Date: Wed Jun 23 20:08:44 2004 +0000 - - Commit ChangeLog too - - ChangeLog | 14 ++++++++++++++ - 1 file changed, 14 insertions(+) - -commit bf9a14796c23d31c781a6e09b92f523531285932 -Author: Christian Persch -Date: Wed Jun 23 20:07:43 2004 +0000 - - Make the permission type a string instead of an enum, that way we can - - 2004-06-23 Christian Persch - - * doc/reference/tmpl/ephy-permission-manager.sgml: - * embed/ephy-permission-manager.c: (ephy_permission_info_new), - (ephy_permission_info_copy), (ephy_permission_manager_add), - (ephy_permission_manager_remove), (ephy_permission_manager_test), - (ephy_permission_manager_list): - * embed/ephy-permission-manager.h: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - - Make the permission type a string instead of an enum, that way - we can support more than just the hardcoded 3 types. - - doc/reference/tmpl/ephy-permission-manager.sgml | 16 ++++--------- - embed/ephy-permission-manager.c | 22 +++++++++--------- - embed/ephy-permission-manager.h | 29 +++++++++++------------- - embed/mozilla/EphySingle.cpp | 21 +++-------------- - embed/mozilla/mozilla-embed-single.cpp | 30 ++++++++++++++----------- - 5 files changed, 48 insertions(+), 70 deletions(-) - -commit 38b74d1e516fd674940903dbf49a48894c0bbab7 -Author: Christian Persch -Date: Wed Jun 23 19:41:37 2004 +0000 - - Simply use gtk_container_get_children(). - - 2004-06-23 Christian Persch - - * src/ephy-window.c: (ephy_window_get_tabs): - - Simply use gtk_container_get_children(). - - ChangeLog | 6 ++++++ - src/ephy-window.c | 13 ++----------- - 2 files changed, 8 insertions(+), 11 deletions(-) - -commit f9d16e71518fd593d966c503baad72c049daa4ab -Author: Christian Persch -Date: Wed Jun 23 19:39:03 2004 +0000 - - Make the "Exit Fullscreen" button toggle the action instead of doing to - - 2004-06-23 Christian Persch - - * src/ephy-window.c: (exit_fullscreen_button_clicked_cb), - (get_chromes_visibility), (ephy_window_state_event_cb): - - Make the "Exit Fullscreen" button toggle the action instead of - doing to work itself. Fixes bug #144785. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 12 +++++++++++- - 2 files changed, 19 insertions(+), 1 deletion(-) - -commit 96aedf7f4f19c494a549310b7c6e55b6fcd7668a -Author: Marco Pesenti Gritti -Date: Wed Jun 23 18:28:31 2004 +0000 - - Add EphyWindow API to open multiple uris in tabs, use it for dnd on the - - 2004-06-23 Marco Pesenti Gritti - - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - * src/ephy-window.c: (ephy_window_set_zoom), - (ephy_window_load_in_tabs): - * src/ephy-window.h: - - Add EphyWindow API to open multiple uris in - tabs, use it for dnd on the notebook. - - ChangeLog | 10 +++++++++ - src/ephy-notebook.c | 60 ++++++++++------------------------------------------- - src/ephy-window.c | 47 +++++++++++++++++++++++++++++++++++++++++ - src/ephy-window.h | 4 ++++ - 4 files changed, 72 insertions(+), 49 deletions(-) - -commit d12bc3fbd3a34b8bcf8a6d7c23815f5a79dec49d -Author: Christian Persch -Date: Wed Jun 23 14:47:18 2004 +0000 - - Move check for javascript after the http[s] checks. - - 2004-06-23 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Move check for javascript after the http[s] checks. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 13 +++++-------- - 2 files changed, 11 insertions(+), 8 deletions(-) - -commit 451c3366a26cfe58deda5000102ffaf6e7efa6bf -Author: Marco Pesenti Gritti -Date: Tue Jun 22 23:49:43 2004 +0000 - - "/" in a topic title is now a submenu in the bookmarks menu. - - 2004-06-23 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-import.c: - (folders_list_to_topic_name): - * src/bookmarks/ephy-bookmarks-menu.c: (create_menu), - (ensure_folder), (create_submenu), (ephy_bookmarks_menu_rebuild): - - "/" in a topic title is now a submenu in - the bookmarks menu. - - ChangeLog | 10 +++ - src/bookmarks/ephy-bookmarks-import.c | 2 +- - src/bookmarks/ephy-bookmarks-menu.c | 119 ++++++++++++++++++++++++---------- - 3 files changed, 94 insertions(+), 37 deletions(-) - -commit e4bb3b5a38b30253ac52985773a966f733722364 -Author: Marco Pesenti Gritti -Date: Mon Jun 21 22:37:45 2004 +0000 - - Keep the whole hierarchy of folders in the topic name, separated by |. - - 2004-06-22 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-import.c: - (folders_list_to_topic_name), (ephy_bookmarks_import_mozilla): - - Keep the whole hierarchy of folders in the topic name, separated - by |. Mozilla importer only for now. - - ChangeLog | 8 +++++ - src/bookmarks/ephy-bookmarks-import.c | 61 ++++++++++++++++++++++------------- - 2 files changed, 47 insertions(+), 22 deletions(-) - -commit 220d812d83540192c0c484b425163a2545753e24 -Author: Marco Pesenti Gritti -Date: Mon Jun 21 22:05:57 2004 +0000 - - Drop some unused code. - - 2004-06-22 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-import.c: (bookmark_add), - (xbel_parse_bookmark), (ephy_bookmarks_import_mozilla), - (parse_rdf_item): - - Drop some unused code. - - ChangeLog | 8 +++++++ - src/bookmarks/ephy-bookmarks-import.c | 39 ++++++++++------------------------- - 2 files changed, 19 insertions(+), 28 deletions(-) - -commit bcc276fa99bbded1b5b42503dfb2feca30c48e24 -Author: Marco Pesenti Gritti -Date: Mon Jun 21 19:25:41 2004 +0000 - - Factor out the helper to select a treeview row by column and use it also - - 2004-06-21 Marco Pesenti Gritti - - * lib/ephy-gui.c: (ephy_gui_help), (ephy_gui_select_row_by_key): - * lib/widgets/ephy-node-view.c: (ephy_node_view_key_press_cb): - * src/bookmarks/ephy-topics-selector.c: (topic_key_pressed): - - Factor out the helper to select a treeview row by column and - use it also in the topic selector. - - * lib/ephy-gui.h: - * src/bookmarks/ephy-bookmarks-editor.c: - * src/bookmarks/ephy-new-bookmark.c: - * src/ephy-history-window.c: - * src/pdm-dialog.c: - * src/ppview-toolbar.c: - * src/prefs-dialog.c: - * src/window-commands.c: - * embed/downloader-view.c: - - Remove braindead gtk.h inclusion and deal with - fallout headers. - - ChangeLog | 22 +++++++++++++ - embed/downloader-view.c | 5 +-- - lib/ephy-gui.c | 55 +++++++++++++++++++++++++++++++ - lib/ephy-gui.h | 9 ++++- - lib/widgets/ephy-node-view.c | 62 +++++------------------------------ - src/bookmarks/ephy-bookmarks-editor.c | 10 +++++- - src/bookmarks/ephy-new-bookmark.c | 1 + - src/bookmarks/ephy-topics-selector.c | 8 +++++ - src/ephy-history-window.c | 8 +++++ - src/pdm-dialog.c | 5 +++ - src/ppview-toolbar.c | 2 +- - src/prefs-dialog.c | 3 ++ - src/window-commands.c | 2 ++ - 13 files changed, 133 insertions(+), 59 deletions(-) - -commit 54d27764848058ad591478a56a67ec49bee20efe -Author: Marco Pesenti Gritti -Date: Mon Jun 21 18:18:14 2004 +0000 - - Add a New topic button to the new bookmark dialog. - - 2004-06-21 Marco Pesenti Gritti - - * src/bookmarks/ephy-new-bookmark.c: (response_cb), - (ephy_new_bookmark_construct): - * src/bookmarks/ephy-topics-selector.c: (renderer_edited_cb), - (renderer_editing_canceled_cb), (ephy_topics_build_ui), - (ephy_topics_selector_new), (ephy_topics_selector_new_topic): - * src/bookmarks/ephy-topics-selector.h: - - Add a New topic button to the new bookmark dialog. - - ChangeLog | 11 ++++++ - src/bookmarks/ephy-new-bookmark.c | 15 ++++++++ - src/bookmarks/ephy-topics-selector.c | 73 ++++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-topics-selector.h | 2 + - 4 files changed, 101 insertions(+) - -commit 157bf334e0f70f7bdea8c19fd310505449291677 -Author: Christian Persch -Date: Mon Jun 21 11:26:37 2004 +0000 - - Check for empty attributes before adding the item when parsing the - - 2004-06-21 Christian Persch - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_get_flags), - (parse_item_list), (parse_toolbars): - - Check for empty attributes before adding the item when parsing - the toolbars file. Should fix bug #144698. - - ChangeLog | 8 ++++++++ - lib/egg/egg-toolbars-model.c | 19 +++++++++++-------- - 2 files changed, 19 insertions(+), 8 deletions(-) - -commit ab5f74ea9c207799a9ea36d4ddac46790e3ecfb5 -Author: Christian Persch -Date: Mon Jun 21 11:21:47 2004 +0000 - - Allow importing from Epiphany bookmarks format (RDF), fixes bug #144699. - - 2004-06-21 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): - - Allow importing from Epiphany bookmarks format (RDF), - fixes bug #144699. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-import.c | 4 ++++ - 2 files changed, 11 insertions(+) - -commit 898e8dd1c01801f24a872018751b3b267d35c96a -Author: Adam Hooper -Date: Mon Jun 21 11:14:33 2004 +0000 - - Whoops. Um. Fixed the build. - - ChangeLog | 17 +++++++++++++++++ - lib/ephy-marshal.list | 1 + - 2 files changed, 18 insertions(+) - -commit 234742d9a6c75c8163a47bd1f3b1eeeba15e58cc -Author: Adam Hooper -Date: Mon Jun 21 11:09:56 2004 +0000 - - Implement popup-blocking signals. Part of bug #111930. - - embed/ephy-embed-single.c | 14 +++++++++ - embed/ephy-embed.c | 21 ++++++++++++- - embed/ephy-embed.h | 4 ++- - embed/mozilla/EphyBrowser.cpp | 54 ++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 7 +++++ - embed/mozilla/mozilla-embed-single.cpp | 16 ++++++---- - 6 files changed, 108 insertions(+), 8 deletions(-) - -commit 848ded5f81fc73bafd62c6cbf1e2b9b9814e7263 -Author: Danilo Šegan -Date: Sun Jun 20 22:13:50 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 775 ++++++++++++++++++++++++++--------------------------- - po/sr@Latn.po | 840 +++++++++++++++++++++++++++++----------------------------- - 3 files changed, 800 insertions(+), 819 deletions(-) - -commit f51dc5154e88d3a4b1e677e21990e22119e68e91 -Author: Gareth Owen -Date: Sun Jun 20 19:53:41 2004 +0000 - - Updated British English translation - - po/ChangeLog | 4 + - po/en_GB.po | 700 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 356 insertions(+), 348 deletions(-) - -commit 98d14ff619bdb0ad0b9be44fe7d9aee17e1cae41 -Author: Christian Persch -Date: Sun Jun 20 13:18:41 2004 +0000 - - Remove implementation of ::HidePage again, it's really not used anyway in - - 2004-06-20 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Remove implementation of ::HidePage again, it's really not used - anyway in mozilla (history load listener is the only place, and it's - not build, not even updated for API changes). - - ChangeLog | 8 ++++++++ - embed/mozilla/GlobalHistory.cpp | 15 +-------------- - 2 files changed, 9 insertions(+), 14 deletions(-) - -commit 2e4e7e1b752f261f9cd73f9d3d4b7ae346acde8e -Author: Christian Persch -Date: Sun Jun 20 08:03:12 2004 +0000 - - Implement GlobalHistory2::HidePage, fixes bug #142143. - - 2004-06-20 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Implement GlobalHistory2::HidePage, fixes bug #142143. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 24 +++++++++++++++++++++--- - 2 files changed, 27 insertions(+), 3 deletions(-) - -commit a32f3bc82ae2cfc258d890c135bb109febb5f4b7 -Author: Christian Persch -Date: Sat Jun 19 23:32:07 2004 +0000 - - Make tab labels 1/n-th of the window width (n = number of tabs), with a - - 2004-06-20 Christian Persch - - * src/ephy-notebook.c: (sync_label), (tab_label_style_set_cb), - (build_tab_label), (ephy_notebook_add_tab): - * src/ephy-window.c: (ephy_window_get_tabs): - - Make tab labels 1/n-th of the window width (n = number of tabs), - with a minimum size so they don't get too tiny. - Make the tooltip cover the label + favicon, not just the label. - - ChangeLog | 10 +++++ - src/ephy-notebook.c | 123 +++++++++++++++++++++++++--------------------------- - 2 files changed, 70 insertions(+), 63 deletions(-) - -commit 1f1f4b78c63f4e5421c223d93c3b23d52dc72c30 -Author: Marco Pesenti Gritti -Date: Sat Jun 19 17:21:19 2004 +0000 - - Append tabs at the end instead of grouping them near the current one. - - 2004-06-19 Marco Pesenti Gritti - - * src/ephy-notebook.c: (ephy_notebook_move_tab), (move_tab), - (ephy_notebook_switch_page_cb), (ephy_notebook_init), - (ephy_notebook_finalize), (ephy_notebook_add_tab), - (ephy_notebook_remove_tab): - * src/ephy-notebook.h: - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-shell.h: - * src/ephy-tab.c: (ephy_tab_new_window_cb): - * src/ephy-window.c: (ephy_window_add_tab): - - Append tabs at the end instead of grouping - them near the current one. - - ChangeLog | 15 +++++++++++++++ - src/ephy-notebook.c | 45 +++++---------------------------------------- - src/ephy-notebook.h | 5 ++--- - src/ephy-shell.c | 7 +------ - src/ephy-shell.h | 1 - - src/ephy-tab.c | 2 +- - src/ephy-window.c | 4 ++-- - 7 files changed, 26 insertions(+), 53 deletions(-) - -commit def0bcab86eb6dc80ee74fc95b3424ad2cbe14cc -Author: Nikos Charonitakis -Date: Sat Jun 19 10:12:41 2004 +0000 - - Updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 574 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 294 insertions(+), 284 deletions(-) - -commit 78835b301ecd4413cceb066dfa3463dc397f111c -Author: Marco Pesenti Gritti -Date: Sat Jun 19 08:00:48 2004 +0000 - - Update from new winstripe theme of Firefox - - 2004-06-19 Marco Pesenti Gritti - - * data/art/epiphany-tab-loading.gif: - - Update from new winstripe theme of Firefox - - ChangeLog | 6 ++++++ - data/art/epiphany-tab-loading.gif | Bin 288 -> 825 bytes - 2 files changed, 6 insertions(+) - -commit 6bb5c7c179258a08132f9a0d86db447e1af5b39c -Author: Alexander Winston -Date: Fri Jun 18 01:36:50 2004 +0000 - - Updated Canadian English translation. - - 2004-06-17 Alexander Winston - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 701 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 357 insertions(+), 348 deletions(-) - -commit d5ea4ef0e4f4872a03e3ae9f41f23940f99922cc -Author: Christian Persch -Date: Thu Jun 17 17:57:12 2004 +0000 - - Escape strings before using the with markup in labels. Patch by Crispin - - 2004-06-17 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - - Escape strings before using the with markup in labels. - Patch by Crispin Flowerday. - - ChangeLog | 8 ++++++++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 18 +++++++++--------- - 3 files changed, 18 insertions(+), 10 deletions(-) - -commit f2e8ab7c911d504732a40d74cbbb1aff2fec7e33 -Author: Metin Amiroff -Date: Thu Jun 17 10:19:14 2004 +0000 - - Translation updated by Mətin Əmirov. - - 2004-06-17 Metin Amiroff - - * az.po: Translation updated by Mətin Əmirov. - - po/ChangeLog | 4 + - po/az.po | 845 +++++++++++++++++++++++------------------------------------ - 2 files changed, 335 insertions(+), 514 deletions(-) - -commit 17122e5dda5753a38f966d58c022e7622f6a8a64 -Author: Alexander Shopov -Date: Thu Jun 17 05:31:57 2004 +0000 - - Updated Bulgarian translation by Vladimir "Kaladan" Petkov - - 2004-06-17 Alexander Shopov - - * bg.po: Updated Bulgarian translation by - Vladimir "Kaladan" Petkov - - po/ChangeLog | 5 + - po/bg.po | 7490 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 3746 insertions(+), 3749 deletions(-) - -commit e88868f155e690b5cbcf88f3b50e75e1345dc059 -Author: Christian Persch -Date: Wed Jun 16 17:30:59 2004 +0000 - - Set data for close-button on the tab label. - - 2004-06-16 Christian Persch - - * src/ephy-notebook.c: (build_tab_label): - - Set data for close-button on the tab label. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 1 + - 2 files changed, 7 insertions(+) - -commit e107b8c04820a45b8b4daca62e767cdfd8e62e23 -Author: Christian Persch -Date: Wed Jun 16 12:31:08 2004 +0000 - - Go back to construction the toolbar when the model is set, fixes bug - - 2004-06-16 Christian Persch - - * lib/egg/egg-editable-toolbar.c: - (egg_editable_toolbar_disconnect_model), - (egg_editable_toolbar_deconstruct), - (egg_editable_toolbar_set_model), - (egg_editable_toolbar_class_init), (egg_editable_toolbar_finalize), - (egg_editable_toolbar_new), (egg_editable_toolbar_new_with_model), - (egg_editable_toolbar_set_fixed): - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_get_flags), - (parse_toolbars): - * src/bookmarks/ephy-bookmarksbar.c: - (ephy_bookmarksbar_set_window), (ephy_bookmarksbar_class_init): - * src/ephy-window.c: (ephy_window_fullscreen), - (ephy_window_unfullscreen), (ephy_window_init): - * src/toolbar.c: (toolbar_style_changed_cb), (parent_set_cb), - (toolbar_init), (toolbar_finalize), (toolbar_new): - - Go back to construction the toolbar when the model is set, fixes - bug #144191. - - 2004-06-15 Marco Pesenti Gritti - - ChangeLog | 22 +++++++ - lib/egg/egg-editable-toolbar.c | 131 +++++++++++++++++++------------------- - lib/egg/egg-editable-toolbar.h | 15 +++-- - src/bookmarks/ephy-bookmarksbar.c | 31 +-------- - src/ephy-window.c | 21 ++++-- - src/toolbar.c | 55 +++++++++++----- - 6 files changed, 159 insertions(+), 116 deletions(-) - -commit a6c12b524b75382eb362e400df3b40c23bf24067 -Author: Miloslav Trmac -Date: Wed Jun 16 11:03:20 2004 +0000 - - Updated Czech translation. - - 2004-06-16 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 701 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 357 insertions(+), 348 deletions(-) - -commit a336085bdba3ef04f9dbd177edebe5f44fec7d00 -Author: Artur Flinta -Date: Wed Jun 16 08:26:56 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-06-16 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 770 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 385 insertions(+), 389 deletions(-) - -commit 4c960035d22abebf2d398522aa368d8c03b07197 -Author: Marco Pesenti Gritti -Date: Tue Jun 15 01:09:54 2004 +0000 - - *** empty log message *** - - .cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit 30740ebdadb05768e8227aade160c37265b16498 -Author: Marco Pesenti Gritti -Date: Tue Jun 15 01:09:20 2004 +0000 - - Use GenericName. See #144284 for the hig change. Fix bug #140625. - - 2004-06-15 Marco Pesenti Gritti - - * data/bme.desktop.in: - * data/epiphany.desktop.in: - - Use GenericName. See #144284 for the hig change. - Fix bug #140625. - - ChangeLog | 8 ++++++++ - data/bme.desktop.in | 3 ++- - data/epiphany.desktop.in | 3 ++- - 3 files changed, 12 insertions(+), 2 deletions(-) - -commit c41a8f5a1e551116d8a1d82e0aa3246e636cc175 -Author: Christian Persch -Date: Mon Jun 14 22:34:43 2004 +0000 - - Work around mozilla bug #246392 which goes back to the original urls when - - 2004-06-15 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Work around mozilla bug #246392 which goes back to the original urls - when reloading a frameset. Fixes bug #115800. - - ChangeLog | 9 +++++++++ - embed/mozilla/EphyBrowser.cpp | 38 ++++++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 23 ++++++++++++++++++++++- - 4 files changed, 75 insertions(+), 1 deletion(-) - -commit 367e685ae5c06b9394607c98bca9e726b63e034c -Author: Gustavo Maciel Dias Vieira -Date: Mon Jun 14 22:03:20 2004 +0000 - - Updated Brazilian Portuguese translation done by Estêvão Samuel - - 2004-06-14 Gustavo Maciel Dias Vieira - - * pt_BR.po: Updated Brazilian Portuguese translation done by - Estêvão Samuel Procópio . - - po/ChangeLog | 5 + - po/pt_BR.po | 756 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 376 insertions(+), 385 deletions(-) - -commit 3454f8d1faec25775a9179fd256524239aa0f620 -Author: Christian Persch -Date: Mon Jun 14 21:46:17 2004 +0000 - - Use g_markup_print_escaed(). - - 2004-06-14 Christian Persch - - * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct): - - Use g_markup_print_escaed(). - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-new-bookmark.c | 6 ++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit b88d5cc70e93567ffc8aa10f470abe92928b395e -Author: Christian Persch -Date: Mon Jun 14 21:25:53 2004 +0000 - - Escape strings before using them with markup in labels. - - 2004-06-14 Christian Persch - - * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct): - * src/bookmarks/ephy-topic-action.c: (build_topics_menu): - - Escape strings before using them with markup in labels. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-new-bookmark.c | 6 ++++-- - src/bookmarks/ephy-topic-action.c | 5 +---- - 3 files changed, 12 insertions(+), 6 deletions(-) - -commit 6a6db353ca01d693c363c249903e63546f48e837 -Author: Christian Persch -Date: Mon Jun 14 13:12:26 2004 +0000 - - Get rid of EmbedReloadFlags, and use a gboolean force parameter in - - 2004-06-14 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_reload): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - * src/prefs-dialog.c: - * src/window-commands.c: (window_cmd_view_reload): - - Get rid of EmbedReloadFlags, and use a gboolean force parameter - in ephy_embed_reload() instead, since we only had two states anyway - - EMBED_RELOAD_NORMAL, and EMBED_RELOAD_FORCE. - - ChangeLog | 12 ++++++++++++ - embed/ephy-embed.c | 10 +++++----- - embed/ephy-embed.h | 10 ++-------- - embed/mozilla/mozilla-embed.cpp | 4 ++-- - src/prefs-dialog.c | 2 -- - src/window-commands.c | 3 +-- - 6 files changed, 22 insertions(+), 19 deletions(-) - -commit 81bb2e461a848f2ed7c85d5c4ba7404ae4945c18 -Author: Marcel Telka -Date: Sun Jun 13 13:12:55 2004 +0000 - - Added src/bookmarks/ephy-bookmarksbar-model.c. Updated Slovak translation. - - 2004-06-13 Marcel Telka - - * POTFILES.in: Added src/bookmarks/ephy-bookmarksbar-model.c. - * sk.po: Updated Slovak translation. - - po/ChangeLog | 5 + - po/POTFILES.in | 1 + - po/sk.po | 816 +++++++++++++++++++++++---------------------------------- - 3 files changed, 333 insertions(+), 489 deletions(-) - -commit f65c6c96f7445efa93ebc551ddcc1f0e89c46262 -Author: Marco Pesenti Gritti -Date: Sun Jun 13 09:37:32 2004 +0000 - - Add GNOME_COMMON_INIT - - 2004-06-13 Marco Pesenti Gritti - - * configure.in: - - Add GNOME_COMMON_INIT - - ChangeLog | 6 ++++++ - configure.in | 2 ++ - 2 files changed, 8 insertions(+) - -commit b59ab61dde301128d88778045f502cc30008bf8f -Author: Marco Pesenti Gritti -Date: Sat Jun 12 20:25:09 2004 +0000 - - Add a way to open new windows passing features and uri. Something like js - - 2004-06-12 Marco Pesenti Gritti - - * embed/ephy-embed-single.c: (ephy_embed_single_open_window): - * embed/ephy-embed-single.h: - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - - Add a way to open new windows passing features and uri. - Something like js window.open. It's necessary for popup - blocker. - - ChangeLog | 14 ++++++++++++++ - embed/ephy-embed-single.c | 10 ++++++++++ - embed/ephy-embed-single.h | 12 ++++++++++-- - embed/ephy-embed.h | 2 +- - embed/mozilla/EphyBrowser.cpp | 9 +++++++++ - embed/mozilla/EphyBrowser.h | 1 + - embed/mozilla/EventContext.cpp | 2 -- - embed/mozilla/mozilla-embed-single.cpp | 23 +++++++++++++++++++++++ - 8 files changed, 68 insertions(+), 5 deletions(-) - -commit decb30ea6768b634476d351f3d5f5e73e4308326 -Author: Marco Pesenti Gritti -Date: Sat Jun 12 18:38:47 2004 +0000 - - Allow items to be dragged from toolbar editor also when in items only - - 2004-06-12 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (toolbar_drag_motion_cb): - - Allow items to be dragged from toolbar editor also when - in items only mode. - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_add_separator): - - The type should be the same as tool items. - - ChangeLog | 11 +++++++++++ - lib/egg/egg-editable-toolbar.c | 4 +++- - lib/egg/egg-toolbars-model.c | 2 +- - 3 files changed, 15 insertions(+), 2 deletions(-) - -commit a31c998d5bf3e9d3ec8ddf68fc7af3974cd05670 -Author: Adam Hooper -Date: Sat Jun 12 14:45:53 2004 +0000 - - Put proper property IDs on properties - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit ba8e5adcfe00c659f055d0e851a895c2b83e2554 -Author: Christian Persch -Date: Fri Jun 11 23:16:13 2004 +0000 - - Make spinner not use a visible window, and fix coordinates accordingly. - - 2004-06-12 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_new), - (ephy_spinner_init), (ephy_spinner_expose): - - Make spinner not use a visible window, and fix coordinates - accordingly. Patch by Crispin Flowerday, fixes bug #134686. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-spinner.c | 13 +++++++------ - 2 files changed, 15 insertions(+), 6 deletions(-) - -commit d3938a1cec5e2520289e37ff1ce5e2f808c97f03 -Author: Christian Persch -Date: Fri Jun 11 16:14:59 2004 +0000 - - Save the toolbars models from dispose, not from finalize, since you cannot - - 2004-06-11 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_finalize): - * src/bookmarks/ephy-bookmarksbar-model.c: - (ephy_bookmarksbar_model_dispose), - (ephy_bookmarksbar_model_finalize), - (ephy_bookmarksbar_model_class_init): - * src/ephy-toolbars-model.c: (ephy_toolbars_model_dispose), - (ephy_toolbars_model_finalize), (ephy_toolbars_model_class_init): - - Save the toolbars models from dispose, not from finalize, since you - cannot emit signals from the latter (the get_item_* signals are - emitted while saving). - - ChangeLog | 14 ++++++++++++++ - src/bookmarks/ephy-bookmarks.c | 13 +++++++------ - src/bookmarks/ephy-bookmarksbar-model.c | 14 +++++++++++--- - src/ephy-toolbars-model.c | 14 +++++++++++--- - 4 files changed, 43 insertions(+), 12 deletions(-) - -commit bf52ee9c4c4c1882ecd6bc72719c4361ad535d11 -Author: Marco Pesenti Gritti -Date: Fri Jun 11 07:34:12 2004 +0000 - - Do not put ACLOCAL flags in the Makefile, it should not be necessary - - 2004-06-11 Marco Pesenti Gritti - - * configure.in: - - Do not put ACLOCAL flags in the Makefile, - it should not be necessary anymore with - recent gnome-common. - - ChangeLog | 8 ++++++++ - configure.in | 3 --- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit 27ae6e03f698835c1683c03b7cfc0e401d0f601f -Author: Christian Persch -Date: Thu Jun 10 19:05:53 2004 +0000 - - Merging bookmarksbar-separation branch. - - 2004-06-10 Christian Persch - - Merging bookmarksbar-separation branch. - - ChangeLog | 215 ++++++++++++ - data/ui/Makefile.am | 1 + - data/ui/epiphany-fs-toolbar.xml | 5 +- - data/ui/epiphany-toolbar.xml | 8 +- - embed/mozilla/Makefile.am | 1 + - lib/egg/egg-editable-toolbar.c | 186 +++++++---- - lib/egg/egg-editable-toolbar.h | 3 +- - lib/egg/egg-toolbars-model.c | 70 +++- - lib/egg/egg-toolbars-model.h | 27 +- - lib/egg/eggmarshalers.c | 82 ++++- - lib/egg/eggmarshalers.h | 16 + - lib/egg/eggmarshalers.list | 2 + - src/Makefile.am | 1 - - src/bookmarks/Makefile.am | 4 + - src/bookmarks/ephy-bookmark-properties.c | 14 +- - src/bookmarks/ephy-bookmarks-editor.c | 43 ++- - src/bookmarks/ephy-bookmarks.c | 115 +++++-- - src/bookmarks/ephy-bookmarks.h | 114 ++++--- - src/bookmarks/ephy-bookmarksbar-model.c | 114 +++---- - src/bookmarks/ephy-bookmarksbar-model.h | 26 +- - src/bookmarks/ephy-bookmarksbar.c | 60 +++- - src/ephy-shell.c | 29 +- - src/ephy-shell.h | 7 +- - src/ephy-toolbars-model.c | 551 ++++++------------------------- - src/ephy-toolbars-model.h | 29 +- - src/ephy-window.c | 95 ++++-- - src/ephy-window.h | 2 + - src/toolbar.c | 407 ++++++----------------- - src/toolbar.h | 8 +- - src/window-commands.c | 42 ++- - 30 files changed, 1121 insertions(+), 1156 deletions(-) - -commit ee67c4e456ce1bee49da717ee86ae85e76499e6d -Author: Christian Neumair -Date: Thu Jun 10 09:46:15 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 282 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 138 insertions(+), 148 deletions(-) - -commit 2c8a25ee3e05dd0995f59154da8008d9f139d003 -Author: Christian Persch -Date: Wed Jun 9 21:10:57 2004 +0000 - - Disable xpinstall by default. Fixes bug #144035. - - 2004-06-09 Christian Persch - - * data/default-prefs.js: - - Disable xpinstall by default. Fixes bug #144035. - - ChangeLog | 6 ++++++ - data/default-prefs.js | 3 +++ - 2 files changed, 9 insertions(+) - -commit 3c3cd0eea121652c722a9678a46419b0c47b5111 -Author: Marco Pesenti Gritti -Date: Wed Jun 9 21:06:45 2004 +0000 - - s/get_item_name/get_item_data - - 2004-06-09 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (drag_data_get_cb), - (set_item_drag_source): - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_to_xml), - (impl_get_item_id), (impl_get_item_data), - (egg_toolbars_model_class_init), - (egg_toolbars_model_get_item_data): - * lib/egg/egg-toolbars-model.h: - * src/ephy-toolbars-model.c: (impl_get_item_data), - (impl_get_item_id), (ephy_toolbars_model_class_init): - - s/get_item_name/get_item_data - - Do not assume data isnt changing, use the id - and convert later instead. - - ChangeLog | 17 +++++++++++++++++ - lib/egg/egg-editable-toolbar.c | 32 +++++++++++++++++++++++--------- - lib/egg/egg-toolbars-model.c | 20 ++++++++++---------- - lib/egg/egg-toolbars-model.h | 6 +++--- - src/ephy-toolbars-model.c | 8 ++++---- - 5 files changed, 57 insertions(+), 26 deletions(-) - -commit 1f2d796e969302d64a1ec00b81b57ae594e12a9e -Author: Christian Persch -Date: Wed Jun 9 19:56:48 2004 +0000 - - 2004-06-09 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (drag_data_get_cb), - (set_item_drag_source), (create_item_from_action), (create_item), - (drag_data_received_cb), (egg_editable_toolbar_set_edit_mode): - * lib/egg/egg-toolbar-editor.c: (model_has_action): - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_to_xml), - (toolbars_item_new), (free_item_node), - (egg_toolbars_model_add_separator), (impl_add_item), - (parse_item_list), (egg_toolbars_model_load), (impl_get_item_name), - (egg_toolbars_model_class_init), (egg_toolbars_model_init), - (egg_toolbars_model_item_nth), (egg_toolbars_model_get_item_id), - (egg_toolbars_model_get_item_name): - * lib/egg/egg-toolbars-model.h: - * src/bookmarks/ephy-bookmarksbar-model.c: - (get_toolbar_and_item_pos), (item_added_cb), (impl_get_item_name), - (ephy_bookmarksbar_model_class_init): - * src/toolbar.c: (toolbar_get_type), (toolbar_added_cb), - (ephy_toolbar_realize), (ephy_toolbar_unrealize), - (toolbar_class_init): - - src/bookmarks/ephy-bookmarksbar-model.c | 54 +++++++++++++++++++++------------ - 1 file changed, 34 insertions(+), 20 deletions(-) - -commit 029c9d46c634e62950ca2761deb0159f90a45cac -Author: Marco Pesenti Gritti -Date: Wed Jun 9 11:00:22 2004 +0000 - - Retain custom types when moving items around - - 2004-06-09 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (drag_data_get_cb), - (set_item_drag_source), (create_item_from_action), (create_item), - (drag_data_received_cb), (egg_editable_toolbar_set_edit_mode): - * lib/egg/egg-toolbar-editor.c: (model_has_action): - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_item_nth): - * lib/egg/egg-toolbars-model.h: - * src/ephy-toolbars-model.c: (get_toolbar_and_item_pos), - (ephy_toolbars_model_class_init), (item_added): - - Retain custom types when moving items around - - ChangeLog | 13 ++++++++ - lib/egg/egg-editable-toolbar.c | 70 +++++++++++++++++++++++------------------- - lib/egg/egg-toolbar-editor.c | 2 +- - lib/egg/egg-toolbars-model.c | 20 +++++++++--- - lib/egg/egg-toolbars-model.h | 6 ++-- - src/ephy-toolbars-model.c | 35 +++------------------ - 6 files changed, 76 insertions(+), 70 deletions(-) - -commit 97084e9c8c3435b994cdafe546b9f86e281ced5b -Author: Christian Persch -Date: Tue Jun 8 19:38:36 2004 +0000 - - Separation of bookmarks and normal toolbars. - - 2004-06-08 Christian Persch - - Separation of bookmarks and normal toolbars. - - * lib/egg/egg-editable-toolbar.c: (find_action), (create_item), - (egg_editable_toolbar_construct), (egg_editable_toolbar_realize), - (egg_editable_toolbar_unrealize), (egg_editable_toolbar_set_model), - (egg_editable_toolbar_set_merge), - (egg_editable_toolbar_set_property), - (egg_editable_toolbar_get_property), - (egg_editable_toolbar_class_init), (egg_editable_toolbar_init), - (egg_editable_toolbar_set_edit_mode): - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_load), - (egg_toolbars_model_init): - - Only construct the toolbar on realize. When setting a different model, - unrealize the toolbar. Connect to model only while realized, fixes - crashes when setting flags on the toolbars model. - - * data/ui/epiphany-bookmarksbar.xml: - * data/ui/epiphany-fs-toolbar.xml: - * data/ui/epiphany-toolbar.xml: - - Separated. Fix root name to be "toolbars" which is the name we - save the model with. - - * src/bookmarks/ephy-bookmarksbar-model.c: - (ephy_bookmarksbar_model_get_type), (get_toolbar_and_item_pos), - (get_toolbar_pos), (ephy_bookmarksbar_model_get_action_name), - (ephy_bookmarksbar_model_get_node), - (ephy_bookmarksbar_model_add_bookmark), - (ephy_bookmarksbar_model_remove_bookmark), - (ephy_bookmarksbar_model_has_bookmark), (save_changes_idle), - (save_changes), (update_flags_and_save_changes), - (bookmark_destroy_cb), (item_added_cb), (impl_add_item), - (impl_get_item_id), (impl_get_item_type), (load_toolbars), - (ephy_bookmarksbar_model_init), (ephy_bookmarksbar_model_finalize), - (ephy_bookmarksbar_model_set_property), - (ephy_bookmarksbar_model_get_property), - (ephy_bookmarksbar_model_class_init), - (ephy_bookmarksbar_model_new): - * src/bookmarks/ephy-bookmarksbar-model.h: - * src/ephy-toolbars-model.c: (save_changes_idle), (save_changes), - (update_flags_and_save_changes), (get_toolbar_pos), - (load_toolbars), (ephy_toolbars_model_init), - (ephy_toolbars_model_finalize), (ephy_toolbars_model_class_init), - (ephy_toolbars_model_new): - * src/ephy-toolbars-model.h: - - Split toolbars model in bookmarks and non-bookmarks parts. - - * src/bookmarks/ephy-bookmarksbar.c: (ephy_bookmarksbar_get_type), - (go_location_cb), (bookmark_destroy_cb), - (ephy_bookmarksbar_action_request), (toolbar_added_cb), - (ephy_bookmarksbar_set_window), (ephy_bookmarksbar_realize), - (ephy_bookmarksbar_unrealize), (ephy_bookmarksbar_init), - (ephy_bookmarksbar_finalize), (ephy_bookmarksbar_set_property), - (ephy_bookmarksbar_get_property), (ephy_bookmarksbar_class_init), - (ephy_bookmarksbar_new): - * src/bookmarks/ephy-bookmarksbar.h: - * src/toolbar.c: (go_location_cb), (toolbar_set_property), - (toolbar_get_property), (toolbar_class_init), (toolbar_set_window), - (toolbar_init), (toolbar_new), (toolbar_set_location), - (toolbar_update_navigation_actions): - * src/toolbar.h: - * src/ephy-window.c: (get_chromes_visibility), - (sync_chromes_visibility), (ephy_window_fullscreen), - (ephy_window_unfullscreen), (action_request_forward_cb), - (ephy_window_init), (ephy_window_get_toolbar), - (ephy_window_get_bookmarksbar): - * src/ephy-window.h: - * src/window-commands.c: (window_cmd_view_fullscreen), - (toolbar_editor_destroy_cb), (toolbar_editor_response_cb), - (window_cmd_edit_toolbar): - - Split toolbars in bookmarks and non-bookmarks toolbars. - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults), - (ephy_bookmarks_get_toolbars_model), (ephy_bookmarks_set_property), - (ephy_bookmarks_get_property), (ephy_bookmarks_class_init), - (ephy_bookmarks_finalize): - * src/bookmarks/ephy-bookmarks.h: - * src/ephy-shell.c: (ephy_shell_get_toolbars_model): - * src/ephy-shell.h: - - Made bookmarksbar toolbars model a service of EphyBookmarks. - - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_set_property), - (toolbar_checkbox_changed_cb), (build_ui), - (ephy_bookmark_properties_init): - * src/bookmarks/ephy-bookmarks-editor.c: - (cmd_show_in_bookmarks_bar), (ephy_bookmarks_editor_update_menu), - (toolbar_items_changed_cb), (ephy_bookmarks_editor_init): - - Adapt to changes above. - - * data/ui/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - Makefile changes. - - data/ui/epiphany-bookmarksbar.xml | 4 + - src/bookmarks/ephy-bookmarksbar-model.c | 583 ++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmarksbar-model.h | 76 +++++ - src/bookmarks/ephy-bookmarksbar.c | 400 ++++++++++++++++++++++ - src/bookmarks/ephy-bookmarksbar.h | 64 ++++ - 5 files changed, 1127 insertions(+) - -commit 433c44cb19de1d0d40579155380fd435140b59fb -Author: Christian Persch -Date: Tue Jun 8 18:47:00 2004 +0000 - - Fix CSS background detection, based on a galeon patch by Crispin - - 2004-06-08 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Fix CSS background detection, based on a galeon patch by - Crispin Flowerday. Fixed bug #143602. - - ChangeLog | 7 +++ - embed/mozilla/EventContext.cpp | 119 +++++++++++++++++++++++------------------ - 2 files changed, 73 insertions(+), 53 deletions(-) - -commit 547e14396402130368dfa0b744b81e00cb726861 -Author: Christian Persch -Date: Tue Jun 8 17:53:10 2004 +0000 - - Adjust comment about mozilla bug #232057, which was WONTFIXed. - - 2004-06-08 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Adjust comment about mozilla bug #232057, which was - WONTFIXed. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 7 +++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 6ebb79fb36aa6dc04302bad4dc65d557b3da3f58 -Author: Marco Pesenti Gritti -Date: Mon Jun 7 23:40:41 2004 +0000 - - Do not hide clipboard items for the input context (Bug #139040) - - 2004-06-08 Marco Pesenti Gritti - - * src/ephy-window.c: (show_embed_popup): - - Do not hide clipboard items for the input context - (Bug #139040) - - ChangeLog | 7 +++++++ - src/ephy-window.c | 12 +++--------- - 2 files changed, 10 insertions(+), 9 deletions(-) - -commit 006bbddf1798bdb5490263cdc30fe2b0b8234a6c -Author: Marco Pesenti Gritti -Date: Mon Jun 7 22:49:56 2004 +0000 - - *** empty log message *** - - data/default-prefs.js | 5 +++++ - 1 file changed, 5 insertions(+) - -commit bd0c78dbe3da345d5da410c114c0fd417825605d -Author: Marco Pesenti Gritti -Date: Mon Jun 7 22:49:19 2004 +0000 - - Move external protocols prefs defaults in the javascript file and add - - 2004-06-08 Marco Pesenti Gritti - - * data/default-prefs.js: - * embed/mozilla/mozilla-embed-single.cpp: - - Move external protocols prefs defaults in - the javascript file and add webcal (Bug #143899) - - ChangeLog | 8 ++++++++ - embed/mozilla/mozilla-embed-single.cpp | 15 +++------------ - 2 files changed, 11 insertions(+), 12 deletions(-) - -commit 516de2813ef99889cf76c14dc00183fe3459298f -Author: Christian Persch -Date: Mon Jun 7 14:19:54 2004 +0000 - - Fix setting default filename in the !modeSave case. - - 2004-06-07 Christian Persch - - * embed/mozilla/FilePicker.cpp: - - Fix setting default filename in the !modeSave case. - - ChangeLog | 6 +++++ - embed/mozilla/FilePicker.cpp | 55 +++++++++++++++++++------------------------- - embed/mozilla/FilePicker.h | 2 ++ - 3 files changed, 32 insertions(+), 31 deletions(-) - -commit 934fa0b4b992c413ee5e8f654555b67d15f74ffd -Author: Christian Persch -Date: Mon Jun 7 12:14:31 2004 +0000 - - Don't allow ::SetDefaultString unless we're in modeSave. - - 2004-06-07 Christian Persch - - * embed/mozilla/FilePicker.cpp: - - Don't allow ::SetDefaultString unless we're in modeSave. - - ChangeLog | 7 +++++++ - embed/mozilla/FilePicker.cpp | 5 ++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 54dd3d1fe778b2210cb23905148e294cef496fce -Author: Ross Burton -Date: Mon Jun 7 11:33:03 2004 +0000 - - Also load extensions from /home/users/ross - - ChangeLog | 5 +++++ - src/ephy-shell.c | 7 +++++++ - 2 files changed, 12 insertions(+) - -commit f2e52a9d71ea5c0b927eda12613755d9f2c8f070 -Author: Christian Persch -Date: Mon Jun 7 11:19:09 2004 +0000 - - Use ephy-file-chooser convenience constructor instead of duplicating code - - 2004-06-07 Christian Persch - - * embed/mozilla/FilePicker: - - Use ephy-file-chooser convenience constructor instead of duplicating - code here. - - ChangeLog | 7 ++++ - embed/mozilla/FilePicker.cpp | 94 +++++++++++++++++++++----------------------- - 2 files changed, 52 insertions(+), 49 deletions(-) - -commit ebe58319e56ea4e3573fd27a76d815ec387e08e6 -Author: Christian Persch -Date: Sun Jun 6 17:55:48 2004 +0000 - - Simplified mozilla version checks with new MOZILLA_IS_VERSION4 macro. - - 2004-06-06 Christian Persch - - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/mozilla-version.h: - - Simplified mozilla version checks with new MOZILLA_IS_VERSION4 macro. - - ChangeLog | 7 +++++++ - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 6 +++--- - embed/mozilla/mozilla-version.h | 4 ++++ - 3 files changed, 14 insertions(+), 3 deletions(-) - -commit b53dc99d7e27881a721b22904526abcb43d001ec -Author: Nikos Charonitakis -Date: Sun Jun 6 14:10:54 2004 +0000 - - Updated Greek translation. - - po/ChangeLog | 4 + - po/el.po | 598 +++++++++++++++-------------------------------------------- - 2 files changed, 156 insertions(+), 446 deletions(-) - -commit 5ed4bcf0eedcd583913ecfa4b6d7dd0c90e6a97f -Author: Updated ja.po. T.Aihana -Date: Sun Jun 6 07:43:16 2004 +0000 - - 2004-06-06 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 420 +++++++++++++++++------------------------------------------ - 2 files changed, 125 insertions(+), 299 deletions(-) - -commit 3874ec341919dbe6f655f7016930cffdba65cb5e -Author: Christian Persch -Date: Sat Jun 5 17:04:11 2004 +0000 - - Add help/es/Makefile to AC_OUTPUT. - - 2004-06-05 Christian Persch - - * configure.in: - - Add help/es/Makefile to AC_OUTPUT. - - ChangeLog | 6 ++++++ - configure.in | 1 + - 2 files changed, 7 insertions(+) - -commit af3a89f78a569e6b8dfbb7a9d94eda083eae1182 -Author: Francisco Javier F. Serrador -Date: Sat Jun 5 14:22:00 2004 +0000 - - Added Spanish docs - - 2004-06-05 Francisco Javier F. Serrador - - * epiphany.xml: Added Spanish docs - - ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 2183f548c3bdca311f21ee5f997e3833ece13d9b -Author: Francisco Javier F. Serrador -Date: Sat Jun 5 14:18:51 2004 +0000 - - Added Spansih docs - - 2004-06-05 Francisco Javier F. Serrador - - * epiphany.xml: Added Spansih docs - - help/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 53ebe29d34f78cbd13c2712f222db6a0e7311b89 -Author: Francisco Javier F. Serrador -Date: Sat Jun 5 14:17:46 2004 +0000 - - Spanish figures - - 2004-06-05 Francisco Javier F. Serrador - - * epiphany.xml: Spanish figures - - .../ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 2460 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 1307 bytes - help/es/figures/ephy-history-window-screenshot.png | Bin 0 -> 68331 bytes - help/es/figures/ephy-screenshot.png | Bin 0 -> 200737 bytes - 4 files changed, 0 insertions(+), 0 deletions(-) - -commit e2fabb377fd98100c49ed795b610727122116b86 -Author: Laurent Dhima -Date: Sat Jun 5 14:06:59 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 4cad085b84d8a8a3eb2da25012c9aebb4ac3187b -Author: Laurent Dhima -Date: Sat Jun 5 14:05:33 2004 +0000 - - Updated - - po/sq.po | 204 ++++++++++++++++++++++++++++++--------------------------------- - 1 file changed, 98 insertions(+), 106 deletions(-) - -commit c158e97a8506134e9f0fa4cab461c091efbc450b -Author: Francisco Javier F. Serrador -Date: Sat Jun 5 13:44:06 2004 +0000 - - Spanish manual translation (finished) - - 2004-06-05 Francisco Javier F. Serrador - - * epiphany.xml: Spanish manual translation (finished) - - help/es/epiphany.xml | 889 ++++++++++++++++++++++++++++----------------------- - 1 file changed, 481 insertions(+), 408 deletions(-) - -commit 6c6965aa167478f8a035da162bc3f2049904dddd -Author: Funda Wang -Date: Sat Jun 5 04:21:15 2004 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 + - po/zh_CN.po | 420 +++++++++++++++++------------------------------------------ - 2 files changed, 125 insertions(+), 299 deletions(-) - -commit 7b5d8f07e4e65bc456eedfee59d31827627497b7 -Author: Christian Persch -Date: Fri Jun 4 18:17:13 2004 +0000 - - Fix bug reporting address - - README | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit b774b547788b74884b9eb690c548a6016e714023 -Author: Marco Pesenti Gritti -Date: Thu Jun 3 18:51:32 2004 +0000 - - merge mozilla-embed-strings branch - - ChangeLog | 41 ++++ - configure.in | 96 ++++++--- - embed/ephy-embed.c | 25 ++- - embed/ephy-embed.h | 8 +- - embed/mozilla/ContentHandler.cpp | 71 +++---- - embed/mozilla/ContentHandler.h | 25 +-- - embed/mozilla/EphyAboutRedirector.cpp | 9 +- - embed/mozilla/EphyBrowser.cpp | 276 +++++++++++-------------- - embed/mozilla/EphyBrowser.h | 14 +- - embed/mozilla/EphyContentPolicy.cpp | 24 +-- - embed/mozilla/EphyHeaderSniffer.cpp | 48 ++--- - embed/mozilla/EphyHeaderSniffer.h | 9 +- - embed/mozilla/EphySingle.cpp | 19 +- - embed/mozilla/EphyUtils.cpp | 59 ++++++ - embed/mozilla/EphyUtils.h | 35 ++++ - embed/mozilla/EventContext.cpp | 325 +++++++++++++----------------- - embed/mozilla/EventContext.h | 33 ++- - embed/mozilla/FilePicker.cpp | 125 ++++++------ - embed/mozilla/GlobalHistory.cpp | 121 +++++------ - embed/mozilla/GlobalHistory.h | 14 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 24 ++- - embed/mozilla/GtkNSSDialogs.cpp | 127 +++++++----- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 22 +- - embed/mozilla/Makefile.am | 18 +- - embed/mozilla/MozDownload.cpp | 120 +++++------ - embed/mozilla/MozDownload.h | 18 +- - embed/mozilla/MozRegisterComponents.cpp | 12 +- - embed/mozilla/MozillaPrivate.cpp | 50 +++-- - embed/mozilla/mozilla-download.cpp | 4 - - embed/mozilla/mozilla-embed-persist.cpp | 41 ++-- - embed/mozilla/mozilla-embed-single.cpp | 58 +++--- - embed/mozilla/mozilla-embed.cpp | 167 ++++++++------- - embed/mozilla/mozilla-version.h | 53 +++++ - src/ephy-tab.c | 9 +- - src/ephy-window.c | 2 +- - 35 files changed, 1146 insertions(+), 956 deletions(-) - -commit b699b40d663955560655271f7645ae277e6076c8 -Author: Ole Laursen -Date: Wed Jun 2 19:44:22 2004 +0000 - - Fixed some strings in the Danish translation. - - 2004-06-02 Ole Laursen - - * da.po: Fixed some strings in the Danish translation. - - po/ChangeLog | 4 +++ - po/da.po | 109 +++++++++++++++-------------------------------------------- - 2 files changed, 31 insertions(+), 82 deletions(-) - -commit d877b95ce51e828ea503b815909610522c32def1 -Author: Christian Persch -Date: Wed Jun 2 18:36:17 2004 +0000 - - Move the "Exit Fullscreen" popup to the right in RTL locale. Fixes bug - - 2004-06-02 Christian Persch - - * src/ephy-window.c: (update_exit_fullscreen_popup_position): - - Move the "Exit Fullscreen" popup to the right in RTL locale. - Fixes bug #140828. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 21 +++++++++++++++------ - 2 files changed, 22 insertions(+), 6 deletions(-) - -commit 5b889ee42088eb4ec97677efae63897ef29e8047 -Author: Adam Hooper -Date: Wed Jun 2 02:18:55 2004 +0000 - - Commit changelog for previous change -- OOPS! - - ChangeLog | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 95d0030e6b938dc8858bd8c482723ceabbbac7e8 -Author: Adam Hooper -Date: Tue Jun 1 10:23:03 2004 +0000 - - Update from libegg - - lib/egg/egg-toolbar-editor.c | 32 +++++++++++--------------------- - 1 file changed, 11 insertions(+), 21 deletions(-) - -commit 3573507fc5e6f1e29b90573101236977d89f43aa -Author: Ole Laursen -Date: Mon May 31 14:23:39 2004 +0000 - - Changed the translation of Downloads. - - 2004-05-31 Ole Laursen - - * da.po: Changed the translation of Downloads. - - po/ChangeLog | 4 ++++ - po/da.po | 7 ++++--- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit 5066c6e829f6a340f03140a1bd4a267aba9d6002 -Author: Christian Persch -Date: Mon May 31 12:23:15 2004 +0000 - - Post-release version bump. - - 2004-05-31 Christian Persch - - * configure.in: - - Post-release version bump. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 3fb9386051e01b9091949ef0415258793a2f6355 -Author: Christian Persch -Date: Mon May 31 11:12:56 2004 +0000 - - Release 1.3.0 - - ChangeLog | 14 + - configure.in | 1 - - doc/reference/tmpl/ephy-command-manager.sgml | 16 +- - doc/reference/tmpl/ephy-embed-persist.sgml | 54 - - doc/reference/tmpl/ephy-embed.sgml | 166 +- - doc/reference/tmpl/ephy-glade.sgml | 3 - - doc/reference/tmpl/ephy-node-db.sgml | 22 +- - doc/reference/tmpl/ephy-tab.sgml | 86 +- - doc/reference/tmpl/ephy-window.sgml | 20 +- - doc/reference/tmpl/epiphany-unused.sgml | 70 + - po/am.po | 4372 ++++++++++++-------- - po/ar.po | 1326 +++--- - po/az.po | 1321 +++--- - po/be.po | 1336 +++--- - po/bg.po | 1298 +++--- - po/bn.po | 1370 ++++--- - po/ca.po | 1374 ++++--- - po/cs.po | 281 +- - po/cy.po | 1297 +++--- - po/da.po | 3 +- - po/de.po | 1313 +++--- - po/el.po | 1312 +++--- - po/en_CA.po | 205 +- - po/en_GB.po | 204 +- - po/es.po | 281 +- - po/et.po | 1723 ++++---- - po/eu.po | 724 ++-- - po/fa.po | 1503 +++---- - po/fi.po | 1313 +++--- - po/fr.po | 1313 +++--- - po/ga.po | 1638 ++++---- - po/gu.po | 667 +-- - po/hi.po | 1302 +++--- - po/hr.po | 1527 +++---- - po/hu.po | 1356 ++++--- - po/id.po | 1306 +++--- - po/is.po | 668 +-- - po/it.po | 1315 +++--- - po/ja.po | 1294 +++--- - po/ko.po | 1313 +++--- - po/li.po | 5580 ++++++++++++++++---------- - po/lt.po | 6 +- - po/mi.po | 1188 +++--- - po/mk.po | 3948 +++++++++++------- - po/mn.po | 1804 +++++---- - po/ms.po | 1315 +++--- - po/nl.po | 423 +- - po/nn.po | 1227 +++--- - po/no.po | 1313 +++--- - po/pa.po | 1509 +++---- - po/pl.po | 1296 +++--- - po/pt.po | 466 ++- - po/pt_BR.po | 1295 +++--- - po/ro.po | 1295 +++--- - po/ru.po | 1244 +++--- - po/sk.po | 1281 +++--- - po/sl.po | 4771 ++++++++++++---------- - po/sq.po | 326 +- - po/sr.po | 1312 +++--- - po/sr@Latn.po | 1377 ++++--- - po/sv.po | 1352 ++++--- - po/ta.po | 1257 +++--- - po/th.po | 211 +- - po/tk.po | 1290 +++--- - po/tr.po | 1360 ++++--- - po/uk.po | 1304 +++--- - po/vi.po | 3640 ++++++++++------- - po/wa.po | 206 +- - po/zh_CN.po | 1296 +++--- - po/zh_TW.po | 3411 ++++++++++------ - 70 files changed, 46429 insertions(+), 38581 deletions(-) - -commit 7381167c68019d04e91b2e432e92c4832ae9ea5a -Author: Christian Persch -Date: Mon May 31 09:42:35 2004 +0000 - - Updating NEWS - - NEWS | 14 -------------- - 1 file changed, 14 deletions(-) - -commit 4d620454fd9866eadd11df2541f4223e570d698c -Author: Žygimantas Beručka -Date: Mon May 31 07:24:45 2004 +0000 - - Updated Lithuanian translation. - - 2004-05-31 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 431 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 234 insertions(+), 201 deletions(-) - -commit a596d6740a1d23c2f6feec2878ab09583148f22c -Author: Francisco Javier F. Serrador -Date: Sun May 30 10:39:41 2004 +0000 - - Updated Spanish translation - - 2004-05-30 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation - - help/es/epiphany.xml | 385 +++++++++++++++++++++++++++------------------------ - 1 file changed, 207 insertions(+), 178 deletions(-) - -commit 3963398d5a34b2aae5fec19097e8b81221ba8b17 -Author: Christian Persch -Date: Sat May 29 18:54:44 2004 +0000 - - Updating NEWS - - NEWS | 2 ++ - 1 file changed, 2 insertions(+) - -commit 51a8eb8df6ef90c22427040b746d89f78bb13621 -Author: Christian Persch -Date: Sat May 29 18:53:25 2004 +0000 - - Fix reload logic not to use forced reload by default. Patch by C. J. N. - - 2004-05-29 Christian Persch - - * src/window-commands.c: (window_cmd_view_reload): - - Fix reload logic not to use forced reload by default. - Patch by C. J. N. Breame, fixes bug #143365 - - ChangeLog | 7 +++++++ - src/window-commands.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 8cfa4c54fed5e65e4597be52c68d48ae06713866 -Author: Ole Laursen -Date: Sat May 29 17:20:49 2004 +0000 - - Updated Danish translation. - - 2004-05-29 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 1317 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 673 insertions(+), 648 deletions(-) - -commit d4141df767d14474701d37525319c3dd963f38fe -Author: Francisco Javier F. Serrador -Date: Sat May 29 15:59:00 2004 +0000 - - Updated Spanish help - - 2004-05-29 Francisco Javier F. Serrador - - * epiphany.xml: Updated Spanish help - - help/es/epiphany.xml | 144 ++++++++++++++++++++++++++------------------------- - 1 file changed, 73 insertions(+), 71 deletions(-) - -commit 051df3dbb08998706a2c6a39c88700405a67e9e6 -Author: Christian Persch -Date: Sat May 29 15:15:42 2004 +0000 - - Revert varargs change, it doesn't work for LOG("Message") without - - 2004-05-29 Christian Persch - - * lib/ephy-debug.h: - - Revert varargs change, it doesn't work for LOG("Message") without - arguments. - - ChangeLog | 7 +++++++ - lib/ephy-debug.h | 11 ----------- - 2 files changed, 7 insertions(+), 11 deletions(-) - -commit f4577f97259864af3994d45270ce951bdc6dc9b2 -Author: Christian Persch -Date: Sat May 29 14:53:03 2004 +0000 - - Updating NEWS - - NEWS | 13 +++++++++---- - 1 file changed, 9 insertions(+), 4 deletions(-) - -commit f024b75b0fcbf91d0230ac47b8c44294316a13e2 -Author: Christian Persch -Date: Sat May 29 14:38:55 2004 +0000 - - Use ISO style variable argument macros. Patch by Brian Cameron, part of - - 2004-05-29 Christian Persch - - * lib/ephy-debug.h: - - Use ISO style variable argument macros. Patch by Brian Cameron, - part of bug #141319. - - ChangeLog | 8 ++++++++ - lib/ephy-debug.h | 11 +++++++++++ - 2 files changed, 19 insertions(+) - -commit b8b4901eba7cde41f0d7776f63ffac3eadf7e001 -Author: Christian Persch -Date: Sat May 29 14:36:07 2004 +0000 - - Add check for 'mkdtemp', since solaris doesn't have it. - - 2004-05-29 Christian Persch - - * configure.in: - - Add check for 'mkdtemp', since solaris doesn't have it. - - * lib/ephy-file-helpers.c: (ephy_file_tmp_dir): - - Error out if we don't have mkdtemp. - - ChangeLog | 10 ++++++++++ - configure.in | 7 +++++++ - lib/ephy-file-helpers.c | 4 ++++ - 3 files changed, 21 insertions(+) - -commit d1fb1edd57e2b64f1a8500c6fa460f194817d1d5 -Author: Christian Persch -Date: Sat May 29 14:16:34 2004 +0000 - - Don't return a value in void function, part of bug #141319. - - 2004-05-29 Christian Persch - - * lib/ephy-dialog.c: (ephy_dialog_construct): - - Don't return a value in void function, part of bug #141319. - - ChangeLog | 6 ++++++ - lib/ephy-dialog.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 94b191304a8e9b12abf805b7887ff31d4e6bbac0 -Author: Christian Persch -Date: Sat May 29 14:12:09 2004 +0000 - - Don't return a value in void function, part of bug #141319. - - 2004-05-29 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_print_preview_navigate): - - Don't return a value in void function, part of bug #141319. - - ChangeLog | 6 ++++++ - embed/ephy-embed.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b724591978307ce483849f9727d55c3fd6e7af27 -Author: Christian Persch -Date: Sat May 29 14:03:53 2004 +0000 - - Depend on glib >= 2.4.1 because of the fix for bug #112222. - - 2004-05-29 Christian Persch - - * configure.in: - - Depend on glib >= 2.4.1 because of the fix for bug #112222. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit f963fa021418ba56b35b54cf4ac286a68e812f6c -Author: Christian Persch -Date: Sat May 29 13:59:58 2004 +0000 - - Fix for mozilla API change (ported from galeon). - - 2004-05-29 Christian Persch - - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - - Fix for mozilla API change (ported from galeon). - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 16 +++++++++++++++- - 2 files changed, 21 insertions(+), 1 deletion(-) - -commit 57c1328225d838b04a778f9aa33205e3e5e2eac8 -Author: Christian Persch -Date: Sat May 29 13:58:09 2004 +0000 - - Increase mozilla snapshot level for 1.8a2/trunk. - - 2004-05-29 Christian Persch - - * configure.in: - - Increase mozilla snapshot level for 1.8a2/trunk. - - ChangeLog | 6 ++++++ - configure.in | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 017cbefa7155298ebebc4c599430a4da8dd1a9b4 -Author: Christian Persch -Date: Sat May 29 13:52:27 2004 +0000 - - Update for 1.3.0. - - 2004-05-29 Christian Persch - - * NEWS: - - Update for 1.3.0. - - ChangeLog | 12 ++++ - NEWS | 195 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 205 insertions(+), 2 deletions(-) - -commit 863f905a00849f2d50ad08c94a65d86c7c445105 -Author: Christian Rose -Date: Sat May 29 10:51:34 2004 +0000 - - Added "tk" to ALL_LINGUAS. Added Turkmen translation by Gurban Mühemmet - - 2004-05-29 Christian Rose - - * configure.in: Added "tk" to ALL_LINGUAS. - * po/tk.po: Added Turkmen translation by - Gurban Mühemmet Tewekgeli . - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/tk.po | 3494 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3504 insertions(+), 1 deletion(-) - -commit e892ebfbd2f139c0b71a2d350c89b0d26494278e -Author: Christian Persch -Date: Fri May 28 20:21:04 2004 +0000 - - Include "config.h". - - 2004-05-28 Christian Persch - - * embed/mozilla/MozDownload.h: - - Include "config.h". - - embed/mozilla/MozDownload.h | 4 ++++ - 1 file changed, 4 insertions(+) - -commit c1adc52d7b8843b21fbf2a11331daa5e10f1d2eb -Author: Christian Persch -Date: Fri May 28 20:19:36 2004 +0000 - - Always include "config.h" ! - - 2004-05-28 Christian Persch - - * embed/mozilla/ContentHandler.h: - - Always include "config.h" ! - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.h | 4 ++++ - 2 files changed, 10 insertions(+) - -commit da7eb495be1657f178318d5647254e9956f38110 -Author: Christian Persch -Date: Fri May 28 19:52:30 2004 +0000 - - Fix snapshot check for mozilla >= 1.7rc2 . - - 2004-05-28 Christian Persch - - * embed/mozilla/ContentHandler.h: - - Fix snapshot check for mozilla >= 1.7rc2 . - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.h | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a99e9fd9001b2bbb0f1d5d7df7fc957ae47100bf -Author: Theppitak Karoonboonyanan -Date: Tue May 25 03:42:26 2004 +0000 - - Fix some spellings in Thai translation. - - po/ChangeLog | 4 ++++ - po/th.po | 61 ++++++++++++++++++++++++++++-------------------------------- - 2 files changed, 32 insertions(+), 33 deletions(-) - -commit d82f71a93ccd69c96a98bb74390c9dc6d296315c -Author: Xan Lopez -Date: Mon May 24 21:50:34 2004 +0000 - - Remove unused field in struct - - - * embed/downloader-view.c: (update_status_icon): - - Remove unused field in struct - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - - Fix build with 1.8a2 - - ChangeLog | 11 +++++++++++ - embed/downloader-view.c | 1 - - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 3 +++ - embed/mozilla/GtkNSSDialogs.cpp | 1 + - 4 files changed, 15 insertions(+), 1 deletion(-) - -commit 869e477e70e60b06a24b2ecb05cf5688cdeae3a1 -Author: Paisa Seeluangsawat -Date: Mon May 24 03:03:29 2004 +0000 - - Added "th" (Thai) to ALL_LINGUAS. Added Thai translation by Isriya - - 2004-05-23 Paisa Seeluangsawat - - * configure.in: Added "th" (Thai) to ALL_LINGUAS. - * po/th.po: Added Thai translation by Isriya Paireepairit - . - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/th.po | 3328 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3338 insertions(+), 1 deletion(-) - -commit 52f70faa396a01d65993fde4fa51bdd64d0215a9 -Author: Alexander Shopov -Date: Sun May 23 20:58:43 2004 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - 2004-05-23 Alexander Shopov - - * bg.po: Updated Bulgarian translation - by Vladimir Petkov - Fixed a slight misspelling in ChangeLog. - - po/ChangeLog | 8 +- - po/bg.po | 554 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 283 insertions(+), 279 deletions(-) - -commit 50c7c4137707d263ce91bdcc7e416ff2565b451a -Author: Marco Pesenti Gritti -Date: Sun May 23 01:07:12 2004 +0000 - - remove Makefile.in errounously committed - - help/es/Makefile.in | 357 ---------------------------------------------------- - 1 file changed, 357 deletions(-) - -commit 455e2d1a2cc0a32276999dcd9396ceb310346755 -Author: Marco Pesenti Gritti -Date: Sun May 23 01:06:34 2004 +0000 - - Fix some headers fallouts with mozilla head - - 2004-05-23 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/MozillaPrivate.cpp: - - Fix some headers fallouts with mozilla head - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyBrowser.cpp | 1 - - embed/mozilla/EphyBrowser.h | 4 ++++ - embed/mozilla/MozillaPrivate.cpp | 5 +++++ - 4 files changed, 17 insertions(+), 1 deletion(-) - -commit 185332a657487d79f6e359385969e940526aad12 -Author: Christian Persch -Date: Sat May 22 13:25:53 2004 +0000 - - Fix compilation with moz 1.6. - - 2004-05-22 Christian Persch - - * embed/mozilla/ContentHandler.h: - - Fix compilation with moz 1.6. - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 2f3549b038f5dfab747c4aa104d2135fb1ae7f96 -Author: Crispin Flowerday -Date: Sat May 22 10:46:37 2004 +0000 - - Set the drag icon on realize, otherwise the current icon theme isn't used, - - 2004-05-22 Crispin Flowerday - - * libegg/toolbareditor/egg-toolbar-editor.c - (event_box_realize_cb), (editor_create_item): - - Set the drag icon on - realize, otherwise the current icon theme isn't used, and it falls - back to the default theme. - - ChangeLog | 9 +++++++++ - lib/egg/egg-toolbar-editor.c | 43 ++++++++++++++++++++++--------------------- - 2 files changed, 31 insertions(+), 21 deletions(-) - -commit 3295e6a3df41e3e94d01c4c62f597b9bf6a2f213 -Author: Christian Persch -Date: Sat May 22 09:16:18 2004 +0000 - - Recognise mozilla 1.8a1 and 1.8a2. - - 2004-05-22 Christian Persch - - * configure.in: - - Recognise mozilla 1.8a1 and 1.8a2. - - ChangeLog | 6 ++++++ - configure.in | 2 ++ - 2 files changed, 8 insertions(+) - -commit c47ab000bf17336ea1b862977a781c4dfd48e7a9 -Author: Christian Persch -Date: Thu May 20 22:43:09 2004 +0000 - - Elimiate indeterminate progress, fixes bugs #142303 and #142305. - - 2004-05-21 Christian Persch - - * src/ephy-statusbar.c: (ephy_statusbar_set_progress): - * src/ephy-tab.c: (ephy_tab_class_init), (build_load_percent), - (ephy_tab_net_state_cb), (ephy_tab_get_load_percent): - - Elimiate indeterminate progress, fixes bugs #142303 and #142305. - - ChangeLog | 8 ++++++++ - src/ephy-statusbar.c | 14 +++----------- - src/ephy-tab.c | 14 +++++--------- - 3 files changed, 16 insertions(+), 20 deletions(-) - -commit c62226f7741fc863ca0fc5222f631790b19f15b6 -Author: Christian Persch -Date: Thu May 20 18:07:12 2004 +0000 - - Fix stupid bug. - - 2004-05-20 Christian Persch - - * embed/ephy-history.c: (ephy_history_set_property), - (ephy_history_get_property): - - Fix stupid bug. - - ChangeLog | 7 +++++++ - embed/ephy-history.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit b5a259caecd8811a90c4eb82fee402449ec617ba -Author: Christian Persch -Date: Wed May 19 18:45:34 2004 +0000 - - Emit the "tab_removed" signal also for the window's last tab. Part of bug - - 2004-05-19 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_remove_tab): - * src/ephy-window.c: (tab_removed_cb): - - Emit the "tab_removed" signal also for the window's last tab. - Part of bug #142078. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 2 ++ - src/ephy-window.c | 7 +------ - 3 files changed, 11 insertions(+), 6 deletions(-) - -commit c26be9eaf445f04efd11ff3cb3daed38626b1b12 -Author: Christian Persch -Date: Wed May 19 18:42:22 2004 +0000 - - Open bookmark in new tab on middle-click. Fixes bug #106250. - - 2004-05-19 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (activate_cb), - (button_press_cb), (button_release_cb), (connect_proxy), - (ephy_bookmark_action_class_init): - * src/toolbar.c: (go_location_cb): - - Open bookmark in new tab on middle-click. Fixes bug #106250. - - ChangeLog | 9 ++++++++ - src/bookmarks/ephy-bookmark-action.c | 40 +++++++++++++++++++++++++++++++----- - src/toolbar.c | 38 +++++++++++++++++++++++++++++++++- - 3 files changed, 81 insertions(+), 6 deletions(-) - -commit f7d64a2da37e5d187d259fa6bb15e2a1e8e959d7 -Author: Christian Persch -Date: Wed May 19 17:52:03 2004 +0000 - - Fix typo - - embed/mozilla/EphyBrowser.cpp | 1 - - 1 file changed, 1 deletion(-) - -commit a98fdc7a0d9576d7f40159bb0d1b0edfceb88dad -Author: Christian Persch -Date: Wed May 19 17:34:53 2004 +0000 - - Backported fixes from gtk+ cvs head. - - 2004-05-19 Christian Persch - - * lib/widgets/ephy-cell-renderer-progress.c: - (ephy_cell_renderer_progress_init), (compute_dimensions), - (ephy_cell_renderer_progress_get_size), - (ephy_cell_renderer_progress_render): - - Backported fixes from gtk+ cvs head. - - ChangeLog | 9 ++++++++ - lib/widgets/ephy-cell-renderer-progress.c | 36 ++++++++++++++++--------------- - 2 files changed, 28 insertions(+), 17 deletions(-) - -commit 9e2e03657834a112d245b3232418b9133d4f4485 -Author: Christian Persch -Date: Wed May 19 15:21:02 2004 +0000 - - Fix a MOZILLA_SNAPSHOT check for 1.7 branch. - - 2004-05-19 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Fix a MOZILLA_SNAPSHOT check for 1.7 branch. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit f63ed67f7249145512f20af3a9ff3798c6d8d129 -Author: Christian Persch -Date: Wed May 19 15:19:17 2004 +0000 - - Generate Makefile in help/es too. - - 2004-05-19 Christian Persch - - * configure.in: - - Generate Makefile in help/es too. - - ChangeLog | 6 ++++++ - configure.in | 1 + - 2 files changed, 7 insertions(+) - -commit cee5ad0a169b69938e45da69acd8696efa7b3f7f -Author: Christian Persch -Date: Wed May 19 10:33:19 2004 +0000 - - Fix capitalisation. - - 2004-05-19 Christian Persch - - * embed/print-dialog.c: (ephy_print_dialog_browse_button_cb): - * src/bookmarks/ephy-bookmarks-editor.c: - (import_dialog_response_cb): - - Fix capitalisation. - - ChangeLog | 8 ++++++++ - embed/print-dialog.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 3 files changed, 10 insertions(+), 2 deletions(-) - -commit 3ee134ac21a334be9600e88a1fe06e1a1c5d0652 -Author: Gareth Owen -Date: Tue May 18 23:54:32 2004 +0000 - - Updated British English translation - - po/ChangeLog | 4 + - po/en_GB.po | 246 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 141 insertions(+), 109 deletions(-) - -commit c0000719f8b8e0595b4bba8495d740874ffb0d43 -Author: Christian Persch -Date: Mon May 17 13:16:19 2004 +0000 - - Fix observer topic check for cookie "cleared" notification. - - 2004-05-17 Christian Persch - - * embed/mozilla/EphySingle.cpp: - - Fix observer topic check for cookie "cleared" notification. - - ChangeLog | 6 ++++++ - embed/mozilla/EphySingle.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 53fb63770e9767cfb7693ace04bbbd53982c0352 -Author: Pablo Saratxaga -Date: Mon May 17 02:39:27 2004 +0000 - - updated Walloon file - - po/ChangeLog | 6 +- - po/wa.po | 3030 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1724 insertions(+), 1312 deletions(-) - -commit 12f2db03d244574a6a80d48b7eee6e2b821df978 -Author: Francisco Javier F. Serrador -Date: Sun May 16 20:00:18 2004 +0000 - - Spanish docs updated - - 2004-05-16 Francisco Javier F. Serrador - - * Spanish docs updated - - help/es/epiphany.xml | 129 +++++++++++++++++++++++++-------------------------- - 1 file changed, 64 insertions(+), 65 deletions(-) - -commit 7e18677c220c8c1b81d5240c5658553ee1d2ae79 -Author: Christian Persch -Date: Sat May 15 18:08:38 2004 +0000 - - Fix mem leak. - - 2004-05-15 Christian Persch - - * lib/ephy-dialog.c: (set_value_from_editable), - (set_value_from_radiobuttongroup), (set_value_from_spin_button), - (set_value_from_togglebutton), (set_combo_box_from_value): - - Fix mem leak. - - ChangeLog | 8 ++++++++ - lib/ephy-dialog.c | 10 +++++++--- - 2 files changed, 15 insertions(+), 3 deletions(-) - -commit 7933945474d076b7f0b4819e0a737c0ffe6c8d45 -Author: Christian Persch -Date: Sat May 15 18:06:30 2004 +0000 - - Fix mem leaks.' - - 2004-05-15 Christian Persch - - * lib/egg/egg-toolbar-editor.c: (egg_toolbar_editor_finalize): - - Fix mem leaks.' - - ChangeLog | 6 ++++++ - lib/egg/egg-toolbar-editor.c | 3 +++ - 2 files changed, 9 insertions(+) - -commit 66c33032fe0787f5cfbbd50c6aee52d083a0c94f -Author: Christian Persch -Date: Sat May 15 18:04:56 2004 +0000 - - Fix refcount leak. - - 2004-05-15 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: - - Fix refcount leak. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 3 +++ - 2 files changed, 9 insertions(+) - -commit 68b5dd86c845d83cebd404eb5c0d2bdd3fe1e26a -Author: Christian Persch -Date: Sat May 15 16:41:19 2004 +0000 - - Shut up - - help/es/.cvsignore | 4 ++++ - 1 file changed, 4 insertions(+) - -commit d4f9632a7f0086ba17d23893a41a1fb6e7ed29ef -Author: Christian Persch -Date: Sat May 15 16:21:44 2004 +0000 - - Set mEventReceiver to nsnull in ::Destroy(), fixes a crasher. - - 2004-05-15 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Set mEventReceiver to nsnull in ::Destroy(), fixes a crasher. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 14 ++++++++------ - 2 files changed, 14 insertions(+), 6 deletions(-) - -commit ffac6f64cb8909cbec7838374c998def6e076e8a -Author: Alexander Winston -Date: Sat May 15 12:41:33 2004 +0000 - - Updated Canadian English translation. - - 2004-05-15 Alexander Winston - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 246 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 146 insertions(+), 104 deletions(-) - -commit 083d24af1dc753833521a27b7e1a5b6adb359779 -Author: Christian Persch -Date: Fri May 14 16:45:06 2004 +0000 - - *** empty log message *** - - embed/mozilla/EphyContentPolicy.cpp | 7 ------- - 1 file changed, 7 deletions(-) - -commit 8c5a1404b36c9962b4f0e8c1a5746639ac939a19 -Author: Christian Persch -Date: Fri May 14 16:43:26 2004 +0000 - - Yet another mozilla API change. - - 2004-05-14 Christian Persch - - * embed/mozilla/EphyContentPolicy.cpp: - - Yet another mozilla API change. - - ChangeLog | 6 +++ - embed/mozilla/EphyContentPolicy.cpp | 74 ++++++++++++++++++++++++++++++------- - 2 files changed, 67 insertions(+), 13 deletions(-) - -commit 1a6118c2d8524c48261bdcb2aa9eedbe39bb2173 -Author: Christian Persch -Date: Thu May 13 20:58:16 2004 +0000 - - Forgot to change action entries for last commit. - - 2004-05-13 Christian Persch - - * src/ephy-window.c: - - Forgot to change action entries for last commit. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 4 ---- - 2 files changed, 6 insertions(+), 4 deletions(-) - -commit 6996cf034f17f67281eef72533a7ff83f943777e -Author: Christian Persch -Date: Thu May 13 20:56:00 2004 +0000 - - Simplify context menu wrt. frames. Fixes bug #138442. - - 2004-05-13 Christian Persch - - * data/ui/epiphany-ui.xml: - * src/popup-commands.c: - * src/popup-commands.h: - - Simplify context menu wrt. frames. Fixes bug #138442. - - ChangeLog | 8 ++++++++ - data/ui/epiphany-ui.xml | 2 -- - src/popup-commands.c | 44 -------------------------------------------- - src/popup-commands.h | 9 --------- - 4 files changed, 8 insertions(+), 55 deletions(-) - -commit b05d498059ff15a36ecd32964e090d7970b2a826 -Author: Francisco Javier F. Serrador -Date: Thu May 13 19:04:42 2004 +0000 - - Updated Spanish translation. - - 2004-05-13 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - help/es/Makefile.am | 7 + - help/es/Makefile.in | 357 +++++++ - help/es/epiphany-es.omf | 31 + - help/es/epiphany.xml | 2518 +++++++++++++++++++++++++++++++++++++++++++++++ - help/es/legal.xml | 76 ++ - 5 files changed, 2989 insertions(+) - -commit bb56373899c592791d46117e073949733986de55 -Author: Miloslav Trmac -Date: Thu May 13 14:17:33 2004 +0000 - - Updated Czech translation. - - 2004-05-13 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++++ - po/cs.po | 22 +++++++++++++++++----- - 2 files changed, 21 insertions(+), 5 deletions(-) - -commit 1f989f68601be5b49660e735f119168128563b2d -Author: Christian Persch -Date: Wed May 12 21:05:41 2004 +0000 - - Make sure we don't add a colon at the end of LD_LIBRARY_PATH, which will - - 2004-05-12 Christian Persch - - * src/epiphany.in: - - Make sure we don't add a colon at the end of LD_LIBRARY_PATH, - which will make LD_LIBRARY_PATH include the current directory. - Should fix bug #141576. - - ChangeLog | 8 ++++++++ - src/epiphany.in | 6 +++++- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit 7ccf7782479a1cbdfb8cec2353edf1bb56e2bab1 -Author: Francisco Javier F. Serrador -Date: Wed May 12 18:13:07 2004 +0000 - - Updated Spanish translation. - - 2004-05-12 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 185 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 114 insertions(+), 75 deletions(-) - -commit 11df853f97360d46a6de5716347906c2d6bf697a -Author: Christian Persch -Date: Wed May 12 16:45:36 2004 +0000 - - Backport changed from the new gtkcellrendererprogress which was based on - - 2004-05-12 Christian Persch - - * lib/widgets/ephy-cell-renderer-progress.c: - (ephy_cell_renderer_progress_class_init), - (ephy_cell_renderer_progress_init), - (ephy_cell_renderer_progress_new), - (ephy_cell_renderer_progress_finalize), - (ephy_cell_renderer_progress_get_property), - (ephy_cell_renderer_progress_set_property), - (ephy_cell_renderer_progress_set_value), - (ephy_cell_renderer_progress_set_text), (compute_dimensions), - (ephy_cell_renderer_progress_get_size), - (ephy_cell_renderer_progress_render): - * lib/widgets/ephy-cell-renderer-progress.h: - - Backport changed from the new gtkcellrendererprogress which - was based on ephy's, to support RTL. - - ChangeLog | 18 + - lib/widgets/ephy-cell-renderer-progress.c | 526 +++++++++++++++++------------- - lib/widgets/ephy-cell-renderer-progress.h | 42 ++- - 3 files changed, 346 insertions(+), 240 deletions(-) - -commit d3e3390532f76d1b9cd44a29dfcecf68ab957599 -Author: Christian Persch -Date: Tue May 11 19:48:21 2004 +0000 - - Fix compilation with gcc 2.95. - - 2004-05-11 Christian Persch - - * lib/ephy-dialog.c: (set_combo_box_from_value): - - Fix compilation with gcc 2.95. - - ChangeLog | 6 ++++++ - lib/ephy-dialog.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit b11322d5c6d8f4dce70b4a7da5e06defb084e7f7 -Author: Christian Persch -Date: Tue May 11 13:59:05 2004 +0000 - - One more NS_ENSURE_TRUE. - - 2004-05-11 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - One more NS_ENSURE_TRUE. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 9ce26a3cbd72d907209829bb2d128b163cf0667d -Author: Laurent Dhima -Date: Tue May 11 13:40:11 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit dd7809a11ee649945ad5d6fff860415d523b147a -Author: Laurent Dhima -Date: Tue May 11 13:37:45 2004 +0000 - - Updated - - po/sq.po | 1132 +++++++++++++++++++++++++++----------------------------------- - 1 file changed, 491 insertions(+), 641 deletions(-) - -commit 7a01d6c1b8558774205682a7fb5fe19e0950383c -Author: Miloslav Trmac -Date: Tue May 11 11:14:51 2004 +0000 - - Updated Czech translation. - - 2004-05-11 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 147 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 85 insertions(+), 66 deletions(-) - -commit 1f56914e481ce406dfed5f7deb551f186ad1bfc2 -Author: Christian Persch -Date: Tue May 11 00:22:23 2004 +0000 - - Changed back to NS_ENSURE_TRUE as per discussion in bug #142184. - - 2004-05-11 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Changed back to NS_ENSURE_TRUE as per discussion in bug #142184. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 46 +++++++++++++++++++++---------------------- - 2 files changed, 29 insertions(+), 23 deletions(-) - -commit 8263e6a6a26cd47d5f1e45888a46529661520738 -Author: Christian Persch -Date: Mon May 10 22:11:25 2004 +0000 - - Remove unused variable. - - 2004-05-11 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - - Remove unused variable. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 1e3f9396348313d869e2c21d4af9edd19c80fc53 -Author: Christian Persch -Date: Mon May 10 22:04:27 2004 +0000 - - Destroy the EphyBrowser in destroy handler, but delete it only on - - 2004-05-11 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/mozilla-embed.cpp: - - Destroy the EphyBrowser in destroy handler, but delete it only on - finalize. Make public EphyBrowser methods safe for calling after - Destroy. Part of bug #142184. - - ChangeLog | 9 ++++++ - embed/mozilla/EphyBrowser.cpp | 57 +++++++++++++++++++++-------------- - embed/mozilla/mozilla-embed.cpp | 66 +++++++++++++++++++++++++++-------------- - 3 files changed, 87 insertions(+), 45 deletions(-) - -commit 6369e4883e19a85d144b066ec9c4e01330613ba4 -Author: Christian Persch -Date: Mon May 10 20:45:23 2004 +0000 - - Statusbar re-design: Move lock icon to left; hide progress bar when no - - 2004-05-10 Christian Persch - - * src/ephy-statusbar.c: (create_statusbar_security_icon), - (create_statusbar_progress), (sync_shadow_type), - (ephy_statusbar_init), (ephy_statusbar_set_progress), - (ephy_statusbar_add_widget): - * src/ephy-tab.c: (ephy_tab_net_state_cb): - - Statusbar re-design: Move lock icon to left; hide progress bar - when no activity. Part of bug #137845. - - ChangeLog | 11 ++++++++ - src/ephy-statusbar.c | 74 +++++++++++++++++++++++++++++++++++++++++++++------- - src/ephy-tab.c | 4 +-- - 3 files changed, 77 insertions(+), 12 deletions(-) - -commit 800597c1683b3cb290a21cc66533a8cc6cf12618 -Author: Christian Persch -Date: Mon May 10 12:15:26 2004 +0000 - - Shut up - - help/eu/.cvsignore | 2 ++ - 1 file changed, 2 insertions(+) - -commit 6e44e38d9cd4c0e80000baa05e2d85219632a04a -Author: Christian Persch -Date: Sun May 9 11:33:02 2004 +0000 - - Fix accelerator for OpenImage action. - - 2004-05-09 Christian Persch - - * src/ephy-window.c: - - Fix accelerator for OpenImage action. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit beed1eca10b1f01229ab0a663edaee8b4051949f -Author: Christian Persch -Date: Sat May 8 21:30:05 2004 +0000 - - Added ephy-file-chooser.c. - - 2004-05-08 Christian Persch - - * POTFILES.in: Added ephy-file-chooser.c. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit cc631d9d37e802fec0b8ac245d037a12fc002685 -Author: Christian Persch -Date: Sat May 8 20:13:13 2004 +0000 - - Jump to new tabs created from command lines; fixes bug #141168. - - 2004-05-08 Christian Persch - - * src/ephy-automation.c: (impl_ephy_automation_loadurl): - - Jump to new tabs created from command lines; fixes bug #141168. - - ChangeLog | 8 +++++++- - src/ephy-automation.c | 6 +++--- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit b3fed7cc16e2f03970776e0f874e94c112f4b240 -Author: Christian Persch -Date: Sat May 8 20:11:17 2004 +0000 - - Add convenience functions for creating a filter with a bunch of mime types - - 2004-05-08 Christian Persch - * lib/ephy-file-chooser.c: (ephy_file_chooser_add_pattern_filter), - (ephy_file_chooser_add_mime_filter), (ephy_file_chooser_new): - * lib/ephy-file-chooser.h: - - Add convenience functions for creating a filter with a bunch of mime - types or patterns and add it to a file chooser. Those should really - be in gtk+; see bug #142142. - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/print-dialog.c: (ephy_print_dialog_browse_button_cb): - * src/bookmarks/ephy-bookmarks-editor.c: - (import_dialog_response_cb): - * src/prefs-dialog.c: (prefs_download_path_button_clicked_cb): - * src/window-commands.c: (window_cmd_file_open): - - Add some filters to the file chooser dialogues. - - ChangeLog | 20 +++++++ - embed/mozilla/ContentHandler.cpp | 3 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/FilePicker.cpp | 95 +++++++++-------------------- - embed/print-dialog.c | 10 +++- - lib/ephy-file-chooser.c | 109 +++++++++++++++++++++++++++++++++- - lib/ephy-file-chooser.h | 26 +++++++- - src/bookmarks/ephy-bookmarks-editor.c | 25 +++++++- - src/prefs-dialog.c | 4 +- - src/window-commands.c | 3 +- - 10 files changed, 217 insertions(+), 80 deletions(-) - -commit 9e4d594ee6ccc51bf5dca17b8f790d7fa1a917c2 -Author: Christian Persch -Date: Sat May 8 13:34:55 2004 +0000 - - Forward nsIAuthPrompt interface to the single sign-on prompt - - 2004-05-08 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - - Forward nsIAuthPrompt interface to the single sign-on prompt - - ChangeLog | 8 +++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 42 ++++++++----------------------------- - embed/mozilla/EphyHeaderSniffer.h | 4 ++-- - 3 files changed, 19 insertions(+), 35 deletions(-) - -commit a749eeb5995c534f68a2c38009ca4f325fef2a7c -Author: Iñaki Larrañaga -Date: Fri May 7 14:57:35 2004 +0000 - - corrected . - - 2004-05-07 Iñaki Larrañaga - - * epiphany-eu.omf: corrected . - - help/eu/epiphany-eu.omf | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0f9bc9a587e8d257486b6267d300da7556301ac4 -Author: Christian Persch -Date: Fri May 7 14:37:25 2004 +0000 - - Adjust MOZILLA_SNAPSHOT checks for changed snapshot levels. - - 2004-05-07 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/FilePicker.cpp: - - Adjust MOZILLA_SNAPSHOT checks for changed snapshot levels. - - ChangeLog | 8 ++++++++ - embed/mozilla/ContentHandler.cpp | 16 ++++++++-------- - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/FilePicker.cpp | 36 ++++++++++++++++++------------------ - 4 files changed, 35 insertions(+), 27 deletions(-) - -commit 0029fb2a10cd38442939454e52b3b86552458909 -Author: Christian Persch -Date: Fri May 7 12:47:13 2004 +0000 - - Increase snapshot level for mozilla >= 1.7rc2 and 1.8a/trunk. - - 2004-05-07 Christian Persch - - * configure.in: - - Increase snapshot level for mozilla >= 1.7rc2 and 1.8a/trunk. - - ChangeLog | 6 ++++++ - configure.in | 9 +++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit b37db7ccad64ddcc0f4a80ab8e12b9f0c1359336 -Author: Dmitry Mastrukov -Date: Fri May 7 04:53:48 2004 +0000 - - ru.po: Updated Russian translation from Russian team . - - po/ChangeLog | 5 + - po/ru.po | 428 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 229 insertions(+), 204 deletions(-) - -commit 48004a534a4d02c25962233b4e275530f4b8b15a -Author: Christian Persch -Date: Thu May 6 13:29:20 2004 +0000 - - Check for nsIPassword.h - - 2004-05-06 Christian Persch - - * configure.in: - - Check for nsIPassword.h - - * embed/mozilla/mozilla-embed-single.cpp: - - Allow compilation without nsIPassword (mozilla wallet extension). - - ChangeLog | 10 ++++++++++ - configure.in | 4 ++++ - embed/mozilla/mozilla-embed-single.cpp | 15 ++++++++++----- - 3 files changed, 24 insertions(+), 5 deletions(-) - -commit 7cb015d4ab2e9eea7c08f2a028df0dfcb9765a2d -Author: Christian Persch -Date: Thu May 6 13:06:09 2004 +0000 - - Adapt to mozilla API change. - - 2004-05-06 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Adapt to mozilla API change. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 06ec023278ef9420e75f3250b5d252ad722f444b -Author: Christian Persch -Date: Thu May 6 11:29:30 2004 +0000 - - Recognise 1.7rc* too. - - 2004-05-06 Christian Persch - - * configure.in: - - Recognise 1.7rc* too. - - ChangeLog | 6 ++++++ - configure.in | 2 ++ - 2 files changed, 8 insertions(+) - -commit 5ca20f94786154490c64140b150224ae2ca0010b -Author: Dmitry Mastrukov -Date: Wed May 5 03:01:27 2004 +0000 - - ru.po: Updated Russian translation from Russian team . - - po/ChangeLog | 5 ++++ - po/ru.po | 90 +++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 60 insertions(+), 35 deletions(-) - -commit 1d2cd3266fe1fd10f40005f6d6266efa5b4932a1 -Author: Francisco Javier F. Serrador -Date: Tue May 4 18:42:21 2004 +0000 - - Updated Spanish translation. - - 2004-05-04 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 1233 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 619 insertions(+), 618 deletions(-) - -commit 667078e80cc4ad8b09276b9140986876f2d9caaa -Author: Reinout van Schouwen -Date: Mon May 3 23:10:30 2004 +0000 - - Updated Dutch translation. - - 2004-05-04 Reinout van Schouwen - * nl.po: Updated Dutch translation. - - po/nl.po | 199 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 107 insertions(+), 92 deletions(-) - -commit 712581b3a006dbe65d2a5c6571960c82497fb4f2 -Author: Christian Persch -Date: Mon May 3 19:04:42 2004 +0000 - - Whenever we have one, pass the cache key to the persist object. That way - - 2004-05-03 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: - - Whenever we have one, pass the cache key to the persist object. - That way we don't re-fetch the page on save. Fixes bug #141652. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-persist.cpp | 11 ++++++++--- - 2 files changed, 15 insertions(+), 3 deletions(-) - -commit 85a16225477518004481d8ae8cb98b6d1b216c84 -Author: Christian Persch -Date: Mon May 3 13:18:49 2004 +0000 - - Fix a mem leak; thanks to Crispin for spotting it. - - 2004-05-03 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: - - Fix a mem leak; thanks to Crispin for spotting it. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 5f0d9e4bb14fe9af71b17a0750809b04c6497cee -Author: Patanjali Somayaji -Date: Mon May 3 13:14:03 2004 +0000 - - title added back to dialog - see notes on bug #133152 - - 2004-05-03 Patanjali Somayaji - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): - - title added back to dialog - see notes on bug #133152 - - ChangeLog | 6 ++++++ - lib/ephy-gui.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit fe46d2249d597c1ea5eb8fead8d15e4bd5ede72a -Author: Christian Persch -Date: Mon May 3 13:05:18 2004 +0000 - - Remove unused variable - - embed/mozilla/mozilla-embed-persist.cpp | 3 --- - 1 file changed, 3 deletions(-) - -commit 94fcffaa3303e30251ce07b7a9129a8dd91fecd2 -Author: Patanjali Somayaji -Date: Mon May 3 12:54:42 2004 +0000 - - More HIGifying of the overwrite confirmation dialog - - title removed from - - 2004-05-03 Patanjali Somayaji - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): - - More HIGifying of the overwrite confirmation dialog - - - title removed from dialog - - dialog removed from window list - - ChangeLog | 8 ++++++++ - lib/ephy-gui.c | 3 ++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 7091b0760a43881a451adc5195bf1bc03ae70163 -Author: Piers Cornwell -Date: Sun May 2 19:31:30 2004 +0000 - - Make Escape cancel overwrite dialog. - - 2004-05-02 Piers Cornwell - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): - - Make Escape cancel overwrite dialog. - - ChangeLog | 6 ++++++ - lib/ephy-gui.c | 36 ++++++++++++++++-------------------- - 2 files changed, 22 insertions(+), 20 deletions(-) - -commit 7093f6ad148d62a9ddc77f8080cf9822d5d24f1f -Author: Christian Persch -Date: Sat May 1 20:47:00 2004 +0000 - - Clean up encoding handling. - - 2004-05-01 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_get_encoding), - (ephy_embed_has_automatic_encoding): - * embed/ephy-embed.h: - * embed/ephy-encodings.c: - * embed/ephy-encodings.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-encoding-dialog.c: (sync_embed_cb), (activate_choice): - * src/ephy-encoding-menu.c: (update_encoding_menu_cb), - (encoding_activate_cb): - - Clean up encoding handling. - - ChangeLog | 17 ++++++ - embed/ephy-embed.c | 23 +++++-- - embed/ephy-embed.h | 9 ++- - embed/ephy-encodings.c | 9 --- - embed/ephy-encodings.h | 2 - - embed/mozilla/EphyBrowser.cpp | 102 ++++++++------------------------ - embed/mozilla/EphyBrowser.h | 4 +- - embed/mozilla/MozRegisterComponents.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 46 ++++++++++---- - src/ephy-encoding-dialog.c | 33 +++-------- - src/ephy-encoding-menu.c | 33 ++--------- - 11 files changed, 120 insertions(+), 160 deletions(-) - -commit 8493f7c5d64b577b3f6b8de91e5bb6c82a8b96ae -Author: Piers Cornwell -Date: Sat May 1 18:19:48 2004 +0000 - - Minor updates to match UI. - - 2004-05-01 Piers Cornwell - - * help/C/epiphany.xml: - - Minor updates to match UI. - - ChangeLog | 6 +++ - help/C/epiphany.xml | 116 ++++++++++++++++++++++++++++------------------------ - 2 files changed, 69 insertions(+), 53 deletions(-) - -commit 6fb6efa2850bda26532bd1318648fdf61436a804 -Author: Christian Persch -Date: Sat May 1 16:07:34 2004 +0000 - - Make the statusbar's GtkTooltips publicly accessibly. - - 2004-05-01 Christian Persch - - * src/ephy-statusbar.c: (ephy_statusbar_init), - (ephy_statusbar_finalize), (ephy_statusbar_set_security_state): - * src/ephy-statusbar.h: - - Make the statusbar's GtkTooltips publicly accessibly. - - ChangeLog | 8 ++++++++ - src/ephy-statusbar.c | 12 +++++------- - src/ephy-statusbar.h | 2 ++ - 3 files changed, 15 insertions(+), 7 deletions(-) - -commit 72e67cfe0d23352fe6864b48ddc5a648f51ee80a -Author: Miloslav Trmac -Date: Fri Apr 30 15:07:17 2004 +0000 - - Updated Czech translation. - - 2004-04-30 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++ - po/cs.po | 200 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 106 insertions(+), 98 deletions(-) - -commit 7559338c48560af5b8f2872d04cec861a3253547 -Author: Gareth Owen -Date: Fri Apr 30 12:12:49 2004 +0000 - - Updated British English translation - - po/ChangeLog | 4 ++ - po/en_GB.po | 224 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 124 insertions(+), 104 deletions(-) - -commit 27e82be02ab084c931677ae17e54579155d8235b -Author: Piers Cornwell -Date: Thu Apr 29 23:11:20 2004 +0000 - - More HIG love for overwrite confirmation. Partial fix for bug #133152. - - 2004-04-30 Piers Cornwell - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): - - More HIG love for overwrite confirmation. Partial fix for bug #133152. - - ChangeLog | 6 ++++++ - lib/ephy-gui.c | 8 +++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit 37b6cdee54a229d78f9c955ddd8e5c395ef32155 -Author: Marco Pesenti Gritti -Date: Thu Apr 29 22:42:52 2004 +0000 - - fix build bustage - - embed/mozilla/EphyHeaderSniffer.cpp | 4 ++++ - embed/mozilla/FilePicker.cpp | 4 ++++ - embed/mozilla/MozDownload.cpp | 10 ++++++++++ - 3 files changed, 18 insertions(+) - -commit 43dbdc1eb7b96e4672d0d3bd68f01fd65f1690b7 -Author: Marco Pesenti Gritti -Date: Thu Apr 29 22:41:05 2004 +0000 - - fix build bustage - - embed/mozilla/FilePicker.cpp | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -commit d6b013e758b63f5493e6986b86bc29d0b62c8d94 -Author: Marco Pesenti Gritti -Date: Thu Apr 29 22:28:04 2004 +0000 - - *** empty log message *** - - embed/mozilla/FilePicker.cpp | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 866493fd28c79cac4c207fd8af6058781db8f012 -Author: Adam Weinberger -Date: Thu Apr 29 19:47:18 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++ - po/en_CA.po | 218 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 116 insertions(+), 106 deletions(-) - -commit 834c8272bf2427a49310ec8382c1b4aa92b6484c -Author: Marco Pesenti Gritti -Date: Thu Apr 29 19:22:07 2004 +0000 - - Complete headers defines - - 2004-04-29 Marco Pesenti Gritti - - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/MozillaPrivate.h: - * embed/mozilla/mozilla-embed.cpp: - - Complete headers defines - - ChangeLog | 10 ++++++++ - embed/mozilla/EventContext.cpp | 50 +++++++++++++++++++++++----------------- - embed/mozilla/EventContext.h | 27 +++++++++++----------- - embed/mozilla/MozillaPrivate.cpp | 6 ++--- - embed/mozilla/MozillaPrivate.h | 19 +++++++++++++++ - embed/mozilla/mozilla-embed.cpp | 1 - - 6 files changed, 75 insertions(+), 38 deletions(-) - -commit 1ca5301bf8fec28c653dffed125bb32cfbc3b44a -Author: Patanjali Somayaji -Date: Thu Apr 29 11:12:37 2004 +0000 - - HIGified dialog created with "Cancel" and "Overwrite" buttons. - - 2204-04-29 Patanjali Somayaji - - * lib/ephy-gui.c - ephy_gui_confirm_overwrite () changes: - - HIGified dialog created with "Cancel" and "Overwrite" - buttons. - - (Fix for bug #133152) - - * Changelog updated - - ChangeLog | 11 +++++++++++ - lib/ephy-gui.c | 49 ++++++++++++++++++++++++++++++++++++++----------- - 2 files changed, 49 insertions(+), 11 deletions(-) - -commit bb1021ebc9d180751d0c6c96aa60ae8d2a760969 -Author: Marco Pesenti Gritti -Date: Thu Apr 29 10:42:34 2004 +0000 - - *** empty log message *** - - help/eu/.cvsignore | 2 ++ - 1 file changed, 2 insertions(+) - -commit 25d492ed43d4bb06fe9e1589950d2a349917bce2 -Author: Marco Pesenti Gritti -Date: Thu Apr 29 10:41:10 2004 +0000 - - More defines work, still lack EventContext and EmbedPrivate. Use mozilla - - 2004-04-29 Marco Pesenti Gritti - - * configure.in: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/EphyAboutRedirector.cpp: - * embed/mozilla/EphyAboutRedirector.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyContentPolicy.h: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GlobalHistory.h: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.h: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.h: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - - More defines work, still lack EventContext and - EmbedPrivate. - Use mozilla like warning flags instead of those gnome - macros. Remove several unused variables. - - ChangeLog | 35 +++++++++++++++++++++++++++ - configure.in | 5 ++-- - embed/mozilla/ContentHandler.cpp | 39 ++++++++++++++---------------- - embed/mozilla/ContentHandler.h | 20 +++++++--------- - embed/mozilla/EphyAboutRedirector.cpp | 20 +++++++++------- - embed/mozilla/EphyAboutRedirector.h | 2 +- - embed/mozilla/EphyBrowser.cpp | 4 ---- - embed/mozilla/EphyContentPolicy.cpp | 3 +++ - embed/mozilla/EphyContentPolicy.h | 4 ++-- - embed/mozilla/EphyHeaderSniffer.cpp | 26 ++++++++------------ - embed/mozilla/EphyHeaderSniffer.h | 21 +++++++++------- - embed/mozilla/EphySingle.cpp | 5 +++- - embed/mozilla/EventContext.cpp | 2 -- - embed/mozilla/FilePicker.cpp | 40 ++++++++++++++----------------- - embed/mozilla/GlobalHistory.cpp | 5 +++- - embed/mozilla/GlobalHistory.h | 3 +-- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 6 ++--- - embed/mozilla/GtkNSSClientAuthDialogs.h | 3 +-- - embed/mozilla/GtkNSSDialogs.cpp | 33 ++++++++++++------------- - embed/mozilla/GtkNSSDialogs.h | 5 ++-- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 13 ++++++---- - embed/mozilla/GtkNSSKeyPairDialogs.h | 3 +-- - embed/mozilla/Makefile.am | 2 +- - embed/mozilla/MozDownload.cpp | 14 ++++------- - embed/mozilla/MozDownload.h | 29 +++++++++++----------- - embed/mozilla/mozilla-embed-persist.cpp | 8 +++++-- - embed/mozilla/mozilla-embed-single.cpp | 22 ++++++++++------- - embed/mozilla/mozilla-embed.cpp | 14 +++++++---- - 28 files changed, 212 insertions(+), 174 deletions(-) - -commit 4bc8882e3270c7bd044ae32984686343ddc89cad -Author: Marco Pesenti Gritti -Date: Thu Apr 29 08:17:13 2004 +0000 - - *** empty log message *** - - embed/mozilla/Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -commit 405384701d74b50dce194c04b68de07e888d4720 -Author: Marco Pesenti Gritti -Date: Thu Apr 29 00:26:24 2004 +0000 - - Add defines for private mozilla api usage. It will make easier to track - - 2004-04-29 Marco Pesenti Gritti - - * configure.in: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/Makefile.am: - - Add defines for private mozilla api usage. It will - make easier to track what we need to port to embed - string and what we need to be using only public api - (on the long time). - - ChangeLog | 12 +++++++++ - embed/mozilla/EphyBrowser.cpp | 62 +++++++++++++++++++------------------------ - embed/mozilla/EphyBrowser.h | 28 +++++++++---------- - 3 files changed, 53 insertions(+), 49 deletions(-) - -commit 38c96416c3982afb0a679ff718fb25a1db4e08da -Author: Piers Cornwell -Date: Wed Apr 28 22:32:37 2004 +0000 - - Adding new screenshots. - - - Adding new screenshots. - - .../figures/ephy-addressbar-smartbookmark-screenshot.png | Bin 0 -> 2460 bytes - .../ephy-bookmarkbar-smartbookmark-screenshot.png | Bin 0 -> 1545 bytes - 2 files changed, 0 insertions(+), 0 deletions(-) - -commit 61aeae84104770f7b395c64e9a466be00870c0a4 -Author: Piers Cornwell -Date: Wed Apr 28 22:18:00 2004 +0000 - - Updated Smart Bookmarks help content. Patch by poobar@nycap.rr.com. Fixes - - 2004-04-28 Piers Cornwell - - * help/C/epiphany.xml: - * help/C/figures/ephy-addressbar-smartbookmark-screenshot.png: - * help/C/figures/ephy-bookmarkbar-smartbookmark-screenshot.png: - - Updated Smart Bookmarks help content. Patch by - poobar@nycap.rr.com. Fixes bug #139616. - - ChangeLog | 9 + - help/C/epiphany.xml | 570 ++++++++++++++++++++++++++++++++++------------------ - 2 files changed, 382 insertions(+), 197 deletions(-) - -commit 8a87d87789dfda637be0836f21ed6a7f79fa6537 -Author: Piers Cornwell -Date: Wed Apr 28 18:55:16 2004 +0000 - - Update screenshots. - - 2004-04-28 Piers Cornwell - - * help/C/figures/ephy-screenshot.png: - * help/C/figures/ephy-history-window-screenshot.png: - - Update screenshots. - - ChangeLog | 7 +++++++ - help/C/figures/ephy-history-window-screenshot.png | Bin 47074 -> 96928 bytes - help/C/figures/ephy-screenshot.png | Bin 143730 -> 126138 bytes - 3 files changed, 7 insertions(+) - -commit c6d3396cecef754d6947ab4adc756fb8d2a55a4e -Author: Christian Persch -Date: Wed Apr 28 18:36:45 2004 +0000 - - Merging from gnome-2-4 - - help/uk/.cvsignore | 4 + - help/uk/Makefile.am | 7 + - help/uk/epiphany-uk.omf | 31 ++ - help/uk/epiphany.xml | 1011 +++++++++++++++++++++++++++++++++++++++++++++++ - help/uk/legal.xml | 76 ++++ - 5 files changed, 1129 insertions(+) - -commit 2ad7ec9867cdf9d3e15234ae04be48977c401e73 -Author: Marco Pesenti Gritti -Date: Wed Apr 28 18:06:17 2004 +0000 - - Ensure we have a DOM window before trying to get his url. The check was - - 2004-04-28 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/mozilla-embed.cpp: - - Ensure we have a DOM window before trying to - get his url. The check was not working anymore - because of initialization changes. - - ChangeLog | 9 +++++++++ - embed/mozilla/EphyBrowser.cpp | 2 ++ - embed/mozilla/mozilla-embed.cpp | 2 -- - 3 files changed, 11 insertions(+), 2 deletions(-) - -commit 6aa9996fcf73ed953d194c32796396c35a1d51e7 -Author: Sebastian Heinlein -Date: Wed Apr 28 17:55:20 2004 +0000 - - Correct listitems to contain para tags. Fixes bug #140918. - - 2004-04-28 Sebastian Heinlein - - * help/C/epiphany.xml: - - Correct listitems to contain para tags. Fixes bug #140918. - - ChangeLog | 6 ++++++ - help/C/epiphany.xml | 58 ++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 41 insertions(+), 23 deletions(-) - -commit c9a0623ef2f782946e5329ac9b9e5d9e58a69271 -Author: Reinout van Schouwen -Date: Tue Apr 27 16:33:14 2004 +0000 - - Updated Dutch translation - - 2004-04-27 Reinout van Schouwen - * nl.po: Updated Dutch translation - - po/nl.po | 1333 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 665 insertions(+), 668 deletions(-) - -commit 6fadfbe07379b55695a43687c6b7d935bff80133 -Author: Marco Pesenti Gritti -Date: Tue Apr 27 09:07:36 2004 +0000 - - Nice mess of defines to support 1.8a. Damn. - - 2004-04-27 Marco Pesenti Gritti - - * configure.in: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EventContext.h: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - - Nice mess of defines to support 1.8a. Damn. - - ChangeLog | 27 ++++++-- - configure.in | 9 +-- - embed/mozilla/ContentHandler.cpp | 40 +++++++++++- - embed/mozilla/ContentHandler.h | 6 +- - embed/mozilla/EphyHeaderSniffer.cpp | 1 + - embed/mozilla/EventContext.h | 1 + - embed/mozilla/FilePicker.cpp | 105 ++++++++++++++++++++++++++++---- - embed/mozilla/MozDownload.cpp | 72 +++++++++++++++++++--- - embed/mozilla/MozDownload.h | 14 +++++ - embed/mozilla/mozilla-download.cpp | 4 ++ - embed/mozilla/mozilla-embed-persist.cpp | 1 + - 11 files changed, 248 insertions(+), 32 deletions(-) - -commit e88e7018c298131a4024415d0a2dbff9b7046960 -Author: Duarte Loreto -Date: Tue Apr 27 01:01:31 2004 +0000 - - Updated Portuguese translation. - - 2004-04-27 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 1190 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 591 insertions(+), 603 deletions(-) - -commit 53d202b1bf2d0dc4305532c55c1e1fe5647df33a -Author: Christian Persch -Date: Mon Apr 26 22:48:48 2004 +0000 - - Exit print preview mode before closing a window. Fixes a crasher; Epiphany - - 2004-04-27 Christian Persch - - * src/ephy-window.c: (ephy_window_delete_event_cb): - - Exit print preview mode before closing a window. Fixes a crasher; - Epiphany equivalent of galeon bug #121298. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 13 +++++++++++++ - 2 files changed, 20 insertions(+) - -commit 9095136a9ea233cd541c30a83a6db127fc6d6235 -Author: Marco Pesenti Gritti -Date: Mon Apr 26 19:27:51 2004 +0000 - - Fix encoding of saved content; fixes bug #141050. - - 2004-04-26 Marco Pesenti Gritti - - * embed/mozilla/MozDownload.cpp: - - Fix encoding of saved content; fixes bug #141050. - - ChangeLog | 6 +++++ - embed/mozilla/MozDownload.cpp | 57 +++++++++++++++++-------------------------- - 2 files changed, 29 insertions(+), 34 deletions(-) - -commit f568519bbaa93651cec4b1deaa532d62d3bec9e0 -Author: Christian Persch -Date: Fri Apr 23 20:59:35 2004 +0000 - - Fix dependency libs not to include libbonoboui. - - 2004-04-23 Christian Persch - - * data/epiphany-1.4.pc.in: - - Fix dependency libs not to include libbonoboui. - - ChangeLog | 6 ++++++ - data/epiphany-1.4.pc.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 8520e89e7bc01188a4f96ed64ab143fd19420a22 -Author: Pablo Saratxaga -Date: Thu Apr 22 15:27:54 2004 +0000 - - Added Basque help files - - ChangeLog | 5 + - configure.in | 1 + - help/Makefile.am | 2 +- - help/eu/Makefile.am | 7 + - help/eu/epiphany-eu.omf | 32 + - help/eu/epiphany.xml | 781 +++++++++++++++++++++ - help/eu/figures/ephy-history-window-screenshot.png | Bin 0 -> 59287 bytes - help/eu/figures/ephy-screenshot.png | Bin 0 -> 145670 bytes - help/eu/legal.xml | 17 + - 9 files changed, 844 insertions(+), 1 deletion(-) - -commit 33cf0d42177ccb33bd301c00969356c270626f25 -Author: Christian Persch -Date: Thu Apr 22 11:43:40 2004 +0000 - - Document UTF-8 requirement. - - 2004-04-22 Christian Persch - - * HACKING: - - Document UTF-8 requirement. - - * lib/widgets/ephy-cell-renderer-progress.c: - * lib/widgets/ephy-cell-renderer-progress.h: - * src/bookmarks/ephy-bookmarks-menu.h: - * ChangeLog: - - Converted to UTF-8. - - ChangeLog | 21 +++++++++++++++++---- - HACKING | 6 +++++- - lib/widgets/ephy-cell-renderer-progress.c | 2 +- - lib/widgets/ephy-cell-renderer-progress.h | 2 +- - src/bookmarks/ephy-bookmarks-menu.h | 2 +- - 5 files changed, 25 insertions(+), 8 deletions(-) - -commit 3c1f7e464dac9bbfc6ef62471869626fdd624d48 -Author: Marco Pesenti Gritti -Date: Wed Apr 21 16:00:52 2004 +0000 - - *** empty log message *** - - doc/plan/plan.xml | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 51fd770e545e3c0a226716c1b64168f610ac7f28 -Author: Zygimantas Berucka -Date: Wed Apr 21 15:35:30 2004 +0000 - - Updated Lithuanian translation. - - 2004-04-21 Zygimantas Berucka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 1050 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 445 insertions(+), 609 deletions(-) - -commit ccc84ebba6698d540e9e1c8f755959f6b598c9a3 -Author: Adam Hooper -Date: Wed Apr 21 01:45:33 2004 +0000 - - Added missing documentation file - - ChangeLog | 6 ++++++ - doc/reference/tmpl/ephy-glade.sgml | 38 ++++++++++++++++++++++++++++++++++++++ - 2 files changed, 44 insertions(+) - -commit 5b8d9335abe1cb1b27eea737fa891cb3f1f4edfd -Author: Adam Hooper -Date: Tue Apr 20 03:41:10 2004 +0000 - - Documented EphyGlade - - ChangeLog | 10 ++++++++++ - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 5 +++++ - doc/reference/tmpl/ephy-embed.sgml | 1 - - lib/ephy-glade.c | 24 +++++++++++++++++++----- - 6 files changed, 35 insertions(+), 7 deletions(-) - -commit a9e1a2ff9e8ef749ea4f4e4c1f7341c9ced15c38 -Author: Miloslav Trmac -Date: Mon Apr 19 08:08:23 2004 +0000 - - Updated Czech translation. - - 2004-04-19 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 ++++ - po/cs.po | 18 +++++++++++------- - 2 files changed, 15 insertions(+), 7 deletions(-) - -commit 9d924466617397c790295a733322d8827b909ef2 -Author: Christian Persch -Date: Sun Apr 18 14:18:20 2004 +0000 - - Fix font selection combo box issues; fixes bug #138560. - - 2004-04-18 Christian Persch - - * configure.in: - * lib/ephy-dialog.c: (set_value_from_editable), - (set_value_from_combobox), (set_value_from_radiobuttongroup), - (set_value_from_spin_button), (set_value_from_togglebutton), - (set_value_from_info), (set_combo_box_from_value), - (set_pref_from_info_and_emit), (save_info), - (ephy_dialog_get_value): - * lib/ephy-dialog.h: - * src/prefs-dialog.c: (setup_font_combo): - - Fix font selection combo box issues; fixes bug #138560. - - ChangeLog | 20 +++++++ - configure.in | 3 -- - lib/ephy-dialog.c | 150 ++++++++++++++++++++++++++++++----------------------- - lib/ephy-dialog.h | 2 +- - src/prefs-dialog.c | 1 + - 5 files changed, 107 insertions(+), 69 deletions(-) - -commit c06071e23e8baaffdd45c2ead8ebb02277e4d7fd -Author: Christian Persch -Date: Sun Apr 18 10:53:42 2004 +0000 - - Merging from gnome-2-6 - - Makefile.am | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 253cdd5d4d4969687f0c739cc751fa9a96c42600 -Author: Marco Pesenti Gritti -Date: Sun Apr 18 10:35:44 2004 +0000 - - Fix chrome for new windows opened from _blank target. Fixes bug #139512. - - 2004-04-18 Marco Pesenti Gritti - - * embed/ephy-embed.c: (ephy_embed_chrome_get_type): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-window.c: (ephy_window_set_chrome), - (ephy_window_set_property), (ephy_window_class_init): - - Fix chrome for new windows opened from _blank target. - Fixes bug #139512. - - ChangeLog | 13 ++++++++++++- - embed/ephy-embed.c | 1 - - embed/ephy-embed.h | 14 +++++++++----- - embed/mozilla/mozilla-embed.cpp | 1 - - src/ephy-window.c | 43 +++++++++++++++++++++-------------------- - 5 files changed, 43 insertions(+), 29 deletions(-) - -commit 4d702bd73bf61dd1b8df432da802adcc3785fd0a -Author: Adam Hooper -Date: Sat Apr 17 17:16:32 2004 +0000 - - s/PERSIST_NO_CONVERSION/PERSIST_FLAGS_NO_CONVERSION/ - - embed/mozilla/MozDownload.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d96e9fde4aa181fb9d5923179b5d5865dd741d53 -Author: Marco Pesenti Gritti -Date: Sat Apr 17 17:12:33 2004 +0000 - - Do not uncompress when the type is not html. - - 2004-04-17 Marco Pesenti Gritti - - * embed/mozilla/MozDownload.cpp: - - Do not uncompress when the type is not html. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 3f3f9f565605efc892e0b544dc5739a20cb8cea4 -Author: Adam Weinberger -Date: Sat Apr 17 16:14:07 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 9 ++++++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit bacfe4d52721a0ececa736c3f8d3d9aa4d90b71a -Author: Marco Pesenti Gritti -Date: Fri Apr 16 22:32:22 2004 +0000 - - Resync with egg - - 2004-04-17 Marco Pesenti Gritti - - * lib/egg/Makefile.am: - * lib/egg/egg-editable-toolbar.c: (set_drag_cursor): - * lib/egg/egg-toolbar-editor.c: (set_drag_cursor): - * lib/egg/eggstatusicon.c: (egg_status_icon_init), - (egg_status_icon_button_press), (egg_status_icon_button_release): - - Resync with egg - - ChangeLog | 10 ++++++++++ - lib/egg/Makefile.am | 2 +- - lib/egg/egg-editable-toolbar.c | 2 +- - lib/egg/egg-toolbar-editor.c | 2 +- - lib/egg/eggstatusicon.c | 21 ++++++++++++++++++++- - 5 files changed, 33 insertions(+), 4 deletions(-) - -commit 89b04928135f31570ed73da6c440f6bef674e901 -Author: Gareth Owen -Date: Fri Apr 16 22:17:01 2004 +0000 - - Updated British English translation - - po/ChangeLog | 4 + - po/en_GB.po | 1183 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 588 insertions(+), 599 deletions(-) - -commit 9b222451cba37db71e02eab7755c792c64017b6a -Author: Christian Persch -Date: Fri Apr 16 17:52:23 2004 +0000 - - Added MozDownload.cpp. - - 2004-04-16 Christian Persch - - * POTFILES.in: Added MozDownload.cpp. - - 2004-04-16 Adam Weinberger - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit 541b7314842c98d5efe91c18e8891451ef0b6454 -Author: Christian Persch -Date: Fri Apr 16 17:46:28 2004 +0000 - - Fix saving of linked content. Don't create the directory; mozilla will do - - 2004-04-16 Christian Persch - - * embed/mozilla/MozDownload.cpp: (InitiateMozillaDownload): - - Fix saving of linked content. Don't create the directory; mozilla - will do it for us if necessary. Make the "Files" suffix translatable. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 19 ++++++++----------- - 2 files changed, 15 insertions(+), 11 deletions(-) - -commit af197fd551f8213bd4bfcd1dd3597806314a9b44 -Author: Adam Weinberger -Date: Fri Apr 16 15:17:29 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 + - po/en_CA.po | 1030 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 433 insertions(+), 601 deletions(-) - -commit c6051b378a0fac99cb6d4db93176c6a690effb98 -Author: Miloslav Trmac -Date: Fri Apr 16 15:05:21 2004 +0000 - - Updated Czech translation. - - 2004-04-16 Miloslav Trmac - - * cs.po: Updated Czech translation. - - po/ChangeLog | 4 + - po/cs.po | 1170 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 579 insertions(+), 595 deletions(-) - -commit 43f60d60cc3bcc8327c82ca83641fb1492f10f22 -Author: Andras Timar -Date: Wed Apr 14 22:54:43 2004 +0000 - - Updated Hungarian translation. - - 2004-04-15 Andras Timar - - * hu.po: Updated Hungarian translation. - - po/ChangeLog | 4 + - po/hu.po | 778 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 421 insertions(+), 361 deletions(-) - -commit ee977e745eb423e3ad6de9031f412021b6dd9bdf -Author: Christian Persch -Date: Wed Apr 14 12:24:25 2004 +0000 - - Add "Downloads" folder shortcut to our file chooser dialogues. - - 2004-04-14 Christian Persch - - * lib/ephy-file-chooser.c: (ephy_file_chooser_constructor), - (ephy_file_chooser_class_init): - - Add "Downloads" folder shortcut to our file chooser dialogues. - - ChangeLog | 9 +++++++++ - lib/ephy-file-chooser.c | 21 +++++++++++++++++++++ - 2 files changed, 30 insertions(+) - -commit b7e5c1f5940fac73daa92ad788f0f195ff9dedaa -Author: Christian Persch -Date: Wed Apr 14 12:21:40 2004 +0000 - - Add debug output. - - 2004-04-14 Christian Persch - - * src/ephy-tab.c: (ephy_tab_new_window_cb), - (ephy_tab_visibility_cb), (ephy_tab_destroy_brsr_cb): - - Add debug output. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 9 +++++++++ - 2 files changed, 16 insertions(+) - -commit f2738e3b37f0b84947059c310e5dc9e99dd3de12 -Author: Christian Persch -Date: Tue Apr 13 20:39:28 2004 +0000 - - 2004-04-09 Christian Persch - - 2004-04-13 Christian Persch - - * src/bookmarks/ephy-bookmarks-menu.c: (add_bookmarks_menu), - (ephy_bookmarks_menu_rebuild): - * src/ephy-encoding-menu.c: (add_action): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_rebuild): - * src/ephy-tabs-menu.c: (tab_added_cb): - - 2004-04-09 Christian Persch - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-menu.c | 23 ++++++++++++++++------- - src/ephy-encoding-menu.c | 3 ++- - src/ephy-favorites-menu.c | 8 ++++++-- - src/ephy-tabs-menu.c | 6 ++++++ - 5 files changed, 38 insertions(+), 10 deletions(-) - -commit 3c6234e1c9e2e91a2ffcdb643ba389c3bc123d1a -Author: Christian Persch -Date: Fri Apr 9 21:38:37 2004 +0000 - - Don't quit the filechooser when selecting "No" from the confirm- overwrite - - 2004-04-09 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/FilePicker.cpp: - - Don't quit the filechooser when selecting "No" from the confirm- - overwrite dialoge. Fixes bug #139400. - - * lib/ephy-gui.c: (ephy_gui_confirm_overwrite_file): - - Convert the filename to UTF-8 before showing it in the confirm - dialogue. - - ChangeLog | 13 +++++++++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 20 ++++++++++---------- - embed/mozilla/FilePicker.cpp | 31 +++++++++++++++---------------- - lib/ephy-gui.c | 10 ++++++++-- - 4 files changed, 46 insertions(+), 28 deletions(-) - -commit 90bcca74d19e1ad7d7254dabf57350f4fe7a93f7 -Author: Piers Cornwell -Date: Fri Apr 9 21:12:49 2004 +0000 - - Add Ctrl+S as an alternate accel for Save As. Fixes bug #139415. - - 2004-04-09 Piers Cornwell - - * src/ephy-window.c: - * data/ui/epiphany-ui.xml: - - Add Ctrl+S as an alternate accel for Save As. - Fixes bug #139415. - - ChangeLog | 8 ++++++++ - data/ui/epiphany-ui.xml | 1 + - src/ephy-window.c | 3 +++ - 3 files changed, 12 insertions(+) - -commit 0def815524548951faa2fdff0c2ea914b72da6d3 -Author: Christian Persch -Date: Fri Apr 9 21:08:02 2004 +0000 - - Sort the actions in the location entry autocompletion dropdown. Fixes bug - - 2004-04-09 Christian Persch - - * src/ephy-location-action.c: (compare_actions), - (init_actions_list): - - Sort the actions in the location entry autocompletion dropdown. - Fixes bug #139575. - - ChangeLog | 8 ++++++++ - src/ephy-location-action.c | 39 ++++++++++++++++++++++++++++++++++++++- - 2 files changed, 46 insertions(+), 1 deletion(-) - -commit 19b0d73f92fd47c44c140869dcc8d252869b9c02 -Author: Adam Hooper -Date: Fri Apr 9 16:59:36 2004 +0000 - - Change initial refcound of EphyNode to 1, not 0 - - ChangeLog | 10 ++++++++++ - embed/ephy-encodings.c | 4 ---- - embed/ephy-favicon-cache.c | 1 - - embed/ephy-history.c | 2 -- - lib/ephy-node.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 5 ----- - 6 files changed, 11 insertions(+), 13 deletions(-) - -commit 6e39ba4a5df4a9102bd97d42ab29f4204aeeb43d -Author: Guntupalli Karunakar -Date: Fri Apr 9 14:49:17 2004 +0000 - - added gujarati translation - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/gu.po | 3812 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3822 insertions(+), 1 deletion(-) - -commit 00a81ad23e5d9ef6e0929d5fa040b08a0f1a8ae1 -Author: Christian Persch -Date: Thu Apr 8 20:01:59 2004 +0000 - - Fix ChangeLog - - ChangeLog | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 66c69ce48612ec4f27404d0db370ecc9bceb6f04 -Author: Piers Cornwell -Date: Thu Apr 8 17:03:12 2004 +0000 - - Make warning message selectable. - - 2004-04-08 Piers Cornwell - - * embed/mozilla/ContentHandler.cpp: - - Make warning message selectable. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 1 + - 2 files changed, 7 insertions(+) - -commit 96644ef5c68b652b59c90caf246645d70a75fc3b -Author: Adam Hooper -Date: Wed Apr 7 20:14:20 2004 +0000 - - Added forgotten EphyNodeDb documentation - - ChangeLog | 6 ++ - doc/reference/tmpl/ephy-node-db.sgml | 131 +++++++++++++++++++++++++++++++++++ - 2 files changed, 137 insertions(+) - -commit 32e7f698ede6d453c563743198ddca5a270a03fd -Author: Christian Biesinger -Date: Wed Apr 7 15:51:31 2004 +0000 - - Eliminate ExternalProtocolHandlers in favor of setting prefs to make - - * embed/mozilla/ExternalProtocolHandlers.cpp: - * embed/mozilla/ExternalProtocolHandlers.h: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/MozRegisterComponents.h: - * embed/mozilla/mozilla-embed-single.cpp: - - Eliminate ExternalProtocolHandlers in favor of setting prefs to make Mozilla - not handle the protocols internally. - - ChangeLog | 13 ++ - embed/mozilla/ExternalProtocolHandlers.cpp | 197 ----------------------------- - embed/mozilla/ExternalProtocolHandlers.h | 156 ----------------------- - embed/mozilla/FilePicker.cpp | 5 +- - embed/mozilla/Makefile.am | 2 - - embed/mozilla/MozRegisterComponents.cpp | 119 ----------------- - embed/mozilla/MozRegisterComponents.h | 6 - - embed/mozilla/mozilla-embed-single.cpp | 32 +++-- - 8 files changed, 30 insertions(+), 500 deletions(-) - -commit 19faef2caf08e026266c360fb721ec99bea68e50 -Author: Christian Persch -Date: Wed Apr 7 10:38:47 2004 +0000 - - Remove unused variable. - - 2004-04-07 Christian Persch - - * lib/eel-gconf-extensions.c: (eel_gconf_handle_error): - - Remove unused variable. - - ChangeLog | 8 +++++++- - lib/eel-gconf-extensions.c | 2 -- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 53003112015e30faf597ca7bc8962ce2de3874ca -Author: Christian Persch -Date: Wed Apr 7 10:21:13 2004 +0000 - - Don't abort on errors, just display a message on console. - - 2004-04-07 Christian Persch - - * lib/eel-gconf-extensions.c: (eel_gconf_handle_error): - - Don't abort on errors, just display a message on console. - - ChangeLog | 6 ++++++ - lib/eel-gconf-extensions.c | 11 ----------- - 2 files changed, 6 insertions(+), 11 deletions(-) - -commit e4531fb3af5576448ffa1072ea635b6821d437ea -Author: Piers Cornwell -Date: Tue Apr 6 19:10:19 2004 +0000 - - doc/plan/plan.xml - - 2004-04-06 Piers Cornwell - - * doc/plan/plan.xml - - Add some bugzilla references. - - ChangeLog | 6 ++++++ - doc/plan/plan.xml | 26 ++++++++++++++++---------- - 2 files changed, 22 insertions(+), 10 deletions(-) - -commit d29ceddfc4e490092d6c9c8c8a53e8537f279f0e -Author: Dmitry Mastrukov -Date: Tue Apr 6 04:26:04 2004 +0000 - - ru.po: Updated Russian translation from Russian team . - - po/ChangeLog | 5 +++++ - po/ru.po | 28 ++++++++++++++-------------- - 2 files changed, 19 insertions(+), 14 deletions(-) - -commit 00bd6433ec804c048128b37357d9a156ed982ba0 -Author: Christian Persch -Date: Mon Apr 5 18:06:14 2004 +0000 - - Track the active window. - - 2004-04-05 Christian Persch - - * src/ephy-session.c: (window_focus_in_event_cb), - (impl_attach_window), (ephy_session_set_property), - (ephy_session_get_property), (ephy_session_class_init): - - Track the active window. - - ChangeLog | 8 +++++++ - src/ephy-session.c | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 74 insertions(+) - -commit 4c72a0ddd929854a4799fe59ddb9289bbbe7f1cc -Author: Christian Persch -Date: Mon Apr 5 18:03:55 2004 +0000 - - Make pdm and print setup dialogues destroy with parent, too. - - 2004-04-05 Christian Persch - - * data/glade/epiphany.glade: - * data/glade/print.glade: - - Make pdm and print setup dialogues destroy with parent, too. - - ChangeLog | 7 +++++++ - data/glade/epiphany.glade | 2 +- - data/glade/print.glade | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit 893c58cbd97f46616c52d3ec3fa0b3df3f56f972 -Author: Christian Persch -Date: Mon Apr 5 17:53:30 2004 +0000 - - Make prefs, pdm and print setup dialogues transient to their parent. Fixes - - 2004-04-05 Christian Persch - - * data/glade/prefs-dialog.glade: - * lib/ephy-dialog.c: (ephy_dialog_get_parent): - * lib/ephy-dialog.h: - * src/prefs-dialog.c: (prefs_homepage_current_button_clicked_cb): - * src/window-commands.c: (window_cmd_file_print_setup), - (window_cmd_edit_personal_data), (window_cmd_edit_prefs): - - Make prefs, pdm and print setup dialogues transient to their parent. - Fixes bug #139124. - - ChangeLog | 12 ++++++++++++ - data/glade/prefs-dialog.glade | 2 +- - lib/ephy-dialog.c | 10 +++++++++- - lib/ephy-dialog.h | 5 +++++ - src/prefs-dialog.c | 10 ++++------ - src/window-commands.c | 3 +++ - 6 files changed, 34 insertions(+), 8 deletions(-) - -commit 77f5531c6da1f2f9b395510bd05748f504b87b8b -Author: Dmitry Mastrukov -Date: Mon Apr 5 04:02:07 2004 +0000 - - ru.po: Updated Russian translation from Russian team . - - po/ChangeLog | 5 ++++ - po/ru.po | 96 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 53 insertions(+), 48 deletions(-) - -commit d0c120301b078a3aa28e671504b6249c407bcbfe -Author: Adam Hooper -Date: Sun Apr 4 18:30:33 2004 +0000 - - Documented EphyNodeDb - - ChangeLog | 30 ++++++++ - HACKING | 2 +- - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 22 ++++++ - doc/reference/tmpl/ephy-embed-persist.sgml | 2 + - doc/reference/tmpl/ephy-embed.sgml | 1 + - doc/reference/tmpl/ephy-tab.sgml | 3 + - lib/ephy-node-db.c | 109 +++++++++++++++++++++++++++-- - lib/ephy-node-db.h | 12 ++-- - src/ephy-tab.c | 2 +- - 11 files changed, 169 insertions(+), 16 deletions(-) - -commit 89eb2a7d9c293837b659f0335ff44a5946be9aea -Author: Samel Jn Gunnarsson -Date: Sat Apr 3 21:57:09 2004 +0000 - - Updated Icelandic translation by Helgi ormar orbjrnsson - - 2004-04-03 Samel Jn Gunnarsson - - * is.po: Updated Icelandic translation by - Helgi ormar orbjrnsson - - po/ChangeLog | 5 + - po/is.po | 2899 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1693 insertions(+), 1211 deletions(-) - -commit 76b869d6e0ff46160db9175408c3a0a0ea138bea -Author: Crispin Flowerday -Date: Fri Apr 2 22:41:41 2004 +0000 - - Synchronise changes from galeon, this fixes simple usage, stops crashes - - 2004-04-03 Crispin Flowerday - - * lib/egg/egg-editable-toolbar.c: (set_fixed_style), - (unset_fixed_style), (toolbar_changed_cb), (unparent_fixed), - (update_fixed), (toolbars_clean), (egg_editable_toolbar_construct), - (egg_editable_toolbar_set_model): - * lib/egg/egg-toolbar-editor.c: (egg_toolbar_editor_load_actions): - * lib/egg/egg-toolbars-model.h: - - Synchronise changes from galeon, this fixes simple usage, stops - crashes when dragging items to and from other applications, and - adds the ability to override the toolbar style. - - ChangeLog | 13 +++++++++++ - lib/egg/egg-editable-toolbar.c | 50 ++++++++++++++++++++++++++++++++---------- - lib/egg/egg-toolbar-editor.c | 5 ++--- - lib/egg/egg-toolbars-model.h | 5 ++++- - 4 files changed, 57 insertions(+), 16 deletions(-) - -commit 1d907809af0cd53713c8e8891e686acaa104ad8f -Author: Christian Persch -Date: Fri Apr 2 22:35:22 2004 +0000 - - Remove stray semicolon. Fixes bug #138902. - - 2004-04-03 Christian Persch - - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - - Remove stray semicolon. Fixes bug #138902. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 559bcfdd556b32d16f7b241f81819f049b362e01 -Author: Iñaki Larrañaga -Date: Fri Apr 2 15:40:01 2004 +0000 - - Added 'plural-forms'. - - 2004-04-02 Iñaki Larrañaga - - * eu.po: Added 'plural-forms'. - - po/eu.po | 1 + - 1 file changed, 1 insertion(+) - -commit 4033fee081910a84339978154686e47ca9ce1e40 -Author: Iñaki Larrañaga -Date: Fri Apr 2 15:37:19 2004 +0000 - - Added "eu" (Basque) to ALL_LINGUAS. - - 2004-04-02 Iñaki Larrañaga - - * configure.in: Added "eu" (Basque) to ALL_LINGUAS. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4c482740d45844b27bcb27f1e076a7ddf12b346a -Author: Iñaki Larrañaga -Date: Fri Apr 2 15:35:55 2004 +0000 - - Added Basque translation. - - 2004-04-02 Iñaki Larrañaga - - * eu.po: Added Basque translation. - - po/ChangeLog | 4 + - po/eu.po | 3703 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 3707 insertions(+) - -commit 36c1b845f2955e43f765fd8e421c66ed05ad5ea3 -Author: Stefan Rotsch -Date: Fri Apr 2 10:38:16 2004 +0000 - - added declaration for bugzilla tag fixed test for presence of - - 2004-04-02 Stefan Rotsch - - * doc/plan/ephyplan.dtd: added declaration for - bugzilla tag - * doc/plan/plan2table.xsl: fixed test for presence of bugzilla - tag; now it should work - - doc/plan/ephyplan.dtd | 1 + - doc/plan/plan2table.xsl | 10 +++++++++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 242a4fd05a48641f738e30cc27534623f545ddbc -Author: Christian Persch -Date: Thu Apr 1 12:31:05 2004 +0000 - - Fix bookmarks toolbar visibility in fullscreen and print preview mode, as - - 2004-04-01 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_chrome_get_type): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-window.c: (get_chromes_visibility), - (sync_chromes_visibility), (update_chromes_actions), - (get_default_chrome), (ephy_window_init), (sync_prefs_with_chrome), - (ephy_window_view_bookmarksbar_cb): - - Fix bookmarks toolbar visibility in fullscreen and print preview mode, as - well as for javascript popups. Fixes bug #138520. - - ChangeLog | 13 +++++++++++++ - embed/ephy-embed.c | 7 ++++--- - embed/ephy-embed.h | 9 +++++---- - embed/mozilla/mozilla-embed.cpp | 1 + - src/ephy-window.c | 39 +++++++++++++++++++++------------------ - 5 files changed, 44 insertions(+), 25 deletions(-) - -commit 4af17ff6353de154008c21f25cc21cf5533ed650 -Author: Alexander Shopov -Date: Wed Mar 31 16:22:48 2004 +0000 - - Corrected small mistake in the committed Changelog - - 2004-03-31 Alexander Shopov - - * Corrected small mistake in the committed Changelog - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 123ecd836d5ad9aea939cad5e9a650cc7a825e46 -Author: Christian Persch -Date: Wed Mar 31 15:01:29 2004 +0000 - - Fix --with-mozilla-snapshot help string; we don't support 1.4 and 1.5 any - - 2004-03-31 Christian Persch - - * configure.in: - - Fix --with-mozilla-snapshot help string; we don't support 1.4 and 1.5 - any more. - - ChangeLog | 7 +++++++ - configure.in | 10 +++++----- - 2 files changed, 12 insertions(+), 5 deletions(-) - -commit dab06981258b1f0ab21ddb5b45abc213d3d561ee -Author: Alexander Shopov -Date: Wed Mar 31 11:05:01 2004 +0000 - - Updated Bulgarian translation by Vladimir Petkov - - * bg.po: Updated Bulgarian translation by - Vladimir Petkov -Date: Tue Mar 30 22:57:11 2004 +0000 - - Make buttons the same size in Industrial theme and make text selectable. - - 2004-03-30 Piers Cornwell - - * src/ephy-history-window.c: (confirmation_dialog_construct): - - Make buttons the same size in Industrial theme and make text - selectable. - - ChangeLog | 7 +++++++ - src/ephy-history-window.c | 6 +++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit 7f30205fb0e2317a721cd3e39370e247b66defc8 -Author: Piers Cornwell -Date: Tue Mar 30 22:23:12 2004 +0000 - - Use right capitalisation for label. - - 2004-03-30 Piers Cornwell - - * data/glade/prefs-dialog.glade: - - Use right capitalisation for label. - - ChangeLog | 6 ++++++ - data/glade/prefs-dialog.glade | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4b16bfef4ab081d2297d40d13084ba469eb9f603 -Author: Piers Cornwell -Date: Tue Mar 30 22:14:35 2004 +0000 - - Don't allow a font size less than 1. - - 2004-03-30 Piers Cornwell - - * data/glade/prefs-dialog.glade: - * embed/mozilla/mozilla-notifiers.cpp: (mozilla_font_size_notifier): - - Don't allow a font size less than 1. - - ChangeLog | 7 +++++++ - data/glade/prefs-dialog.glade | 10 +++++----- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - 3 files changed, 13 insertions(+), 6 deletions(-) - -commit ea2e6c8997a521817ed13ef6ea66ba2791fa2e6b -Author: Stefan Rotsch -Date: Tue Mar 30 20:55:20 2004 +0000 - - Added element for assigning a bugzilla entry to each item - - 2004-03-30 Stefan Rotsch - - * doc/plan/ephyplan.dtd: Added element for assigning - a bugzilla entry to each item (not mandatory) - - doc/plan/ephyplan.dtd | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -commit 8baaa4568e2a01fba86f31e991ea10c218becda5 -Author: Christian Persch -Date: Tue Mar 30 15:49:21 2004 +0000 - - Get rid of the separators in the Image and Image/Link popups. Fixes bug - - 2004-03-30 Christian Persch - - * data/ui/epiphany-ui.xml: - - Get rid of the separators in the Image and Image/Link popups. - Fixes bug #115897. - - ChangeLog | 7 +++++++ - data/ui/epiphany-ui.xml | 2 -- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit b1a82315dfe5b3c1d8cfb5b33df0d013fc83a87f -Author: Adam Hooper -Date: Tue Mar 30 12:52:33 2004 +0000 - - Documented EphyEmbedFactory - - ChangeLog | 9 +++++++++ - doc/reference/epiphany-docs.sgml | 2 +- - doc/reference/epiphany-sections.txt | 11 ++++++----- - doc/reference/tmpl/ephy-embed-factory.sgml | 12 +++++++++--- - embed/ephy-embed-factory.c | 10 ++-------- - 5 files changed, 27 insertions(+), 17 deletions(-) - -commit 606e1b5132db448875d659e8817c3bbe942d1647 -Author: Christian Persch -Date: Mon Mar 29 20:57:40 2004 +0000 - - Get rid of #if GTK_CHECK_VERSION() stuff and remove optionmenu code. - - 2004-03-29 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - - Get rid of #if GTK_CHECK_VERSION() stuff and remove optionmenu code. - - ChangeLog | 6 +++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 68 +------------------------------ - 2 files changed, 7 insertions(+), 67 deletions(-) - -commit dd6f51a6cc753ed0182b2ca6e5dc3d69bea2f375 -Author: Christian Persch -Date: Mon Mar 29 18:54:27 2004 +0000 - - Remove Open Image in New Tab and New Window from the context menu. - - 2004-03-29 Christian Persch - - * src/ephy-window.c: - * src/popup-commands.c: - * src/popup-commands.h: - * data/ui/epiphany-ui.xml: - - Remove Open Image in New Tab and New Window from the - context menu. - - ChangeLog | 10 ++++++++++ - data/ui/epiphany-ui.xml | 4 ---- - src/ephy-window.c | 4 ---- - src/popup-commands.c | 40 ---------------------------------------- - src/popup-commands.h | 6 ------ - 5 files changed, 10 insertions(+), 54 deletions(-) - -commit f915ef04766ad74fb64fdb1589e73eae5324d465 -Author: Christian Persch -Date: Mon Mar 29 18:48:45 2004 +0000 - - Removed the nautilus view. - - 2004-03-29 Christian Persch - - * configure.in: - * data/.cvsignore: - * data/GNOME_Epiphany_NautilusView.server.in: - * data/Makefile.am: - * data/ui/.cvsignore: - * data/ui/Makefile.am: - * data/ui/nautilus-epiphany-view.xml: - * doc/reference/Makefile.am: - * embed/Makefile.am: - * embed/ephy-embed-popup-control.c: - * embed/ephy-embed-popup-control.h: - * lib/Makefile.am: - * lib/ephy-bonobo-extensions.c: - * lib/ephy-bonobo-extensions.h: - * po/POTFILES.in: - * src/Makefile.am: - * src/ephy-nautilus-view.c: - * src/ephy-nautilus-view.h: - * src/ephy-shell.c: (ephy_automation_factory_cb): - - Removed the nautilus view. - - 2004-03-29 Christian Persch - - ChangeLog | 24 + - configure.in | 33 -- - data/.cvsignore | 1 - - data/GNOME_Epiphany_NautilusView.server.in | 22 - - data/Makefile.am | 11 +- - data/ui/.cvsignore | 6 - - data/ui/Makefile.am | 5 +- - data/ui/nautilus-epiphany-view.xml | 128 ------ - doc/reference/Makefile.am | 5 - - embed/Makefile.am | 2 - - embed/ephy-embed-popup-control.c | 705 ----------------------------- - embed/ephy-embed-popup-control.h | 72 --- - lib/Makefile.am | 2 - - lib/ephy-bonobo-extensions.c | 91 ---- - lib/ephy-bonobo-extensions.h | 49 -- - po/POTFILES.in | 4 - - src/Makefile.am | 17 - - src/ephy-nautilus-view.c | 636 -------------------------- - src/ephy-nautilus-view.h | 59 --- - src/ephy-shell.c | 12 - - 20 files changed, 26 insertions(+), 1858 deletions(-) - -commit f2da560b232d7a0166fdf0aec3a9b48d574b0c65 -Author: Christian Persch -Date: Mon Mar 29 16:59:14 2004 +0000 - - Make EphyCompletionColumn a typedef enum, fixes bug #136878. - - 2004-03-29 Christian Persch - - * src/ephy-completion-model.h: - - Make EphyCompletionColumn a typedef enum, fixes bug #136878. - - ChangeLog | 6 ++++++ - src/ephy-completion-model.h | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 3a4910096aaf0a3aa807f1c5c54178a11443bf50 -Author: Adam Hooper -Date: Mon Mar 29 16:36:40 2004 +0000 - - Documented EphyCommandManager - - ChangeLog | 10 +++ - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 16 ++++ - doc/reference/tmpl/ephy-command-manager.sgml | 112 +++++++++++++++++++++++++++ - embed/ephy-command-manager.c | 25 ++++++ - embed/ephy-command-manager.h | 6 +- - 7 files changed, 167 insertions(+), 4 deletions(-) - -commit 9fb5753f5269d9ce94a0815660dfc907c6d96cdf -Author: Federico Mena Quintero -Date: Mon Mar 29 16:05:23 2004 +0000 - - Fixes #138263. - - 2004-03-29 Federico Mena Quintero - - Fixes #138263. - - * lib/ephy-file-chooser.h: Remove EPHY_RESPONSE_OPEN and - EPHY_RESPONSE_SAVE; we'll use GTK_RESPONSE_ACCEPT instead. - - * lib/ephy-file-chooser.c (ephy_file_chooser_new): Use - GTK_RESPONSE_ACCEPT rather than EPHY_RESPONSE_*. - - * embed/print-dialog.c (print_filechooser_response_cb): Likewise. - - * src/bookmarks/ephy-bookmarks-editor.c - (import_from_file_response_cb): Likewise. - - * src/prefs-dialog.c (download_path_response_cb): Likewise. - - * src/window-commands.c (open_response_cb): Likewise. - - * embed/mozilla/ContentHandler.cpp (PromptForSaveToFile): - Likewise. - - * embed/mozilla/EphyHeaderSniffer.cpp (filechooser_response_cb): - Likewise. - - * embed/mozilla/FilePicker.cpp (Init): Likewise. - (Show): Likewise. - - ChangeLog | 28 ++++++++++++++++++++++++++++ - embed/mozilla/ContentHandler.cpp | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/FilePicker.cpp | 15 +++++++-------- - embed/print-dialog.c | 2 +- - lib/ephy-file-chooser.c | 8 ++++---- - lib/ephy-file-chooser.h | 6 ------ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/prefs-dialog.c | 2 +- - src/window-commands.c | 2 +- - 10 files changed, 45 insertions(+), 24 deletions(-) - -commit df0bef1f04e5cc6782a80fe328805f806b579cd3 -Author: Christian Persch -Date: Mon Mar 29 15:24:09 2004 +0000 - - Test with -d, fixes bug #138088. - - 2004-03-29 Christian Persch - - * src/epiphany.in: - - Test with -d, fixes bug #138088. - - ChangeLog | 6 ++++++ - src/epiphany.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 166252d397aef399647ca0c0facdca01d41acba7 -Author: Christian Persch -Date: Mon Mar 29 15:14:15 2004 +0000 - - Add "Save Link As..." to Image/Link popup. Fixes bug #138207. - - 2004-03-29 Christian Persch - - * data/ui/epiphany-ui.xml: - - Add "Save Link As..." to Image/Link popup. Fixes bug #138207. - - ChangeLog | 6 ++++++ - data/ui/epiphany-ui.xml | 1 + - 2 files changed, 7 insertions(+) - -commit 078b4129c866a866b699aae0f947c43493c69cdc -Author: Christian Persch -Date: Mon Mar 29 15:01:59 2004 +0000 - - Don't assume every anchor has a href attribute. Fixes bug #138200. - - 2004-03-29 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Don't assume every anchor has a href attribute. Fixes bug #138200. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 19 +++++-------------- - 2 files changed, 11 insertions(+), 14 deletions(-) - -commit 243568a52f7147ee36570aa32a292200ad51fc0a -Author: Christian Persch -Date: Mon Mar 29 14:50:17 2004 +0000 - - Fix opening in new tabs when there is no existing window. Fixes bug - - 2004-03-29 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - (cmd_open_bookmarks_in_tabs): - - Fix opening in new tabs when there is no existing window. - Fixes bug #138343. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 15 +++++++++++++-- - 2 files changed, 21 insertions(+), 2 deletions(-) - -commit d6b3f1c57606aace080b9c30202905d56d05af94 -Author: Guntupalli Karunakar -Date: Mon Mar 29 14:49:29 2004 +0000 - - fixed bug in translation - - po/ChangeLog | 4 ++++ - po/pa.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 66bbde2ca85120d3a945d24835e8fdfa0f3dfb99 -Author: Xan Lopez -Date: Sun Mar 28 11:17:51 2004 +0000 - - Tiny cleanup. - - - 2004-03-28 Xan Lopez - - * embed/mozilla/MozRegisterComponents.cpp: - - Tiny cleanup. - - ChangeLog | 6 ++++++ - embed/mozilla/MozRegisterComponents.cpp | 5 +---- - 2 files changed, 7 insertions(+), 4 deletions(-) - -commit 9fbeeb11841b48f0cbecac27631951a2f2f7cc61 -Author: Stefan Rotsch -Date: Sun Mar 28 10:55:03 2004 +0000 - - moved to doc/plan/plan.xml Makefile for transforming plan.xml to html - - 2004-03-28 Stefan Rotsch - - * doc/plan.xml: moved to doc/plan/plan.xml - * doc/plan/Makefile: Makefile for transforming plan.xml to html - using xsltproc and xmllint - * doc/plan/README: README containing some plan-related information - * doc/plan/ephyplan.dtd: DTD describing plan.xml's content - * doc/plan/plan.xml: formerly located at doc/plan.xml - * doc/plan/plan2table.xsl: XSLT stylesheet for plan.xml - - doc/plan.xml | 209 ----------------------------------------------- - doc/plan/Makefile | 14 ++++ - doc/plan/README | 36 +++++++++ - doc/plan/ephyplan.dtd | 13 +++ - doc/plan/plan.xml | 210 ++++++++++++++++++++++++++++++++++++++++++++++++ - doc/plan/plan2table.xsl | 53 ++++++++++++ - 6 files changed, 326 insertions(+), 209 deletions(-) - -commit d207cb82f1d61dc09701945bcbca26f07dfb76a3 -Author: Xan Lopez -Date: Sun Mar 28 10:42:50 2004 +0000 - - Update - - - Update - - doc/plan.xml | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit e140d51204deb9868887ad2ccb3431973448f8a5 -Author: Adam Hooper -Date: Sat Mar 27 21:51:59 2004 +0000 - - EphyEmbedPersist documentation - - ChangeLog | 14 ++ - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 33 ++++ - doc/reference/epiphany.types | 2 + - doc/reference/tmpl/ephy-embed-persist.sgml | 308 +++++++++++++++++++++++++++++ - embed/ephy-embed-persist.c | 193 +++++++++++++++++- - embed/ephy-embed-persist.h | 10 +- - 8 files changed, 554 insertions(+), 8 deletions(-) - -commit b1ffea174d85b4cc3130663086f1c020732e3cc0 -Author: Piers Cornwell -Date: Sat Mar 27 18:17:07 2004 +0000 - - Use verb for action button and various minor tidy ups. - - 2004-03-27 Piers Cornwell - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_import): - - Use verb for action button and various minor tidy ups. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 28 +++++++++++++++++----------- - 2 files changed, 23 insertions(+), 11 deletions(-) - -commit e9cd1e055b647f1e900f0b27ac31f5ec95047dff -Author: Christian Persch -Date: Sat Mar 27 13:11:07 2004 +0000 - - Added ephy-stock-icons.c. - - 2004-03-27 Christian Persch - - * POTFILES.in: Added ephy-stock-icons.c. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit 54eaddbfa2fe4b7004f2c4cde6a0c39fe33825a0 -Author: Christian Persch -Date: Sat Mar 27 13:03:38 2004 +0000 - - Log context of event in debug mode. - - 2004-03-27 Christian Persch - - * src/ephy-window.c: (show_embed_popup): - - Log context of event in debug mode. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit bc08fad238bd6a29c6ef68d966c99949321a4341 -Author: Christian Persch -Date: Sat Mar 27 13:02:24 2004 +0000 - - Correctly disconnect the handler not from the proxy but from the entry - - 2004-03-27 Christian Persch - - * src/ephy-location-action.c: (location_url_activate_cb), - (disconnect_proxy), (ephy_location_action_set_address): - - Correctly disconnect the handler not from the proxy but from the entry - itself. Rationalise away one strdup. - - ChangeLog | 8 ++++++++ - src/ephy-location-action.c | 15 +++++++++------ - 2 files changed, 17 insertions(+), 6 deletions(-) - -commit 9858006c017531ae84f709a346273a0cb5b4f968 -Author: Christian Persch -Date: Sat Mar 27 12:59:25 2004 +0000 - - Register our stock icons. - - 2004-03-27 Christian Persch - - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - - Register our stock icons. - - * embed/mozilla/ContentHandler.cpp: - - Use stock icon for "Download". - - ChangeLog | 10 ++++++++++ - embed/mozilla/ContentHandler.cpp | 2 +- - lib/ephy-stock-icons.c | 21 ++++++++++++--------- - 3 files changed, 23 insertions(+), 10 deletions(-) - -commit 9e31ac451aff0bd015136218603c1df336514e12 -Author: Christian Persch -Date: Sat Mar 27 12:53:55 2004 +0000 - - Remove removed file ExternalProtocolService.cpp. - - 2004-03-27 Christian Persch - - * POTFILES.in: Remove removed file ExternalProtocolService.cpp. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 - - 2 files changed, 4 insertions(+), 1 deletion(-) - -commit ea323c1d7f28e2a03b7b1752de25a975218a488d -Author: Adam Hooper -Date: Fri Mar 26 22:10:03 2004 +0000 - - Documented EphyEmbedSingle - - ChangeLog | 22 ++++++++++++ - doc/reference/epiphany-docs.sgml | 2 +- - doc/reference/epiphany-sections.txt | 35 +++++++++--------- - doc/reference/tmpl/ephy-embed-single.sgml | 52 +++++++++++++++++---------- - doc/reference/tmpl/ephy-tab.sgml | 50 ++++++++++++++++++++++++++ - doc/reference/tmpl/epiphany-unused.sgml | 14 ++++++++ - embed/ephy-embed-single.c | 59 +++++++++++++++++++------------ - embed/ephy-embed-single.h | 18 +++++----- - embed/ephy-embed.c | 4 +-- - 9 files changed, 186 insertions(+), 70 deletions(-) - -commit 392862972143af3915942456b6a6665d95a79fcb -Author: Marco Pesenti Gritti -Date: Fri Mar 26 19:15:44 2004 +0000 - - *** empty log message *** - - doc/plan.xml | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 41fa561e1df6493e58188afd1d6098109398b929 -Author: Piers Cornwell -Date: Fri Mar 26 18:56:17 2004 +0000 - - Fix duplicate accesskey, use correct case for button text and make message - - 2004-03-26 Piers Cornwell - - * src/ephy-window.c: (confirm_close_with_modified_forms): - - Fix duplicate accesskey, use correct case for button - text and make message selectable. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 3 ++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 03286db6ece178142863793700809427ba5b3ca5 -Author: Marco Pesenti Gritti -Date: Fri Mar 26 11:36:35 2004 +0000 - - *** empty log message *** - - doc/plan.xml | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit be6d33f93df7ef3fdcfe88ee32521f119767d16c -Author: Marco Pesenti Gritti -Date: Fri Mar 26 09:54:50 2004 +0000 - - *** empty log message *** - - doc/plan.xml | 9 --------- - 1 file changed, 9 deletions(-) - -commit 58e4369d1b754cfa172ff0c2999f6f1d91f173ea -Author: Marco Pesenti Gritti -Date: Fri Mar 26 09:10:27 2004 +0000 - - Add base dir to mozilla includes since the embed SDK dir structure has - - 2004-03-26 Marco Pesenti Gritti - - * embed/mozilla/Makefile.am: - - Add base dir to mozilla includes since the - embed SDK dir structure has been flattened in cvs - - ChangeLog | 8 ++++++++ - embed/mozilla/Makefile.am | 1 + - 2 files changed, 9 insertions(+) - -commit 51dfe1d703d2ea1f613ad68deab3a1926a790de4 -Author: Christian Persch -Date: Thu Mar 25 23:41:12 2004 +0000 - - Use stock icon for open. Fixes bug #135765. - - 2004-03-25 Christian Persch - - * embed/mozilla/ContentHandler.cpp: (MIMEConfirmAction): - - Use stock icon for open. Fixes bug #135765. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 42be540e47b88923fc6f1155be3eac3e20ec2d32 -Author: Christian Persch -Date: Thu Mar 25 20:49:47 2004 +0000 - - Fix arg type of dom_* signals to match the closure. - - 2004-03-25 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_base_init): - - Fix arg type of dom_* signals to match the closure. - - ChangeLog | 5 +++++ - embed/ephy-embed.c | 4 ++-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 2c0ac2bcd53488a14ad40269d7645e0ee2081773 -Author: Christian Persch -Date: Thu Mar 25 20:01:27 2004 +0000 - - Add ephy_tab_get_type(), fixes EphyTab documentation to include object - - 2004-03-25 Christian Persch - - * doc/reference/epiphany.types: - - Add ephy_tab_get_type(), fixes EphyTab documentation to include - object properties. - - ChangeLog | 7 +++++++ - doc/reference/epiphany.types | 2 ++ - 2 files changed, 9 insertions(+) - -commit f14711921c8cdd424e4beea80aa5283e4ea3289c -Author: Adam Hooper -Date: Thu Mar 25 19:55:20 2004 +0000 - - Fixed teeny typo - - embed/ephy-embed.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2d3d36fff80dba7b3bb2b403b1ad45d700b8b8b1 -Author: Adam Hooper -Date: Thu Mar 25 19:54:04 2004 +0000 - - Fixed gtk-doc comments - - ChangeLog | 6 ++++++ - embed/ephy-embed.c | 9 ++++++--- - 2 files changed, 12 insertions(+), 3 deletions(-) - -commit 1a84ef9f76056a2805a837bb45209a3746cdb521 -Author: Adam Hooper -Date: Thu Mar 25 19:09:44 2004 +0000 - - Documented EphyEmbed - - ChangeLog | 33 ++ - doc/reference/Makefile.am | 4 +- - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 80 ++++- - doc/reference/epiphany.types | 2 + - doc/reference/tmpl/ephy-embed.sgml | 515 ++++++++++++++++++++++++++++++++ - doc/reference/tmpl/ephy-tab.sgml | 9 - - doc/reference/tmpl/epiphany-unused.sgml | 22 ++ - embed/ephy-embed.c | 377 ++++++++++++++++++++++- - embed/ephy-embed.h | 18 +- - embed/mozilla/EphyBrowser.cpp | 29 -- - embed/mozilla/EphyBrowser.h | 7 - - embed/mozilla/mozilla-embed.cpp | 10 +- - src/ephy-nautilus-view.c | 12 +- - src/ephy-tab.c | 6 +- - src/ephy-window.c | 4 +- - 16 files changed, 1040 insertions(+), 89 deletions(-) - -commit 867777faceb7b4eba5b58b4e8edb23edfeeb8287 -Author: Stefan Rotsch -Date: Thu Mar 25 16:27:57 2004 +0000 - - Status updates for 3 items - - 2004-03-23 Stefan Rotsch - - * doc/plan.xml: Status updates for 3 items - - doc/plan.xml | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 448d32df52e2951d325a8c7506193cfc87276eb4 -Author: Christian Persch -Date: Tue Mar 23 22:16:26 2004 +0000 - - Tiny doc fixes. - - 2004-03-23 Christian Persch - - * src/ephy-tab.c: - * src/ephy-window.c: - - Tiny doc fixes. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 4 +--- - src/ephy-window.c | 2 +- - 3 files changed, 9 insertions(+), 4 deletions(-) - -commit 2c299d6190d08c97d1cf76b3545b30bde89d904f -Author: Christian Persch -Date: Tue Mar 23 21:17:12 2004 +0000 - - Get rid of ephy_tab_[get|set]_window(). - - 2004-03-23 Christian Persch - - * src/ephy-tab.c: (ephy_tab_set_property), (ephy_tab_get_property), - (ephy_tab_get_window), (ephy_tab_action_activate_cb), - (ephy_tab_class_init), (ephy_tab_destroy_brsr_cb), - (ephy_tab_size_to_cb), (ephy_tab_dom_mouse_click_cb), - (ephy_tab_init): - * src/ephy-tab.h: - * src/ephy-window.c: (tab_context_menu_cb), - (ephy_window_set_active_tab): - * src/ephy-window.h: - - Get rid of ephy_tab_[get|set]_window(). - - ChangeLog | 14 ++++++++ - src/ephy-tab.c | 101 +++++++++++++----------------------------------------- - src/ephy-tab.h | 5 --- - src/ephy-window.c | 5 +-- - src/ephy-window.h | 2 +- - 5 files changed, 39 insertions(+), 88 deletions(-) - -commit 9128390b9cef9877497962a409cd17393ddd0588 -Author: Christian Persch -Date: Tue Mar 23 20:35:41 2004 +0000 - - Fix the build, bad noda :P - - 2004-03-23 Christian Persch - - * src/ephy-tab.c: (ephy_tab_visibility_cb): - - Fix the build, bad noda :P - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 071b7d464acbead0230c3835766f27fd39ca05e7 -Author: Christian Persch -Date: Tue Mar 23 20:23:48 2004 +0000 - - Make the "Go" button actually work. Thanks to aes for alerting us to this - - 2004-03-23 Christian Persch - - * src/ephy-go-action.c: (connect_proxy), (disconnect_proxy), - (ephy_go_action_class_init): - - Make the "Go" button actually work. Thanks to aes for alerting us to - this problem. - - ChangeLog | 8 ++++++++ - src/ephy-go-action.c | 23 +++++++++++++++++++++++ - 2 files changed, 31 insertions(+) - -commit fc35d884b50c7e8b0ff48e6124b8bc55cf9d7ce5 -Author: Adam Hooper -Date: Tue Mar 23 19:58:36 2004 +0000 - - Documented EphyTab - - ChangeLog | 19 ++++ - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 1 + - doc/reference/epiphany-sections.txt | 19 ++++ - doc/reference/tmpl/ephy-tab.sgml | 139 +++++++++++++++++++++++ - src/ephy-tab.c | 213 +++++++++++++++++++++++++++++++++--- - src/ephy-tab.h | 7 +- - 7 files changed, 379 insertions(+), 20 deletions(-) - -commit ddc46340046c14ad86ef7ecbebc1e73761a5e2d1 -Author: Adam Hooper -Date: Tue Mar 23 17:44:27 2004 +0000 - - More documentation - - ChangeLog | 34 +++++++ - doc/reference/epiphany-docs.sgml | 6 +- - doc/reference/epiphany-sections.txt | 175 ++++++++++++++++++++++++++++++++ - doc/reference/tmpl/epiphany-unused.sgml | 37 +++++++ - 4 files changed, 251 insertions(+), 1 deletion(-) - -commit d3cea4a501d33f5b747f4a54381660bdc1fac5a5 -Author: Adam Hooper -Date: Tue Mar 23 17:31:42 2004 +0000 - - API documentation - - data/.cvsignore | 1 + - doc/plan.xml | 9 +- - doc/reference-howto.txt | 2 +- - doc/reference/Makefile.am | 1 - - doc/reference/tmpl/ephy-permission-manager.sgml | 88 +++++------ - doc/reference/tmpl/ephy-window.sgml | 198 ++++++++++++++++++++++++ - embed/ephy-permission-manager.c | 43 ++--- - embed/ephy-permission-manager.h | 12 +- - src/ephy-window.c | 129 ++++++++++++++- - src/ephy-window.h | 5 +- - 10 files changed, 404 insertions(+), 84 deletions(-) - -commit 30a8ce5d7c0d2ca2540e657b113cbe3e8ffa8267 -Author: Marco Pesenti Gritti -Date: Tue Mar 23 10:16:52 2004 +0000 - - *** empty log message *** - - doc/plan.xml | 1 + - 1 file changed, 1 insertion(+) - -commit b99ccc01c0ee525d3d01da3d1c9778ac39a81c7a -Author: Duarte Loreto -Date: Tue Mar 23 01:37:21 2004 +0000 - - Normalized expression in Portuguese translation. - - 2004-03-23 Duarte Loreto - - * pt.po: Normalized expression in Portuguese translation. - - po/ChangeLog | 4 ++++ - po/pt.po | 16 ++++++++-------- - 2 files changed, 12 insertions(+), 8 deletions(-) - -commit 3dab660ff12954f44dc7d453b32c381e7fb95fe0 -Author: Xan Lopez -Date: Mon Mar 22 20:39:57 2004 +0000 - - Typos. - - - Typos. - - doc/plan.xml | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 51995eec7d5c2c1efc4803ee117ace3899847f44 -Author: Xan Lopez -Date: Mon Mar 22 20:37:28 2004 +0000 - - Update. - - - Update. - - doc/plan.xml | 12 +++++++++++- - 1 file changed, 11 insertions(+), 1 deletion(-) - -commit 273c88336a86340c523a36eefedd2ae1b1532b66 -Author: Marco Pesenti Gritti -Date: Mon Mar 22 20:32:42 2004 +0000 - - *** empty log message *** - - doc/plan.xml | 60 ++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 30 insertions(+), 30 deletions(-) - -commit 6a614a88a229da159b22ecc72cf4215615e51a04 -Author: Marco Pesenti Gritti -Date: Mon Mar 22 19:50:30 2004 +0000 - - *** empty log message *** - - doc/plan.xml | 43 +++++++++++++++++++++---------------------- - 1 file changed, 21 insertions(+), 22 deletions(-) - -commit a0e57e4f5406dacb9ddf1ed5ab3568d659c06270 -Author: Marco Pesenti Gritti -Date: Mon Mar 22 19:34:23 2004 +0000 - - *** empty log message *** - - doc/plan.xml | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 750a0d8898b4b7130c6859f2c5c6c2c77e920f82 -Author: Marco Pesenti Gritti -Date: Mon Mar 22 19:29:09 2004 +0000 - - *** empty log message *** - - doc/plan.xml | 11 ++++++++++- - 1 file changed, 10 insertions(+), 1 deletion(-) - -commit 6b9b7c2b9cada43550975564127635532c5be930 -Author: Marco Pesenti Gritti -Date: Mon Mar 22 19:18:50 2004 +0000 - - *** empty log message *** - - doc/plan.xml | 172 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 172 insertions(+) - -commit de2dac712be52b1db600f152b474211942beb9fa -Author: Marco Pesenti Gritti -Date: Mon Mar 22 09:26:14 2004 +0000 - - the xbel mime type is now application/x-xbel - - 2004-03-22 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): - - the xbel mime type is now application/x-xbel - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-import.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 68190bd716d4b9458af4b2a739f2b6f896884875 -Author: Christian Persch -Date: Sun Mar 21 14:27:33 2004 +0000 - - Forgot to s/logo/icon/g. - - 2004-03-21 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Forgot to s/logo/icon/g. - - ChangeLog | 6 ++++++ - src/window-commands.c | 12 ++++++------ - 2 files changed, 12 insertions(+), 6 deletions(-) - -commit ca4230a44b7c2ad6fd1719771af0b576c11e3478 -Author: Christian Persch -Date: Sun Mar 21 12:49:55 2004 +0000 - - Fix "Add" button width in the prefs dialogue for some themes. Fixes bug - - 2004-03-21 Christian Persch - - * data/glade/prefs-dialog.glade: - - Fix "Add" button width in the prefs dialogue for some themes. - Fixes bug #137811. - - ChangeLog | 7 +++++++ - data/glade/prefs-dialog.glade | 1 + - 2 files changed, 8 insertions(+) - -commit 804ff2a994b1ce135d1b96a18f7358fe92af4abd -Author: Christian Persch -Date: Sun Mar 21 12:40:01 2004 +0000 - - Set window icon. Fixes bug #137806. - - 2004-03-21 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Set window icon. Fixes bug #137806. - - ChangeLog | 6 ++++++ - src/window-commands.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 36dbf495c569491978173e3b77ea7e7f160af5bb -Author: Christian Persch -Date: Sun Mar 21 12:39:27 2004 +0000 - - *** empty log message *** - - embed/mozilla/EphyContentPolicy.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit dbc048ed5840064c509e546e5e4583d399256720 -Author: Christian Persch -Date: Sun Mar 21 12:30:56 2004 +0000 - - Don't override nsWebBrowserContentPolicy contract ID, just register our - - 2004-03-21 Christian Persch - - * embed/mozilla/EphyContentPolicy.h: - * embed/mozilla/MozRegisterComponents.cpp: - - Don't override nsWebBrowserContentPolicy contract ID, just register our own - content policy with the category manager. - - ChangeLog | 8 +++++++ - embed/mozilla/EphyBrowser.cpp | 3 +++ - embed/mozilla/MozRegisterComponents.cpp | 41 +++++++++++++++++++++++++++++---- - 3 files changed, 47 insertions(+), 5 deletions(-) - -commit d9a8d9ecbbef9bf4841e744f30c6f4b370fc580d -Author: Jordi Mallach -Date: Sun Mar 21 11:46:18 2004 +0000 - - Updated Catalan translation by Xavi Conde . - - po/ChangeLog | 5 + - po/ca.po | 3217 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1854 insertions(+), 1368 deletions(-) - -commit 26cedbfcfa2c7406c1f52f35bb288807383b4fb7 -Author: Christian Persch -Date: Sun Mar 21 00:10:52 2004 +0000 - - R data/epiphany-1.2.pc.in: A data/epiphany-1.4.pc.in: - - 2004-03-21 Christian Persch - - * configure.in: - * data/Makefile.am: - R data/epiphany-1.2.pc.in: - A data/epiphany-1.4.pc.in: - * src/Makefile.am: - - Make epiphany-extensions for epiphany 1.3 parallel-installable with those - for epiphany 1.2. - - ChangeLog | 11 +++++++++++ - configure.in | 2 +- - data/Makefile.am | 2 +- - data/epiphany-1.2.pc.in | 11 ----------- - data/epiphany-1.4.pc.in | 12 ++++++++++++ - src/Makefile.am | 2 +- - 6 files changed, 26 insertions(+), 14 deletions(-) - -commit 152fe2fec74e622be98203272ce32debae25accb -Author: Guntupalli Karunakar -Date: Sat Mar 20 11:39:19 2004 +0000 - - Added punjabi translation - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/pa.po | 3540 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3550 insertions(+), 1 deletion(-) - -commit e2a3b26c681b57f89dc427db254ed72e7faa91ca -Author: Christian Persch -Date: Fri Mar 19 20:20:05 2004 +0000 - - Don't try to unref NULL icon. Fixes bug #137715. - - 2004-03-19 Christian Persch - - * src/bookmarks/ephy-bookmark-properties.c: (set_window_icon): - - Don't try to unref NULL icon. Fixes bug #137715. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmark-properties.c | 7 +++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit a79d9e28e324d9a6f0424e1dc6736f0839d31989 -Author: Dmitry Mastrukov -Date: Fri Mar 19 04:01:09 2004 +0000 - - ru.po: Updated Russian translation from Russian team . - - po/ChangeLog | 5 + - po/ru.po | 3360 ++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 2102 insertions(+), 1263 deletions(-) - -commit 0fc55b3c7334b14b3e036327de5c0a0b21ffd735 -Author: Arafat Medini -Date: Thu Mar 18 21:32:11 2004 +0000 - - Updated Arabic translation. - - - 2004-03-18 Arafat Medini - - * ar.po: Updated Arabic translation. - - po/ChangeLog | 4 ++++ - po/ar.po | 26 ++++++++++++++------------ - 2 files changed, 18 insertions(+), 12 deletions(-) - -commit 40f9870ee0b060e7fdbfff104343d4c2f0eb4ac2 -Author: Marco Pesenti Gritti -Date: Thu Mar 18 20:22:25 2004 +0000 - - Cleanups chromes code and register a type for the enum. - - 2004-03-16 Marco Pesenti Gritti - - * embed/ephy-embed.c: (ephy_embed_chrome_get_type): - * embed/ephy-embed.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed.cpp: - - Cleanups chromes code and register a type for the enum. - - * src/ephy-nautilus-view.c: (gnv_embed_new_window_cb): - - Adapt to the api changes - - * src/ephy-tab.c: (ephy_tab_new_window_cb): - - Move js chrome lockdown pref check here. - - * src/ephy-window.c: (get_chromes_visibility), - (sync_chromes_visibility), (ephy_window_fullscreen), - (ephy_window_unfullscreen), (update_chromes_actions), - (update_actions_sensitivity), (show_embed_popup), - (get_default_chrome), (ephy_window_set_property), - (ephy_window_class_init), (actions_notifier), - (navigation_notifier), (ephy_window_init), (ephy_window_finalize), - (ephy_window_new_with_chrome), (ephy_window_set_print_preview), - (ephy_window_show), (sync_prefs_with_chrome), - (sync_chrome_with_view_toggle), (ephy_window_view_statusbar_cb), - (ephy_window_view_toolbar_cb), (ephy_window_view_bookmarksbar_cb): - - Rework chrome handling so that it's not applied to all windows. - Changes are now saved on the fly like for window size. - - * src/ephy-window.h: - - Use a construct property instead of a _set for chrome. - - * src/window-commands.c: - * src/window-commands.h: - - Move chromes actions to EphyWindow so we dont need to expose - chrome handling. - - ChangeLog | 42 +++ - embed/ephy-embed.c | 22 ++ - embed/ephy-embed.h | 28 +- - embed/mozilla/Makefile.am | 1 + - embed/mozilla/mozilla-embed.cpp | 34 ++- - src/ephy-nautilus-view.c | 4 +- - src/ephy-tab.c | 14 +- - src/ephy-window.c | 550 ++++++++++++++++++++++------------------ - src/ephy-window.h | 9 +- - src/window-commands.c | 30 --- - src/window-commands.h | 9 - - 11 files changed, 415 insertions(+), 328 deletions(-) - -commit fb9bc516d855e7422d6e6e3b5b93baf5238a0b38 -Author: Xan Lopez -Date: Thu Mar 18 19:59:34 2004 +0000 - - Make select-by-key support unsorted lists. Fuzzy matching is gone though. - - - * lib/widgets/ephy-node-view.c: - (ephy_node_view_select_node_by_key): - - Make select-by-key support unsorted lists. Fuzzy matching is gone - though. Oh well ... :) (bug #137054) - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-node-view.c | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit feeb765e424dbbdeb63445f2d3ea63b5feb8dbfb -Author: Piers Cornwell -Date: Thu Mar 18 16:52:57 2004 +0000 - - Make secure description better (Bug #136443). - - 2004-03-18 Piers Cornwell - - * src/pdm-dialog.c: (show_cookies_properties): - - Make secure description better (Bug #136443). - - * src/window-commands.c: (window_cmd_help_about): - - Add my email address. - - * embed/mozilla/GtkNSSDialogs.cpp: - - Include nsReadableUtils.h. - - ChangeLog | 14 ++++++++++++++ - embed/mozilla/GtkNSSDialogs.cpp | 1 + - src/pdm-dialog.c | 4 ++-- - src/window-commands.c | 2 +- - 4 files changed, 18 insertions(+), 3 deletions(-) - -commit 6c77c6b5406ee612da3708e88f48d78dd5cb2863 -Author: Christian Persch -Date: Thu Mar 18 15:34:02 2004 +0000 - - Add firefox option in bookmarks import dialogue. - - 2004-03-18 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_import): - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): - * src/bookmarks/ephy-bookmarks-import.h: - - Add firefox option in bookmarks import dialogue. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 ++ - src/bookmarks/ephy-bookmarks-import.c | 3 ++- - src/bookmarks/ephy-bookmarks-import.h | 1 + - 4 files changed, 13 insertions(+), 1 deletion(-) - -commit 8bfe99fb0e68ab59f106ab82cccf4daaeae896ab -Author: Piers Cornwell -Date: Wed Mar 17 23:52:32 2004 +0000 - - Fix notes and tips to validate. - - 2004-03-17 Piers Cornwell - - * help/C/epiphany.xml: Fix notes and tips to validate. - - ChangeLog | 4 ++++ - help/C/epiphany.xml | 24 ++++++++++++++++-------- - 2 files changed, 20 insertions(+), 8 deletions(-) - -commit fae902851b09cc1f6dd2425e2bfddbce9847aaaf -Author: Marco Pesenti Gritti -Date: Wed Mar 17 09:08:47 2004 +0000 - - *** empty log message *** - - lib/widgets/ephy-zoom-control.c | 1 - - src/bookmarks/ephy-bookmark-action.c | 2 -- - src/bookmarks/ephy-bookmark-action.h | 2 ++ - src/bookmarks/ephy-bookmark-properties.c | 3 ++- - src/bookmarks/ephy-bookmarks-export.c | 4 ++++ - src/bookmarks/ephy-bookmarks-export.h | 2 ++ - src/bookmarks/ephy-bookmarks-import.h | 2 ++ - src/bookmarks/ephy-bookmarks-menu.h | 2 ++ - src/bookmarks/ephy-bookmarks.h | 2 ++ - src/bookmarks/ephy-new-bookmark.c | 3 ++- - src/bookmarks/ephy-topic-action.h | 2 ++ - src/bookmarks/ephy-topics-selector.c | 7 ++++++- - src/ephy-automation.c | 4 ++++ - src/ephy-completion-model.c | 4 +++- - src/ephy-extension.c | 4 ++++ - src/ephy-favicon-action.c | 5 ++++- - src/ephy-history-window.c | 2 +- - src/ephy-location-action.c | 7 +++++-- - src/ephy-navigation-action.c | 4 ++++ - src/ephy-toolbars-model.c | 4 ++++ - src/ephy-toolbars-model.h | 2 ++ - src/ephy-window.c | 2 -- - src/popup-commands.h | 2 ++ - src/ppview-toolbar.c | 2 +- - src/ppview-toolbar.h | 2 ++ - src/prefs-dialog.h | 5 ++++- - src/toolbar.h | 2 ++ - 27 files changed, 68 insertions(+), 15 deletions(-) - -commit dbdcf80ba8e559236f9937aaafba1d14b1cee46e -Author: Marco Pesenti Gritti -Date: Wed Mar 17 09:02:38 2004 +0000 - - merging pre-gnome-2-8 branch - - ChangeLog | 190 +++++++++++++++++++++++++++++ - configure.in | 12 +- - embed/downloader-view.c | 2 +- - embed/downloader-view.h | 2 + - embed/ephy-download.c | 2 +- - embed/ephy-embed-dialog.c | 6 + - embed/ephy-embed-event.c | 4 + - embed/ephy-embed-factory.c | 5 + - embed/ephy-embed-factory.h | 2 + - embed/ephy-encodings.c | 2 - - embed/find-dialog.c | 4 + - embed/mozilla/ContentHandler.cpp | 29 +---- - embed/mozilla/EphyAboutRedirector.cpp | 5 +- - embed/mozilla/EphyAboutRedirector.h | 5 +- - embed/mozilla/EphyBrowser.cpp | 56 +-------- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 31 ++--- - embed/mozilla/EphyHeaderSniffer.h | 5 +- - embed/mozilla/EphySingle.cpp | 32 ++--- - embed/mozilla/EventContext.cpp | 22 +--- - embed/mozilla/EventContext.h | 4 +- - embed/mozilla/ExternalProtocolHandlers.cpp | 2 + - embed/mozilla/ExternalProtocolHandlers.h | 2 + - embed/mozilla/ExternalProtocolService.cpp | 156 ----------------------- - embed/mozilla/ExternalProtocolService.h | 50 -------- - embed/mozilla/FilePicker.cpp | 32 ++--- - embed/mozilla/GlobalHistory.cpp | 4 +- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 12 +- - embed/mozilla/GtkNSSClientAuthDialogs.h | 2 + - embed/mozilla/GtkNSSDialogs.cpp | 32 ++--- - embed/mozilla/GtkNSSDialogs.h | 2 + - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 24 +--- - embed/mozilla/GtkNSSKeyPairDialogs.h | 2 + - embed/mozilla/Makefile.am | 4 - - embed/mozilla/MozDownload.cpp | 2 +- - embed/mozilla/MozDownload.h | 5 +- - embed/mozilla/MozRegisterComponents.cpp | 13 -- - embed/mozilla/MozRegisterComponents.h | 4 +- - embed/mozilla/MozillaPrivate.cpp | 18 +-- - embed/mozilla/PrintingPromptService.h | 2 + - embed/mozilla/mozilla-embed-event.cpp | 4 + - embed/mozilla/mozilla-embed-persist.cpp | 3 +- - embed/mozilla/mozilla-embed-single.cpp | 42 +------ - embed/mozilla/mozilla-embed.cpp | 6 +- - embed/mozilla/mozilla-notifiers.h | 2 + - embed/print-dialog.c | 4 + - lib/eel-gconf-extensions.c | 2 + - lib/eel-gconf-extensions.h | 2 + - lib/ephy-bonobo-extensions.c | 6 +- - lib/ephy-bonobo-extensions.h | 2 + - lib/ephy-debug.c | 4 + - lib/ephy-dnd.c | 6 + - lib/ephy-glade.c | 4 + - lib/ephy-langs.c | 2 - - lib/ephy-node-db.c | 4 + - lib/ephy-node-filter.c | 4 + - lib/ephy-state.c | 5 + - lib/ephy-stock-icons.c | 4 + - lib/ephy-string.c | 2 + - lib/ephy-zoom.c | 6 + - lib/widgets/ephy-arrow-toolbutton.c | 4 + - lib/widgets/ephy-arrow-toolbutton.h | 2 + - lib/widgets/ephy-cell-renderer-progress.c | 8 +- - lib/widgets/ephy-cell-renderer-progress.h | 2 + - lib/widgets/ephy-ellipsizing-label.c | 6 + - lib/widgets/ephy-ellipsizing-label.h | 2 + - lib/widgets/ephy-location-entry.c | 4 + - lib/widgets/ephy-node-view.c | 4 + - lib/widgets/ephy-search-entry.c | 4 +- - lib/widgets/ephy-spinner.c | 1 + - lib/widgets/ephy-tree-model-node.c | 5 +- - lib/widgets/ephy-tree-model-sort.c | 4 + - lib/widgets/ephy-zoom-action.c | 1 - - lib/widgets/ephy-zoom-action.h | 2 + - 74 files changed, 444 insertions(+), 509 deletions(-) - -commit 9765279aba4cbed66b182e91eaa18e8225305a18 -Author: Åsmund Skjæveland -Date: Tue Mar 16 19:13:39 2004 +0000 - - Updated Norwegian Nynorsk translation. - - 2004-03-16 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 ++ - po/nn.po | 130 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 81 insertions(+), 53 deletions(-) - -commit ed007444acc15b17bd08c2b78abe10fd19f824dd -Author: Dinesh Nadarajah -Date: Tue Mar 16 17:07:25 2004 +0000 - - Corrected Tamil Translation - - - 2004-03-12 Dinesh Nadarajah - - * ta.po: Corrected Tamil Translation - - po/ChangeLog | 4 ++++ - po/ta.po | 8 ++++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit cd4d7118162b33d24f51f703f0c7561a1c56b79a -Author: Yanko Kaneti -Date: Tue Mar 16 16:53:09 2004 +0000 - - Fixed translation for "system-language" - - 2004-03-16 Yanko Kaneti - - * bg.po: Fixed translation for "system-language" - - po/ChangeLog | 4 ++++ - po/bg.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit b58a88fb0adfc79e1437f03d0e5f5b400e7c91b4 -Author: Funda Wang -Date: Tue Mar 16 14:17:27 2004 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 +++ - po/zh_CN.po | 99 ++++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 61 insertions(+), 42 deletions(-) - -commit a5490165720f83487d8ac49fbac3adbd4c2ad194 -Author: Marcel Telka -Date: Mon Mar 15 22:52:12 2004 +0000 - - Updated Slovak translation. - - 2004-03-15 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 519 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 258 insertions(+), 265 deletions(-) - -commit 9732e759a0a248bf880963b5850e5d958c5b17ec -Author: Marco Pesenti Gritti -Date: Mon Mar 15 15:51:31 2004 +0000 - - *** empty log message *** - - ChangeLog | 11 +++++++++++ - NEWS | 23 +++++++++++++++++++++++ - configure.in | 4 ++-- - embed/mozilla/mozilla-download.cpp | 2 ++ - 4 files changed, 38 insertions(+), 2 deletions(-) - -commit d222bedec7864707d3754ab888b9701cf7e56fbb -Author: Denis Lackovic -Date: Sun Mar 14 23:11:26 2004 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/hr.po | 638 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 324 insertions(+), 318 deletions(-) - -commit 4477aa84c2f63157ad488fa58f735afb4440d2b8 -Author: Sayamindu Dasgupta -Date: Sun Mar 14 17:55:34 2004 +0000 - - Updated Bengali translations - - po/ChangeLog | 5 + - po/bn.po | 2386 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 1104 insertions(+), 1287 deletions(-) - -commit cb9765e9e41df691e27a0d12a9744060585deb6e -Author: John C Barstow -Date: Sun Mar 14 07:19:25 2004 +0000 - - 2004-03-13 John C Barstow Updated Maori translation - - po/ChangeLog | 4 + - po/mi.po | 559 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 275 insertions(+), 288 deletions(-) - -commit 473bd44d6460ff9e71844a5d7a5895e547be26b5 -Author: Marco Pesenti Gritti -Date: Sun Mar 14 01:01:03 2004 +0000 - - Deal with the case where data_received signal is emitted asyncrounously. - - 2004-03-14 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (drag_data_received_cb), - (toolbar_drag_motion_cb), (egg_editable_toolbar_init): - - Deal with the case where data_received signal is emitted - asyncrounously. - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 22 +++++++++------------- - 2 files changed, 17 insertions(+), 13 deletions(-) - -commit 2384f5872c8a4f3f400b3be011bcaa5e9a77cfac -Author: Alexander Shopov -Date: Sat Mar 13 13:29:10 2004 +0000 - - Added Bulgarian translation by Vladimir "Kaladan" Petkov - - 2004-03-13 Alexander Shopov - - * bg.po: Added Bulgarian translation by - Vladimir "Kaladan" Petkov - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/bg.po | 2585 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2595 insertions(+), 1 deletion(-) - -commit 8c441a12f3ea61638cdd74abcd4cfdbc31710857 -Author: Dinesh Nadarajah -Date: Sat Mar 13 00:36:23 2004 +0000 - - Updated Tamil Translation - - - - 2004-03-12 Dinesh Nadarajah - - * ta.po: Updated Tamil Translation - - po/ChangeLog | 4 + - po/ta.po | 3653 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 2145 insertions(+), 1512 deletions(-) - -commit e9c20167b00ff50db54ec3059d484a934fcc0b6c -Author: Maxim Dziumanenko -Date: Fri Mar 12 08:35:15 2004 +0000 - - Updated Ukrainian translation - - 2004-03-12 Maxim Dziumanenko - - * Updated Ukrainian translation - - po/ChangeLog | 4 + - po/uk.po | 905 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 462 insertions(+), 447 deletions(-) - -commit bf3fdf95949d137cf3e248c17da9cfb4e45bfd56 -Author: Marco Pesenti Gritti -Date: Thu Mar 11 17:57:47 2004 +0000 - - Add a MAINTAINERS file - - MAINTAINERS | 2 ++ - 1 file changed, 2 insertions(+) - -commit fd98b93702b73e872f9ce3608c11ed14175b8271 -Author: Miloslav Trmac -Date: Thu Mar 11 15:19:38 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 32 ++++++++++++++++---------------- - 2 files changed, 20 insertions(+), 16 deletions(-) - -commit 1d4a86380660da6caf3ee3dc97d656648ae04d12 -Author: Robert Sedak -Date: Wed Mar 10 20:39:43 2004 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - po/hr.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 1214472ba03d4a0e41dc93a6db418c3cc323dfe3 -Author: Åsmund Skjæveland -Date: Wed Mar 10 11:52:05 2004 +0000 - - Updated Norwegian Nynorsk translation. - - 2004-03-10 Åsmund Skjæveland - - * nn.po: Updated Norwegian Nynorsk translation. - - po/ChangeLog | 4 +++ - po/nn.po | 93 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 56 insertions(+), 41 deletions(-) - -commit 7e1fd124189ee9ca85a1fb43083013b3a0c20f1f -Author: Gustavo Maciel Dias Vieira -Date: Tue Mar 9 22:51:48 2004 +0000 - - Updated Brazilian Portuguese translation. - - 2004-03-09 Gustavo Maciel Dias Vieira - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 1350 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 650 insertions(+), 704 deletions(-) - -commit 5efb35ef771c342d644539a1b7b99a21dd297d30 -Author: Görkem Çetin -Date: Tue Mar 9 21:10:17 2004 +0000 - - CVS_SILENT - - po/tr.po | 2578 +++++++++++++++++++++----------------------------------------- - 1 file changed, 860 insertions(+), 1718 deletions(-) - -commit 13c5eff02cc7456165cb97596425056f646c98ce -Author: smund Skjveland -Date: Tue Mar 9 14:47:32 2004 +0000 - - Added nn to ALL_LINGUAS. Started Norwegian Nynorsk translation. - - 2004-03-09 smund Skjveland - - * configure.in (HAVE_MOZILLA_PSM): Added nn to ALL_LINGUAS. - * po/nn.po: Started Norwegian Nynorsk translation. - - ChangeLog | 5 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/nn.po | 3442 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3452 insertions(+), 1 deletion(-) - -commit dc4e016cefc15a94fc38e766a06f6aae75d39c4a -Author: Priit Laes -Date: Tue Mar 9 13:59:00 2004 +0000 - - Translation updated. - - 2004-03-09 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 ++++ - po/et.po | 78 +++++++++++++++++++++++------------------------------------- - 2 files changed, 34 insertions(+), 48 deletions(-) - -commit a86fd3ec94a878a2181a44c7d3a7b8aced804017 -Author: Fixed the bug #134109 in ja.po. T.Aihana -Date: Tue Mar 9 13:29:51 2004 +0000 - - 2004-03-09 Fixed the bug #134109 in ja.po. T.Aihana - - po/ChangeLog | 4 ++ - po/ja.po | 151 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 79 insertions(+), 76 deletions(-) - -commit ebd8aac95fb45f3d33eac765ba62621d225cc5b6 -Author: Mohammad DAMT -Date: Tue Mar 9 11:09:38 2004 +0000 - - Updated Indonesian translation, missed "system-language" on previous - - 2004-03-09 Mohammad DAMT - - * id.po: Updated Indonesian translation, missed "system-language" on previous checkin - - po/ChangeLog | 4 ++++ - po/id.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit fcb52ca6be8aade9967f96ba959ef845c87289b5 -Author: Roozbeh Pournader -Date: Tue Mar 9 09:31:38 2004 +0000 - - Added translation for "system-language". - - 2004-03-09 Roozbeh Pournader - - * fa.po: Added translation for "system-language". - - po/ChangeLog | 4 ++++ - po/fa.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit c4ba94d05ff383e37651db4589922cf083ff8d10 -Author: Mohammad DAMT -Date: Tue Mar 9 03:40:28 2004 +0000 - - Updated Indonesian translation, fixed bug #134109 - - 2004-03-09 Mohammad DAMT - - * id.po: Updated Indonesian translation, fixed bug #134109 - - po/ChangeLog | 4 + - po/id.po | 1008 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 602 insertions(+), 410 deletions(-) - -commit 546ac1f72ef03ebaaaea5a071a5e85ec840cb60c -Author: Marco Pesenti Gritti -Date: Tue Mar 9 01:03:37 2004 +0000 - - *** empty log message *** - - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e7ef0d831f40551993e94e58c6833887b2ba8613 -Author: Christian Persch -Date: Mon Mar 8 23:46:42 2004 +0000 - - Updating NEWS - - NEWS | 18 ++++++++++++++++++ - 1 file changed, 18 insertions(+) - -commit 132d798d18efdf386d7e74c505b16941406cbd01 -Author: Christian Persch -Date: Mon Mar 8 23:43:31 2004 +0000 - - Check if the dragged item is a separator. Fixes crash when it _is_ a - - 2004-03-09 Christian Persch - - * lib/egg/egg-toolbar-editor.c: (editor_drag_data_received_cb): - - Check if the dragged item is a separator. Fixes crash when it _is_ - a separator. - - * lib/egg/egg-toolbars-model.c: - (egg_toolbars_model_remove_toolbar): - - Fix logic check for removable toolbar, & instead of &&. - - * src/ephy-location-action.c: (create_menu_proxy_cb), - (connect_proxy), (ephy_location_action_activate): - - Don't make a proxy menu item for the location entry. Fixes crash - when trying to activate its proxy menu item. - - ChangeLog | 18 ++++++++++++++++++ - lib/egg/egg-toolbar-editor.c | 9 ++++++++- - lib/egg/egg-toolbars-model.c | 2 +- - src/ephy-location-action.c | 21 ++++++++++++++++++++- - 4 files changed, 47 insertions(+), 3 deletions(-) - -commit 3cf2d7394d21eb2a65be8e6b269d8754e0157b52 -Author: Francisco Javier F. Serrador -Date: Mon Mar 8 22:03:09 2004 +0000 - - Updated Spanish translation. - - 2004-03-08 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++++ - po/es.po | 42 +++++++++++++++++------------------------- - 2 files changed, 21 insertions(+), 25 deletions(-) - -commit 34bbe28b46363cf09ad0c937c0cbd17da98eccc3 -Author: Andraz Tori -Date: Mon Mar 8 21:58:40 2004 +0000 - - Updated Slovenian translation - - po/sl.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f0772d95033cbf64d03c13b2c21f3f0f89f50e23 -Author: Arafat Medini -Date: Mon Mar 8 21:45:14 2004 +0000 - - Updated Arabic translation. - - - 2004-03-08 Arafat Medini - - * ar.po: Updated Arabic translation. - - po/ChangeLog | 4 + - po/ar.po | 495 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 250 insertions(+), 249 deletions(-) - -commit 3e6440536fc4632e7cf26ea070b9335c941eb3bd -Author: Adam Weinberger -Date: Mon Mar 8 21:08:39 2004 +0000 - - Updated Canadian English translation. - - - * en_CA.po: Updated Canadian English translation. - - po/ChangeLog | 4 ++++ - po/en_CA.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 42098ac6ac236307c95927100937c21d16a5cfc0 -Author: Artur Flinta -Date: Mon Mar 8 19:21:14 2004 +0000 - - Updated Polish translation. - - 2004-03-08 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 ++ - po/pl.po | 147 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 77 insertions(+), 74 deletions(-) - -commit 93ac3d952548049b2a2ea974df95f6f122d3169c -Author: Dafydd Harries -Date: Mon Mar 8 16:27:51 2004 +0000 - - Updated Welsh translation from Rhys Jones. - - po/ChangeLog | 4 + - po/cy.po | 3190 ++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 1995 insertions(+), 1199 deletions(-) - -commit 4300db76ec0d6e62e38d6c56a3c7b5388d80358b -Author: Ales Nyakhaychyk -Date: Mon Mar 8 12:25:35 2004 +0000 - - Updated Belarusian translation. - - po/ChangeLog | 4 ++ - po/be.po | 205 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 110 insertions(+), 99 deletions(-) - -commit 09f1e1bd7a75a7ba30addb0b90d83ddbbae86694 -Author: Marco Pesenti Gritti -Date: Sun Mar 7 19:10:31 2004 +0000 - - *** empty log message *** - - NEWS | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 67119a753ffe622d441a78716ad5a8054ec09f29 -Author: Mugurel Tudor -Date: Sun Mar 7 18:10:16 2004 +0000 - - Updated Romanian translation - - 2004-03-07 Mugurel Tudor - - * ro.po: Updated Romanian translation - - po/ChangeLog | 4 + - po/ro.po | 2994 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 1790 insertions(+), 1208 deletions(-) - -commit 43ac9bcdb22dbd988eccffc869771048f4dcf49f -Author: Marco Pesenti Gritti -Date: Sun Mar 7 16:58:54 2004 +0000 - - *** empty log message *** - - ChangeLog | 8 ++++++++ - NEWS | 4 +--- - configure.in | 3 +-- - help/Makefile.am | 2 +- - 4 files changed, 11 insertions(+), 6 deletions(-) - -commit 983fe2683bd79d25a73dc3b440954c47c2086224 -Author: Christian Persch -Date: Sun Mar 7 15:48:54 2004 +0000 - - Updated for 1.1.11. - - 2004-03-07 Christian Persch - - * NEWS: - - Updated for 1.1.11. - - ChangeLog | 6 ++++++ - NEWS | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 75 insertions(+) - -commit bc6690892b6f0305cea2330eb1de52f6150bd735 -Author: Mətin Əmirov -Date: Sat Mar 6 20:27:06 2004 +0000 - - Translation updated. - - 2004-03-06 Mətin Əmirov - - * az.po: Translation updated. - - po/ChangeLog | 4 + - po/az.po | 663 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 400 insertions(+), 267 deletions(-) - -commit 8d8966d04d082c1204de2ad1457e5fb3499f24da -Author: Christian Persch -Date: Sat Mar 6 19:10:32 2004 +0000 - - Really always check the return value of xmlTextReaderRead(), don't advance - - 2004-03-06 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_bookmark), - (xbel_parse_folder), (xbel_parse_xbel), - (ephy_bookmarks_import_xbel): - - Really always check the return value of xmlTextReaderRead(), don't advance - if it's != 1. Fixes bug #136151. - - ChangeLog | 9 ++++ - src/bookmarks/ephy-bookmarks-import.c | 83 +++++++++++++++++++++-------------- - 2 files changed, 60 insertions(+), 32 deletions(-) - -commit 84ecea1dfe100ec37b35f15beb3ce1783886967e -Author: Christian Persch -Date: Sat Mar 6 19:02:38 2004 +0000 - - Fix crash when dragging a link to a tab label; I forgot to change this - - 2004-03-06 Christian Persch - - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - - Fix crash when dragging a link to a tab label; I forgot to change - this making the recent EphyTab/EphyEmbed changes. - - ChangeLog | 7 +++++++ - src/ephy-notebook.c | 9 ++++----- - 2 files changed, 11 insertions(+), 5 deletions(-) - -commit 7c42de499225ffa0e144277c6b20e05fc9a11e6d -Author: Christian Persch -Date: Sat Mar 6 18:40:41 2004 +0000 - - Also pop up the context menu with the menu key. - - 2004-03-06 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: - - Also pop up the context menu with the menu key. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 11 ++++++++++- - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit 12b1cf2ad66f85ea1cde61fd141014e9b4a0e5a1 -Author: Funda Wang -Date: Sat Mar 6 09:17:46 2004 +0000 - - Updated Simplified Chinese translation - - po/ChangeLog | 4 + - po/zh_CN.po | 516 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 265 insertions(+), 255 deletions(-) - -commit dbd35f06c0db70ad9c6df11c407d1996c5065446 -Author: Christian Persch -Date: Fri Mar 5 23:38:10 2004 +0000 - - Persist changed accels with gnome_accelerator_sync(). - - 2004-03-06 Christian Persch - - * src/ephy-main.c: (main): - - Persist changed accels with gnome_accelerator_sync(). - - ChangeLog | 6 ++++++ - src/ephy-main.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 083631169c54136c48d512603b4b241bb207a682 -Author: Christian Persch -Date: Fri Mar 5 23:28:52 2004 +0000 - - Fix --with-mozilla-snapshot help string - - configure.in | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit ac13dcaa2b35cc28f6adf114f1e86278646f4dc7 -Author: Christian Persch -Date: Fri Mar 5 22:25:27 2004 +0000 - - Increase MOZILLA_SNAPSHOT for 1.7b, and depend on gtk+ >= 2.3.5. - - 2004-03-05 Christian Persch - - * configure.in: - - Increase MOZILLA_SNAPSHOT for 1.7b, and depend on gtk+ >= 2.3.5. - - * embed/mozilla/GlobalHistory.cpp: - - Adapt to changed mozilla API. - - ChangeLog | 10 ++++++++++ - configure.in | 10 +++++----- - embed/mozilla/GlobalHistory.cpp | 8 ++++++++ - 3 files changed, 23 insertions(+), 5 deletions(-) - -commit e84ae1938ab8d79442a7f82580e3f965f78f461a -Author: Christian Persch -Date: Fri Mar 5 11:48:17 2004 +0000 - - Don't return an error when a DOM document isn't a HTML document, it's ok - - 2004-03-05 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Don't return an error when a DOM document isn't a HTML document, it's ok - not to be one (happens for XUL docs, like about:config). - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 3 ++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit efbcfccc35fffe945d517716db426730b7da3c6b -Author: Christian Persch -Date: Fri Mar 5 00:31:06 2004 +0000 - - Don't assume Desktop directory location, check the gconf key if it's - - 2004-03-05 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_downloads_dir): - - Don't assume Desktop directory location, check the gconf key if it's - $HOME/Desktop or $HOME. Fixes bug #134951. - - ChangeLog | 7 +++++++ - lib/ephy-file-helpers.c | 19 +++++++++++++++++-- - 2 files changed, 24 insertions(+), 2 deletions(-) - -commit a6a3257ce715d1e88f656b29def443829af1967d -Author: Christian Persch -Date: Fri Mar 5 00:29:00 2004 +0000 - - Replace filename validity check, it was making the filename invalid - - 2004-03-05 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - - Replace filename validity check, it was making the filename invalid - UTF-16. Simply convert to UTF-8 beforehand and check for "/" chars. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 17 +++++++---------- - 2 files changed, 14 insertions(+), 10 deletions(-) - -commit 4cd87708ec25ca956f690a6b46ac140985973a5f -Author: Christian Persch -Date: Thu Mar 4 23:09:02 2004 +0000 - - Don't use ephy_tab_get_embed(), instead use the pointer provided when we - - 2004-03-05 Christian Persch - - * src/ephy-tab.c: (ephy_tab_address_cb), (ephy_tab_title_cb), - (ensure_page_info), (ephy_tab_net_state_cb), - (clipboard_text_received_cb), (ephy_tab_dom_mouse_click_cb), - (ephy_tab_update_navigation_flags), (ephy_tab_set_title): - - Don't use ephy_tab_get_embed(), instead use the pointer provided when - we connected the callbacks. Hopefully fixes bug #136122. - - ChangeLog | 10 ++++++++++ - src/ephy-tab.c | 38 ++++++++++++++++++-------------------- - 2 files changed, 28 insertions(+), 20 deletions(-) - -commit d56b7132f6f5094ae837d6fa34a448c676c32f65 -Author: Christian Persch -Date: Thu Mar 4 19:32:29 2004 +0000 - - Don't set the 5-star icon as window icon for the about dialogue. Fixes bug - - 2004-03-04 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Don't set the 5-star icon as window icon for the about dialogue. - Fixes bug #135010. - - ChangeLog | 7 +++++++ - src/window-commands.c | 8 -------- - 2 files changed, 7 insertions(+), 8 deletions(-) - -commit b83aa6628df3a70705e6beb4dced8fd2c36cbda4 -Author: Christian Persch -Date: Wed Mar 3 21:53:19 2004 +0000 - - Change wait interval between updates to 0.2 s. - - 2004-03-03 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Change wait interval between updates to 0.2 s. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a65777247b2c4a412ee1972cab884f462dc19276 -Author: Christian Persch -Date: Wed Mar 3 19:54:36 2004 +0000 - - Copy and modify gnome_vfs_uri_list_parse() so that we get a list of string - - 2004-03-03 Christian Persch - - * lib/widgets/ephy-node-view.c: (uri_list_parse), - (drag_data_received_cb): - - Copy and modify gnome_vfs_uri_list_parse() so that we get a list - of string uris instead of GnomeVFSURIs. Change signature of - ::node-dropped accordingly. Fixes bug #120231. - - * src/bookmarks/ephy-bookmarks-editor.c: (node_dropped_cb): - - Adapt to the changed ::node-dropped signal signature. - - ChangeLog | 13 +++++++ - lib/widgets/ephy-node-view.c | 59 ++++++++++++++++++++++++++++++-- - lib/widgets/ephy-node-view.h | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 6 +--- - src/bookmarks/ephy-bookmarks-editor.c | 7 ++-- - 5 files changed, 73 insertions(+), 14 deletions(-) - -commit ade55d6a9658567dcefb18fc0d536a7e3eed0c8c -Author: Christian Persch -Date: Wed Mar 3 19:06:24 2004 +0000 - - Unset the GValue after we're done using what it contained. - - 2004-03-03 Christian Persch - - * embed/downloader-view.c: (download_dialog_pause_cb), - (download_dialog_abort_cb): - - Unset the GValue after we're done using what it contained. - - * embed/mozilla/MozDownload.cpp: - - Weak ref mEphyDownload, and assert that is has been finalised by the time - we get to ~MozDownload. - - * embed/mozilla/mozilla-download.cpp: - - Debug output in _init and _finalize. - - ChangeLog | 16 ++++++++++++++++ - embed/downloader-view.c | 9 ++++++--- - embed/mozilla/MozDownload.cpp | 4 ++++ - embed/mozilla/mozilla-download.cpp | 6 ++++++ - 4 files changed, 32 insertions(+), 3 deletions(-) - -commit b96b5b6cf8faac19449cf6800f72ce1e610a69ea -Author: Christian Persch -Date: Tue Mar 2 23:07:55 2004 +0000 - - If the favicon isn't ready when we need it, connect to the favicon cache's - - 2004-03-03 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (favicon_cache_changed_cb), - (ephy_bookmark_action_sync_icon), (ephy_bookmark_action_init): - - If the favicon isn't ready when we need it, connect to the favicon - cache's ::changed signal to show it when we have it. Fixes bug #135855. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmark-action.c | 30 +++++++++++++++++++++++++++++- - 2 files changed, 37 insertions(+), 1 deletion(-) - -commit f1aa66dd9f10aac79e6b9b98e908387895adb7bd -Author: Andras Timar -Date: Tue Mar 2 21:43:56 2004 +0000 - - Updated Hungarian translation. - - 2004-03-02 Andras Timar - - * hu.po: Updated Hungarian translation. - - po/ChangeLog | 4 + - po/hu.po | 2860 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1613 insertions(+), 1251 deletions(-) - -commit 28a9f9230e12ff47873ef6d46b537ca5d471d62a -Author: Marco Pesenti Gritti -Date: Tue Mar 2 19:24:07 2004 +0000 - - Do not show the unsubmitted dialog for js close - - 2004-03-02 Marco Pesenti Gritti - - * src/ephy-tab.c: (ephy_tab_destroy_brsr_cb): - - Do not show the unsubmitted dialog for js close - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 7 ++++++- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 853902273b645bd4f3776e3283365d10abee6de6 -Author: Christian Persch -Date: Tue Mar 2 17:15:17 2004 +0000 - - Don't remember the size of the filechoose dialogue, because it doesn't - - 2004-03-02 Christian Persch - - * lib/ephy-file-chooser.c: (ephy_file_chooser_init): - - Don't remember the size of the filechoose dialogue, because it doesn't - play nicely with the new save mode when toggling the expander. - Fixes bug #135947. - - ChangeLog | 8 ++++++++ - lib/ephy-file-chooser.c | 5 ----- - 2 files changed, 8 insertions(+), 5 deletions(-) - -commit 9dd3ec59aa5060a32662bff26fdb6961143b8c38 -Author: Marco Pesenti Gritti -Date: Tue Mar 2 12:42:34 2004 +0000 - - Never show two resume dialogs, just re-present the old one. - - 2004-03-02 Marco Pesenti Gritti - - * src/ephy-session.c: (ephy_session_init), (offer_to_resume), - (ephy_session_autoresume): - - Never show two resume dialogs, just re-present the old one. - - ChangeLog | 7 +++++++ - src/ephy-session.c | 17 +++++++++++++++-- - 2 files changed, 22 insertions(+), 2 deletions(-) - -commit f240b3e2e9cb44326ef22c033944cc15251f321f -Author: Christian Rose -Date: Mon Mar 1 21:46:00 2004 +0000 - - Another fix. - - 2004-03-01 Christian Rose - - * sv.po: Another fix. - - po/ChangeLog | 4 ++++ - po/sv.po | 16 +++++++++------- - 2 files changed, 13 insertions(+), 7 deletions(-) - -commit 802b407b953c242977fd49c4fe78f0d4729f44f8 -Author: Christian Persch -Date: Mon Mar 1 21:32:31 2004 +0000 - - Don't try to backup non-existing files :) Also, when neither - - 2004-03-01 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (backup_file), - (ephy_bookmarks_init): - - Don't try to backup non-existing files :) - Also, when neither ephy-bookmarks.xml nor bookmarks.rdf exist, - assume we have a new profile and don't warn about missing bookmarks. - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-bookmarks.c | 16 +++++++++++++--- - 2 files changed, 22 insertions(+), 3 deletions(-) - -commit f460e4b8e7ab36fc1deeb753a1ca8baa7d6116b8 -Author: Christian Persch -Date: Mon Mar 1 21:30:47 2004 +0000 - - Correctly sync the smarturl property of EphyBookmarksAction when it - - 2004-03-01 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (smart_child_added_cb), - (smart_child_removed_cb), (ephy_bookmark_action_init): - - Correctly sync the smarturl property of EphyBookmarksAction when - it changes. Fixes incorrect show/hide of the entry on the bookmarks - toolbar. - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-bookmark-action.c | 30 ++++++++++++++++++++++++++++++ - 2 files changed, 39 insertions(+) - -commit 67a48b9741659c516d6e62f0a9f85a3493d8010f -Author: Christian Persch -Date: Mon Mar 1 20:12:32 2004 +0000 - - When changing a bookmark address and it was a smart bookmark but now is - - 2004-03-01 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (update_has_smart_address): - - When changing a bookmark address and it was a smart bookmark but - now is not anymore, remove the bookmark from the smart_bmks node - instead of adding it :) - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks.c | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 048097ea7ab957055ba125557bac9e96d7754129 -Author: Christian Persch -Date: Mon Mar 1 19:37:39 2004 +0000 - - Ensure we always have a BookmarksBar toolbar in the model. Fixes bug - - 2004-03-01 Christian Persch - - * src/ephy-toolbars-model.c: (get_toolbar_pos), - (ephy_toolbars_model_set_bookmarks): - - Ensure we always have a BookmarksBar toolbar in the model. - Fixes bug #135701. - - ChangeLog | 8 +++++++ - src/ephy-toolbars-model.c | 55 ++++++++++++++++++++++++++--------------------- - 2 files changed, 39 insertions(+), 24 deletions(-) - -commit 450175b2b569994aeb7f1efa2a70a23b40f01d4a -Author: Marco Pesenti Gritti -Date: Mon Mar 1 19:20:41 2004 +0000 - - The icon should be activated by double click - - 2004-03-01 Marco Pesenti Gritti - - * lib/egg/eggstatusicon.c: (egg_status_icon_init), - (egg_status_icon_button_press): - - The icon should be activated by double click - - ChangeLog | 7 +++++++ - lib/egg/eggstatusicon.c | 21 +-------------------- - 2 files changed, 8 insertions(+), 20 deletions(-) - -commit 6a49aa9c4ba94c03f89895d7fb43f09a49726eea -Author: Christian Rose -Date: Mon Mar 1 18:35:12 2004 +0000 - - Small fix. - - 2004-03-01 Christian Rose - - * sv.po: Small fix. - - po/ChangeLog | 4 +++ - po/sv.po | 87 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 47 insertions(+), 44 deletions(-) - -commit 9e5ce4a882f45b9495c375e29b1041bbb2ccd778 -Author: Christian Persch -Date: Mon Mar 1 18:19:10 2004 +0000 - - Add API docs. - - 2004-03-01 Christian Persch - - * src/ephy-statusbar.c: - - Add API docs. - - ChangeLog | 6 ++++++ - src/ephy-statusbar.c | 44 ++++++++++++++++++++++++++++++++++++++------ - 2 files changed, 44 insertions(+), 6 deletions(-) - -commit ec64dc73df5f93278f40e80111b0b332549824bc -Author: Christian Persch -Date: Mon Mar 1 18:16:33 2004 +0000 - - If reading the bookmarks file, or re-importing the bookmarks from the rdf - - 2004-03-01 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (backup_file), - (ephy_bookmarks_init): - - If reading the bookmarks file, or re-importing the bookmarks from the - rdf file fails, back up those files so that the user can afterwards - try to manually recover his bookmarks. Fixes bug #128308. - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-bookmarks.c | 40 ++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 49 insertions(+) - -commit 937f23e417318217832d28c30112dbc98f0bde22 -Author: Christian Persch -Date: Mon Mar 1 18:14:33 2004 +0000 - - Fix XBEL importer not to tag all bookmarks with a "Bookmarks" category. - - 2004-03-01 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_folder), - (xbel_parse_xbel), (ephy_bookmarks_import_xbel): - - Fix XBEL importer not to tag all bookmarks with a "Bookmarks" category. - - ChangeLog | 7 +++ - src/bookmarks/ephy-bookmarks-import.c | 96 +++++++++++++++++++++++++++++++++-- - 2 files changed, 99 insertions(+), 4 deletions(-) - -commit cece4687ac9fed887e0775c2914df1ddfc571fcf -Author: Christian Persch -Date: Mon Mar 1 15:53:44 2004 +0000 - - Export ephy_statusbar_add_widget() for use by extensions. - - 2004-03-01 Christian Persch - - * src/ephy-statusbar.c: (create_statusbar_security_icon), - (ephy_statusbar_add_widget): - * src/ephy-statusbar.h: - - Export ephy_statusbar_add_widget() for use by extensions. - - ChangeLog | 8 ++++++++ - src/ephy-statusbar.c | 16 +++++++++++++--- - src/ephy-statusbar.h | 3 +++ - 3 files changed, 24 insertions(+), 3 deletions(-) - -commit c188dd53cc7ee893f271384bb3928fe9c45f97a5 -Author: Christian Persch -Date: Mon Mar 1 14:51:30 2004 +0000 - - Guard against xml reading error, check for NULL subtree before trying to - - 2003-03-01 Christian Persch - - * lib/ephy-node-db.c: (ephy_node_db_load_from_file): - - Guard against xml reading error, check for NULL subtree before - trying to parse it. - - ChangeLog | 7 +++++++ - lib/ephy-node-db.c | 8 +++++--- - 2 files changed, 12 insertions(+), 3 deletions(-) - -commit 2737b39233fc4cf0cfa332a233371e3344f6c99c -Author: Marco Pesenti Gritti -Date: Mon Mar 1 00:58:50 2004 +0000 - - Keep a ref for downloads in the view. - - 2004-03-01 Marco Pesenti Gritti - - * embed/downloader-view.c: (downloader_view_add_download), - (downloader_view_remove_download): - - Keep a ref for downloads in the view. - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - - Ensure the download directory exist. - - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/mozilla-download.cpp: - * embed/mozilla/mozilla-download.h: - - Use a property to store MozDownload in the - wrapper. The wrapper now keep a reference - on the c++ implementation, that way references - will be correctly propagated (unreffing the - GObject will unref the c++ object). - - (Bug 135755) - - ChangeLog | 24 +++++++++ - embed/downloader-view.c | 3 ++ - embed/mozilla/ContentHandler.cpp | 6 +-- - embed/mozilla/ContentHandler.h | 2 +- - embed/mozilla/MozDownload.cpp | 13 +++-- - embed/mozilla/mozilla-download.cpp | 102 ++++++++++++++++++++++++++++++++----- - embed/mozilla/mozilla-download.h | 4 +- - 7 files changed, 131 insertions(+), 23 deletions(-) - -commit 4461c9354db2be499323f99a2fe17fab73df3eba -Author: Marco Pesenti Gritti -Date: Sun Feb 29 18:20:32 2004 +0000 - - Correct the label of the action button (Open) - - 2004-02-29 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - - Correct the label of the action button (Open) - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 9 ++++++--- - 2 files changed, 12 insertions(+), 3 deletions(-) - -commit 7235264b18ffdbb7630360f65166c2bf44d4b42f -Author: Christian Persch -Date: Sun Feb 29 18:03:55 2004 +0000 - - Iterate backwards over the children when removing a host. - - 2004-02-29 Christian Persch - - * embed/ephy-history.c: (remove_obsolete_pages): - - Iterate backwards over the children when removing a host. - - ChangeLog | 6 ++++++ - embed/ephy-history.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 383b14ee06a64bcdc7ec310dc1797be1d7d6d20e -Author: Christian Persch -Date: Sun Feb 29 17:59:32 2004 +0000 - - Remove cancelled downloads from the downloads hash; and remove partially - - 2004-02-29 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_class_init), - (kill_download), (ephy_favicon_cache_finalize), - (favicon_name_build), (favicon_download_completed_cb), - (favicon_download_cancelled_cb), (ephy_favicon_cache_download), - (ephy_favicon_cache_get): - * embed/ephy-favicon-cache.h: - - Remove cancelled downloads from the downloads hash; and remove - partially downloaded favicons. - - ChangeLog | 12 ++++++ - embed/ephy-favicon-cache.c | 103 +++++++++++++++++++++++++++++---------------- - embed/ephy-favicon-cache.h | 41 +++++++++--------- - 3 files changed, 98 insertions(+), 58 deletions(-) - -commit cbbf7c86bcc83b0225dd37272d4c1740641a2980 -Author: Christian Persch -Date: Sun Feb 29 14:24:40 2004 +0000 - - Add debug output in ctors and dtors. - - 2004-02-29 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/PrintingPromptService.cpp: - - Add debug output in ctors and dtors. - - ChangeLog | 11 +++++++++++ - embed/mozilla/ContentHandler.cpp | 4 ++-- - embed/mozilla/EphyHeaderSniffer.cpp | 6 +++--- - embed/mozilla/FilePicker.cpp | 4 ++-- - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 3 +++ - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 4 +++- - embed/mozilla/PrintingPromptService.cpp | 3 +++ - 7 files changed, 27 insertions(+), 8 deletions(-) - -commit 29e6bdcbc9eda0694e67689eabc97070f0911437 -Author: Christian Persch -Date: Sun Feb 29 13:29:21 2004 +0000 - - Separately profile bookmarks menu clean and rebuild. - - 2004-02-29 Christian Persch - - * src/bookmarks/ephy-bookmarks-menu.c: (ephy_bookmarks_menu_clean), - (ephy_bookmarks_menu_rebuild): - - Separately profile bookmarks menu clean and rebuild. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-menu.c | 8 ++++++-- - 2 files changed, 13 insertions(+), 2 deletions(-) - -commit 7638b82e1c60be930d3b9f98e403e21ee61df2f3 -Author: Christian Persch -Date: Sun Feb 29 13:25:19 2004 +0000 - - Add "cancelled" signal to EphyEmbedPersist. - - 2004-02-29 Christian Persch - - * embed/ephy-embed-persist.c: (ephy_embed_persist_class_init): - * embed/ephy-embed-persist.h: - - Add "cancelled" signal to EphyEmbedPersist. - - * embed/mozilla/mozilla-embed-persist.cpp: - - Emit "cancelled" signal when the download is cancelled. - - ChangeLog | 11 +++++++++++ - embed/ephy-embed-persist.c | 20 ++++++++++++++------ - embed/ephy-embed-persist.h | 1 + - embed/mozilla/mozilla-embed-persist.cpp | 1 + - 4 files changed, 27 insertions(+), 6 deletions(-) - -commit 4d9c8b44c8d04b463dfe1e8e0ae1d79d69c8009f -Author: Christian Persch -Date: Sun Feb 29 13:23:28 2004 +0000 - - Add debug output. - - 2004-02-29 Christian Persch - - * embed/mozilla/mozilla-embed-event.cpp: (mozilla_embed_event_init), - (mozilla_embed_event_finalize), (mozilla_embed_event_set_property): - - Add debug output. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-event.cpp | 10 ++++++++++ - 2 files changed, 17 insertions(+) - -commit b739c9c7b5cdf56705049b9fd5e9d745b7c3d1e6 -Author: Christian Persch -Date: Sun Feb 29 13:21:53 2004 +0000 - - Decode RFC 2231 and RFC 2047 encoded filenames in content-disposition - - 2004-02-29 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: (PerformSave): - - Decode RFC 2231 and RFC 2047 encoded filenames in content-disposition - headers. Ported from mozilla Camino, see - http://bugzilla.mozilla.org/show_bug.cgi?id=233798 . - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 40 +++++++++++++++++++++++++++++++++++++ - 2 files changed, 48 insertions(+) - -commit e384714845c1bd7a98dc2a3652a7192423e96bb6 -Author: Christian Persch -Date: Sun Feb 29 13:18:50 2004 +0000 - - Add debug output. - - 2004-02-29 Christian Persch - - * embed/mozilla/MozDownload.cpp: (MozDownload), (~MozDownload): - - Add debug output. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 6 +++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 9f0b13d2450440eb4fdb8944f749448471d98c17 -Author: Marco Pesenti Gritti -Date: Sun Feb 29 11:33:30 2004 +0000 - - Fix max size logic, thanks to chpe. - - 2004-02-29 Marco Pesenti Gritti - - * embed/mozilla/MozDownload.cpp: - - Fix max size logic, thanks to chpe. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 1419787b3ca3874501d0530d81c8c714a2e26547 -Author: Marco Pesenti Gritti -Date: Sun Feb 29 10:57:13 2004 +0000 - - Fix order of the windows, they was reversed before. - - 2004-02-29 Marco Pesenti Gritti - - * src/ephy-session.c: (impl_attach_window), - (ephy_session_add_window): - - Fix order of the windows, they was reversed before. - - ChangeLog | 7 +++++++ - src/ephy-session.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 23629b0702936f71438b25301426a57554267090 -Author: Marco Pesenti Gritti -Date: Sat Feb 28 20:41:08 2004 +0000 - - fix typo that was causing categorized bookmarks to go in the uncategorized - - 2004-02-28 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks.c: (topics_removed_cb): - - fix typo that was causing categorized bookmarks to - go in the uncategorized topic (Bug #135702) - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 3c50869157c2b9048a8059bb57d1ceb6d743249b -Author: Christian Persch -Date: Sat Feb 28 20:15:08 2004 +0000 - - If a folder has no name, don't tag its bookmarks with "Untitled" keyword, - - 2004-02-28 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_folder), - (ephy_bookmarks_import_xbel): - - If a folder has no name, don't tag its bookmarks with "Untitled" - keyword, just skip it. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-import.c | 9 ++++++--- - 2 files changed, 14 insertions(+), 3 deletions(-) - -commit dea0b1f586422b9ce905e83ac314695b75f72c09 -Author: Pauli Virtanen -Date: Sat Feb 28 17:57:22 2004 +0000 - - Updated Finnish translation. - - 2004-02-28 Pauli Virtanen - - * fi.po: Updated Finnish translation. - - po/ChangeLog | 4 + - po/fi.po | 352 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 184 insertions(+), 172 deletions(-) - -commit c6309fb76ebf53bb76ba90c2f2b497de33674409 -Author: Duarte Loreto -Date: Sat Feb 28 13:52:12 2004 +0000 - - Updated Portuguese translation. - - 2004-02-28 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 ++ - po/pt.po | 126 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 71 insertions(+), 59 deletions(-) - -commit 5af89a28e1d5302f351a714a711ddc4ead5320b0 -Author: Marco Pesenti Gritti -Date: Sat Feb 28 10:47:03 2004 +0000 - - Use getInterface to get the dom window from the docshell, not - - 2004-02-28 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - - Use getInterface to get the dom window from the - docshell, not queryInterface. (Bug #121160) - - * embed/mozilla/MozillaPrivate.cpp: - - Do not fallback to the active window if - the parent cannot be found. It just hides problems - and cause more annoying behaviors (like dialogs - parented on the wrong window). - - ChangeLog | 14 ++++++++++++++ - embed/mozilla/ContentHandler.cpp | 9 +++------ - embed/mozilla/MozillaPrivate.cpp | 24 +++++++++--------------- - 3 files changed, 26 insertions(+), 21 deletions(-) - -commit c5cb67fcff408482f964020079910dc3475fef25 -Author: Christophe Merlet -Date: Sat Feb 28 10:18:19 2004 +0000 - - Updated French translation. - - po/ChangeLog | 4 ++ - po/fr.po | 137 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 77 insertions(+), 64 deletions(-) - -commit 2a9ddce8d7385c985fc9258988a55e9a80e32bd0 -Author: Priit Laes -Date: Sat Feb 28 09:24:22 2004 +0000 - - Translation updated. - - 2004-02-28 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 +++ - po/et.po | 86 ++++++++++++++++++++++++++---------------------------------- - 2 files changed, 41 insertions(+), 49 deletions(-) - -commit b9ab35e5f88b5dfa98bfc682ebf508d7e10fe840 -Author: Marco Pesenti Gritti -Date: Sat Feb 28 00:53:59 2004 +0000 - - Add a note about changelog entry. - - 2004-02-28 Marco Pesenti Gritti - - * HACKING: - - Add a note about changelog entry. - - * TODO: - - Remove old stuff - - ChangeLog | 10 ++++++++++ - HACKING | 16 ++++++++++++++++ - TODO | 11 ----------- - 3 files changed, 26 insertions(+), 11 deletions(-) - -commit 4dad5fa5c5e4ce8c0f28d516d6a1781e8ecf9514 -Author: Marco Pesenti Gritti -Date: Sat Feb 28 00:45:05 2004 +0000 - - Sucky but not intrusive hack to make dnd on the address entry work when - - 2004-02-28 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: - (egg_editable_toolbar_get_edit_mode): - * lib/egg/egg-editable-toolbar.h: - * lib/widgets/ephy-location-entry.c: (toolbar_is_editable), - (entry_drag_motion_cb), (entry_drag_drop_cb), - (ephy_location_entry_construct_contents): - - Sucky but not intrusive hack to make dnd on the address - entry work when editing toolbar. A better solution - will be found when the toolbar editor will get in gtk. - Based on a patch from Søren Sandmann, bug 132467. - - ChangeLog | 14 +++++++++++ - lib/egg/egg-editable-toolbar.c | 6 +++++ - lib/egg/egg-editable-toolbar.h | 1 + - lib/widgets/ephy-location-entry.c | 52 +++++++++++++++++++++++++++++++++++++++ - 4 files changed, 73 insertions(+) - -commit 86636557589b2102a506aea689c3f06a646dbcfe -Author: Xan Lopez -Date: Fri Feb 27 23:34:16 2004 +0000 - - Add missing check for Firebird bookmarks, patch by Andr Dahlqvist. - - - Add missing check for Firebird bookmarks, patch by Andr Dahlqvist. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-import.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 78fc10863afdecaee83eaa18c9766fffd5dd9e23 -Author: Marco Pesenti Gritti -Date: Fri Feb 27 19:42:55 2004 +0000 - - Remove an useless check. - - 2004-02-27 Marco Pesenti Gritti - - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - Remove an useless check. - - * lib/ephy-state.c: (ephy_state_window_set_size): - - Make sure window is never bigger than screen. - - ChangeLog | 11 +++++++++++ - embed/mozilla/MozDownload.cpp | 12 +----------- - embed/mozilla/MozDownload.h | 1 - - lib/ephy-state.c | 12 ++++++++++-- - 4 files changed, 22 insertions(+), 14 deletions(-) - -commit a0393b9cd91a4978bcae1e757d520d158b8b2610 -Author: Christian Persch -Date: Fri Feb 27 14:51:39 2004 +0000 - - Depend on gk+ >= 2.3.4, but since the filechooser API changed, you'll - - 2004-02-27 Christian Persch - - * configure.in: - - Depend on gk+ >= 2.3.4, but since the filechooser API changed, you'll really - - ChangeLog | 7 +++++++ - configure.in | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit b19f5097e2c7c2a433f48064346685cfc89a16ce -Author: Christian Persch -Date: Fri Feb 27 14:50:01 2004 +0000 - - Fix for gtk+ filechooser API change. - - 2004-02-27 Christian Persch - - * embed/mozilla/FilePicker.cpp: - * lib/ephy-file-chooser.c: (ephy_file_chooser_init), - (ephy_file_chooser_new): - * src/prefs-dialog.c: (prefs_download_path_button_clicked_cb): - - Fix for gtk+ filechooser API change. - - ChangeLog | 9 +++++++++ - embed/mozilla/FilePicker.cpp | 21 ++++++++++++++------- - lib/ephy-file-chooser.c | 6 ++++-- - src/prefs-dialog.c | 3 +-- - 4 files changed, 28 insertions(+), 11 deletions(-) - -commit 9f59023c308b583478e4519cf8d08419db4361b0 -Author: Christian Persch -Date: Fri Feb 27 14:44:27 2004 +0000 - - Fix potential crash. - - 2004-02-27 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (ns_parse_bookmark_item): - - Fix potential crash. - - (ephy_bookmarks_import_mozilla): - - Fix mem leak. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmarks-import.c | 9 +++++++-- - 2 files changed, 17 insertions(+), 2 deletions(-) - -commit 05f52f8139eb2c0b7ee0a1610422c6cede3ece44 -Author: Christian Persch -Date: Fri Feb 27 14:33:24 2004 +0000 - - Replace entities also in folder names, fixes bug #135440. - - 2004-02-27 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import_mozilla): - - Replace entities also in folder names, fixes bug #135440. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-import.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 9994c33eef40ccd7cf5cdb4ec6d97c8d315b8c8b -Author: Priit Laes -Date: Fri Feb 27 12:16:20 2004 +0000 - - Translation updated. - - 2004-02-27 Priit Laes - - * et.po: Translation updated. - - po/ChangeLog | 4 + - po/et.po | 3017 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1776 insertions(+), 1245 deletions(-) - -commit 52b1a5be882c18dc03afa573edb18953e3541c5a -Author: Vincent van Adrighem -Date: Thu Feb 26 14:26:27 2004 +0000 - - Translation updated by Kees van den Broek. - - 2004-02-26 Vincent van Adrighem - - * nl.po: Translation updated by Kees van den Broek. - - po/ChangeLog | 4 ++++ - po/nl.po | 20 +++++++++++--------- - 2 files changed, 15 insertions(+), 9 deletions(-) - -commit 532ffd53068293e685db34ee193b0faddd25aaff -Author: Marco Pesenti Gritti -Date: Thu Feb 26 10:44:54 2004 +0000 - - Do not show about:blank to the user, an empty address bar will do better. - - 2004-02-26 Marco Pesenti Gritti - - * src/ephy-tab.c: (ephy_tab_address_cb), (ensure_page_info): - - Do not show about:blank to the user, an empty address bar - will do better. - When the address bar is empty (no page or blank page is - loaded) set the address before loading succeeded. - - ChangeLog | 9 +++++++++ - src/ephy-tab.c | 17 +++++++++++++++-- - 2 files changed, 24 insertions(+), 2 deletions(-) - -commit 0fd5b2339cd2406e6bff1e883b68931c8a1a1aa2 -Author: Alessio Frusciante -Date: Wed Feb 25 19:54:32 2004 +0000 - - Updated Italian translation. - - po/ChangeLog | 5 + - po/it.po | 1305 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 752 insertions(+), 558 deletions(-) - -commit 526fc5eb584f1437c2a81719460b96a9bb463cfa -Author: Christian Persch -Date: Wed Feb 25 11:13:00 2004 +0000 - - Check for NULL before converting filename to UTF-8. - - 2004-02-25 Christian Persch - - * src/window-commands.c: (open_response_cb): - - Check for NULL before converting filename to UTF-8. - - ChangeLog | 6 ++++++ - src/window-commands.c | 23 +++++++++++++---------- - 2 files changed, 19 insertions(+), 10 deletions(-) - -commit 9fb6164dd427630f8e72d69113c48a78dd449bc8 -Author: Marco Pesenti Gritti -Date: Tue Feb 24 23:44:58 2004 +0000 - - Make max size property use long / bytes. - - 2004-02-25 Marco Pesenti Gritti - - * embed/ephy-embed-persist.c: (ephy_embed_persist_set_max_size), - (ephy_embed_persist_set_property), - (ephy_embed_persist_get_property), (ephy_embed_persist_init), - (ephy_embed_persist_class_init): - * embed/ephy-embed-persist.h: - - Make max size property use long / bytes. - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download): - - Correct to use bytes. - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - * embed/mozilla/mozilla-embed-persist.cpp: - - Actually respect the max_size property. - - ChangeLog | 21 +++++++++++++++++++++ - embed/ephy-embed-persist.c | 14 +++++++------- - embed/ephy-embed-persist.h | 2 +- - embed/ephy-favicon-cache.c | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/MozDownload.cpp | 19 +++++++++++++++---- - embed/mozilla/MozDownload.h | 6 ++++-- - embed/mozilla/mozilla-embed-persist.cpp | 4 ++-- - 8 files changed, 52 insertions(+), 18 deletions(-) - -commit d055989e9fc45f0849de45ec00e02802e6769dc0 -Author: Christian Persch -Date: Tue Feb 24 21:19:48 2004 +0000 - - Change this back to simply do g_idle_add(), accidentally forgot to revert - - 2004-02-24 Christian Persch - - * src/ephy-tab.c: (let_me_resize_hack), (ephy_tab_size_to_cb): - - Change this back to simply do g_idle_add(), accidentally forgot to - revert my change. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 16 +++------------- - 2 files changed, 10 insertions(+), 13 deletions(-) - -commit de0c483b6db034cf0ad1590318a537ab5043b490 -Author: Xan Lopez -Date: Tue Feb 24 19:59:00 2004 +0000 - - Unescape filenames whenever possible. - - - Unescape filenames whenever possible. - - ChangeLog | 10 ++++++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 15 +++++++++++++-- - src/popup-commands.c | 2 +- - 3 files changed, 24 insertions(+), 3 deletions(-) - -commit 881bfd24e673370efefc8f5ceb3cec3afa9e44bc -Author: Christian Persch -Date: Tue Feb 24 17:43:48 2004 +0000 - - Make EphyTab inherit from GtkBin, and contain the EphyEmbed as its child. - - 2004-02-24 Christian Persch - - * src/ephy-nautilus-view.c: (gnv_embed_new_window_cb): - * src/ephy-notebook.c: (ephy_notebook_class_init), - (tab_label_size_request_cb), (ephy_notebook_move_tab), (move_tab), - (motion_notify_cb), (move_tab_to_another_notebook), - (button_release_cb), (ephy_notebook_switch_page_cb), - (ephy_notebook_init), (close_button_clicked_cb), (build_tab_label), - (ephy_notebook_insert_tab), (smart_tab_switching_on_closure), - (ephy_notebook_remove_tab): - * src/ephy-notebook.h: - * src/ephy-session.c: (tab_added_cb), (tab_removed_cb): - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-tab.c: (ephy_tab_get_type), (ephy_tab_size_allocate), - (ephy_tab_parent_set), (ephy_tab_class_init), (ephy_tab_finalize), - (ephy_tab_new), (ephy_tab_get_embed), (ephy_tab_for_embed), - (ephy_tab_new_window_cb), (let_me_resize_hack), - (ephy_tab_visibility_cb), (ephy_tab_size_to_cb), - (ephy_tab_dom_mouse_click_cb), (ephy_tab_init), - (ephy_tab_update_navigation_flags), (ephy_tab_set_title): - * src/ephy-tab.h: - * src/ephy-tabs-menu.c: (tab_added_cb), (tab_removed_cb), - (tabs_reordered_cb), (ephy_tabs_menu_set_window), - (ephy_tabs_menu_update): - * src/ephy-window.c: (tab_added_cb), (tab_removed_cb), - (tab_detached_cb), (tabs_reordered_cb), (tab_delete_cb), - (setup_notebook), (ephy_window_add_tab), (ephy_window_jump_to_tab), - (real_get_active_tab), (ephy_window_remove_tab), - (ephy_window_get_active_tab), (ephy_window_get_active_embed), - (ephy_window_get_tabs): - * src/ephy-window.h: - * src/window-commands.c: (window_cmd_tabs_move_left), - (window_cmd_tabs_move_right), (window_cmd_tabs_detach): - - Make EphyTab inherit from GtkBin, and contain the EphyEmbed as its child. - - ChangeLog | 36 ++++++++++ - src/ephy-nautilus-view.c | 3 +- - src/ephy-notebook.c | 167 ++++++++++++++++++++++++----------------------- - src/ephy-notebook.h | 43 ++++++------ - src/ephy-session.c | 8 +-- - src/ephy-shell.c | 3 +- - src/ephy-tab.c | 138 ++++++++++++++++++++++----------------- - src/ephy-tab.h | 7 +- - src/ephy-tabs-menu.c | 36 ++++------ - src/ephy-window.c | 103 +++++++++++++---------------- - src/ephy-window.h | 2 +- - src/window-commands.c | 15 +++-- - 12 files changed, 297 insertions(+), 264 deletions(-) - -commit cb176ab1f40f443c4051fb430c8b6ccb79290f67 -Author: Kjartan Maraas -Date: Tue Feb 24 17:20:36 2004 +0000 - - Updated Norwegian translation. - - 2004-02-24 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 +++ - po/no.po | 97 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 57 insertions(+), 44 deletions(-) - -commit 951a851ab5fbe3972098ccec15b26b1bd668d001 -Author: Changwoo Ryu -Date: Tue Feb 24 15:06:07 2004 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 +++ - po/ko.po | 84 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 50 insertions(+), 38 deletions(-) - -commit cd76c1c0b46b27e70d1958acf184890dd2f9d4fb -Author: Laurent Dhima -Date: Tue Feb 24 13:07:59 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 9b5132c1ef7eb1f3bc5dd601413649cbf386df5d -Author: Laurent Dhima -Date: Tue Feb 24 13:06:38 2004 +0000 - - Updated - - po/sq.po | 38 +++++++++++++++++++------------------- - 1 file changed, 19 insertions(+), 19 deletions(-) - -commit 8c9451a46338bca5c6c15a471de173be9d9ec3c3 -Author: Zygimantas Berucka -Date: Tue Feb 24 11:25:24 2004 +0000 - - Updated Lithuanian translation. - - 2004-02-24 Zygimantas Berucka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 +++ - po/lt.po | 87 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 52 insertions(+), 39 deletions(-) - -commit efe23036b71ff8cb7a207d6b9069433c07cbe3a8 -Author: Guntupalli Karunakar -Date: Tue Feb 24 10:09:40 2004 +0000 - - update hindi translation - - po/ChangeLog | 4 + - po/hi.po | 3053 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 1859 insertions(+), 1198 deletions(-) - -commit a126153d1deb203697a7213b15889bd747e92148 -Author: Marco Pesenti Gritti -Date: Mon Feb 23 23:56:08 2004 +0000 - - Do not use gnome vfs to check the scheme because it can handle only - - 2004-02-24 Marco Pesenti Gritti - - * src/ephy-tab.c: (address_has_web_scheme): - - Do not use gnome vfs to check the scheme because - it can handle only supported methods. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 26 +++++++++----------------- - 2 files changed, 16 insertions(+), 17 deletions(-) - -commit 4e83ad8e62b7eb641a52bd30b421eedfc357604d -Author: Ole Laursen -Date: Mon Feb 23 21:49:44 2004 +0000 - - Updated Danish translation. - - 2004-02-23 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 ++++ - po/da.po | 68 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 42 insertions(+), 30 deletions(-) - -commit 36e218949b740ad72a8197d0aa925e904b721ba3 -Author: Christian Persch -Date: Mon Feb 23 13:47:34 2004 +0000 - - Updated British English translation. - - 2004-02-22 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 ++++ - po/en_GB.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit d8f80f9b9a6b688965779fd164ee974a10965121 -Author: Hasbullah Bin Pit -Date: Mon Feb 23 04:44:33 2004 +0000 - - Updated Malay translation. - - 2004-02-22 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - - po/ChangeLog | 4 + - po/ms.po | 358 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 187 insertions(+), 175 deletions(-) - -commit 6d6bc28c8168bea77f4b816cd445f701ebfd4faa -Author: Nikos Charonitakis -Date: Sun Feb 22 21:16:23 2004 +0000 - - Updated Greek translation - - po/ChangeLog | 4 ++++ - po/el.po | 52 +++++++++++++++++++++++++++++++--------------------- - 2 files changed, 35 insertions(+), 21 deletions(-) - -commit eb6078008a5860fec6f269b60963655467423bc3 -Author: Reinout van Schouwen -Date: Sun Feb 22 20:03:17 2004 +0000 - - Updated Dutch (nl) translation - - po/nl.po | 79 ++++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 45 insertions(+), 34 deletions(-) - -commit 49fdfe0512f33591240ba4152fc1f5441b51654f -Author: Mətin Əmirov -Date: Sun Feb 22 18:33:28 2004 +0000 - - Updated Azerbaijani translation. - - 2004-02-22 Mətin Əmirov - - * az.po: Updated Azerbaijani translation. - - po/ChangeLog | 4 ++ - po/az.po | 155 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 85 insertions(+), 74 deletions(-) - -commit 1fc20e17f3307b619194b5cfcc8fef4b2fb4a9fc -Author: Kostas Papadimas -Date: Sun Feb 22 12:22:48 2004 +0000 - - Updated the Greek translation - - po/ChangeLog | 4 + - po/el.po | 394 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 199 insertions(+), 199 deletions(-) - -commit 7ca93a5e8274eeb0d4edf900e9d574b974d79045 -Author: Christian Persch -Date: Sat Feb 21 20:37:49 2004 +0000 - - Updated British English translation. - - 2004-02-21 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 961 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 532 insertions(+), 433 deletions(-) - -commit 37b6959bf9d3f73d6b2b32b3426fa00affff6a98 -Author: Christian Persch -Date: Sat Feb 21 20:00:05 2004 +0000 - - Remove nsUnicharUtils.h from docs makefile. - - 2004-02-21 Christian Persch - - * doc/reference/Makefile.am: - - Remove nsUnicharUtils.h from docs makefile. - - ChangeLog | 6 ++++++ - doc/reference/Makefile.am | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit b3d1f30aea03119819b34418c900ca5141ba233c -Author: Christian Persch -Date: Sat Feb 21 19:59:01 2004 +0000 - - Add $ markers - - embed/mozilla/EventContext.cpp | 1 + - lib/ephy-debug.c | 2 ++ - lib/ephy-gui.c | 2 ++ - lib/ephy-gui.h | 2 ++ - 4 files changed, 7 insertions(+) - -commit 2c478169f64368f7806f207cb9c8acefe625528f -Author: Christian Persch -Date: Sat Feb 21 19:58:05 2004 +0000 - - Removed an unused #include. - - 2004-02-21 Christian Persch - - * lib/ephy-file-helpers.h: - * lib/ephy-glade.c: - - Removed an unused #include. - - ChangeLog | 7 +++++++ - lib/ephy-file-helpers.c | 2 +- - lib/ephy-file-helpers.h | 1 - - lib/ephy-glade.c | 1 - - lib/ephy-glade.h | 4 ++-- - 5 files changed, 10 insertions(+), 5 deletions(-) - -commit 9769c362388c9bbd6ea9fdcce1307cfca244968d -Author: Christian Persch -Date: Sat Feb 21 19:56:05 2004 +0000 - - Always connect signals, not just for PT_AUTOAPPLY props. - - 2004-02-21 Christian Persch - - * lib/ephy-dialog.c: (connect_signals): - - Always connect signals, not just for PT_AUTOAPPLY props. - - ChangeLog | 6 ++++++ - lib/ephy-dialog.c | 3 --- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 673265cb70d4fa9bda08ef6d15719529280860bc -Author: Christian Persch -Date: Sat Feb 21 19:52:30 2004 +0000 - - Commit changed, auto-generated templates. - - 2004-02-21 Christian Persch - - * doc/reference/tmpl/EphyContentPolicy.sgml: - * doc/reference/tmpl/EphySingle.sgml: - * doc/reference/tmpl/ephy-cookie-manager.sgml: - * doc/reference/tmpl/ephy-embed-factory.sgml: - * doc/reference/tmpl/ephy-embed-single.sgml: - * doc/reference/tmpl/ephy-password-manager.sgml: - * doc/reference/tmpl/ephy-permission-manager.sgml: - * doc/reference/tmpl/ephy-session.sgml: - * doc/reference/tmpl/ephy-shell.sgml: - * doc/reference/tmpl/mozilla-embed-event.sgml: - - Commit changed, auto-generated templates. - - 2004-02-20 Christian Persch - - ChangeLog | 39 ++++++++++--------------- - doc/reference/tmpl/EphyContentPolicy.sgml | 2 -- - doc/reference/tmpl/EphySingle.sgml | 2 -- - doc/reference/tmpl/ephy-cookie-manager.sgml | 2 -- - doc/reference/tmpl/ephy-embed-factory.sgml | 2 -- - doc/reference/tmpl/ephy-embed-single.sgml | 2 -- - doc/reference/tmpl/ephy-password-manager.sgml | 2 -- - doc/reference/tmpl/ephy-permission-manager.sgml | 2 -- - doc/reference/tmpl/ephy-session.sgml | 2 -- - doc/reference/tmpl/ephy-shell.sgml | 2 -- - doc/reference/tmpl/mozilla-embed-event.sgml | 2 -- - 11 files changed, 15 insertions(+), 44 deletions(-) - -commit d9b3970ff1dfde2961453f849593bca66cc67810 -Author: Christian Persch -Date: Sat Feb 21 19:49:25 2004 +0000 - - Updating NEWS - - NEWS | 33 +++++++++++++++++++++++++++++++++ - 1 file changed, 33 insertions(+) - -commit 5d98952591cd8053122d274466753876b6a2627b -Author: Christian Persch -Date: Sat Feb 21 19:34:08 2004 +0000 - - Epiphany 1.1.10. - - 2004-02-20 Christian Persch - - * configure.in: - - Epiphany 1.1.10. - - ChangeLog | 6 ++++++ - configure.in | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit d2202dedccde749e1af5bed2c5cf3b91afbd1520 -Author: Christian Rose -Date: Sat Feb 21 16:14:34 2004 +0000 - - Added "en_CA" to ALL_LINGUAS. Added Canadian English translation by Adam - - 2004-02-21 Christian Rose - - * configure.in: Added "en_CA" to ALL_LINGUAS. - * po/en_CA.po: Added Canadian English translation by - Adam Weinberger . - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/en_CA.po | 3553 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3563 insertions(+), 1 deletion(-) - -commit 053ac21fc08f4225e74b0c1189478ced8aa3cba9 -Author: Christian Neumair -Date: Sat Feb 21 15:05:26 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 ++ - po/de.po | 152 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 84 insertions(+), 72 deletions(-) - -commit df999fb1fdf4c7eb1159b3174ca7b8ab04a0cfd4 -Author: Marco Pesenti Gritti -Date: Sat Feb 21 09:03:03 2004 +0000 - - Actually remove nsUnicharUtils.* - - 2004-02-21 Marco Pesenti Gritti - - * embed/mozilla/Makefile.am: - - Actually remove nsUnicharUtils.* - - * embed/mozilla/mozilla-embed-persist.cpp: - - Use our helper to construct tmp file name: fix - security issue. - - * src/window-commands.c: (save_temp_source): - - Cosmetic change - - ChangeLog | 15 +++++++++++++++ - embed/mozilla/Makefile.am | 4 +--- - embed/mozilla/mozilla-embed-persist.cpp | 25 ++++++++++--------------- - src/window-commands.c | 1 - - 4 files changed, 26 insertions(+), 19 deletions(-) - -commit 07ae00de7bf0ec13db06253330395054a24e7283 -Author: Christian Persch -Date: Fri Feb 20 22:44:44 2004 +0000 - - R embed/mozilla/nsUnicharUtils.h: R embed/mozilla/nsUnicharUtils.cpp: - - 2004-02-20 Christian Persch - - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EphyBrowser.cpp: - R embed/mozilla/nsUnicharUtils.h: - R embed/mozilla/nsUnicharUtils.cpp: - - Adapt to changed mozilla string APIs by getting rid of - nsUnicharUtils, and using EqualsIgnoreCase instead of - Equal with nsCaseInsensitiveStringComparator(). - - ChangeLog | 11 ++ - embed/mozilla/EphyBrowser.cpp | 7 +- - embed/mozilla/EventContext.cpp | 106 +++++------- - embed/mozilla/nsUnicharUtils.cpp | 344 --------------------------------------- - embed/mozilla/nsUnicharUtils.h | 100 ------------ - 5 files changed, 57 insertions(+), 511 deletions(-) - -commit b2b76e137020df45176f40f80afac433a0f368d9 -Author: Marco Pesenti Gritti -Date: Fri Feb 20 22:37:42 2004 +0000 - - Ensure that there are no more chars after the last /. Cut down number of - - 2004-02-20 Marco Pesenti Gritti - - * src/ephy-completion-model.c: (is_base_address), - (init_relevance_col): - - Ensure that there are no more chars after the last /. - Cut down number of visists properly. - - ChangeLog | 8 ++++++++ - src/ephy-completion-model.c | 13 ++++++++----- - 2 files changed, 16 insertions(+), 5 deletions(-) - -commit 7e816a76bac00b8c34bec6849d175bd478af2f16 -Author: Christian Persch -Date: Fri Feb 20 22:20:08 2004 +0000 - - Fix logic error, spotted by Crispin. - - 2004-02-20 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (popup_toolbar_context_menu_cb): - - Fix logic error, spotted by Crispin. - - * lib/egg/egg-toolbars-model.h: - - Make it clear that EggTbModelFlags is a bitfield enum. - - ChangeLog | 34 ++++++++++++++++++++++++++++++++++ - lib/egg/egg-editable-toolbar.c | 2 +- - lib/egg/egg-toolbars-model.h | 4 ++-- - 3 files changed, 37 insertions(+), 3 deletions(-) - -commit 1e6a2895325d8c697979404c9f767217b89da76e -Author: Christian Rose -Date: Fri Feb 20 16:19:40 2004 +0000 - - Updated Swedish translation. - - 2004-02-20 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++++ - po/sv.po | 60 ++++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 38 insertions(+), 26 deletions(-) - -commit 34cd296e71e8aa91553ef4ad37d49b72b5f6e5bf -Author: Fixed wrong translations. T.Aihana -Date: Fri Feb 20 14:49:05 2004 +0000 - - 2004-02-20 Fixed wrong translations. T.Aihana - - po/ja.po | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 1ae25bf90af52b222d8da2b2d2474dc531d19d64 -Author: Updated ja.po. T.Aihana -Date: Fri Feb 20 14:29:51 2004 +0000 - - 2004-02-20 Updated ja.po. T.Aihana - - po/ChangeLog | 4 + - po/ja.po | 3185 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 1419 insertions(+), 1770 deletions(-) - -commit 5311e4b3df196bc985b93d5ff2f13ddf2e807de6 -Author: Miloslav Trmac -Date: Fri Feb 20 14:02:43 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 54 +++++++++++++++++++++++++++++++----------------------- - 2 files changed, 35 insertions(+), 23 deletions(-) - -commit 85748194e77e9ec95fb65c3af4efcfddb8e9ca45 -Author: Laurent Dhima -Date: Fri Feb 20 13:49:40 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit f154ca37647b0178becbb91f9e87153a598ed2db -Author: Laurent Dhima -Date: Fri Feb 20 13:47:10 2004 +0000 - - Updated - - po/sq.po | 277 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 149 insertions(+), 128 deletions(-) - -commit fa4841dfec6cdf7343264590560f2e03184ae2a8 -Author: Artur Flinta -Date: Fri Feb 20 12:48:32 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-02-20 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++ - po/pl.po | 152 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 84 insertions(+), 72 deletions(-) - -commit 6144cc5d78fc555baed63847efafd5eeff1490bf -Author: Christian Persch -Date: Fri Feb 20 11:52:39 2004 +0000 - - #ifdef HAVE_CONFIG_H the inclusion of config.h. - - 2004-02-20 Christian Persch - - * lib/eel-gconf-extensions.c: - - #ifdef HAVE_CONFIG_H the inclusion of config.h. - - ChangeLog | 6 ++++++ - lib/eel-gconf-extensions.c | 5 ++++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit e95a6bc40b76398f9bf16b115020670b40844f74 -Author: Christian Persch -Date: Fri Feb 20 11:51:30 2004 +0000 - - Remove duplicate entry for ephy-gui.h. - - 2004-02-20 Christian Persch - - * lib/Makefile.am: - - Remove duplicate entry for ephy-gui.h. - - ChangeLog | 6 ++++++ - lib/Makefile.am | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit fa5e66589f95ba71a51dd743bf038420f5d68bfb -Author: Christian Persch -Date: Fri Feb 20 11:49:43 2004 +0000 - - s/IFace/Iface/g to match the gtk+ naming convention. - - 2004-02-20 Christian Persch - - * embed/ephy-command-manager.c: (ephy_command_manager_get_type), - (ephy_command_manager_base_init), - (ephy_command_manager_do_command), - (ephy_command_manager_can_do_command): - * embed/ephy-command-manager.h: - * embed/ephy-cookie-manager.c: (ephy_cookie_manager_get_type), - (ephy_cookie_manager_base_init), - (ephy_cookie_manager_list_cookies), - (ephy_cookie_manager_remove_cookie), (ephy_cookie_manager_clear): - * embed/ephy-cookie-manager.h: - * embed/ephy-embed-event.c: (ephy_embed_event_get_type), - (ephy_embed_event_get_event_type), (ephy_embed_event_get_context), - (ephy_embed_event_get_modifier), (ephy_embed_event_get_coords), - (ephy_embed_event_get_property), (ephy_embed_event_has_property), - (ephy_embed_event_get_dom_event): - * embed/ephy-embed-event.h: - * embed/ephy-embed-single.c: (ephy_embed_single_get_type), - (ephy_embed_single_iface_init), (ephy_embed_single_clear_cache), - (ephy_embed_single_clear_auth_cache), - (ephy_embed_single_set_offline_mode), - (ephy_embed_single_load_proxy_autoconf), - (ephy_embed_single_get_font_list): - * embed/ephy-embed-single.h: - * embed/ephy-embed.c: (ephy_embed_get_type), - (ephy_embed_base_init), (ephy_embed_load_url), - (ephy_embed_stop_load), (ephy_embed_can_go_back), - (ephy_embed_can_go_forward), (ephy_embed_can_go_up), - (ephy_embed_get_go_up_list), (ephy_embed_go_back), - (ephy_embed_go_forward), (ephy_embed_go_up), - (ephy_embed_get_title), (ephy_embed_get_location), - (ephy_embed_get_link_message), (ephy_embed_get_js_status), - (ephy_embed_reload), (ephy_embed_zoom_set), (ephy_embed_zoom_get), - (ephy_embed_shistory_n_items), (ephy_embed_shistory_get_nth), - (ephy_embed_shistory_get_pos), (ephy_embed_shistory_go_nth), - (ephy_embed_get_security_level), (ephy_embed_find_set_properties), - (ephy_embed_find_next), (ephy_embed_activate), - (ephy_embed_set_encoding), (ephy_embed_get_encoding_info), - (ephy_embed_print), (ephy_embed_print_preview_close), - (ephy_embed_print_preview_n_pages), - (ephy_embed_print_preview_navigate), - (ephy_embed_has_modified_forms): - * embed/ephy-embed.h: - * embed/ephy-password-manager.c: (ephy_password_manager_get_type), - (ephy_password_manager_add), (ephy_password_manager_remove), - (ephy_password_manager_list): - * embed/ephy-password-manager.h: - * embed/ephy-permission-manager.c: - (ephy_permission_manager_get_type), - (ephy_permission_manager_base_init), (ephy_permission_manager_add), - (ephy_permission_manager_remove), (ephy_permission_manager_clear), - (ephy_permission_manager_test), (ephy_permission_manager_list): - * embed/ephy-permission-manager.h: - * embed/mozilla/mozilla-embed-event.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - - s/IFace/Iface/g to match the gtk+ naming convention. - - ChangeLog | 60 ++++++++++++++++++++++++ - embed/ephy-command-manager.c | 8 ++-- - embed/ephy-command-manager.h | 8 ++-- - embed/ephy-cookie-manager.c | 18 ++++---- - embed/ephy-cookie-manager.h | 8 ++-- - embed/ephy-embed-event.c | 16 +++---- - embed/ephy-embed-event.h | 8 ++-- - embed/ephy-embed-single.c | 14 +++--- - embed/ephy-embed-single.h | 8 ++-- - embed/ephy-embed.c | 84 +++++++++++++++++----------------- - embed/ephy-embed.h | 8 ++-- - embed/ephy-password-manager.c | 8 ++-- - embed/ephy-password-manager.h | 8 ++-- - embed/ephy-permission-manager.c | 20 ++++---- - embed/ephy-permission-manager.h | 8 ++-- - embed/mozilla/mozilla-embed-event.cpp | 4 +- - embed/mozilla/mozilla-embed-single.cpp | 16 +++---- - embed/mozilla/mozilla-embed.cpp | 6 +-- - 18 files changed, 185 insertions(+), 125 deletions(-) - -commit 41b71497e0aabd9f2c33c9e025da7561d0adaa02 -Author: Francisco Javier F. Serrador -Date: Fri Feb 20 10:20:59 2004 +0000 - - Updated Spanish translation. - - 2004-02-20 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++ - po/es.po | 136 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 76 insertions(+), 64 deletions(-) - -commit 76c0769f081265e04c54d4544a28c32e71fc0262 -Author: Danilo Šegan -Date: Fri Feb 20 05:19:55 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 266 ++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 266 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 278 insertions(+), 258 deletions(-) - -commit 8764c4de6bd49680f33948628f7d0bce7f65f475 -Author: Julio M. Merino Vidal -Date: Thu Feb 19 23:39:04 2004 +0000 - - Remove duplicate --with-html-dir argument - - 2004-02-20 Julio M. Merino Vidal - - * configure.in: - - Remove duplicate --with-html-dir argument - - * data/epiphany.schemas.in: - - fix a syntax error - - ChangeLog | 10 ++++++++++ - configure.in | 11 ----------- - data/epiphany.schemas.in | 2 +- - 3 files changed, 11 insertions(+), 12 deletions(-) - -commit 78170c47e3e661d08ff8435285c3b37bc12bef1a -Author: Ole Laursen -Date: Thu Feb 19 21:22:50 2004 +0000 - - Updated Danish translation. - - 2004-02-19 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 322 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 166 insertions(+), 160 deletions(-) - -commit 0436dc9f5725091a4ae6d988f4bdc999dcac416b -Author: Christian Persch -Date: Thu Feb 19 00:30:42 2004 +0000 - - Fix off-by-one error when computing the height of the table. - - 2004-02-19 Christian Persch - - * lib/egg/egg-toolbar-editor.c: (update_editor_sheet): - - Fix off-by-one error when computing the height of the table. - - ChangeLog | 6 ++++++ - lib/egg/egg-toolbar-editor.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit aa8e74d93a2c9fb43da9a5a8259cce7c75b1677f -Author: Christian Persch -Date: Thu Feb 19 00:24:50 2004 +0000 - - When removing a toolbar, make its items available again in the toolbar - - 2004-02-19 Christian Persch - - * lib/egg/egg-toolbar-editor.c: (toolbar_removed_cb), - (egg_toolbar_editor_set_model), (egg_toolbar_editor_class_init), - (update_actions_list), (egg_toolbar_editor_load_actions): - * lib/egg/egg-toolbar-editor.h: - - When removing a toolbar, make its items available again in the toolbar - editor. Fixes bug #131182. - - ChangeLog | 10 ++++++++ - lib/egg/egg-toolbar-editor.c | 61 ++++++++++++++++++++++++++++++++------------ - lib/egg/egg-toolbar-editor.h | 2 -- - 3 files changed, 54 insertions(+), 19 deletions(-) - -commit 01ad74b01b77d67fb5591c2dc960bde63f90fdcd -Author: Alexander Winston -Date: Wed Feb 18 19:39:09 2004 +0000 - - Fixed typos in the bookmarks explanation. - - 2004-02-18 Alexander Winston - - * help/C/epiphany.xml: Fixed typos in the bookmarks explanation. - - ChangeLog | 4 ++++ - help/C/epiphany.xml | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit b0e4dfa1d3f8cdede22a2a880b35c7b5a2883810 -Author: Changwoo Ryu -Date: Wed Feb 18 16:28:26 2004 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 288 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 146 insertions(+), 146 deletions(-) - -commit 0ae856e6690260801ace015edfc81830a13520e8 -Author: Duarte Loreto -Date: Wed Feb 18 01:22:20 2004 +0000 - - Updated Portuguese translation. - - 2004-02-18 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 306 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 158 insertions(+), 152 deletions(-) - -commit df8a49847d6089cce269b2f07a157fbc9f2b8197 -Author: Christian Persch -Date: Tue Feb 17 20:46:02 2004 +0000 - - Remove the toolbar height contraint when the first item is added to it. - - 2004-02-17 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (item_added_cb), - (item_removed_cb), (egg_editable_toolbar_construct): - - Remove the toolbar height contraint when the first item is added - to it. Fixes bug #131181. - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 9 ++++++--- - 2 files changed, 14 insertions(+), 3 deletions(-) - -commit c1687084b65bb2e908761e0bfe6af9b7246d6b02 -Author: Ales Nyakhaychyk -Date: Tue Feb 17 20:26:42 2004 +0000 - - Updated Belarusian translation. - - po/ChangeLog | 4 + - po/be.po | 1353 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 709 insertions(+), 648 deletions(-) - -commit 33d18744189f4ee0c8048d616f055998c7c18c8a -Author: Christian Persch -Date: Tue Feb 17 12:03:25 2004 +0000 - - s/EphyExtensionClass/EphyExtensionIface/g - - 2004-02-17 Christian Persch - - * src/ephy-extension.c: (ephy_extension_get_type), - (ephy_extension_attach_window), (ephy_extension_detach_window): - * src/ephy-extension.h: - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_iface_init): - * src/ephy-session.c: (ephy_session_iface_init): - - s/EphyExtensionClass/EphyExtensionIface/g - - ChangeLog | 11 +++++++++++ - src/ephy-extension.c | 10 +++++----- - src/ephy-extension.h | 10 +++++----- - src/ephy-extensions-manager.c | 4 ++-- - src/ephy-session.c | 4 ++-- - 5 files changed, 25 insertions(+), 14 deletions(-) - -commit 1a0ac68966012e2cd8df28cb31b3f6c98bb5dc26 -Author: Christian Persch -Date: Tue Feb 17 11:47:59 2004 +0000 - - Epiphany 1.1.9. - - 2004-02-17 Christian Persch - - * NEWS: - * configure.in: - - Epiphany 1.1.9. - - ChangeLog | 7 +++++++ - NEWS | 16 ++++++++++++++++ - configure.in | 2 +- - 3 files changed, 24 insertions(+), 1 deletion(-) - -commit 3316797761f50364ef5a6bbecad2dbddee4d7a11 -Author: Vincent van Adrighem -Date: Mon Feb 16 13:44:05 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-02-16 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 758 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 388 insertions(+), 374 deletions(-) - -commit c22764c1973cdfe0f644b0bf164194f1bb104210 -Author: Christian Rose -Date: Mon Feb 16 12:56:20 2004 +0000 - - Updated Swedish translation. - - 2004-02-16 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 1383 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 767 insertions(+), 620 deletions(-) - -commit 9abf331ee6fe82d4e221fe57bde51da7db0a9a33 -Author: Christian Persch -Date: Mon Feb 16 11:56:51 2004 +0000 - - Don't use #if inside a macro. Fixe compilation with gcc 3.2.2. - - 2004-02-16 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Don't use #if inside a macro. Fixe compilation with gcc 3.2.2. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 6 ++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit 088728be26eb23ff5d1fcb9b742475c3d3a22daa -Author: Miloslav Trmac -Date: Mon Feb 16 08:11:58 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 254 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 131 insertions(+), 127 deletions(-) - -commit 1bdd84e103b84a12007f181ccaa9246411048138 -Author: Žygimantas Beručka -Date: Sun Feb 15 19:29:27 2004 +0000 - - Updated Lithuanian translation. - - 2004-02-15 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 256 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 132 insertions(+), 128 deletions(-) - -commit 3976ee76b10e72b8e6155c6adce5ab28724fd5db -Author: Christian Persch -Date: Sun Feb 15 17:01:21 2004 +0000 - - Make it work (TM). - - 2004-02-15 Christian Persch - - * embed/mozilla/FilePicker.cpp: (::AppendFilter): - - Make it work (TM). - - ChangeLog | 6 ++++++ - embed/mozilla/FilePicker.cpp | 18 +++++++++++++----- - 2 files changed, 19 insertions(+), 5 deletions(-) - -commit debbe2037d60a1a354185b5c2e378d9ca757ef40 -Author: Christian Persch -Date: Sun Feb 15 16:23:41 2004 +0000 - - Weak ref the real dialogue, and hide the dialogue after running it. Fixes - - 2004-02-15 Christian Persch - - * embed/mozilla/FilePicker.cpp: (::Show), (::GFilePicker), - (::~GFilePicker): - - Weak ref the real dialogue, and hide the dialogue after - running it. Fixes interaction with nsIFilePicker lifecycle - when shown from javascript. - - ChangeLog | 9 ++++++++ - embed/mozilla/FilePicker.cpp | 49 ++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 56 insertions(+), 2 deletions(-) - -commit dc858af55b499ac2cca961100cba57297f590813 -Author: Christophe Merlet -Date: Sun Feb 15 13:46:42 2004 +0000 - - Updated French translation. - - po/ChangeLog | 4 + - po/fr.po | 350 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 183 insertions(+), 171 deletions(-) - -commit 34d3ede651fc442f422a1147c4b0143a3c2c8593 -Author: Kjartan Maraas -Date: Sun Feb 15 13:20:03 2004 +0000 - - Updated Norwegian translation. - - 2004-02-15 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 262 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 136 insertions(+), 130 deletions(-) - -commit 185128f1cf69c00d5b4c5b5914d84cd62ebf01ee -Author: Mətin Əmirov -Date: Sun Feb 15 13:11:17 2004 +0000 - - Translation updated. - - 2004-02-15 Mətin Əmirov - - * az.po: Translation updated. - - po/ChangeLog | 4 + - po/az.po | 963 ++++++++++++++++++++++++++--------------------------------- - 2 files changed, 423 insertions(+), 544 deletions(-) - -commit 7154c6d552bea0ddbe1c26466ddce754b3dbeea3 -Author: Marco Pesenti Gritti -Date: Sun Feb 15 11:03:30 2004 +0000 - - Prepare for 1.1.8 - - 2004-02-15 Marco Pesenti Gritti - - * NEWS: - * configure.in: - - Prepare for 1.1.8 - - * embed/downloader-view.c: (downloader_view_build_ui): - - Revert the timeout for now, I dont think it's mature - for the release. - - ChangeLog | 12 +++++++++ - NEWS | 68 +++++++++++++++++++++++++++++++++++++++++++++++++ - configure.in | 2 +- - embed/downloader-view.c | 10 -------- - 4 files changed, 81 insertions(+), 11 deletions(-) - -commit 4ed0bbdfca2b8673505e94f783be91116ca3370e -Author: Xan Lopez -Date: Sat Feb 14 17:07:30 2004 +0000 - - Quiet cvs. - - - Quiet cvs. - - ChangeLog | 6 ++++++ - data/.cvsignore | 1 + - 2 files changed, 7 insertions(+) - -commit 1d21d0a5858d30faad105f7e7a99fdac980d06a0 -Author: Laurent Dhima -Date: Fri Feb 13 17:25:01 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit bf629246f7e8abe2663d680a37891530d900841f -Author: Laurent Dhima -Date: Fri Feb 13 17:23:38 2004 +0000 - - Updated - - po/sq.po | 236 +++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 118 insertions(+), 118 deletions(-) - -commit 1379de4005dbb6302106277dff5336b71342391c -Author: Marco Pesenti Gritti -Date: Fri Feb 13 16:56:38 2004 +0000 - - *** empty log message *** - - ChangeLog | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -commit dbb19c8b42aafc289947199f57f656dd72a901d8 -Author: Marco Pesenti Gritti -Date: Fri Feb 13 16:55:59 2004 +0000 - - Several types are actually safe. - - 2004-02-13 Marco Pesenti Gritti - - * data/mime-types-permissions.xml: - - Several types are actually safe. - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - - Change the safe/unsafe logic to not consider unkown - files unsafe, they will not be opened anyway. - Cleanups. - - data/mime-types-permissions.xml | 88 ++++++++++++++++++++-------------------- - embed/mozilla/ContentHandler.cpp | 34 ++++++++++++---- - embed/mozilla/ContentHandler.h | 3 +- - 3 files changed, 71 insertions(+), 54 deletions(-) - -commit 235a1554235f221652529e2d4458730fbf709287 -Author: Christian Persch -Date: Fri Feb 13 14:13:43 2004 +0000 - - Install the statusbar .h file. - - 2004-02-13 Christian Persch - - * doc/reference/Makefile.am: - * src/Makefile.am: - - Install the statusbar .h file. - - R src/statusbar.[ch]: - A src/ephy-statusbar.[ch]: - - s/statusbar/ephy-statusbar/ and friends. - - * src/ephy-window.c: (sync_tab_load_progress), (sync_tab_security), - (ephy_window_init): - - Change references from statusbar to ephy-statusbar. - Remove selection-received stuff, since it now lives in EphyTab. - - ChangeLog | 18 +++++ - doc/reference/Makefile.am | 2 +- - src/Makefile.am | 4 +- - src/ephy-statusbar.c | 192 +++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-statusbar.h | 70 +++++++++++++++++ - src/ephy-window.c | 43 +++------- - src/statusbar.c | 195 ---------------------------------------------- - src/statusbar.h | 63 --------------- - 8 files changed, 295 insertions(+), 292 deletions(-) - -commit 5d29d085c08e3d7cf6e4557657fe45ee0ad303cb -Author: Christian Neumair -Date: Fri Feb 13 14:06:38 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 676 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 339 insertions(+), 341 deletions(-) - -commit 9187eabdccd3b741d36b88ee3e2d3eeb0b50fc26 -Author: Christian Persch -Date: Fri Feb 13 12:54:45 2004 +0000 - - R data/epiphany-1.0.pc.in: A data/epiphany-1.2.pc.in: - - 2004-02-12 Christian Persch - - * configure.in: - * data/Makefile.am: - R data/epiphany-1.0.pc.in: - A data/epiphany-1.2.pc.in: - - Changed .pc file version to 1.2, since we're not API-compatible with - 1.0. - - ChangeLog | 10 ++++++++++ - configure.in | 2 +- - data/Makefile.am | 2 +- - data/epiphany-1.0.pc.in | 11 ----------- - data/epiphany-1.2.pc.in | 11 +++++++++++ - 5 files changed, 23 insertions(+), 13 deletions(-) - -commit 39be8ca28db650ce0db62359735c3dd0ad2ea729 -Author: Artur Flinta -Date: Fri Feb 13 11:26:30 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-02-13 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++ - po/pl.po | 230 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 119 insertions(+), 115 deletions(-) - -commit f703321aa2550a54cb3703ab71325c13bff5fc72 -Author: Francisco Javier F. Serrador -Date: Thu Feb 12 23:28:19 2004 +0000 - - Updated Spanish translation. - - 2004-02-13 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 237 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 123 insertions(+), 118 deletions(-) - -commit b949766662468e4c45b245022ebb3602d5c954be -Author: Christian Persch -Date: Thu Feb 12 20:20:19 2004 +0000 - - Safety check. - - 2004-02-12 Christian Persch - - * embed/downloader-view.c: (download_dialog_abort_cb): - - Safety check. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 3cb7a1e560628b39d2f747275be8399c2cd162a9 -Author: Christian Persch -Date: Thu Feb 12 20:18:52 2004 +0000 - - Use static_cast<>, don't cast directly. - - 2004-02-12 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: (mozilla_embed_security_change_cb): - - Use static_cast<>, don't cast directly. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 16a1ea3350f9bec3b68393e096ed064c52c907f6 -Author: Christian Persch -Date: Thu Feb 12 20:15:18 2004 +0000 - - Don't set entries insensitive, only set the non-editable when the gconf - - 2004-02-12 Christian Persch - - * lib/ephy-dialog.c: (set_sensitivity): - - Don't set entries insensitive, only set the non-editable when the - gconf key isn't writable. - - ChangeLog | 7 +++++++ - lib/ephy-dialog.c | 4 ++++ - 2 files changed, 11 insertions(+) - -commit daf9595797776944cc11626c7ac0c444a0602090 -Author: Christian Persch -Date: Thu Feb 12 20:08:25 2004 +0000 - - Unify fallback downloads dir to get the home directory. - - 2004-02-12 Christian Persch - - * embed/mozilla/MozDownload.cpp: - * src/prefs-dialog.c: (get_download_button_label): - - Unify fallback downloads dir to get the home directory. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 4 ---- - src/prefs-dialog.c | 21 ++++++++++----------- - 3 files changed, 17 insertions(+), 15 deletions(-) - -commit fe1419fe5d8f024214f008cf7cf2af61cf7b241f -Author: Christian Persch -Date: Thu Feb 12 19:30:48 2004 +0000 - - Don't insist on a parent for the dialogue; because there isn't one when we - - 2004-02-12 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - - Don't insist on a parent for the dialogue; because there isn't one - when we try to load a favicon over https: at startup. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 2 +- - embed/mozilla/GtkNSSDialogs.cpp | 3 +-- - 3 files changed, 9 insertions(+), 3 deletions(-) - -commit a77647ad79ad7cc0ea3ed4b648f246936f7867f6 -Author: Danilo Šegan -Date: Thu Feb 12 19:13:59 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 42 +++++++++++++++++++++--------------------- - po/sr@Latn.po | 42 +++++++++++++++++++++--------------------- - 3 files changed, 46 insertions(+), 42 deletions(-) - -commit 4c401b884b4e4529e470346dd9d0e834661b3823 -Author: Christian Persch -Date: Thu Feb 12 19:13:54 2004 +0000 - - Fix numerous places where we weren't properly converting between UTF-8 and - - 2004-02-12 Christian Persch - - * embed/ephy-embed-popup-control.c: (save_url), - (embed_popup_set_image_as_background_cmd): - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get_type), - (ephy_favicon_cache_class_init), (favicon_name_build), - (favicon_download_completed_cb), (ephy_favicon_cache_get): - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/MozDownload.cpp: - * lib/ephy-file-chooser.c: (ephy_file_chooser_set_persist_key): - * lib/ephy-file-helpers.c: (ephy_file_downloads_dir): - * src/popup-commands.c: (popup_cmd_set_image_as_background): - * src/prefs-dialog.c: (get_download_button_label), - (download_path_response_cb): - - Fix numerous places where we weren't properly converting between UTF-8 - and filename encoding. - - * embed/ephy-favicon-cache.c: - - Bump favicon cache xml version. - - * embed/mozilla/EphyHeaderSniffer.cpp: - - Fix mem leak, and use CONF_STATE_SAVE_DIR instead of the download dir - key for directory persistence. - - ChangeLog | 27 +++++++++++++++++++++ - embed/ephy-embed-popup-control.c | 8 ++++--- - embed/ephy-favicon-cache.c | 48 ++++++++++++++++++++++++------------- - embed/mozilla/EphyHeaderSniffer.cpp | 4 +++- - embed/mozilla/FilePicker.cpp | 3 ++- - embed/mozilla/MozDownload.cpp | 36 +++++++++++++++++++++------- - lib/ephy-file-chooser.c | 13 +++++----- - lib/ephy-file-helpers.c | 10 ++++++-- - src/popup-commands.c | 6 +++-- - src/prefs-dialog.c | 22 ++++++++--------- - 10 files changed, 124 insertions(+), 53 deletions(-) - -commit 11559ecfcb6420b24b537d9c7b61f60ec20a8cfb -Author: Marco Pesenti Gritti -Date: Thu Feb 12 18:52:09 2004 +0000 - - Add a missing accellerator - - 2004-02-12 Marco Pesenti Gritti - - * data/glade/prefs-dialog.glade: - - Add a missing accellerator - - ChangeLog | 6 ++++++ - data/glade/prefs-dialog.glade | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 45e52c4cdcf6c25815a211a7d48558cb72d0471a -Author: Christian Persch -Date: Thu Feb 12 16:59:27 2004 +0000 - - 2004-02-12 Christian Persch - - * lib/ephy-node-db.c: (ephy_node_db_write_to_xml_valist): - * src/bookmarks/ephy-bookmarks-export.c: - (ephy_bookmarks_export_rdf): - - ChangeLog | 9 +++++++++ - embed/mozilla/GlobalHistory.h | 5 +++-- - lib/ephy-node-db.c | 6 ++++++ - src/bookmarks/ephy-bookmarks-export.c | 6 ++++++ - src/ephy-session.c | 6 ++++++ - 5 files changed, 30 insertions(+), 2 deletions(-) - -commit bbd519c4867de487e09f8ac5f838a2b150cb75a1 -Author: Christian Persch -Date: Thu Feb 12 16:47:42 2004 +0000 - - Depend on libxml2 >= 2.6.6 because of bug #133298 and bug # 131548. - - 2004-02-12 Christian Persch - - * configure.in: - - Depend on libxml2 >= 2.6.6 because of bug #133298 and bug # 131548. - - * src/ephy-main.c: (main): - - Use LIBXML_TEST_VERSION to check for API compatibility. - - ChangeLog | 10 ++++++++++ - configure.in | 2 +- - embed/mozilla/GlobalHistory.cpp | 2 +- - src/ephy-main.c | 10 +++++++++- - 4 files changed, 21 insertions(+), 3 deletions(-) - -commit ccc77d2861cff93d3752cb21cf78a74df5817f02 -Author: Christian Persch -Date: Thu Feb 12 16:31:42 2004 +0000 - - Fix compilation with mozilla 1.4. - - 2004-02-12 Christian Persch - - * embed/mozilla/GlobalHistory.cpp: - - Fix compilation with mozilla 1.4. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 7aa2a5fe7359080ede030b353f951942efae9b2d -Author: Christian Persch -Date: Thu Feb 12 15:57:47 2004 +0000 - - Adapt to the ever-changing mozilla APIs. - - 2004-02-12 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/GlobalHistory.h: - * embed/mozilla/MozRegisterComponents.cpp: - - Adapt to the ever-changing mozilla APIs. - - ChangeLog | 9 ++++ - embed/mozilla/EphyBrowser.cpp | 8 +++- - embed/mozilla/GlobalHistory.cpp | 79 ++++++++++++++++++++++++++++----- - embed/mozilla/GlobalHistory.h | 49 +++++++++++++------- - embed/mozilla/MozRegisterComponents.cpp | 10 +++++ - 5 files changed, 126 insertions(+), 29 deletions(-) - -commit b19e63aed65b23a62025270f3e696ecb699cf82d -Author: Laurent Dhima -Date: Thu Feb 12 15:03:55 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 4100cd7034a41ec83371cb94ae553eaa499440b8 -Author: Laurent Dhima -Date: Thu Feb 12 15:02:43 2004 +0000 - - Updated - - po/sq.po | 74 ++++++++++++++++++++++++++++++++-------------------------------- - 1 file changed, 37 insertions(+), 37 deletions(-) - -commit 67868e3c772f2f6ee3ce7510ee59f429f5a6e5f1 -Author: Miloslav Trmac -Date: Thu Feb 12 14:48:46 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 66 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 37 insertions(+), 33 deletions(-) - -commit 8fc5d5b3b608a0bd73d33c61b3b5d3e359063d2a -Author: Danilo Šegan -Date: Thu Feb 12 00:58:13 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++ - po/sr.po | 150 +++++++++++++++++++++++++++++----------------------------- - po/sr@Latn.po | 150 +++++++++++++++++++++++++++++----------------------------- - 3 files changed, 156 insertions(+), 148 deletions(-) - -commit e3eb903e2a0f96a4e08fd735bbfb6406f53af078 -Author: Marco Pesenti Gritti -Date: Thu Feb 12 00:36:47 2004 +0000 - - Simplify and hopefully fix mem corruption - - 2004-02-12 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: (keyword_match): - - Simplify and hopefully fix mem corruption - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 8 +++----- - 2 files changed, 9 insertions(+), 5 deletions(-) - -commit 3a866c187db97a60aef67e0b420436bfd17be65c -Author: Marco Pesenti Gritti -Date: Thu Feb 12 00:10:03 2004 +0000 - - When open is explicitly requested from the dialog use a tmp file. - - 2004-02-12 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - - When open is explicitly requested from the dialog use - a tmp file. - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 19 +++++++++++++++---- - 2 files changed, 22 insertions(+), 4 deletions(-) - -commit ebb01a50ff84bce9e94afb660a9ee71a5750d682 -Author: Arafat Medini -Date: Wed Feb 11 23:21:17 2004 +0000 - - Updated Arabic translation. - - - 2004-02-12 Arafat Medini - - * ar.po: Updated Arabic translation. - - po/ChangeLog | 4 + - po/ar.po | 2160 ++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 1356 insertions(+), 808 deletions(-) - -commit 2b7c35a699635baec5b3581dc97a00d1dd98e77b -Author: Chris Lahey -Date: Wed Feb 11 21:43:10 2004 +0000 - - Added timeout so that dialog won't disappear before 5 seconds is over. - - 2004-02-11 Chris Lahey - - * embed/downloader-view.c: Added timeout so that dialog won't - disappear before 5 seconds is over. Made Pause/Resume button - update label properly. - - ChangeLog | 6 +++++ - embed/downloader-view.c | 69 +++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 73 insertions(+), 2 deletions(-) - -commit 78029ead54eb86e3e0d74a58cfadda32f8c0ad0e -Author: Christian Persch -Date: Wed Feb 11 20:45:13 2004 +0000 - - Increase bookmarks format version. - - 2004-02-11 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: - - Increase bookmarks format version. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 88b9ad445d2a0d7f9b5d992e7fb8c2756f7e0a3d -Author: Marco Pesenti Gritti -Date: Wed Feb 11 20:41:43 2004 +0000 - - Update bookmarks keywords - - 2004-02-11 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_add): - - Update bookmarks keywords - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 1 + - 2 files changed, 7 insertions(+) - -commit fb5fe4f31dce92934ea16e87799716194d18fa79 -Author: Xan Lopez -Date: Wed Feb 11 19:46:15 2004 +0000 - - Put the serial numbers in duplicated filenames just before the last dot so - - - * embed/mozilla/MozDownload.cpp: - - Put the serial numbers in duplicated filenames just before - the last dot so we won't confuse apps like file-roller. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 34 +++++++++++++++++++++++++++------- - 2 files changed, 34 insertions(+), 7 deletions(-) - -commit 41cf817b2b238b15b76cc33ecd377cd756ff8e2a -Author: Denis Lackovic -Date: Wed Feb 11 18:48:33 2004 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - po/hr.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit a76b380840073050da3e5af125a6a8f6dc419c33 -Author: Zygimantas Berucka -Date: Wed Feb 11 16:44:11 2004 +0000 - - Updated Lithuanian translation. - - 2004-02-11 Zygimantas Berucka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 363 +++++++++++------------------------------------------------ - 2 files changed, 68 insertions(+), 299 deletions(-) - -commit b01c2dbd6cc45d35379da3636e04b99cf4cadbe1 -Author: Marco Pesenti Gritti -Date: Wed Feb 11 16:30:18 2004 +0000 - - Make columns resizable - - 2004-02-11 Marco Pesenti Gritti - - * embed/downloader-view.c: (downloader_view_build_ui): - - Make columns resizable - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 7 +++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit 93ed50eeef1f577d596e48a26bf583119bb55b0e -Author: Marco Pesenti Gritti -Date: Wed Feb 11 16:10:06 2004 +0000 - - Do not load js urls when middle clicked. - - 2004-02-11 Marco Pesenti Gritti - - * src/ephy-tab.c: (open_link_in_new_tab), - (ephy_tab_dom_mouse_click_cb): - - Do not load js urls when middle clicked. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 12 +++++------- - 2 files changed, 12 insertions(+), 7 deletions(-) - -commit 6ffa823dbba4a41c83f30776267b133ccc48fa94 -Author: Marco Pesenti Gritti -Date: Wed Feb 11 15:48:33 2004 +0000 - - Cleanup - - 2004-02-11 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: (completion_func): - - Cleanup - - * src/bookmarks/ephy-bookmarks.c: - - Increase format version - - ChangeLog | 10 ++++++++++ - lib/widgets/ephy-location-entry.c | 6 +++--- - src/bookmarks/ephy-bookmarks.c | 2 +- - 3 files changed, 14 insertions(+), 4 deletions(-) - -commit 1e23dc1c811a619678c6b2f8876a8c30066b7654 -Author: Marco Pesenti Gritti -Date: Wed Feb 11 15:21:18 2004 +0000 - - Better keyword matching function. Should match only words (not middle - - 2004-02-11 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: (keyword_match), - (completion_func): - - Better keyword matching function. Should match only words - (not middle parts of them) and maybe be a bit faster. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-location-entry.c | 37 ++++++++++++++++++++++++++++++++++++- - 2 files changed, 44 insertions(+), 1 deletion(-) - -commit a4e3a5f2856a8c2d9e200d94b7b9154b1a76434b -Author: Marco Pesenti Gritti -Date: Wed Feb 11 14:38:55 2004 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmark-action.c | 5 +- - src/bookmarks/ephy-bookmarks-menu.c | 5 +- - src/bookmarks/ephy-bookmarks.c | 115 ++++++++++++++++++++--------------- - src/bookmarks/ephy-topic-action.c | 5 +- - src/ephy-completion-model.c | 1 + - src/ephy-location-action.c | 1 + - 6 files changed, 80 insertions(+), 52 deletions(-) - -commit 79ccb3d443d31072de5718da6a3883aa35df9211 -Author: Marco Pesenti Gritti -Date: Wed Feb 11 14:38:12 2004 +0000 - - Pass the property id to the changed signal. - - 2004-02-11 Marco Pesenti Gritti - - * lib/ephy-node.c: (callback), (child_changed), - (ephy_node_set_property): - - Pass the property id to the changed signal. - - * lib/ephy-node.h: - - Cleanup. - - * embed/ephy-history.c: (hosts_changed_cb), (pages_changed_cb): - * lib/widgets/ephy-location-entry.c: (completion_func): - * lib/widgets/ephy-tree-model-node.c: (root_child_changed_cb): - * src/bookmarks/ephy-bookmark-action.c: - (bookmarks_child_changed_cb): - * src/bookmarks/ephy-bookmarks-menu.c: (topic_child_changed_cb): - * src/bookmarks/ephy-topic-action.c: (topic_child_changed_cb): - * src/ephy-completion-model.c: (root_child_changed_cb): - * src/ephy-location-action.c: (actions_child_changed_cb): - - Fixup changed signals signature. - - * src/bookmarks/ephy-bookmarks.c: (update_bookmark_keywords), - (bookmarks_changed_cb), (bookmark_is_categorized), - (topics_removed_cb), (ephy_bookmarks_set_keyword), - (ephy_bookmarks_unset_keyword): - - Cleanup keywords building, normalize and case fold it, add - the title words as keywords too. - - ChangeLog | 31 +++++++++++++++++++++++++++++++ - embed/ephy-history.c | 2 ++ - lib/ephy-node.c | 35 +++++++++++++++++++++++++++++++---- - lib/ephy-node.h | 26 +++++++++++--------------- - lib/widgets/ephy-location-entry.c | 18 +++--------------- - lib/widgets/ephy-tree-model-node.c | 1 + - 6 files changed, 79 insertions(+), 34 deletions(-) - -commit f842ea4bfff7c63fbc4f21d6c21e2b6ede6d35d0 -Author: Christophe Fergeau -Date: Wed Feb 11 13:28:04 2004 +0000 - - Fixed badly translated string preventing some sites from displaying - - 2004-02-11 Christophe Fergeau - - * fr.po: Fixed badly translated string preventing some sites from - displaying properly - - po/ChangeLog | 5 +++ - po/fr.po | 116 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 65 insertions(+), 56 deletions(-) - -commit fce4feb54cb6ba8b544c3316066aaede5e8244d4 -Author: Christian Persch -Date: Wed Feb 11 11:53:32 2004 +0000 - - Fix mem leaks. - - 2004-02-11 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: (impl_save): - - Fix mem leaks. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 3 +++ - 2 files changed, 9 insertions(+) - -commit 2767a4325bcdc1731f7abfe58a79831a83badd35 -Author: Marco Pesenti Gritti -Date: Wed Feb 11 08:19:28 2004 +0000 - - Better autocompletion sorting logic. - - 2004-02-11 Marco Pesenti Gritti - - * src/ephy-completion-model.c: (is_base_address), - (init_relevance_col): - - Better autocompletion sorting logic. - - * src/window-commands.c: (window_cmd_help_about): - - s/translator_credits/translator-credits - - ChangeLog | 11 +++++++++ - src/ephy-completion-model.c | 57 ++++++++++++++++++++++++++++++++++++--------- - src/window-commands.c | 4 ++-- - 3 files changed, 59 insertions(+), 13 deletions(-) - -commit edb02d56a6b998002e83528bb1de8bd0b8a02b43 -Author: Pauli Virtanen -Date: Tue Feb 10 23:11:56 2004 +0000 - - Updated Finnish translation. - - 2004-02-10 Pauli Virtanen - - * fi.po: Updated Finnish translation. - - po/ChangeLog | 4 ++++ - po/fi.po | 61 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 36 insertions(+), 29 deletions(-) - -commit 787631de022b3ae288a8fabfa1b5055100a610e3 -Author: Marco Pesenti Gritti -Date: Tue Feb 10 17:59:45 2004 +0000 - - Show the title of the bookmark, not the address - - 2004-02-10 Marco Pesenti Gritti - - * src/ephy-completion-model.c: (init_text_col): - - Show the title of the bookmark, not the address - - ChangeLog | 6 ++++++ - src/ephy-completion-model.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e1886a523868e98b8a1dfe2192cd4f15760f864d -Author: Changwoo Ryu -Date: Tue Feb 10 11:36:13 2004 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 ++ - po/ko.po | 130 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 69 insertions(+), 65 deletions(-) - -commit a6df8b6b60bcbdcc2cfd58fb014043cdd29997e9 -Author: Kjartan Maraas -Date: Tue Feb 10 09:35:47 2004 +0000 - - Updated Norwegian translation. - - 2004-02-10 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 +++ - po/no.po | 84 +++++++++++++++++++++++++++++------------------------------- - 2 files changed, 44 insertions(+), 44 deletions(-) - -commit d21bdb01f4f21037840f8482458a8ca05b2ea4c3 -Author: Christian Persch -Date: Mon Feb 9 18:55:54 2004 +0000 - - Fix the fix for the epiphany equivalent of bug #133633. Don't convert the - - 2004-02-09 Christian Persch - - * src/ephy-tab.c: (clipboard_text_received_cb), - (ephy_tab_dom_mouse_click_cb): - - Fix the fix for the epiphany equivalent of bug #133633. Don't convert - the clipboard contents directly as the souurce may not offer UTF-8 text. - Instead request the contents, and gtk+ will convert it for us. - - ChangeLog | 9 +++++++++ - src/ephy-tab.c | 43 ++++++++++++++++++++++++++++++++++++++----- - 2 files changed, 47 insertions(+), 5 deletions(-) - -commit ac0caa804c62ab537c47edd30eed00f67b6e5b41 -Author: Christian Persch -Date: Mon Feb 9 14:15:16 2004 +0000 - - Include config.h. - - 2004-02-09 Christian Persch - - * lib/egg/egg-editable-toolbar.c: - * embed/ephy-embed-popup-control.c: - - Include config.h. - - ChangeLog | 7 +++++++ - embed/ephy-embed-popup-control.c | 4 ++++ - lib/egg/egg-editable-toolbar.c | 6 ++++++ - 3 files changed, 17 insertions(+) - -commit eca639e172729a0e7a315986ddee24f9474b7491 -Author: Christian Rose -Date: Mon Feb 9 13:12:22 2004 +0000 - - Added "mi" to ALL_LINGUAS. Added Maori translation by John C Barstow - - 2004-02-09 Christian Rose - - * configure.in: Added "mi" to ALL_LINGUAS. - * po/mi.po: Added Maori translation by - John C Barstow . - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/mi.po | 3535 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3545 insertions(+), 1 deletion(-) - -commit b88b1293ba13084a8c59a4ac6247049f4edf5ae3 -Author: Funda Wang -Date: Mon Feb 9 12:04:39 2004 +0000 - - update - - po/ChangeLog | 4 + - po/zh_CN.po | 2767 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1648 insertions(+), 1123 deletions(-) - -commit 0831cc1dffc6fceaaa97afd6b467e1b2ccec4635 -Author: Francisco Javier F. Serrador -Date: Sun Feb 8 21:53:00 2004 +0000 - - Updated Spanish translation. - - 2004-02-08 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 +++ - po/es.po | 86 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 47 insertions(+), 43 deletions(-) - -commit 77eb9e0a46e70a80964608514fbeefe9e4102fc1 -Author: Christian Persch -Date: Sun Feb 8 14:28:23 2004 +0000 - - Remove trailing / in invocation of mkdir, since it's unneeded and not - - 2004-02-08 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_init): - - Remove trailing / in invocation of mkdir, since it's unneeded and not - portable. Patch by Julio M. Merino Vidal, fixes bug 133738. - - ChangeLog | 7 +++++++ - embed/ephy-favicon-cache.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 31cc6e632786972c77459572e971e254110f221b -Author: Ales Nyakhaychyk -Date: Sun Feb 8 08:09:58 2004 +0000 - - Updated Belarusian translation. - - po/ChangeLog | 4 + - po/be.po | 262 ++++++++++++++++++++++++++++++++++++++++++++++++----------- - 2 files changed, 218 insertions(+), 48 deletions(-) - -commit 73771e624680a21f04b81efd61c41f34802822dc -Author: Hasbullah Bin Pit -Date: Sun Feb 8 05:14:05 2004 +0000 - - Updated Malay translation. - - 2004-02-08 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - - po/ChangeLog | 4 +++ - po/ms.po | 90 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 50 insertions(+), 44 deletions(-) - -commit 699bacba37f50ce15e775057f7921affcea9c0bb -Author: Nikos Charonitakis -Date: Sat Feb 7 09:23:04 2004 +0000 - - Updated Greek translation (minor fixes) - - po/ChangeLog | 4 ++ - po/el.po | 213 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 118 insertions(+), 99 deletions(-) - -commit fb5ba63878fd835e041d3174424318621de6b50c -Author: Christian Persch -Date: Fri Feb 6 22:56:43 2004 +0000 - - Make middle-click paste work with urls with IDN domain names. Fixes the - - 2004-02-06 Christian Persch - - * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb): - - Make middle-click paste work with urls with IDN domain names. - Fixes the epiphany equivalent of galeon bug 133633. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 3 ++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 556e0048b57a869884511e7697dfde7918a619db -Author: Christian Persch -Date: Fri Feb 6 22:06:42 2004 +0000 - - Excise old galeon 1, non ported, defined-out code. - - 2004-02-06 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Excise old galeon 1, non ported, defined-out code. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 4 ---- - 2 files changed, 6 insertions(+), 4 deletions(-) - -commit c6262af5f8d012b671ef3107577b765b1e9ff8a1 -Author: Christian Persch -Date: Fri Feb 6 19:10:25 2004 +0000 - - Honour the --with-gconf-schema-file-dir and --disable-schemas-install - - 2004-02-06 Christian Persch - - * data/Makefile.am: - - Honour the --with-gconf-schema-file-dir and --disable-schemas-install - configure options. Patch by Julio M. Merino Vidal, fixes bug #133533. - - ChangeLog | 9 ++++++++- - data/Makefile.am | 4 +++- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 3bdea3fdb3ddefb1cefe06aa21e37d5493312289 -Author: Miloslav Trmac -Date: Fri Feb 6 17:17:10 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 59 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 34 insertions(+), 29 deletions(-) - -commit 0358dd495d90639a087342e4940d34a4ae1241fb -Author: Christian Persch -Date: Fri Feb 6 14:40:50 2004 +0000 - - Now that GtkComboBox supports mnemonic activation, set the focus target of - - 204-02-05 Christian Persch - - * data/glade/prefs-dialog.glade: - - Now that GtkComboBox supports mnemonic activation, - set the focus target of the combos' labels. - - ChangeLog | 7 +++++++ - data/glade/prefs-dialog.glade | 5 +++++ - 2 files changed, 12 insertions(+) - -commit 5e88bd1e6ee13a3bb9c3f76e0c11af1272ca836b -Author: Duarte Loreto -Date: Fri Feb 6 00:37:00 2004 +0000 - - Updated Portuguese translation. - - 2004-02-05 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 1066 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 632 insertions(+), 438 deletions(-) - -commit ffc8be713dce8d45b3e2d7862dc59b94577dcc34 -Author: Pauli Virtanen -Date: Thu Feb 5 22:04:30 2004 +0000 - - Updated Finnish translation. - - 2004-02-05 Pauli Virtanen - - * fi.po: Updated Finnish translation. - - po/ChangeLog | 4 + - po/fi.po | 2856 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 1715 insertions(+), 1145 deletions(-) - -commit e4c1d6f7c6c89ce021f207ef029d2c92d7265d3c -Author: Artur Flinta -Date: Thu Feb 5 14:43:01 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-02-05 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++++ - po/pl.po | 56 +++++++++++++++++++++++++++++--------------------------- - 2 files changed, 33 insertions(+), 27 deletions(-) - -commit 732acb827fb677539732c62ffe7039be64107c69 -Author: Piers Cornwell -Date: Thu Feb 5 10:47:26 2004 +0000 - - Make warning message selectable per hig. - - 2004-02-05 Piers Cornwell - - * src/ephy-session.c: (offer_to_resume): - - Make warning message selectable per hig. - - ChangeLog | 6 ++++++ - src/ephy-session.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit a22233aef07b532dc4fd674c04b68cfedfe5fd4a -Author: Laurent Dhima -Date: Thu Feb 5 10:02:38 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit bc287503beb1a1741639a5731cd002612827ae78 -Author: Laurent Dhima -Date: Thu Feb 5 10:00:52 2004 +0000 - - Updated - - po/sq.po | 93 +++++++++++++++++++++++++++------------------------------------- - 1 file changed, 39 insertions(+), 54 deletions(-) - -commit 46870c904459123bab2c4dd2801933bcb0141b80 -Author: Christian Persch -Date: Wed Feb 4 23:30:02 2004 +0000 - - No need to connect to the toolitem's create-menu-proxy signal, gtk+ does - - 2004-02-05 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (connect_proxy): - * src/bookmarks/ephy-topic-action.c: (connect_proxy): - - No need to connect to the toolitem's create-menu-proxy signal, - gtk+ does it for us. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmark-action.c | 27 ++------------------------- - src/bookmarks/ephy-topic-action.c | 24 ------------------------ - 3 files changed, 10 insertions(+), 49 deletions(-) - -commit 0c598aa8e3fd37f4cb2e7b16957b06ac78b710ce -Author: Christian Persch -Date: Wed Feb 4 22:39:28 2004 +0000 - - gtk+ now connects the tool item's create_menu_proxy to the action's - - 2004-02-04 Christian Persch - - * src/ephy-go-action.c: (ephy_go_action_get_type), - (create_tool_item), (ephy_go_action_class_init): - - gtk+ now connects the tool item's create_menu_proxy to the - action's create_menu_item, so we don't need to do it ourselves. - Also unnecessary to do connect_proxy. - The go action is now almost empty, we should really see if - we can use a stock gtktoolbutton for it. - - 2004-02-04 Christian Persch - - ChangeLog | 12 +++++++- - src/ephy-go-action.c | 86 +++++----------------------------------------------- - 2 files changed, 18 insertions(+), 80 deletions(-) - -commit 74c61ab583069d84e242400b064ab0f1ca828e29 -Author: Christian Persch -Date: Wed Feb 4 22:25:27 2004 +0000 - - Fix toolbar overflow menu creation. Don't connect zoom control signals to - - 2004-02-04 Christian Persch - - * lib/widgets/ephy-zoom-action.c: (ephy_zoom_action_get_type), - (zoom_to_level_cb), (connect_proxy), (proxy_menu_activate_cb), - (create_menu_item), (ephy_zoom_action_class_init): - * lib/widgets/ephy-zoom-action.h: - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_class_init): - * src/ephy-history-window.c: (cmd_delete), - - Fix toolbar overflow menu creation. Don't connect zoom control signals - to a menu item. - - ChangeLog | 12 +++++ - lib/widgets/ephy-zoom-action.c | 101 ++++++++++++++++++++++++++++++++-------- - lib/widgets/ephy-zoom-action.h | 10 ++-- - lib/widgets/ephy-zoom-control.c | 64 +------------------------ - 4 files changed, 100 insertions(+), 87 deletions(-) - -commit 0d384021eea98605ab92c8b8842a9c0c8e9240b3 -Author: Christian Persch -Date: Wed Feb 4 22:23:34 2004 +0000 - - Fix mem leak. - - 2004-02-04 Christian Persch - - * lib/widgets/ephy-arrow-toolbutton.c: - (ephy_arrow_toolbutton_finalize): - - Fix mem leak. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-arrow-toolbutton.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 35b0e5aa03825bf7f9419f40d07c24a5120a7156 -Author: Christian Persch -Date: Wed Feb 4 20:07:25 2004 +0000 - - Dialogs shouldn't show up in the window list, period. - - 2004-02-04 Christian Persch - - * data/glade/epiphany.glade: - * data/glade/certificate-dialogs.glade: - * data/glade/print.glade: - * data/glade/prefs-dialog.glade: - - Dialogs shouldn't show up in the window list, period. - - ChangeLog | 9 +++++++++ - data/glade/certificate-dialogs.glade | 2 +- - data/glade/epiphany.glade | 2 +- - data/glade/prefs-dialog.glade | 2 +- - data/glade/print.glade | 4 ++-- - 5 files changed, 14 insertions(+), 5 deletions(-) - -commit 6983f15ffd23ab74c5f9a58988f29e602abc14aa -Author: Christian Persch -Date: Wed Feb 4 19:47:00 2004 +0000 - - Don't show Find, Add Language, and Encodings dialogue in window list. - - 2004-02-04 Christian Persch - - * data/glade/pref-dialog.glade: - * data/glade/epiphany.glade: - - Don't show Find, Add Language, and Encodings dialogue in - window list. - - ChangeLog | 8 ++++++++ - data/glade/epiphany.glade | 4 ++-- - data/glade/prefs-dialog.glade | 2 +- - 3 files changed, 11 insertions(+), 3 deletions(-) - -commit 065939900815a23c14516b588056a171b43295d7 -Author: David Bordoley -Date: Wed Feb 4 18:51:47 2004 +0000 - - Set a default height/width for the dialog. - - 2004-02-04 David Bordoley - - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_new): - - Set a default height/width for the dialog. - - ChangeLog | 6 ++++++ - src/ephy-encoding-dialog.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit c9efe21b04fe200299f796b83c4ef2fbe0f0547c -Author: Biggest Flake Ever -Date: Wed Feb 4 18:41:14 2004 +0000 - - David Bordoley - - 2004-02-04 Biggest Flake Ever - David Bordoley - - * embed/downloader-view.c: (downloader_view_new): - * src/prefs-dialog.c: (setup_add_language_dialog): - - Use a default width/height for dialogs with - tree views that don't have a fixed requisition. - - ChangeLog | 9 +++++++++ - embed/downloader-view.c | 2 ++ - src/prefs-dialog.c | 2 ++ - 3 files changed, 13 insertions(+) - -commit 7dc59a52f88fd0298de79ea9531dd58c2235f334 -Author: Piers Cornwell -Date: Wed Feb 4 15:59:15 2004 +0000 - - Use title capitalisation for title. - - 2004-02-04 Piers Cornwell - - * src/ephy-history-window.c: (confirmation_dialog_construct): - - Use title capitalisation for title. - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 3573f678ad8c18e31c18d985222e69e33c92985f -Author: Miloslav Trmac -Date: Mon Feb 2 18:46:10 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 52 +++++++++++++++++++++++++--------------------------- - 2 files changed, 29 insertions(+), 27 deletions(-) - -commit 221318e841baa73f7d429daf8e687cb9081ba215 -Author: Maxim Dziumanenko -Date: Mon Feb 2 15:39:14 2004 +0000 - - Add Ukrainian translation - - 2004-02-02 Maxim Dziumanenko - - * Add Ukrainian translation - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/uk.po | 3549 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3558 insertions(+), 1 deletion(-) - -commit 16a7cb4bf4958424df68bd5e8d68f18f645fc3b2 -Author: Artur Flinta -Date: Mon Feb 2 07:16:18 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-02-02 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++++ - po/pl.po | 72 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 40 insertions(+), 36 deletions(-) - -commit 0d7337555863eef2343b5fc4a71f8c469493f877 -Author: Marco Pesenti Gritti -Date: Sun Feb 1 23:39:56 2004 +0000 - - *** empty log message *** - - .cvsignore | 2 ++ - 1 file changed, 2 insertions(+) - -commit 09b8a745af0f45790035dd394b7b1c422143dd45 -Author: Marco Pesenti Gritti -Date: Sun Feb 1 23:39:16 2004 +0000 - - Use gnome-common to generate help makefiles - - 2004-02-02 Marco Pesenti Gritti - - * autogen.sh: - * omf.make: - * xmldocs.make: - - Use gnome-common to generate help makefiles - - ChangeLog | 8 +++++ - autogen.sh | 3 +- - omf.make | 53 --------------------------------- - xmldocs.make | 95 ------------------------------------------------------------ - 4 files changed, 10 insertions(+), 149 deletions(-) - -commit f5c0972a29cbe7307023908f8f89b27b0db763b0 -Author: Christian Persch -Date: Sun Feb 1 22:53:00 2004 +0000 - - Version 1.1.7. - - 2004-02-01 Christian Persch - - * configure.in: - - Version 1.1.7. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 29381411f305c8ddc80cea606f35a225cfdbf990 -Author: Christian Persch -Date: Sun Feb 1 22:52:10 2004 +0000 - - Decouple extensions manager initialisation and extensions loading. Fixes a - - 2004-02-01 Christian Persch - - * src/ephy-extensions-manager.c: (ephy_extensions_manager_init): - * src/ephy-extensions-manager.h: - * src/ephy-shell.c: (ephy_shell_get_extensions_manager): - - Decouple extensions manager initialisation and extensions loading. - Fixes a crash when an extensions tried to get the session, - causing us to load extensions more than once. - - ChangeLog | 10 ++++++++++ - src/ephy-extensions-manager.c | 4 +--- - src/ephy-extensions-manager.h | 3 +++ - src/ephy-shell.c | 6 +++++- - 4 files changed, 19 insertions(+), 4 deletions(-) - -commit 1617c0c726c160c11707e57ed0af49084b93d5d6 -Author: Marco Pesenti Gritti -Date: Sun Feb 1 22:45:22 2004 +0000 - - typo in icon name - - 2004-02-01 Marco Pesenti Gritti - - * lib/ephy-stock-icons.h: - - typo in icon name - - ChangeLog | 6 ++++++ - lib/ephy-stock-icons.h | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 253c2df5c34126431d4b43374793bbba6ced0cf8 -Author: Ole Laursen -Date: Sun Feb 1 21:48:42 2004 +0000 - - Updated Danish translation. - - 2004-02-01 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 1491 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 872 insertions(+), 623 deletions(-) - -commit c5ad0aa775ae77f8d37ab3689171e5d7511a4d18 -Author: Christian Persch -Date: Sun Feb 1 21:42:11 2004 +0000 - - Add a space after period, fixes bug #133151. - - 2004-02-01 Christian Persch - - * embed/mozilla/ContentHandler: - - Add a space after period, fixes bug #133151. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 267cc41455810a730c107009da9b49de5cc9afe9 -Author: Mətin Əmirov -Date: Sun Feb 1 21:37:44 2004 +0000 - - Translation updated. - - 2004-02-01 Mətin Əmirov - - * az.po: Translation updated. - - po/ChangeLog | 4 + - po/az.po | 2231 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 1335 insertions(+), 900 deletions(-) - -commit b67104e201f097f830715b205d22f6439e9950fe -Author: Denis Lackovic -Date: Sun Feb 1 19:23:38 2004 +0000 - - *** empty log message *** - - po/ChangeLog | 4 + - po/hr.po | 1029 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 555 insertions(+), 478 deletions(-) - -commit ec21235611931612f8518d9de7393bb287654062 -Author: Marco Pesenti Gritti -Date: Sun Feb 1 11:16:02 2004 +0000 - - *** empty log message *** - - doc/reference/Makefile.am | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 7728f91a4045301b89eb6562ffd40ae15895482d -Author: Marcel Telka -Date: Sun Feb 1 09:48:53 2004 +0000 - - Updated Slovak translation. - - 2004-02-01 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 1900 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1090 insertions(+), 814 deletions(-) - -commit 0a9eed099200131b611b2e84aafb591cc31cb449 -Author: Xan Lopez -Date: Sun Feb 1 00:49:46 2004 +0000 - - Activating the status icon should only show it (HIG says so). Also set the - - - * embed/downloader-view.c: (status_icon_activated), - (downloader_view_build_ui): - - Activating the status icon should only show it (HIG says so). - Also set the downloader view to BROSWE mode. - - ChangeLog | 8 ++++++++ - embed/downloader-view.c | 11 ++--------- - 2 files changed, 10 insertions(+), 9 deletions(-) - -commit 445fe305203a642ac53a0948ca7b0ee9b17e1164 -Author: Marco Pesenti Gritti -Date: Sun Feb 1 00:15:16 2004 +0000 - - *** empty log message *** - - NEWS | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 474973befb00b37b5b9808cfbd44a88e99750734 -Author: Adam Hooper -Date: Sun Feb 1 00:12:23 2004 +0000 - - Prepare for 1.1.6 - - ChangeLog | 7 +++++++ - NEWS | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - configure.in | 2 +- - 3 files changed, 68 insertions(+), 1 deletion(-) - -commit f19412df701e05389217a358ee5fa3569b2dd49e -Author: Laurent Dhima -Date: Sat Jan 31 23:51:21 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit ce129191f2082475c87e3fcbda313eb5ec891a24 -Author: Laurent Dhima -Date: Sat Jan 31 23:49:33 2004 +0000 - - Updated - - po/sq.po | 824 +++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 431 insertions(+), 393 deletions(-) - -commit d0186db7221c5efcdb91ad3de10592b147f2df9a -Author: Changwoo Ryu -Date: Sat Jan 31 18:46:56 2004 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ko.po | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -commit c7e6be8c16686be15230850c51abd46934e25b36 -Author: Changwoo Ryu -Date: Sat Jan 31 15:00:39 2004 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 751 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 394 insertions(+), 361 deletions(-) - -commit 6e495ac9a7e7142b04f6d55045bfa4d2265e749b -Author: Kjartan Maraas -Date: Sat Jan 31 12:35:31 2004 +0000 - - Updated Norwegian translation. - - 2004-01-31 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 520 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 268 insertions(+), 256 deletions(-) - -commit 6c47a11dbf6c49ea42970eb3e9db4247ea2ae7d9 -Author: Adam Hooper -Date: Sat Jan 31 03:16:29 2004 +0000 - - Obvious typo fix - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 542a341ce0b912079d827809624722a77371b92b -Author: Hasbullah Bin Pit -Date: Sat Jan 31 01:47:28 2004 +0000 - - minor fix - - po/ms.po | 1 + - 1 file changed, 1 insertion(+) - -commit c9f26a9751d0fa85b3b1d4342ef1ef2a538b5a52 -Author: Hasbullah Bin Pit -Date: Sat Jan 31 01:43:58 2004 +0000 - - Updated Malay translation. - - 2004-01-31 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - - po/ChangeLog | 4 + - po/ms.po | 1350 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 762 insertions(+), 592 deletions(-) - -commit 46fec71926889b983b9f5f18f10e7259d25bfb24 -Author: Christian Persch -Date: Fri Jan 30 21:24:37 2004 +0000 - - Don't try to g_free a nsCOMPtr<>, and use nsMemory::Free for the mMimeType - - 2004-01-30 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Don't try to g_free a nsCOMPtr<>, and use nsMemory::Free for the - mMimeType string. - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 3 +-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 8c76cbff028c09a5c7158527a5a72ae331d2a156 -Author: Francisco Javier F. Serrador -Date: Fri Jan 30 17:08:41 2004 +0000 - - Updated Spanish translation. - - 2004-01-30 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 391 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 206 insertions(+), 189 deletions(-) - -commit 0f221ab74a8b038e9e8135a19b380b28dcc4b06a -Author: Miloslav Trmac -Date: Fri Jan 30 11:07:51 2004 +0000 - - Update Czech translaiton - - po/ChangeLog | 4 + - po/cs.po | 394 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 206 insertions(+), 192 deletions(-) - -commit 81522e96e9c996c50fefef0b9604853a7d9a8fab -Author: Christian Persch -Date: Thu Jan 29 18:00:33 2004 +0000 - - Fix mem leak. - - 2004-01-29 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit f180950b607535839b49815158e0981556148625 -Author: Christian Persch -Date: Thu Jan 29 12:13:10 2004 +0000 - - Fix property getter of "icon" property. - - 2004-01-29 Christian Persch - - * src/ephy-favicon-action.c: (ephy_favicon_action_set_property), - (ephy_favicon_action_get_property): - - Fix property getter of "icon" property. - - ChangeLog | 7 +++++++ - src/ephy-favicon-action.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 180ab006960fe139894d8c51a0781ca3c33340ab -Author: Christian Persch -Date: Thu Jan 29 11:43:27 2004 +0000 - - Fix mem leak. - - 2004-01-29 Christian Persch - - * embed/mozilla/MozDownload.cpp: - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 1 + - 2 files changed, 7 insertions(+) - -commit 76c5a174fef9a2f3a46c7476a21bd202e521c36b -Author: Christian Persch -Date: Thu Jan 29 11:42:33 2004 +0000 - - Fix mem leak. - - 2004-01-29 Christian Persch - - * embed/downloader-view.c: (update_download_row): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 13 ++++++------- - 2 files changed, 12 insertions(+), 7 deletions(-) - -commit 7c19c50e52e288159d58a4894a439e6a1fb80b72 -Author: Christian Persch -Date: Thu Jan 29 10:42:11 2004 +0000 - - Fix encodign conversion of "Untitled" filename suggestion. Fixes bug - - 2004-01-29 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - - Fix encodign conversion of "Untitled" filename suggestion. - Fixes bug #132822. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit c00045335cefa6e2b657934424dcb25a55da9e08 -Author: Christian Persch -Date: Wed Jan 28 19:00:37 2004 +0000 - - Don't crash when reading the RDF file fails. - - 2004-01-28 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: - (ephy_bookmarks_import_rdf): - - Don't crash when reading the RDF file fails. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-import.c | 10 +++++++++- - src/bookmarks/ephy-topic-action.c | 4 ++-- - 3 files changed, 18 insertions(+), 3 deletions(-) - -commit 65b46c9e9e72d31a3a8937c4774f91b549fb214d -Author: Christian Persch -Date: Wed Jan 28 18:55:53 2004 +0000 - - Use rdf:resource instead of rdf:about, fixes bug #131543. - - 2004-01-28 Christian Persch - - * src/bookmarks/ephy-bookmarks-export.c: - (ephy_bookmarks_export_rdf): - - Use rdf:resource instead of rdf:about, fixes bug #131543. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-export.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 283e534a38322c2783ff004081717e3d8eca83c2 -Author: Christian Persch -Date: Wed Jan 28 18:41:58 2004 +0000 - - Sync topic names in the menu. Fixes bug #128097. - - 2004-01-28 Christian Persch - - * src/bookmarks/ephy-bookmarks-menu.c: - (ephy_bookmarks_menu_get_type), (sync_topic_properties), - (topic_child_changed_cb), (ephy_bookmarks_menu_init): - - Sync topic names in the menu. Fixes bug #128097. - - ChangeLog | 8 ++++ - src/bookmarks/ephy-bookmarks-menu.c | 79 ++++++++++++++++++++++++++++--------- - 2 files changed, 68 insertions(+), 19 deletions(-) - -commit d51741a8f81b10f4bff7b3a73f04fc7f71b7cbcb -Author: Christian Persch -Date: Wed Jan 28 18:32:07 2004 +0000 - - Fix options parsing. - - 2004-01-28 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_solve_smart_url), - (options_find_first_option), (smart_url_options_get): - - Fix options parsing. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks.c | 38 +++++++++++++++++++++++--------------- - 2 files changed, 30 insertions(+), 15 deletions(-) - -commit a02ddda2f0c8abfb4d0ec8f526ac7c68038dd9b3 -Author: David Bordoley -Date: Wed Jan 28 16:20:56 2004 +0000 - - Use EPHY_STOCK_DOWNLOAD for the download link icon. - - 2004-01-28 David Bordoley - - * src/ephy-window.c: - Use EPHY_STOCK_DOWNLOAD for the download - link icon. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 632937f3452c3d44c0df975c15c6499800df042a -Author: Christian Persch -Date: Wed Jan 28 12:58:35 2004 +0000 - - Fix linking with nautilus view enabled. - - 2004-01-28 Christian Persch - - * src/Makefile.am: - - Fix linking with nautilus view enabled. - - ChangeLog | 6 ++++++ - src/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 003eafee1884b5474f9b5230365da7f90493193e -Author: Christian Persch -Date: Wed Jan 28 12:09:25 2004 +0000 - - Check for required libnautilus version, and conditionally enable nautilus - - 2004-01-28 Christian Persch - - * configure.in: - * src/Makefile.am: - - Check for required libnautilus version, and conditionally enable - nautilus view. - - ChangeLog | 8 ++++++++ - configure.in | 13 +++++++++---- - src/Makefile.am | 8 ++++++++ - 3 files changed, 25 insertions(+), 4 deletions(-) - -commit d78a429ac1539747886f328c93b9830ea9ddd3a3 -Author: Miloslav Trmac -Date: Wed Jan 28 10:35:40 2004 +0000 - - Fixed Czech translation - - po/ChangeLog | 4 ++ - po/cs.po | 136 +++++++++++++++++++++++------------------------------------ - 2 files changed, 56 insertions(+), 84 deletions(-) - -commit a242adc71b5b179915a2b0ded0e64da953ec5e75 -Author: Piers Cornwell -Date: Tue Jan 27 21:31:18 2004 +0000 - - Update documentation. - - - 2004-01-27 Piers Cornwell - - * help/C/epiphany.xml: - - Update documentation. - - ChangeLog | 6 ++++ - help/C/epiphany.xml | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++--- - 2 files changed, 92 insertions(+), 5 deletions(-) - -commit 3ed0f94e31b15f98eabd0af660e4a3a1f315faa5 -Author: Christian Persch -Date: Tue Jan 27 13:52:44 2004 +0000 - - Only try to rmdir() the tmp directory if we have one. - - 2004-01-27 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_helpers_shutdown): - - Only try to rmdir() the tmp directory if we have one. - - ChangeLog | 6 ++++++ - lib/ephy-file-helpers.c | 9 ++++++--- - 2 files changed, 12 insertions(+), 3 deletions(-) - -commit 7c0b959f0387ff24b16ef566813e61bdd9734705 -Author: Marco Pesenti Gritti -Date: Tue Jan 27 12:48:55 2004 +0000 - - Make sure to not initialize EphyBrowser multiple times. - - 2004-01-27 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - - Make sure to not initialize EphyBrowser - multiple times. - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyBrowser.cpp | 7 ++++++- - embed/mozilla/EphyBrowser.h | 1 + - 3 files changed, 15 insertions(+), 1 deletion(-) - -commit c3d6773d571a32552753d4284063d5b5056e649b -Author: Danilo Šegan -Date: Tue Jan 27 10:53:43 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 431 ++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 431 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 454 insertions(+), 412 deletions(-) - -commit 057800fb9c9c33a146f9a9e3197f0276128c9194 -Author: Christophe Merlet -Date: Mon Jan 26 22:26:31 2004 +0000 - - Updated French translation. - - po/ChangeLog | 4 ++++ - po/fr.po | 30 +++++++++++++++--------------- - 2 files changed, 19 insertions(+), 15 deletions(-) - -commit 38441120e91e4f64e358df9e9ff379ac01a40e16 -Author: Andraz Tori -Date: Mon Jan 26 20:22:52 2004 +0000 - - Updated Slovenian translation - - po/sl.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 310062d53de386a4b9fe4bc8ad4abc46f5664159 -Author: Christian Persch -Date: Mon Jan 26 17:09:06 2004 +0000 - - Fix mem leak. - - 2004-01-26 Christian Persch - - * embed/ephy-download.c: (ephy_download_get_name): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/ephy-download.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 1a0500c89fb759163f207a92f419aaed18005dd0 -Author: Christian Persch -Date: Mon Jan 26 16:50:55 2004 +0000 - - Fix mem leak. - - 2004-01-26 Christian Persch - - * embed/downloader-view.c: (update_download_row): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 7 ++++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit 55ba1cde8f499fb2b54333717c05a2c6bc646561 -Author: Christian Persch -Date: Mon Jan 26 16:47:34 2004 +0000 - - Fix mem leak. - - 2004-01-26 Christian Persch - - * embed/downloader-view.c: (update_download_row): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 1 + - 2 files changed, 7 insertions(+) - -commit 1aaae7247540fa344adde11946527679949af90e -Author: Artur Flinta -Date: Mon Jan 26 10:09:05 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-01-26 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 717 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 365 insertions(+), 356 deletions(-) - -commit f6c6814518eb91c250b14d0aacfbfe4f5a544e9c -Author: Zygimantas Berucka -Date: Mon Jan 26 10:01:18 2004 +0000 - - Updated Lithuanian translation. - - 2004-01-26 Zygimantas Berucka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 2906 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 1769 insertions(+), 1141 deletions(-) - -commit 11e6272ce16b0078df5bfec3011fa2073a1f215c -Author: Sanlig Badral -Date: Sun Jan 25 23:30:43 2004 +0000 - - Updated Mongolian translation - - po/ChangeLog | 4 + - po/mn.po | 2908 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1680 insertions(+), 1232 deletions(-) - -commit abe5e0ce34e5884a3f05522a97421fc244be1ab9 -Author: Marco Pesenti Gritti -Date: Sun Jan 25 23:16:45 2004 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - NEWS | 2 +- - embed/mozilla/ContentHandler.cpp | 11 ++++++++++- - 3 files changed, 17 insertions(+), 2 deletions(-) - -commit d68b6453137d04f930e398c3b068b23e76feb300 -Author: Marco Pesenti Gritti -Date: Sun Jan 25 22:48:28 2004 +0000 - - Correct a translator name. - - 2004-01-25 Marco Pesenti Gritti - - * NEWS: - - Correct a translator name. - - * embed/mozilla/ContentHandler.cpp: - - Really cancel the download when the user told so. - - * lib/ephy-dialog.c: (setup_default_size), (ephy_dialog_run), - (ephy_dialog_init), (ephy_dialog_set_property), - (ephy_dialog_get_property), (ephy_dialog_class_init): - - Add default width/height properties. - - ChangeLog | 16 ++++++++ - embed/mozilla/ContentHandler.cpp | 6 ++- - lib/ephy-dialog.c | 88 +++++++++++++++++++++------------------- - 3 files changed, 67 insertions(+), 43 deletions(-) - -commit 7ebc08b9e2458d83194a9f264baefda114146981 -Author: Christophe Merlet -Date: Sun Jan 25 22:22:19 2004 +0000 - - Updated French translation. - - po/ChangeLog | 4 + - po/fr.po | 6627 +++++++--------------------------------------------------- - 2 files changed, 704 insertions(+), 5927 deletions(-) - -commit a2c41bf930f4777fc4a82ac165a3e14f2598bd7a -Author: Christian Persch -Date: Sun Jan 25 21:35:08 2004 +0000 - - Include nsIMIMEInfo.h to fix compilation with mozilla 1.4. - - 2004-01-25 Christian Persch - - * embed/mozilla/MozDownload.h: - - Include nsIMIMEInfo.h to fix compilation with mozilla 1.4. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.h | 1 + - 2 files changed, 7 insertions(+) - -commit 4ae1d220a740d44d6692440a223bdd1da5120ae0 -Author: Christian Persch -Date: Sun Jan 25 20:10:07 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * src/window-commands.c: (window_cmd_file_print_preview): - - Fix mem leak. - - ChangeLog | 6 ++++++ - src/window-commands.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit b333ebbeb7e8f981e7d9f397e185e78b5d57f523 -Author: Christian Persch -Date: Sun Jan 25 20:09:19 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * src/ephy-history-window.c: (get_details_value): - - Fix mem leak. - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 1 + - 2 files changed, 7 insertions(+) - -commit efb44feef21557283e8c7bc1171d4130594d9444 -Author: Christian Persch -Date: Sun Jan 25 20:08:32 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * src/bookmarks/ephy-bookmarks-export.c: - (ephy_bookmarks_export_rdf): - - Fix mem leak. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-export.c | 8 +++++++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 1b1252af7d5375985948ae461cdb30629d18b2af -Author: Christian Persch -Date: Sun Jan 25 20:06:44 2004 +0000 - - Fix mem leaks. - - 2004-01-25 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (search_entry_search_cb), - (get_details_value): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 3 +-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit c357f8c35a7d3447482d8dadf588ed4fb0ca6f0b -Author: Christian Persch -Date: Sun Jan 25 20:05:39 2004 +0000 - - ==> ChangeLog <== - 2004-01-25 Christian Persch - - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_finalize): - - Fix mem leak. - - 2004-01-25 Christian Persch - - * lib/widgets/ephy-node-view.c: (ephy_node_view_finalize): - - ChangeLog | 7 +++++++ - lib/widgets/ephy-tree-model-node.c | 1 + - 2 files changed, 8 insertions(+) - -commit 97da2f3f87346cb07b320e2c9a7b5e1f1a662cd4 -Author: Christian Persch -Date: Sun Jan 25 20:04:28 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * lib/widgets/ephy-node-view.c: (ephy_node_view_finalize): - - Fix mem leak. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-node-view.c | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 6e95a5fe46c4be44b37889a273624f87d6fe367e -Author: Christian Persch -Date: Sun Jan 25 20:02:53 2004 +0000 - - 2004-01-25 Christian Persch - - * lib/ephy-node-filter.c: (ephy_node_filter_finalize), - (ephy_node_filter_new), (ephy_node_filter_add_expression): - - ChangeLog | 7 +++++++ - lib/ephy-node-filter.c | 12 +++--------- - 2 files changed, 10 insertions(+), 9 deletions(-) - -commit 4e3b7b223e65470120512d7f06fd534b7d90176f -Author: Christian Persch -Date: Sun Jan 25 20:01:12 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * embed/ephy-history.c: (ephy_history_finalize): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/ephy-history.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit ace46cd6e40b0f3ca7e6c964d55a1d5b54e80d72 -Author: David Bordoley -Date: Sun Jan 25 19:01:15 2004 +0000 - - Update the screenshot to match the default toolbar layout. - - 2004-01-25 David Bordoley - - * help/C/figures/ephy-screenshot.png: - - Update the screenshot to match the default toolbar layout. - - ChangeLog | 6 ++++++ - help/C/figures/ephy-screenshot.png | Bin 40200 -> 143730 bytes - 2 files changed, 6 insertions(+) - -commit c5c772d20bde3342ebc858371e6855ad9bd1a06e -Author: Christian Persch -Date: Sun Jan 25 16:38:49 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * lib/ephy-node-db.c: (ephy_node_db_finalize): - - Fix mem leak. - - ChangeLog | 6 ++++++ - lib/ephy-node-db.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 576c5d0e7560c4ae9944677c04952ca1d6ecfa0f -Author: Christian Persch -Date: Sun Jan 25 16:35:01 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * src/bookmarks/ephy-bookmarks-export.c: - (ephy_bookmarks_export_rdf): - - Fix mem leak. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-export.c | 14 +++++--------- - 2 files changed, 12 insertions(+), 9 deletions(-) - -commit 0ac06564fe20c1e28724fed98411edb1de954639 -Author: Adam Hooper -Date: Sun Jan 25 15:19:05 2004 +0000 - - Fixed early freeing of tmp_dir - - ChangeLog | 6 ++++++ - lib/ephy-file-helpers.c | 14 ++++++++++---- - 2 files changed, 16 insertions(+), 4 deletions(-) - -commit 3581016c967e67030e184d9dbc856c0ba07deda2 -Author: Christian Persch -Date: Sun Jan 25 13:55:37 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * src/ephy-tabs-menu.c: (tab_set_action_accelerator): - - Fix mem leak. - - ChangeLog | 6 ++++++ - src/ephy-tabs-menu.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 06f850bde5bcb9cd58dc0a7e2548a9eeb30a9d4c -Author: Christian Persch -Date: Sun Jan 25 13:54:41 2004 +0000 - - Fix mem leaks. - - 2004-01-25 Christian Persch - - * src/ephy-session.c: (ephy_session_save): - - Fix mem leaks. - - ChangeLog | 6 ++++++ - src/ephy-session.c | 3 +++ - 2 files changed, 9 insertions(+) - -commit 8873db168de0809230e68187cd6bd92880a818fb -Author: Christian Persch -Date: Sun Jan 25 13:53:48 2004 +0000 - - Fix mem leaks. - - 2004-01-25 Christian Persch - - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - - Fix mem leaks. - - ChangeLog | 6 ++++++ - lib/ephy-stock-icons.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 82b1ad8936e032380ef6fb816067359b8cc4a368 -Author: Christian Persch -Date: Sun Jan 25 13:53:14 2004 +0000 - - Fix mem leaks. - - 2004-01-25 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_tmp_dir), - (ephy_file_tmp_filename): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - lib/ephy-file-helpers.c | 7 +++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit c9b7b029c7278523452e1962bf188359f534ab1e -Author: Christian Persch -Date: Sun Jan 25 13:52:36 2004 +0000 - - Fix mem leaks. - - 2004-01-25 Christian Persch - - * lib/ephy-dialog.c: (set_value_from_pref), - (set_combo_box_from_value): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - lib/ephy-dialog.c | 5 ++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit afd11d955382b2b6637f4b13a96d072c5f632c57 -Author: Christian Persch -Date: Sun Jan 25 13:51:21 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 1 + - 2 files changed, 7 insertions(+) - -commit 51187edd5cca894a413004da6729ed88eee2a5ab -Author: Christian Persch -Date: Sun Jan 25 13:50:37 2004 +0000 - - Fix mem leak. - - 2004-01-25 Christian Persch - - * embed/ephy-favicon-cache.c: (remove_obsolete_icons): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/ephy-favicon-cache.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 6dabc7076a22b340ca3039a393424302a85df118 -Author: Kostas Papadimas -Date: Sun Jan 25 10:32:42 2004 +0000 - - Updated the Greek translation - - po/ChangeLog | 4 + - po/el.po | 960 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 541 insertions(+), 423 deletions(-) - -commit f7be5f2113a67ae741146181bc163e63f027297d -Author: Marco Pesenti Gritti -Date: Sun Jan 25 00:38:47 2004 +0000 - - Add a way to get the downloads dir with a comment for translators. Use dir - - 2004-01-25 Marco Pesenti Gritti - - * lib/ephy-file-helpers.c: (ephy_file_tmp_dir), - (ephy_file_downloads_dir): - * lib/ephy-file-helpers.h: - - Add a way to get the downloads dir with a comment - for translators. - Use dir instead of directory consistently with - the other functions. - - * embed/mozilla/MozDownload.cpp: - * src/prefs-dialog.c: (get_download_button_label): - * src/window-commands.c: (save_temp_source): - - Use the helper. - - ChangeLog | 17 +++++++++++++++++ - embed/mozilla/MozDownload.cpp | 4 ++-- - lib/ephy-file-helpers.c | 14 +++++++++++++- - lib/ephy-file-helpers.h | 5 ++++- - src/prefs-dialog.c | 16 +++++++--------- - src/window-commands.c | 3 ++- - 6 files changed, 45 insertions(+), 14 deletions(-) - -commit 8b723af53aa4bd4b45f68f4035afd08091aecee4 -Author: Christian Persch -Date: Sat Jan 24 21:56:42 2004 +0000 - - Updated copyright date. - - 2004-01-24 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Updated copyright date. - - ChangeLog | 6 ++++++ - src/window-commands.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit e5ebb969ecfa6403f7dbf9e3aad84a73cbcf34e1 -Author: Christian Persch -Date: Sat Jan 24 21:19:32 2004 +0000 - - Double underscores, since otherwise the menu entry will display them as - - 2004-01-24 Christian Persch - - * src/ephy-tab.c: (ephy_tab_set_title): - - Double underscores, since otherwise the menu entry will - display them as accellerators. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 6 ++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 0518fff76056458a5d6d3c246ed459b0f2e8ed04 -Author: Christian Persch -Date: Sat Jan 24 21:05:50 2004 +0000 - - When checking forms for modifications, handle correctly text entries with - - 2004-01-24 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - When checking forms for modifications, handle correctly - text entries with default value longer than maxlength. - Mozilla bug #232057. - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyBrowser.cpp | 16 ++++++++++++++-- - 2 files changed, 22 insertions(+), 2 deletions(-) - -commit 932522948a6660aa1ac0517f208bd8bb22147451 -Author: David Bordoley -Date: Sat Jan 24 20:58:26 2004 +0000 - - Add a hidden tools menu that extensions can use. - - 2004-01-24 David Bordoley - - * data/ui/epiphany-ui.xml: - * src/ephy-window.c: - - Add a hidden tools menu that extensions can use. - - ChangeLog | 7 +++++++ - data/ui/epiphany-ui.xml | 2 ++ - src/ephy-window.c | 1 + - 3 files changed, 10 insertions(+) - -commit 338bb56b803d4d040b99608e54633abf2fb7c4a5 -Author: Marco Pesenti Gritti -Date: Sat Jan 24 20:15:48 2004 +0000 - - *** empty log message *** - - doc/reference/tmpl/EphyContentPolicy.sgml | 39 +++++++++++++++ - doc/reference/tmpl/EphySingle.sgml | 73 +++++++++++++++++++++++++++++ - doc/reference/tmpl/mozilla-embed-event.sgml | 37 +++++++++++++++ - 3 files changed, 149 insertions(+) - -commit fe21e6cf814e6a52dd5f95f62ebbb3615eea058c -Author: Marco Pesenti Gritti -Date: Sat Jan 24 20:15:02 2004 +0000 - - update docs - - doc/reference/tmpl/ephy-cookie-manager.sgml | 2 ++ - doc/reference/tmpl/ephy-embed-factory.sgml | 2 ++ - doc/reference/tmpl/ephy-embed-single.sgml | 2 ++ - doc/reference/tmpl/ephy-password-manager.sgml | 2 ++ - doc/reference/tmpl/ephy-permission-manager.sgml | 6 ++--- - doc/reference/tmpl/ephy-session.sgml | 2 ++ - doc/reference/tmpl/ephy-shell.sgml | 29 ++----------------------- - doc/reference/tmpl/epiphany-unused.sgml | 9 ++++++++ - 8 files changed, 23 insertions(+), 31 deletions(-) - -commit 6002ceae9b6d1220c5759aaa5b103be6f08f956d -Author: Adam Hooper -Date: Sat Jan 24 20:09:24 2004 +0000 - - Remove totally wrong comment before ephy_string_blank_chr - - ChangeLog | 6 ++++++ - lib/ephy-string.c | 10 ---------- - 2 files changed, 6 insertions(+), 10 deletions(-) - -commit e46ddcebde16fb081aa4653939f796970a083c49 -Author: Adam Hooper -Date: Sat Jan 24 20:08:35 2004 +0000 - - Make ephy_file_tmp_directory() return a const char * instead of a char * - - ChangeLog | 8 ++++++++ - lib/ephy-file-helpers.c | 2 +- - lib/ephy-file-helpers.h | 2 +- - src/window-commands.c | 2 +- - 4 files changed, 11 insertions(+), 3 deletions(-) - -commit 31e1476e3f87dc7f6fb75fe3d6e8d2b16bef2a0b -Author: Francisco Javier F. Serrador -Date: Sat Jan 24 20:08:02 2004 +0000 - - Updated Spanish translation. - - 2004-01-24 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/es.po | 95 ++++++++++++++++++++++++++++++---------------------------------- - 1 file changed, 45 insertions(+), 50 deletions(-) - -commit 8e96272639d9d197152145e38adf775bcd510ada -Author: Marco Pesenti Gritti -Date: Sat Jan 24 18:41:48 2004 +0000 - - *** empty log message *** - - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1031add940150d838c6cad57df633df3827dc494 -Author: Marco Pesenti Gritti -Date: Sat Jan 24 18:41:33 2004 +0000 - - Prepare for 1.1.5 - - 2004-01-24 Marco Pesenti Gritti - - * configure.in: - - Prepare for 1.1.5 - - * lib/ephy-dialog.c: (setup_default_size): - - Fix a bug with downloader dialog size persistance - - ChangeLog | 2 +- - NEWS | 8 ++++++++ - lib/ephy-dialog.c | 13 ++++++++++--- - 3 files changed, 19 insertions(+), 4 deletions(-) - -commit 7f3a1cdca5440ab0ab830c67be4aba8e722e314d -Author: Marco Pesenti Gritti -Date: Sat Jan 24 18:40:02 2004 +0000 - - Prepare for 1.1.5 - - 2004-01-24 Marco Pesenti Gritti - - * configure.in: - - Prepare for 1.1.5 - - * lib/ephy-dialog.c: (setup_default_size): - - Fix a bug with downloader dialog size persistance - - ChangeLog | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -commit 8fa39b31dec0263e9c5a669e8a074f55c32cf9ce -Author: Marco Pesenti Gritti -Date: Sat Jan 24 12:12:08 2004 +0000 - - Prepare for 1.1.4 - - 2004-01-24 Marco Pesenti Gritti - - * NEWS: - * configure.in: - - Prepare for 1.1.4 - - * embed/mozilla/ContentHandler.cpp: - - Fix Save As from download dialog - - ChangeLog | 11 ++++++++ - NEWS | 56 ++++++++++++++++++++++++++++++++++++++++ - configure.in | 2 +- - embed/mozilla/ContentHandler.cpp | 8 ++++-- - 4 files changed, 74 insertions(+), 3 deletions(-) - -commit 5c9e26f898ab481887297ab2eed8348d41a74230 -Author: Christian Persch -Date: Sat Jan 24 12:09:48 2004 +0000 - - Fall back to Home directory when the pref is NULL. - - 2004-01-24 Christian Persch - - * src/prefs-dialog.c: (get_download_button_label): - - Fall back to Home directory when the pref is NULL. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 6 ++++++ - 2 files changed, 12 insertions(+) - -commit 949f432f56914a7c1a71de6783b21cb506f1b921 -Author: Christian Persch -Date: Sat Jan 24 11:36:04 2004 +0000 - - Use our eel_gconf_set_path() function to persist the directory. - - 2004-01-24 Christian Persch - - * lib/ephy-file-chooser.c: (ephy_file_chooser_get_type), - (current_folder_changed_cb): - - Use our eel_gconf_set_path() function to persist the directory. - - ChangeLog | 7 +++++++ - lib/ephy-file-chooser.c | 26 ++++++++++---------------- - 2 files changed, 17 insertions(+), 16 deletions(-) - -commit ae865c906e03be544167c899ae6e3b5f2d6f6a8e -Author: Marco Pesenti Gritti -Date: Sat Jan 24 09:57:10 2004 +0000 - - *** empty log message *** - - data/epiphany.schemas.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 180df7244c25e3034e0bf8bbc52b875ddb473816 -Author: Marco Pesenti Gritti -Date: Sat Jan 24 09:56:44 2004 +0000 - - Add a persist-position property. - - 2004-01-24 Marco Pesenti Gritti - - * lib/ephy-dialog.c: (setup_default_size), (ephy_dialog_init), - (ephy_dialog_set_property), (ephy_dialog_get_property), - (ephy_dialog_class_init): - - Add a persist-position property. - - * embed/downloader-view.c: (downloader_view_new): - - Persist downloader position. - - * src/prefs-dialog.c: (get_download_button_label): - * embed/mozilla/MozDownload.cpp: - * data/epiphany.schemas.in: - - Default to ~/Desktop/Downloads. - - ChangeLog | 18 ++++++++++++++++++ - embed/downloader-view.c | 5 +++-- - embed/mozilla/MozDownload.cpp | 11 ++++++++++- - lib/ephy-dialog.c | 22 +++++++++++++++++++++- - src/prefs-dialog.c | 8 ++++++-- - 5 files changed, 58 insertions(+), 6 deletions(-) - -commit e6f14bc0bd721724d671104a719047203babb361 -Author: Francisco Javier F. Serrador -Date: Sat Jan 24 00:47:58 2004 +0000 - - Updated Spanish translation. - - 2004-01-24 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 422 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 230 insertions(+), 196 deletions(-) - -commit 5cee574a3ce8609ee72cd5cdea206dfc594f0dab -Author: Marco Pesenti Gritti -Date: Fri Jan 23 22:50:02 2004 +0000 - - Sometimes reading gnomedesktop flames is useful: - - 2004-01-23 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * lib/ephy-prefs.h: - * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb): - * src/popup-commands.c: (save_property_url): - - Sometimes reading gnomedesktop flames is useful: - - Do not use the same pref of 1.0 for the download dir. - Use a different key for Save Link As. - - ChangeLog | 12 ++++++++++++ - data/epiphany.schemas.in | 14 ++++++++------ - lib/ephy-prefs.h | 2 +- - src/ephy-tab.c | 2 +- - src/popup-commands.c | 2 +- - 5 files changed, 23 insertions(+), 9 deletions(-) - -commit 5439ea9211264c06dcc3e5848f13bf95a54e1923 -Author: Christian Persch -Date: Fri Jan 23 18:08:22 2004 +0000 - - Commit ChangeLog too - - ChangeLog | 19 +++++++++++++++++++ - 1 file changed, 19 insertions(+) - -commit c162a93f72d38ce37a2da2e5ead3126d79f0aed5 -Author: Christian Persch -Date: Fri Jan 23 18:07:44 2004 +0000 - - Allow passing the translation domain to ephy_dialog_construct, to make - - 2004-01-23 Christian Persch - - * embed/downloader-view.c: (downloader_view_build_ui): - * embed/find-dialog.c: (find_dialog_init): - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/print-dialog.c: (ephy_print_dialog_new), - (ephy_print_setup_dialog_new): - * lib/ephy-dialog.c: (impl_construct), (ephy_dialog_construct): - * lib/ephy-dialog.h: - * lib/ephy-glade.c: (ephy_glade_widget_new): - * lib/ephy-glade.h: - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_init): - * src/pdm-dialog.c: (pdm_dialog_init): - * src/prefs-dialog.c: (setup_add_language_dialog), - (prefs_dialog_init): - - Allow passing the translation domain to ephy_dialog_construct, - to make extension's dialogues translatable. Fix all callers. - - embed/downloader-view.c | 6 ++++-- - embed/find-dialog.c | 6 +++++- - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - embed/print-dialog.c | 15 ++++++++++----- - lib/ephy-dialog.c | 13 ++++++++----- - lib/ephy-dialog.h | 8 +++++--- - lib/ephy-glade.c | 13 +++++++++---- - lib/ephy-glade.h | 7 +++++-- - src/ephy-encoding-dialog.c | 5 +++-- - src/pdm-dialog.c | 4 +++- - src/prefs-dialog.c | 11 +++++++---- - 11 files changed, 60 insertions(+), 30 deletions(-) - -commit ebcb66eab9a7e65e39bf2f2d665b8ebc27d0c4e2 -Author: Miloslav Trmac -Date: Fri Jan 23 17:04:06 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 412 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 223 insertions(+), 193 deletions(-) - -commit 9d34994ba5c710d187ef029e32c18eaa47c97e7e -Author: Christian Persch -Date: Fri Jan 23 12:18:15 2004 +0000 - - We really depend on gtk+ >= 2.3.2. - - 2004-01-23 Christian Persch - - * configure.in: - - We really depend on gtk+ >= 2.3.2. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b0da620acc985dc777c4954a47e4186acf84ec11 -Author: Danilo Šegan -Date: Fri Jan 23 10:15:58 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 602 +++++++++++++++++++++++++++++++++------------------------- - po/sr@Latn.po | 602 +++++++++++++++++++++++++++++++++------------------------- - 3 files changed, 680 insertions(+), 528 deletions(-) - -commit a3d35aec7cd2e6146d20efadf4c88b1a156d0e1b -Author: Xan Lopez -Date: Thu Jan 22 23:19:02 2004 +0000 - - Make Cancel safe against non active downloads. - - - * embed/mozilla/MozDownload.cpp: - - Make Cancel safe against non active downloads. - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 6 ++++++ - 2 files changed, 12 insertions(+) - -commit 200d54ac01a9d4af824f9856c8a90daa786c1c2b -Author: Christian Persch -Date: Thu Jan 22 23:17:35 2004 +0000 - - Use both BYPASS_CACHE and BYPASS_PROXY on force-reload. Unified the - - 2004-01-23 Christian Persch - - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - * src/window-commands.c: (window_cmd_view_reload): - - Use both BYPASS_CACHE and BYPASS_PROXY on force-reload. - Unified the handling in mozilla-embed by introducing - EMBED_RELOAD_FORCE, and killed EMBED_RELOAD_BYPASS_[CACHE|PROXY] - since we now always use both together. - - ChangeLog | 11 +++++++++++ - embed/ephy-embed.h | 5 ++--- - embed/mozilla/mozilla-embed.cpp | 13 ++----------- - src/window-commands.c | 2 +- - 4 files changed, 16 insertions(+), 15 deletions(-) - -commit be37cf95beca847cc73733ef90569e5e50a6fafa -Author: Christian Persch -Date: Thu Jan 22 21:00:38 2004 +0000 - - Updated encodings list - - ChangeLog | 7 +++++++ - embed/ephy-encodings.c | 3 +-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit e4eab700075a1227daac36dab576577d63fd6d9f -Author: Christian Neumair -Date: Thu Jan 22 20:39:16 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 360 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 196 insertions(+), 168 deletions(-) - -commit 1fe097be0563f19a3de39dc5222ecc5c6356ca24 -Author: Christian Persch -Date: Thu Jan 22 19:49:36 2004 +0000 - - data: urls can be opened in new tabs too. - - 2004-01-22 Christian Persch - - * embed/mozilla/EventContext.cpp: - * src/ephy-tab.c: (address_has_web_scheme): - - data: urls can be opened in new tabs too. - - ChangeLog | 7 +++++++ - embed/mozilla/EventContext.cpp | 1 + - src/ephy-tab.c | 1 + - 3 files changed, 9 insertions(+) - -commit 75e8fb3168db840673091b4b1e315f635949cd89 -Author: Christian Persch -Date: Thu Jan 22 19:48:21 2004 +0000 - - Work around a bug in mozilla where 0xa0 (NBSP) are converted to spaces, so - - 2004-01-22 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Work around a bug in mozilla where 0xa0 (NBSP) are converted to spaces, - so we think that the element is modified when in fact it's not. - (Thanks to Crispin). - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyBrowser.cpp | 10 ++++++++-- - 2 files changed, 16 insertions(+), 2 deletions(-) - -commit 8205e18cb651de99de58b7ea5779bc3fbaea69b5 -Author: Christopher James Lahey -Date: Thu Jan 22 19:23:06 2004 +0000 - - New function to get temp directory and moved ephy_shell_delete_on_exit to - - 2004-01-22 Christopher James Lahey - - * lib/ephy-file-helpers.c, lib/ephy-file-helpers.h - (ephy_file_tmp_directory, ephy_file_delete_on_exit): New function - to get temp directory and moved ephy_shell_delete_on_exit to here. - - * lib/widgets/ephy-location-entry.c: Changed how this goes about - showing itself when hidden and activated. - - * src/ephy-shell.c, src/ephy-shell.h (ephy_shell_delete_on_exit): - Moved to ephy_file_delete_on_exit. - - * src/window-commands.c: Changed ephy_shell_delete_on_exit to - ephy_file_delete_on_exit. Used ephy_file_tmp_directory to save - source files for viewing in a directory that isn't world readable. - - ChangeLog | 16 +++++++++++++ - lib/ephy-file-helpers.c | 50 +++++++++++++++++++++++++++++++++++++++ - lib/ephy-file-helpers.h | 7 ++++-- - lib/widgets/ephy-location-entry.c | 31 +++++++++++------------- - src/ephy-shell.c | 20 ---------------- - src/ephy-shell.h | 3 --- - src/window-commands.c | 15 ++++++++++-- - 7 files changed, 98 insertions(+), 44 deletions(-) - -commit 416aef90dd0cc909929d6a7357107158cdf138f5 -Author: Vincent van Adrighem -Date: Thu Jan 22 18:59:12 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-01-22 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 394 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 225 insertions(+), 173 deletions(-) - -commit 600bf9684206317a93ce2f807ad7208e5b0737bf -Author: Marco Pesenti Gritti -Date: Thu Jan 22 18:53:32 2004 +0000 - - Slightly better string for history disable. - - 2004-01-22 Marco Pesenti Gritti - - * data/epiphany-lockdown.schemas.in: - - Slightly better string for history disable. - - ChangeLog | 6 ++++++ - data/epiphany-lockdown.schemas.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 9435af9372734a2e9c7c3353b7ecad9cf3251a7b -Author: Marco Pesenti Gritti -Date: Wed Jan 21 23:39:43 2004 +0000 - - *** empty log message *** - - ChangeLog | 11 +++++++++++ - embed/mozilla/ContentHandler.cpp | 12 ++++++++++-- - embed/mozilla/ContentHandler.h | 2 +- - src/ephy-window.c | 4 ++-- - 4 files changed, 24 insertions(+), 5 deletions(-) - -commit d94e466f932e902af29f000fcff7ec8e78b09b61 -Author: Vincent van Adrighem -Date: Wed Jan 21 21:57:45 2004 +0000 - - Translation updated by Kees van den Broek. - - 2004-01-21 Vincent van Adrighem - - * nl.po: Translation updated by Kees van den Broek. - - po/ChangeLog | 4 ++++ - po/nl.po | 3 ++- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 4d8a370706568dfb51e4a497f125e934acdd9521 -Author: Kjartan Maraas -Date: Wed Jan 21 21:49:03 2004 +0000 - - Updated Norwegian translation. - - 2004-01-21 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 513 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 289 insertions(+), 228 deletions(-) - -commit a37e3c5e53cba57d1338880a7dec1c035779b742 -Author: Adam Hooper -Date: Wed Jan 21 20:39:19 2004 +0000 - - Call ephy_file() explicitly for each glade file, letting extensions load glade files from any path - - ChangeLog | 17 +++++++++++++++++ - embed/downloader-view.c | 2 +- - embed/find-dialog.c | 3 ++- - embed/mozilla/GtkNSSDialogs.cpp | 3 ++- - embed/print-dialog.c | 6 ++++-- - lib/ephy-glade.c | 6 +----- - src/ephy-encoding-dialog.c | 3 ++- - src/pdm-dialog.c | 3 ++- - src/prefs-dialog.c | 6 ++++-- - 9 files changed, 35 insertions(+), 14 deletions(-) - -commit d9cb8655babc4b628f16869b0f476f9fe49acab3 -Author: Marco Pesenti Gritti -Date: Wed Jan 21 19:38:53 2004 +0000 - - Destroy filepicker once it's done. I dunno about much more bugs so please - - 2004-01-21 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - - Destroy filepicker once it's done. I dunno - about much more bugs so please report now ;) - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 4 ++++ - 2 files changed, 11 insertions(+) - -commit 1e8441eee9d54fe9a53e6d99d5e2f79b98a62c69 -Author: Miloslav Trmac -Date: Wed Jan 21 16:06:16 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 281 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 168 insertions(+), 117 deletions(-) - -commit 75834982ca350dda7e1ad8b5aa3f2f39bd9cad5b -Author: Christian Persch -Date: Wed Jan 21 14:04:48 2004 +0000 - - Set "tooltip" property on bookmark actions to the url. That way we display - - 2004-01-21 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_get_type), - (ephy_bookmark_action_set_property), - (ephy_bookmark_action_get_property), - (ephy_bookmark_action_class_init): - - Set "tooltip" property on bookmark actions to the url. That way - we display it in the status bar with no extra steps taken. - - ChangeLog | 11 +++++++++++ - src/bookmarks/ephy-bookmark-action.c | 27 +++++++++++++++++++++++---- - 2 files changed, 34 insertions(+), 4 deletions(-) - -commit fce5cd9176a15b7f42aa1707c2e2c25537d8fb1e -Author: Piers Cornwell -Date: Wed Jan 21 14:03:19 2004 +0000 - - Use ngettext for number of downloads and remaining minutes display in the - - 2004-01-21 Piers Cornwell - - * embed/downloader-view.c: (update_status_icon), - (downloader_view_remove_download): - - Use ngettext for number of downloads and remaining - minutes display in the tooltip of the tray icon. - - ChangeLog | 8 ++++++++ - embed/downloader-view.c | 37 ++++++++++++++++++++++++++++++------- - 2 files changed, 38 insertions(+), 7 deletions(-) - -commit 319eec55f2c4d7a946af8a9312e9395bc9ebc611 -Author: Christian Persch -Date: Wed Jan 21 14:01:43 2004 +0000 - - about: can be opened in new tab too. - - 2004-01-21 Christian Persch - - * embed/mozilla/EventContext.cpp: - * src/ephy-tab.c: (address_has_web_scheme): - - about: can be opened in new tab too. - - ChangeLog | 7 +++++++ - embed/mozilla/EventContext.cpp | 7 ++++--- - src/ephy-tab.c | 1 + - 3 files changed, 12 insertions(+), 3 deletions(-) - -commit 63e12064d70483f16fdee244d42f930685ba848a -Author: Christian Persch -Date: Wed Jan 21 13:59:12 2004 +0000 - - Re-enable fonts language font filtering, fixes bug #128814 - - 2004-01-21 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Re-enable fonts language font filtering, fixes bug #128814 - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit fae7c2ab68305c0ee061984a244db6290eb6e1cb -Author: Changwoo Ryu -Date: Wed Jan 21 13:55:44 2004 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 422 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 255 insertions(+), 171 deletions(-) - -commit 214586907a57f9da55570af1d69e01be06cf3945 -Author: Artur Flinta -Date: Wed Jan 21 10:33:26 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-01-21 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++++ - po/pl.po | 62 +++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 40 insertions(+), 26 deletions(-) - -commit 4bc7c34c8d1abf627a9ae4c94ce11093f76005f6 -Author: Francisco Javier F. Serrador -Date: Wed Jan 21 10:17:29 2004 +0000 - - Updated Spanish traslation. - - 2004-01-21 Francisco Javier F. Serrador - - * es.po: Updated Spanish traslation. - - po/ChangeLog | 4 ++ - po/es.po | 226 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 139 insertions(+), 91 deletions(-) - -commit c2d19b39d016f091461381b2ba18299fb98e2381 -Author: Vincent van Adrighem -Date: Tue Jan 20 02:32:58 2004 +0000 - - Translation updated by Reinout van Schouwen. - - 2004-01-20 Vincent van Adrighem - - * nl.po: Translation updated by Reinout van Schouwen. - - po/ChangeLog | 4 + - po/nl.po | 370 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 211 insertions(+), 163 deletions(-) - -commit 67d23452025c9cb74756a649e3fdba905f3ab892 -Author: Marco Pesenti Gritti -Date: Mon Jan 19 20:20:33 2004 +0000 - - Make uri canonical before passing it as launch argument to make vfs happy. - - 2004-01-19 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/MozDownload.cpp: - - Make uri canonical before passing it as - launch argument to make vfs happy. - - * lib/eel-gconf-extensions.c: (eel_gconf_set_path): - - Do not mix utf8/locale. Thanks to chpe to notice it. - - ChangeLog | 12 ++++++++++++ - embed/mozilla/ContentHandler.cpp | 8 +++++--- - embed/mozilla/MozDownload.cpp | 2 +- - lib/eel-gconf-extensions.c | 7 +++---- - 4 files changed, 21 insertions(+), 8 deletions(-) - -commit 4ec8d9dbfb45562644cb7f1a193c403820259d29 -Author: Christian Persch -Date: Mon Jan 19 20:00:39 2004 +0000 - - Merge from gnome-2-4 branch. - - 2004-01-19 Christian Persch - - * NEWS: - - Merge from gnome-2-4 branch. - - ChangeLog | 6 ++ - NEWS | 214 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 220 insertions(+) - -commit 5e2ef1ba914590070da83a928f69e8b1a215ca2d -Author: Laurent Dhima -Date: Mon Jan 19 17:37:01 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 3bc1ccf4a73bd2f3be61f3434afd87e15a29160e -Author: Laurent Dhima -Date: Mon Jan 19 17:35:04 2004 +0000 - - Updated - - po/sq.po | 276 +++++++++++++++++++++++++++++++++++++-------------------------- - 1 file changed, 162 insertions(+), 114 deletions(-) - -commit f6c2a06f24893582dbc930fe79cecc9b12b24ffd -Author: Christian Neumair -Date: Mon Jan 19 17:24:06 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 355 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 220 insertions(+), 139 deletions(-) - -commit dd0b02c40b5d202794d03299f2d190833b63bb22 -Author: Marco Pesenti Gritti -Date: Mon Jan 19 14:06:41 2004 +0000 - - Add a way to store paths. - - 2004-01-19 Marco Pesenti Gritti - - * lib/eel-gconf-extensions.c: (tilde_compress), - (eel_gconf_set_path): - * lib/eel-gconf-extensions.h: - - Add a way to store paths. - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - Actually save the file in downloads dir and then - open it. It doesnt seem to open it but it's prolly - a gnome-vfs bug. - - * src/prefs-dialog.c: (get_download_button_label), - (download_path_response_cb): - - Simplify the label logic using ~. - - ChangeLog | 22 ++++ - embed/mozilla/ContentHandler.cpp | 225 ++++++++++----------------------------- - embed/mozilla/ContentHandler.h | 11 +- - embed/mozilla/MozDownload.cpp | 40 +++++++ - embed/mozilla/MozDownload.h | 2 + - lib/eel-gconf-extensions.c | 62 +++++++++++ - lib/eel-gconf-extensions.h | 2 + - src/prefs-dialog.c | 24 ++--- - 8 files changed, 196 insertions(+), 192 deletions(-) - -commit eaba78e8dfd1cdad90bed57cc536cbfe40a9509e -Author: Artur Flinta -Date: Mon Jan 19 10:51:16 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-01-19 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 285 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 173 insertions(+), 116 deletions(-) - -commit bc344d71c648e9985122fad66b6cab941b32f188 -Author: Marco Pesenti Gritti -Date: Mon Jan 19 00:11:35 2004 +0000 - - *** empty log message *** - - ChangeLog | 14 +++ - data/epiphany.schemas.in | 13 ++- - data/glade/prefs-dialog.glade | 5 +- - embed/mozilla/ContentHandler.cpp | 247 ++++++++++++++++++++------------------- - embed/mozilla/ContentHandler.h | 29 +++-- - embed/mozilla/MozDownload.cpp | 29 +---- - lib/ephy-prefs.h | 2 +- - src/prefs-dialog.c | 10 +- - 8 files changed, 186 insertions(+), 163 deletions(-) - -commit 5532d7831fe768cbf8100c84668291dc707ef1fb -Author: Christian Persch -Date: Sun Jan 18 21:48:12 2004 +0000 - - Introduce ephy_dialog_hide(). - - 2004-01-18 Christian Persch - - * lib/ephy-dialog.c: (ephy_dialog_hide): - * lib/ephy-dialog.h: - - Introduce ephy_dialog_hide(). - - ChangeLog | 7 +++++++ - lib/ephy-dialog.c | 9 +++++++++ - lib/ephy-dialog.h | 2 ++ - 3 files changed, 18 insertions(+) - -commit 391793b9bb2498599791b506f6c09080845ae7b0 -Author: Christian Persch -Date: Sun Jan 18 21:01:04 2004 +0000 - - We need to use do_QueryInterface to get from the nsIDOM[Key|Mouse]Event to - - 2004-01-18 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: - - We need to use do_QueryInterface to get from the - nsIDOM[Key|Mouse]Event to the nsIDOMEvent, not just - cast it. - - ChangeLog | 8 ++++++++ - embed/mozilla/mozilla-embed.cpp | 35 ++++++++++++++++++++--------------- - 2 files changed, 28 insertions(+), 15 deletions(-) - -commit d125a79db5875e4328ea5e66af331197ad644f96 -Author: Danilo Šegan -Date: Sun Jan 18 11:57:10 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 62 +++++++++++++++++++++++++++++------------------------------ - po/sr@Latn.po | 62 +++++++++++++++++++++++++++++------------------------------ - 3 files changed, 66 insertions(+), 62 deletions(-) - -commit 9e71ecc3256d4589779e5439ad9b533a52679a05 -Author: Francisco Javier F. Serrador -Date: Sun Jan 18 01:40:27 2004 +0000 - - Updated Spanish translation. - - 2004-01-18 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++++ - po/es.po | 58 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 32 insertions(+), 30 deletions(-) - -commit 20535b372ed7bf3f2415d6a6c1c8d6c26276bf84 -Author: Christian Persch -Date: Sat Jan 17 11:19:34 2004 +0000 - - Use g_signal_connect_object to connect the embed signals, that way they're - - 2004-01-17 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-tab.c: (ephy_tab_init): - - Use g_signal_connect_object to connect the embed signals, - that way they're disconnected before the tab object is - finalised. Should fix crasher bug #131635. - - ChangeLog | 9 +++ - embed/mozilla/mozilla-embed.cpp | 142 ++++++++++++++++------------------------ - src/ephy-tab.c | 84 ++++++++++++------------ - 3 files changed, 107 insertions(+), 128 deletions(-) - -commit 093c9ba7810a01f32d7f9c1c23b01ac47a7fe0ea -Author: 6 -Date: Fri Jan 16 21:24:04 2004 +0000 - - Typo fixes. - - 2004-01-16 - - * data/epiphany-lockdown.schemas.in: Typo fixes. - - ChangeLog | 4 ++++ - data/epiphany-lockdown.schemas.in | 6 +++--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 40d6fcf57c91a21e67e7977605b336fcf40ea62f -Author: Kjartan Maraas -Date: Fri Jan 16 19:39:04 2004 +0000 - - Updated Norwegian translation. - - 2004-01-16 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 1457 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 700 insertions(+), 761 deletions(-) - -commit 56e5547df0cf98d29f556adacb41c51fb42f9da5 -Author: Christian Persch -Date: Fri Jan 16 18:22:18 2004 +0000 - - Use gtk_file_chooser_get_filename() instead of - - 2004-01-16 Christian Persch - - * src/prefs-dialog.c: (download_path_response_cb): - - Use gtk_file_chooser_get_filename() instead of - gtk_file_chooser_get_current_folder(). Fixes bug #131646. - - ChangeLog | 7 +++++++ - src/prefs-dialog.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 89bcba7510d20c4fd2fe8f4df70be332d358c7da -Author: Christian Persch -Date: Fri Jan 16 18:12:18 2004 +0000 - - Update email address - - AUTHORS | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit 29e9b1645b86c35d089b1039cc326682048594ac -Author: Hasbullah Bin Pit -Date: Fri Jan 16 15:52:57 2004 +0000 - - Updated Malay translation. change year at changlog I'm late 1 year - - 2004-01-16 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - change year at changlog - I'm late 1 year - - po/ChangeLog | 18 +- - po/ms.po | 1274 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 732 insertions(+), 560 deletions(-) - -commit 55e65021a475b00569ea4d1b058086c4dbab4568 -Author: Christian Persch -Date: Fri Jan 16 12:09:15 2004 +0000 - - Show help for menu items in the statusbar. - - 2004-01-16 Christian Persch - - * src/ephy-window.c: (menu_item_select_cb), - (menu_item_deselect_cb), (disconnect_proxy_cb), (connect_proxy_cb), - (setup_ui_manager), (ephy_window_init): - - Show help for menu items in the statusbar. - - ChangeLog | 8 +++++++ - src/ephy-window.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 74 insertions(+) - -commit 7e36f13518cf3e2dac0e2df970a8dcd3f06e6a11 -Author: Francisco Javier F. Serrador -Date: Fri Jan 16 10:07:42 2004 +0000 - - Updated Spanish translation. - - 2004-01-16 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 ++++ - po/es.po | 19 ++++++++++++++----- - 2 files changed, 18 insertions(+), 5 deletions(-) - -commit 1835808e43391ac180fbe08ce5130545e5f05d2f -Author: Vincent van Adrighem -Date: Thu Jan 15 22:26:59 2004 +0000 - - Translation updated. - - 2004-01-15 Vincent van Adrighem - - * nl.po: Translation updated. - - po/ChangeLog | 4 ++++ - po/nl.po | 55 ++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 36 insertions(+), 23 deletions(-) - -commit 216c6fa203c77b1ea3aa21dd822c3688783cac42 -Author: Christian Persch -Date: Thu Jan 15 18:08:26 2004 +0000 - - Make EphyEmbedEvent abstract, implemented by MozillaEmbedEvent. Port - - 2004-01-15 Christian Persch - - * embed/ephy-embed-event.c: (ephy_embed_event_get_type), - (ephy_embed_event_base_init), (ephy_embed_event_get_event_type), - (ephy_embed_event_get_context), (ephy_embed_event_get_modifier), - (ephy_embed_event_get_coords), (ephy_embed_event_get_property), - (ephy_embed_event_has_property), (ephy_embed_event_get_dom_event): - * embed/ephy-embed-event.h: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-event.cpp: - * embed/mozilla/mozilla-embed-event.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-window.c: (popup_menu_at_coords): - * src/popup-commands.c: (popup_cmd_copy_link_address): - - Make EphyEmbedEvent abstract, implemented by MozillaEmbedEvent. - Port callers to the new api. - Fix some callers in src/ which were using private fields of - EphyEmbedEvent struct. - - ChangeLog | 22 ++++ - embed/ephy-embed-event.c | 124 ++++++-------------- - embed/ephy-embed-event.h | 67 ++++++----- - embed/mozilla/EventContext.cpp | 14 +-- - embed/mozilla/EventContext.h | 10 +- - embed/mozilla/Makefile.am | 2 + - embed/mozilla/mozilla-embed-event.cpp | 208 ++++++++++++++++++++++++++++++++++ - embed/mozilla/mozilla-embed-event.h | 74 ++++++++++++ - embed/mozilla/mozilla-embed.cpp | 24 ++-- - src/ephy-window.c | 6 +- - src/popup-commands.c | 7 +- - 11 files changed, 407 insertions(+), 151 deletions(-) - -commit 5e2c715ab1b0ae755542a02914b2377fd0878d99 -Author: Miloslav Trmac -Date: Thu Jan 15 12:14:08 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 29 +++++++++++++++++++---------- - 2 files changed, 23 insertions(+), 10 deletions(-) - -commit ababdf02426abfc8e3caecad8e18a2f9e3e9a246 -Author: Artur Flinta -Date: Thu Jan 15 09:06:13 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-01-15 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++++ - po/pl.po | 27 ++++++++++++++++++--------- - 2 files changed, 22 insertions(+), 9 deletions(-) - -commit 3ebed7385817cbc1551ecfd5f656a1ea80ad4bba -Author: Danilo Šegan -Date: Thu Jan 15 05:33:59 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 13 +++++++++++-- - po/sr@Latn.po | 13 +++++++++++-- - 3 files changed, 26 insertions(+), 4 deletions(-) - -commit d5e3e8c3c9a3219fc246ef5f4d3036d84e4a7528 -Author: Alastair McKinstry -Date: Wed Jan 14 21:28:30 2004 +0000 - - Updated Irish translation - - po/ChangeLog | 4 ++++ - po/ga.po | 27 ++++++++++++++------------- - 2 files changed, 18 insertions(+), 13 deletions(-) - -commit 0b8efcc2c1560f2d7d514d96d85c464b34d1d813 -Author: Xan Lopez -Date: Wed Jan 14 20:20:21 2004 +0000 - - Let the user decide about what to do with automatic dialogs. - - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - - Let the user decide about what to do with automatic dialogs. - - ChangeLog | 7 +++ - embed/mozilla/ContentHandler.cpp | 123 ++++++++++++++++++++++++++++++++++++++- - embed/mozilla/ContentHandler.h | 3 +- - 3 files changed, 130 insertions(+), 3 deletions(-) - -commit 5f54dbeb3182d84a0e3d7abe66e4a1bbd0d37392 -Author: Laurent Dhima -Date: Wed Jan 14 19:10:02 2004 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 8babc34d377448fce0e3090267e01b510001a9d8 -Author: Laurent Dhima -Date: Wed Jan 14 19:07:45 2004 +0000 - - Updated - - po/sq.po | 944 ++++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 517 insertions(+), 427 deletions(-) - -commit bc1a4b904c934fdcc2ba6de52b4adf8fde725ff5 -Author: Christian Persch -Date: Wed Jan 14 11:39:31 2004 +0000 - - Get the page content into a string. - - 2004-01-14 Christian Persch - - * embed/ephy-embed-persist.c: (ephy_embed_persist_to_string): - * embed/ephy-embed-persist.h: - * embed/mozilla/mozilla-embed-persist.cpp: - - Get the page content into a string. - - ChangeLog | 8 +++++ - embed/ephy-embed-persist.c | 7 +++++ - embed/ephy-embed-persist.h | 3 ++ - embed/mozilla/mozilla-embed-persist.cpp | 52 +++++++++++++++++++++++++++++++-- - 4 files changed, 68 insertions(+), 2 deletions(-) - -commit d5a332e6cac8d2d1a58b3441810999fead5e3f9e -Author: Francisco Javier F. Serrador -Date: Wed Jan 14 11:14:39 2004 +0000 - - Updated Spanish translation. - - 2004-01-14 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 +++ - po/es.po | 89 +++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 53 insertions(+), 40 deletions(-) - -commit 58d2ba4b7024c584d1d9e28c42f999277cb17e32 -Author: Danilo Šegan -Date: Wed Jan 14 07:34:58 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 53 +++++++++++++++++++++++++++-------------------------- - po/sr@Latn.po | 53 +++++++++++++++++++++++++++-------------------------- - 3 files changed, 58 insertions(+), 52 deletions(-) - -commit 37a790e31a8550851af7dcf637abca91a44ae0af -Author: Xan Lopez -Date: Tue Jan 13 21:17:25 2004 +0000 - - Allow to show/hide downloader clicking on tray icon. Fixes #131012. - - - * embed/downloader-view.c: (status_icon_activated): - - Allow to show/hide downloader clicking on tray icon. - Fixes #131012. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 9 ++++++++- - 2 files changed, 15 insertions(+), 1 deletion(-) - -commit a3ae85c9d33e987d50b3fd5c7de87773f1670780 -Author: Vincent van Adrighem -Date: Tue Jan 13 15:46:53 2004 +0000 - - Translation updated. - - 2004-01-13 Vincent van Adrighem - - * nl.po: Translation updated. - - po/ChangeLog | 4 + - po/nl.po | 901 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 522 insertions(+), 383 deletions(-) - -commit 33e1b1aac8888beac570972b6c44ae88d3d7ec48 -Author: Nikos Charonitakis -Date: Tue Jan 13 14:38:42 2004 +0000 - - remove conflict indicators - - po/ChangeLog | 1 - - 1 file changed, 1 deletion(-) - -commit b9c0cfb4503080f3b03e58f5b14375bdccc2f6ad -Author: Nikos Charonitakis -Date: Tue Jan 13 14:36:46 2004 +0000 - - Updated Greek translation - - po/ChangeLog | 5 + - po/el.po | 896 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 484 insertions(+), 417 deletions(-) - -commit 6b8b619c1b15bbf41641b9c59d49cb428ce52f4a -Author: Miloslav Trmac -Date: Tue Jan 13 13:36:12 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 40 ++++++++++++++++++++-------------------- - 2 files changed, 24 insertions(+), 20 deletions(-) - -commit 254788d658bd75b9343a3d7bedcfc0fe31ecdd42 -Author: Christian Persch -Date: Tue Jan 13 10:55:14 2004 +0000 - - Version 1.1.3. - - 2004-01-13 Christian Persch - - * configure.in: - - Version 1.1.3. - - ChangeLog | 8 ++++++++ - configure.in | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit b03c55dd2e4f9c8deb893505db3320c72a0df298 -Author: Christian Persch -Date: Tue Jan 13 10:51:32 2004 +0000 - - Feature Freeze - - ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 315970adc17a2dfb4ee61b63fbdaad1e82bdb82b -Author: Christian Persch -Date: Tue Jan 13 10:48:31 2004 +0000 - - Updating NEWS - - NEWS | 1 + - 1 file changed, 1 insertion(+) - -commit aeb5dc1a41246146329c1af2787657e1fb0addce -Author: Artur Flinta -Date: Tue Jan 13 08:26:12 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-01-13 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 ++ - po/pl.po | 133 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 72 insertions(+), 65 deletions(-) - -commit f5baa1d5ca2c92734e5ff0bb06cbc1d153088062 -Author: Christian Persch -Date: Mon Jan 12 20:12:41 2004 +0000 - - Updated British English translation. - - 2004-01-12 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 829 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 460 insertions(+), 373 deletions(-) - -commit a2220be6beab4b85b6a2d9c4b364cb5a10e31d59 -Author: Christian Persch -Date: Mon Jan 12 19:59:54 2004 +0000 - - Updating docs templactes - - doc/reference/tmpl/ephy-cookie-manager.sgml | 16 +++++- - doc/reference/tmpl/ephy-embed-factory.sgml | 2 - - doc/reference/tmpl/ephy-embed-single.sgml | 24 ++++++++- - doc/reference/tmpl/ephy-password-manager.sgml | 16 +++++- - doc/reference/tmpl/ephy-permission-manager.sgml | 33 ++++++++++-- - doc/reference/tmpl/ephy-shell.sgml | 68 +++++++++++++++++++------ - doc/reference/tmpl/epiphany-unused.sgml | 6 +++ - 7 files changed, 142 insertions(+), 23 deletions(-) - -commit 10a0d108e4a017813d22ae0a6d84cab82d04a27e -Author: Christian Persch -Date: Mon Jan 12 19:59:08 2004 +0000 - - Add accelerator to Pause/Resume button. - - 2004-01-12 Christian Persch - - * embed/downloader-view.c: (download_dialog_pause_cb): - - Add accelerator to Pause/Resume button. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 8c2d445123a8ea91c8e8f2750d3491354b85e765 -Author: Christian Persch -Date: Mon Jan 12 19:34:55 2004 +0000 - - Updating NEWS - - NEWS | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 62 insertions(+) - -commit 139bf0350e817adcb7c277a1d3c0b11ce6318744 -Author: Christian Persch -Date: Mon Jan 12 19:34:47 2004 +0000 - - Default history to "enabled". - - 2004-01-12 Christian Persch - - * embed/ephy-history.c: (ephy_history_set_enabled), - (ephy_history_init): - - Default history to "enabled". - - ChangeLog | 7 +++++++ - embed/ephy-history.c | 3 +++ - 2 files changed, 10 insertions(+) - -commit 0e45b23b41142b62e046b0010a01b0dcf828f13a -Author: Christian Persch -Date: Mon Jan 12 19:34:06 2004 +0000 - - Forgot this - - embed/mozilla/EventContext.h | 1 + - 1 file changed, 1 insertion(+) - -commit 0f224c00d42f651dd12a227f79952e3c5ea43fac -Author: Christian Persch -Date: Mon Jan 12 19:33:03 2004 +0000 - - Forgot to commit those. - - 2004-01-12 Christian Persch - - * embed/mozilla/EventContext.h: - * src/ephy-tab.c: (address_has_web_scheme): - - Forgot to commit those. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 3 ++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 2013edd40e2f4e8c357a6bbcd6d45af9bb3a9e2b -Author: Christian Persch -Date: Mon Jan 12 19:31:40 2004 +0000 - - Only allow "Open in New Tab/Window" for certain protocols. - - 2004-01-12 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - * src/ephy-tab.c: (address_has_web_scheme): - * src/ephy-window.c: (show_embed_popup): - - Only allow "Open in New Tab/Window" for certain protocols. - - ChangeLog | 10 ++++++++++ - embed/mozilla/EventContext.cpp | 27 +++++++++++++++++++++++++++ - src/ephy-window.c | 7 ++++++- - 3 files changed, 43 insertions(+), 1 deletion(-) - -commit bec1819707d9735ef7156c0671026d13e4ec0d76 -Author: Artur Flinta -Date: Mon Jan 12 13:19:35 2004 +0000 - - Updated Polish translation by GNOME PL Team. - - 2004-01-12 Artur Flinta - - * pl.po: Updated Polish translation by GNOME PL Team. - - po/ChangeLog | 4 + - po/pl.po | 2714 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1608 insertions(+), 1110 deletions(-) - -commit 913d464f1069cb3a792e621d7f70ff3de4c0d3ad -Author: Miloslav Trmac -Date: Mon Jan 12 09:50:09 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 580 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 317 insertions(+), 267 deletions(-) - -commit ac34dc0ddab790948b3d38c3d23ea0266c488e33 -Author: Danilo Šegan -Date: Mon Jan 12 01:11:02 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++ - po/sr.po | 121 +++++++++++++++++++++++++++++++++++----------------------- - po/sr@Latn.po | 121 +++++++++++++++++++++++++++++++++++----------------------- - 3 files changed, 152 insertions(+), 94 deletions(-) - -commit b6a1c5ed52dbb78d9da06c5155ebba6e517ff734 -Author: Francisco Javier F. Serrador -Date: Sun Jan 11 14:48:36 2004 +0000 - - Updated spanish translation. - - 2004-01-11 Francisco Javier F. Serrador - - * es.po: Updated spanish translation. - - po/ChangeLog | 4 + - po/es.po | 678 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 376 insertions(+), 306 deletions(-) - -commit cbbfc720cb62dcab0d363ec191c389f08dcea11a -Author: Christian Persch -Date: Sat Jan 10 22:50:36 2004 +0000 - - Updating MOZILLA_SNAPSHOT level of trunk - - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 8aabcfb24995cc46ca6f4f09ad56f794b78e82e4 -Author: Christian Persch -Date: Sat Jan 10 22:18:17 2004 +0000 - - Verified the quote and put the original here. - - 2004-01-10 Christian Persch - - * data/epiphany.xhtml: - - Verified the quote and put the original here. - - ChangeLog | 6 ++++++ - data/epiphany.xhtml | 7 ++++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit 0e65d642a294bae7d126201b315824b54c3b55a5 -Author: Christian Persch -Date: Sat Jan 10 22:06:13 2004 +0000 - - Fix signal parameter, and add a NULL check. Fixes bug #131117, patch by - - 2004-01-10 Christian Persch - - * src/ephy-window.c: (update_exit_fullscreen_popup_position), - (ephy_window_fullscreen): - - Fix signal parameter, and add a NULL check. Fixes bug #131117, - patch by Martin Kretzschmar. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 4 +++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 09136af43c1074fb979578be2987cd0ae3a8852d -Author: Christopher James Lahey -Date: Sat Jan 10 21:59:25 2004 +0000 - - Implement print and print setup disabling for lockdown mode. - - 2004-01-10 Christopher James Lahey - - * embed/mozilla/PrintingPromptService.cpp: - * lib/ephy-prefs.h: - * src/ephy-main.c: (main): - * src/ephy-window.c: (update_actions), (ephy_window_init), - (ephy_window_finalize), (ephy_window_print): - - Implement print and print setup disabling for lockdown mode. - - ChangeLog | 10 ++++++ - embed/mozilla/PrintingPromptService.cpp | 56 ++++++++++++++++++++++----------- - lib/ephy-prefs.h | 3 ++ - src/ephy-main.c | 3 ++ - src/ephy-window.c | 52 ++++++++++++++++++++++++++++++ - 5 files changed, 105 insertions(+), 19 deletions(-) - -commit d33c13d6d52a405ef9bec15b414904a9c2620380 -Author: Christian Persch -Date: Sat Jan 10 21:33:04 2004 +0000 - - Adapt to the ever-changing mozilla API. - - 2004-01-10 Christian Persch - - * configure.in: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EventContext.cpp: - - Adapt to the ever-changing mozilla API. - - ChangeLog | 8 ++++++++ - configure.in | 4 +++- - embed/mozilla/EphyBrowser.cpp | 15 ++++++++++++--- - embed/mozilla/EventContext.cpp | 16 ++++++++++++---- - 4 files changed, 35 insertions(+), 8 deletions(-) - -commit f8ad4229cc4367fbf672b375b9f0e0338a907bbb -Author: Christian Persch -Date: Sat Jan 10 16:36:43 2004 +0000 - - Include config.h - - embed/mozilla/mozilla-download.cpp | 4 ++++ - 1 file changed, 4 insertions(+) - -commit e3396ef5e3ae7fd5674eda19a893e7dca88bce35 -Author: Christian Persch -Date: Sat Jan 10 16:35:56 2004 +0000 - - Implement history disabling. - - 2004-01-10 Christian Persch - - * embed/ephy-history.c: (ephy_history_get_type), - (ephy_history_set_enabled), (ephy_history_set_property), - (ephy_history_get_property), (ephy_history_class_init), - (page_removed_from_host_cb), (disable_history_notifier), - (ephy_history_init), (ephy_history_finalize), (ephy_history_new), - (ephy_history_get_host), (ephy_history_visited), - (ephy_history_add_page), (ephy_history_set_page_title), - (ephy_history_clear), (ephy_history_is_enabled): - * embed/ephy-history.h: - * lib/ephy-node-db.c: (ephy_node_db_get_property), - (ephy_node_db_set_property), (ephy_node_db_set_immutable): - * lib/ephy-node-db.h: - * lib/ephy-prefs.h: - * src/bookmarks/ephy-bookmarks.c: (clear_favorites), - (history_cleared_cb), (ephy_setup_history_notifiers): - - Implement history disabling. - - ChangeLog | 20 +++++ - embed/ephy-history.c | 165 ++++++++++++++++++++++++++++++++++------- - embed/ephy-history.h | 7 +- - lib/ephy-node-db.c | 15 ++-- - lib/ephy-node-db.h | 3 + - lib/ephy-prefs.h | 37 ++++----- - src/bookmarks/ephy-bookmarks.c | 42 +++++++++++ - 7 files changed, 237 insertions(+), 52 deletions(-) - -commit 80bc591b9024029ee12957944593053db6763c41 -Author: Christian Persch -Date: Sat Jan 10 16:11:18 2004 +0000 - - Forgot this - - src/ephy-notebook.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 818cf0139401620a5a04f0f0e12a5cbd001cdd8e -Author: Christopher James Lahey -Date: Sat Jan 10 15:35:19 2004 +0000 - - Added disable_arbitrary_url, disable_toolbar_editing, and disable_history - - 2004-01-09 Christopher James Lahey - - * data/epiphany-lockdown.schemas.in, lib/ephy-prefs.h: Added - disable_arbitrary_url, disable_toolbar_editing, and - disable_history keys. - - * src/ephy-automation.c (impl_ephy_automation_loadurl): Make this - ignore a url given on the command line if disable_arbitrary_url is - on. - - * src/ephy-notebook.c (notebook_drag_data_received_cb): Made this - ignore drags if disable_arbitrary_url is on. - - * src/ephy-session.c (ephy_session_load): Don't show history - window if disable_history is on. - - * src/ephy-tab.c (ephy_tab_dom_mouse_click_cb): Disable middle - click to paste url if disable_arbitrary_url is on. - - * src/ephy-window.c: Disable menu actions based on - disable_arbitrary_url, disable_toolbar_editing, and - disable_history keys. - - ChangeLog | 29 +++++++++++++++--- - data/epiphany-lockdown.schemas.in | 33 ++++++++++++++++++++ - lib/ephy-prefs.h | 3 ++ - src/ephy-automation.c | 6 ++++ - src/ephy-notebook.c | 2 ++ - src/ephy-session.c | 13 +++++--- - src/ephy-tab.c | 5 +-- - src/ephy-window.c | 64 ++++++++++++++++++++++++++++++++++++--- - 8 files changed, 138 insertions(+), 17 deletions(-) - -commit b0b62cbe423aa7c223baa81000cf66ec421ed2a2 -Author: Christian Persch -Date: Sat Jan 10 14:56:22 2004 +0000 - - Fix type to make it compile with MOZILLA_SNAPSHOT <= 11 again. - - 2004-01-10 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - - Fix type to make it compile with MOZILLA_SNAPSHOT <= 11 again. - - ChangeLog | 12 ++++++++++++ - embed/mozilla/ContentHandler.cpp | 3 ++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit ff031b0312888348338ab285e6c11f3c97fa037b -Author: Christian Neumair -Date: Sat Jan 10 14:19:57 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 588 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 326 insertions(+), 266 deletions(-) - -commit 468ea4523520f5de74707d42a5167e3f97ad6fba -Author: Christian Persch -Date: Sat Jan 10 11:43:55 2004 +0000 - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - 2004-01-10 Christian Persch - - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - ChangeLog | 7 + - embed/mozilla/mozilla-embed-persist.cpp | 35 ++--- - embed/mozilla/mozilla-embed-single.cpp | 226 ++++++++++++++------------------ - 3 files changed, 128 insertions(+), 140 deletions(-) - -commit 137a5961bbd03f74a90927ae1a03ed5e19e5d666 -Author: Christian Persch -Date: Sat Jan 10 11:19:52 2004 +0000 - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - 2004-01-10 Christian Persch - - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/MozillaPrivate.cpp: - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - ChangeLog | 9 ++++++ - embed/mozilla/FilePicker.cpp | 3 +- - embed/mozilla/MozDownload.cpp | 8 ++++-- - embed/mozilla/MozRegisterComponents.cpp | 51 +++++++++++++++++---------------- - embed/mozilla/MozillaPrivate.cpp | 37 ++++++++++++++++++------ - embed/mozilla/PrintingPromptService.cpp | 1 + - 6 files changed, 73 insertions(+), 36 deletions(-) - -commit 264834c946c5555c48b1fda985c6513c23773228 -Author: Christian Persch -Date: Sat Jan 10 11:13:06 2004 +0000 - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - 2004-01-10 Christian Persch - - * embed/mozilla/ExternalProtocolHandlers.cpp: - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - ChangeLog | 6 ++++ - embed/mozilla/ExternalProtocolHandlers.cpp | 48 ++++++++++++++++++------------ - embed/mozilla/ExternalProtocolService.cpp | 2 +- - 3 files changed, 36 insertions(+), 20 deletions(-) - -commit 6f51f41957dafd6cf84c9def7f03b5823c15811d -Author: Christian Persch -Date: Sat Jan 10 11:01:26 2004 +0000 - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - 2004-01-10 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - ChangeLog | 6 + - embed/mozilla/EphyBrowser.cpp | 317 +++++++++++++++++++----------------------- - 2 files changed, 152 insertions(+), 171 deletions(-) - -commit 57a47a1bbebaea38c7fc738db0f839fd8c2da998 -Author: Christian Persch -Date: Sat Jan 10 10:49:31 2004 +0000 - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - 2004-01-10 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places. - - ChangeLog | 7 +++ - embed/mozilla/ContentHandler.cpp | 101 +++++++++++++++++++++------------------ - embed/mozilla/ContentHandler.h | 1 - - 3 files changed, 62 insertions(+), 47 deletions(-) - -commit ce9cc9bb6ac5b2efd307b214c11a1e1ba56ed92e -Author: Christian Persch -Date: Sat Jan 10 10:44:04 2004 +0000 - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places instead of - - 2004-01-10 Christian Persch - - * embed/mozilla/EphySingle.cpp: - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places instead of - silent "if (...) return ...;". - - ChangeLog | 7 +++++++ - embed/mozilla/EphySingle.cpp | 14 ++++++-------- - 2 files changed, 13 insertions(+), 8 deletions(-) - -commit 0661a81aa4285c40cf33c408026df6d44d09700f -Author: Christian Persch -Date: Sat Jan 10 10:42:10 2004 +0000 - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places instead of - - 2004-01-10 Christian Persch - - * embed/mozilla/EphyAboutRedirector.cpp: - * embed/mozilla/EphyAboutRedirector.h: - - Use NS_ENSURE_SUCCESS/NS_ENSURE_TRUE at appropriate places instead of - silent "if (...) return ...;". - Really kill "about:options". - - ChangeLog | 13 +++++++++++++ - embed/mozilla/EphyAboutRedirector.cpp | 22 ++++++++++++++-------- - embed/mozilla/EphyAboutRedirector.h | 1 - - 3 files changed, 27 insertions(+), 9 deletions(-) - -commit 39fc1047662acd0b69425546ecd427ce81a04733 -Author: Xan Lopez -Date: Sat Jan 10 10:23:57 2004 +0000 - - Add "Download Link As" to the link context menu. - - - * data/ui/epiphany-ui.xml: - * src/ephy-window.c: - * src/popup-commands.c: (popup_cmd_download_link_as): - * src/popup-commands.h: - - Add "Download Link As" to the link context menu. - - ChangeLog | 9 +++++++++ - data/ui/epiphany-ui.xml | 1 + - src/ephy-window.c | 2 ++ - src/popup-commands.c | 7 +++++++ - src/popup-commands.h | 3 +++ - 5 files changed, 22 insertions(+) - -commit 79d45dc8db1edbe7e1899d65bd84a904bf4298cc -Author: Gustavo Noronha Silva -Date: Sat Jan 10 02:08:19 2004 +0000 - - updated translation, by Joao Emanuel - - 2004-01-10 Gustavo Noronha Silva - - * pt_BR.po: updated translation, by - Joao Emanuel - - po/ChangeLog | 5 + - po/pt_BR.po | 365 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 202 insertions(+), 168 deletions(-) - -commit 0c9306f641cee264caa1d425b031d68df95bd4de -Author: Danilo Šegan -Date: Fri Jan 9 23:24:21 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 573 ++++++++++++++++++++++++++++++++-------------------------- - po/sr@Latn.po | 573 ++++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 628 insertions(+), 522 deletions(-) - -commit 3acfedd9ae56877dc2b4895b3bd178f5893e08f1 -Author: Arafat Medini -Date: Fri Jan 9 22:26:39 2004 +0000 - - 2004.01.09 Arafat Medini - - - 2004.01.09 Arafat Medini - - * ar.po: Updated Arabic translation - - po/ChangeLog | 4 ++++ - po/ar.po | 64 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 36 insertions(+), 32 deletions(-) - -commit cafbab8b51cad0c6db95fcc9cd12ea503b497ac0 -Author: 9 -Date: Fri Jan 9 22:04:55 2004 +0000 - - Check if embed is valid here. - - 2004-01-09 - - * src/toolbar.c (update_location_editable): Check if embed is valid - here. - - ChangeLog | 5 +++++ - src/toolbar.c | 9 ++++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit 1743162eef31aab9bb28a2c8201240e7dc4bd1cd -Author: Chris Lahey -Date: Fri Jan 9 20:49:11 2004 +0000 - - Added disable_bookmark_editing key. - - - - * data/epiphany-lockdown.schemas.in, lib/ephy-prefs.h: Added - disable_bookmark_editing key. - - * lib/ephy-node-db.c, ephy-node-db.h, ephy-node.c: Added immutable - property. - - * lib/egg/egg-editable-toolbar.c (drag_data_received_cb, - toolbar_drag_motion_cb), src/ephy-toolbars-model.c - (impl_get_item_id): Made these handle immutable models/node_dbs. - - * src/ephy-automation.c, src/ephy-session.c: Don't show the - bookmark editor if disabled. - - * src/ephy-window.c: Disable a bunch of menus if bookmark editing - is disabled. - - * src/bookmarks/ephy-bookmarks-import.c, - src/bookmarks/ephy-bookmarks.c: Disable bookmark editing and - importing is key is set. Uses immutable property. - - ChangeLog | 24 +++++++++++++++++++++++- - data/epiphany-lockdown.schemas.in | 11 +++++++++++ - lib/egg/egg-editable-toolbar.c | 20 ++++++++++++-------- - lib/ephy-node-db.c | 32 +++++++++++++++++++++++++++++++- - lib/ephy-node-db.h | 2 ++ - lib/ephy-node.c | 26 +++++++++++++++++++++----- - lib/ephy-prefs.h | 1 + - src/bookmarks/ephy-bookmarks-import.c | 32 ++++++++++++++++++++++++++++---- - src/bookmarks/ephy-bookmarks.c | 33 +++++++++++++++++++++++++++++++++ - src/ephy-automation.c | 3 +++ - src/ephy-session.c | 7 ++++++- - src/ephy-toolbars-model.c | 16 +++++++++------- - src/ephy-window.c | 18 +++++++++++++++++- - 13 files changed, 197 insertions(+), 28 deletions(-) - -commit fd4119bf05f970c82fda53fe0deff9dc440d8f5b -Author: Changwoo Ryu -Date: Fri Jan 9 15:00:18 2004 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 2721 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1586 insertions(+), 1139 deletions(-) - -commit 5a1f97224b86f734537637f36d8baa8a942b2f0a -Author: Christian Persch -Date: Fri Jan 9 09:29:57 2004 +0000 - - Add an accellerator-only action (F7) to toggle caret browsing. Hook up - - 2004-01-09 Christian Persch - - * data/epiphany.schemas.in: - * data/ui/epiphany-ui.xml: - * embed/ephy-embed-prefs.h: - * embed/mozilla/mozilla-notifiers.cpp: - * src/ephy-window.c: (ephy_window_finalize), - (browse_with_caret_notifier), (ephy_window_init): - * src/pdm-dialog.c: (show_cookies_properties): - * src/window-commands.c: (window_cmd_browse_with_caret): - * src/window-commands.h: - - Add an accellerator-only action (F7) to toggle caret browsing. Hook - up listener to set the mozilla pref, added the gconf key to the schema. - - ChangeLog | 15 +++++++++++++++ - data/epiphany.schemas.in | 11 +++++++++++ - data/ui/epiphany-ui.xml | 2 ++ - embed/ephy-embed-prefs.h | 1 + - embed/mozilla/mozilla-notifiers.cpp | 1 + - src/ephy-window.c | 28 +++++++++++++++++++++++++++- - src/window-commands.c | 10 ++++++++++ - src/window-commands.h | 2 ++ - 8 files changed, 69 insertions(+), 1 deletion(-) - -commit d5db5ec63e219c783c64daf03dd80cd91351b9cc -Author: Roozbeh Pournader -Date: Fri Jan 9 00:17:10 2004 +0000 - - Oops. The patch was actually Dave Jones's. - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 37c0569eef4d376b7a3f1531c628c62f73fd900c -Author: Roozbeh Pournader -Date: Fri Jan 9 00:04:12 2004 +0000 - - Fixed a logic error in using & instead of && (bug #130919, Telsa Gwynne). - - 2004-01-09 Roozbeh Pournader - - * lib/ephy-state.c: Fixed a logic error in using & instead of && - (bug #130919, Telsa Gwynne). - - ChangeLog | 5 +++++ - lib/ephy-state.c | 2 +- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 54a3d97114cb69754adc59c3450bd6496f28339e -Author: Chris Lahey -Date: Thu Jan 8 16:20:49 2004 +0000 - - Wrong identifier here. - - lib/ephy-prefs.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit aa1b2093b06fe02b23d8c171fc10d98acef6a273 -Author: Chris Lahey -Date: Thu Jan 8 15:48:59 2004 +0000 - - Forgot this line. - - src/ephy-window.c | 1 + - 1 file changed, 1 insertion(+) - -commit 54ceff0ed9f6f9085d084903453e77950e41ace3 -Author: 8 -Date: Thu Jan 8 15:42:09 2004 +0000 - - Don't save the file if disable_save_to_disk is on. - - 2004-01-08 - - * embed/mozilla/ContentHandler.cpp (MIMEAskAction): Don't save the - file if disable_save_to_disk is on. - - * lib/ephy-prefs.h (CONF_DISABLE_SAVE_TO_DISK): Added this key here. - - * src/ephy-window.c (update_actions): Obey disable_save_to_disk. - Also, disable toggling view settings if their keys are locked. - - ChangeLog | 10 ++++++++++ - embed/mozilla/ContentHandler.cpp | 3 ++- - lib/ephy-prefs.h | 3 +++ - src/ephy-window.c | 39 ++++++++++++++++++++++++++++++++++++--- - 4 files changed, 51 insertions(+), 4 deletions(-) - -commit f4d976d3d8675948af9bf4ab28e900cc2dcc72e5 -Author: Miloslav Trmac -Date: Wed Jan 7 19:21:19 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 66 +++++++++++++++++++++++++++++++++++++++++++----------------- - 2 files changed, 51 insertions(+), 19 deletions(-) - -commit 6fdb95e4853e2d3f620250d48f340da993619134 -Author: Piers Cornwell -Date: Tue Jan 6 19:20:38 2004 +0000 - - help/C/epiphany-C.omf - - - 2004-01-06 Piers Cornwell - - * help/C/epiphany-C.omf - - Update help. - - ChangeLog | 6 ++++++ - help/C/epiphany-C.omf | 12 ++++++------ - 2 files changed, 12 insertions(+), 6 deletions(-) - -commit e4c3329f7b0d1544c13ac7b6dd4c0c0489ff8d0d -Author: Alessio Frusciante -Date: Tue Jan 6 19:15:45 2004 +0000 - - Updated Italian translation by Francesco Marletta. - - po/ChangeLog | 5 + - po/it.po | 2701 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1547 insertions(+), 1159 deletions(-) - -commit 1d3e9fd98ca2f4ccd2c96f8fcf8a7b9049fb9f48 -Author: Miloslav Trmac -Date: Tue Jan 6 17:00:11 2004 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 523 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 270 insertions(+), 257 deletions(-) - -commit d6bf464574e00c361de1ff7be79b1ecea69dc868 -Author: Christian Persch -Date: Tue Jan 6 15:53:49 2004 +0000 - - Add a comment for translators. - - 2004-01-06 Christian Persch - - * src/ephy-encodings.c: (ephy_encodings_get_node): - - Add a comment for translators. - - ChangeLog | 6 ++++++ - embed/ephy-encodings.c | 3 +++ - 2 files changed, 9 insertions(+) - -commit 43f2238fc1651b80e1fa97f87a7b4e3f341add68 -Author: Christian Persch -Date: Tue Jan 6 15:06:36 2004 +0000 - - Move "automatic" check back to where it was, since we now always have a - - 2004-01-06 Christian Persch - - * src/ephy-encoding-menu.c: (update_encoding_menu_cb): - - Move "automatic" check back to where it was, since we now always have - a node for the encoding. - - ChangeLog | 7 +++++++ - src/ephy-encoding-menu.c | 16 ++++++++-------- - 2 files changed, 15 insertions(+), 8 deletions(-) - -commit 7acf32dbb218c465fcf7ee76c7033fc21c1ead20 -Author: Christian Persch -Date: Tue Jan 6 14:44:40 2004 +0000 - - Sigh, yet another intltool change. Remove OrigTree.pm from EXTRA_DIST, and - - 2004-01-06 Christian Persch - - * Makefile.am: - * configure.in: - - Sigh, yet another intltool change. Remove OrigTree.pm from EXTRA_DIST, - and depend on intltool >= 0.29. - - ChangeLog | 8 ++++++++ - Makefile.am | 1 - - configure.in | 2 ++ - 3 files changed, 10 insertions(+), 1 deletion(-) - -commit fe2f4ed250c08dc3a4f7b2816fcf6894f446f1ee -Author: Christian Persch -Date: Tue Jan 6 14:36:23 2004 +0000 - - Behave better when the encoding used on the page is unknown to us. - - 2004-01-06 Christian Persch - - * embed/ephy-encodings.c: (add_encoding), - (ephy_encodings_get_node), (ephy_encodings_add_recent), - (ephy_encodings_get_recent), (ephy_encodings_init): - * embed/ephy-encodings.h: - * src/ephy-encoding-dialog.c: (sync_embed_cb): - * src/ephy-encoding-menu.c: (update_encoding_menu_cb), - (add_action), (ephy_encoding_menu_set_window): - * src/prefs-dialog.c: (create_node_combo): - - Behave better when the encoding used on the page is unknown to us. - Previously we skipped important steps in menu building, resulting in - incorrect encoding indicator. Now, we dynamically add an entry with - name "Unknown" to our menu. - - Also add back some rarely used encodings (us-ascii, UTF-16*, UTF-32*) - to our known encodings repertoire. - - ChangeLog | 19 ++++++ - embed/ephy-encodings.c | 159 +++++++++++++++++++++++++++++---------------- - embed/ephy-encodings.h | 3 +- - src/ephy-encoding-dialog.c | 4 +- - src/ephy-encoding-menu.c | 40 ++++++++---- - src/prefs-dialog.c | 2 +- - 6 files changed, 154 insertions(+), 73 deletions(-) - -commit 1158a826cc4f3b9d71745bff312f25e0122ec445 -Author: Christian Persch -Date: Tue Jan 6 12:56:02 2004 +0000 - - Always set the "automatic" toggle button correctly, even if the encoding - - 2004-01-06 Christian Persch - - * src/ephy-encoding-menu.c: (update_encoding_menu_cb): - - Always set the "automatic" toggle button correctly, even if the encoding - wasn't found in our database - - ChangeLog | 18 ++++++++++++++++-- - src/ephy-encoding-menu.c | 17 +++++++++-------- - 2 files changed, 25 insertions(+), 10 deletions(-) - -commit d443984286d3bb912148eb889b5f0efa6ac8ae19 -Author: Christian Neumair -Date: Tue Jan 6 09:27:24 2004 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 543 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 284 insertions(+), 263 deletions(-) - -commit 00d7f177d770e385126adc49d7aad0e750c4f56e -Author: Mohammad DAMT -Date: Tue Jan 6 05:54:47 2004 +0000 - - forgot to mention the Indonesian translation credit goes to Tunggul Arif - - 2004-01-06 Mohammad DAMT - - * ChangeLog po/ChangeLog: forgot to mention the Indonesian translation credit goes to Tunggul Arif Siswoyo - - ChangeLog | 2 +- - po/ChangeLog | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -commit f5140f24b931ef8a117903890a287d69959ad54a -Author: Mohammad DAMT -Date: Tue Jan 6 05:48:02 2004 +0000 - - Added "id" in ALL_LINGUAS Added Indonesian translation. - - 2004-01-06 Mohammad DAMT - - * configure.in: Added "id" in ALL_LINGUAS - * po/id.po: Added Indonesian translation. - - ChangeLog | 5 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/id.po | 3410 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3420 insertions(+), 1 deletion(-) - -commit a849dfcaa7d628ac65a7b0cf8f50dd3ca0c29ecb -Author: Francisco Javier F. Serrador -Date: Tue Jan 6 00:55:37 2004 +0000 - - Updated Spanish translation. - - 2004-01-06 Francisco Javier F. Serrador - - * es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 520 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 270 insertions(+), 254 deletions(-) - -commit 912396b074779742f7d5cd5e48a48c6c2c483f37 -Author: Christian Persch -Date: Mon Jan 5 23:51:03 2004 +0000 - - Remove debug output leftover. - - 2004-01-06 Christian Persch - - * embed/mozilla/MozillaPrivate.cpp: - - Remove debug output leftover. - - embed/mozilla/MozillaPrivate.cpp | 1 - - 1 file changed, 1 deletion(-) - -commit 6214eca8f29c0623fc13c80d1310c94f65b98191 -Author: Christian Persch -Date: Mon Jan 5 23:44:38 2004 +0000 - - Ensure that if the nsIDOMWindow provided is a frame inside an embed, we - - 2004-01-06 Christian Persch - - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/PrintingPromptService.cpp: - - Ensure that if the nsIDOMWindow provided is a frame inside an embed, - we get the top-level window and then get the embed from that. - Fixes bug #129028. - - ChangeLog | 9 +++++++++ - embed/mozilla/MozillaPrivate.cpp | 25 +++++++++++++++++-------- - embed/mozilla/PrintingPromptService.cpp | 4 ++-- - 3 files changed, 28 insertions(+), 10 deletions(-) - -commit 3a041befc28c45d9213387489f491534a4041164 -Author: Christophe Merlet -Date: Mon Jan 5 22:35:12 2004 +0000 - - Updated French translation. - - po/ChangeLog | 5 + - po/fr.po | 3090 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1795 insertions(+), 1300 deletions(-) - -commit 0ead99a463e4b35c7cfe4410ad6d24449ccb65a9 -Author: Danilo Šegan -Date: Mon Jan 5 20:21:23 2004 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 520 ++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 520 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 536 insertions(+), 508 deletions(-) - -commit 6e116ede4c3a07fa1e06f88f9603e15228ba7a23 -Author: Denis Lackovic -Date: Mon Jan 5 11:44:26 2004 +0000 - - *** empty log message *** - - po/hr.po | 479 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 242 insertions(+), 237 deletions(-) - -commit e86bdd5e3d43fca1a80226f5377001c19b30d66a -Author: Christian Rose -Date: Mon Jan 5 11:28:57 2004 +0000 - - Updated Swedish translation somewhat. - - 2004-01-05 Christian Rose - - * sv.po: Updated Swedish translation somewhat. - - po/ChangeLog | 5 + - po/sv.po | 2991 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1765 insertions(+), 1231 deletions(-) - -commit 1a53001e132d78a266439f8d832e02025f4b40a8 -Author: Paul Duffy -Date: Mon Jan 5 10:18:47 2004 +0000 - - updated irish translation - - po/ChangeLog | 3 + - po/ga.po | 533 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 278 insertions(+), 258 deletions(-) - -commit 08e41b5e197dbbad40e1dccc0c72918d2900d5a0 -Author: Christian Persch -Date: Sun Jan 4 22:49:15 2004 +0000 - - Update credits - - ChangeLog | 6 ++++++ - src/window-commands.c | 1 + - 2 files changed, 7 insertions(+) - -commit 74cc27412835d1cf95f1fe3aca0f61fa2c1a5641 -Author: Christian Persch -Date: Sun Jan 4 22:31:33 2004 +0000 - - Fixing changelog mistake - - ChangeLog | 7 ------- - 1 file changed, 7 deletions(-) - -commit 3fb4c8698f8917a93a74d21fd66a2862da573fd7 -Author: Christian Persch -Date: Sun Jan 4 22:27:33 2004 +0000 - - Fix parent for help window. - - 2004-01-04 Christian Persch - - * embed/print-dialog.c: (ephy_print_dialog_response_cb): - - Fix parent for help window. - - ChangeLog | 6 ++++++ - embed/print-dialog.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0537ba7e4849075b4d3f863f71be1b427e681425 -Author: Piers Cornwell -Date: Sun Jan 4 22:26:51 2004 +0000 - - Add help button to encodings dialogue. - - 2004-01-04 Piers Cornwell - - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_get_type), - (ephy_encoding_dialog_response_cb): - - Add help button to encodings dialogue. - - ChangeLog | 14 ++++++++++++++ - src/ephy-encoding-dialog.c | 23 +++++++++++++++-------- - 2 files changed, 29 insertions(+), 8 deletions(-) - -commit 4dd3ca40e89ad2ce3ad67b8732691766d862587a -Author: Piers Cornwell -Date: Sun Jan 4 22:12:11 2004 +0000 - - Add help buttons to Certificate Viewer, PDM, print and print setup - - 2004-01-04 Piers Cornwell - - * data/glade/certificate-dialogs.glade: - * data/glade/epiphany.glade: - * data/glade/print.glade: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/print-dialog.c: (ephy_print_dialog_response_cb), - (ephy_print_setup_dialog_help_button_cb): - * src/pdm-dialog.c: (pdm_dialog_show_help): - * src/prefs-dialog.c: (prefs_dialog_show_help): - - Add help buttons to Certificate Viewer, PDM, print and print setup - dialogues. - - ChangeLog | 14 ++++++++++++++ - data/glade/certificate-dialogs.glade | 33 +++++++++++++++++++++++++++------ - data/glade/epiphany.glade | 13 +++++++++++++ - data/glade/print.glade | 29 ++++++++++++++++++++++++++++- - embed/mozilla/GtkNSSDialogs.cpp | 15 ++++++++++++++- - embed/print-dialog.c | 30 ++++++++++++++++++++++++------ - src/pdm-dialog.c | 7 ++----- - src/prefs-dialog.c | 11 ++++------- - 8 files changed, 126 insertions(+), 26 deletions(-) - -commit 488df92059bf5fc9aaf70f88d5c4ece00129d3d5 -Author: Christian Persch -Date: Sun Jan 4 16:07:38 2004 +0000 - - Daveb will hate me for this, but making the confirm dialogue only - - 2004-01-04 Christian Persch - - * src/ephy-window.c: (confirm_close_with_modified_forms): - - Daveb will hate me for this, but making the confirm dialogue only - window-modal will make menus not work after cancelling the close. - Removing this for the time being since it's a nasty regression, - until I find the bug. - - ChangeLog | 9 +++++++++ - src/ephy-window.c | 11 ----------- - 2 files changed, 9 insertions(+), 11 deletions(-) - -commit 753b29514d19fd54d51c2346bc6bb08ff1093cac -Author: Christian Persch -Date: Sun Jan 4 12:52:05 2004 +0000 - - Add API to check if an EphyEmbed has forms with user input in them. - - 2004-01-04 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_has_modified_forms): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Add API to check if an EphyEmbed has forms with user input in them. - Currently it required one modified textarea, or two modified text - fields. - - * src/ephy-notebook.c: (ephy_notebook_class_init), - (close_button_clicked_cb): - * src/ephy-notebook.h: - * src/ephy-window.c: (confirm_close_with_modified_forms), - (ephy_window_delete_event_cb), (tab_delete_cb), (setup_notebook), - (ephy_window_init), (ephy_window_remove_tab): - - When closing a window or tab, check if there is unsubmitted user - input in form fields, and if so, warn the user before closing. - Fixes bug #119857. - - ChangeLog | 23 +++++++ - embed/ephy-embed.c | 7 ++ - embed/ephy-embed.h | 3 + - embed/mozilla/EphyBrowser.cpp | 128 ++++++++++++++++++++++++++++++++++- - embed/mozilla/EphyBrowser.h | 3 + - embed/mozilla/mozilla-embed.cpp | 13 ++++ - src/ephy-notebook.c | 25 +++++-- - src/ephy-notebook.h | 2 + - src/ephy-window.c | 146 +++++++++++++++++++++++++++++++++++++++- - 9 files changed, 342 insertions(+), 8 deletions(-) - -commit 1fe471d0ab202613f6802751f5604420e23727d1 -Author: Michael Terry -Date: Sat Jan 3 21:07:11 2004 +0000 - - Show copy text menu item also for links - - 2004-01-03 Michael Terry - - * data/ui/epiphany-ui.xml: - - Show copy text menu item also for links - - * src/ephy-window.c: (update_edit_actions_sensitivity), - (enable_edit_actions_sensitivity), (edit_menu_show_cb), - (edit_menu_hide_cb), (hide_embed_popup_cb), (show_embed_popup): - - Show copy text menu item only when there is actually selected - text. - - ChangeLog | 15 ++++++++++- - data/ui/epiphany-ui.xml | 2 ++ - src/ephy-window.c | 72 +++++++++++++++++++++++++++++++++---------------- - 3 files changed, 65 insertions(+), 24 deletions(-) - -commit 1d32b8d181198a8afe42d5d105537afd08ccf0a5 -Author: Sanlig Badral -Date: Sat Jan 3 12:21:11 2004 +0000 - - Updated Mongolian translation - - po/ChangeLog | 4 + - po/mn.po | 655 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 334 insertions(+), 325 deletions(-) - -commit 7aa1700c9f3346ad03962b6e493bc62287aa496a -Author: Denis Lackovic -Date: Fri Jan 2 23:40:12 2004 +0000 - - *** empty log message *** - - ChangeLog | 2 +- - configure.in | 2 +- - po/ChangeLog | 2 +- - po/hr.po | 1731 +++++++++++++++++++++++++++++++++------------------------- - 4 files changed, 1000 insertions(+), 737 deletions(-) - -commit f8a218eb05d17138153556383589adb5b7e915fd -Author: Denis Lackovic -Date: Fri Jan 2 23:34:15 2004 +0000 - - *** empty log message *** - - ChangeLog | 4 ++++ - po/ChangeLog | 4 ++++ - 2 files changed, 8 insertions(+) - -commit 4f0bfe5e231b99c1334d627d3b5459e1bcaa3ddb -Author: Christian Persch -Date: Fri Jan 2 19:47:48 2004 +0000 - - Updated British English translation. - - 2004-12-02 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 +- - po/en_GB.po | 125 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 70 insertions(+), 59 deletions(-) - -commit 8b87837816f51d2f6b4ad21815ac23ba54134169 -Author: Paul Duffy -Date: Fri Jan 2 17:02:52 2004 +0000 - - updated irish translation - - po/ChangeLog | 8 ++++++++ - po/ga.po | 30 ++++-------------------------- - 2 files changed, 12 insertions(+), 26 deletions(-) - -commit 0115ebed8f27c7c050d29b7730bc48d16ab394d8 -Author: Paul Duffy -Date: Fri Jan 2 16:48:21 2004 +0000 - - updated irish translation - - po/ga.po | 985 ++++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 494 insertions(+), 491 deletions(-) - -commit 15f83497ca8eecaa3cf247d86cde6c60aee84ac7 -Author: Taneem Ahmed -Date: Fri Jan 2 09:08:44 2004 +0000 - - Added "bn" to ALL_LINGUAS. Added Bangla translation by Progga of Ankur - - 2004-01-02 Taneem Ahmed - - * configure.in: Added "bn" to ALL_LINGUAS. - * po/bn.po: Added Bangla translation by Progga - of Ankur group . - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/bn.po | 3756 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3766 insertions(+), 1 deletion(-) - -commit 05b3184b5d074180c6a730e55b57ced1d5d480db -Author: Christian Persch -Date: Thu Jan 1 22:57:16 2004 +0000 - - New API to get the EphyTab from an EphyEmbed. Port all users. - - 2004-01-01 Christian Persch - - * src/ephy-notebook.c: (notebook_drag_data_received_cb), - (ephy_notebook_insert_page), (ephy_notebook_remove_page): - * src/ephy-tab.c: (ephy_tab_for_embed), (ephy_tab_init): - * src/ephy-tab.h: - * src/ephy-tabs-menu.c: (tab_added_cb), (tab_removed_cb): - * src/ephy-window.c: (tab_context_menu_cb), (tab_added_cb), - (tab_removed_cb), (real_get_active_tab), (ephy_window_get_tabs): - - New API to get the EphyTab from an EphyEmbed. Port all users. - - ChangeLog | 12 ++++++++++++ - src/ephy-notebook.c | 8 ++++---- - src/ephy-tab.c | 14 +++++++++++++- - src/ephy-tab.h | 8 +++++--- - src/ephy-tabs-menu.c | 14 +++++++------- - src/ephy-window.c | 21 +++++++++++---------- - 6 files changed, 52 insertions(+), 25 deletions(-) - -commit ab98ba5308fd8065876b480b799dc591893383e8 -Author: Christian Persch -Date: Thu Jan 1 22:54:11 2004 +0000 - - Unify interface struct and type macro naming to be EphyFooIFace, - - 2004-01-01 Christian Persch - - * embed/ephy-command-manager.c: (ephy_command_manager_get_type), - (ephy_command_manager_base_init), - (ephy_command_manager_do_command), - (ephy_command_manager_can_do_command): - * embed/ephy-command-manager.h: - * embed/ephy-cookie-manager.c: (ephy_cookie_manager_list_cookies), - (ephy_cookie_manager_remove_cookie), (ephy_cookie_manager_clear): - * embed/ephy-cookie-manager.h: - * embed/ephy-embed-dialog.h: - * embed/ephy-embed-shell.c: - * embed/ephy-embed-single.c: (ephy_embed_single_get_type), - (ephy_embed_single_iface_init), (ephy_embed_single_clear_cache), - (ephy_embed_single_clear_auth_cache), - (ephy_embed_single_set_offline_mode), - (ephy_embed_single_load_proxy_autoconf), - (ephy_embed_single_get_font_list): - * embed/ephy-embed-single.h: - * embed/ephy-embed.c: (ephy_embed_get_type), - (ephy_embed_base_init), (ephy_embed_load_url), - (ephy_embed_stop_load), (ephy_embed_can_go_back), - (ephy_embed_can_go_forward), (ephy_embed_can_go_up), - (ephy_embed_get_go_up_list), (ephy_embed_go_back), - (ephy_embed_go_forward), (ephy_embed_go_up), - (ephy_embed_get_title), (ephy_embed_get_location), - (ephy_embed_get_link_message), (ephy_embed_get_js_status), - (ephy_embed_reload), (ephy_embed_zoom_set), (ephy_embed_zoom_get), - (ephy_embed_shistory_n_items), (ephy_embed_shistory_get_nth), - (ephy_embed_shistory_get_pos), (ephy_embed_shistory_go_nth), - (ephy_embed_get_security_level), (ephy_embed_find_set_properties), - (ephy_embed_find_next), (ephy_embed_activate), - (ephy_embed_set_encoding), (ephy_embed_get_encoding_info), - (ephy_embed_print), (ephy_embed_print_preview_close), - (ephy_embed_print_preview_n_pages), - (ephy_embed_print_preview_navigate): - * embed/ephy-embed.h: - * embed/ephy-password-manager.h: - * embed/ephy-permission-manager.h: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed-single.h: - * embed/mozilla/mozilla-embed.cpp: - - Unify interface struct and type macro naming to be EphyFooIFace, - EPHY_FOO_IFACE, EPHY_IS_FOO_IFACE, EPHY_FOO_GET_IFACE. - - ChangeLog | 47 +++++++++++ - embed/ephy-command-manager.c | 59 ++++++------- - embed/ephy-command-manager.h | 16 ++-- - embed/ephy-cookie-manager.c | 6 +- - embed/ephy-cookie-manager.h | 6 +- - embed/ephy-embed-dialog.h | 7 +- - embed/ephy-embed-shell.c | 1 + - embed/ephy-embed-single.c | 30 +++---- - embed/ephy-embed-single.h | 10 +-- - embed/ephy-embed.c | 145 ++++++++++++++++---------------- - embed/ephy-embed.h | 12 +-- - embed/ephy-password-manager.h | 4 +- - embed/ephy-permission-manager.h | 4 +- - embed/mozilla/PrintingPromptService.cpp | 16 +++- - embed/mozilla/mozilla-embed-single.cpp | 6 +- - embed/mozilla/mozilla-embed-single.h | 4 +- - embed/mozilla/mozilla-embed.cpp | 74 ++++++++-------- - 17 files changed, 254 insertions(+), 193 deletions(-) - -commit 11a7cc65dfe779d091abd429784d7cad7dbcbf76 -Author: Christian Persch -Date: Thu Jan 1 17:58:34 2004 +0000 - - Remove default font notifier, it's been obsoleted by the fonts rewrite. - - 2004-01-01 Christian Persch - - * embed/ephy-embed-prefs.h: - * embed/mozilla/mozilla-notifiers.cpp: - - Remove default font notifier, it's been obsoleted by the fonts rewrite. - - ChangeLog | 7 +++++++ - embed/ephy-embed-prefs.h | 1 - - embed/mozilla/mozilla-notifiers.cpp | 23 +++++++++++------------ - 3 files changed, 18 insertions(+), 13 deletions(-) - -commit 0e85de55596a39a8f47b3448e376e4c3978c7a3c -Author: Christian Persch -Date: Thu Jan 1 17:27:54 2004 +0000 - - Set socks prefs from gconf too. - - 2004-01-01 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - - Set socks prefs from gconf too. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 2 ++ - 2 files changed, 8 insertions(+) - -commit f14e169e25bc7d85f3cbfc6ca0942c927ab5a729 -Author: Roozbeh Pournader -Date: Thu Jan 1 15:01:00 2004 +0000 - - Added "fa" (Persian) to ALL_LINGUAS. Added Persian translation. - - 2004-01-01 Roozbeh Pournader - - * configure.in: Added "fa" (Persian) to ALL_LINGUAS. - * fa.po: Added Persian translation. - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/fa.po | 3285 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3294 insertions(+), 1 deletion(-) - -commit 487820792d4151d60e0a33a25ee155570e864d04 -Author: Christian Persch -Date: Wed Dec 31 18:15:53 2003 +0000 - - Fix mem leaks. - - 2003-12-31 Christian Persch - - * embed/mozilla/MozDownload.cpp: - * embed/print-dialog.c: (ephy_print_get_print_info): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 9 +++++---- - embed/print-dialog.c | 1 + - 3 files changed, 13 insertions(+), 4 deletions(-) - -commit 473d7c4722c6561df27bf5d396905aae407a892d -Author: Paul Duffy -Date: Wed Dec 31 16:07:29 2003 +0000 - - updated irish translation - - po/ChangeLog | 2 +- - po/ga.po | 29 +++++++++++++---------------- - 2 files changed, 14 insertions(+), 17 deletions(-) - -commit 43ffdbce3d862188f5eff610b4dfb4492c9e8a3d -Author: Christian Persch -Date: Tue Dec 30 20:10:36 2003 +0000 - - Adjust includes to make it compile with mozila 1.4. - - 2003-12-30 Christian Persch - - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - Adjust includes to make it compile with mozila 1.4. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 1 - - embed/mozilla/MozDownload.h | 2 ++ - 3 files changed, 9 insertions(+), 1 deletion(-) - -commit 3a64822115580381da20e6bda7496c3244739e35 -Author: Denis Lackovic -Date: Tue Dec 30 19:48:56 2003 +0000 - - croatian translations updated - - po/hr.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 51e2cb8bf5dab7acc126161f6447bf8fcb9e3587 -Author: Denis Lackovic -Date: Tue Dec 30 19:37:58 2003 +0000 - - croatian translations updated - - po/hr.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d2c1f2e66fc4117c64764b548007bace76f57f12 -Author: Paul Duffy -Date: Tue Dec 30 19:25:06 2003 +0000 - - Updated Irish Translation - - po/ChangeLog | 4 + - po/ga.po | 1783 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 942 insertions(+), 845 deletions(-) - -commit 152dda6cd4852abf2e245e9f496049f609b983a2 -Author: Denis Lackovic -Date: Tue Dec 30 18:32:55 2003 +0000 - - croatian translations updated - - po/hr.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e75afc16ed5bb461f2e1a49e052f23e70e47db82 -Author: Christian Persch -Date: Tue Dec 30 18:10:21 2003 +0000 - - Add API to EphyEmbedSingle to clear the HTTP authentication cache. - - 2003-12-30 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_clear_auth_cache): - * embed/ephy-embed-single.h: - * embed/mozilla/mozilla-embed-single.cpp: - - Add API to EphyEmbedSingle to clear the HTTP authentication cache. - - ChangeLog | 8 ++++++++ - embed/ephy-embed-single.c | 13 +++++++++++++ - embed/ephy-embed-single.h | 3 +++ - embed/mozilla/mozilla-embed-single.cpp | 15 ++++++++++++++- - 4 files changed, 38 insertions(+), 1 deletion(-) - -commit 69f1a14473f11b9890713a52843b5b8bd465f1f9 -Author: Denis Lackovic -Date: Tue Dec 30 17:35:48 2003 +0000 - - croatian translations updated - - po/hr.po | 38 +++++++++++++++++++------------------- - 1 file changed, 19 insertions(+), 19 deletions(-) - -commit 87936c1d42b14612ee86487a1831046b3a1b6d59 -Author: Duarte Loreto -Date: Tue Dec 30 05:37:01 2003 +0000 - - Updated and revised Portuguese translation. - - 2003-12-30 Duarte Loreto - - * pt.po: Updated and revised Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 3509 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 1641 insertions(+), 1872 deletions(-) - -commit c76b79acb1dd84aec4b91bae8841099699a38139 -Author: Christian Persch -Date: Mon Dec 29 21:05:09 2003 +0000 - - Unified return type of ephy_embed_shell_get_X to be GObject *. Fixed all - - 2003-12-29 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_favicon_cache), - (ephy_embed_shell_get_global_history), - (ephy_embed_shell_get_downloader_view), - (ephy_embed_shell_get_embed_single), - (ephy_embed_shell_get_encodings), (ephy_embed_shell_check_mime), - (ephy_embed_shell_class_init): - * embed/ephy-embed-shell.h: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * src/bookmarks/ephy-bookmarks.c: (compute_lower_fav), - (ephy_setup_history_notifiers): - * src/ephy-completion-model.c: (ephy_completion_model_init): - * src/ephy-shell.c: (ephy_shell_get_history_window): - * src/ephy-tab.c: (ephy_tab_set_icon_address), - (ephy_tab_address_cb), (ephy_tab_zoom_changed_cb): - * src/ephy-toolbars-model.c: (impl_get_item_id): - * src/prefs-dialog.c: (setup_font_combo), - (prefs_clear_cache_button_clicked_cb): - - Unified return type of ephy_embed_shell_get_X to be GObject *. - Fixed all callers. - - ChangeLog | 26 +++++++++++++++ - embed/ephy-embed-shell.c | 65 +++++++++++++++++-------------------- - embed/ephy-embed-shell.h | 23 ++++--------- - embed/mozilla/ContentHandler.cpp | 3 +- - embed/mozilla/EphyHeaderSniffer.cpp | 4 ++- - embed/mozilla/GlobalHistory.cpp | 7 ++-- - embed/mozilla/mozilla-notifiers.cpp | 9 +++-- - src/bookmarks/ephy-bookmarks.c | 9 ++--- - src/ephy-completion-model.c | 4 +-- - src/ephy-shell.c | 4 +-- - src/ephy-tab.c | 16 +++++---- - src/ephy-toolbars-model.c | 4 ++- - src/prefs-dialog.c | 7 ++-- - 13 files changed, 101 insertions(+), 80 deletions(-) - -commit 6ca9d693750a2b0807670b0072ed5d162e12fea0 -Author: Görkem Çetin -Date: Sun Dec 28 23:22:51 2003 +0000 - - Some modifications... - - po/tr.po | 348 +++++++++++++++++---------------------------------------------- - 1 file changed, 94 insertions(+), 254 deletions(-) - -commit bd78469441296726e9be62695eadd3238e7d87e5 -Author: Görkem Çetin -Date: Sun Dec 28 20:46:17 2003 +0000 - - intltool-update * - - po/tr.po | 3200 +++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 1900 insertions(+), 1300 deletions(-) - -commit f6295cf20a1e2e6e728c909a6bc5d3bf563f03c7 -Author: Christian Persch -Date: Sun Dec 28 16:28:10 2003 +0000 - - Added OrigTree.pm to EXTRA_DIST. - - 2003-12-28 Christian Persch - - * Makefile.am: - - Added OrigTree.pm to EXTRA_DIST. - - ChangeLog | 6 ++++++ - Makefile.am | 1 + - 2 files changed, 7 insertions(+) - -commit ab61315ff8aba3f42880d4c3536f9b91142cda16 -Author: Marco Pesenti Gritti -Date: Sun Dec 28 14:34:14 2003 +0000 - - *** empty log message *** - - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1c7103c902f7e9796dfa566c8d382719abcd2307 -Author: Marco Pesenti Gritti -Date: Sun Dec 28 11:03:04 2003 +0000 - - Update for 1.1.2 - - ChangeLog | 7 ++++++ - NEWS | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 83 insertions(+) - -commit a9863f3bfeb5d8852304d4c92e284e0653dc8ee6 -Author: Christian Persch -Date: Sat Dec 27 10:32:42 2003 +0000 - - Brought type macros in line with the rest of libegg; and use gobject - - 2003-12-27 Christian Persch - - * lib/egg/egg-editable-toolbar.c: (find_action), - (drag_data_delete_cb), (drag_data_get_cb), - (egg_editable_toolbar_set_model), (egg_editable_toolbar_set_merge), - (egg_editable_toolbar_class_init), (egg_editable_toolbar_init), - (egg_editable_toolbar_finalize), (egg_editable_toolbar_new): - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-toolbar-editor.c: (find_action), - (egg_toolbar_editor_set_merge), (egg_toolbar_editor_set_model), - (egg_toolbar_editor_class_init), (egg_toolbar_editor_finalize), - (egg_toolbar_editor_new), (editor_drag_data_received_cb), - (editor_drag_data_delete_cb), (update_editor_sheet), - (setup_editor), (egg_toolbar_editor_init): - * lib/egg/egg-toolbar-editor.h: - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_to_xml), - (egg_toolbars_model_save), (egg_toolbars_model_add_separator), - (impl_add_item), (egg_toolbars_model_add_toolbar), - (egg_toolbars_model_load), (egg_toolbars_model_class_init), - (egg_toolbars_model_init), (egg_toolbars_model_finalize), - (egg_toolbars_model_new), (egg_toolbars_model_remove_toolbar), - (egg_toolbars_model_remove_item): - * lib/egg/egg-toolbars-model.h: - - Brought type macros in line with the rest of libegg; and use - gobject instance private data. - - * src/ephy-toolbars-model.c: (ephy_toolbars_model_get_type), - (update_toolbar_removeable_flag), - (ephy_toolbars_model_set_bookmarks), (toolbar_added), - (toolbar_removed), (ephy_toolbars_model_new), - (ephy_toolbars_model_has_bookmark): - * src/ephy-toolbars-model.h: - * src/toolbar.c: (toolbar_get_type), (init_normal_mode): - - Fix crasher bug #129991. - - ChangeLog | 37 ++++++++++++++++ - lib/egg/egg-editable-toolbar.c | 80 ++++++++++++++++++++++------------ - lib/egg/egg-editable-toolbar.h | 12 +++--- - lib/egg/egg-toolbar-editor.c | 55 +++++++++++++----------- - lib/egg/egg-toolbar-editor.h | 14 +++--- - lib/egg/egg-toolbars-model.c | 37 +++++++--------- - lib/egg/egg-toolbars-model.h | 12 +++--- - src/ephy-toolbars-model.c | 97 +++++++++++++++++------------------------- - src/ephy-toolbars-model.h | 6 --- - src/toolbar.c | 43 ++----------------- - 10 files changed, 196 insertions(+), 197 deletions(-) - -commit bde4c29f92204eafbe4f953353730946486dc474 -Author: Christian Persch -Date: Fri Dec 26 19:38:41 2003 +0000 - - One download directory chooser is enough. - - 2003-12-26 Christian Persch - - * src/prefs-dialog.c: (prefs_dialog_finalize), - (prefs_download_path_button_clicked_cb): - - One download directory chooser is enough. - - ChangeLog | 7 +++++++ - src/prefs-dialog.c | 47 +++++++++++++++++++++++++++++++---------------- - 2 files changed, 38 insertions(+), 16 deletions(-) - -commit b413be462d88491c049f4744952047547fde20cb -Author: Christian Persch -Date: Thu Dec 25 14:55:12 2003 +0000 - - Move Toolbar struct decl to toolbar.h. - - 2003-12-25 Christian Persch - - * src/ephy-window.h: - * src/toolbar.h: - - Move Toolbar struct decl to toolbar.h. - - ChangeLog | 7 +++++++ - src/ephy-window.h | 1 - - src/toolbar.h | 5 +++-- - 3 files changed, 10 insertions(+), 3 deletions(-) - -commit eb4ff191acf324ac1d789f1160f10afe5ea4dd2f -Author: Christian Persch -Date: Thu Dec 25 14:48:12 2003 +0000 - - Bring ephy_window_get_toolbar signature in line with - - 2003-12-25 Christian Persch - - * src/ephy-window.c: (ephy_window_get_toolbar), - (ephy_window_set_zoom): - * src/ephy-window.h: - * src/window-commands.c: (window_cmd_edit_toolbar), - (window_cmd_load_location): - - Bring ephy_window_get_toolbar signature in line with - ephy_window_get_[statusbar|notebook]. - - 2003-12-24 Christian Persch - - * embed/mozilla/EventContext.cpp: - - GDK_Meta_L is a keycode, not a modifier code. - Map meta to GDK_MOD2_MASK. - - ChangeLog | 18 ++++++++++++++++++ - embed/mozilla/EventContext.cpp | 4 ++-- - src/ephy-shell.c | 2 +- - src/ephy-window.c | 15 +++++++++------ - src/ephy-window.h | 4 ++-- - src/window-commands.c | 4 ++-- - 6 files changed, 34 insertions(+), 13 deletions(-) - -commit 1869f5b40756ca14c79f123f68d68579a8003163 -Author: Miloslav Trmac -Date: Tue Dec 23 20:39:23 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 24 +++++++++++++++--------- - 2 files changed, 19 insertions(+), 9 deletions(-) - -commit 0ec6b743429bf9d172adcf0ce87f3d4c99a6f188 -Author: David Bordoley -Date: Tue Dec 23 20:24:18 2003 +0000 - - Updated printing docs from spark. GET A CVS ACCOUNT! *hint*hint* patch - - 2003-12-23 David Bordoley - - * help/C/epiphany.xml: - - Updated printing docs from spark. GET A CVS ACCOUNT! - *hint*hint* - patch from Piers Cornwell - - ChangeLog | 8 ++++++ - help/C/epiphany.xml | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 85 insertions(+), 2 deletions(-) - -commit 5f13aaa3436783b34541742b17095dc55e4db006 -Author: Kostas Papadimas -Date: Tue Dec 23 20:17:22 2003 +0000 - - Updated the Greek translation - - po/ChangeLog | 4 + - po/el.po | 1654 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 969 insertions(+), 689 deletions(-) - -commit a2e85a6e859e6cd375518d28bb9d00381d7046c4 -Author: Laurent Dhima -Date: Mon Dec 22 19:47:28 2003 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 4adad7c66f246e9b5dc2ebd559b9d2586af52360 -Author: Laurent Dhima -Date: Mon Dec 22 19:45:57 2003 +0000 - - Updated - - po/sq.po | 57 +++++++++++++++++++++++++++++++++++++-------------------- - 1 file changed, 37 insertions(+), 20 deletions(-) - -commit 15fce640f6945bdf8fc634414747cc294d183207 -Author: Christian Persch -Date: Mon Dec 22 14:05:17 2003 +0000 - - Fix mem leak. (Found by Crispin.) - - 2003-12-22 Christian Persch - - * embed/ephy-encodings.c: (ephy_encodings_add_recent): - - Fix mem leak. (Found by Crispin.) - - ChangeLog | 6 ++++++ - embed/ephy-encodings.c | 1 + - 2 files changed, 7 insertions(+) - -commit f606a4b6e99b759e408b4b9e7e7a8dca25b306f4 -Author: Marco Pesenti Gritti -Date: Sun Dec 21 23:48:39 2003 +0000 - - Correctly cancel the download instead of just cancelling the request. - - 2003-12-22 Marco Pesenti Gritti - - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - Correctly cancel the download instead of just - cancelling the request. - - ChangeLog | 8 ++++++++ - embed/mozilla/MozDownload.cpp | 28 ++++++++++++---------------- - embed/mozilla/MozDownload.h | 4 ++-- - 3 files changed, 22 insertions(+), 18 deletions(-) - -commit ec26f0d7fa45ee4a88f4834347f9a705b06a0ebb -Author: Danilo Šegan -Date: Sun Dec 21 22:10:05 2003 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 25 +++++++++++++++---------- - po/sr@Latn.po | 25 +++++++++++++++---------- - 3 files changed, 34 insertions(+), 20 deletions(-) - -commit 2c2d53be607392849452b810786eb66f3cd358a6 -Author: Francisco Javier F. Serrador -Date: Sun Dec 21 16:20:16 2003 +0000 - - Updated Spanish translation. - - 2003-12-21 Francisco Javier F. Serrador - - * po/es.po: Updated Spanish translation. - - po/ChangeLog | 4 + - po/es.po | 386 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 208 insertions(+), 182 deletions(-) - -commit 683071d8c5a74089bf6fab6274a05f8db03b80d4 -Author: Miloslav Trmac -Date: Sun Dec 21 15:15:06 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 385 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 208 insertions(+), 181 deletions(-) - -commit 2805eb765c34406c1f54468f99ee4ede5e612d2c -Author: Xan Lopez -Date: Sun Dec 21 13:41:50 2003 +0000 - - Forgot. - - - Forgot. - - ChangeLog | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -commit 5d029e3b2c92a66a7eb4dcd6e3644f9abc44d6b9 -Author: Christian Persch -Date: Sun Dec 21 13:33:38 2003 +0000 - - Sync with galeon. - - 2003-12-21 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - - Sync with galeon. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 12 ++++++------ - 2 files changed, 12 insertions(+), 6 deletions(-) - -commit 0b3efcd60f612b939e4f9ec320d992019b90cc6f -Author: Christian Persch -Date: Sun Dec 21 13:31:12 2003 +0000 - - Change mnemonic. - - 2003-12-21 Christian Persch - - * data/glade/epiphany.glade: (encoding_dialog): - - Change mnemonic. - - ChangeLog | 6 ++++++ - data/glade/epiphany.glade | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 5fcc37ab46f722ee0992aad79f5993bf11bf64b0 -Author: Xan Lopez -Date: Sun Dec 21 12:55:57 2003 +0000 - - Re-implement Pause/Resume in downloader. - - - * embed/downloader-view.c: (download_dialog_pause_cb): - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - * embed/mozilla/mozilla-download.cpp: - - Re-implement Pause/Resume in downloader. - - * src/window-commands.c: (window_cmd_help_about): - - Change mail address. - - embed/downloader-view.c | 2 ++ - embed/mozilla/MozDownload.cpp | 25 +++++++++++++++++++------ - embed/mozilla/MozDownload.h | 1 + - embed/mozilla/mozilla-download.cpp | 2 ++ - src/window-commands.c | 2 +- - 5 files changed, 25 insertions(+), 7 deletions(-) - -commit d3faaba781cd172d20b8f5bdadfefa3bcde1c36d -Author: Danilo Šegan -Date: Sun Dec 21 08:07:41 2003 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 28 ++++++++++++++++++---------- - po/sr@Latn.po | 28 ++++++++++++++++++---------- - 3 files changed, 40 insertions(+), 20 deletions(-) - -commit 8d5a6ee5abb931ba40f17653ed1f0a2127bb7845 -Author: Laurent Dhima -Date: Sun Dec 21 00:45:47 2003 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit b933d922dcdf4ff080414417c3697d843ddfbd86 -Author: Laurent Dhima -Date: Sun Dec 21 00:43:16 2003 +0000 - - Updated - - * sq.po: Updated - - po/sq.po | 2444 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1322 insertions(+), 1122 deletions(-) - -commit 80a33e2077ac1747f1b266014eb28dcd237681ef -Author: Vincent van Adrighem -Date: Sat Dec 20 21:58:04 2003 +0000 - - Dutch translation updated by Vincent van Adrighem. - - 2003-12-20 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - - po/ChangeLog | 4 + - po/nl.po | 727 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 390 insertions(+), 341 deletions(-) - -commit da5c99d76b663820b525427934255d91c32c6664 -Author: Marco Pesenti Gritti -Date: Sat Dec 20 19:35:58 2003 +0000 - - Do not try to pickup already set MOZILLA_FIVE_HOME, hopefully fix crashes - - 2003-12-20 Marco Pesenti Gritti - - * src/epiphany.in: - - Do not try to pickup already set MOZILLA_FIVE_HOME, - hopefully fix crashes oepning links from thunderbird - - ChangeLog | 7 +++++++ - src/epiphany.in | 11 ++--------- - 2 files changed, 9 insertions(+), 9 deletions(-) - -commit 825e2488a6498acff91d4d3f8b4c590fa224cbe1 -Author: Christian Persch -Date: Sat Dec 20 19:32:36 2003 +0000 - - Get rid of about:options. - - 2003-12-20 Christian Persch - - * embed/mozilla/EphyAboutRedirector.cpp: - - Get rid of about:options. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutRedirector.cpp | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit f60078bc4970490c21c205258fd54259c5ff72ef -Author: Christian Neumair -Date: Sat Dec 20 17:03:35 2003 +0000 - - Slight update. - - po/de.po | 20 ++++++++++++++------ - 1 file changed, 14 insertions(+), 6 deletions(-) - -commit c822c32d2e71cc462ca79903e5bccbdbea658408 -Author: Christian Neumair -Date: Sat Dec 20 17:01:23 2003 +0000 - - Fixed #129737. - - ChangeLog | 7 +++++++ - src/prefs-dialog.c | 15 ++++++++++++++- - 2 files changed, 21 insertions(+), 1 deletion(-) - -commit c1563eced7a53f75f6dbddbba78a9245723e3b26 -Author: Christian Persch -Date: Sat Dec 20 14:09:21 2003 +0000 - - Fix popup coordinates in RTL mode. - - 2003-12-20 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_menu_position_under_widget): - - Fix popup coordinates in RTL mode. - - ChangeLog | 6 ++++++ - lib/ephy-gui.c | 20 ++++++++++++++++---- - 2 files changed, 22 insertions(+), 4 deletions(-) - -commit 2de282d4de16460ed3d812eedabf1bf843b4603a -Author: Christian Neumair -Date: Sat Dec 20 13:40:26 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 348 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 182 insertions(+), 170 deletions(-) - -commit c2dcddaebebf28b655b636a219510debd229c613 -Author: Arafat Medini -Date: Sat Dec 20 12:13:13 2003 +0000 - - Updated Arabic translation - - - 2003-12-20 Arafat Medini - - * ar.po: Updated Arabic translation - - po/ChangeLog | 4 + - po/ar.po | 4411 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 2530 insertions(+), 1885 deletions(-) - -commit 6191dc2f58aabb40efc6b001e61e3e96d4e7bd9d -Author: Christian Persch -Date: Sat Dec 20 11:51:10 2003 +0000 - - Set the label's mnemonic widget. - - 2003-12-20 Christian Persch - - * data/glade/prefs-dialog.glade: (add_language_dialog): - - Set the label's mnemonic widget. - - ChangeLog | 6 ++++++ - data/glade/prefs-dialog.glade | 1 + - 2 files changed, 7 insertions(+) - -commit bb654d80e463104c05d9fa92c7ab5a8cbdf30384 -Author: Christian Persch -Date: Fri Dec 19 22:58:40 2003 +0000 - - Use favicons in the back/forward menus. - - 2003-12-19 Christian Persch - - * src/ephy-navigation-action.c: (ephy_navigation_action_get_type), - (new_history_menu_item), (setup_back_or_forward_menu), - (setup_up_menu): - - Use favicons in the back/forward menus. - - ChangeLog | 8 ++++++++ - src/ephy-navigation-action.c | 36 +++++++++++++++++++++++++++++++----- - 2 files changed, 39 insertions(+), 5 deletions(-) - -commit b8823a91a4c7e5a3b3b3e27be07b7cc9f8006b4e -Author: Christian Persch -Date: Fri Dec 19 21:24:58 2003 +0000 - - Prepare for mozilla 1.6final and 1.7a. - - 2003-12-19 Christian Persch - - * configure.in: - - Prepare for mozilla 1.6final and 1.7a. - - ChangeLog | 6 ++++++ - configure.in | 7 +++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 692d2b9353c7f1a813f6614512bcde4be6163842 -Author: Christian Persch -Date: Fri Dec 19 20:16:51 2003 +0000 - - Use return, not g_return_if_fail. - - 2003-12-19 Christian Persch - - * src/ephy-encoding-dialog.c: (sync_embed_cb): - * src/ephy-encoding-menu.c: (update_encoding_menu_cb): - - Use return, not g_return_if_fail. - - ChangeLog | 7 +++++++ - src/ephy-encoding-dialog.c | 2 +- - src/ephy-encoding-menu.c | 5 ----- - 3 files changed, 8 insertions(+), 6 deletions(-) - -commit 4f96cabd5769fb8e49579ef4976a74fcc61ef999 -Author: Christian Persch -Date: Fri Dec 19 18:13:53 2003 +0000 - - EphyFileChooser now destroys with parent, don't set the flag again here. - - 2003-12-19 Christian Persch - - * embed/print-dialog.c: (ephy_print_dialog_browse_button_cb): - - EphyFileChooser now destroys with parent, don't set the flag again here. - - ChangeLog | 6 ++++++ - embed/print-dialog.c | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit ca1c6796980e5787767a30bb9933fb4232931b3d -Author: Christian Persch -Date: Fri Dec 19 17:56:07 2003 +0000 - - Destroy file chooser with its parent window; fixes crashes. - - 2003-12-19 Christian Persch - - * lib/ephy-file-chooser.c: (ephy_file_chooser_new): - - Destroy file chooser with its parent window; fixes crashes. - - ChangeLog | 6 ++++++ - lib/ephy-file-chooser.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 6e0a43085d9665d4f91035b56272eb57e2ec1978 -Author: Danilo Šegan -Date: Fri Dec 19 16:01:27 2003 +0000 - - Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 354 ++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 354 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 372 insertions(+), 340 deletions(-) - -commit cb85297cd231771cd22913f39fe2a71aa8c53849 -Author: Christian Persch -Date: Fri Dec 19 14:35:55 2003 +0000 - - Improve comment. - - 2003-12-19 Christian Persch - - * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb): - - Improve comment. - - * src/ephy-window.c: (setup_ui_manager), (setup_notebook), - (ephy_window_init): - - Only show the toolbar after the extensions have been attached - to the window. - - ChangeLog | 12 +++++++++++ - src/ephy-tab.c | 7 +++++-- - src/ephy-window.c | 62 +++++++++++++++++++++++++++++-------------------------- - 3 files changed, 50 insertions(+), 31 deletions(-) - -commit 5511b6207788fccebd0a9110d8cbf4eaa8c66b5e -Author: Christian Persch -Date: Fri Dec 19 14:32:48 2003 +0000 - - Remove debug output leftovers. - - 2003-12-19 Christian Persch - - * src/prefs-dialog.c: (add_lang_dialog_response_cb): - - Remove debug output leftovers. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 0e5e2da258546296e2e7dd6cad2216b8eae7ddf3 -Author: Christian Persch -Date: Fri Dec 19 14:23:35 2003 +0000 - - Updated British English translation. - - 2003-12-18 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 2662 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1542 insertions(+), 1124 deletions(-) - -commit 761ce65b7b47e7bc17cdbcf118cbb345c7b635e3 -Author: Christian Persch -Date: Thu Dec 18 17:43:42 2003 +0000 - - In-line the language editor in the prefs dialogue. - - 2003-12-18 Christian Persch - - * data/glade/prefs-dialog.glade: - * embed/mozilla/mozilla-notifiers.cpp: - * src/Makefile.am: - * src/language-editor.c: - * src/language-editor.h: - * src/prefs-dialog.c: (prefs_dialog_finalize), - (prefs_dialog_class_init), (language_editor_add), - (language_editor_update_pref), (language_editor_update_buttons), - (add_lang_dialog_response_cb), (setup_add_language_dialog), - (language_editor_add_button_clicked_cb), - (language_editor_remove_button_clicked_cb), - (language_editor_up_button_clicked_cb), - (language_editor_down_button_clicked_cb), - (language_editor_treeview_drag_end_cb), - (language_editor_selection_changed_cb), (create_language_section), - (prefs_dialog_init): - - In-line the language editor in the prefs dialogue. - - ChangeLog | 21 ++ - data/glade/prefs-dialog.glade | 457 ++++++++++++++++++++------- - embed/mozilla/mozilla-notifiers.cpp | 62 ++-- - src/Makefile.am | 2 - - src/language-editor.c | 401 ------------------------ - src/language-editor.h | 70 ----- - src/prefs-dialog.c | 609 ++++++++++++++++++++++++++---------- - 7 files changed, 850 insertions(+), 772 deletions(-) - -commit aba053264da43f60b0628077e79cd52e3d78394a -Author: Christian Persch -Date: Thu Dec 18 15:58:01 2003 +0000 - - Factor out the common encoding is_automatic check. - - 2003-12-18 Christian Persch - - * embed/ephy-encodings.c: (ephy_encoding_info_is_automatic): - * embed/ephy-encodings.h: - * src/ephy-encoding-dialog.c: (sync_embed_cb): - * src/ephy-encoding-menu.c: (update_encoding_menu_cb): - - Factor out the common encoding is_automatic check. - - ChangeLog | 9 +++++++++ - embed/ephy-encodings.c | 9 +++++++++ - embed/ephy-encodings.h | 2 ++ - src/ephy-encoding-dialog.c | 10 +--------- - src/ephy-encoding-menu.c | 2 +- - 5 files changed, 22 insertions(+), 10 deletions(-) - -commit 9266e975fc38af05bf2a7d1329d7b530ef2c6ba0 -Author: Gustavo Noronha Silva -Date: Thu Dec 18 04:20:54 2003 +0000 - - Updated translation. - - 2003-12-18 Gustavo Noronha Silva - - * pt_BR.po: Updated translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 1095 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 601 insertions(+), 498 deletions(-) - -commit a03640b77d1facd90e172b844c8b18318ec3931a -Author: Christian Persch -Date: Wed Dec 17 19:37:53 2003 +0000 - - Don't try to save the submit button image instead of submitting the form. - - 2003-12-17 Christian Persch - - * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb): - - Don't try to save the submit button image instead of submitting - the form. [Found by xan.] - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 14 ++++++++------ - 2 files changed, 15 insertions(+), 6 deletions(-) - -commit 170fc03054ca260d38365b2aa5a520e8a3f5c464 -Author: Miloslav Trmac -Date: Wed Dec 17 12:53:15 2003 +0000 - - Fix Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 12 ++++++------ - 2 files changed, 10 insertions(+), 6 deletions(-) - -commit 792af781f484d36ab866831d0df4657a8a0769c5 -Author: Ales Nyakhaychyk -Date: Wed Dec 17 05:29:31 2003 +0000 - - Updated Belarusian translation - - po/ChangeLog | 4 + - po/be.po | 4140 +++++++++++++++++++++------------------------------------- - 2 files changed, 1484 insertions(+), 2660 deletions(-) - -commit 33199d37d75f0073e8ded75fda9f8d7ec04e6f10 -Author: Christian Persch -Date: Tue Dec 16 21:34:13 2003 +0000 - - Fix more mem leaks. - - 2003-12-16 Christian Persch - - * lib/widgets/ephy-location-entry.c: (completion_func): - - Fix more mem leaks. - - ChangeLog | 8 +++++++- - lib/widgets/ephy-location-entry.c | 3 +++ - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit c44417bd5251229119f8203ae4ed5e2c68ec9684 -Author: Christian Persch -Date: Tue Dec 16 21:23:57 2003 +0000 - - Fix mem leak. - - 2003-12-16 Christian Persch - - * lib/widgets/ephy-location-entry.c: (completion_func): - - Fix mem leak. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 7a407a918297b8c54ee79174aac54bc84de97d29 -Author: Marco Pesenti Gritti -Date: Tue Dec 16 17:29:43 2003 +0000 - - *** empty log message *** - - ChangeLog | 57 ++++++++ - embed/ephy-encodings.c | 1 - - embed/ephy-favicon-cache.c | 18 --- - embed/ephy-history.c | 33 ----- - lib/Makefile.am | 2 - - lib/ephy-node-db.c | 27 ---- - lib/ephy-node-filter.c | 2 - - lib/ephy-node.c | 247 ---------------------------------- - lib/ephy-node.h | 4 - - lib/ephy-state.c | 1 - - lib/ephy-thread-helpers.c | 35 ----- - lib/ephy-thread-helpers.h | 34 ----- - lib/widgets/ephy-search-entry.c | 4 - - lib/widgets/ephy-tree-model-node.c | 2 - - src/bookmarks/ephy-bookmarks-editor.c | 4 - - src/bookmarks/ephy-bookmarks-export.c | 3 - - src/bookmarks/ephy-bookmarks-menu.c | 3 - - src/bookmarks/ephy-bookmarks.c | 6 - - src/bookmarks/ephy-topic-action.c | 3 - - src/bookmarks/ephy-topics-selector.c | 1 - - src/ephy-favorites-menu.c | 1 - - src/ephy-history-window.c | 4 - - src/ephy-location-action.c | 1 - - src/ephy-main.c | 2 - - 24 files changed, 57 insertions(+), 438 deletions(-) - -commit 7339c460e72364aad2de893ab3c13549efc01d9b -Author: Christian Persch -Date: Mon Dec 15 14:06:54 2003 +0000 - - Really committing it this time - - ChangeLog | 2 +- - lib/widgets/ephy-zoom-action.c | 3 ++- - 2 files changed, 3 insertions(+), 2 deletions(-) - -commit bdfca4efa02c758af85bafa72fefb3a1bbafbc72 -Author: Christian Persch -Date: Mon Dec 15 14:04:55 2003 +0000 - - Don't install statusbar.h. - - 2003-12-15 Christian Persch - - * src/Makefile.am: - - Don't install statusbar.h. - - ChangeLog | 6 ++++++ - src/Makefile.am | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 3d83b51e03f4908acda3960fb50543925495bcd0 -Author: Christian Persch -Date: Mon Dec 15 13:59:11 2003 +0000 - - Fix silly type flags. - - 2003-12-15 Christian Persch - - * src/ephy-extension.c: (ephy_extension_get_type): - - Fix silly type flags. - - ChangeLog | 6 ++++++ - src/ephy-extension.c | 3 +-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 845c4d3f2ac83c2a714422fc7632208fe0d3d381 -Author: Christian Persch -Date: Mon Dec 15 13:56:20 2003 +0000 - - Don't use deprecated macro. - - 2003-12-15 Christian Persch - - * lib/widgets/ephy-zoom-control.c: (connect_proxy): - - Don't use deprecated macro. - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 21c72551a20bfb0b495aa25c65d8eca85aa99acb -Author: Kjartan Maraas -Date: Sun Dec 14 22:28:04 2003 +0000 - - Updated Norwegian translation. - - 2003-12-14 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 2766 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 1666 insertions(+), 1104 deletions(-) - -commit 79400fff79976294cb92b3c47e696baac58491a5 -Author: Christian Persch -Date: Sun Dec 14 17:26:32 2003 +0000 - - Fix mem leaks. Fix a crash when finalizing a nautilus view after having - - 2003-12-14 Christian Persch - - * src/ephy-nautilus-view.c: (ephy_nautilus_view_finalize), - (gnv_cmd_select_encoding), (gnv_cmd_file_print), - (gnv_cmd_edit_find): - - Fix mem leaks. - Fix a crash when finalizing a nautilus view after having - used the find dialogue. - - ChangeLog | 10 ++++++++++ - src/ephy-nautilus-view.c | 12 +++++++++--- - 2 files changed, 19 insertions(+), 3 deletions(-) - -commit 1616c205631056fa19b85aec166ea9019881f425 -Author: Christian Persch -Date: Sat Dec 13 22:52:23 2003 +0000 - - Better way of mapping hierarchy to topics when importing bookmarks from - - 2003-12-13 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: - (ephy_bookmarks_import_mozilla): - - Better way of mapping hierarchy to topics when importing - bookmarks from mozilla. Fixes bug #124145. - - ChangeLog | 8 +++++++ - src/bookmarks/ephy-bookmarks-import.c | 40 ++++++++++++++++++++++++++++++----- - 2 files changed, 43 insertions(+), 5 deletions(-) - -commit c7fa7407b02c593b79492a2c57369af10032ec0d -Author: Christian Persch -Date: Sat Dec 13 22:29:00 2003 +0000 - - Convert control chars to blanks. - - 2003-12-13 Christian Persch - - * lib/ephy-string.c: (ephy_string_shorten), (ephy_string_to_int), - (ephy_string_blank_chr), (ephy_string_elide_underscores), - (ephy_string_double_underscores): - * lib/ephy-string.h: - * src/ephy-tab.c: (ephy_tab_set_link_message): - - Convert control chars to blanks. - - ChangeLog | 10 ++++++++++ - lib/ephy-string.c | 50 +++++++++++++++++++++++++++----------------------- - lib/ephy-string.h | 9 ++++----- - src/ephy-tab.c | 10 +--------- - 4 files changed, 42 insertions(+), 37 deletions(-) - -commit 0dfeadba7950238d8f31b8a7fd1135e014d133b3 -Author: Christian Persch -Date: Sat Dec 13 22:04:03 2003 +0000 - - Use stock icon for print setup. - - 2003-12-13 Christian Persch - - * embed/print-dialog.c: (ephy_print_setup_dialog_new): - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * lib/ephy-stock-icons.h: - * src/ephy-window.c: - - Use stock icon for print setup. - - ChangeLog | 9 +++++++++ - embed/print-dialog.c | 3 ++- - lib/ephy-stock-icons.c | 3 ++- - lib/ephy-stock-icons.h | 1 + - src/ephy-window.c | 2 +- - 5 files changed, 15 insertions(+), 3 deletions(-) - -commit 28d91fc5baa0120da19eb59513c9118898ee2396 -Author: Christian Persch -Date: Sat Dec 13 21:37:42 2003 +0000 - - Use g_signal_connect_object so the signal isn't emitted for a dead - - 2003-12-13 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_init): - - Use g_signal_connect_object so the signal isn't emitted for a dead - spinner. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-spinner.c | 8 ++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit 9b633f92abdd89bedd5b7bb9912bd8e78c68f021 -Author: Marco Pesenti Gritti -Date: Sat Dec 13 18:22:12 2003 +0000 - - *** empty log message *** - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 33 ++++++++++++++++----------------- - src/ephy-window.c | 16 ++++++++++++++-- - src/statusbar.c | 19 ------------------- - src/statusbar.h | 3 --- - 5 files changed, 38 insertions(+), 41 deletions(-) - -commit 60820903a87b48f1026786ef6cec0a9a8b39a7b9 -Author: Marco Pesenti Gritti -Date: Sat Dec 13 17:47:09 2003 +0000 - - *** empty log message *** - - ChangeLog | 10 ++++++++++ - src/ephy-tab.c | 23 +++++++++++++---------- - 2 files changed, 23 insertions(+), 10 deletions(-) - -commit a24d8402cd926c267682ede6f4325d8da0c4479d -Author: Christian Persch -Date: Fri Dec 12 21:44:35 2003 +0000 - - Fix permission return types. - - 2003-12-12 Christian Persch - - * embed/ephy-permission-manager.c: (ephy_permission_info_new), - (ephy_permission_info_copy), (ephy_permission_manager_add): - * embed/ephy-permission-manager.h: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - - Fix permission return types. - - ChangeLog | 10 ++++++++++ - embed/ephy-permission-manager.c | 21 +++++++++++---------- - embed/ephy-permission-manager.h | 19 +++++++++++++------ - embed/mozilla/EphySingle.cpp | 10 ++++++---- - embed/mozilla/mozilla-embed-single.cpp | 26 +++++++++++++++++--------- - 5 files changed, 57 insertions(+), 29 deletions(-) - -commit ac58742bbf40beaa31967cc8a75b4b3504e52f65 -Author: Francisco F. Serrador -Date: Fri Dec 12 10:36:26 2003 +0000 - - Updated Spanish translation - - 2003-12-12 Francisco F. Serrador - - * es.po: Updated Spanish translation - - po/ChangeLog | 4 + - po/es.po | 1080 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 600 insertions(+), 484 deletions(-) - -commit d0a541a6cb797ecc289e3a8c72fe527b11bcbb35 -Author: Christian Persch -Date: Wed Dec 10 18:44:10 2003 +0000 - - Make print dialogue spacing HIG-compliant. - - 2003-12-10 Christian Persch - - * data/glade/print.glade: - - Make print dialogue spacing HIG-compliant. - - * src/ephy-tabs-menu.c: (tab_set_action_accelerator), - (ephy_tabs_menu_update): - - Restore tabs menu shortcut keys ALT-1 .. ALT-0 for the first - ten tabs; they somehow got lost in the Egg->Gtk port. - - ChangeLog | 12 ++++++++++++ - data/glade/print.glade | 2 +- - src/ephy-tabs-menu.c | 8 +++++--- - 3 files changed, 18 insertions(+), 4 deletions(-) - -commit 90c8f3beae1b12495402449f01b5b510a1388bba -Author: Marco Pesenti Gritti -Date: Tue Dec 9 23:38:59 2003 +0000 - - Default history to show only title - - 2003-12-09 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - - Default history to show only title - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 7d6f2794cd732bb8492f196acef101d8ef210e9f -Author: Javier F. Serrador -Date: Tue Dec 9 23:18:43 2003 +0000 - - Updated Spanish po - - 2003-12-10 Javier F. Serrador - * po/es.po: Updated Spanish po - - po/ChangeLog | 4 + - po/es.po | 1048 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 594 insertions(+), 458 deletions(-) - -commit 1a30aad2cd97319b1b66b14d7c9c2f3b20b05d80 -Author: Adam Hooper -Date: Tue Dec 9 22:23:07 2003 +0000 - - Move events code inside EphyBrowser.cpp and add an event for blocked - - 2003-12-09 Adam Hooper - - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/Makefile.am: - - Move events code inside EphyBrowser.cpp and - add an event for blocked popup. - - * embed/ephy-permission-manager.c: - - Some more docs - - * src/Makefile.am: - * src/ephy-window.c: (ephy_window_get_statusbar): - * src/ephy-window.h: - - Add a way to access the statusbar for plugins - - ChangeLog | 21 +++++ - embed/ephy-embed.c | 8 ++ - embed/ephy-embed.h | 1 + - embed/ephy-permission-manager.c | 3 +- - embed/mozilla/EphyBrowser.cpp | 148 ++++++++++++++++++++++++++++++++++-- - embed/mozilla/EphyBrowser.h | 38 ++++++++- - embed/mozilla/EphyEventListener.cpp | 123 ------------------------------ - embed/mozilla/EphyEventListener.h | 46 ----------- - embed/mozilla/Makefile.am | 2 - - src/Makefile.am | 4 +- - src/ephy-window.c | 8 ++ - src/ephy-window.h | 2 + - 12 files changed, 220 insertions(+), 184 deletions(-) - -commit 8a7cfd5a9a6a2fe10c78199dd1a81c6a13118835 -Author: Jorn Baayen -Date: Tue Dec 9 21:08:03 2003 +0000 - - Make toolbar editing drag icons use the same icon size as the actual toolbar icons; sort actiosn in the toolbar editor; give the zoom action a zoom icon. - - ChangeLog | 13 +++++++++++ - lib/egg/egg-editable-toolbar.c | 21 +++++++++++++---- - lib/egg/egg-toolbar-editor.c | 51 +++++++++++++++++++++++++++++++++++++----- - src/toolbar.c | 1 + - 4 files changed, 77 insertions(+), 9 deletions(-) - -commit 287581589f810fecf07c298c1dbcf90aa500f118 -Author: Christian Neumair -Date: Tue Dec 9 20:45:38 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 1482 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 822 insertions(+), 664 deletions(-) - -commit 8a22e2430aa8da4dc26ba18f2ca35b0c6f1cf6ef -Author: Marco Pesenti Gritti -Date: Tue Dec 9 20:20:05 2003 +0000 - - depend on automake 1.7, it seem it's needed by the deprecates code. - - 2003-12-09 Marco Pesenti Gritti - - * autogen.sh: - - depend on automake 1.7, it seem it's needed by - the deprecates code. - - ChangeLog | 7 +++++++ - autogen.sh | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit a8070650114716342ce344a0758c758e81e6d855 -Author: Christian Persch -Date: Tue Dec 9 15:05:54 2003 +0000 - - Reformatted to conform to epiphany coding style. Fix some error condition - - 2003-12-09 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_get_type), - (ephy_spinner_new), (get_spinner_dimensions), (ephy_spinner_init), - (select_spinner_image), (ephy_spinner_expose), - (bump_spinner_frame), (ephy_spinner_start), - (ephy_spinner_remove_update_callback), (ephy_spinner_stop), - (ephy_spinner_unload_images), (scale_to_real_size), - (extract_frame), (ephy_spinner_load_images), - (ephy_spinner_set_small_mode): - - Reformatted to conform to epiphany coding style. - Fix some error condition checks, and initialise variables. - - ChangeLog | 14 +++++ - lib/widgets/ephy-spinner.c | 131 +++++++++++++++++++++++++++++---------------- - 2 files changed, 98 insertions(+), 47 deletions(-) - -commit 7770329ddb6007e771b761f253b1b96b2216f645 -Author: Christian Persch -Date: Tue Dec 9 12:34:19 2003 +0000 - - Lockdown: set some buttons insensitive when their pref key is not - - 2003-12-09 Christian Persch - - * data/glade/prefs-dialog.glade: - * embed/print-dialog.c: (ephy_print_dialog_new): - * src/prefs-dialog.c: (create_language_menu), - (create_download_path_label), (prefs_dialog_init): - - Lockdown: set some buttons insensitive when their - pref key is not writable. - - * src/prefs-dialog.c: (download_path_response_cb): - - Convert filename to utf8 first. - - ChangeLog | 14 ++++++++++++++ - data/glade/prefs-dialog.glade | 4 ++-- - embed/print-dialog.c | 7 ++++++- - src/prefs-dialog.c | 40 +++++++++++++++++++++++++++++++--------- - 4 files changed, 53 insertions(+), 12 deletions(-) - -commit ce437e5277114f3d4717f638536fe4b019215f40 -Author: Christian Persch -Date: Tue Dec 9 11:19:34 2003 +0000 - - Bump gtk+ and glib dependencies to 2.3.1. - - 2003-12-09 Christian Persch - - * configure.in: - - Bump gtk+ and glib dependencies to 2.3.1. - - ChangeLog | 6 ++++++ - configure.in | 6 ++---- - 2 files changed, 8 insertions(+), 4 deletions(-) - -commit 319856cb2999bd248a240adb6239c3ff95e6cad6 -Author: Christian Persch -Date: Mon Dec 8 17:35:32 2003 +0000 - - Sort the list of fonts alphabetically. - - 2003-12-08 Christian Persch - - * src/prefs-dialog.c: (setup_font_combo), - (create_fonts_language_menu), (create_node_combo), - (create_language_menu): - - Sort the list of fonts alphabetically. - - Fix a bunch of mem leaks. - - ChangeLog | 10 ++++++++++ - src/prefs-dialog.c | 35 ++++++++++++++++++++++++++--------- - 2 files changed, 36 insertions(+), 9 deletions(-) - -commit 0fbad748e467255cdc67bc9029366e1cee13d4a4 -Author: Christian Persch -Date: Mon Dec 8 15:27:44 2003 +0000 - - Don't use g_return_if_fail for run-time error conditions. - - 2003-12-08 Christian Persch - - * embed/ephy-embed-shell.c: (load_mime_from_xml): - - Don't use g_return_if_fail for run-time error conditions. - - ChangeLog | 6 ++++++ - embed/ephy-embed-shell.c | 12 ++++++++++-- - 2 files changed, 16 insertions(+), 2 deletions(-) - -commit 3c1e4ad57e58f84e702bb2cf8de2ff04f3416d84 -Author: Christian Persch -Date: Mon Dec 8 15:21:31 2003 +0000 - - Make ctrl-click equivalent of middle click on links. Make shift-click save - - 2003-12-08 Christian Persch - - * src/ephy-tab.c: (save_property_url), - (ephy_tab_dom_mouse_click_cb): - - Make ctrl-click equivalent of middle click on links. Make shift-click - save the link. Fixes bug #110786. - - * src/ephy-window.c: (tab_context_menu_cb): - - Fix context_menu function return value type. - - ChangeLog | 12 ++++++++ - src/ephy-tab.c | 91 +++++++++++++++++++++++++++++++++++++++++++++---------- - src/ephy-window.c | 4 +-- - 3 files changed, 89 insertions(+), 18 deletions(-) - -commit 593c690076eb6127dbd8fa25bbbf0e75bf1c689d -Author: Christian Persch -Date: Mon Dec 8 11:18:01 2003 +0000 - - Updating NEWS - - NEWS | 1 + - 1 file changed, 1 insertion(+) - -commit eeca21ce4f0f963e4475a74f0b05fd5e35cccd35 -Author: Miloslav Trmac -Date: Mon Dec 8 09:40:44 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 640 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 354 insertions(+), 290 deletions(-) - -commit 85363adc50e94d70d2f1b0902e4b11240d3569d1 -Author: Danilo Šegan -Date: Sun Dec 7 21:47:38 2003 +0000 - - Updated Serbian translation. - - 2003-12-07 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - * POTFILES.in: Added embed/print-dialog.c. - - po/ChangeLog | 6 + - po/POTFILES.in | 1 + - po/sr.po | 508 ++++++++++++++++++++++++++++++--------------------------- - po/sr@Latn.po | 508 ++++++++++++++++++++++++++++++--------------------------- - 4 files changed, 541 insertions(+), 482 deletions(-) - -commit 946983746128c33df7f3207070c205606016c7e8 -Author: Marco Pesenti Gritti -Date: Sun Dec 7 13:01:40 2003 +0000 - - Update for 1.1.1 - - 2003-12-07 Marco Pesenti Gritti - - * Makefile.am: - * NEWS: - * configure.in: - - Update for 1.1.1 - - ChangeLog | 8 ++++++++ - Makefile.am | 2 ++ - NEWS | 24 +++++++----------------- - configure.in | 2 +- - 4 files changed, 18 insertions(+), 18 deletions(-) - -commit a2184b400054cf721606423fe54cdf2afc276f89 -Author: Christian Persch -Date: Sun Dec 7 10:24:50 2003 +0000 - - Updating NEWS - - NEWS | 2 -- - 1 file changed, 2 deletions(-) - -commit ec22aa6d6229b0e3405e5fca4be0662f41946b77 -Author: Christian Persch -Date: Sun Dec 7 10:23:31 2003 +0000 - - Split print dialogue in print setup and actual print, and move print - - 2003-12-07 Christian Persch - - * data/glade/print.glade: - * data/ui/epiphany-ui.xml: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/print-dialog.c: (ephy_print_info_free), - (ephy_print_get_print_info), (ephy_print_dialog_response_cb), - (print_filechooser_response_cb), - (ephy_print_dialog_browse_button_cb), - (ephy_print_setup_dialog_close_button_cb), (ephy_print_dialog_new), - (ephy_print_setup_dialog_new): - * embed/print-dialog.h: - * src/ephy-nautilus-view.c: (ephy_nautilus_view_new_component), - (gnv_cmd_file_print): - * src/ephy-nautilus-view.h: - * src/ephy-shell.c: (ephy_shell_get_type), (ephy_shell_class_init), - (ephy_automation_factory_cb), (ephy_automation_factory_new), - (ephy_shell_init), (server_timeout), (ephy_shell_startup), - (ephy_shell_finalize), (ephy_shell_new_tab), - (ephy_shell_get_session), (ephy_shell_get_bookmarks), - (ephy_shell_get_toolbars_model), (ephy_shell_get_bookmarks_editor), - (ephy_shell_get_history_window), - (ephy_shell_get_print_setup_dialog), (ephy_shell_delete_on_exit): - * src/ephy-shell.h: - * src/ephy-window.c: (ephy_window_set_print_preview), - (ephy_window_print): - * src/ephy-window.h: - * src/window-commands.c: (window_cmd_file_print_setup), - (window_cmd_file_print_preview): - * src/window-commands.h: - - Split print dialogue in print setup and actual print, and move - print preview into the menus too. Made print setup a global dialogue, - print a per-window dialogue. - - * lib/ephy-dialog.c: (set_value_from_pref), (set_pref_from_value), - (set_value_from_combobox), (set_combo_box_from_value), - (set_radiobuttongroup_from_value), (set_pref_from_info_and_emit), - (togglebutton_clicked_cb), (radiobutton_clicked_cb), - (spinbutton_timeout_cb), (changed_cb), (init_props), (load_info), - (save_info), (impl_show), (ephy_dialog_set_size_group), - (ephy_dialog_construct), (run_response_cb), (ephy_dialog_run), - (ephy_dialog_set_parent), (ephy_dialog_class_init), - (ephy_dialog_new_with_parent): - * lib/ephy-dialog.h: - * src/language-editor.c: (language_editor_class_init): - * src/language-editor.h: - * src/pdm-dialog.c: (pdm_dialog_init): - * src/prefs-dialog.c: (fonts_language_changed_cb), - (create_fonts_language_menu), (prefs_dialog_init), - (prefs_language_more_button_clicked_cb): - - Slight api change; port callers. - - ChangeLog | 55 ++ - NEWS | 1 + - data/glade/print.glade | 1378 ++++++++++++++++--------------- - data/ui/epiphany-ui.xml | 2 + - embed/mozilla/PrintingPromptService.cpp | 33 +- - embed/mozilla/mozilla-embed.cpp | 9 +- - embed/print-dialog.c | 590 +++++-------- - embed/print-dialog.h | 54 +- - lib/ephy-dialog.c | 226 +++-- - lib/ephy-dialog.h | 20 +- - src/ephy-nautilus-view.c | 16 +- - src/ephy-nautilus-view.h | 37 +- - src/ephy-shell.c | 294 +++---- - src/ephy-shell.h | 47 +- - src/ephy-window.c | 52 +- - src/ephy-window.h | 6 +- - src/language-editor.c | 4 +- - src/language-editor.h | 2 +- - src/pdm-dialog.c | 15 +- - src/prefs-dialog.c | 41 +- - src/window-commands.c | 29 + - src/window-commands.h | 16 +- - 22 files changed, 1468 insertions(+), 1459 deletions(-) - -commit 83bcb61ae1b7790c9d483d3706641dcc61686c67 -Author: Christian Persch -Date: Sat Dec 6 18:44:21 2003 +0000 - - Updating NEWS - - NEWS | 31 +++++++++++++++++++++++++++++-- - 1 file changed, 29 insertions(+), 2 deletions(-) - -commit 9e12319630c0d0d08fae14afb372739247141ace -Author: David Bordoley -Date: Sat Dec 6 18:07:44 2003 +0000 - - New Securing and snake oil certificates section :P New keybindings - - 2003-12-02 David Bordoley - - * help/C/epiphany.xml: - - New Securing and snake oil certificates section :P - New keybindings section. Update the prefs section - and download section to match actual ui - patch from Piers Cornwell - - ChangeLog | 9 + - help/C/epiphany.xml | 679 ++++++++++++++++++++++++++++++++++++++++++++++++---- - 2 files changed, 648 insertions(+), 40 deletions(-) - -commit 1693c8d0d91d65d6ece605be97cfa739da260d58 -Author: Christian Persch -Date: Fri Dec 5 23:12:37 2003 +0000 - - Fix a mem leak (ported from galeon). - - 2003-12-06 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Fix a mem leak (ported from galeon). - - ChangeLog | 20 ++++++++++++++++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 2 files changed, 21 insertions(+), 1 deletion(-) - -commit 7e8b35f93d2ef0f08fdf6b9ef889fb913091a61f -Author: Christian Persch -Date: Fri Dec 5 23:11:06 2003 +0000 - - Misc cleanups. Remove a duplicated signal from EphyEmbed. - - 2003-12-06 Christian Persch - - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_type), - (ephy_embed_shell_finalize), (ephy_embed_shell_get_favicon_cache), - (ephy_embed_shell_get_global_history), - (ephy_embed_shell_get_downloader_view), (load_mime_from_xml), - (ephy_embed_shell_init), (ephy_embed_shell_class_init): - * embed/ephy-embed-shell.h: - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * src/ephy-tab.c: (ephy_tab_init): - - Misc cleanups. Remove a duplicated signal from EphyEmbed. - - embed/ephy-embed-shell.c | 185 ++++++++++++++++++++++------------------------- - embed/ephy-embed-shell.h | 38 +++++----- - embed/ephy-embed.c | 9 --- - embed/ephy-embed.h | 166 ++++++++++++++++++++---------------------- - src/ephy-tab.c | 13 ---- - 5 files changed, 180 insertions(+), 231 deletions(-) - -commit 72422dbaef675fa8a016ce7c5b4b801e7d478c23 -Author: Christian Persch -Date: Fri Dec 5 21:33:45 2003 +0000 - - Use notify::expanded to persist expander state. Bug found by Crispin. - - 2003-12-05 Christian Persch - - * lib/ephy-state.c: (sync_expander_cb), (ephy_state_add_expander): - - Use notify::expanded to persist expander state. Bug found by Crispin. - - ChangeLog | 6 ++++++ - lib/ephy-state.c | 9 +++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit 57446c7410f0624ccab73132663890d7ea1815f7 -Author: Christian Persch -Date: Fri Dec 5 20:51:58 2003 +0000 - - Remove unused variable. - - 2003-12-05 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialog.cpp: - - Remove unused variable. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit ec6cde80415d80da26d01cdce7f5abc20294f97f -Author: Christian Persch -Date: Fri Dec 5 20:45:04 2003 +0000 - - Remove unneccessary _() call. - - 2003-12-05 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - - Remove unneccessary _() call. - - ChangeLog | 6 ++++++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 3d3f2ed171498b636f9e16eb5aa3b967cc4c348d -Author: Vincent van Adrighem -Date: Fri Dec 5 00:15:50 2003 +0000 - - Dutch translation updated by Vincent van Adrighem. - - 2003-12-05 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - - po/ChangeLog | 4 + - po/nl.po | 915 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 486 insertions(+), 433 deletions(-) - -commit fc33bbddd1ef2214ed431b3bf537e8c7346047c3 -Author: Christian Persch -Date: Thu Dec 4 23:05:41 2003 +0000 - - Add some missing NULL checks. - - 2003-12-04 Christian Persch - - * embed/mozilla/EphyBrowser.cpp: - - Add some missing NULL checks. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyBrowser.cpp | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 20fb6f14a56e77e029d9cbd583faf743f5b927e4 -Author: Danilo Šegan -Date: Thu Dec 4 03:53:13 2003 +0000 - - Updated Serbian translation. - - 2003-12-04 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 ++ - po/sr.po | 144 ++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 144 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 154 insertions(+), 138 deletions(-) - -commit 1b3e6ea9cae541d48c1601700a13ff2d2a4865a4 -Author: Christian Persch -Date: Wed Dec 3 22:56:32 2003 +0000 - - Remove unused includes. - - 2003-12-03 Christian Persch - - * lib/widgets/ephy-spinner.c: - - Remove unused includes. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-spinner.c | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 49d83b69035e937e686c34f75b5993bc8cf1f8ff -Author: Christian Persch -Date: Wed Dec 3 22:53:45 2003 +0000 - - Epiphany is now 100% fat-free.... err... free of deprecated widgets. Add - - 2003-12-03 Christian Persch - - * embed/mozilla/Makefile.am: - - Epiphany is now 100% fat-free.... err... free of - deprecated widgets. Add -DGTK_DISABLE_DEPRECATED - flag back again when in maintainer mode. - - ChangeLog | 8 ++++++++ - embed/mozilla/Makefile.am | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit c697d680afc56646475e93e72f1ddb785ea37061 -Author: Christian Persch -Date: Wed Dec 3 22:29:29 2003 +0000 - - Port from optionmenu to new GtkComboBox. - - 2003-12-03 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - - Port from optionmenu to new GtkComboBox. - - ChangeLog | 6 ++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 91 ++++++++++++++++++++++++++++++- - 2 files changed, 95 insertions(+), 2 deletions(-) - -commit 605eda115a7061488d2fb0e4264338598ea904d4 -Author: Christian Persch -Date: Wed Dec 3 19:23:16 2003 +0000 - - Fix strftime(3) usage. - - 2003-12-03 Christian Persch - - * embed/mozilla/GtkNSSDialogs.cpp: - * src/pdm-dialog.c: (show_cookies_properties): - - Fix strftime(3) usage. - - ChangeLog | 7 +++++++ - embed/mozilla/GtkNSSDialogs.cpp | 7 +++++-- - src/pdm-dialog.c | 6 +++++- - 3 files changed, 17 insertions(+), 3 deletions(-) - -commit 34fa8474852c0efb0002dba6ad8daffbee1177d5 -Author: Christian Persch -Date: Wed Dec 3 13:05:31 2003 +0000 - - Fix two crashers. - - 2003-12-03 Christian Persch - - * src/pdm-dialog.c: (pdm_cmd_delete_selection), (compare_cookies): - - Fix two crashers. - - ChangeLog | 6 ++++++ - src/pdm-dialog.c | 12 +++++++++--- - 2 files changed, 15 insertions(+), 3 deletions(-) - -commit e4cb4e2580feaa94e913cd57e3bc572456124460 -Author: Piers Cornwell -Date: Wed Dec 3 12:41:29 2003 +0000 - - Improve cookie properties dialogue for bug #125498. - - 2003-12-03 Piers Cornwell - - * src/pdm-dialog.c: (show_cookies_properties): - - Improve cookie properties dialogue for bug #125498. - - ChangeLog | 6 ++++++ - src/pdm-dialog.c | 43 +++++++++++++++++++++++++------------------ - 2 files changed, 31 insertions(+), 18 deletions(-) - -commit be2845c9ecaebce26a657e14589611f9a69bf88c -Author: Danilo Šegan -Date: Wed Dec 3 03:44:26 2003 +0000 - - Updated Serbian translation. - - 2003-12-03 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - * POTFILES.in: Added data/epiphany-lockdown.schemas.in. - - po/ChangeLog | 6 + - po/POTFILES.in | 5 +- - po/sr.po | 521 ++++++++++++++++++++++++++++++--------------------------- - po/sr@Latn.po | 521 ++++++++++++++++++++++++++++++--------------------------- - 4 files changed, 567 insertions(+), 486 deletions(-) - -commit 24e463dde53e039a571645566bea3ed7763dd305 -Author: Christian Persch -Date: Tue Dec 2 20:16:47 2003 +0000 - - Set sensitivity from gconf key writability, and do it right. - - 2003-12-02 Christian Persch - - * lib/ephy-dialog.c: (set_info_from_pref): - - Set sensitivity from gconf key writability, and do it right. - - ChangeLog | 6 ++++++ - lib/ephy-dialog.c | 5 +---- - 2 files changed, 7 insertions(+), 4 deletions(-) - -commit 856ac0d4f8a8e677fc210b21e781ae486d684363 -Author: David Bordoley -Date: Tue Dec 2 18:12:08 2003 +0000 - - More cleanups. Added prefs section and downloader section. Still needs - - 2003-12-02 David Bordoley - - * help/C/epiphany.xml: - - More cleanups. Added prefs section and downloader - section. Still needs work to be brought 100% - up2date. - patch from Piers Cornwell - - ChangeLog | 9 + - help/C/epiphany.xml | 686 ++++++++++++++++++++++++++++++++++++++++------------ - 2 files changed, 542 insertions(+), 153 deletions(-) - -commit 1fa20d55cebadbdfdd580d3db0a8b5b4c73486bf -Author: Christian Persch -Date: Tue Dec 2 11:41:09 2003 +0000 - - Add /system/http_proxy to list of directories to monitor. - - 2003-12-02 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - - Add /system/http_proxy to list of directories to monitor. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 5 +++++ - 2 files changed, 11 insertions(+) - -commit aa9105691b3b14f016146adaecd5694bfc436796 -Author: Xan Lopez -Date: Mon Dec 1 23:35:44 2003 +0000 - - Move quite a lot of things from unsafe to safe, still some to go. - - - * data/mime-types-permissions.xml: - - Move quite a lot of things from unsafe to safe, still - some to go. - - ChangeLog | 6 + - data/mime-types-permissions.xml | 254 ++++++++++++++++++++-------------------- - 2 files changed, 133 insertions(+), 127 deletions(-) - -commit 08d16c0891e9c89e81e4e7adf57d14c54c047d4f -Author: Marco Pesenti Gritti -Date: Mon Dec 1 19:41:33 2003 +0000 - - pass the shell to the callbacks as expected. Fix warnings. - - 2003-12-01 Marco Pesenti Gritti - - * src/ephy-shell.c: (ephy_shell_get_history_window): - - pass the shell to the callbacks as expected. Fix warnings. - - ChangeLog | 6 ++++++ - src/ephy-shell.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit d8d264d7179f735b546fc0b7c6cf6fa0031a983b -Author: Marco Pesenti Gritti -Date: Mon Dec 1 19:16:28 2003 +0000 - - Handle case of get_location on an unrealized widget - - 2003-12-01 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed.cpp: - - Handle case of get_location on an unrealized widget - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 2 ++ - 2 files changed, 8 insertions(+) - -commit e605383e02c059c4dd7acc3e1d43fa90f93a3dd1 -Author: Miloslav Trmac -Date: Mon Dec 1 15:19:40 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 552 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 289 insertions(+), 267 deletions(-) - -commit 6681ac76411ba6d96f7a002cf1de42fff8ec71df -Author: Christian Persch -Date: Sun Nov 30 23:19:14 2003 +0000 - - Update my email address. - - 2003-11-30 Christian Persch - - * src/window-commands.c: - - Update my email address. - - ChangeLog | 6 ++++++ - src/window-commands.c | 8 ++++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit f62a491ba939f188b4b37ffcb150432e25c4bad0 -Author: Christian Persch -Date: Sun Nov 30 19:04:28 2003 +0000 - - Fix mem leak introduced by last commit. - - 2003-11-30 Christian Persch - - * src/language-editor.c: (language_editor_add): - - Fix mem leak introduced by last commit. - - ChangeLog | 6 ++++++ - src/language-editor.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 763b4e07e1444c08c4a393ac562621a3d6bbb373 -Author: Christian Persch -Date: Sun Nov 30 16:35:41 2003 +0000 - - Remove gtkoptionmenu.h include. - - 2003-11-30 Christian Persch - - * lib/ephy-dialog.c: - - Remove gtkoptionmenu.h include. - - * src/language-editor.c: (language_editor_add): - * src/prefs-dialog.c: (create_language_menu): - - Make languages list unique; don't allow to add an entry - already in the list. - - ChangeLog | 12 ++++++++++++ - lib/ephy-dialog.c | 1 - - src/language-editor.c | 23 +++++++++++++++++++++++ - src/prefs-dialog.c | 18 +++++++++++++++++- - 4 files changed, 52 insertions(+), 2 deletions(-) - -commit c6247087ebcbe7b06c3082c3ceb6378e9557ba37 -Author: Marco Pesenti Gritti -Date: Sun Nov 30 15:03:20 2003 +0000 - - *** empty log message *** - - src/bookmarks/Makefile.am | 11 ++++++----- - 1 file changed, 6 insertions(+), 5 deletions(-) - -commit cb1f3fcb6951fa86584cab260bbc6875e9bf82b1 -Author: Marco Pesenti Gritti -Date: Sun Nov 30 15:01:47 2003 +0000 - - Readd gtk deprecates (only in maintainer mode). - - 2003-11-30 Marco Pesenti Gritti - - * embed/Makefile.am: - * lib/Makefile.am: - * lib/widgets/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - - Readd gtk deprecates (only in maintainer mode). - - * src/ephy-location-action.c: (sync_editable): - - Use not deprecated api. - - * lib/ephy-dialog.c: (set_value_from_info), (set_info_from_value), - (connect_signals), (init_props): - - Remove optionmenu deprecated control. - - ChangeLog | 19 +++++++++++++ - embed/Makefile.am | 2 +- - lib/Makefile.am | 2 +- - lib/ephy-dialog.c | 66 +--------------------------------------------- - lib/widgets/Makefile.am | 2 +- - src/Makefile.am | 2 +- - src/ephy-location-action.c | 2 +- - 7 files changed, 25 insertions(+), 70 deletions(-) - -commit 3d7dead5a930aa9b51cce8533f59c1573e95861e -Author: Christian Persch -Date: Sun Nov 30 14:15:05 2003 +0000 - - Added disable_unsafe_protocols and additional_safe_protocols keys. - - 2003-11-30 Christian Persch - - * data/epiphany-lockdown.schemas.in: - - Added disable_unsafe_protocols and additional_safe_protocols keys. - - ChangeLog | 6 ++++++ - data/epiphany-lockdown.schemas.in | 29 +++++++++++++++++++++++++++-- - 2 files changed, 33 insertions(+), 2 deletions(-) - -commit e727d48da7d922631b3e3deda83c879d69203cbf -Author: Christian Persch -Date: Sun Nov 30 14:11:19 2003 +0000 - - Forgot another one - - embed/ephy-embed-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 65a418a120a3ae643db7649d71e9dca9722d8088 -Author: Christian Persch -Date: Sun Nov 30 14:10:15 2003 +0000 - - Forgot even more - - embed/ephy-encodings.c | 20 +- - embed/ephy-encodings.h | 2 +- - lib/ephy-dialog.c | 1680 ++++++++++++++++++++++++++--------------------- - lib/ephy-dialog.h | 113 ++-- - lib/ephy-file-chooser.c | 5 +- - 5 files changed, 1003 insertions(+), 817 deletions(-) - -commit dc5345fa3063b7c27c3cffa7745868bae56aa34c -Author: Christian Persch -Date: Sun Nov 30 14:08:56 2003 +0000 - - Forgot this - - configure.in | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 1aa5a63dad335d4f05b65915bb553fb28192ab02 -Author: Christian Persch -Date: Sun Nov 30 14:08:32 2003 +0000 - - Improved API and implementation of EphyDialog. Add support for new combo - - 2003-11-30 Christian Persch - - * configure.in: - * data/glade/epiphany.glade: - * data/glade/prefs-dialog.glade: - * embed/downloader-view.c: (downloader_view_build_ui): - * embed/ephy-embed-dialog.c: (ephy_embed_dialog_new_with_parent): - * embed/ephy-encodings.c: (ephy_encodings_get_detectors): - * embed/ephy-encodings.h: - * embed/find-dialog.c: (update_navigation_controls), - (set_properties), (impl_show), (find_dialog_class_init), - (find_dialog_init), (find_dialog_new_with_parent): - * embed/print-dialog.c: (impl_show), (print_dialog_init), - (print_dialog_new_with_parent), (print_get_info): - * lib/ephy-dialog.c: (ephy_dialog_get_type), (lookup_info), - (set_sensitivity), (set_value_from_pref), (set_pref_from_value), - (set_value_from_editable), (set_value_from_optionmenu), - (set_value_from_combobox), (get_radio_button_active_index), - (set_value_from_radiobuttongroup), (set_value_from_spin_button), - (set_value_from_togglebutton), (set_value_from_info), - (set_editable_from_value), (get_index_from_value), - (set_optionmenu_from_value), (compare_values), - (set_combo_box_from_value), (set_radiobuttongroup_from_value), - (set_spin_button_from_value), (set_togglebutton_from_value), - (set_info_from_value), (set_pref_from_info), - (togglebutton_clicked_cb), (radiobutton_clicked_cb), - (spinbutton_timeout_cb), (spinbutton_changed_cb), (changed_cb), - (set_info_from_pref), (connect_signals), (disconnect_signals), - (init_props), (load_info), (save_info), (setup_default_size), - (dialog_destroy_cb), (impl_construct), (impl_show), - (ephy_dialog_set_modal), (ephy_dialog_add_enum), - (ephy_dialog_set_data_column), (ephy_dialog_set_pref), - (ephy_dialog_set_size_group), (ephy_dialog_construct), - (ephy_dialog_show), (ephy_dialog_run), (ephy_dialog_get_control), - (ephy_dialog_get_value), (ephy_dialog_set_value), (free_prop_info), - (ephy_dialog_init), (ephy_dialog_dispose), (ephy_dialog_finalize), - (ephy_dialog_set_parent), (ephy_dialog_set_property), - (ephy_dialog_get_property), (ephy_dialog_class_init), - (ephy_dialog_new), (ephy_dialog_new_with_parent): - * lib/ephy-dialog.h: - * lib/ephy-file-chooser.c: (ephy_file_chooser_new): - * src/ephy-encoding-dialog.c: (sync_embed_cb), - (sync_parent_window_cb), (activate_choice), - (view_node_selected_cb), (view_node_activated_cb), - (ephy_encoding_dialog_init), (ephy_encoding_dialog_new): - * src/ephy-shell.c: (ephy_shell_finalize), - (ephy_shell_get_pdm_dialog), (ephy_shell_get_prefs_dialog): - * src/ephy-shell.h: - * src/language-editor.c: (language_editor_get_type), - (language_editor_class_init), (language_editor_update_pref), - (language_editor_add_button_clicked_cb), - (language_editor_set_view), (language_editor_init), - (language_editor_new), (language_editor_set_model), - (language_editor_add): - * src/language-editor.h: - * src/pdm-dialog.c: (pdm_dialog_show_help), - (action_treeview_selection_changed_cb), (setup_action), - (cookies_treeview_selection_changed_cb), - (pdm_dialog_cookies_construct), (pdm_dialog_passwords_construct), - (pdm_dialog_init), (show_cookies_properties): - * src/prefs-dialog.c: (prefs_dialog_get_type), - (prefs_dialog_class_init), (prefs_dialog_show_help), - (setup_font_combo), (fonts_language_combo_changed_cb), - (create_fonts_language_menu), (create_node_combo), - (language_combo_changed_cb), (create_language_menu), - (get_download_button_label), (create_download_path_label), - (prefs_dialog_init), (prefs_dialog_response_cb), - (set_homepage_entry), (prefs_homepage_current_button_clicked_cb), - (prefs_homepage_blank_button_clicked_cb), - (language_dialog_changed_cb), - (prefs_language_more_button_clicked_cb), - (download_path_response_cb), - (prefs_download_path_button_clicked_cb): - * src/prefs-dialog.h: - * src/window-commands.c: (window_cmd_edit_prefs): - - Improved API and implementation of EphyDialog. Add support for - new combo box, and removed optionmenu. - - Port all dialogues to new API and use combobox instead of optionmenus. - - ChangeLog | 81 +++ - data/glade/epiphany.glade | 43 ++ - data/glade/prefs-dialog.glade | 187 +++---- - embed/downloader-view.c | 18 +- - embed/find-dialog.c | 96 ++-- - embed/print-dialog.c | 91 ++-- - src/ephy-encoding-dialog.c | 28 +- - src/ephy-shell.c | 22 + - src/ephy-shell.h | 2 + - src/language-editor.c | 277 +++++----- - src/language-editor.h | 17 +- - src/pdm-dialog.c | 81 ++- - src/prefs-dialog.c | 1176 +++++++++++++++-------------------------- - src/prefs-dialog.h | 8 +- - src/window-commands.c | 4 +- - 15 files changed, 952 insertions(+), 1179 deletions(-) - -commit 2a4417e4222ce7ce938c5848d43fdbe27089141b -Author: Marco Pesenti Gritti -Date: Sun Nov 30 11:39:24 2003 +0000 - - *** empty log message *** - - data/.cvsignore | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 3ee87498b5087ca1e7bd78142ee6c5539673b09f -Author: Chris Lahey -Date: Sun Nov 30 11:38:12 2003 +0000 - - Marco Pesenti Gritti - - 2003-11-30 Chris Lahey - Marco Pesenti Gritti - - * data/Makefile.am: - * data/epiphany-lockdown.schemas.in: - * src/ephy-main.c: (main): - * src/ephy-tab.c: (ephy_tab_new_window_cb), (ephy_tab_size_to_cb): - * src/ephy-window.c: (update_chromes_visibility), (update_chrome), - (ephy_window_fullscreen), (ephy_window_unfullscreen), - (show_embed_popup), (update_layout_toggles), (chrome_notifier), - (ephy_window_init), (ephy_window_finalize), - (ephy_window_request_chrome), (ephy_window_set_print_preview), - (ephy_window_show), (print_dialog_preview_cb): - * src/ephy-window.h: - * src/ppview-toolbar.c: (ppview_toolbar_set_window), - (toolbar_cmd_ppv_close): - * src/window-commands.c: (window_cmd_view_bookmarks_bar), - (window_cmd_view_toolbar), (window_cmd_view_statusbar): - - Implement lockdown pref to not allow javascript to modify - chromes. Do necessary changes to chromes code to make - it possible. - - ChangeLog | 23 ++++ - data/Makefile.am | 4 +- - data/epiphany-lockdown.schemas.in | 26 ++++ - src/ephy-main.c | 2 + - src/ephy-tab.c | 4 +- - src/ephy-window.c | 243 ++++++++++++++++++++++---------------- - src/ephy-window.h | 5 +- - src/ppview-toolbar.c | 11 +- - src/window-commands.c | 33 +----- - 9 files changed, 205 insertions(+), 146 deletions(-) - -commit f84a5ff4e920c25d089786864f1ae2cdd94586d6 -Author: Danilo Šegan -Date: Sat Nov 29 12:28:38 2003 +0000 - - Updated Serbian translation. - - 2003-11-29 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 +++ - po/sr.po | 86 +++++++++++++++++++++++++++++------------------------------ - po/sr@Latn.po | 86 +++++++++++++++++++++++++++++------------------------------ - 3 files changed, 90 insertions(+), 86 deletions(-) - -commit ecede1c5b84bdf36a04bf3d24000d70a2c8faecc -Author: Miloslav Trmac -Date: Fri Nov 28 18:53:40 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 2720 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1604 insertions(+), 1120 deletions(-) - -commit 5ac9195bc7837a26aa5069b3c66934ea54ffee98 -Author: Marco Pesenti Gritti -Date: Fri Nov 28 17:22:05 2003 +0000 - - Show total downloads and time in the tray icon tooltip - - 2003-11-28 Marco Pesenti Gritti - - * embed/downloader-view.c: (status_icon_activated), - (seconds_remaining_total), (update_status_icon), - (download_changed_cb), (downloader_view_add_download): - - Show total downloads and time in the tray icon tooltip - - ChangeLog | 8 ++++++++ - embed/downloader-view.c | 41 ++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 48 insertions(+), 1 deletion(-) - -commit d0b9b0af497369eb6b2625057f456971a0ccf05a -Author: Christian Persch -Date: Fri Nov 28 12:53:11 2003 +0000 - - Port from option menu to GtkComboBox. - - 2003-11-28 Christian Persch - - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_get_type), - (proxy_menu_activate_cb), (combo_changed_cb), (sync_zoom_cb), - (ephy_zoom_control_init), (ephy_zoom_control_set_tooltip), - (ephy_zoom_control_class_init), (ephy_zoom_control_finalize): - * lib/widgets/ephy-zoom-control.h: - - Port from option menu to GtkComboBox. - - ChangeLog | 10 +++++ - lib/widgets/ephy-zoom-control.c | 98 +++++++++++++++++------------------------ - lib/widgets/ephy-zoom-control.h | 16 +++---- - 3 files changed, 56 insertions(+), 68 deletions(-) - -commit 493334ce5b250010cd55fddfef9d83470b6d0c70 -Author: Xan Lopez -Date: Thu Nov 27 23:46:32 2003 +0000 - - Do not blindly overwrite when downloading a file with the same name than a - - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - Do not blindly overwrite when downloading a file with the same - name than a local one, append a number after the name. - Fixes (more or less) #12775 - - ChangeLog | 11 ++++++ - embed/mozilla/ContentHandler.cpp | 44 ++--------------------- - embed/mozilla/EphyHeaderSniffer.cpp | 40 ++------------------- - embed/mozilla/MozDownload.cpp | 70 +++++++++++++++++++++++++++++++++++++ - embed/mozilla/MozDownload.h | 1 + - 5 files changed, 87 insertions(+), 79 deletions(-) - -commit 9bba3e204ba22f682e2ab211f9fccf760ae58a93 -Author: Piers Cornwell -Date: Thu Nov 27 11:05:42 2003 +0000 - - Fix some mnemonics, and make some mnemonics work by assigning a - - 2003-11-27 Piers Cornwell - - * data/glade/prefs-dialog.glade: - - Fix some mnemonics, and make some mnemonics work by - assigning a mnemonic_widget. - - ChangeLog | 7 +++++++ - data/glade/prefs-dialog.glade | 12 +++++++----- - 2 files changed, 14 insertions(+), 5 deletions(-) - -commit d981c20450526d563a2e3c9f492dc88a2bcfaa63 -Author: Danilo Šegan -Date: Thu Nov 27 05:23:25 2003 +0000 - - Updated Serbian translation. - - 2003-11-27 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 401 +++++++++++++++++++++++++++++----------------------------- - po/sr@Latn.po | 401 +++++++++++++++++++++++++++++----------------------------- - 3 files changed, 404 insertions(+), 402 deletions(-) - -commit 91166cf4b149a3c5fbaba16529788420954d4fab -Author: Christian Persch -Date: Wed Nov 26 18:43:05 2003 +0000 - - Implement disabling unsafe protocols for lock-down mode. - - 2003-11-26 Christian Persch - - * embed/mozilla/EphyContentPolicy.cpp: - * embed/mozilla/EphyContentPolicy.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - - Implement disabling unsafe protocols for lock-down mode. - - ChangeLog | 9 +++ - embed/mozilla/EphyContentPolicy.cpp | 118 ++++++++++++++++++++++++++++++++ - embed/mozilla/EphyContentPolicy.h | 54 +++++++++++++++ - embed/mozilla/Makefile.am | 2 + - embed/mozilla/MozRegisterComponents.cpp | 13 +++- - 5 files changed, 195 insertions(+), 1 deletion(-) - -commit ed7795be783b4f49314834b9c71813ce37f17280 -Author: Christian Persch -Date: Wed Nov 26 17:58:50 2003 +0000 - - Make PDM dialogue a singleton. - - 2003-11-26 Christian Persch - - * src/ephy-shell.c: (ephy_shell_init), (ephy_shell_finalize), - (ephy_shell_get_history_window), (ephy_shell_get_pdm_dialog): - * src/ephy-shell.h: - * src/pdm-dialog.c: (pdm_dialog_response_cb): - * src/pdm-dialog.h: - * src/window-commands.c: (window_cmd_edit_personal_data): - - Make PDM dialogue a singleton. - - ChangeLog | 11 +++++++++++ - src/ephy-shell.c | 23 +++++++++++++++++++++++ - src/ephy-shell.h | 2 ++ - src/pdm-dialog.c | 8 -------- - src/pdm-dialog.h | 8 +++----- - src/window-commands.c | 12 ++++++------ - 6 files changed, 45 insertions(+), 19 deletions(-) - -commit a80d75f2179aba2078b0d042fec4c24b4e01f729 -Author: Christian Persch -Date: Wed Nov 26 13:26:38 2003 +0000 - - Mark parameters "const" where appropriate. - - 2003-11-26 Christian Persch - - * embed/ephy-cookie-manager.c: (ephy_cookie_copy), - (ephy_cookie_manager_remove_cookie): - * embed/ephy-cookie-manager.h: - * embed/ephy-password-manager.c: (ephy_password_info_copy): - * embed/ephy-password-manager.h: - * embed/ephy-permission-manager.c: (ephy_permission_info_copy): - * embed/ephy-permission-manager.h: - * embed/mozilla/mozilla-embed-single.cpp: - - Mark parameters "const" where appropriate. - - * src/pdm-dialog.c: (pdm_cmd_delete_selection), (compare_cookies), - (cookie_to_iter), (cookie_added_cb), (cookie_changed_cb), - (cookie_deleted_cb), (cookies_cleared_cb), - (pdm_dialog_fill_cookies_list), (pdm_dialog_fill_passwords_list), - (pdm_dialog_init): - - Make the cookies list auto-updating. - - ChangeLog | 21 +++++ - embed/ephy-cookie-manager.c | 4 +- - embed/ephy-cookie-manager.h | 6 +- - embed/ephy-password-manager.c | 2 +- - embed/ephy-password-manager.h | 2 +- - embed/ephy-permission-manager.c | 2 +- - embed/ephy-permission-manager.h | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 2 +- - src/pdm-dialog.c | 148 ++++++++++++++++++++++----------- - 9 files changed, 130 insertions(+), 59 deletions(-) - -commit f532ac410a72d0f0948dfdfe2e4d157dcb5aadb5 -Author: Marco Pesenti Gritti -Date: Wed Nov 26 10:09:37 2003 +0000 - - Restore clipboard actions in input context menu. Show it only if mozilla - - 2003-11-26 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml: - * src/ephy-window.c: (update_edit_actions_sensitivity), - (edit_menu_show_cb), (show_embed_popup): - - Restore clipboard actions in input context menu. - Show it only if mozilla is recent enough though. - - ChangeLog | 9 +++++++++ - data/ui/epiphany-ui.xml | 6 +++--- - src/ephy-window.c | 14 ++++++++++++-- - 3 files changed, 24 insertions(+), 5 deletions(-) - -commit 89c7bdbe2be2c6bc866644da74a1846781e1764f -Author: Marco Pesenti Gritti -Date: Tue Nov 25 23:13:18 2003 +0000 - - Try out a different layout for downloads rows. Make the file column - - 2003-11-26 Marco Pesenti Gritti - - * embed/downloader-view.c: (update_download_row), - (download_changed_cb), (downloader_view_add_download), - (downloader_view_build_ui): - * lib/widgets/ephy-cell-renderer-progress.c: - - Try out a different layout for downloads rows. - Make the file column expand. - - ChangeLog | 10 ++++ - embed/downloader-view.c | 81 +++++++++++++++---------------- - lib/widgets/ephy-cell-renderer-progress.c | 2 +- - 3 files changed, 50 insertions(+), 43 deletions(-) - -commit 812571437fe45da173d0cc9414c14b2a8131c427 -Author: Christian Persch -Date: Tue Nov 25 20:56:58 2003 +0000 - - Change signal names to be unique for interfaces on the same object. - - 2003-11-25 Christian Persch - - * embed/ephy-cookie-manager.c: (ephy_cookie_manager_base_init): - * embed/ephy-cookie-manager.h: - * embed/ephy-permission-manager.c: - (ephy_permission_manager_base_init): - * embed/mozilla/EphySingle.cpp: - - Change signal names to be unique for interfaces on the same object. - - ChangeLog | 10 ++++++++++ - embed/ephy-cookie-manager.c | 32 ++++++++++++++++---------------- - embed/ephy-cookie-manager.h | 2 -- - embed/ephy-permission-manager.c | 31 ++++++++++++++++--------------- - embed/mozilla/EphySingle.cpp | 28 +++++++++++++++------------- - 5 files changed, 57 insertions(+), 46 deletions(-) - -commit 6d59637c20fcc7b24c87257a195230c4fbb284b5 -Author: Christian Persch -Date: Tue Nov 25 12:54:29 2003 +0000 - - Fix marshaller type. - - 2003-11-25 Christian Persch - - * embed/ephy-cookie-manager.c: (ephy_cookie_manager_base_init): - - Fix marshaller type. - - ChangeLog | 6 ++++++ - embed/ephy-cookie-manager.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 2a6bad3182b6ab84ff58521990e513aa4a2a87f9 -Author: Christian Persch -Date: Tue Nov 25 11:51:06 2003 +0000 - - Make it compile with mozilla < 1.5. - - 2003-11-25 Christian Persch - - * embed/mozilla/EphySingle.cpp: - - Make it compile with mozilla < 1.5. - - ChangeLog | 6 ++++++ - embed/mozilla/EphySingle.cpp | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit fca3f31775577d322af2fad9a687b91e177fb8ea -Author: Xan Lopez -Date: Mon Nov 24 22:46:16 2003 +0000 - - Use gnome_vfs_format_file_size_for_display to display size, put Unknown - - - * embed/downloader-view.c: (download_changed_cb): - - Use gnome_vfs_format_file_size_for_display to display size, put - Unknown when size/remaining time are unknown instead of - weird numbers. - - ChangeLog | 8 ++++++++ - embed/downloader-view.c | 22 +++++++++++++--------- - 2 files changed, 21 insertions(+), 9 deletions(-) - -commit 7200cd97ba96357d050ba7015e54a16d421b63d0 -Author: Christian Persch -Date: Mon Nov 24 22:43:10 2003 +0000 - - Implemented cookie and permissions observer used to actually send - - 2003-11-24 Christian Persch - - * embed/ephy-permission-manager.h: - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphySingle.cpp: - * embed/mozilla/EphySingle.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-single.cpp: - * src/ephy-encoding-dialog.c: (sync_embed_encoding), - (automatic_toggled_cb), (ephy_encoding_dialog_init): - - Implemented cookie and permissions observer used to actually - send notifications on EphyCookieManager and EphyPermissionManager - signals. - - ChangeLog | 15 ++ - embed/ephy-permission-manager.h | 2 +- - embed/mozilla/EphyBrowser.cpp | 1 - - embed/mozilla/EphySingle.cpp | 317 +++++++++++++++++++++++++++++++++ - embed/mozilla/EphySingle.h | 60 +++++++ - embed/mozilla/Makefile.am | 2 + - embed/mozilla/mozilla-embed-single.cpp | 97 +++------- - 7 files changed, 417 insertions(+), 77 deletions(-) - -commit c34c1e3df618940b2b139444bf2906d5e627d166 -Author: Hasbullah Bin Pit -Date: Mon Nov 24 21:46:41 2003 +0000 - - Updated Malay translation. - - 2002-11-24 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - - po/ChangeLog | 4 + - po/ms.po | 1512 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 682 insertions(+), 834 deletions(-) - -commit 9cb44b58e235c88bfd4a9243d1862a32b1097efe -Author: Christian Persch -Date: Mon Nov 24 19:33:31 2003 +0000 - - Re-sync with mozilla. - - 2003-11-24 Christian Persch - - * embed/mozilla/nsUnicharUtils.cpp: - * embed/mozilla/nsUnicharUtils.h: - - Re-sync with mozilla. - - ChangeLog | 7 +++++++ - embed/mozilla/nsUnicharUtils.cpp | 2 +- - embed/mozilla/nsUnicharUtils.h | 6 +++++- - 3 files changed, 13 insertions(+), 2 deletions(-) - -commit ba10b4ea6fbe8b701e1720584e10700050b291f1 -Author: Christian Persch -Date: Mon Nov 24 18:01:47 2003 +0000 - - Get rid of NS_INIT_ISUPPORTS() macros in constructors; it's not been - - 2003-11-24 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyEventListener.cpp: - * embed/mozilla/ExternalProtocolHandlers.cpp: - * embed/mozilla/ExternalProtocolHandlers.h: - * embed/mozilla/ExternalProtocolService.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - - Get rid of NS_INIT_ISUPPORTS() macros in constructors; - it's not been needed since mozilla 1.3. - - ChangeLog | 15 +++++++++++++++ - embed/mozilla/ContentHandler.cpp | 3 --- - embed/mozilla/EphyEventListener.cpp | 1 - - embed/mozilla/ExternalProtocolHandlers.cpp | 6 ------ - embed/mozilla/ExternalProtocolHandlers.h | 17 ++++++----------- - embed/mozilla/ExternalProtocolService.cpp | 3 --- - embed/mozilla/FilePicker.cpp | 2 -- - embed/mozilla/GlobalHistory.cpp | 2 -- - embed/mozilla/PrintingPromptService.cpp | 3 --- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - 10 files changed, 22 insertions(+), 32 deletions(-) - -commit 68870c943201f590683544421c28965e69a27272 -Author: Marco Pesenti Gritti -Date: Mon Nov 24 14:56:17 2003 +0000 - - No need to handle mailto registration separately. - - 2003-11-24 Marco Pesenti Gritti - - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - - No need to handle mailto registration separately. - - ChangeLog | 7 ++++ - embed/mozilla/MozRegisterComponents.cpp | 64 +++++---------------------------- - embed/mozilla/mozilla-embed-single.cpp | 2 -- - 3 files changed, 15 insertions(+), 58 deletions(-) - -commit 81beafafc8dbf0e5babdf6a204fea8314f8db0e3 -Author: Christian Persch -Date: Mon Nov 24 14:41:01 2003 +0000 - - Updating NEWS - - NEWS | 178 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 178 insertions(+) - -commit f18fa962db63e173fe08ed1e10872ec8f8e73421 -Author: Christian Persch -Date: Mon Nov 24 14:31:31 2003 +0000 - - Delete the obsolete mime-ask-action dialogue from glade file. - - 2003-11-24 Christian Persch - - * data/glade/epiphany.glade: - - Delete the obsolete mime-ask-action dialogue from glade file. - - ChangeLog | 6 ++ - data/glade/epiphany.glade | 243 ---------------------------------------------- - 2 files changed, 6 insertions(+), 243 deletions(-) - -commit 4772da2faa3646701ab93d8dd3aaee79a08d6483 -Author: Christian Persch -Date: Mon Nov 24 14:27:03 2003 +0000 - - Refactored pdm dialogue code. Use new boxed cookie/password info types. - - 2003-11-24 Christian Persch - - * src/pdm-dialog.c: (pdm_dialog_get_type), (pdm_dialog_class_init), - (action_treeview_selection_changed_cb), (pdm_cmd_delete_selection), - (pdm_key_pressed_cb), (pdm_dialog_remove_button_clicked_cb), - (setup_action), (cookies_treeview_selection_changed_cb), - (pdm_dialog_cookies_construct), (cookie_added_cb), - (cookie_changed_cb), (cookie_deleted_cb), (cookies_cleared_cb), - (pdm_dialog_fill_cookies_list), (pdm_dialog_cookies_destruct), - (pdm_dialog_cookie_add), (pdm_dialog_cookie_remove), - (pdm_dialog_passwords_construct), (password_added_cb), - (password_changed_cb), (password_deleted_cb), - (passwords_cleared_cb), (pdm_dialog_fill_passwords_list), - (pdm_dialog_passwords_destruct), (pdm_dialog_password_add), - (pdm_dialog_password_remove), (sync_notebook_tab), - (pdm_dialog_init), (pdm_dialog_finalize), - (show_cookies_properties), - (pdm_dialog_cookies_properties_button_clicked_cb), - (pdm_dialog_response_cb), (pdm_dialog_new): - - Refactored pdm dialogue code. Use new boxed cookie/password info - types. Hook up to the single signals to get notified on password/ - cookie updates [actual updating code to be written :)]. - - ChangeLog | 24 ++ - src/pdm-dialog.c | 832 +++++++++++++++++++++++++++++++------------------------ - 2 files changed, 494 insertions(+), 362 deletions(-) - -commit b32d40ac1887892fe19e1029f201e04070396493 -Author: Christian Persch -Date: Mon Nov 24 12:17:09 2003 +0000 - - Added $(mimepermission_DATA) to EXTRA_DIST. - - 2003-11-24 Christian Persch - - * data/Makefile.am: - - Added $(mimepermission_DATA) to EXTRA_DIST. - - ChangeLog | 6 ++++++ - data/Makefile.am | 1 + - 2 files changed, 7 insertions(+) - -commit 7a6a795704b458d642d51e651ed57ce0b4f24b58 -Author: Christian Persch -Date: Mon Nov 24 11:32:12 2003 +0000 - - Added egg tray icon headers to IGNORE_HFILES. - - 2003-11-24 Christian Persch - - * doc/reference/Makefile.am: - - Added egg tray icon headers to IGNORE_HFILES. - - ChangeLog | 6 ++++++ - doc/reference/Makefile.am | 3 +++ - 2 files changed, 9 insertions(+) - -commit 97e8ba60b451b79815389bcd22b821d4e64860e1 -Author: Christian Persch -Date: Mon Nov 24 11:04:40 2003 +0000 - - New. Added the libegg tray icon files lib/egg/eggstatusicon.c - - 2003-11-24 Christian Persch - - * POTFILES.skip: New. Added the libegg tray icon files - lib/egg/eggstatusicon.c - lib/egg/eggtrayicon.c - lib/egg/eggtraymanager.c - to it since they only the gobject property names are translatable - there; we don't need that for epiphany. - - po/ChangeLog | 9 +++++++++ - po/POTFILES.skip | 3 +++ - 2 files changed, 12 insertions(+) - -commit 390a7ef286a4739170e3575dc86e7707fd0f9ae7 -Author: Christian Persch -Date: Mon Nov 24 11:00:13 2003 +0000 - - Fix typo in EXTRADIST: s/check_mime/check-mime/ - - 2003-11-24 Christian Persch - - * data/Makefile.am: - - Fix typo in EXTRADIST: s/check_mime/check-mime/ - - ChangeLog | 6 ++++++ - data/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4ef01bac29b4f31350f64405f91842d11c3687c8 -Author: Christian Persch -Date: Mon Nov 24 10:43:39 2003 +0000 - - Remove ephy-types.h from Makefile.am, it's long gone. - - 2003-11-24 Christian Persch - - * lib/Makefile.am: - - Remove ephy-types.h from Makefile.am, it's long gone. - - ChangeLog | 6 ++++++ - lib/Makefile.am | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 3db4c2ef590d2d3a7fd79b998effadede1a3b2e6 -Author: Christian Persch -Date: Mon Nov 24 10:40:20 2003 +0000 - - s/[Insert name here]/Epiphany/ - - 2003-11-24 Christian Persch - - * doc/reference/epiphany-docs.sgml: - - s/[Insert name here]/Epiphany/ - - ChangeLog | 6 ++++++ - doc/reference/epiphany-docs.sgml | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit c6c9956547ee30df70760755f3fca19d3ae93a57 -Author: David Bordoley -Date: Mon Nov 24 10:33:10 2003 +0000 - - s/window/tab in the open link in new tab section. - - 2003-11-24 David Bordoley - - * help/C/epiphany.xml: - - s/window/tab in the open link in new tab section. - - ChangeLog | 6 ++++++ - help/C/epiphany.xml | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0a2372ac558ac666252be4af09c683a9f9fab555 -Author: David Bordoley -Date: Mon Nov 24 10:28:16 2003 +0000 - - A big chuck of doc neatening and organization plus some new stuff... - - 2003-11-24 David Bordoley - - * help/C/epiphany.xml: - - A big chuck of doc neatening and organization - plus some new stuff... - - patch from Piers Cornwell - aka spark, with a few quick fixes from me. - - ChangeLog | 10 ++ - help/C/epiphany.xml | 373 ++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 273 insertions(+), 110 deletions(-) - -commit 876084efe77d9aa633b3ec4aad7910ad27f68ffd -Author: Marco Pesenti Gritti -Date: Sun Nov 23 23:27:37 2003 +0000 - - Remove. - - 2003-11-24 Marco Pesenti Gritti - - * embed/mozilla/BaseProtocolContentHandler.cpp: - * embed/mozilla/BaseProtocolContentHandler.h: - * embed/mozilla/BaseProtocolHandler.cpp: - * embed/mozilla/BaseProtocolHandler.h: - - Remove. - - * embed/mozilla/ExternalProtocolHandlers.cpp: - * embed/mozilla/ExternalProtocolHandlers.h: - - Merge base implementations here. No need - of using 200 files for a work around of - mozilla problems ;) - - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - - Use ftp CID directly from mozilla headers - instead of doing a copy of it in ours. - - ChangeLog | 22 ++++ - embed/mozilla/BaseProtocolContentHandler.cpp | 104 ----------------- - embed/mozilla/BaseProtocolContentHandler.h | 43 ------- - embed/mozilla/BaseProtocolHandler.cpp | 106 ----------------- - embed/mozilla/BaseProtocolHandler.h | 39 ------- - embed/mozilla/ExternalProtocolHandlers.cpp | 167 +++++++++++++++++++++++++++ - embed/mozilla/ExternalProtocolHandlers.h | 52 +++++++-- - embed/mozilla/Makefile.am | 4 - - embed/mozilla/MozRegisterComponents.cpp | 1 + - 9 files changed, 232 insertions(+), 306 deletions(-) - -commit 32cffc77d9fb08dd41e76f00fb4be7a47483c0e2 -Author: Christian Persch -Date: Sun Nov 23 20:25:46 2003 +0000 - - When exporting to RDF, write all bookmarks, not just every second - - 2003-11-23 Christian Persch - - * src/bookmarks/ephy-bookmarks-export.c: - (ephy_bookmarks_export_rdf): - - When exporting to RDF, write all bookmarks, not just every - second bookmark. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-export.c | 2 -- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 1b77ab17d05695b4c398d96f9900813b5c8f7d67 -Author: Marco Pesenti Gritti -Date: Sun Nov 23 19:21:20 2003 +0000 - - Do not build our externla protocol service with mozilla 1.6. It has his - - 2003-11-23 Marco Pesenti Gritti - - * embed/mozilla/ExternalProtocolService.cpp: - * embed/mozilla/MozRegisterComponents.cpp: - - Do not build our externla protocol service - with mozilla 1.6. It has his own and api is changed. - - ChangeLog | 8 ++++++++ - embed/mozilla/ExternalProtocolService.cpp | 4 ++++ - embed/mozilla/MozRegisterComponents.cpp | 5 +++++ - 3 files changed, 17 insertions(+) - -commit 9c07939292bd7a2a4b74aadf72bbe11d2aafb9ac -Author: Xan Lopez -Date: Sun Nov 23 19:12:59 2003 +0000 - - Use EphyFileChooser API, convert download path to UTF8. - - - * src/prefs-dialog.c: (get_download_button_label), - (download_path_response_cb), - (prefs_download_path_button_clicked_cb): - - Use EphyFileChooser API, convert download path to UTF8. - - ChangeLog | 8 ++++++++ - src/prefs-dialog.c | 31 +++++++++++++++---------------- - 2 files changed, 23 insertions(+), 16 deletions(-) - -commit 6241e9eb954ea19d4c77b937118b745809e5d32f -Author: Christian Persch -Date: Sun Nov 23 12:12:24 2003 +0000 - - Make it compile with mozilla 1.4 and 1.4.1 again. - - 2003-11-23 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Make it compile with mozilla 1.4 and 1.4.1 again. - - ChangeLog | 6 ++++ - embed/mozilla/mozilla-embed-single.cpp | 50 ++++++++++++++++++++-------------- - 2 files changed, 35 insertions(+), 21 deletions(-) - -commit ebe99cfcc81d91f6ae68137cf03d5997f231c748 -Author: Marco Pesenti Gritti -Date: Sun Nov 23 11:58:23 2003 +0000 - - Very basic tray icon for downloader. - - 2003-11-23 Marco Pesenti Gritti - - * embed/Makefile.am: - * embed/downloader-view.c: (status_icon_activated), - (show_status_icon), (downloader_view_init), - (downloader_view_finalize), (download_dialog_delete_cb): - * lib/egg/Makefile.am: - * lib/egg/update-from-egg.sh: - - Very basic tray icon for downloader. - - ChangeLog | 11 + - embed/Makefile.am | 1 + - embed/downloader-view.c | 34 +- - lib/egg/Makefile.am | 11 +- - lib/egg/eggstatusicon.c | 796 +++++++++++++++++++++++++++++++++++++++++++++ - lib/egg/eggstatusicon.h | 101 ++++++ - lib/egg/eggtrayicon.c | 480 +++++++++++++++++++++++++++ - lib/egg/eggtrayicon.h | 77 +++++ - lib/egg/eggtraymanager.c | 725 +++++++++++++++++++++++++++++++++++++++++ - lib/egg/eggtraymanager.h | 93 ++++++ - lib/egg/update-from-egg.sh | 11 +- - 11 files changed, 2329 insertions(+), 11 deletions(-) - -commit b6a28cf3f4a3a67d2653085dee68ad513c3d8e0d -Author: Marco Pesenti Gritti -Date: Sat Nov 22 14:40:58 2003 +0000 - - *** empty log message *** - - data/art/epiphany-bookmark-page.png | Bin 486 -> 0 bytes - 1 file changed, 0 insertions(+), 0 deletions(-) - -commit 06d1cd34d39fe9943ee3d3922412b3dd3794da86 -Author: Marco Pesenti Gritti -Date: Sat Nov 22 14:40:38 2003 +0000 - - Use icon theme icon for add bookmark - - 2003-11-22 Marco Pesenti Gritti - - * data/art/Makefile.am: - * data/art/epiphany-bookmark-page.png: - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * lib/ephy-stock-icons.h: - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_construct): - * src/ephy-history-window.c: - * src/ephy-window.c: - - Use icon theme icon for add bookmark - - ChangeLog | 12 ++++++++++++ - data/art/Makefile.am | 1 - - lib/ephy-stock-icons.c | 4 ++-- - lib/ephy-stock-icons.h | 2 +- - src/bookmarks/ephy-new-bookmark.c | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-window.c | 6 +++--- - 7 files changed, 20 insertions(+), 9 deletions(-) - -commit c835d9f34b984d00708ca7a61bddeb4ce98ca9e7 -Author: Marco Pesenti Gritti -Date: Sat Nov 22 14:28:15 2003 +0000 - - Add a tip on how to clean docs. - - 2003-11-22 Marco Pesenti Gritti - - * doc/reference-howto.txt: - - Add a tip on how to clean docs. - - * doc/reference/Makefile.am: - * doc/reference/epiphany-docs.sgml: - * doc/reference/epiphany.types: - * doc/reference/tmpl/ephy-cookie-manager.sgml: - * doc/reference/tmpl/ephy-embed-factory.sgml: - * doc/reference/tmpl/ephy-embed-single.sgml: - * doc/reference/tmpl/ephy-password-manager.sgml: - * doc/reference/tmpl/ephy-permission-manager.sgml: - - Add some files chpe documented to the build. - - * embed/ephy-embed-factory.c: - - Document - - ChangeLog | 21 +++++ - doc/reference-howto.txt | 4 +- - doc/reference/Makefile.am | 1 - - doc/reference/epiphany-docs.sgml | 5 + - doc/reference/epiphany.types | 8 ++ - doc/reference/tmpl/ephy-cookie-manager.sgml | 107 +++++++++++++++++++++ - doc/reference/tmpl/ephy-embed-factory.sgml | 27 ++++++ - doc/reference/tmpl/ephy-embed-single.sgml | 54 +++++++++++ - doc/reference/tmpl/ephy-password-manager.sgml | 88 +++++++++++++++++ - doc/reference/tmpl/ephy-permission-manager.sgml | 120 ++++++++++++++++++++++++ - embed/ephy-embed-factory.c | 14 +++ - 11 files changed, 447 insertions(+), 2 deletions(-) - -commit daa7ef352dea475a96aa1c7534b8a874521312fd -Author: Marco Pesenti Gritti -Date: Sat Nov 22 13:52:34 2003 +0000 - - Implement arbitrary url lockdown pref - - 2003-11-22 Marco Pesenti Gritti - - * src/ephy-location-action.c: (sync_editable), (connect_proxy), - (ephy_location_action_set_property), - (ephy_location_action_get_property), - (ephy_location_action_class_init), (ephy_location_action_init): - * src/toolbar.c: (update_location_editable), - (arbitrary_url_notifier), (toolbar_setup_actions), - (toolbar_set_window), (toolbar_finalize): - - Implement arbitrary url lockdown pref - - ChangeLog | 12 +++++++++++ - src/ephy-location-action.c | 34 +++++++++++++++++++++++++++++-- - src/toolbar.c | 50 ++++++++++++++++++++++++++++++++++++++++++++-- - 3 files changed, 92 insertions(+), 4 deletions(-) - -commit a0e702ef16f5e52c9c366713934c07aa3dc2ce7a -Author: Marco Pesenti Gritti -Date: Sat Nov 22 11:32:34 2003 +0000 - - Add a factory to create embed objects and use it. Deal with dependency of - - 2003-11-22 Marco Pesenti Gritti - - * doc/reference/Makefile.am: - * embed/Makefile.am: - * embed/ephy-embed-persist.c: (ephy_embed_persist_save): - * embed/ephy-embed-persist.h: - * embed/ephy-embed-popup-control.c: (save_url), - (embed_popup_set_image_as_background_cmd): - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_embed_single): - * embed/ephy-embed.c: - * embed/ephy-embed.h: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download): - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed-single.h: - * embed/mozilla/mozilla-embed.cpp: - * src/Makefile.am: - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init): - * src/ephy-tab.c: (ephy_tab_init): - * src/popup-commands.c: (save_property_url), - (popup_cmd_set_image_as_background): - * src/window-commands.c: (window_cmd_file_save_as), - (save_temp_source): - - Add a factory to create embed objects and use it. - Deal with dependency of mozilla-embed and mozilla-embed-persist - on mozilla-embed-single internally. - - ChangeLog | 28 ++++++++++++ - doc/reference/Makefile.am | 3 +- - embed/Makefile.am | 6 ++- - embed/ephy-embed-factory.c | 80 +++++++++++++++++++++++++++++++++ - embed/ephy-embed-factory.h | 32 +++++++++++++ - embed/ephy-embed-persist.c | 8 ---- - embed/ephy-embed-persist.h | 2 - - embed/ephy-embed-popup-control.c | 7 ++- - embed/ephy-embed-shell.c | 4 +- - embed/ephy-embed.c | 8 ---- - embed/ephy-embed.h | 2 - - embed/ephy-favicon-cache.c | 4 +- - embed/mozilla/mozilla-embed-persist.cpp | 14 +++++- - embed/mozilla/mozilla-embed-single.cpp | 6 --- - embed/mozilla/mozilla-embed-single.h | 2 - - embed/mozilla/mozilla-embed.cpp | 17 +++++-- - src/Makefile.am | 2 + - src/ephy-nautilus-view.c | 9 ++-- - src/ephy-tab.c | 8 ++-- - src/popup-commands.c | 9 +++- - src/window-commands.c | 10 ++++- - 21 files changed, 208 insertions(+), 53 deletions(-) - -commit d961598c3761da5a673acef2d2f7abd33586f1c1 -Author: Christian Persch -Date: Sat Nov 22 11:30:14 2003 +0000 - - Fix cookie deletion; use do_GetService instead of do_CreateInstance. - - 2003-11-22 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Fix cookie deletion; use do_GetService instead of - do_CreateInstance. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 22 +++++++++++----------- - 2 files changed, 18 insertions(+), 11 deletions(-) - -commit f3b38d02402c995dcf61a11ff20e6d94c6c3c410 -Author: Christian Persch -Date: Sat Nov 22 08:08:49 2003 +0000 - - Added API documentation. - - 2003-11-22 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_class_init), - (ephy_embed_single_load_proxy_autoconf): - - Added API documentation. - - ChangeLog | 7 +++++++ - embed/ephy-embed-single.c | 47 ++++++++++++++++++++++++++++++++++++++++++++--- - 2 files changed, 51 insertions(+), 3 deletions(-) - -commit c20dd04d8f6d309ea265fca0dbd19b16ddb28159 -Author: Christian Persch -Date: Fri Nov 21 23:09:33 2003 +0000 - - Removing .cvsignore in obsolete /lib/toolbar/ directory - - lib/toolbar/.cvsignore | 6 ------ - 1 file changed, 6 deletions(-) - -commit 4d01c92b9ba75437d425e2df46fbe9db7c131d3e -Author: Christian Persch -Date: Fri Nov 21 23:04:12 2003 +0000 - - Forgot to commit Makefile.am - - src/Makefile.am | 1 - - 1 file changed, 1 deletion(-) - -commit fd4f7ff174621461810cf76597a73250ab2cf6fd -Author: Christian Persch -Date: Fri Nov 21 23:03:32 2003 +0000 - - New interfaces: EphyCookieManager, EphyPermissionManager, - - 2003-11-21 Christian Persch - - * embed/Makefile.am: - * embed/ephy-cookie-manager.c: (ephy_cookie_get_type), - (ephy_cookie_new), (ephy_cookie_copy), (ephy_cookie_free), - (ephy_cookie_manager_get_type), (ephy_cookie_manager_base_init), - (ephy_cookie_manager_list_cookies), - (ephy_cookie_manager_remove_cookie), (ephy_cookie_manager_clear): - * embed/ephy-cookie-manager.h: - * embed/ephy-embed-single.c: (ephy_embed_single_get_type), - (ephy_embed_single_class_init), (ephy_embed_single_clear_cache), - (ephy_embed_single_set_offline_mode), - (ephy_embed_single_load_proxy_autoconf), - (ephy_embed_single_get_font_list): - * embed/ephy-embed-single.h: - * embed/ephy-password-manager.c: (ephy_password_info_get_type), - (ephy_password_info_new), (ephy_password_info_copy), - (ephy_password_info_free), (ephy_password_manager_get_type), - (ephy_password_manager_add), (ephy_password_manager_remove), - (ephy_password_manager_list): - * embed/ephy-password-manager.h: - * embed/ephy-permission-manager.c: (ephy_permission_info_get_type), - (ephy_permission_info_new), (ephy_permission_info_copy), - (ephy_permission_info_free), (ephy_permission_manager_get_type), - (ephy_permission_manager_base_init), (ephy_permission_manager_add), - (ephy_permission_manager_remove), (ephy_permission_manager_clear), - (ephy_permission_manager_test), (ephy_permission_manager_list): - * embed/ephy-permission-manager.h: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed-single.h: - * embed/mozilla/mozilla-notifiers.cpp: - * src/Makefile.am: - * src/pdm-dialog.c: (pdm_dialog_get_type), (pdm_dialog_cookie_add), - (pdm_dialog_password_add), (pdm_dialog_cookie_remove), - (pdm_dialog_password_remove), (pdm_dialog_cookies_free), - (pdm_dialog_passwords_free), (pdm_dialog_init), (pdm_dialog_new), - (show_cookies_properties), - (pdm_dialog_cookies_properties_button_clicked_cb): - * src/pdm-dialog.h: - - New interfaces: EphyCookieManager, EphyPermissionManager, - EphyPasswordManager. - Port all callers to new interfaces. - Change linking order to make it link. - - Only set autoconf proxy url if it's non-empty. - - ChangeLog | 47 +++ - embed/Makefile.am | 10 +- - embed/ephy-cookie-manager.c | 262 +++++++++++++++ - embed/ephy-cookie-manager.h | 122 +++++++ - embed/ephy-embed-single.c | 168 ++-------- - embed/ephy-embed-single.h | 90 +----- - embed/ephy-password-manager.c | 175 ++++++++++ - embed/ephy-password-manager.h | 87 +++++ - embed/ephy-permission-manager.c | 295 +++++++++++++++++ - embed/ephy-permission-manager.h | 121 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 561 ++++++++++++++++++++++++--------- - embed/mozilla/mozilla-embed-single.h | 16 +- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - src/pdm-dialog.c | 106 ++++--- - src/pdm-dialog.h | 3 + - 15 files changed, 1644 insertions(+), 421 deletions(-) - -commit f332569e59ed36ce9f00dc0e9557e8889d0f2651 -Author: Vincent van Adrighem -Date: Fri Nov 21 15:42:26 2003 +0000 - - Dutch translation updated by Vincent van Adrighem. - - 2003-11-21 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - - po/ChangeLog | 4 + - po/nl.po | 418 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 239 insertions(+), 183 deletions(-) - -commit b5c4d51fa5dcc4a1215f223fd44aaf4b34493008 -Author: Marco Pesenti Gritti -Date: Fri Nov 21 11:50:43 2003 +0000 - - remove unused icons - - data/art/Makefile.am | 4 ---- - data/art/epiphany-fullscreen.png | Bin 674 -> 0 bytes - data/art/epiphany-new-tab.png | Bin 938 -> 0 bytes - data/art/epiphany-send-link.png | Bin 363 -> 0 bytes - data/art/epiphany-viewsource.png | Bin 147 -> 0 bytes - 5 files changed, 4 deletions(-) - -commit c371819f2c4fef7c069b69c3f4037a3e5276450e -Author: Marco Pesenti Gritti -Date: Fri Nov 21 11:00:24 2003 +0000 - - Pass a source based on filename instead of pixbuf for our own icon set, so - - 2003-11-21 Marco Pesenti Gritti - - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * lib/ephy-stock-icons.h: - - Pass a source based on filename instead of pixbuf - for our own icon set, so that they are created only - when necessary. - Add code to insert icon theme icons in our icon set - and use icon theme icons when possible. - - * src/ephy-window.c: - - Update icons id. - - ChangeLog | 15 +++++++++++++++ - lib/ephy-stock-icons.c | 35 ++++++++++++++++++++++++++--------- - lib/ephy-stock-icons.h | 9 +++++---- - src/ephy-window.c | 8 ++++---- - 4 files changed, 50 insertions(+), 17 deletions(-) - -commit f3b45df76a7b9147372d6815d2d3edca73270fb3 -Author: Danilo Šegan -Date: Fri Nov 21 04:50:18 2003 +0000 - - Updated Serbian translation. - - 2003-11-21 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 47 +++++++++++++++++++++++++---------------------- - po/sr@Latn.po | 47 +++++++++++++++++++++++++---------------------- - 3 files changed, 54 insertions(+), 44 deletions(-) - -commit e6d65b6758e456de48a9c7a8c13da3809727bcc8 -Author: Marco Pesenti Gritti -Date: Thu Nov 20 22:07:28 2003 +0000 - - Hide Open downloads pref. Since both behaviors are available maybe it's - - 2003-11-20 Marco Pesenti Gritti - - * data/glade/prefs-dialog.glade: - - Hide Open downloads pref. Since both behaviors are available - maybe it's not necessary at all. Also I feel it confusing to - have only one of the cases respecting it. I guess better - to wait feedback on releases before making a call on this. - - * src/ephy-window.c: - - No more need of ... on dowload context menu - - ChangeLog | 13 +++++++++++++ - data/glade/prefs-dialog.glade | 2 +- - src/ephy-window.c | 2 +- - 3 files changed, 15 insertions(+), 2 deletions(-) - -commit e464015f47f6d575f5db02d851d7ea4b88278e34 -Author: Marco Pesenti Gritti -Date: Thu Nov 20 19:12:19 2003 +0000 - - Implement an handle_content signal to allow to write plugins to support - - 2003-11-20 Marco Pesenti Gritti - - * embed/ephy-embed-single.c: (ephy_embed_single_class_init): - * embed/ephy-embed-single.h: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - * lib/ephy-marshal.list: - - Implement an handle_content signal to allow to write - plugins to support external download managers. - - ChangeLog | 12 ++++++++++++ - embed/ephy-embed-single.c | 11 +++++++++++ - embed/ephy-embed-single.h | 8 ++++++++ - embed/mozilla/ContentHandler.cpp | 21 +++++++++++++++------ - embed/mozilla/EphyHeaderSniffer.cpp | 20 ++++++++++++++++++++ - embed/mozilla/EphyHeaderSniffer.h | 1 + - lib/ephy-marshal.list | 1 + - 7 files changed, 68 insertions(+), 6 deletions(-) - -commit 70c88252fb1eb732104f1523a5515bf556a3438c -Author: Marco Pesenti Gritti -Date: Thu Nov 20 18:46:38 2003 +0000 - - Not necessary to store signal id in an array for interfaces. - - 2003-11-20 Marco Pesenti Gritti - - * embed/ephy-command-manager.c: (ephy_command_manager_base_init): - * embed/ephy-embed-persist.c: (ephy_embed_persist_class_init): - * embed/ephy-embed.c: (ephy_embed_base_init): - - Not necessary to store signal id in an array for interfaces. - - ChangeLog | 8 ++++++++ - embed/ephy-command-manager.c | 11 +---------- - embed/ephy-embed-persist.c | 25 ++++++++----------------- - embed/ephy-embed.c | 36 ++---------------------------------- - 4 files changed, 19 insertions(+), 61 deletions(-) - -commit 60b00e6452f9beb0886661d12140e613c2770b0a -Author: Marco Pesenti Gritti -Date: Thu Nov 20 18:05:15 2003 +0000 - - hrm misplaced free in last commit - - 2003-11-20 Marco Pesenti Gritti - - * src/ephy-session.c: (ephy_session_save): - - hrm misplaced free in last commit - - ChangeLog | 6 ++++++ - src/ephy-session.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 973e5dccd2e75bb58c5e532f137b6c7f1391eb5e -Author: Marco Pesenti Gritti -Date: Thu Nov 20 17:16:24 2003 +0000 - - Make xml saving low disk safe. - - 2003-11-20 Marco Pesenti Gritti - - * src/ephy-session.c: (ephy_session_save): - - Make xml saving low disk safe. - - ChangeLog | 6 ++++++ - src/ephy-session.c | 14 ++++++++++++-- - 2 files changed, 18 insertions(+), 2 deletions(-) - -commit a9520520d997a08879efbf1f7169298c30b53c49 -Author: Marco Pesenti Gritti -Date: Thu Nov 20 17:07:48 2003 +0000 - - Fix unrefing of context menu event - - 2003-11-20 Marco Pesenti Gritti - - * src/ephy-window.c: (show_embed_popup): - - Fix unrefing of context menu event - - ChangeLog | 6 ++++++ - src/ephy-window.c | 19 +++---------------- - 2 files changed, 9 insertions(+), 16 deletions(-) - -commit 227f730bc5b2376c885da7c5bdd4698adc5228d2 -Author: Marco Pesenti Gritti -Date: Thu Nov 20 16:50:40 2003 +0000 - - If it's not possible to go up fails do not assert, just fail silently. - - 2003-11-20 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed.cpp: - - If it's not possible to go up fails do not assert, just fail - silently. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed.cpp | 9 +++++---- - 2 files changed, 12 insertions(+), 4 deletions(-) - -commit c7b845e657b1da27c44d37d93e51048abc2b36b4 -Author: Marco Pesenti Gritti -Date: Wed Nov 19 20:14:05 2003 +0000 - - *** empty log message *** - - doc/.cvsignore | 2 ++ - doc/reference-howto.txt | 29 +++++++++++++++++++++++++++++ - doc/reference/tmpl/ephy-session.sgml | 2 -- - doc/reference/tmpl/ephy-shell.sgml | 2 -- - 4 files changed, 31 insertions(+), 4 deletions(-) - -commit 6fc311e86a048a94a088e3b200cde4f1a83f84de -Author: Marco Pesenti Gritti -Date: Wed Nov 19 20:12:29 2003 +0000 - - Do not document config.h ;) Reenable docs build. - - 2003-11-19 Marco Pesenti Gritti - - * Makefile.am: - * doc/reference/Makefile.am: - * doc/reference/epiphany-docs.sgml: - * doc/reference/tmpl/config.sgml: - - Do not document config.h ;) - Reenable docs build. - - ChangeLog | 10 ++ - Makefile.am | 2 +- - doc/reference/Makefile.am | 1 + - doc/reference/epiphany-docs.sgml | 1 - - doc/reference/tmpl/config.sgml | 228 --------------------------------------- - 5 files changed, 12 insertions(+), 230 deletions(-) - -commit 5e14d96d90e1ebd925d4ed9fc00be1864030036d -Author: Christian Persch -Date: Wed Nov 19 19:49:14 2003 +0000 - - Reverting accidentally commited local workaround - - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f52461471f1ef86adda1f9a311483f57e4d51dbd -Author: Marco Pesenti Gritti -Date: Wed Nov 19 19:19:59 2003 +0000 - - Complete docs base implementation. Should work more or less. - - 2003-11-19 Marco Pesenti Gritti - - * doc/reference/.cvsignore: - * doc/reference/Makefile.am: - * doc/reference/epiphany-docs.sgml: - * doc/reference/epiphany.types: - * doc/reference/tmpl/config.sgml: - * doc/reference/tmpl/ephy-session.sgml: - * doc/reference/tmpl/ephy-shell.sgml: - - Complete docs base implementation. Should work - more or less. - - * embed/Makefile.am: - * lib/Makefile.am: - * src/Makefile.am: - - Cleanup a bit libs build and use a static lib - also for the src/ code so that we can use it - for documents. - - * src/ephy-nautilus-view.c: - - Bad chpe forgot to modify func signature. - - 2003-11-19 Christian Persch - - * embed/downloader-view.h: - * embed/ephy-download.h: - * embed/ephy-embed-dialog.h: - * embed/ephy-embed-event.h: - * embed/ephy-embed-persist.h: - * embed/ephy-embed-popup-control.h: - * embed/ephy-embed-shell.h: - * embed/ephy-embed-single.h: - * embed/ephy-encodings.h: - * embed/ephy-favicon-cache.h: - * embed/ephy-history.h: - * embed/find-dialog.h: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/mozilla-download.h: - * embed/mozilla/mozilla-embed-persist.h: - * embed/mozilla/mozilla-embed-single.h: - * embed/print-dialog.h: - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-toolbar-editor.h: - * lib/egg/egg-toolbars-model.h: - * lib/ephy-debug.h: - * lib/ephy-dialog.h: - * lib/ephy-dnd.h: - * lib/ephy-file-chooser.h: - * lib/ephy-node-db.h: - * lib/ephy-node-filter.h: - * lib/ephy-node.h: - * lib/ephy-prefs.h: - * lib/ephy-state.h: - * lib/ephy-string.h: - * lib/ephy-zoom.h: - * lib/widgets/ephy-arrow-toolbutton.h: - * lib/widgets/ephy-cell-renderer-progress.h: - * lib/widgets/ephy-ellipsizing-label.h: - * lib/widgets/ephy-location-entry.h: - * lib/widgets/ephy-node-view.h: - * lib/widgets/ephy-search-entry.h: - * lib/widgets/ephy-spinner.h: - * lib/widgets/ephy-tree-model-node.h: - * lib/widgets/ephy-tree-model-sort.h: - * lib/widgets/ephy-zoom-action.h: - * lib/widgets/ephy-zoom-control.h: - * src/bookmarks/ephy-bookmark-action.h: - * src/bookmarks/ephy-bookmark-properties.h: - * src/bookmarks/ephy-bookmarks-editor.h: - * src/bookmarks/ephy-bookmarks-menu.h: - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-new-bookmark.h: - * src/bookmarks/ephy-topic-action.h: - * src/bookmarks/ephy-topics-selector.h: - * src/ephy-automation.h: - * src/ephy-completion-model.h: - * src/ephy-encoding-dialog.h: - - ChangeLog | 81 +++++++++++++++++++++++++++++++ - embed/downloader-view.h | 2 + - embed/ephy-download.h | 6 ++- - embed/ephy-embed-dialog.h | 4 ++ - embed/ephy-embed-event.h | 2 + - embed/ephy-embed-persist.h | 2 + - embed/ephy-embed-popup-control.h | 6 ++- - embed/ephy-embed-shell.h | 8 ++- - embed/ephy-embed-single.h | 21 +------- - embed/ephy-encodings.h | 2 + - embed/ephy-favicon-cache.h | 3 ++ - embed/ephy-history.h | 10 ++-- - embed/find-dialog.h | 10 ++-- - embed/mozilla/EphyBrowser.h | 4 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 +- - embed/mozilla/mozilla-download.h | 10 ++-- - embed/mozilla/mozilla-embed-persist.h | 18 ++++--- - embed/mozilla/mozilla-embed-single.h | 6 ++- - embed/print-dialog.h | 15 ++++-- - lib/egg/egg-editable-toolbar.h | 2 + - lib/egg/egg-toolbar-editor.h | 2 + - lib/egg/egg-toolbars-model.h | 2 + - lib/ephy-debug.h | 2 + - lib/ephy-dialog.h | 10 ++-- - lib/ephy-dnd.h | 4 +- - lib/ephy-file-chooser.h | 2 + - lib/ephy-node-db.h | 1 + - lib/ephy-node-filter.h | 3 +- - lib/ephy-node.h | 1 - - lib/ephy-prefs.h | 4 +- - lib/ephy-state.h | 5 +- - lib/ephy-string.h | 2 + - lib/ephy-zoom.h | 2 + - lib/widgets/ephy-arrow-toolbutton.h | 2 + - lib/widgets/ephy-cell-renderer-progress.h | 2 + - lib/widgets/ephy-ellipsizing-label.h | 1 + - lib/widgets/ephy-location-entry.h | 1 + - lib/widgets/ephy-node-view.h | 1 + - lib/widgets/ephy-search-entry.h | 1 + - lib/widgets/ephy-spinner.h | 9 +++- - lib/widgets/ephy-tree-model-node.h | 1 + - lib/widgets/ephy-tree-model-sort.h | 1 + - lib/widgets/ephy-zoom-action.h | 1 + - lib/widgets/ephy-zoom-control.h | 1 + - src/bookmarks/ephy-bookmark-action.h | 2 + - src/bookmarks/ephy-bookmark-properties.h | 1 + - src/bookmarks/ephy-bookmarks-editor.h | 1 + - src/bookmarks/ephy-bookmarks-menu.h | 1 + - src/bookmarks/ephy-bookmarks.h | 2 + - src/bookmarks/ephy-new-bookmark.h | 1 + - src/bookmarks/ephy-topic-action.h | 2 + - src/bookmarks/ephy-topics-selector.h | 1 + - src/ephy-automation.h | 5 +- - src/ephy-completion-model.h | 2 + - src/ephy-encoding-dialog.h | 2 + - src/ephy-encoding-menu.h | 1 + - src/ephy-extensions-manager.h | 1 + - src/ephy-favicon-action.h | 4 ++ - src/ephy-favorites-menu.h | 3 ++ - src/ephy-go-action.h | 2 + - src/ephy-history-window.h | 2 + - src/ephy-location-action.h | 1 + - src/ephy-nautilus-view.h | 5 +- - src/ephy-navigation-action.h | 6 ++- - src/ephy-notebook.h | 4 ++ - src/ephy-session.h | 1 + - src/ephy-shell.h | 2 + - src/ephy-tab.h | 13 +++-- - src/ephy-tabs-menu.h | 10 ++-- - src/ephy-toolbars-model.h | 8 +-- - src/ephy-window.h | 2 + - src/language-editor.h | 2 + - src/pdm-dialog.h | 2 + - src/ppview-toolbar.h | 2 + - src/prefs-dialog.h | 2 + - src/statusbar.h | 2 + - src/toolbar.h | 2 + - 77 files changed, 298 insertions(+), 74 deletions(-) - -commit b59fc10752cd7d6e7c0affb262d441081dd9b587 -Author: Marco Pesenti Gritti -Date: Wed Nov 19 19:12:14 2003 +0000 - - Complete docs base implementation. Should work more or less. - - 2003-11-19 Marco Pesenti Gritti - - * doc/reference/.cvsignore: - * doc/reference/Makefile.am: - * doc/reference/epiphany-docs.sgml: - * doc/reference/epiphany.types: - * doc/reference/tmpl/config.sgml: - * doc/reference/tmpl/ephy-session.sgml: - * doc/reference/tmpl/ephy-shell.sgml: - - Complete docs base implementation. Should work - more or less. - - * embed/Makefile.am: - * lib/Makefile.am: - * src/Makefile.am: - - Cleanup a bit libs build and use a static lib - also for the src/ code so that we can use it - for documents. - - * src/ephy-nautilus-view.c: - - Bad chpe forgot to modify func signature. - - ChangeLog | 25 +++ - doc/reference/.cvsignore | 15 ++ - doc/reference/Makefile.am | 276 +++++++++++++++++++++++++++++++- - doc/reference/epiphany-docs.sgml | 40 +---- - doc/reference/epiphany.types | 24 +++ - doc/reference/tmpl/config.sgml | 228 ++++++++++++++++++++++++++ - doc/reference/tmpl/ephy-session.sgml | 91 +++++++++++ - doc/reference/tmpl/ephy-shell.sgml | 192 ++++++++++++++++++++++ - doc/reference/tmpl/epiphany-unused.sgml | 0 - embed/Makefile.am | 3 - - lib/Makefile.am | 8 +- - src/Makefile.am | 15 +- - src/ephy-nautilus-view.c | 1 - - 13 files changed, 862 insertions(+), 56 deletions(-) - -commit 6e2a790eeb65a5aba6dfa000f9161f99bf27262c -Author: Gustavo Noronha Silva -Date: Wed Nov 19 01:04:49 2003 +0000 - - updated translation, thanks to cascardo for looking up some stuff on a - - 2003-11-18 Gustavo Noronha Silva - - * pt_BR.po: updated translation, thanks to cascardo - for looking up some stuff on a real paper dictionary. - - po/ChangeLog | 5 + - po/pt_BR.po | 2370 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1353 insertions(+), 1022 deletions(-) - -commit 63bfc1db74bc9dd584fa2b5b7adffe1dee686484 -Author: Christian Persch -Date: Wed Nov 19 00:00:56 2003 +0000 - - Forgot to remove signal IDs from enum when I removed the signals. - - 2003-11-19 Christian Persch - - * embed/ephy-embed.c: - - Forgot to remove signal IDs from enum when I removed the signals. - - ChangeLog | 6 ++++++ - embed/ephy-embed.c | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 971fbdf5204f5e5588b437a1a4cc8386204037bd -Author: Christian Persch -Date: Tue Nov 18 23:47:16 2003 +0000 - - Make encodings dialogue transient. - - 2003-11-19 Christian Persch - - * lib/ephy-dialog.c: (ephy_dialog_set_parent): - * src/ephy-encoding-dialog.c: (sync_parent_window_cb), - (ephy_encoding_dialog_init), (ephy_encoding_dialog_class_init), - (ephy_encoding_dialog_new): - - Make encodings dialogue transient. - - ChangeLog | 9 +++++++ - lib/ephy-dialog.c | 2 ++ - src/ephy-encoding-dialog.c | 65 ++++++++++------------------------------------ - 3 files changed, 25 insertions(+), 51 deletions(-) - -commit 15cbf0f2d0ad71ed66edb1ca3d44d3beb96d49a0 -Author: Christian Persch -Date: Tue Nov 18 23:41:01 2003 +0000 - - Re-use some more signals from GtkMozEmbed; fix getter_Copies usage in - - 2003-11-19 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_base_init), - (ephy_embed_get_location), (ephy_embed_get_link_message), - (ephy_embed_get_js_status): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init), - (gnv_embed_link_message_cb): - * src/ephy-nautilus-view.h: - * src/ephy-tab.c: (ephy_tab_set_link_message), - (ephy_tab_link_message_cb), (ephy_tab_init): - - Re-use some more signals from GtkMozEmbed; fix getter_Copies usage in - mozilla-embed.cpp. Fixes bug #127335. - - ChangeLog | 16 +++++++++++++++ - embed/ephy-embed.c | 34 ++++++++++++++------------------ - embed/ephy-embed.h | 10 ++++++---- - embed/mozilla/mozilla-embed.cpp | 43 +++++++++++++---------------------------- - src/ephy-nautilus-view.c | 11 ++++++++--- - src/ephy-tab.c | 11 +++++------ - 6 files changed, 62 insertions(+), 63 deletions(-) - -commit 87dbe3ba52b623a2fc97caef8b5d26527426057b -Author: Marco Pesenti Gritti -Date: Tue Nov 18 22:44:21 2003 +0000 - - *** empty log message *** - - Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit a491cf407b87e7ca4fdd40ab83a404deff5586bc -Author: Marco Pesenti Gritti -Date: Tue Nov 18 19:08:58 2003 +0000 - - *** empty log message *** - - doc/reference/Makefile.am | 9 ++++----- - doc/reference/epiphany-overrides.txt | 0 - 2 files changed, 4 insertions(+), 5 deletions(-) - -commit 50f45436240456c848921e426411070e04ccbd39 -Author: Marco Pesenti Gritti -Date: Tue Nov 18 17:25:52 2003 +0000 - - *** empty log message *** - - Makefile.am | 2 +- - configure.in | 15 +++++++++++++++ - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit a8e72a5659769e3f1295d6d35092e8be579db7bb -Author: Marco Pesenti Gritti -Date: Tue Nov 18 17:25:26 2003 +0000 - - Begin of gtk-doc support - - 2003-11-18 Marco Pesenti Gritti - - * Makefile.am: - * configure.in: - * doc/Makefile.am: - * doc/reference/Makefile.am: - * doc/reference/epiphany-docs.sgml: - * doc/reference/epiphany.types: - - Begin of gtk-doc support - - ChangeLog | 11 +++++++ - doc/Makefile.am | 1 + - doc/reference/Makefile.am | 63 ++++++++++++++++++++++++++++++++++++++++ - doc/reference/epiphany-docs.sgml | 49 +++++++++++++++++++++++++++++++ - doc/reference/epiphany.types | 19 ++++++++++++ - 5 files changed, 143 insertions(+) - -commit 0ecd2e8f08325aea9fbe1f3869ae76d460d4c5b8 -Author: Ole Laursen -Date: Mon Nov 17 22:22:10 2003 +0000 - - Updated Danish translation. - - 2003-11-17 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 2568 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1530 insertions(+), 1042 deletions(-) - -commit 6b6d91a101b12d2637e3c0097d546462eb1605e7 -Author: Danilo Šegan -Date: Mon Nov 17 21:55:16 2003 +0000 - - Updated Serbian translation. - - 2003-11-17 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 378 +++++++++++++++++++++++++++++++++------------------------- - po/sr@Latn.po | 378 +++++++++++++++++++++++++++++++++------------------------- - 3 files changed, 432 insertions(+), 328 deletions(-) - -commit 72b16e11c8c6dff98567ffd7b3dd508f0d14580b -Author: Marco Pesenti Gritti -Date: Mon Nov 17 18:51:42 2003 +0000 - - Api fix - - 2003-11-17 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_import): - - Api fix - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit bc46cf611fdf230b8acc90890aa3eda4986e944b -Author: Christian Persch -Date: Mon Nov 17 18:46:12 2003 +0000 - - Added embed/mozilla/GtkNSSClientAuthDialogs.cpp - - 2003-11-17 Christian Persch - - * POTFILES.in: Added embed/mozilla/GtkNSSClientAuthDialogs.cpp - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit 5952680d6a09d98c301711e8188881f3a65a2e12 -Author: Christian Persch -Date: Mon Nov 17 18:41:29 2003 +0000 - - Ported the Crispin's GtkNSSClientAuthDialogs from galeon. Changes: - use - - 2003-11-17 Christian Persch - - * embed/mozilla/GtkNSSClientAuthDialogs.cpp: - * embed/mozilla/GtkNSSClientAuthDialogs.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * lib/ephy-state.c: (ephy_state_add_paned), (expander_activate_cb), - (ephy_state_add_expander): - * lib/ephy-state.h: - - Ported the Crispin's GtkNSSClientAuthDialogs from galeon. - Changes: - - use GtkExpander instead of the CDDB disclosure thingy - - persist state in ephy-state - - assing a mnemonic to expander label. - - ChangeLog | 16 ++ - embed/mozilla/GtkNSSClientAuthDialogs.cpp | 251 ++++++++++++++++++++++++++++++ - embed/mozilla/GtkNSSClientAuthDialogs.h | 32 ++++ - embed/mozilla/Makefile.am | 2 + - embed/mozilla/MozRegisterComponents.cpp | 8 + - lib/ephy-state.c | 56 ++++++- - lib/ephy-state.h | 4 + - 7 files changed, 368 insertions(+), 1 deletion(-) - -commit 5f152449ad08cd5d2d77e052aff3c40cf8ce5b9d -Author: Marco Pesenti Gritti -Date: Mon Nov 17 12:47:16 2003 +0000 - - Pass WebPageDescriptor, not CurrentDescriptor. This way we dont refetch - - 2003-11-17 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - - Pass WebPageDescriptor, not CurrentDescriptor. - This way we dont refetch page on post. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 10 ++++++---- - 2 files changed, 13 insertions(+), 4 deletions(-) - -commit c59be23acf60d721f2aa2b37e242656a22ce29ff -Author: Marco Pesenti Gritti -Date: Mon Nov 17 11:26:11 2003 +0000 - - Resync with galeon. - - 2003-11-17 Marco Pesenti Gritti - - * configure.in: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - - Resync with galeon. - - * embed/mozilla/mozilla-embed-single.cpp: - - Header name change - - ChangeLog | 12 ++++++++ - configure.in | 4 +-- - embed/mozilla/GtkNSSDialogs.cpp | 50 ++++++++++++++++++---------------- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 26 +++++++++++++++++- - embed/mozilla/mozilla-embed-single.cpp | 4 +++ - 5 files changed, 70 insertions(+), 26 deletions(-) - -commit 5af8580728d5074c39d007cf008bc3be3a9a2149 -Author: Marco Pesenti Gritti -Date: Sun Nov 16 22:55:01 2003 +0000 - - *** empty log message *** - - src/ephy-shell.c | 16 ++++++++++++---- - 1 file changed, 12 insertions(+), 4 deletions(-) - -commit 37f4b353b5a92b646153c6068fe97defb2c1994b -Author: Marco Pesenti Gritti -Date: Sun Nov 16 22:54:38 2003 +0000 - - Do not access session from priv struct but use get_session, so it's - - 2003-11-16 Marco Pesenti Gritti - - * src/ephy-shell.c: (toolwindow_show_cb), (toolwindow_hide_cb), - (ephy_shell_get_bookmarks_editor): - - Do not access session from priv struct but use get_session, - so it's properly initialized-> Fix epiphany -b crash - - ChangeLog | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 125e01e3e09aa94595de4fd5efd8b669eb0ee9cb -Author: Marco Pesenti Gritti -Date: Sun Nov 16 22:48:59 2003 +0000 - - Move gnome session code in the shell. - - 2003-11-16 Marco Pesenti Gritti - - * src/ephy-session.c: (get_session_filename), (ephy_session_init), - (ephy_session_finalize): - * src/ephy-shell.c: (save_yourself_cb), (die_cb), - (gnome_session_init), (ephy_shell_startup): - - Move gnome session code in the shell. - - ChangeLog | 9 ++++++ - src/ephy-session.c | 80 ------------------------------------------------------ - src/ephy-shell.c | 67 +++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 76 insertions(+), 80 deletions(-) - -commit 3adf5dd98cd8798dd1e2a1817a4f403976fdf41f -Author: Xan Lopez -Date: Sun Nov 16 15:11:45 2003 +0000 - - Implement UI for default download path and auto open downlads prefs for - - - * data/glade/prefs-dialog.glade: - * src/prefs-dialog.c: (prefs_dialog_finalize), - (get_download_button_label), (create_download_path_label), - (prefs_dialog_init), (prefs_language_more_button_clicked_cb), - (download_path_response_cb), - (prefs_download_path_button_clicked_cb): - - Implement UI for default download path and auto open downlads - prefs for the downloader. - - ChangeLog | 12 ++++ - data/glade/prefs-dialog.glade | 139 +++++++++++++++++++++++++++++------------- - src/prefs-dialog.c | 105 +++++++++++++++++++++++++++++++ - 3 files changed, 213 insertions(+), 43 deletions(-) - -commit 52ea620be10d0da3535e7667e3f28bd11c0f78d5 -Author: Vincent van Adrighem -Date: Sun Nov 16 15:09:35 2003 +0000 - - Dutch translation updated by Vincent van Adrighem. - - 2003-11-16 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - - po/ChangeLog | 4 + - po/nl.po | 771 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 435 insertions(+), 340 deletions(-) - -commit 47f9c749a956b3f917b1470f8411a82e8b70f71e -Author: Danilo Šegan -Date: Sat Nov 15 15:29:11 2003 +0000 - - Updated Serbian translation. - - 2003-11-15 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 738 ++++++++++++++++++++++++++++++++-------------------------- - po/sr@Latn.po | 738 ++++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 824 insertions(+), 656 deletions(-) - -commit 91885d47471d2683ade5d5ca4466d87186ec17de -Author: Marco Pesenti Gritti -Date: Sat Nov 15 10:00:24 2003 +0000 - - *** empty log message *** - - TODO | 3 --- - configure.in | 2 ++ - embed/Makefile.am | 12 ++++++------ - embed/mozilla/Makefile.am | 11 +++++------ - lib/widgets/Makefile.am | 12 ++++++------ - src/Makefile.am | 12 ++++++------ - 6 files changed, 25 insertions(+), 27 deletions(-) - -commit 43192e4bf0fc0c96fff08a84a99917fdeae42972 -Author: Marco Pesenti Gritti -Date: Sat Nov 15 09:54:05 2003 +0000 - - Enable deprecates and werror only in maintainer mode (in the way suggested - - 2003-11-15 Marco Pesenti Gritti - - * configure.in: - * embed/Makefile.am: - * embed/mozilla/Makefile.am: - * lib/Makefile.am: - * lib/widgets/Makefile.am: - * src/Makefile.am: - - Enable deprecates and werror only in maintainer mode - (in the way suggested by Jamesh). - - ChangeLog | 12 ++++++++++++ - lib/Makefile.am | 12 ++++++------ - 2 files changed, 18 insertions(+), 6 deletions(-) - -commit b3b23364d3993b7954ad54d9e4e65f70cd0ce85b -Author: Christian Persch -Date: Fri Nov 14 18:27:17 2003 +0000 - - Added missing files and deleted no longer existing ones. - - 2003-11-14 Christian Persch - - * POTFILES.in: Added missing files and deleted no longer existing ones. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 5 +++-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit fa2e94db1e8ec3bd0cb8be19b29ece77c66452bf -Author: Marco Pesenti Gritti -Date: Fri Nov 14 17:11:16 2003 +0000 - - Use an unique factory for both interfaces. - - 2003-11-14 Marco Pesenti Gritti - - * data/GNOME_Epiphany_Automation.server.in: - * data/GNOME_Epiphany_NautilusView.server.in: - - Use an unique factory for both interfaces. - - * data/ui/Makefile.am: - - Do not try to merge translations in nautilus xml. - - * src/ephy-nautilus-view.c: (disconnected_idle), - (control_disconnected_cb), (ephy_nautilus_view_instance_init), - (ephy_nautilus_view_finalize): - - Unref the view on control disconnected, not on finalize. - - * src/ephy-main.c: (main): - - Add a server mode argument, used internally by bonobo interface. - Free popt context only when no more necessary. - - * src/ephy-automation.c: - * src/ephy-automation.h: - * src/ephy-shell.c: (ephy_nautilus_view_new), - (ephy_automation_factory_cb), (ephy_automation_factory_new), - (ephy_shell_init), (path_from_command_line_arg), (open_urls), - (server_timeout), (ephy_shell_startup), (ephy_shell_finalize), - (ephy_shell_new_tab): - * src/ephy-shell.h: - - When running in server mode unref (and so exit) on a timeout. - - Expand args passed to the command line. - - ChangeLog | 35 ++++++ - data/GNOME_Epiphany_Automation.server.in | 2 +- - data/GNOME_Epiphany_NautilusView.server.in | 10 +- - data/ui/Makefile.am | 9 +- - data/ui/nautilus-epiphany-view.xml | 128 ++++++++++++++++++++++ - data/ui/nautilus-epiphany-view.xml.in | 128 ---------------------- - src/ephy-automation.c | 25 ----- - src/ephy-automation.h | 2 - - src/ephy-main.c | 18 +-- - src/ephy-nautilus-view.c | 28 ++++- - src/ephy-shell.c | 170 +++++++++++++++++------------ - src/ephy-shell.h | 8 +- - 12 files changed, 304 insertions(+), 259 deletions(-) - -commit b086814a1ff6d94b29ae2185aebb22321da7e1a4 -Author: Marco Pesenti Gritti -Date: Thu Nov 13 18:26:28 2003 +0000 - - Put back borked mozilla alert. - - 2003-11-13 Marco Pesenti Gritti - - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_embed_single): - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed-single.h: - * src/ephy-shell.h: - - Put back borked mozilla alert. - - ChangeLog | 9 +++++++ - embed/ephy-embed-shell.c | 16 +---------- - embed/mozilla/mozilla-embed-single.cpp | 49 +++++++++++++++++++++++----------- - embed/mozilla/mozilla-embed-single.h | 2 -- - src/ephy-shell.h | 3 +-- - 5 files changed, 44 insertions(+), 35 deletions(-) - -commit 33be35697d5adebab76b93d863b127c300e8c7e5 -Author: Marco Pesenti Gritti -Date: Thu Nov 13 17:39:46 2003 +0000 - - Looks like we need to unregister factory since we initialized it by - - 2003-11-13 Marco Pesenti Gritti - - * src/ephy-shell.c: (ephy_shell_finalize): - - Looks like we need to unregister factory since - we initialized it by ourself. - - ChangeLog | 7 +++++++ - src/ephy-shell.c | 3 +++ - 2 files changed, 10 insertions(+) - -commit 20e2ac5fd338808c193b1a3a6fcbded983ca28a9 -Author: Marco Pesenti Gritti -Date: Thu Nov 13 17:30:02 2003 +0000 - - *** empty log message *** - - ChangeLog | 8 -------- - 1 file changed, 8 deletions(-) - -commit 62caa3e6eec7b6109703071179ed260aac507db7 -Author: Marco Pesenti Gritti -Date: Thu Nov 13 17:28:04 2003 +0000 - - Rework shell services initialization so that it happen either on every - - 2003-11-13 Marco Pesenti Gritti - - * embed/mozilla/mozilla-notifiers.cpp: - * src/ephy-main.c: (main): - * src/ephy-shell.c: (ephy_shell_init), (ephy_shell_startup), - (ephy_shell_finalize), (ephy_shell_get_session), - (ephy_shell_get_extensions_manager): - * src/ephy-window.c: (ensure_default_icon), (ephy_window_init): - - Rework shell services initialization so that it happen either - on every instance, before the automation stuff is used, either - when they are requested. This appear to fix the crash with two - instances runned simultaneously. - (Christian I'm not quite sure this is ok for plugins manager, if - there are problems let me know.) - - ChangeLog | 24 +++++++++ - embed/mozilla/mozilla-notifiers.cpp | 6 +++ - src/ephy-main.c | 20 ++++++++ - src/ephy-shell.c | 98 +++++++++---------------------------- - src/ephy-window.c | 36 ++++++++++++++ - 5 files changed, 109 insertions(+), 75 deletions(-) - -commit 00c81d309184a49f6e711c4ce0b61ae8f94b42ae -Author: Marco Pesenti Gritti -Date: Thu Nov 13 14:02:26 2003 +0000 - - First stab at reorganizing initialization. Fix crashes when launching an - - 2003-11-13 Marco Pesenti Gritti - - * idl/EphyAutomation.idl: - * src/ephy-automation.c: (ephy_automation_factory_cb), - (ephy_automation_factory_new), (impl_ephy_automation_loadurl): - * src/ephy-automation.h: - * src/ephy-main.c: (shell_weak_notify), (main): - * src/ephy-shell.c: (ephy_shell_error_quark), (ephy_shell_init), - (init_services), (open_urls), (ephy_shell_startup), - (ephy_shell_finalize), (ephy_shell_new): - * src/ephy-shell.h: - - First stab at reorganizing initialization. - Fix crashes when launching an epiphany instance while - another once is still not initialized completely. It still - doesnt open the second session correctly though. - - ChangeLog | 17 +++++++++++++++++ - 1 file changed, 17 insertions(+) - -commit f96998042311fdbe13591635b4861f6e9db7c230 -Author: Marco Pesenti Gritti -Date: Thu Nov 13 14:02:03 2003 +0000 - - ChangeLog - - idl/EphyAutomation.idl | 8 +- - src/ephy-automation.c | 32 +++--- - src/ephy-automation.h | 8 +- - src/ephy-main.c | 261 ++++++++++++------------------------------------- - src/ephy-shell.c | 209 ++++++++++++++++++++++++++++++--------- - src/ephy-shell.h | 30 ++++++ - 6 files changed, 279 insertions(+), 269 deletions(-) - -commit f6bdfce7e16b98825598dc990efef0846efdb079 -Author: Marco Pesenti Gritti -Date: Wed Nov 12 18:45:12 2003 +0000 - - Silly typos, thanks crispin. - - 2003-11-12 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - - Silly typos, thanks crispin. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit 799a54a68d4c63da3c35e0da9b9375acd75d57bb -Author: Christian Persch -Date: Wed Nov 12 18:31:40 2003 +0000 - - Link up toolbar editor help button. - - 2003-11-12 Christian Persch - - * src/window-commands.c: (toolbar_editor_response_cb): - - Link up toolbar editor help button. - - ChangeLog | 6 ++++++ - src/window-commands.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit cbeaedae1534ed9b6fe11698becbe7ab2d6bddb6 -Author: Kostas Papadimas -Date: Wed Nov 12 07:39:19 2003 +0000 - - Updated the Greek translation - - po/ChangeLog | 4 ++++ - po/el.po | 30 +++++++++++++++--------------- - 2 files changed, 19 insertions(+), 15 deletions(-) - -commit b073c226b45f4590894e79121c5ce7316fbac8be -Author: Pablo Gonzalo del Campo -Date: Tue Nov 11 19:57:38 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-11-11 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 ++++ - po/es.po | 84 +++++++++++++++++++++++++++++------------------------------- - 2 files changed, 46 insertions(+), 43 deletions(-) - -commit 7d79085cc4bbc1752c6310572021a023ec3860b6 -Author: Christian Persch -Date: Tue Nov 11 18:56:44 2003 +0000 - - Set initial visibility to false, fixes a warning when showing the - - 2003-11-11 Christian Persch - - * data/glade/epiphany.glade: - - Set initial visibility to false, fixes a warning when showing the - encodings dialogue. - - ChangeLog | 7 +++++++ - data/glade/epiphany.glade | 1 - - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 7beb933c60288ce8e5756e591a089a82ab1c6b6c -Author: Marco Pesenti Gritti -Date: Tue Nov 11 10:19:04 2003 +0000 - - Build xul dialogs using GtkWindow+GtkMozEmbed. Make src code simpler and - - 2003-11-11 Marco Pesenti Gritti - - * embed/ephy-embed-single.c: (ephy_embed_single_class_init): - * embed/ephy-embed-single.h: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-embed.h: - * src/ephy-nautilus-view.c: (gnv_embed_new_window_cb): - * src/ephy-session.c: (write_ephy_window): - * src/ephy-shell.c: (ephy_shell_init): - * src/ephy-tab.c: (ephy_tab_size_to_cb): - * src/ephy-window.c: (translate_default_chrome): - - Build xul dialogs using GtkWindow+GtkMozEmbed. - Make src code simpler and fix a pair of bugs. - - ChangeLog | 17 ++++++++++++ - embed/ephy-embed-single.c | 20 -------------- - embed/ephy-embed-single.h | 7 ----- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 39 ++------------------------ - embed/mozilla/mozilla-embed.cpp | 49 +++++++++++++++++++++++++++++++-- - embed/mozilla/mozilla-embed.h | 6 ++-- - src/ephy-nautilus-view.c | 6 ---- - src/ephy-session.c | 5 ---- - src/ephy-shell.c | 24 ---------------- - src/ephy-tab.c | 7 +---- - src/ephy-window.c | 1 - - 12 files changed, 72 insertions(+), 111 deletions(-) - -commit 760bb6dfe800fb1edd33d158ee19bd898f09fb2e -Author: Christian Persch -Date: Mon Nov 10 22:21:10 2003 +0000 - - And add it to Makefile.am too. - - 2003-11-10 Christian Persch - - * data/glade/Makefile.am: - - And add it to Makefile.am too. - - ChangeLog | 6 ++++++ - data/glade/Makefile.am | 1 + - 2 files changed, 7 insertions(+) - -commit 8787eb2e816a7a23aee6eec2d1f5efab8d245630 -Author: Christian Persch -Date: Mon Nov 10 22:18:17 2003 +0000 - - We really need the glade file from galeon too. - - 2003-11-10 Christian Persch - - * data/glade/certificate-dialogs.glade: - - We really need the glade file from galeon too. - - ChangeLog | 6 + - data/glade/certificate-dialogs.glade | 1299 ++++++++++++++++++++++++++++++++++ - 2 files changed, 1305 insertions(+) - -commit 6e5d0d68dce662ca6db4a753154b010e3e82bfdc -Author: Christian Persch -Date: Mon Nov 10 21:36:34 2003 +0000 - - New extensions API. - - 2003-11-10 Christian Persch - - New extensions API. - - * Makefile.am: - * configure.in: - * lib/Makefile.am: - * lib/ephy-module-loader.c: (ephy_module_loader_get_type), - (ephy_module_loader_new), (ephy_module_loader_load), - (ephy_module_loader_unload), (ephy_module_loader_class_init), - (ephy_module_loader_init), (ephy_module_loader_finalize), - (ephy_module_loader_factory): - * lib/ephy-module-loader.h: - * plugins/.cvsignore: - * plugins/Makefile.am: - * plugins/sample/.cvsignore: - * plugins/sample/Makefile.am: - * plugins/sample/sample.c: - * src/Makefile.am: - * src/bookmarks/ephy-bookmarks-editor.c: (get_target_window): - * src/bookmarks/ephy-bookmarks.c: - * src/ephy-automation.c: (ephy_automation_factory), - (ephy_automation_factory_new), (impl_ephy_automation_loadurl), - (impl_ephy_automation_load_session), (ephy_automation_class_init): - * src/ephy-extension.c: (ephy_extension_get_type), - (ephy_extension_attach_window), (ephy_extension_detach_window): - * src/ephy-extension.h: - * src/ephy-extensions-manager.c: - (ephy_extensions_manager_get_type), - (ephy_extensions_manager_instantiate_extension), - (ephy_extensions_manager_load), (ephy_extensions_manager_load_dir), - (ephy_extensions_manager_add), (ephy_extensions_manager_init), - (ephy_extensions_manager_finalize), (impl_attach_window), - (impl_detach_window), (ephy_extensions_manager_iface_init), - (ephy_extensions_manager_class_init), - (ephy_extensions_manager_new): - * src/ephy-extensions-manager.h: - * src/ephy-history-window.c: (get_target_window): - * src/ephy-plugin.c: - * src/ephy-plugin.h: - * src/ephy-session.c: (ephy_session_get_type), - (get_session_filename), (session_delete), (net_stop_cb), - (tab_added_cb), (tab_removed_cb), (tabs_reordered_cb), - (impl_attach_window), (impl_detach_window), (save_yourself_cb), - (die_cb), (gnome_session_attach), (gnome_session_detach), - (ensure_session_directory), (ephy_session_init), - (ephy_session_dispose), (ephy_session_finalize), - (ephy_session_iface_init), (ephy_session_class_init), - (offer_to_resume), (ephy_session_autoresume), (ephy_session_close), - (write_tab), (write_window_geometry), (write_tool_window), - (write_ephy_window), (ephy_session_save), (parse_embed), - (ephy_session_load), (ephy_session_get_windows), - (ephy_session_add_window), (ephy_session_remove_window), - (ephy_session_get_active_window): - * src/ephy-session.h: - * src/ephy-shell.c: (ephy_shell_init), (ephy_shell_finalize), - (ephy_shell_get_session), (ephy_shell_get_extensions_manager), - (toolwindow_show_cb), (toolwindow_hide_cb): - * src/ephy-shell.h: - * src/ephy-window.c: (ephy_window_destroy), (ephy_window_init): - * src/prefs-dialog.c: (prefs_homepage_current_button_clicked_cb): - * src/session.c: - * src/session.h: - - Create a new extensions API. Make session an internal extension :) - Port callers to session API changes. - - ChangeLog | 67 +++ - Makefile.am | 2 +- - configure.in | 10 - - lib/Makefile.am | 22 +- - lib/ephy-module-loader.c | 207 +++++++++ - lib/ephy-module-loader.h | 45 ++ - plugins/.cvsignore | 2 - - plugins/Makefile.am | 5 - - plugins/sample/.cvsignore | 2 - - plugins/sample/Makefile.am | 19 - - plugins/sample/sample.c | 122 ----- - src/Makefile.am | 14 +- - src/bookmarks/ephy-bookmarks-editor.c | 9 +- - src/bookmarks/ephy-bookmarks.c | 1 - - src/ephy-automation.c | 47 +- - src/ephy-extension.c | 61 +++ - src/ephy-extension.h | 61 +++ - src/ephy-extensions-manager.c | 260 +++++++++++ - src/ephy-extensions-manager.h | 67 +++ - src/ephy-history-window.c | 7 +- - src/ephy-plugin.c | 179 -------- - src/ephy-plugin.h | 41 -- - src/ephy-session.c | 837 ++++++++++++++++++++++++++++++++++ - src/ephy-session.h | 81 ++++ - src/ephy-shell.c | 129 ++---- - src/ephy-shell.h | 44 +- - src/ephy-window.c | 28 +- - src/prefs-dialog.c | 5 +- - src/session.c | 756 ------------------------------ - src/session.h | 75 --- - 30 files changed, 1800 insertions(+), 1405 deletions(-) - -commit 5dd52c6c36d647d844372b3baad27df7f014bdf6 -Author: Xan Lopez -Date: Mon Nov 10 20:18:39 2003 +0000 - - Deja-vu. - - - * embed/mozilla/mozilla-embed-persist.cpp: - - Deja-vu. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit c0839293bcd0eaeef7881b7aabf14b2d94c483ae -Author: Pablo Gonzalo del Campo -Date: Mon Nov 10 18:41:45 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-11-10 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 + - po/es.po | 2230 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1283 insertions(+), 952 deletions(-) - -commit 7f7a8363c01776a616151e3cca50e5a7f24bdc6a -Author: Denis Lackovic -Date: Mon Nov 10 17:59:30 2003 +0000 - - croatian translations updated - - po/hr.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit aa82d078ba54e9caf4764bf3208d8f032b61fe56 -Author: Denis Lackovic -Date: Mon Nov 10 16:19:06 2003 +0000 - - croatian translation update - - po/hr.po | 3159 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 3159 insertions(+) - -commit 53c91e3fb8b22f6ac11146e80518aa0c00e4e065 -Author: Marco Pesenti Gritti -Date: Mon Nov 10 13:24:53 2003 +0000 - - *** empty log message *** - - lib/egg/egg-toolbars-model.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 9f81e54e0dfb20b5a2637f1c2c7bfe3d7a28582d -Author: Marco Pesenti Gritti -Date: Mon Nov 10 13:24:21 2003 +0000 - - Fix compile warning. - - 2003-11-10 Marco Pesenti Gritti - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_load): - - Fix compile warning. - - * src/ephy-completion-model.c: (init_text_col): - - Correct TEXT column get_value - - ChangeLog | 10 ++++++++++ - src/ephy-completion-model.c | 4 ++-- - 2 files changed, 12 insertions(+), 2 deletions(-) - -commit 309314a3645910f365dd51807f47c04e1567b5fe -Author: Marco Pesenti Gritti -Date: Mon Nov 10 12:25:19 2003 +0000 - - Remove a decl I forgot. - - 2003-11-10 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed.cpp: - - Remove a decl I forgot. - - * lib/egg/egg-editable-toolbar.c: (create_item_from_action), - (create_item), (drag_data_received_cb), (item_added_cb), - (egg_editable_toolbar_construct): - - Copy hack from gtk to make tooltips work. - - ChangeLog | 12 ++++++++++++ - embed/mozilla/mozilla-embed.cpp | 2 -- - lib/egg/egg-editable-toolbar.c | 35 +++++++++++++++++++++++++++-------- - 3 files changed, 39 insertions(+), 10 deletions(-) - -commit e0e28a194f0b59712b096bbde4d6181739f1d975 -Author: Christian Persch -Date: Mon Nov 10 12:09:56 2003 +0000 - - Fix recovery from corrupted toolbar layout file. - - 2003-11-10 Christian Persch - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_load): - * lib/egg/egg-toolbars-model.h: - * src/ephy-toolbars-model.c: (ephy_toolbars_model_set_bookmarks): - - Fix recovery from corrupted toolbar layout file. - - ChangeLog | 8 ++++++++ - lib/egg/egg-toolbars-model.c | 6 ++++-- - lib/egg/egg-toolbars-model.h | 2 +- - src/ephy-toolbars-model.c | 6 ++++-- - 4 files changed, 17 insertions(+), 5 deletions(-) - -commit 90a594297c72e0e4515e14fcbabec554be30b399 -Author: Marco Pesenti Gritti -Date: Sun Nov 9 23:19:23 2003 +0000 - - Do not disable conversion. Some pages was saved as gz compressed. - - 2003-11-10 Marco Pesenti Gritti - - * embed/mozilla/MozDownload.cpp: - - Do not disable conversion. Some pages was - saved as gz compressed. - - ChangeLog | 7 +++++++ - embed/mozilla/MozDownload.cpp | 3 +-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 4e3ff98a7670d0530adb3bca0d00a5d141edb856 -Author: Marco Pesenti Gritti -Date: Sun Nov 9 19:52:21 2003 +0000 - - Do not connect and reemit same signal for nothing. Remove unused/expensive - - 2003-11-09 Marco Pesenti Gritti - - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-tab.c: (ephy_tab_init): - - Do not connect and reemit same signal for nothing. - Remove unused/expensive progress signal. - - * src/session.c: (session_save): - - Unlink session file when all windows are removed. - - ChangeLog | 14 +++++++++++ - embed/ephy-embed.c | 51 ----------------------------------------- - embed/ephy-embed.h | 20 +++++++--------- - embed/mozilla/mozilla-embed.cpp | 44 ----------------------------------- - src/ephy-tab.c | 8 +++---- - src/session.c | 6 +++++ - 6 files changed, 32 insertions(+), 111 deletions(-) - -commit 1d54b362a87e2baa341281429971b632a5750e84 -Author: Hasbullah Bin Pit -Date: Sun Nov 9 19:21:26 2003 +0000 - - Updated Malay translation. - - 2002-11-09 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - - po/ChangeLog | 4 + - po/ms.po | 2494 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1464 insertions(+), 1034 deletions(-) - -commit d68d147c784bde6f5d13c200eb2d92a40141a5a3 -Author: Marco Pesenti Gritti -Date: Sun Nov 9 19:16:35 2003 +0000 - - Cleanup session. Persist also history and bookmarks. - - 2003-11-09 Marco Pesenti Gritti - - * embed/ephy-embed.h: - * idl/EphyAutomation.idl: - * src/ephy-automation.c: (impl_ephy_automation_loadurl), - (impl_ephy_automation_open_bookmarks_editor), - (ephy_automation_init), (ephy_automation_object_finalize), - (ephy_automation_class_init): - * src/ephy-completion-model.c: (root_child_removed_cb): - * src/ephy-main.c: (ephy_main_start): - * src/ephy-shell.c: (ephy_shell_get_active_window), - (toolwindow_show_cb), (toolwindow_hide_cb), - (ephy_shell_get_bookmarks_editor), (ephy_shell_get_history_window): - * src/ephy-shell.h: - * src/ephy-tab.c: (ephy_tab_net_state_cb), (ephy_tab_size_to_cb): - * src/ephy-window.c: (remove_from_session), (ephy_window_init): - * src/session.c: (session_autoresume), (session_close), - (session_dispose), (save_window_geometry), (save_tool_window), - (save_ephy_window), (session_save), (session_load), - (session_get_windows), (net_stop_cb), (tab_added_cb), - (tab_removed_cb), (tabs_reordered_cb), (session_add_window), - (session_remove_window), (save_yourself_cb), (session_die_cb), - (gnome_session_init), (session_init): - * src/session.h: - * src/window-commands.c: (window_cmd_go_bookmarks), - (window_cmd_go_history): - - Cleanup session. Persist also history and bookmarks. - - ChangeLog | 29 +++ - embed/ephy-embed.h | 5 + - idl/EphyAutomation.idl | 8 - - src/ephy-automation.c | 74 +++----- - src/ephy-completion-model.c | 2 - - src/ephy-main.c | 9 - - src/ephy-shell.c | 85 ++++----- - src/ephy-shell.h | 6 +- - src/ephy-tab.c | 16 +- - src/ephy-window.c | 4 +- - src/session.c | 427 ++++++++++++++++++++++++++------------------ - src/session.h | 22 +-- - src/window-commands.c | 15 +- - 13 files changed, 369 insertions(+), 333 deletions(-) - -commit c135299f16ff6d9669ccc12a7f670d9e574bbaa0 -Author: Christian Persch -Date: Sun Nov 9 18:39:52 2003 +0000 - - Don't unref the icon theme, we don't own it. - - 2003-11-09 Christian Persch - - * src/window-commands.c: (window_cmd_help_about): - - Don't unref the icon theme, we don't own it. - - ChangeLog | 6 ++++++ - src/window-commands.c | 18 ++++++++++-------- - 2 files changed, 16 insertions(+), 8 deletions(-) - -commit 40b6378a13d1f2ed6a79f7dba10386115149dcd7 -Author: Marco Pesenti Gritti -Date: Sun Nov 9 00:45:30 2003 +0000 - - Do not save All node - - 2003-11-09 Marco Pesenti Gritti - - * embed/ephy-history.c: (ephy_history_save): - - Do not save All node - - ChangeLog | 6 ++++++ - embed/ephy-history.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit bc6c348cb4faebda6c9ed0bcd6f51b0894103f8b -Author: Marco Pesenti Gritti -Date: Sat Nov 8 19:59:27 2003 +0000 - - Remove decls from the top - - 2003-11-08 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - - Remove decls from the top - - ChangeLog | 8 ++ - embed/mozilla/mozilla-embed-persist.cpp | 37 +++--- - embed/mozilla/mozilla-embed-single.cpp | 165 ++++++++++------------- - embed/mozilla/mozilla-embed.cpp | 227 +++++++++++--------------------- - 4 files changed, 171 insertions(+), 266 deletions(-) - -commit efdbfda6497ce49555dfa80a6e0d90d5f2ee6389 -Author: Marco Pesenti Gritti -Date: Sat Nov 8 19:38:54 2003 +0000 - - Pass ITEMS_PERSIST and LIST_ONLY to the models, the implementation looks - - 2003-11-08 Marco Pesenti Gritti - - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_get_flags): - * src/ephy-completion-model.c: (ephy_completion_model_get_flags): - - Pass ITEMS_PERSIST and LIST_ONLY to the models, the implementation - looks already ok with it to me. Hopefully not missing something ... - - ChangeLog | 9 +++++++++ - lib/widgets/ephy-tree-model-node.c | 2 +- - src/ephy-completion-model.c | 2 +- - 3 files changed, 11 insertions(+), 2 deletions(-) - -commit cda65a33a1885e61cbaafb5e98e56c742a4828b0 -Author: Marco Pesenti Gritti -Date: Sat Nov 8 17:35:30 2003 +0000 - - Focus history entry on _show. Do not try to update paste menu item using - - 2003-11-08 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu): - * src/ephy-history-window.c: (ephy_history_window_show), - (ephy_history_window_class_init), - (ephy_history_window_update_menu): - - Focus history entry on _show. - Do not try to update paste menu item using the wait - api, it can cause a crash on a timeout and anyway - it's incosistent what we do in main window. - - ChangeLog | 13 +++++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 5 +---- - src/ephy-history-window.c | 18 ++++++++++++++---- - 3 files changed, 28 insertions(+), 8 deletions(-) - -commit 6b00de66025093218127fa74d9a423d58e377025 -Author: Christian Persch -Date: Sat Nov 8 12:56:44 2003 +0000 - - Port node db saving and RDF export to xml writer api. - - 2003-11-08 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get_type), - (ephy_favicon_cache_finalize): - * embed/ephy-history.c: (ephy_history_save): - * lib/ephy-file-helpers.c: (ephy_file_switch_temp_file): - * lib/ephy-file-helpers.h: - * lib/ephy-node-db.c: (ephy_node_db_load_from_file), - (ephy_node_db_write_to_xml_valist), - (ephy_node_db_write_to_xml_safe): - * lib/ephy-node-db.h: - * lib/ephy-node.c: (write_parent), (ephy_node_write_to_xml): - * lib/ephy-node.h: - * lib/ephy-state.c: (ephy_states_save), (ensure_states): - * src/bookmarks/ephy-bookmarks-export.c: (write_topics_list), - (ephy_bookmarks_export_rdf): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_save): - - Port node db saving and RDF export to xml writer api. - - ChangeLog | 20 ++++ - embed/ephy-favicon-cache.c | 45 ++----- - embed/ephy-history.c | 52 ++------ - lib/ephy-file-helpers.c | 32 ++--- - lib/ephy-file-helpers.h | 4 +- - lib/ephy-node-db.c | 141 +++++++++++++++++++++- - lib/ephy-node-db.h | 9 ++ - lib/ephy-node.c | 148 ++++++++++++----------- - lib/ephy-node.h | 7 +- - lib/ephy-state.c | 44 ++----- - src/bookmarks/ephy-bookmarks-export.c | 220 +++++++++++++++++++++++++--------- - src/bookmarks/ephy-bookmarks.c | 59 ++------- - 12 files changed, 475 insertions(+), 306 deletions(-) - -commit 5e5d25f08036ef3f2ac9af3071a36def13f5b2c6 -Author: Christian Persch -Date: Fri Nov 7 23:00:02 2003 +0000 - - Fix mem leak. - - 2003-11-07 Christian Persch - - * src/ephy-favicon-actio.c: (ephy_favicon_action_finalize): - - Fix mem leak. - - ChangeLog | 6 ++++++ - src/ephy-favicon-action.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 4f85ebbbe15e2243cd688bc57138b8940b7cb3af -Author: Christian Persch -Date: Fri Nov 7 19:51:28 2003 +0000 - - Chain up to parent's finalize method. - - 2003-11-07 Christian Persch - - * src/ephy-location-action.c: (ephy_location_action_finalize): - - Chain up to parent's finalize method. - - ChangeLog | 6 ++++++ - src/ephy-location-action.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 8c0c90a291ef890be60857bb153388816c87ae13 -Author: Marco Pesenti Gritti -Date: Fri Nov 7 19:07:29 2003 +0000 - - Rewrite the iteration part to take advantage of user_data2. Should be - - 2003-11-07 Marco Pesenti Gritti - - * src/ephy-completion-model.c: (get_path_real), - (node_iter_from_node), (get_index_root), (root_child_removed_cb), - (root_child_added_cb), (root_child_changed_cb), - (ephy_completion_model_get_value), - (ephy_completion_model_get_iter), (ephy_completion_model_get_path), - (ephy_completion_model_iter_next), - (ephy_completion_model_iter_children), - (ephy_completion_model_iter_n_children), - (ephy_completion_model_iter_nth_child), - (ephy_completion_model_iter_parent): - - Rewrite the iteration part to take advantage of user_data2. Should - be faster and a bit cleaner. - - ChangeLog | 16 +++ - src/ephy-completion-model.c | 246 +++++++++++++++++++++----------------------- - 2 files changed, 132 insertions(+), 130 deletions(-) - -commit bb65e1ca58bc3ba4c1062de7000d4677f09aefb2 -Author: Xan Lopez -Date: Thu Nov 6 21:37:16 2003 +0000 - - Use kB, MB and GB for the total size of the files being downloaded. Fixes - - - * embed/downloader-view.c: (download_changed_cb): - - Use kB, MB and GB for the total size of the files being - downloaded. Fixes #126387 - - * embed/mozilla/ContentHandler.cpp: - - Small cleanup. - - ChangeLog | 11 +++++++++++ - embed/downloader-view.c | 18 ++++++++++++++---- - embed/mozilla/ContentHandler.cpp | 2 -- - 3 files changed, 25 insertions(+), 6 deletions(-) - -commit 0997291f66dbb820c534a9a5cbf85ca75488db89 -Author: Marco Pesenti Gritti -Date: Thu Nov 6 21:14:41 2003 +0000 - - Handle correctly last bookmark case - - 2003-11-06 Marco Pesenti Gritti - - * src/ephy-completion-model.c: (ephy_completion_model_iter_next): - - Handle correctly last bookmark case - - ChangeLog | 6 ++++++ - src/ephy-completion-model.c | 11 +++++++++-- - 2 files changed, 15 insertions(+), 2 deletions(-) - -commit c648b20ce71bb18054ca1b6bc6785adf59d4a576 -Author: Marco Pesenti Gritti -Date: Thu Nov 6 16:32:12 2003 +0000 - - *** empty log message *** - - src/ppview-toolbar.c | 1 - - 1 file changed, 1 deletion(-) - -commit ec786725e61fa02ea42754974ba9e729551c3542 -Author: Marco Pesenti Gritti -Date: Thu Nov 6 16:29:52 2003 +0000 - - Small cleanups - - 2003-11-06 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - - Small cleanups - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 6 ------ - embed/mozilla/ContentHandler.h | 3 --- - 3 files changed, 7 insertions(+), 9 deletions(-) - -commit b5c036538ffb6fbb2ace518ee5b4ad8b2d5c8ef6 -Author: Marco Pesenti Gritti -Date: Thu Nov 6 16:10:19 2003 +0000 - - More headers fixup. - - 2003-11-06 Marco Pesenti Gritti - - * src/ephy-main.c: - * src/ephy-shell.c: - - More headers fixup. - - * src/window-commands.c: (window_cmd_help_about): - - Use gtk icon theme here too. - - ChangeLog | 11 +++++++++++ - src/ephy-main.c | 6 +++--- - src/ephy-shell.c | 2 +- - src/window-commands.c | 22 ++++++++++++---------- - 4 files changed, 27 insertions(+), 14 deletions(-) - -commit e8efae29aefaf2ab8c549fc298b6564f697f1de1 -Author: Marco Pesenti Gritti -Date: Thu Nov 6 14:31:38 2003 +0000 - - Change some more i18n inclusion and remove several unused includes. - - 2003-11-06 Marco Pesenti Gritti - - * embed/downloader-view.c: - * embed/ephy-embed-popup-control.c: - * embed/mozilla/ExternalProtocolService.cpp: - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * lib/ephy-file-helpers.c: - * lib/widgets/ephy-search-entry.c: - - Change some more i18n inclusion and remove several - unused includes. - - ChangeLog | 16 ++++++++++++++++ - embed/downloader-view.c | 4 ---- - embed/ephy-embed-popup-control.c | 1 - - embed/mozilla/ExternalProtocolService.cpp | 5 ++--- - embed/mozilla/FilePicker.cpp | 1 - - embed/mozilla/GtkNSSDialogs.cpp | 2 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 2 +- - embed/mozilla/mozilla-notifiers.cpp | 3 ++- - lib/ephy-file-helpers.c | 1 - - lib/widgets/ephy-search-entry.c | 5 +++-- - 11 files changed, 26 insertions(+), 16 deletions(-) - -commit 510dc2f81c7d5da00ae321c4f87fe74bc7873e0d -Author: Marco Pesenti Gritti -Date: Thu Nov 6 10:36:39 2003 +0000 - - Correct download dir default. - - 2003-11-06 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - - Correct download dir default. - - * embed/ephy-embed-shell.h: - * embed/ephy-embed-shell.c: (ephy_embed_shell_init), - (ephy_embed_shell_finalize), (ephy_embed_shell_get_encodings), - (load_mime_from_xml), (ephy_embed_shell_check_mime): - - Add check_mime api for permissions. - - * embed/mozilla/ContentHandler.cpp: - - First incomplete try at using it. - - ChangeLog | 17 ++++++++ - data/epiphany.schemas.in | 2 +- - embed/ephy-embed-shell.c | 83 ++++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed-shell.h | 26 +++++++++---- - embed/mozilla/ContentHandler.cpp | 8 +++- - 5 files changed, 126 insertions(+), 10 deletions(-) - -commit 665035daca3b08898e1d838d38c65fbe5f36ff95 -Author: Marco Pesenti Gritti -Date: Thu Nov 6 08:39:04 2003 +0000 - - Add a list of permissions for mime and a script to update it (py hackers - - 2003-11-06 Marco Pesenti Gritti - - * data/Makefile.am: - * data/check-mime.py: - * data/mime-types-permissions.xml: - - Add a list of permissions for mime and a script - to update it (py hackers please forgive me). - I put only very obvious items in the safe list - for now. - - ChangeLog | 11 ++ - data/Makefile.am | 6 +- - data/check-mime.py | 33 ++++ - data/mime-types-permissions.xml | 354 ++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 403 insertions(+), 1 deletion(-) - -commit dfd17005ee1f28b31a3e07a31e0f2fc5afc70596 -Author: Christian Persch -Date: Wed Nov 5 22:56:16 2003 +0000 - - Use new glib gi18n.h instead of bonobo's bonobo-i18n.h. - - 2003-11-05 Christian Persch - - * embed/downloader-view.c: - * embed/ephy-embed-popup-control.c: - * embed/ephy-encodings.c: - * embed/ephy-history.c: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/FilePicker.cpp: - * lib/eel-gconf-extensions.c: - * lib/egg/egg-editable-toolbar.c: - * lib/ephy-file-helpers.c: - * lib/ephy-gui.c: - * lib/ephy-langs.c: - * lib/ephy-node.c: - * lib/ephy-zoom.h: - * lib/widgets/ephy-cell-renderer-progress.c: - * lib/widgets/ephy-zoom-action.c: - * lib/widgets/ephy-zoom-control.c: - * src/bookmarks/ephy-bookmark-action.c: - * src/bookmarks/ephy-bookmark-properties.c: - * src/bookmarks/ephy-bookmarks-editor.c: - * src/bookmarks/ephy-bookmarks-import.c: - * src/bookmarks/ephy-bookmarks-menu.c: - * src/bookmarks/ephy-bookmarks.c: - * src/bookmarks/ephy-new-bookmark.c: - * src/bookmarks/ephy-topic-action.c: - * src/ephy-encoding-dialog.c: - * src/ephy-encoding-menu.c: - * src/ephy-go-action.c: - * src/ephy-history-window.c: - * src/ephy-notebook.c: - * src/ephy-shell.c: - * src/ephy-tab.c: - * src/ephy-toolbars-model.c: - * src/ephy-window.c: - * src/pdm-dialog.c: - * src/popup-commands.c: - * src/ppview-toolbar.c: - * src/prefs-dialog.c: - * src/session.c: - * src/toolbar.c: - * src/window-commands.c: - - Use new glib gi18n.h instead of bonobo's bonobo-i18n.h. - - ChangeLog | 46 +++++++++++++++++++++++++++++++ - embed/downloader-view.c | 2 +- - embed/ephy-embed-popup-control.c | 2 +- - embed/ephy-encodings.c | 2 +- - embed/ephy-history.c | 2 +- - embed/mozilla/ContentHandler.cpp | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 2 +- - embed/mozilla/FilePicker.cpp | 2 +- - lib/eel-gconf-extensions.c | 2 +- - lib/egg/egg-editable-toolbar.c | 2 +- - lib/ephy-file-helpers.c | 2 +- - lib/ephy-gui.c | 2 +- - lib/ephy-langs.c | 2 +- - lib/ephy-node.c | 2 +- - lib/ephy-zoom.h | 2 +- - lib/widgets/ephy-cell-renderer-progress.c | 2 +- - lib/widgets/ephy-zoom-action.c | 2 +- - lib/widgets/ephy-zoom-control.c | 2 +- - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/bookmarks/ephy-bookmarks-import.c | 2 +- - src/bookmarks/ephy-bookmarks-menu.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 2 +- - src/bookmarks/ephy-new-bookmark.c | 2 +- - src/bookmarks/ephy-topic-action.c | 2 +- - src/ephy-encoding-dialog.c | 2 +- - src/ephy-encoding-menu.c | 2 +- - src/ephy-go-action.c | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-notebook.c | 2 +- - src/ephy-shell.c | 2 +- - src/ephy-tab.c | 2 +- - src/ephy-toolbars-model.c | 2 +- - src/ephy-window.c | 2 +- - src/pdm-dialog.c | 2 +- - src/popup-commands.c | 2 +- - src/ppview-toolbar.c | 2 +- - src/prefs-dialog.c | 2 +- - src/session.c | 2 +- - src/toolbar.c | 2 +- - src/window-commands.c | 2 +- - 42 files changed, 87 insertions(+), 41 deletions(-) - -commit f3abf966ddd6e91a650b950f99a5b668fa79d580 -Author: Vincent van Adrighem -Date: Wed Nov 5 21:54:02 2003 +0000 - - Dutch translation updated by Vincent van Adrighem. - - 2003-11-05 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - - po/ChangeLog | 4 + - po/nl.po | 669 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 362 insertions(+), 311 deletions(-) - -commit ef9bf712f3969ce4d5273719831739fe5c630021 -Author: Danilo Šegan -Date: Wed Nov 5 12:16:53 2003 +0000 - - Updated Serbian translation. - - 2003-11-05 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 581 +++++++++++++++++++++++++++++++--------------------------- - po/sr@Latn.po | 581 +++++++++++++++++++++++++++++++--------------------------- - 3 files changed, 618 insertions(+), 548 deletions(-) - -commit e71739912e5f6359a5c999cb1566cffb8d1eb32b -Author: Christian Persch -Date: Wed Nov 5 10:44:36 2003 +0000 - - Only allow choosing "Selection" if there really is one. - - 2003-11-05 Christian Persch - - * data/glade/print.glade: - * embed/print-dialog.c: (impl_show), (print_dialog_class_init), - (print_dialog_new), (print_dialog_new_with_parent), - (print_dialog_print), (print_dialog_preview), - (print_cancel_button_cb), (print_preview_button_cb): - - Only allow choosing "Selection" if there really is one. - - * lib/ephy-dialog.c: (impl_run): - - Use ephy_dialog_show() when running an EphyDialog. - - ChangeLog | 14 +++++++ - data/glade/print.glade | 2 +- - embed/print-dialog.c | 108 ++++++++++++++++++++++++++++++++----------------- - lib/ephy-dialog.c | 12 +----- - 4 files changed, 88 insertions(+), 48 deletions(-) - -commit 749a4992249e0a51a6f013494ac2b7feec91a033 -Author: Marco Pesenti Gritti -Date: Wed Nov 5 09:21:22 2003 +0000 - - Remove unused func, bad xan - - 2003-11-05 Marco Pesenti Gritti - - * lib/ephy-gui.c: (ephy_gui_help): - * lib/ephy-gui.h: - - Remove unused func, bad xan - - ChangeLog | 7 +++++++ - lib/ephy-gui.c | 43 ------------------------------------------- - lib/ephy-gui.h | 2 -- - 3 files changed, 7 insertions(+), 45 deletions(-) - -commit bb356f3a3548ce549e4cb3a4d30371ea0ac6f564 -Author: Christian Persch -Date: Tue Nov 4 23:59:35 2003 +0000 - - Renamed to get_command_state to can_do_command. - - 2003-11-05 Christian Persch - - * embed/ephy-command-manager.c: - (ephy_command_manager_can_do_command): - * embed/ephy-command-manager.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-window.c: (edit_menu_show_cb): - - Renamed to get_command_state to can_do_command. - - ChangeLog | 10 ++++++++++ - embed/ephy-command-manager.c | 8 ++++---- - embed/ephy-command-manager.h | 8 +++++--- - embed/mozilla/mozilla-embed.cpp | 6 +++--- - src/ephy-window.c | 10 +++++----- - 5 files changed, 27 insertions(+), 15 deletions(-) - -commit 0258ff08cfd0eff38e1d13704ce0d47c99706df5 -Author: Marco Pesenti Gritti -Date: Tue Nov 4 23:56:12 2003 +0000 - - Migrate font family too - - 2003-11-05 Marco Pesenti Gritti - - * embed/ephy-embed-prefs.h: - * embed/mozilla/mozilla-notifiers.cpp: - - Migrate font family too - - ChangeLog | 7 +++++++ - embed/ephy-embed-prefs.h | 3 ++- - embed/mozilla/mozilla-notifiers.cpp | 28 ++++++++++++++++++++++++++++ - 3 files changed, 37 insertions(+), 1 deletion(-) - -commit f2d0b1b1266b3bd92916dc23019af6322d510f77 -Author: Christian Persch -Date: Tue Nov 4 23:26:31 2003 +0000 - - Get rid of gresult type. Use return values instead of out-parameters - - 2003-11-05 Christian Persch - - * embed/Makefile.am: - * embed/ephy-command-manager.c: (ephy_command_manager_do_command), - (ephy_command_manager_get_command_state): - * embed/ephy-command-manager.h: - * embed/ephy-embed-event.c: (ephy_embed_event_get_type), - (ephy_embed_event_class_init), (ephy_embed_event_init), - (ephy_embed_event_finalize), (ephy_embed_event_new), - (ephy_embed_event_get_event_type), (ephy_embed_event_get_coords), - (ephy_embed_event_get_context), (ephy_embed_event_set_property): - * embed/ephy-embed-event.h: - * embed/ephy-embed-persist.c: (ephy_embed_persist_cancel): - * embed/ephy-embed-persist.h: - * embed/ephy-embed-popup-control.c: - (ephy_embed_popup_control_set_event), - (embed_popup_copy_location_cmd), (embed_popup_save_page_as_cmd), - (embed_popup_open_frame_cmd): - * embed/ephy-embed-single.c: (ephy_embed_single_get_type), - (ephy_embed_single_class_init), (ephy_embed_single_clear_cache), - (ephy_embed_single_set_offline_mode), - (ephy_embed_single_load_proxy_autoconf), - (ephy_embed_single_get_font_list), - (ephy_embed_single_list_cookies), - (ephy_embed_single_remove_cookies), - (ephy_embed_single_list_passwords), - (ephy_embed_single_remove_passwords), - (ephy_embed_single_free_cookies), - (ephy_embed_single_free_passwords): - * embed/ephy-embed-single.h: - * embed/ephy-embed-types.h: - * embed/ephy-embed.c: (ephy_embed_get_type), - (ephy_embed_base_init), (ephy_embed_new), (ephy_embed_load_url), - (ephy_embed_stop_load), (ephy_embed_can_go_back), - (ephy_embed_can_go_forward), (ephy_embed_can_go_up), - (ephy_embed_get_go_up_list), (ephy_embed_go_back), - (ephy_embed_go_forward), (ephy_embed_go_up), - (ephy_embed_get_title), (ephy_embed_get_location), - (ephy_embed_reload), (ephy_embed_zoom_set), (ephy_embed_zoom_get), - (ephy_embed_shistory_n_items), (ephy_embed_shistory_get_nth), - (ephy_embed_shistory_get_pos), (ephy_embed_shistory_go_nth), - (ephy_embed_get_security_level), (ephy_embed_find_set_properties), - (ephy_embed_find_next), (ephy_embed_activate), - (ephy_embed_set_encoding), (ephy_embed_get_encoding_info), - (ephy_embed_print), (ephy_embed_print_preview_close), - (ephy_embed_print_preview_n_pages), - (ephy_embed_print_preview_navigate): - * embed/ephy-embed.h: - * embed/ephy-history.c: - * embed/find-dialog.c: (find_dialog_go_next), - (find_dialog_go_prev): - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-embed.h: - * lib/Makefile.am: - * lib/ephy-state.c: - * lib/ephy-types.h: - * src/ephy-encoding-dialog.c: (sync_embed_cb), (activate_choice): - * src/ephy-encoding-menu.c: (update_encoding_menu_cb), - (encoding_activate_cb): - * src/ephy-favicon-action.c: (each_url_get_data_binder): - * src/ephy-nautilus-view.c: (gnv_embed_dom_mouse_click_cb), - (gnv_embed_context_menu_cb), (gnv_embed_title_cb), - (gnv_popup_cmd_frame_in_new_window), (gnv_zoomable_zoom_in_cb), - (gnv_zoomable_zoom_out_cb): - * src/ephy-navigation-action.c: (activate_up_menu_item_cb), - (setup_back_or_forward_menu), (setup_up_menu): - * src/ephy-tab.c: (ephy_tab_address_cb), - (ephy_tab_zoom_changed_cb), (ephy_tab_title_cb), - (ephy_tab_dom_mouse_click_cb), (ephy_tab_update_navigation_flags), - (ephy_tab_set_title): - * src/ephy-window.c: (edit_menu_show_cb), (sync_tab_security), - (show_embed_popup), (ephy_window_set_zoom): - * src/pdm-dialog.c: (pdm_dialog_init): - * src/popup-commands.c: (popup_cmd_frame_in_new_tab), - (popup_cmd_frame_in_new_window), (popup_cmd_open_frame): - * src/ppview-toolbar.c: (toolbar_update_sensitivity), - (toolbar_cmd_ppv_goto_last), (clamp_page_limits): - * src/prefs-dialog.c: (setup_font_menu), - (prefs_homepage_current_button_clicked_cb): - * src/session.c: (save_tab): - * src/window-commands.c: (window_cmd_file_send_to), - (window_cmd_file_bookmark_page), (window_cmd_view_page_source): - - Get rid of gresult type. Use return values instead of out-parameters - whereever possible, and port all callers. - - ChangeLog | 88 +++++ - embed/Makefile.am | 1 - - embed/ephy-command-manager.c | 11 +- - embed/ephy-command-manager.h | 26 +- - embed/ephy-embed-event.c | 85 +++-- - embed/ephy-embed-event.h | 23 +- - embed/ephy-embed-persist.c | 6 +- - embed/ephy-embed-persist.h | 10 +- - embed/ephy-embed-popup-control.c | 10 +- - embed/ephy-embed-single.c | 113 +++---- - embed/ephy-embed-single.h | 120 ++++--- - embed/ephy-embed-types.h | 46 --- - embed/ephy-embed.c | 528 ++++++++++++++---------------- - embed/ephy-embed.h | 377 ++++++++++------------ - embed/ephy-history.c | 5 +- - embed/find-dialog.c | 10 +- - embed/mozilla/mozilla-embed-persist.cpp | 43 ++- - embed/mozilla/mozilla-embed-single.cpp | 128 +++----- - embed/mozilla/mozilla-embed.cpp | 548 +++++++++++--------------------- - embed/mozilla/mozilla-embed.h | 5 +- - lib/Makefile.am | 5 +- - lib/ephy-state.c | 1 - - lib/ephy-types.h | 35 -- - src/ephy-encoding-dialog.c | 10 +- - src/ephy-encoding-menu.c | 12 +- - src/ephy-favicon-action.c | 2 +- - src/ephy-nautilus-view.c | 18 +- - src/ephy-navigation-action.c | 8 +- - src/ephy-tab.c | 31 +- - src/ephy-window.c | 32 +- - src/pdm-dialog.c | 6 +- - src/popup-commands.c | 6 +- - src/ppview-toolbar.c | 7 +- - src/prefs-dialog.c | 7 +- - src/session.c | 2 +- - src/window-commands.c | 12 +- - 36 files changed, 1011 insertions(+), 1366 deletions(-) - -commit 359950ec9266be580ab6bb599e59a05919c7c42a -Author: Marco Pesenti Gritti -Date: Tue Nov 4 21:51:31 2003 +0000 - - Better names for new font size keys - - 2003-11-04 Marco Pesenti Gritti - - * embed/ephy-embed-prefs.h: - - Better names for new font size keys - - ChangeLog | 6 ++++++ - embed/ephy-embed-prefs.h | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 8180308e57e97c0c4e69331aac409e49e6a38876 -Author: Marco Pesenti Gritti -Date: Tue Nov 4 21:43:09 2003 +0000 - - Resync with eel. - - 2003-11-04 Marco Pesenti Gritti - - * lib/eel-gconf-extensions.c: (global_client_free), - (eel_gconf_client_get_global), (eel_gconf_handle_error), - (eel_gconf_set_string), (eel_gconf_is_default), - (eel_gconf_key_is_writable), (eel_gconf_monitor_add), - (eel_gconf_monitor_remove), (eel_gconf_preload_cache), - (eel_gconf_get_default_value), (eel_strcmp), (eel_str_is_equal), - (simple_value_is_equal), (eel_gconf_value_is_equal), - (eel_gconf_value_get_string_list), - (eel_gconf_value_set_string_list), (eel_gconf_set_float), - (eel_gconf_get_float): - * lib/eel-gconf-extensions.h: - - Resync with eel. - - * lib/ephy-prefs.h: - * lib/widgets/ephy-spinner.c: - * embed/ephy-embed-prefs.h: - * embed/mozilla/mozilla-notifiers.cpp: - - Migrate old font size settings. This will screw things - for 1.1 users, not much we can do about it now. - - ChangeLog | 24 +++ - embed/ephy-embed-prefs.h | 11 +- - embed/mozilla/mozilla-notifiers.cpp | 114 +++++++++- - lib/eel-gconf-extensions.c | 413 ++++++++++++++++++++++++------------ - lib/eel-gconf-extensions.h | 95 ++++----- - lib/ephy-prefs.h | 3 + - lib/widgets/ephy-spinner.c | 1 - - 7 files changed, 459 insertions(+), 202 deletions(-) - -commit f077672b83507d7ae5dedad6c7d82105e5d5d42f -Author: Marco Pesenti Gritti -Date: Tue Nov 4 19:46:00 2003 +0000 - - Remove unused ephy-prefs includes - - 2003-11-04 Marco Pesenti Gritti - - * embed/downloader-view.c: - * embed/mozilla/ExternalProtocolService.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * lib/widgets/ephy-spinner.c: - * src/bookmarks/ephy-bookmarks-editor.c: - * src/language-editor.c: - * src/session.c: - - Remove unused ephy-prefs includes - - ChangeLog | 12 ++++++++++++ - embed/downloader-view.c | 1 - - embed/mozilla/ExternalProtocolService.cpp | 1 - - embed/mozilla/mozilla-embed-single.cpp | 1 - - lib/widgets/ephy-spinner.c | 1 - - src/bookmarks/ephy-bookmarks-editor.c | 1 - - src/language-editor.c | 1 - - src/session.c | 1 - - 8 files changed, 12 insertions(+), 7 deletions(-) - -commit 49103bde7a0ab9b73c774af446bb1c29b0dc8cf9 -Author: Xan Lopez -Date: Tue Nov 4 18:35:29 2003 +0000 - - Rework ContentHandler to use the auto_open_downloads key. - - - * data/epiphany.schemas.in: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * lib/ephy-prefs.h: - - Rework ContentHandler to use the auto_open_downloads key. - - ChangeLog | 9 + - data/epiphany.schemas.in | 12 ++ - embed/mozilla/ContentHandler.cpp | 373 ++++----------------------------------- - embed/mozilla/ContentHandler.h | 14 +- - lib/ephy-prefs.h | 2 +- - 5 files changed, 59 insertions(+), 351 deletions(-) - -commit ddaaf5bd5e7bf588131be271d2c12a825c6bd833 -Author: Marco Pesenti Gritti -Date: Tue Nov 4 10:14:31 2003 +0000 - - Fix sensitivity of Paste. Still not set for native entries, I cant really - - 2003-11-04 Marco Pesenti Gritti - - * src/ephy-window.c: (edit_menu_show_cb): - - Fix sensitivity of Paste. Still not set for native - entries, I cant really see a way to do it without waiting and so - making the change visible which sucks. - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 7 ++++++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit 4162e3c933ba20d40da66fae65f7188044d5c867 -Author: Marco Pesenti Gritti -Date: Tue Nov 4 10:08:02 2003 +0000 - - Yet another sensitivity update strategy. Set sensitivity on menu show and - - 2003-11-04 Marco Pesenti Gritti - - * src/ephy-window.c: (edit_menu_show_cb), (edit_menu_hide_cb), - (init_menu_updaters), (setup_window): - - Yet another sensitivity update strategy. Set sensitivity - on menu show and reset it on menu hide, so that accellerators - ever work. - - ChangeLog | 9 ++++ - src/ephy-window.c | 142 +++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 96 insertions(+), 55 deletions(-) - -commit b446f6693c136813dd6ad780ab826a45939e89ce -Author: Marco Pesenti Gritti -Date: Tue Nov 4 09:08:47 2003 +0000 - - update undo/redo sensitivity - - 2003-11-04 Marco Pesenti Gritti - - * src/ephy-window.c: (window_cmd_edit): - - update undo/redo sensitivity - - 2003-11-04 David Adam Bordoley - - * data/ui/epiphany-ui.xml: - * src/window-commands.c: (window_cmd_edit_undo), - (window_cmd_edit_redo): - * src/window-commands.h: - - Menus for Undo/Redo - - ChangeLog | 15 +++++++++++++++ - data/ui/epiphany-ui.xml | 3 +++ - src/ephy-window.c | 20 +++++++++++++++++++- - src/window-commands.c | 34 ++++++++++++++++++++++++++++++++++ - src/window-commands.h | 6 ++++++ - 5 files changed, 77 insertions(+), 1 deletion(-) - -commit 78c2e1a47c7fc6074a80c8b91dbdc1f57e3ba817 -Author: Marco Pesenti Gritti -Date: Tue Nov 4 08:56:33 2003 +0000 - - Show only paste in the context menu, it's the only one that works in - - 2003-11-04 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml: - - Show only paste in the context menu, it's the only - one that works in mozilla. - - * embed/ephy-command-manager.c: - (ephy_command_manager_get_command_state): - * embed/ephy-command-manager.h: - - Rename the state api. - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Implement state api. - - * src/ephy-window.c: (window_cmd_edit), (show_embed_popup): - - Update clipboard menus on activate. - - ChangeLog | 23 ++++++++++++ - data/ui/epiphany-ui.xml | 2 -- - embed/ephy-command-manager.c | 15 +++----- - embed/ephy-command-manager.h | 19 +++++----- - embed/mozilla/EphyBrowser.cpp | 12 +++++++ - embed/mozilla/EphyBrowser.h | 1 + - embed/mozilla/mozilla-embed.cpp | 20 +++++------ - src/ephy-window.c | 77 ++++++++++++++++++++++++++++++++--------- - 8 files changed, 117 insertions(+), 52 deletions(-) - -commit 2e01fbd1c41969e80dd599958b811867dc935a59 -Author: Vincent van Adrighem -Date: Tue Nov 4 00:43:59 2003 +0000 - - Dutch translation updated by Vincent van Adrighem. - - 2003-11-04 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - - po/ChangeLog | 4 + - po/nl.po | 2051 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1142 insertions(+), 913 deletions(-) - -commit 8b4d044d4de65fc02692132a1471795ce26dcdc5 -Author: Christian Persch -Date: Mon Nov 3 22:41:37 2003 +0000 - - Remove unused types. - - 2003-11-03 Christian Persch - - * lib/ephy-marshal.list: - - Remove unused types. - - * embed/ephy-embed.c: (ephy_embed_base_init): - * lib/widgets/ephy-arrow-toolbutton.c: - (ephy_arrow_toolbutton_class_init): - * src/ephy-notebook.c: (ephy_notebook_class_init): - - Use g_cclosure_marshal_* instead of our own ephy_marshal_* - where there is a one. - - For signals returning a boolean, use the - g_signal_accumulator_true_handled accumulator. - - ChangeLog | 17 +++++++++++++++++ - embed/ephy-embed.c | 26 +++++++++++++------------- - lib/ephy-marshal.list | 19 ++++--------------- - lib/widgets/ephy-arrow-toolbutton.c | 2 +- - src/ephy-notebook.c | 8 ++++---- - 5 files changed, 39 insertions(+), 33 deletions(-) - -commit 2f10c10cd81abd29f24ace8c128a5b5d3244fbdd -Author: Xan Lopez -Date: Sun Nov 2 22:31:18 2003 +0000 - - Remove the "show_details in downloader" schema. - - - * data/epiphany.schemas.in: - - Remove the "show_details in downloader" schema. - - * embed/ephy-embed-popup-control.c: (save_url): - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * lib/ephy-prefs.h: - * src/popup-commands.c: (save_property_url): - - Implement the new downloading mechanism in CH, also rename - CONF_STATE_DOWNLOADING_DIR to CONF_STATE_DOWNLOAD_DIR. - - ChangeLog | 15 +++++++ - data/epiphany.schemas.in | 11 ----- - embed/ephy-embed-popup-control.c | 2 +- - embed/mozilla/ContentHandler.cpp | 86 ++++++++++++++----------------------- - embed/mozilla/EphyHeaderSniffer.cpp | 4 +- - lib/ephy-prefs.h | 2 +- - src/popup-commands.c | 2 +- - 7 files changed, 53 insertions(+), 69 deletions(-) - -commit bce28d78b08a72c11b9cbb8a798d7b59564fe1f2 -Author: Christian Persch -Date: Sun Nov 2 19:20:37 2003 +0000 - - Initialise the dialogue on run too. - - 2003-11-02 Christian Persch - - * lib/ephy-dialog.c: (impl_run): - - Initialise the dialogue on run too. - - ChangeLog | 6 ++++++ - lib/ephy-dialog.c | 8 ++++++++ - 2 files changed, 14 insertions(+) - -commit 768567d3d36f935870adc47bb0b5930db1549e15 -Author: Christian Persch -Date: Sun Nov 2 19:01:43 2003 +0000 - - Adjust return value so that mozilla doesn't erreonously put up a failure - - 2003-11-02 Christian Persch - - * embed/mozilla/PrintingPromptService.cpp: (ShowPrintDialog): - - Adjust return value so that mozilla doesn't erreonously put up - a failure dialogue. - - ChangeLog | 7 +++++++ - embed/mozilla/PrintingPromptService.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 3a4e04be99f31b2fbf4515efd5bc369630dc4006 -Author: Christian Persch -Date: Sun Nov 2 18:53:36 2003 +0000 - - Don't unref the print dialogue twice when shown from mozilla. - - 2003-11-02 Christian Persch - - * embed/mozilla/PrintingPromptService.cpp: - * embed/print-dialog.c: (print_dialog_new), - (print_dialog_new_with_parent), (print_dialog_print), - (print_cancel_button_cb), (print_preview_button_cb): - - Don't unref the print dialogue twice when shown from - mozilla. - - ChangeLog | 10 +++++++++ - embed/mozilla/PrintingPromptService.cpp | 11 ++++++++-- - embed/print-dialog.c | 39 +++++++++++++++++++++++++++------ - 3 files changed, 51 insertions(+), 9 deletions(-) - -commit 1ea57d5ec0e658a86e5eb61842c34dcbc1f54120 -Author: Christian Persch -Date: Sun Nov 2 10:48:30 2003 +0000 - - Unset silent mode after printing, should fix bug #125984. - - 2003-11-02 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: (impl_print): - - Unset silent mode after printing, should fix bug #125984. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 3 +++ - 2 files changed, 9 insertions(+) - -commit 6e405014c2d318e595d777efdac6c23e5bce1a69 -Author: Paul Duffy -Date: Sat Nov 1 18:53:08 2003 +0000 - - Fixed formatting errors. Submitted by David O'Callaghan - - * ga.po: Fixed formatting errors. Submitted by - David O'Callaghan - - po/ChangeLog | 5 + - po/ga.po | 6220 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 3290 insertions(+), 2935 deletions(-) - -commit 3dd224ab9286d3099a503d21a0771417372b377e -Author: Christian Persch -Date: Sat Nov 1 13:43:47 2003 +0000 - - Only save history db if there have been changes. Fixes bug #125973. - - 2003-11-01 Christian Persch - - * embed/ephy-history.c: (ephy_history_save), (hosts_added_cb), - (hosts_removed_cb), (hosts_changed_cb), (pages_added_cb), - (pages_removed_cb), (pages_changed_cb), (ephy_history_init): - - Only save history db if there have been changes. Fixes bug #125973. - - ChangeLog | 8 ++++++++ - embed/ephy-history.c | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 56 insertions(+), 1 deletion(-) - -commit 0cbb825713bb897942a709b09f98d0f123075794 -Author: Christian Persch -Date: Sat Nov 1 13:35:53 2003 +0000 - - Don't set the persist key on object construction time. Fixes bug #125589. - - 2003-11-01 Christian Persch - - * embed/mozilla/FilePicker.cpp: - * lib/ephy-file-chooser.c: (current_folder_changed_cb), - (ephy_file_chooser_init), (ephy_file_chooser_set_persist_key), - (ephy_file_chooser_get_persist_key), - (ephy_file_chooser_get_property), (ephy_file_chooser_class_init), - (ephy_file_chooser_new): - * lib/ephy-file-chooser.h: - - Don't set the persist key on object construction time. - Fixes bug #125589. - - ChangeLog | 13 +++++++ - embed/mozilla/FilePicker.cpp | 12 +++++-- - lib/ephy-file-chooser.c | 81 +++++++++++++++++++++++++++----------------- - lib/ephy-file-chooser.h | 15 +++++--- - 4 files changed, 82 insertions(+), 39 deletions(-) - -commit 8403d68e57c5495b753c3b845244c794c17fbfdf -Author: Marcel Telka -Date: Sat Nov 1 07:07:11 2003 +0000 - - Updated Slovak translation. - - 2003-11-01 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 1817 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1002 insertions(+), 819 deletions(-) - -commit e04a6b4013d2f274880e4e449f5c8dade2fc9cb8 -Author: Christian Rose -Date: Sat Nov 1 01:54:06 2003 +0000 - - Fixed bugs. - - 2003-11-01 Christian Rose - - * sv.po: Fixed bugs. - - po/ChangeLog | 4 ++++ - po/sv.po | 7 ++++--- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit eb9b70a441c5955da66a36d049402b510c8d7cf8 -Author: Christian Neumair -Date: Fri Oct 31 13:55:07 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 2231 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 1158 insertions(+), 1077 deletions(-) - -commit 67430590bb00c7265876fc25e6339c3fa33ca1de -Author: Christian Persch -Date: Fri Oct 31 13:13:06 2003 +0000 - - Correctly set the embed for the print dialogue. - - 2003-10-31 Christian Persch - - * embed/mozilla/MozillaPrivate.cpp: - * embed/mozilla/MozillaPrivate.h: - * embed/mozilla/PrintingPromptService.cpp: - - Correctly set the embed for the print dialogue. - - ChangeLog | 8 ++++++++ - embed/mozilla/MozillaPrivate.cpp | 15 +++++++++++++-- - embed/mozilla/MozillaPrivate.h | 2 ++ - embed/mozilla/PrintingPromptService.cpp | 7 +++++-- - 4 files changed, 28 insertions(+), 4 deletions(-) - -commit 5909ee59ade218fcaab27cc4446e5ab384d90679 -Author: Marco Pesenti Gritti -Date: Fri Oct 31 13:10:43 2003 +0000 - - Use gnomevfs helper to open applications, drop our own. - - 2003-10-31 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - * lib/ephy-file-helpers.c: - * lib/ephy-file-helpers.h: - - Use gnomevfs helper to open applications, drop our own. - - ChangeLog | 8 ++ - embed/mozilla/ContentHandler.cpp | 11 +-- - lib/ephy-file-helpers.c | 176 --------------------------------------- - lib/ephy-file-helpers.h | 4 - - 4 files changed, 14 insertions(+), 185 deletions(-) - -commit 8ae13251b8cd09e1d077ec1ae46b481769c955f2 -Author: Marco Pesenti Gritti -Date: Fri Oct 31 11:07:58 2003 +0000 - - *** empty log message *** - - lib/egg/egg-toolbar-editor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f46f9dd484c83d85ee3ace18ec1cb15473c0f2d2 -Author: Marco Pesenti Gritti -Date: Fri Oct 31 11:07:30 2003 +0000 - - Set the cursor hotspot to something sensible. All bugs seem to be gone - - 2003-10-31 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (set_drag_cursor): - * lib/egg/egg-toolbar-editor.c: (set_drag_cursor): - - Set the cursor hotspot to something sensible. All bugs - seem to be gone here, feel free to report more ;) - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit fc8ce911b63ee1197effa81591c73fe8cab353d2 -Author: Marco Pesenti Gritti -Date: Fri Oct 31 10:56:24 2003 +0000 - - When changing toolbar unhighlight the old one, not the new - - 2003-10-31 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (toolbar_drag_motion_cb): - - When changing toolbar unhighlight the old one, not the new - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 0bf20d0ea2f023c7c805ee5034f525699e068d3f -Author: Christian Persch -Date: Thu Oct 30 18:45:34 2003 +0000 - - Yet another mozilla API change. - - 2003-10-30 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: (getUILang): - * configure.in: - - Yet another mozilla API change. - - ChangeLog | 7 +++++++ - configure.in | 32 +++++++++++++++++++++++++------- - embed/mozilla/mozilla-embed-single.cpp | 7 ++++++- - 3 files changed, 38 insertions(+), 8 deletions(-) - -commit a14bb2d6611954d5d91cbef853a01af989dd9804 -Author: Marco Pesenti Gritti -Date: Thu Oct 30 16:38:53 2003 +0000 - - Do not require a parent window - - 2003-10-30 Marco Pesenti Gritti - - * embed/mozilla/FilePicker.cpp: - - Do not require a parent window - - ChangeLog | 6 ++++++ - embed/mozilla/FilePicker.cpp | 9 +++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit beb24485f79f1131be3d5fa006447d57e5be6873 -Author: Marco Pesenti Gritti -Date: Thu Oct 30 16:32:14 2003 +0000 - - Fix creation of special drag types items - - 2003-10-30 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (drag_data_received_cb): - - Fix creation of special drag types items - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 23 ++++++++++++++--------- - 2 files changed, 20 insertions(+), 9 deletions(-) - -commit a28245ea668203b1b2ffabb0b054660e88986a3f -Author: Marco Pesenti Gritti -Date: Thu Oct 30 11:52:45 2003 +0000 - - Add a title param to dnd iterator and remove unused screen location - - 2003-10-30 Marco Pesenti Gritti - - * lib/ephy-dnd.c: (add_one_netscape_url), (add_one_uri), - (add_one_topic): - * lib/ephy-dnd.h: - * lib/widgets/ephy-tree-model-sort.c: - (each_property_get_data_binder): - * src/ephy-favicon-action.c: (each_url_get_data_binder): - - Add a title param to dnd iterator and remove unused screen - location params. - - ChangeLog | 12 ++++++++++++ - lib/ephy-dnd.c | 14 ++++++++++---- - lib/ephy-dnd.h | 2 +- - lib/widgets/ephy-tree-model-sort.c | 2 +- - src/ephy-favicon-action.c | 6 +----- - 5 files changed, 25 insertions(+), 11 deletions(-) - -commit 956c01fa73fe077bcec0d9cb92d6284dabc037bc -Author: Kostas Papadimas -Date: Wed Oct 29 22:15:08 2003 +0000 - - Updated the Greek translation - - po/ChangeLog | 4 + - po/el.po | 2526 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1386 insertions(+), 1144 deletions(-) - -commit dd37d52cd37c158e9a6219163336b25b90a33764 -Author: Christian Persch -Date: Wed Oct 29 19:49:38 2003 +0000 - - Add public function to get a host node from a page url. - - 2003-10-29 Christian Persch - - * embed/ephy-history.c: (ephy_history_add_host), - (ephy_history_get_host): - * embed/ephy-history.h: - - Add public function to get a host node from a page url. - - * src/ephy-tab.c: (address_has_web_scheme), (ephy_tab_address_cb), - (ephy_tab_zoom_changed_cb), (open_link_in_new_tab), - (ephy_tab_init): - - Persist zoom settings per host. - - ChangeLog | 14 +++++++ - embed/ephy-history.c | 17 +++++++-- - embed/ephy-history.h | 6 ++- - src/ephy-tab.c | 106 +++++++++++++++++++++++++++++++++++++++++++-------- - 4 files changed, 123 insertions(+), 20 deletions(-) - -commit cc10162908abf03fe5e1998d5cee1b41f21e791c -Author: Soren Sandmann -Date: Wed Oct 29 18:26:30 2003 +0000 - - Make it use new api and make the highlighting a good deal smoother. - - 2003-10-29 Soren Sandmann - - * lib/egg/egg-editable-toolbar.c: (drag_data_received_cb), - (free_dragged_item), (toolbar_drag_drop_cb), - (toolbar_drag_motion_cb), (toolbar_drag_leave_cb), - (toolbar_added_cb), (item_removed_cb): - - Make it use new api and make the highlighting a good deal - smoother. - - ChangeLog | 10 +++ - lib/egg/egg-editable-toolbar.c | 169 +++++++++++++++++++++++++---------------- - 2 files changed, 112 insertions(+), 67 deletions(-) - -commit 12070577c357bfad452af9f0575cbd374d559a70 -Author: KAMAGASAKO Masatoshi -Date: Wed Oct 29 15:58:12 2003 +0000 - - Updated Japanese translation. - - 2003-10-30 KAMAGASAKO Masatoshi - - * ja.po: Updated Japanese translation. - - po/ChangeLog | 4 + - po/ja.po | 3283 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1934 insertions(+), 1353 deletions(-) - -commit 33f74133e5d7626a2aabaa25c50ab2e9d4425505 -Author: Marco Pesenti Gritti -Date: Wed Oct 29 00:08:01 2003 +0000 - - We cant cache mDOMDocument, it changes for every document loaded. Remove - - 2003-10-29 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EventContext.cpp: - - We cant cache mDOMDocument, it changes for - every document loaded. - Remove some unused methods from definition. - - ChangeLog | 10 ++++++++++ - embed/mozilla/EphyBrowser.cpp | 8 +++----- - embed/mozilla/EphyBrowser.h | 7 +------ - embed/mozilla/EventContext.cpp | 6 +----- - 4 files changed, 15 insertions(+), 16 deletions(-) - -commit ec20564f0a61b4f1dc58d9ec490d4b66a6543ae0 -Author: Marco Pesenti Gritti -Date: Tue Oct 28 23:41:25 2003 +0000 - - Make some vars private, remove an unused one. - - 2003-10-29 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - - Make some vars private, remove an unused one. - - * embed/mozilla/EventContext.cpp: - - Use the content dom document to determine - is_framed_page. - - ChangeLog | 12 ++++++++++++ - embed/mozilla/EphyBrowser.cpp | 4 +--- - embed/mozilla/EphyBrowser.h | 7 +++---- - embed/mozilla/EventContext.cpp | 6 +++++- - 4 files changed, 21 insertions(+), 8 deletions(-) - -commit b46894849a0793af0e19e860d4900ad7929fa1e9 -Author: Xan Lopez -Date: Tue Oct 28 23:24:25 2003 +0000 - - Forgot this. - - - * lib/ephy-prefs.h: - - Forgot this. - - ChangeLog | 6 ++++++ - lib/ephy-prefs.h | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 74b29db83dcbae7d8d1f953a4d2f831ef1144c78 -Author: Xan Lopez -Date: Tue Oct 28 23:22:22 2003 +0000 - - Implement smart selection in the downloader view. - - - * embed/downloader-view.c: (downloader_view_remove_download): - - Implement smart selection in the downloader view. - - * data/epiphany.schemas.in: - * embed/ephy-embed-popup-control.c: - (embed_popup_download_link_cmd): - * embed/mozilla/EphyHeaderSniffer.cpp: - * lib/ephy-prefs.h: - * src/popup-commands.c: (popup_cmd_download_link): - - Make persist downloads store the files in the download dir - automatically without asking the user (key only accessible via - gconf atm). CH downloads still need fixing. - - ChangeLog | 17 ++++++++++++++ - data/epiphany.schemas.in | 11 --------- - embed/downloader-view.c | 46 ++++++++++++++++++++++++++++++++----- - embed/ephy-embed-popup-control.c | 3 +-- - embed/mozilla/EphyHeaderSniffer.cpp | 43 ++++++++++++++++++++++++++++++---- - src/popup-commands.c | 6 ++--- - 6 files changed, 99 insertions(+), 27 deletions(-) - -commit 55e15cb762ccb0fa32fbab23a6afb59e9770e036 -Author: Christian Persch -Date: Tue Oct 28 22:51:54 2003 +0000 - - Always list "Off" as first item in the list of autodetectors. Fixes bug - - 2003-10-28 Christian Persch - - * src/prefs-dialog.c: (sort_detectors), (create_optionmenu), - (prefs_dialog_init): - - Always list "Off" as first item in the list of autodetectors. - Fixes bug #125723. - - ChangeLog | 8 ++++++++ - src/prefs-dialog.c | 31 +++++++++++++++++++++++++++++-- - 2 files changed, 37 insertions(+), 2 deletions(-) - -commit 4998a603941458209b5b6b2a69ba46335f2dbc27 -Author: Marco Pesenti Gritti -Date: Tue Oct 28 20:34:06 2003 +0000 - - Unref the store once added to the combo. - - 2003-10-28 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_import): - - Unref the store once added to the combo. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 1 + - 2 files changed, 7 insertions(+) - -commit 4df724e9a9fea711098542bc367c657449ba1c49 -Author: Marco Pesenti Gritti -Date: Tue Oct 28 20:21:40 2003 +0000 - - Build nautilus server only when the view is enabled - - 2003-10-28 Marco Pesenti Gritti - - * data/Makefile.am: - - Build nautilus server only when the view is enabled - - ChangeLog | 6 ++++++ - data/Makefile.am | 24 +++++++++++++++++++----- - 2 files changed, 25 insertions(+), 5 deletions(-) - -commit 70f083da41e85ed92b2ca8996ba1794066ac9560 -Author: Christian Persch -Date: Tue Oct 28 12:50:22 2003 +0000 - - Add sanity check. - - 2003-10-28 Christian Persch - - * embed/mozilla/ContentHandler.cpp: - (MimeAskActionDialog::MimeAskActionDialog): - - Add sanity check. - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 7 +++++-- - 2 files changed, 12 insertions(+), 2 deletions(-) - -commit 025c7959e438aad9770f9aa801b6ead6e19e79dd -Author: Marco Pesenti Gritti -Date: Tue Oct 28 11:33:19 2003 +0000 - - Open source in the default editor and remove the unused copy api. Add a - - 2003-10-28 Marco Pesenti Gritti - - * embed/ephy-embed-persist.h: - * embed/ephy-embed.c: - * embed/ephy-embed.h: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download): - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-shell.c: (delete_files), (ephy_shell_finalize), - (ephy_shell_new_tab), (ephy_shell_delete_on_exit): - * src/ephy-shell.h: - * src/window-commands.c: (get_editor_application), - (editor_open_uri), (save_source_completed_cb), - (editor_can_open_uri), (save_temp_source), - (window_cmd_view_page_source): - - Open source in the default editor and - remove the unused copy api. - Add a missing include while at it. - - ChangeLog | 26 +++++++ - embed/ephy-embed-persist.h | 2 +- - embed/ephy-embed.c | 9 --- - embed/ephy-embed.h | 13 ---- - embed/ephy-favicon-cache.c | 3 +- - embed/mozilla/EphyBrowser.cpp | 17 ----- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/EphyHeaderSniffer.cpp | 5 +- - embed/mozilla/EphyHeaderSniffer.h | 3 +- - embed/mozilla/MozDownload.cpp | 18 ++--- - embed/mozilla/MozDownload.h | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 18 +++-- - embed/mozilla/mozilla-embed.cpp | 25 ------ - src/ephy-shell.c | 35 ++++++--- - src/ephy-shell.h | 5 +- - src/window-commands.c | 130 ++++++++++++++++++++++++++++++-- - 16 files changed, 204 insertions(+), 109 deletions(-) - -commit 4ff6bbed9a23f05f1ee9158d2607c2e811c5de6f -Author: Danilo Šegan -Date: Tue Oct 28 04:33:55 2003 +0000 - - Updated Serbian translation. - - 2003-10-28 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 15 ++++++++++----- - po/sr@Latn.po | 15 ++++++++++----- - 3 files changed, 24 insertions(+), 10 deletions(-) - -commit c407eeb911c02bc8bd0790da08f764891779c188 -Author: Marco Pesenti Gritti -Date: Mon Oct 27 22:39:01 2003 +0000 - - Fix page cloning, I was query descriptors interface on webBrowser instead - - 2003-10-27 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - - Fix page cloning, I was query descriptors interface - on webBrowser instead of docshell. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 16 ++++++++-------- - 2 files changed, 15 insertions(+), 8 deletions(-) - -commit 6c94575f7a9971a6784905e8634fabec5683a53e -Author: Marco Pesenti Gritti -Date: Mon Oct 27 18:43:45 2003 +0000 - - We need to force the encoding to be able to unset it. - - 2003-10-27 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - - We need to force the encoding to be able - to unset it. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyBrowser.cpp | 21 ++++++++++++--------- - 2 files changed, 19 insertions(+), 9 deletions(-) - -commit e7226bd132c37ef89eb37f8a31b47c31b71ede8e -Author: Christian Persch -Date: Mon Oct 27 18:05:29 2003 +0000 - - Implement filechooser for ASK_DESTINATION. - - 2003-10-27 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - - Implement filechooser for ASK_DESTINATION. - - ChangeLog | 13 ++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 90 ++++++++++++++++++++++++++++++------- - embed/mozilla/EphyHeaderSniffer.h | 5 ++- - 3 files changed, 92 insertions(+), 16 deletions(-) - -commit 7b0fe9305597ff7bd10c4dc468ae00eab155ca36 -Author: Marco Pesenti Gritti -Date: Mon Oct 27 17:29:36 2003 +0000 - - Solving the wrapper mess THE END - - 2003-10-27 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/mozilla-embed.cpp: - - Solving the wrapper mess THE END - - An about:blank document is created syncronously - on _init, which means there are no more race conditions ! - Mozilla api is CRACK. - - ChangeLog | 12 ++++++++++ - embed/mozilla/EphyBrowser.cpp | 15 +++++++----- - embed/mozilla/EphyBrowser.h | 2 +- - embed/mozilla/mozilla-embed.cpp | 51 ++++------------------------------------- - 4 files changed, 27 insertions(+), 53 deletions(-) - -commit 03518bcc5c5aa9a9149315e932f84a0aee2d44ce -Author: Marco Pesenti Gritti -Date: Mon Oct 27 16:39:50 2003 +0000 - - Solving the wrapper mess Episode 3. Rename to EphyBrowser and add sanity - - 2003-10-27 Marco Pesenti Gritti - - * embed/mozilla/EphyBrowser.cpp: - * embed/mozilla/EphyBrowser.h: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-embed.h: - - Solving the wrapper mess Episode 3. - Rename to EphyBrowser and add sanity checks. - GtkMozEmbed initialize the browser on realize, that - means until that we shouldnt use most of the EphyBrowser - methods. I'm quite sure there are not such cases in - current implementation, otherwise we would have had - problems also before. Though better avoid problems - in the future. - - ChangeLog | 22 + - embed/mozilla/EphyBrowser.cpp | 739 ++++++++++++++++++++++++++++++++ - embed/mozilla/EphyBrowser.h | 111 +++++ - embed/mozilla/EphyWrapper.cpp | 709 ------------------------------ - embed/mozilla/EphyWrapper.h | 111 ----- - embed/mozilla/EventContext.cpp | 6 +- - embed/mozilla/EventContext.h | 6 +- - embed/mozilla/Makefile.am | 4 +- - embed/mozilla/mozilla-embed-persist.cpp | 22 +- - embed/mozilla/mozilla-embed.cpp | 100 ++--- - embed/mozilla/mozilla-embed.h | 4 +- - 11 files changed, 943 insertions(+), 891 deletions(-) - -commit 971cc4759cceb6a5842bf4d2016eb5c8e71896a8 -Author: Marco Pesenti Gritti -Date: Mon Oct 27 16:20:17 2003 +0000 - - *** empty log message *** - - ChangeLog | 13 +++ - embed/mozilla/EphyWrapper.cpp | 21 ++-- - embed/mozilla/EphyWrapper.h | 1 + - embed/mozilla/mozilla-embed.cpp | 208 ++++++++++++++++------------------------ - 4 files changed, 110 insertions(+), 133 deletions(-) - -commit 0c602edff1de6eaf85746201f94e2b1c4d815da0 -Author: Marco Pesenti Gritti -Date: Mon Oct 27 15:18:14 2003 +0000 - - Solving the wrapper mess Episode 1. - - 2003-10-27 Marco Pesenti Gritti - - * embed/ephy-embed.c: - * embed/ephy-embed.h: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed.cpp: - - Solving the wrapper mess Episode 1. - - Cleanup EphyWrapper to use higher level apis. - Do not set docshell history explicitly, it seem - to pickup the registered one nicely. - - ChangeLog | 16 ++ - embed/ephy-embed.c | 8 - - embed/ephy-embed.h | 5 - - embed/mozilla/EphyWrapper.cpp | 253 ++++++-------------------------- - embed/mozilla/EphyWrapper.h | 21 +-- - embed/mozilla/EventContext.cpp | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 4 +- - embed/mozilla/mozilla-embed.cpp | 43 +----- - 8 files changed, 74 insertions(+), 278 deletions(-) - -commit 21f69a6461a12704c97fad51d7ac709faab90cdc -Author: Marco Pesenti Gritti -Date: Mon Oct 27 11:59:10 2003 +0000 - - Sink after ref - - 2003-10-27 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_set_fixed): - - Sink after ref - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 1 + - 2 files changed, 7 insertions(+) - -commit 8102583a5ae581f5e7490f8a0cc0cfeec2266499 -Author: Marco Pesenti Gritti -Date: Mon Oct 27 10:16:10 2003 +0000 - - Sync with nautilus api - - 2003-10-27 Marco Pesenti Gritti - - * src/ephy-nautilus-view.c: (gnv_embed_dom_mouse_click_cb), - (gnv_popup_cmd_new_window), (gnv_popup_cmd_image_in_new_window), - (gnv_popup_cmd_frame_in_new_window): - - Sync with nautilus api - - ChangeLog | 8 ++++++++ - src/ephy-nautilus-view.c | 24 ++++++++++++++++-------- - 2 files changed, 24 insertions(+), 8 deletions(-) - -commit 32ccc668ac8e87ec9dd67b9d594a7fcf89381776 -Author: Marco Pesenti Gritti -Date: Mon Oct 27 08:13:36 2003 +0000 - - Fixup spinner when resetting the toolbar model. Update spinner on toolbar - - 2003-10-27 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (create_dock), (set_fixed_style), - (unset_fixed_style), (toolbar_changed_cb), (unparent_fixed), - (update_fixed), (toolbar_removed_cb), (toolbars_clean), - (egg_editable_toolbar_construct), (egg_editable_toolbar_init), - (egg_editable_toolbar_finalize), (egg_editable_toolbar_set_fixed): - * lib/egg/egg-editable-toolbar.h: - * src/toolbar.c: (toolbar_style_sync), (create_spinner), - (toolbar_init): - - Fixup spinner when resetting the toolbar model. - Update spinner on toolbar style change. - Fix a typo in toolbars creation that wa causing fs toolbar - to be hidden. - - ChangeLog | 16 ++++++++ - lib/egg/egg-editable-toolbar.c | 91 ++++++++++++++++++++++++++++++------------ - lib/egg/egg-editable-toolbar.h | 3 +- - src/toolbar.c | 35 ++++++++++++++-- - 4 files changed, 114 insertions(+), 31 deletions(-) - -commit 36dc5ffa3ccd419fa87677829f7e49556528ccb1 -Author: Marco Pesenti Gritti -Date: Mon Oct 27 00:41:16 2003 +0000 - - *** empty log message *** - - src/ephy-nautilus-view.c | 1 - - 1 file changed, 1 deletion(-) - -commit 0c3ba60eb9346c3bf7854b35fb7257ae4da56e35 -Author: Danilo Šegan -Date: Sun Oct 26 22:13:13 2003 +0000 - - Updated Serbian translation. - - 2003-10-26 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 240 +++++++++++++++++++++++++++++++++------------------------- - po/sr@Latn.po | 240 +++++++++++++++++++++++++++++++++------------------------- - 3 files changed, 278 insertions(+), 206 deletions(-) - -commit cd00d9a2484abae5a59ea9858197b1d97fed7f34 -Author: Metin Amiroff -Date: Sun Oct 26 13:30:57 2003 +0000 - - Updated Azerbaijani translation. - - 2003-10-26 Metin Amiroff - - * az.po: Updated Azerbaijani translation. - - po/ChangeLog | 4 + - po/az.po | 1756 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 858 insertions(+), 902 deletions(-) - -commit 39246b052b1c9188cadbbcc2582f9d9430a8f1ae -Author: Christian Persch -Date: Sun Oct 26 12:54:20 2003 +0000 - - Convert filenames from/to UTF-8 when persisting the directory. - - 2003-10-26 Christian Persch - - * lib/ephy-file-chooser.c: (current_folder_changed_cb), - (ephy_file_chooser_set_persist_key): - - Convert filenames from/to UTF-8 when persisting the directory. - - ChangeLog | 7 +++++++ - lib/ephy-file-chooser.c | 29 ++++++++++++++++++++--------- - 2 files changed, 27 insertions(+), 9 deletions(-) - -commit 9606f610928632663ae8bba5691aa614d098936e -Author: Carlos Perelló Marín -Date: Sun Oct 26 12:13:18 2003 +0000 - - Fixed. - - 2003-10-26 Carlos Perelló Marín - - * POTFILES.in: Fixed. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 - - 2 files changed, 4 insertions(+), 1 deletion(-) - -commit d1329e92440850b0dcf781c1f8c9566d0fde3f74 -Author: Christian Persch -Date: Sun Oct 26 11:07:48 2003 +0000 - - Really used the converted string [in UTF-8] instead of the directly using - - 2003-10-26 Christian Persch - - * src/window-commands.c: (open_response_cb): - - Really used the converted string [in UTF-8] instead of - the directly using filename. - - ChangeLog | 7 +++++++ - src/window-commands.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 52d5569982192a6e9d7813a9674c4e5f0cc880f5 -Author: Christian Persch -Date: Sun Oct 26 11:01:23 2003 +0000 - - One set of buttons is enough. - - 2003-10-26 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - (import_dialog_response_cb): - - One set of buttons is enough. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 7 +------ - 2 files changed, 8 insertions(+), 6 deletions(-) - -commit eb6b2cdb2e89e41759cf3b1cd136cfca42e6e42b -Author: Christian Persch -Date: Sun Oct 26 10:45:56 2003 +0000 - - Port to new gtk+ file chooser. - - 2003-10-26 Christian Persch - - Port to new gtk+ file chooser. - - * data/epiphany.schemas.in: - * lib/ephy-prefs.h: - - Add key for remembering upload path. - - * embed /Makefile.am: - * embed/downloader-view.c: - * embed/ephy-embed-persist.c: (ephy_embed_persist_get_type), - (ephy_embed_persist_set_dest), (ephy_embed_persist_set_embed), - (ephy_embed_persist_set_fc_title), - (ephy_embed_persist_set_fc_parent), (ephy_embed_persist_set_flags), - (ephy_embed_persist_set_max_size), - (ephy_embed_persist_set_persist_key), - (ephy_embed_persist_set_source), (ephy_embed_persist_get_dest), - (ephy_embed_persist_get_embed), (ephy_embed_persist_get_fc_title), - (ephy_embed_persist_get_fc_parent), (ephy_embed_persist_get_flags), - (ephy_embed_persist_get_max_size), - (ephy_embed_persist_get_persist_key), - (ephy_embed_persist_get_source), (ephy_embed_persist_set_property), - (ephy_embed_persist_get_property), (ephy_embed_persist_init), - (ephy_embed_persist_finalize), (ephy_embed_persist_class_init), - (ephy_embed_persist_cancel), (ephy_embed_persist_save), - (ephy_embed_persist_new): - * embed/ephy-embed-persist.h: - * embed/ephy-embed-popup-control.c: (save_url), - (save_property_url), (background_download_completed), - (embed_popup_set_image_as_background_cmd), - (embed_popup_copy_image_location_cmd): - * src/popup-commands.c: (save_property_url), - (background_download_completed), - (popup_cmd_set_image_as_background): - * src/window-commands.c: (open_response_cb), - (window_cmd_file_open), (window_cmd_file_save_as): - * src/window-commands.h: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get_type), - (ephy_favicon_cache_new), (icon_is_obsolete), (icons_added_cb), - (remove_obsolete_icons), (ephy_favicon_cache_init), - (favicon_download_completed_cb), (ephy_favicon_cache_download), - (ephy_favicon_cache_get): - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - * src/popup-commands.c: (save_property_url), - (background_download_completed), - (popup_cmd_set_image_as_background): - * src/window-commands.c: (open_response_cb), - (window_cmd_file_open), (window_cmd_file_save_as): - * src/window-commands.h: - - Simplify EphyEmbedPersist implementation. Augment it with properties - for showing a file chooser to select persist destination. Port all - callers to new interfaces. - - * embed/ephy-embed-single.c: (ephy_embed_single_remove_passwords): - * embed/ephy-embed-single.h: - - * embed/ephy-embed-utils.c: - * embed/ephy-embed-utils.h: - - Obsolete and removed. - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - - Misc cleanups. - - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/FilePicker.h: - - Port to new file chooser class. - - * embed/mozilla/Makefile.am: - * lib/Makefile.am: - * lib/ephy-file-chooser.c: (ephy_file_chooser_get_type), - (current_folder_changed_cb), (ephy_file_chooser_init), - (ephy_file_chooser_finalize), (ephy_file_chooser_set_persist_key), - (ephy_file_chooser_set_property), (ephy_file_chooser_get_property), - (ephy_file_chooser_class_init), (ephy_file_chooser_new): - * lib/ephy-file-chooser.h: - * src/bookmarks/ephy-bookmarks-editor.c: - (import_from_file_response_cb), (import_dialog_response_cb): - - New file chooser wrapper class; ported file chooser callers to it. - - ChangeLog | 89 +++++ - data/epiphany.schemas.in | 9 + - embed/Makefile.am | 2 - - embed/downloader-view.c | 1 - - embed/ephy-embed-persist.c | 673 +++++++++++++++----------------- - embed/ephy-embed-persist.h | 101 +++-- - embed/ephy-embed-popup-control.c | 79 ++-- - embed/ephy-embed-single.c | 38 +- - embed/ephy-embed-single.h | 21 +- - embed/ephy-embed-utils.c | 214 ---------- - embed/ephy-embed-utils.h | 39 -- - embed/ephy-favicon-cache.c | 67 ++-- - embed/mozilla/ContentHandler.cpp | 74 ++-- - embed/mozilla/ContentHandler.h | 5 + - embed/mozilla/EphyHeaderSniffer.cpp | 26 +- - embed/mozilla/FilePicker.cpp | 503 ++++++++++-------------- - embed/mozilla/FilePicker.h | 55 +-- - embed/mozilla/Makefile.am | 1 + - embed/mozilla/MozDownload.cpp | 7 +- - embed/mozilla/mozilla-embed-persist.cpp | 9 +- - embed/mozilla/mozilla-embed-single.cpp | 72 +--- - lib/Makefile.am | 2 + - lib/ephy-file-chooser.c | 238 +++++++++++ - lib/ephy-file-chooser.h | 66 ++++ - lib/ephy-prefs.h | 1 + - src/bookmarks/ephy-bookmarks-editor.c | 47 ++- - src/ephy-window.c | 21 +- - src/popup-commands.c | 40 +- - src/window-commands.c | 88 ++--- - src/window-commands.h | 1 - - 30 files changed, 1254 insertions(+), 1335 deletions(-) - -commit a34a545dbe35d250c5f5743634909ad2a45f423b -Author: Christian Persch -Date: Sun Oct 26 09:20:15 2003 +0000 - - Added GTKNSSKeyPairDialogs.cpp. - - 2003-10-26 Christian Persch - - * POTFILES.in: Added GTKNSSKeyPairDialogs.cpp. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit cfaadcef5556fd5a4fdb11bbc6c20da74c44dba3 -Author: Danilo Šegan -Date: Sun Oct 26 00:47:15 2003 +0000 - - Updated Serbian translation. - - 2003-10-26 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 272 +++++++++++++++++++++++++++++++++++++++++++--------------- - po/sr@Latn.po | 272 +++++++++++++++++++++++++++++++++++++++++++--------------- - 3 files changed, 408 insertions(+), 140 deletions(-) - -commit 5ec856546bb5bcca5f3edf038c5bc7b4af5df5ea -Author: Marco Pesenti Gritti -Date: Sun Oct 26 00:35:37 2003 +0000 - - Resync api - - 2003-10-26 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (toolbar_drag_motion_cb): - - Resync api - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 9 +++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit 83ddf1c6ee374a54f26a09f5bdde799607ed6524 -Author: Christian Persch -Date: Sat Oct 25 23:12:13 2003 +0000 - - Use "" instead of null, the new mozilla prefs parser doesn't recognise - - 2003-10-25 Christian Persch - - * data/default-prefs.js: - - Use "" instead of null, the new mozilla prefs parser doesn't - recognise null and aborts. Thanks to Crispin for alerting me - to this. - - ChangeLog | 8 ++++++++ - data/default-prefs.js | 4 ++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 471405ef6813a0fbec1eaf34e363f6d8e985bc4d -Author: Christian Persch -Date: Sat Oct 25 21:58:34 2003 +0000 - - Add missing font.size prefs for zh-HK font group. - - 2003-10-25 Christian Persch - - * data/default-prefs.js: - - Add missing font.size prefs for zh-HK font group. - - ChangeLog | 6 ++++++ - data/default-prefs.js | 2 ++ - 2 files changed, 8 insertions(+) - -commit d555b0575063b4faba13f828b4dd3f44abf40df8 -Author: Marco Pesenti Gritti -Date: Sat Oct 25 15:16:28 2003 +0000 - - *** empty log message *** - - src/window-commands.c | 13 +++++++++---- - 1 file changed, 9 insertions(+), 4 deletions(-) - -commit 38956a20d942387e3d5b839c4b962713bd60cdf0 -Author: Marco Pesenti Gritti -Date: Sat Oct 25 15:15:35 2003 +0000 - - Interface for commands. Useful for undo. (cmd_undo works). - - 2003-10-25 Marco Pesenti Gritti - - * embed/Makefile.am: - * embed/ephy-command-manager.c: (ephy_command_manager_get_type), - (ephy_command_manager_base_init), - (ephy_command_manager_do_command), - (ephy_command_manager_can_do_command), - (ephy_command_manager_observe_command): - * embed/ephy-command-manager.h: - - Interface for commands. Useful for undo. (cmd_undo works). - - * embed/ephy-embed.c: - * embed/ephy-embed.h: - - Remove all clipboard calls. - - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed.cpp: - - Implement part of the commands interface. - No regressions. - - * src/window-commands.c: (window_cmd_edit_cut), - (window_cmd_edit_copy), (window_cmd_edit_paste), - (window_cmd_edit_select_all): - - Implement clipboard using commands. - - ChangeLog | 31 +++++++ - embed/Makefile.am | 2 + - embed/ephy-command-manager.c | 104 +++++++++++++++++++++++ - embed/ephy-command-manager.h | 69 ++++++++++++++++ - embed/ephy-embed.c | 49 ----------- - embed/ephy-embed.h | 22 ----- - embed/mozilla/EphyWrapper.cpp | 53 +++--------- - embed/mozilla/EphyWrapper.h | 16 +--- - embed/mozilla/Makefile.am | 1 + - embed/mozilla/mozilla-embed.cpp | 179 ++++++++++++---------------------------- - 10 files changed, 273 insertions(+), 253 deletions(-) - -commit 20602830fa6d28dd28cab60de0698ec523b1c6b9 -Author: Xan Lopez -Date: Sat Oct 25 12:28:31 2003 +0000 - - Remove a debug print, don't do anything on wm delete event. - - - * embed/downloader-view.c: (downloader_view_build_ui), - (download_dialog_delete_cb): - - Remove a debug print, don't do anything on wm delete - event. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 4 +--- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit e9461d342ebf973f773255bd3b3f3c280bd15671 -Author: Marco Pesenti Gritti -Date: Sat Oct 25 12:27:19 2003 +0000 - - Resync with galeon. - - 2003-10-25 Marco Pesenti Gritti - - * embed/mozilla/GtkNSSDialogs.cpp: - * embed/mozilla/GtkNSSDialogs.h: - * embed/mozilla/GtkNSSKeyPairDialogs.cpp: - * embed/mozilla/GtkNSSKeyPairDialogs.h: - * embed/mozilla/Makefile.am: - - Resync with galeon. - - ChangeLog | 10 + - embed/mozilla/GtkNSSDialogs.cpp | 1097 ++++++++++++++++++++++++++++--- - embed/mozilla/GtkNSSDialogs.h | 6 +- - embed/mozilla/GtkNSSKeyPairDialogs.cpp | 699 ++++++++++++++++++++ - embed/mozilla/GtkNSSKeyPairDialogs.h | 32 + - embed/mozilla/Makefile.am | 2 + - embed/mozilla/MozRegisterComponents.cpp | 14 + - 7 files changed, 1784 insertions(+), 76 deletions(-) - -commit be12670c97b27dc7af2fd1130a1fb05ae28e39f1 -Author: Xan Lopez -Date: Sat Oct 25 12:13:53 2003 +0000 - - Remove open button, autclose when there are no downloads left. - - - * data/glade/epiphany.glade: - * embed/downloader-view.c: (downloader_view_init), - (downloader_view_finalize), (get_row_from_download), - (download_changed_cb), (downloader_view_add_download), - (downloader_view_build_ui), (downloader_view_remove_download), - (download_dialog_delete_cb): - - Remove open button, autclose when there are no downloads left. - - ChangeLog | 11 ++++++++++ - data/glade/epiphany.glade | 13 ----------- - embed/downloader-view.c | 55 +++++++++++++---------------------------------- - 3 files changed, 26 insertions(+), 53 deletions(-) - -commit 4852a78f0af3501d8a2e0afa760240963861ce84 -Author: Metin Amiroff -Date: Sat Oct 25 11:52:34 2003 +0000 - - Updated Azerbaijani translation. - - 2003-10-25 Metin Amiroff - - * az.po: Updated Azerbaijani translation. - - po/ChangeLog | 4 + - po/az.po | 1830 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1030 insertions(+), 804 deletions(-) - -commit 48ae0d12793616ce1376527cefa0eb97f69d8e19 -Author: David Bordoley -Date: Sat Oct 25 10:16:03 2003 +0000 - - don't pollute the statusbar with a "Done." message. - - 2003-10-25 David Bordoley - - * src/ephy-tab.c: (build_net_state_message): - - don't pollute the statusbar with a "Done." message. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0408961cb808d25737540c65ce3503e12d1d2205 -Author: Christian Persch -Date: Fri Oct 24 17:05:21 2003 +0000 - - Made encoding dialog auto-apply. - - 2003-10-24 Christian Persch - - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_response_cb), - (view_node_selected_cb), (automatic_toggled_cb), - (ephy_encoding_dialog_init): - * data/glade/epiphany.glade: - - Made encoding dialog auto-apply. - - ChangeLog | 10 +++++++++- - data/glade/epiphany.glade | 16 ++-------------- - src/ephy-encoding-dialog.c | 26 +++++++++++++++----------- - 3 files changed, 26 insertions(+), 26 deletions(-) - -commit 3f06c2cd8f49d72dfde45c08c24b398e56ea6d87 -Author: Marco Pesenti Gritti -Date: Fri Oct 24 16:28:47 2003 +0000 - - Use special drag cursors also for editor. Do not hide separator when - - 2003-10-24 Marco Pesenti Gritti - - * lib/egg/egg-toolbar-editor.c: (set_drag_cursor), - (event_box_realize_cb), (editor_create_item): - - Use special drag cursors also for editor. - Do not hide separator when dragging it. - - ChangeLog | 8 ++++++++ - lib/egg/egg-toolbar-editor.c | 35 +++++++++++++++++++++++++++++++---- - 2 files changed, 39 insertions(+), 4 deletions(-) - -commit 0504846a2bf2ead8e1bdec6fc679147232ad9bfd -Author: David Bordoley -Date: Fri Oct 24 11:39:21 2003 +0000 - - Took the open hand icon used in eog, did some gimp magic. Why am I up at - - 2003-10-24 David Bordoley - - * data/art/hand-open.png: - - Took the open hand icon used in eog, did some - gimp magic. Why am I up at 4:30 in the morning - doing this? - - ChangeLog | 9 +++++++++ - data/art/hand-open.png | Bin 434 -> 1088 bytes - 2 files changed, 9 insertions(+) - -commit 1b51b17666231e89121925681736083cb7402e42 -Author: Christian Persch -Date: Fri Oct 24 11:17:16 2003 +0000 - - Added EphyHeaderSniffer.cpp. - - 2003-10-24 Christian Persch - - * POTFILES.in: Added EphyHeaderSniffer.cpp. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 1 + - 2 files changed, 5 insertions(+) - -commit e9b286e6e0b230debf3647c8ec5d4df9d673feb8 -Author: Christian Persch -Date: Fri Oct 24 11:16:11 2003 +0000 - - Use translatable title for untitled pages. - - 2003-10-25 Christian Persch - - * embed/mozilla/EphyHeaderSniffer.cpp: - - Use translatable title for untitled pages. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 10 ++++++++-- - 2 files changed, 14 insertions(+), 2 deletions(-) - -commit 2a93fb20b6618d44c05589bb636fe77b7b04e075 -Author: Marco Pesenti Gritti -Date: Fri Oct 24 10:56:53 2003 +0000 - - Add an helper to initialize downloads. - - 2003-10-24 Marco Pesenti Gritti - - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - Add an helper to initialize downloads. - - * embed/ephy-embed-persist.h: - - Add a flag to ask destination. - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - - Use the helper. Add code to determine a good - filename. - - * embed/mozilla/mozilla-embed-persist.cpp: - - Use a MozDownload directly if there is a dest set, - it doesnt make sense to use sniffer for favicons. - - ChangeLog | 22 +++++ - embed/ephy-embed-persist.h | 3 +- - embed/mozilla/EphyHeaderSniffer.cpp | 167 +++++++++++++------------------- - embed/mozilla/EphyHeaderSniffer.h | 5 +- - embed/mozilla/MozDownload.cpp | 96 ++++++++++++++++++ - embed/mozilla/MozDownload.h | 7 ++ - embed/mozilla/mozilla-embed-persist.cpp | 48 +++++---- - 7 files changed, 229 insertions(+), 119 deletions(-) - -commit 5767e9aeb78133de615e08087cd96c4beb89f1d7 -Author: Marco Pesenti Gritti -Date: Thu Oct 23 13:45:15 2003 +0000 - - Remove invalid items - - 2003-10-23 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (create_item_from_action), - (egg_editable_toolbar_construct): - - Remove invalid items - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 23 ++++++++++++++++++++--- - 2 files changed, 27 insertions(+), 3 deletions(-) - -commit 2cb9d0fea6bf492977ab48f422a2840a675e3227 -Author: Marco Pesenti Gritti -Date: Thu Oct 23 13:32:44 2003 +0000 - - Make the spinner spin again. - - 2003-10-23 Marco Pesenti Gritti - - * src/toolbar.c: (toolbar_spinner_start), (toolbar_spinner_stop): - - Make the spinner spin again. - - ChangeLog | 6 ++++++ - src/toolbar.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 4d8e9ed180c6d1506905e14fcc9ba26a7c24db19 -Author: Marco Pesenti Gritti -Date: Thu Oct 23 12:52:52 2003 +0000 - - Move the spinner in his own mini toolbar. - - 2003-10-23 Marco Pesenti Gritti - - * data/ui/epiphany-toolbar.xml: - * lib/egg/egg-editable-toolbar.c: (get_toolbar_position), - (get_dock_nth), (get_toolbar_nth), (create_dock), (update_fixed), - (toolbar_added_cb), (toolbar_removed_cb), - (egg_editable_toolbar_construct), (egg_editable_toolbar_init), - (egg_editable_toolbar_finalize), (egg_editable_toolbar_show), - (egg_editable_toolbar_hide), (egg_editable_toolbar_set_fixed): - * lib/egg/egg-editable-toolbar.h: - * src/Makefile.am: - * src/toolbar.c: (toolbar_setup_actions), (toolbar_init), - (toolbar_spinner_start), (toolbar_spinner_stop): - - Move the spinner in his own mini toolbar. - - ChangeLog | 16 +++ - data/ui/epiphany-toolbar.xml | 2 - - lib/egg/egg-editable-toolbar.c | 110 +++++++++++++++++---- - lib/egg/egg-editable-toolbar.h | 3 + - src/Makefile.am | 2 - - src/ephy-spinner-action.c | 220 ----------------------------------------- - src/ephy-spinner-action.h | 48 --------- - src/toolbar.c | 25 +---- - 8 files changed, 117 insertions(+), 309 deletions(-) - -commit d92e40e0fb9d3eaabb4984111887fa54b1aeb0d0 -Author: Xan Lopez -Date: Wed Oct 22 23:32:21 2003 +0000 - - Every time you change API God kills a kitten. Think of the kitten!! (That - - - * embed/mozilla/EphyEventListener.cpp: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/EventContext.cpp: - - Every time you change API God kills a kitten. - Think of the kitten!! (That means you, Mozilla :) - - ChangeLog | 10 ++++++++ - embed/mozilla/EphyEventListener.cpp | 10 ++++++++ - embed/mozilla/EphyWrapper.cpp | 51 ++++++++++++++++++++++++++----------- - embed/mozilla/EphyWrapper.h | 1 - - embed/mozilla/EventContext.cpp | 16 ++++++++++-- - 5 files changed, 70 insertions(+), 18 deletions(-) - -commit 30c4cba685f031e7b5d61ab7f86de8547d234b37 -Author: Marco Pesenti Gritti -Date: Wed Oct 22 10:14:36 2003 +0000 - - Add xml files to extra data - - 2003-10-22 Marco Pesenti Gritti - - * data/ui/Makefile.am: - - Add xml files to extra data - - ChangeLog | 6 ++++++ - data/ui/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 220f2feb98e6873d9f65244e46f9b63ff69c4d10 -Author: Yogeesh MB -Date: Wed Oct 22 09:36:29 2003 +0000 - - file kn.po was initially added on branch gnome-2-4. - -commit 99d4bcae1452ac8e3c02f793d70f325321b29d8a -Author: Marco Pesenti Gritti -Date: Wed Oct 22 08:46:04 2003 +0000 - - Update for 1.1.0 - - 2003-10-22 Marco Pesenti Gritti - - * NEWS: - - Update for 1.1.0 - - ChangeLog | 6 ++++++ - NEWS | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 58 insertions(+) - -commit 1dbdc2a7f580f59031d6eca3673f0cad536dc124 -Author: Danilo Šegan -Date: Wed Oct 22 00:06:42 2003 +0000 - - Updated Serbian translation. - - 2003-10-22 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 1319 +++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 1319 +++++++++++++++++++++++++++++---------------------------- - 3 files changed, 1334 insertions(+), 1308 deletions(-) - -commit 7006a61d4a334947ac61287033e4ed4a2cd456bd -Author: Marco Pesenti Gritti -Date: Tue Oct 21 22:14:29 2003 +0000 - - *** empty log message *** - - NEWS | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 62 insertions(+) - -commit c94b299f746a91838c8fdedc868fa249cb3edf3a -Author: Marco Pesenti Gritti -Date: Tue Oct 21 12:51:58 2003 +0000 - - Use new api for highlighting and make it pick up and drop behavior - - 2003-10-21 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (drag_begin_cb), (drag_end_cb), - (set_drag_cursor), (unset_drag_cursor), (create_item_from_action), - (create_item), (data_is_separator), (set_status_pending), - (get_status_pending), (drag_data_received_cb), (remove_toolbar_cb), - (popup_toolbar_context_menu_cb), (free_dragged_item), - (toolbar_drag_drop_cb), (toolbar_drag_motion_cb), - (toolbar_drag_leave_cb), (create_toolbar), (item_removed_cb), - (egg_editable_toolbar_set_drag_dest): - * lib/egg/egg-toolbar-editor.c: (drag_begin_cb), (drag_end_cb), - (editor_create_item): - - Use new api for highlighting and make it pick up and drop behavior - - ChangeLog | 15 ++ - lib/egg/egg-editable-toolbar.c | 420 +++++++++++++++++++++++++++-------------- - lib/egg/egg-toolbar-editor.c | 18 ++ - 3 files changed, 316 insertions(+), 137 deletions(-) - -commit 81b166aac1d79e4fda234c2528f025d2ab1768c7 -Author: Carlos Perelló Marín -Date: Mon Oct 20 22:26:38 2003 +0000 - - Updated. Removed, it's now empty. Please remember that you should update - - 2003-10-20 Carlos Perelló Marín - - * POTFILES.in: Updated. - * POTFILES.skip: Removed, it's now empty. - * Please remember that you should update thos files when - adding/removing files. - - po/ChangeLog | 7 +++++++ - po/POTFILES.in | 1 - - po/POTFILES.skip | 7 ------- - 3 files changed, 7 insertions(+), 8 deletions(-) - -commit 7213f20cbdc596daa9485446f4650eb1d294736d -Author: Christian Persch -Date: Mon Oct 20 21:22:48 2003 +0000 - - Encoding menu improvements, Episode V: MPT strikes back. - - 2003-10-20 Christian Persch - - Encoding menu improvements, Episode V: - MPT strikes back. - - * data/glade/epiphany.glade: - * embed/ephy-encodings.c: (ephy_encodings_finalize), - (ephy_encodings_init): - * embed/ephy-encodings.h: - * src/ephy-encoding-dialog.c: (encoding_is_automatic), - (sync_embed_cb), (activate_choice), - (ephy_encoding_dialog_response_cb), (view_node_selected_cb), - (view_node_activated_cb), (ephy_encoding_dialog_init): - - Replace the 2-pane view with a single list, and restore - the automatic and manual radio buttons. - - ChangeLog | 17 ++++ - data/glade/epiphany.glade | 192 ++++++++++++++++++++++++++++++++++++--------- - embed/ephy-encodings.c | 68 +--------------- - embed/ephy-encodings.h | 2 - - src/ephy-encoding-dialog.c | 183 ++++++++++++++++-------------------------- - 5 files changed, 243 insertions(+), 219 deletions(-) - -commit 58dde9fa0c4d501a0d32de681f79b308e7603c64 -Author: Marco Pesenti Gritti -Date: Mon Oct 20 07:55:06 2003 +0000 - - Make sure that both sites and hosts are filtered on construct - - 2003-10-20 Marco Pesenti Gritti - - * src/ephy-history-window.c: (setup_filters), - (ephy_history_window_construct): - - Make sure that both sites and hosts are filtered - on construct - - ChangeLog | 8 ++++++++ - src/ephy-history-window.c | 9 ++++++--- - 2 files changed, 14 insertions(+), 3 deletions(-) - -commit 97674b169b0c9762f4c3f526ec228d3a08afa327 -Author: Marco Pesenti Gritti -Date: Sun Oct 19 22:48:30 2003 +0000 - - *** empty log message *** - - ChangeLog | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 97ba3b6b0e04cfffd1d2bb08b5c4883db0045bac -Author: Marco Pesenti Gritti -Date: Sun Oct 19 18:16:55 2003 +0000 - - unref the model once it's set in the view - - 2003-10-19 Marco Pesenti Gritti - - * embed/downloader-view.c: (downloader_view_build_ui): - * src/language-editor.c: (language_editor_set_view): - - unref the model once it's set in the view - - embed/downloader-view.c | 1 + - src/language-editor.c | 1 + - 2 files changed, 2 insertions(+) - -commit 5505f084a303a81b00117f856c664a49fa9c799e -Author: Marco Pesenti Gritti -Date: Sun Oct 19 13:54:59 2003 +0000 - - Index are not identifiers - - 2003-10-19 Marco Pesenti Gritti - - * src/ephy-location-action.c: (remove_completion_actions): - - Index are not identifiers - - ChangeLog | 6 ++++++ - src/ephy-location-action.c | 5 +---- - 2 files changed, 7 insertions(+), 4 deletions(-) - -commit 89f824edb461ffa185ca78962f39f582919544f4 -Author: Marco Pesenti Gritti -Date: Sun Oct 19 13:29:46 2003 +0000 - - We cant remove while iterating childrens, build a list and remove later. - - 2003-10-19 Marco Pesenti Gritti - - * embed/ephy-history.c: (update_host_on_child_remove), - (update_hosts): - - We cant remove while iterating childrens, build a list - and remove later. - - ChangeLog | 8 ++++++++ - embed/ephy-history.c | 22 ++++++++++++++-------- - 2 files changed, 22 insertions(+), 8 deletions(-) - -commit 4e2ac65da1cf8ac42f4dbbbb1f7fe3e021433565 -Author: Christian Persch -Date: Sun Oct 19 12:54:50 2003 +0000 - - Thaw smartbookmarks node after use. - - 2003-10-19 Christian Persch - - * src/ephy-location-action.c: (init_actions_list): - - Thaw smartbookmarks node after use. - - ChangeLog | 6 ++++++ - src/ephy-location-action.c | 1 + - 2 files changed, 7 insertions(+) - -commit ffba6a5ae788b7c8ad83809a944907caa7a8fe84 -Author: Marco Pesenti Gritti -Date: Sun Oct 19 09:53:50 2003 +0000 - - Update remaning time every two seconds - - 2003-10-19 Marco Pesenti Gritti - - * TODO: - * embed/ephy-download.c: (ephy_download_class_init), - (ephy_download_init), (update_remaining_time), - (ephy_download_get_remaining_time): - * embed/ephy-download.h: - - Update remaning time every two seconds - - * embed/mozilla/mozilla-download.cpp: - - Source/target was swapped - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - - Fix style - - ChangeLog | 19 +++ - TODO | 5 +- - embed/ephy-download.c | 45 ++++++- - embed/ephy-download.h | 1 + - embed/mozilla/EphyHeaderSniffer.cpp | 260 +++++++++++++++++++----------------- - embed/mozilla/EphyHeaderSniffer.h | 45 +++---- - embed/mozilla/mozilla-download.cpp | 4 +- - 7 files changed, 221 insertions(+), 158 deletions(-) - -commit 80f66913e794ce851a9e38145fd2f0cf0ca7dd31 -Author: Marco Pesenti Gritti -Date: Sun Oct 19 00:30:08 2003 +0000 - - do not try to remove All node - - 2003-10-19 Marco Pesenti Gritti - - * embed/ephy-history.c: (update_hosts): - - do not try to remove All node - - ChangeLog | 6 ++++++ - embed/ephy-history.c | 5 ++++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit c922c7b6817055cdfd036f4aa43748dbf76fe9a4 -Author: Marco Pesenti Gritti -Date: Sun Oct 19 00:27:47 2003 +0000 - - cleanup. Fix warning when fetching favicons. - - 2003-10-19 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-persist.cpp: - - cleanup. Fix warning when fetching favicons. - - ChangeLog | 6 ++++ - embed/mozilla/mozilla-embed-persist.cpp | 59 ++++++++++++++++++--------------- - 2 files changed, 38 insertions(+), 27 deletions(-) - -commit 8a90973ba893d84946c898f137fd2efb3ced96ac -Author: Marco Pesenti Gritti -Date: Sat Oct 18 15:50:36 2003 +0000 - - Looks like I copied a bug from mozilla js code. Do not show bogus - - 2003-10-18 Marco Pesenti Gritti - - * embed/mozilla/EphyHeaderSniffer.cpp: - - Looks like I copied a bug from mozilla js code. - Do not show bogus checkbox. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 15 +++------------ - 2 files changed, 10 insertions(+), 12 deletions(-) - -commit 87aea2e047c3b6b4c3c074b2c420755addeae9fc -Author: Marco Pesenti Gritti -Date: Sat Oct 18 15:24:53 2003 +0000 - - initialize cur/total size - - 2003-10-18 Marco Pesenti Gritti - - * embed/mozilla/MozDownload.cpp: - - initialize cur/total size - - ChangeLog | 6 ++++++ - embed/mozilla/MozDownload.cpp | 2 ++ - 2 files changed, 8 insertions(+) - -commit ffde74ada62e35272116666525dbc6bbd30362b3 -Author: Marco Pesenti Gritti -Date: Sat Oct 18 14:17:54 2003 +0000 - - *** empty log message *** - - TODO | 7 +------ - 1 file changed, 1 insertion(+), 6 deletions(-) - -commit 4a10053f4fa6380a4400b2c28ccf31c76a86497a -Author: Marco Pesenti Gritti -Date: Sat Oct 18 14:16:24 2003 +0000 - - fixup style - - 2003-10-18 Marco Pesenti Gritti - - * TODO: - * embed/mozilla/MozDownload.cpp: - * embed/mozilla/MozDownload.h: - - fixup style - - ChangeLog | 8 ++ - embed/mozilla/MozDownload.cpp | 279 +++++++++++++++++++++--------------------- - embed/mozilla/MozDownload.h | 103 ++++++++-------- - 3 files changed, 196 insertions(+), 194 deletions(-) - -commit 850649e3b65a15efa73d5c34b5c14d9b9cf5ef09 -Author: Marco Pesenti Gritti -Date: Sat Oct 18 13:48:17 2003 +0000 - - Add nsIAuthPrompt implementation, necessary to make downloads on - - 2003-10-18 Marco Pesenti Gritti - - * embed/mozilla/EphyHeaderSniffer.cpp: - * embed/mozilla/EphyHeaderSniffer.h: - - Add nsIAuthPrompt implementation, necessary - to make downloads on authenticated pages work. - - ChangeLog | 8 +++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 43 ++++++++++++++++++++++++++++++++++++- - embed/mozilla/EphyHeaderSniffer.h | 7 +++++- - 3 files changed, 56 insertions(+), 2 deletions(-) - -commit 8e878e61d90213c812163e1cf5a56381ff8cb641 -Author: Christian Persch -Date: Sat Oct 18 11:29:17 2003 +0000 - - Get rid of the last vestige of ephy_window_update_control(), and make the - - 2003-10-18 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (add_to_favorites), - (history_site_visited_cb): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_get_type), - (ephy_favorites_menu_clean), (ephy_favorites_menu_rebuild), - (ephy_favorites_menu_set_property), - (ephy_favorites_menu_get_property), - (ephy_favorites_menu_class_init), (do_updates), (fav_removed_cb), - (fav_added_cb), (ephy_favorites_menu_init), - (ephy_favorites_menu_finalize), (ephy_favorites_menu_new): - * src/ephy-favorites-menu.h: - * src/ephy-window.c: - * src/ephy-window.h: - - Get rid of the last vestige of ephy_window_update_control(), and make - the favourites menu self-updating. - - ChangeLog | 18 ++++ - src/bookmarks/ephy-bookmarks.c | 24 +----- - src/ephy-favorites-menu.c | 190 ++++++++++++++++++++++++----------------- - src/ephy-favorites-menu.h | 29 +++---- - src/ephy-window.c | 23 ----- - src/ephy-window.h | 8 -- - 6 files changed, 144 insertions(+), 148 deletions(-) - -commit ed1beb51d5c674250dcb31db142c6cb27f996fcf -Author: Marco Pesenti Gritti -Date: Sat Oct 18 08:33:08 2003 +0000 - - Show encoding menu also when empty, fix oddness when opening View menu - - 2003-10-18 Marco Pesenti Gritti - - * src/ephy-window.c: (setup_window): - - Show encoding menu also when empty, fix - oddness when opening View menu - - ChangeLog | 7 +++++++ - src/ephy-window.c | 3 +++ - 2 files changed, 10 insertions(+) - -commit a515135e03680b5e6cae67a16b5d6f8f43b8a8ef -Author: Kwok-Koon Cheung -Date: Sat Oct 18 01:52:46 2003 +0000 - - Mark wrong entry as fuzzy (msgfmt check failed). - - * ml.po: Mark wrong entry as fuzzy (msgfmt check failed). - - po/ChangeLog | 4 ++++ - po/ml.po | 6 +++--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 5556514691ebfe05680eb8a1c0fc5465e4ce7e6e -Author: Christian Persch -Date: Sat Oct 18 00:13:08 2003 +0000 - - Added new files. - - 2003-10-18 Christian Persch - - * POTFILES.in: Added new files. - - po/ChangeLog | 4 ++++ - po/POTFILES.in | 4 ++++ - 2 files changed, 8 insertions(+) - -commit 29c984ef59c362ced1dcfa66ad6afc2ed42a2637 -Author: Marco Pesenti Gritti -Date: Fri Oct 17 22:57:27 2003 +0000 - - Fix string for old mozilla versions. - - 2003-10-18 Marco Pesenti Gritti - - * embed/mozilla/EphyWrapper.cpp: - - Fix string for old mozilla versions. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyWrapper.cpp | 18 ++++++++++-------- - 2 files changed, 16 insertions(+), 8 deletions(-) - -commit 0e078cd9825b89e128d0501d4a7b5885670c2347 -Author: Christian Persch -Date: Fri Oct 17 22:40:17 2003 +0000 - - Encoding menu improvements, Part 4: The Rewrite. - - 2003-10-18 Christian Persch - - Encoding menu improvements, Part 4: - The Rewrite. - - * data/glade/epiphany.glade: - * data/ui/epiphany-ui.xml: - * data/ui/nautilus-epiphany-view.xml.in: - * embed/Makefile.am: - * embed/ephy-embed-shell.c: (ephy_embed_shell_init), - (ephy_embed_shell_finalize), (ephy_embed_shell_new), - (ephy_embed_shell_get_encodings): - * embed/ephy-embed-shell.h: - * embed/ephy-embed-utils.c: (ephy_embed_utils_save): - * embed/ephy-embed-utils.h: - * embed/ephy-embed.c: (ephy_embed_get_encoding_info): - * embed/ephy-embed.h: - * embed/ephy-encodings.c: (ephy_encodings_get_type), - (ephy_encodings_finalize), (ephy_encodings_class_init), - (ephy_encodings_get_node), (ephy_encodings_get_encodings), - (ephy_encodings_get_detectors), (ephy_encodings_get_all), - (ephy_encodings_get_categories), (ephy_encodings_add_recent), - (ephy_encodings_get_recent), (ephy_encodings_init), - (ephy_encoding_info_free), (ephy_encodings_new): - * embed/ephy-encodings.h: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * lib/Makefile.am: - * lib/ephy-encodings.c: - * lib/ephy-encodings.h: - * lib/ephy-langs.c: (ephy_font_languages), (ephy_font_n_languages): - * lib/ephy-langs.h: - * src/Makefile.am: - * src/ephy-encoding-dialog.c: (ephy_encoding_dialog_get_type), - (setup_filter), (sync_embed_cb), (sync_active_tab), - (ephy_encoding_dialog_set_window), (activate_choice), - (activate_automatic), (ephy_encoding_dialog_response_cb), - (category_node_selected_cb), (view_node_selected_cb), - (view_node_activated_cb), (ephy_encoding_dialog_init), - (ephy_encoding_dialog_finalize), - (ephy_encoding_dialog_set_property), - (ephy_encoding_dialog_get_property), - (ephy_encoding_dialog_class_init), (ephy_encoding_dialog_new): - * src/ephy-encoding-dialog.h: - * src/ephy-encoding-menu.c: (ephy_encoding_menu_init), - (sort_encodings), (add_menu_item), (update_encoding_menu_cb), - (encoding_activate_cb), (add_action), - (ephy_encoding_menu_view_dialog_cb), - (ephy_encoding_menu_automatic_cb), (ephy_encoding_menu_set_window), - (ephy_encoding_menu_finalize), (ephy_encoding_menu_class_init), - (ephy_encoding_menu_new): - * src/ephy-nautilus-view.c: (gnv_bonobo_control_activate_cb), - (gnv_cmd_select_encoding), (gnv_cmd_edit_find): - * src/ephy-window.c: (ephy_window_set_active_tab), - (setup_notebook), (ephy_window_set_property), - (ephy_window_get_property), (ephy_window_class_init): - * src/language-editor.h: - * src/pdm-dialog.c: (setup_passwords_treeview), - (setup_cookies_treeview): - * src/prefs-dialog.c: (prefs_dialog_finalize), - (get_current_language_code), (fonts_language_info_cmp), - (create_fonts_language_menu), (find_encoding_in_list_cmp), - (sort_encodings), (create_optionmenu), (prefs_dialog_init): - - Made encodings menu dynamic, containing recently used items + items - related to the currently active encoding. Split encodings out as a - embed shell service, port all users over to that. Harvest all encoding - info we can get from mozilla. - - ChangeLog | 72 +++++ - data/glade/epiphany.glade | 137 +++++++++ - data/ui/epiphany-ui.xml | 4 +- - data/ui/nautilus-epiphany-view.xml.in | 2 +- - embed/Makefile.am | 2 + - embed/ephy-embed-shell.c | 28 +- - embed/ephy-embed-shell.h | 2 + - embed/ephy-embed-utils.c | 81 ----- - embed/ephy-embed-utils.h | 5 - - embed/ephy-embed.c | 6 +- - embed/ephy-embed.h | 9 +- - embed/ephy-encodings.c | 545 ++++++++++++++++++++++++++++++++++ - embed/ephy-encodings.h | 151 ++++++++++ - embed/mozilla/EphyWrapper.cpp | 94 +++++- - embed/mozilla/EphyWrapper.h | 4 +- - embed/mozilla/Makefile.am | 1 + - embed/mozilla/mozilla-embed.cpp | 20 +- - embed/mozilla/mozilla-notifiers.cpp | 12 +- - lib/Makefile.am | 2 - - lib/ephy-encodings.c | 183 ------------ - lib/ephy-encodings.h | 45 --- - lib/ephy-langs.c | 115 +------ - lib/ephy-langs.h | 47 +-- - src/Makefile.am | 2 + - src/ephy-encoding-dialog.c | 489 ++++++++++++++++++++++++++++++ - src/ephy-encoding-dialog.h | 61 ++++ - src/ephy-encoding-menu.c | 462 ++++++++++++++++++---------- - src/ephy-nautilus-view.c | 46 ++- - src/ephy-window.c | 94 ++++-- - src/language-editor.h | 1 - - src/pdm-dialog.c | 2 + - src/prefs-dialog.c | 282 +++++++----------- - 32 files changed, 2131 insertions(+), 875 deletions(-) - -commit 4d9d732ba340aae6430bd687f0cf3252bff2217d -Author: Vincent van Adrighem -Date: Fri Oct 17 16:30:47 2003 +0000 - - Dutch translation updated by Vincent van Adrighem. - - 2003-10-17 Vincent van Adrighem - - * nl.po: Dutch translation updated by Vincent van Adrighem. - - po/ChangeLog | 4 + - po/nl.po | 2022 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1101 insertions(+), 925 deletions(-) - -commit 8bf99315f462257613969c0ca0ab051ff86ca763 -Author: Marco Pesenti Gritti -Date: Fri Oct 17 11:13:07 2003 +0000 - - Grab focus in the entry when showing because we dont rebuild the dialog. - - 2003-10-17 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_show), (ephy_bookmarks_editor_class_init), - (ephy_bookmarks_editor_construct): - - Grab focus in the entry when showing because we dont - rebuild the dialog. - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 15 +++++++++++++-- - 2 files changed, 22 insertions(+), 2 deletions(-) - -commit 9981edca4e05057d8130bd529d701d60bac76378 -Author: Marco Pesenti Gritti -Date: Fri Oct 17 09:57:07 2003 +0000 - - Fix Save As, we need ever to pass the url now. Now hope chpe stop to bug - - 2003-10-17 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-persist.cpp: - - Fix Save As, we need ever to pass the url now. - Now hope chpe stop to bug me about things - xan broke ... - - ChangeLog | 8 ++++++++ - embed/mozilla/mozilla-embed-persist.cpp | 32 +++++++++++++++++++------------- - 2 files changed, 27 insertions(+), 13 deletions(-) - -commit 7d6bee54d28aa5e8d7afb6c54ad4065a274d2f25 -Author: Mark McLoughlin -Date: Fri Oct 17 09:52:06 2003 +0000 - - Change the behaviour of --nautilus-view such that the process doesn't exit - - 2003-10-16 Mark McLoughlin - - Change the behaviour of --nautilus-view such that the process - doesn't exit until the last control has been destroyed. The - previous behaviour caused intermittent activation failure - when the process timed out and died before the view could be - created - bug #124768. - - * src/ephy-main.c: - (ephy_main_start): don't unref the shell when started with - --nautilus-view. - (ephy_main_dummy_url_argument), - (ephy_main_translate_url_arguments): create a dummy argument - when no arguments are supplied which will cause the default - window to be opened. - - * src/ephy-shell.c: - (ephy_nautilus_view_all_controls_dead): unref the shell - here causing the process to exit. - (ephy_nautilus_view_init_factory): setup the all_controls_dead - callback. - (ephy_nautilus_view_new): instrument the control. - - ChangeLog | 23 +++++++++++++++++++++++ - src/ephy-main.c | 40 ++++++++++++++++++++-------------------- - src/ephy-shell.c | 24 +++++++++++++++++++++++- - 3 files changed, 66 insertions(+), 21 deletions(-) - -commit 36a5571d794ae7a8f6688bea86796975b4b145a8 -Author: Marco Pesenti Gritti -Date: Fri Oct 17 08:26:26 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 6d3be3207f045a88ea05f8c1e498ce70e4d0b3d3 -Author: Marco Pesenti Gritti -Date: Thu Oct 16 17:29:48 2003 +0000 - - I suck ... files forgot - - embed/Makefile.am | 5 +++-- - embed/ephy-favicon-cache.c | 3 ++- - 2 files changed, 5 insertions(+), 3 deletions(-) - -commit 24fc218c90c70a06011a851df6991bf34b72d6c3 -Author: Marco Pesenti Gritti -Date: Thu Oct 16 17:28:46 2003 +0000 - - Merge new-downloader branch. We reworked the backend, the user - interface is still incomplete. - - ChangeLog | 302 +++++++++++ - TODO | 18 + - data/glade/epiphany.glade | 304 ----------- - embed/downloader-view.c | 867 +++++------------------------- - embed/downloader-view.h | 33 +- - embed/ephy-download.c | 208 +++++++ - embed/ephy-download.h | 102 ++++ - embed/ephy-embed-persist.h | 8 +- - embed/ephy-embed-popup-control.c | 26 +- - embed/ephy-embed-shell.c | 2 +- - embed/ephy-embed-utils.c | 3 - - embed/ephy-embed-utils.h | 1 - - embed/mozilla/ContentHandler.cpp | 11 +- - embed/mozilla/EphyDownload.cpp | 470 ---------------- - embed/mozilla/EphyDownload.h | 196 ------- - embed/mozilla/EphyHeaderSniffer.cpp | 261 +-------- - embed/mozilla/EphyHeaderSniffer.h | 23 +- - embed/mozilla/EphyWrapper.cpp | 2 +- - embed/mozilla/EphyWrapper.h | 2 +- - embed/mozilla/GlobalHistory.h | 1 + - embed/mozilla/Makefile.am | 9 +- - embed/mozilla/MozDownload.cpp | 377 +++++++++++++ - embed/mozilla/MozDownload.h | 128 +++++ - embed/mozilla/MozRegisterComponents.cpp | 16 +- - embed/mozilla/ProgressListener.cpp | 648 ---------------------- - embed/mozilla/ProgressListener.h | 131 ----- - embed/mozilla/mozilla-download.cpp | 203 +++++++ - embed/mozilla/mozilla-download.h | 57 ++ - embed/mozilla/mozilla-embed-persist.cpp | 153 +++--- - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-cell-renderer-progress.c | 308 +++++++++++ - lib/widgets/ephy-cell-renderer-progress.h | 57 ++ - src/popup-commands.c | 15 +- - src/window-commands.c | 4 +- - 34 files changed, 2039 insertions(+), 2909 deletions(-) - -commit b7a8e995fde6c3cf6ac82ea2390c3c4b510024c5 -Author: Christian Persch -Date: Wed Oct 15 19:16:10 2003 +0000 - - Include config.h. - - 2003-10-15 Christian Persch - - * embed/mozilla/EventContext.cpp: - - Include config.h. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 8 +++++++- - 2 files changed, 13 insertions(+), 1 deletion(-) - -commit d4ca87044e1ee753d7ec0a7c0203ce4e22488d59 -Author: Marco Pesenti Gritti -Date: Tue Oct 14 18:24:23 2003 +0000 - - *** empty log message *** - - ChangeLog | 5 +++++ - configure.in | 3 ++- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e74f6e4e921f1e5c3b7ab53ae4a90148e441c778 -Author: Danilo Šegan -Date: Tue Oct 14 12:31:53 2003 +0000 - - Updated Serbian translation. - - 2003-10-14 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 679 ++++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 679 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 700 insertions(+), 662 deletions(-) - -commit 15dd9817a91d1c0b9a12f5dc5999d08c38c6d396 -Author: Marco Pesenti Gritti -Date: Tue Oct 14 11:36:37 2003 +0000 - - Make location a normal entry. - - 2003-10-14 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_class_init), - (ephy_location_entry_construct_contents), - (ephy_location_entry_init), (ephy_location_entry_activate): - * lib/widgets/ephy-location-entry.h: - * src/ephy-history-window.c: (confirmation_dialog_response_cb): - * src/ephy-location-action.c: (remove_completion_actions), - (add_completion_actions), (connect_proxy), - (ephy_location_action_set_address): - * src/ephy-location-action.h: - * src/toolbar.c: - * src/toolbar.h: - - Make location a normal entry. - - ChangeLog | 17 ++++ - lib/widgets/ephy-location-entry.c | 185 +------------------------------------- - lib/widgets/ephy-location-entry.h | 4 - - src/ephy-history-window.c | 14 --- - src/ephy-location-action.c | 25 +----- - src/ephy-location-action.h | 2 - - src/toolbar.c | 12 --- - src/toolbar.h | 2 - - 8 files changed, 23 insertions(+), 238 deletions(-) - -commit ee91f3c5d1faa4d0582d10778818827c7f62f5ec -Author: Xan Lopez -Date: Mon Oct 13 21:50:57 2003 +0000 - - file mozilla-downloader-view.cpp was initially added on branch new-downloader. - -commit 1343422f35d03466e5de3fe769a9b4c411d5f1b9 -Author: Xan Lopez -Date: Mon Oct 13 21:50:57 2003 +0000 - - file mozilla-downloader-view.h was initially added on branch new-downloader. - -commit ae1122ce6ef3567a5001b17d9166b4b1d56b1edf -Author: Marco Pesenti Gritti -Date: Mon Oct 13 19:33:07 2003 +0000 - - Unref completion - - 2003-10-13 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_set_completion): - - Unref completion - - ChangeLog | 7 +++++++ - lib/widgets/ephy-location-entry.c | 1 + - 2 files changed, 8 insertions(+) - -commit 145826e64e64b317dffabd407ce6c1b7cb1f94c0 -Author: Christian Persch -Date: Mon Oct 13 17:39:28 2003 +0000 - - *** empty log message *** - - po/POTFILES.in | 1 + - 1 file changed, 1 insertion(+) - -commit 442741fc4fb9b63c78c37f305d443f8aa57ff67e -Author: Christian Persch -Date: Mon Oct 13 17:38:16 2003 +0000 - - Encodings menu improvements, part 3: Refactored the encodings list; it no - - 2003-10-13 Christian Persch - - * embed/ephy-embed-single.c: (ephy_embed_single_free_passwords): - * embed/ephy-embed-single.h: - * embed/ephy-embed-utils.c: - (ephy_embed_utils_build_encodings_submenu): - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * lib/Makefile.am: - * lib/ephy-encodings.c: (ephy_encoding_info_free), - (encodings_info_cmp), (ephy_encodings_get_list): - * lib/ephy-encodings.h: - * lib/ephy-langs.c: (ephy_lang_group_info_free), - (lang_group_info_cmp), (ephy_lang_get_group_list), - (fonts_language_info_cmp), (ephy_font_langs_get_codes_list), - (ephy_font_langs_get_list): - * lib/ephy-langs.h: - * po/POTFILES.in: - * src/ephy-encoding-menu.c: (ephy_encoding_menu_set_window), - (ephy_encoding_menu_rebuild): - * src/prefs-dialog.c: (prefs_dialog_finalize), - (get_current_language_code), (create_fonts_language_menu), - (default_encoding_menu_changed_cb), (find_encoding_in_list_cmp), - (create_default_encoding_menu): - - Encodings menu improvements, part 3: Refactored the encodings - list; it no longer is neccessary to have it in the embed single. - Ported all callers to new infrastructure. - - ChangeLog | 29 +++++ - embed/ephy-embed-single.c | 24 +--- - embed/ephy-embed-single.h | 15 --- - embed/ephy-embed-utils.c | 23 ++-- - embed/mozilla/mozilla-embed-single.cpp | 222 --------------------------------- - embed/mozilla/mozilla-notifiers.cpp | 43 +++---- - lib/Makefile.am | 2 + - lib/ephy-encodings.c | 183 +++++++++++++++++++++++++++ - lib/ephy-encodings.h | 45 +++++++ - lib/ephy-langs.c | 144 ++++++++++++++++----- - lib/ephy-langs.h | 32 ++--- - src/ephy-encoding-menu.c | 42 +++---- - src/prefs-dialog.c | 52 ++------ - 13 files changed, 439 insertions(+), 417 deletions(-) - -commit ab827f639671b79f2b802b19f86e937a92612ad7 -Author: Marco Pesenti Gritti -Date: Mon Oct 13 16:57:57 2003 +0000 - - *** empty log message *** - - ChangeLog | 8 ++++++++ - data/art/Makefile.am | 3 ++- - data/art/hand-open.png | Bin 0 -> 434 bytes - lib/egg/Makefile.am | 1 + - lib/egg/egg-editable-toolbar.c | 6 +++++- - 5 files changed, 16 insertions(+), 2 deletions(-) - -commit a30db0d7c1dcdbc6d6962564ccf25615518a1d05 -Author: Marco Pesenti Gritti -Date: Mon Oct 13 12:26:41 2003 +0000 - - Better implementation of cursor. - - 2003-10-13 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (set_drag_cursor), - (unset_drag_cursor), (create_item), - (egg_editable_toolbar_set_edit_mode): - - Better implementation of cursor. - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 36 +++++++++++++++++++----------------- - 2 files changed, 27 insertions(+), 17 deletions(-) - -commit b5bb571a77966979bd38e0de14caccc82d9fb1ff -Author: Marco Pesenti Gritti -Date: Mon Oct 13 08:34:00 2003 +0000 - - Show a different cursor when hovering toolbar items in edit mode. - - 2003-10-13 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (enter_notify_cb), - (leave_notify_cb), (create_item): - - Show a different cursor when hovering toolbar items - in edit mode. - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 24 ++++++++++++++++++++++++ - 2 files changed, 32 insertions(+) - -commit 9a5a2e98f3b2cf3af363bfbcb2de8a5a263af566 -Author: Marco Pesenti Gritti -Date: Sun Oct 12 23:28:31 2003 +0000 - - Port to new combo. - - 2003-10-13 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: (add_bookmarks_source), - (import_dialog_response_cb), (cmd_bookmarks_import): - - Port to new combo. - - ChangeLog | 7 +++ - src/bookmarks/ephy-bookmarks-editor.c | 90 +++++++++++++++++++---------------- - 2 files changed, 57 insertions(+), 40 deletions(-) - -commit f1bbfbf79d859495eacce8e6913782da393038dc -Author: Marco Pesenti Gritti -Date: Sun Oct 12 22:42:56 2003 +0000 - - Port to new combo. Size is wrong, prolly a bug in combo size request, will - - 2003-10-13 Marco Pesenti Gritti - - * src/ephy-history-window.c: (add_by_date_filter), - (time_combo_changed_cb), (build_search_box), (save_date_filter): - - Port to new combo. Size is wrong, prolly a bug in combo - size request, will look at it later. - - ChangeLog | 8 ++++++++ - src/ephy-history-window.c | 51 +++++++++++++++++++---------------------------- - 2 files changed, 28 insertions(+), 31 deletions(-) - -commit 0061e21c7d90f2c1396e45dae875c11bb6148695 -Author: Christian Persch -Date: Sun Oct 12 22:06:21 2003 +0000 - - Return "en" when in C locale. - - 2003-10-13 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - (get_system_language): - - Return "en" when in C locale. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-notifiers.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 326225bead407e15c3573a77d1cca18afba8ed34 -Author: Christian Persch -Date: Sat Oct 11 18:29:09 2003 +0000 - - Include config.h. - - 2003-10-11 Christian Persch - - * embed/mozilla/EphyWrapper.cpp: - - Include config.h. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyWrapper.cpp | 4 ++++ - 2 files changed, 10 insertions(+) - -commit 26c341eb29803fc00f382a7a157772852a4848bc -Author: Christian Persch -Date: Sat Oct 11 18:23:14 2003 +0000 - - Adapt EphyWrapper::GetEncoding to varying mozilla APIs. - - 2003-10-11 Christian Persch - - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/mozilla-embed.cpp: - - Adapt EphyWrapper::GetEncoding to varying mozilla APIs. - - ChangeLog | 8 ++++++++ - embed/mozilla/EphyWrapper.cpp | 20 +++++++++++++++++--- - embed/mozilla/EphyWrapper.h | 2 +- - embed/mozilla/mozilla-embed.cpp | 8 ++------ - 4 files changed, 28 insertions(+), 10 deletions(-) - -commit 79f0ce300ef1ab356e4fb911db0dc90c560e1fef -Author: Marco Pesenti Gritti -Date: Sat Oct 11 17:43:03 2003 +0000 - - *** empty log message *** - - lib/widgets/ephy-location-entry.h | 51 ++++++++++++++++++++------------------- - 1 file changed, 26 insertions(+), 25 deletions(-) - -commit 890b0f0278c284b3f72b17b2a320d7f443683d77 -Author: Marco Pesenti Gritti -Date: Sat Oct 11 17:41:26 2003 +0000 - - Merge completion branch - - ChangeLog | 189 +++++++ - embed/ephy-history.c | 77 --- - lib/Makefile.am | 6 - - lib/ephy-autocompletion-source.c | 85 --- - lib/ephy-autocompletion-source.h | 80 --- - lib/ephy-autocompletion.c | 609 --------------------- - lib/ephy-autocompletion.h | 106 ---- - lib/ephy-node-common.h | 3 +- - lib/widgets/Makefile.am | 2 - - lib/widgets/ephy-autocompletion-window.c | 839 ----------------------------- - lib/widgets/ephy-autocompletion-window.h | 89 ---- - lib/widgets/ephy-location-entry.c | 876 ++++++++++++------------------- - src/Makefile.am | 2 + - src/bookmarks/ephy-bookmark-action.c | 8 +- - src/bookmarks/ephy-bookmarks-export.c | 7 +- - src/bookmarks/ephy-bookmarks.c | 114 ++-- - src/bookmarks/ephy-bookmarks.h | 3 +- - src/ephy-completion-model.c | 601 +++++++++++++++++++++ - src/ephy-completion-model.h | 63 +++ - src/ephy-location-action.c | 211 +++++++- - src/ephy-shell.c | 33 -- - src/ephy-shell.h | 2 - - 22 files changed, 1425 insertions(+), 2580 deletions(-) - -commit 0b5f13ef5a9f6a28812cfa959ad9f5b786312ad2 -Author: Christian Persch -Date: Sat Oct 11 17:36:32 2003 +0000 - - Encoding menu improvements, part 2: Implement ephy_embed_get_encoding, and - - 2003-10-11 Christian Persch - - * embed/ephy-embed.c: (ephy_embed_get_encoding): - * embed/ephy-embed.h: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-encoding-menu.c: (ephy_encoding_menu_verb_cb), - (update_encoding_menu_cb), (ephy_encoding_menu_set_window): - - Encoding menu improvements, part 2: Implement ephy_embed_get_encoding, - and use it in the menu to indicate the encoding of the loaded page. - - ChangeLog | 13 ++++++++ - embed/ephy-embed.c | 8 +++++ - embed/ephy-embed.h | 5 +++ - embed/mozilla/EphyWrapper.cpp | 18 ++++++++++- - embed/mozilla/EphyWrapper.h | 6 +++- - embed/mozilla/mozilla-embed.cpp | 29 +++++++++++++++-- - src/ephy-encoding-menu.c | 69 ++++++++++++++++++++++++++++++++++++++--- - 7 files changed, 140 insertions(+), 8 deletions(-) - -commit 6c4b99d210e3391080ce18502a507dc38869189c -Author: Christian Persch -Date: Sat Oct 11 09:09:22 2003 +0000 - - Encodings menu improvements, part 1: Ported to new gtk ui manager api, and - - 2003-10-11 Christian Persch - - * src/ephy-encoding-menu.c: (ephy_encoding_menu_get_type), - (ephy_encoding_menu_verb_cb), (ephy_encoding_menu_init), - (ephy_encoding_menu_set_window), (ephy_encoding_menu_set_property), - (ephy_encoding_menu_get_property), (ephy_encoding_menu_class_init), - (ephy_encoding_menu_new), (ephy_encoding_menu_rebuild): - * src/ephy-encoding-menu.h: - - Encodings menu improvements, part 1: Ported to new gtk ui manager - api, and general code cleanups. - - ChangeLog | 12 ++ - src/ephy-encoding-menu.c | 358 +++++++++++++++++++++++------------------------ - src/ephy-encoding-menu.h | 34 ++--- - 3 files changed, 205 insertions(+), 199 deletions(-) - -commit 44592d8463a27f756746201136a97e2d47dcc4f8 -Author: Marco Pesenti Gritti -Date: Fri Oct 10 19:24:33 2003 +0000 - - Reenable deprecated api where necessary, fixup some header inclusions. - - 2003-10-10 Marco Pesenti Gritti - - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/FilePicker.h: - * embed/mozilla/mozilla-embed-single.cpp: - * lib/Makefile.am: - * lib/ephy-dialog.c: (get_pref_type_from_widget), - (prefs_connect_signals), (load_props), (save_props): - * lib/ephy-gui.h: - * lib/widgets/Makefile.am: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-topic-action.c: - * src/ephy-history-window.c: - - Reenable deprecated api where necessary, fixup some - header inclusions. - Remove unused color picker control in ephy-dialog. - Remove unused file types optionmenu in Filepicker. - - ChangeLog | 20 ++++++++++ - embed/mozilla/FilePicker.cpp | 48 +----------------------- - embed/mozilla/FilePicker.h | 7 +--- - embed/mozilla/mozilla-embed-single.cpp | 7 +--- - lib/Makefile.am | 1 - - lib/ephy-dialog.c | 68 +--------------------------------- - lib/ephy-gui.h | 3 +- - lib/widgets/Makefile.am | 1 - - src/Makefile.am | 1 - - src/bookmarks/Makefile.am | 1 - - src/bookmarks/ephy-topic-action.c | 1 + - src/ephy-history-window.c | 1 + - 12 files changed, 27 insertions(+), 132 deletions(-) - -commit 63c8906e7436c3910348a6549dfd8d6199772624 -Author: Laurent Dhima -Date: Fri Oct 10 16:13:14 2003 +0000 - - Updated Albanian translation - - * sq.po: Updated Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 3b191f8c768a5b188e1eb92fbebc48dd168288ca -Author: Laurent Dhima -Date: Fri Oct 10 16:11:41 2003 +0000 - - Updated - - po/sq.po | 1821 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 1020 insertions(+), 801 deletions(-) - -commit e86b36ccab5562ac2b27e1e471311e5668d1a071 -Author: Christian Persch -Date: Thu Oct 9 10:27:38 2003 +0000 - - Updated British English translation. - - 2003-10-09 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 1529 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 858 insertions(+), 675 deletions(-) - -commit 2e3afd0f417adc473bfc0f8a2b5c344f3c9ff70b -Author: Andras Timar -Date: Tue Oct 7 15:29:56 2003 +0000 - - Updated Hungarian translation. - - 2003-10-07 Andras Timar - - * hu.po: Updated Hungarian translation. - - po/ChangeLog | 4 ++++ - po/hu.po | 56 ++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 34 insertions(+), 26 deletions(-) - -commit 111c37bbd80720ae7ae98244fb24101f263a18cb -Author: Žygimantas Beručka -Date: Tue Oct 7 14:07:38 2003 +0000 - - Updated Lithuanian translation. - - 2003-10-07 Žygimantas Beručka - - * lt.po: Updated Lithuanian translation. - - po/ChangeLog | 4 + - po/lt.po | 1539 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 860 insertions(+), 683 deletions(-) - -commit b04def8186ed0579255c72beaf4b0f433b224ef3 -Author: Marco Pesenti Gritti -Date: Mon Oct 6 22:20:19 2003 +0000 - - Merge fixes from branch and clean up. - - 2003-10-07 Marco Pesenti Gritti - - * lib/widgets/ephy-tree-model-node.c: (root_child_removed_cb), - (get_path_real), (root_child_added_cb), - (ephy_tree_model_node_update_node), (root_child_changed_cb), - (root_children_reordered_cb), (root_destroy_cb), - (ephy_tree_model_node_class_init), (ephy_tree_model_node_init), - (ephy_tree_model_node_finalize), - (ephy_tree_model_node_add_prop_column), - (ephy_tree_model_node_add_func_column), - (ephy_tree_model_node_get_column_type), - (ephy_tree_model_node_get_value), (ephy_tree_model_node_get_iter), - (ephy_tree_model_node_get_path), (ephy_tree_model_node_iter_next), - (ephy_tree_model_node_iter_children), - (ephy_tree_model_node_iter_n_children), - (ephy_tree_model_node_iter_nth_child), - (ephy_tree_model_node_iter_from_node), - (ephy_tree_model_node_tree_model_init): - * lib/widgets/ephy-tree-model-node.h: - - Merge fixes from branch and clean up. - - ChangeLog | 22 +++ - lib/widgets/ephy-tree-model-node.c | 367 ++++++++++++++++--------------------- - lib/widgets/ephy-tree-model-node.h | 2 - - 3 files changed, 185 insertions(+), 206 deletions(-) - -commit 2b19c154cd2c573218039a935a96ef2cb4b668de -Author: Marco Pesenti Gritti -Date: Mon Oct 6 20:01:31 2003 +0000 - - *** empty log message *** - - TODO | 1 + - 1 file changed, 1 insertion(+) - -commit 14f911f5bf65d8699e078f93d4441248bc870c14 -Author: Xan Lopez -Date: Mon Oct 6 18:26:07 2003 +0000 - - Add new files. - - - Add new files. - - embed/mozilla/EphyDownload.cpp | 470 ++++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyDownload.h | 196 +++++++++++++++ - embed/mozilla/EphyHeaderSniffer.cpp | 457 +++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyHeaderSniffer.h | 89 +++++++ - 4 files changed, 1212 insertions(+) - -commit 41070c314feabcd3c8a12d685bfd9c86988ede56 -Author: Christian Persch -Date: Mon Oct 6 13:53:56 2003 +0000 - - Allow dragging of tabs to a window even when the tabs bar is not shown. - - 2003-10-06 Christian Persch - - * src/ephy-notebook.c: (find_notebook_at_pointer), - (ephy_notebook_init), (ephy_notebook_finalize): - - Allow dragging of tabs to a window even when the tabs bar is not - shown. Fixes bug #123908. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 37 ++++++++++++++++--------------------- - 2 files changed, 24 insertions(+), 21 deletions(-) - -commit 14e3040722bdd3115777a6d4098fea87108a6f87 -Author: Marco Pesenti Gritti -Date: Mon Oct 6 12:21:59 2003 +0000 - - More granular filtering update - - 2003-10-06 Marco Pesenti Gritti - - * src/ephy-history-window.c: (setup_filters), - (site_node_selected_cb), (search_entry_search_cb), - (time_optionmenu_changed_cb): - - More granular filtering update - - 2003-10-06 Marco Pesenti Gritti - - * embed/ephy-history.c: (update_host_on_child_remove), - (update_hosts), (page_removed_from_host_cb), (ephy_history_init), - (ephy_history_finalize): - - Update host last visit when removing sites from it. - - ChangeLog | 16 ++++++++++ - embed/ephy-history.c | 74 ++++++++++++++++++++++++++++++++++++++++++++--- - src/ephy-history-window.c | 33 ++++++++++++--------- - 3 files changed, 106 insertions(+), 17 deletions(-) - -commit 8bad6a3d1faa10662b08783e49ebb3f488762973 -Author: Marco Pesenti Gritti -Date: Mon Oct 6 00:07:42 2003 +0000 - - update priv->select_node, signals are blocked so it would not be updated - - 2003-10-06 Marco Pesenti Gritti - - * src/ephy-history-window.c: (search_entry_search_cb): - - update priv->select_node, signals are blocked so it would - not be updated otherwise - - ChangeLog | 7 +++++++ - src/ephy-history-window.c | 1 + - 2 files changed, 8 insertions(+) - -commit 5c4c963afee7f65e32838fc7b2780612820e30bd -Author: Marco Pesenti Gritti -Date: Sun Oct 5 23:55:49 2003 +0000 - - *** empty log message *** - - TODO | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit a4184d85f9020f558d80d8ef0531af9e2c3adc8f -Author: Marco Pesenti Gritti -Date: Sun Oct 5 23:55:13 2003 +0000 - - Do not unselect all on single selection mode, to not generate useless node - - 2003-10-06 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (did_not_drag): - - Do not unselect all on single selection mode, to not generate - useless node selection changes. - - * src/ephy-history-window.c: (site_node_selected_cb): - - Do not refilter if the new selected node is the same - as the old one. - - ChangeLog | 12 ++++++++++++ - lib/widgets/ephy-node-view.c | 6 +++++- - src/ephy-history-window.c | 2 ++ - 3 files changed, 19 insertions(+), 1 deletion(-) - -commit 506921ce725352e13f62990a40f2b77f5d953a0f -Author: Marcel Telka -Date: Sun Oct 5 17:08:11 2003 +0000 - - Updated Slovak translation. - - 2003-10-05 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 1208 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 675 insertions(+), 537 deletions(-) - -commit 6df84ccbba49ec0ee38241483edbb9c28486a180 -Author: Miloslav Trmac -Date: Sat Oct 4 14:29:39 2003 +0000 - - Fix Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 10 +++++----- - 2 files changed, 9 insertions(+), 5 deletions(-) - -commit 48e68e2b23bc946f85fdeb084db47826ae4605e5 -Author: Danilo Šegan -Date: Sat Oct 4 00:25:32 2003 +0000 - - Updated Serbian translation. - - 2003-10-04 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 1533 +++++++++++++++++++++++++++++++-------------------------- - po/sr@Latn.po | 1533 +++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 1694 insertions(+), 1376 deletions(-) - -commit 26e1b6fcaada95364fbec1caecd4421b9e8a4f7e -Author: Andras Timar -Date: Fri Oct 3 21:02:24 2003 +0000 - - Updated Hungarian translation. - - 2003-10-03 Andras Timar - - * hu.po: Updated Hungarian translation. - - po/ChangeLog | 4 + - po/hu.po | 1597 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 902 insertions(+), 699 deletions(-) - -commit 740976b493365ea3621f1341cf3c894461fdc894 -Author: Andras Timar -Date: Fri Oct 3 21:00:37 2003 +0000 - - Updated Hungarian translation. - - 2003-10-03 Andras Timar - - * hu.po: Updated Hungarian translation. - - po/ChangeLog | 4 + - po/hu.po | 1388 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 660 insertions(+), 732 deletions(-) - -commit 2ab70ea439d3b0001d1d01e1e79d07bc4bb99d41 -Author: Christian Persch -Date: Fri Oct 3 09:19:36 2003 +0000 - - Check for failed load of the toolbars model from the XML file, and fix the - - 2003-10-03 Christian Persch - - * lib/egg/egg-toolbars-model.c: (safe_save_xml), - (egg_toolbars_model_load): - - Check for failed load of the toolbars model from the XML file, - and fix the check for failed save of same to the XML file. - - ChangeLog | 8 ++++++++ - lib/egg/egg-toolbars-model.c | 7 ++++++- - 2 files changed, 14 insertions(+), 1 deletion(-) - -commit b4ace448b09daa5d7220acdf9b59655baec2c63d -Author: Marco Pesenti Gritti -Date: Thu Oct 2 19:10:31 2003 +0000 - - file eggtreemodelunion.c was initially added on branch new-completion. - -commit bcbacff99e085a5d84610967f091a5f5cc9aee41 -Author: Marco Pesenti Gritti -Date: Thu Oct 2 19:10:31 2003 +0000 - - file eggtreemodelunion.h was initially added on branch new-completion. - -commit 2bab5bd0185108944726495800bcfabce424b641 -Author: Marco Pesenti Gritti -Date: Thu Oct 2 07:52:01 2003 +0000 - - Use new gtk api for empty submenus - - 2003-10-02 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-menu.c: (add_bookmarks_menu), - (ephy_bookmarks_menu_rebuild): - - Use new gtk api for empty submenus - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-menu.c | 36 ++++++++---------------------------- - 2 files changed, 15 insertions(+), 28 deletions(-) - -commit 2bdb5923bb79afe05aa0f56364cd7cb1fa16fd4d -Author: Gustavo Maciel Dias Vieira -Date: Wed Oct 1 20:53:08 2003 +0000 - - Applied revision by Augusta Marques da Silva . - - 2003-10-01 Gustavo Maciel Dias Vieira - - * pt_BR.po: Applied revision by Augusta Marques da Silva - . - - po/ChangeLog | 5 + - po/pt_BR.po | 1578 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 864 insertions(+), 719 deletions(-) - -commit 170a7f06a20348a51c8b4d9a44128a1ac2681dbe -Author: Marco Pesenti Gritti -Date: Tue Sep 30 11:12:09 2003 +0000 - - Implement view menu. - - 2003-09-30 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * data/ui/epiphany-history-window-ui.xml: - * src/ephy-history-window.c: (set_columns_visibility), - (cmd_view_columns), (get_details_value), - (ephy_history_window_construct): - - Implement view menu. - - ChangeLog | 10 +++ - data/epiphany.schemas.in | 15 +++++ - data/ui/epiphany-history-window-ui.xml | 6 ++ - src/ephy-history-window.c | 118 ++++++++++++++++++++++++++++++++- - 4 files changed, 148 insertions(+), 1 deletion(-) - -commit decd3ad66ac173f46db66bdc046041fbe2085bcf -Author: Christian Persch -Date: Tue Sep 30 08:44:08 2003 +0000 - - Use ngettext. - - 2003-09-30 Christian Persch - - * src/ephy-history-window.c: (build_search_box): - - Use ngettext. - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 17 +++++++++++++---- - 2 files changed, 19 insertions(+), 4 deletions(-) - -commit 838ad96bb4a7b35ee9e04bde8ec888f95f07d573 -Author: Christian Persch -Date: Tue Sep 30 08:43:36 2003 +0000 - - Removed data/ui/epiphany-ui.xml.in, it doesn't exist anymore, and did not - - 2003-09-30 Christian Persch - - * POTFILES.in: Removed data/ui/epiphany-ui.xml.in, it doesn't exist - anymore, and did not contain translatable strings anyway while it - still existed. - - po/ChangeLog | 6 ++++++ - po/POTFILES.in | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit d7368311fe43d9fc46179c740ee6ae8da6822736 -Author: Christian Persch -Date: Tue Sep 30 07:18:46 2003 +0000 - - Don't pass NULL to gnome_vfs_expand_initial_tilde. - - 2003-09-30 Christian Persch - - * embed/print-dialog.c: (print_get_info): - - Don't pass NULL to gnome_vfs_expand_initial_tilde. - - ChangeLog | 6 ++++++ - embed/print-dialog.c | 11 ++++++++++- - 2 files changed, 16 insertions(+), 1 deletion(-) - -commit d573e7f57f85d6b8c537f631c58638b0f71db01f -Author: Marco Pesenti Gritti -Date: Mon Sep 29 22:26:20 2003 +0000 - - More accurate description for Ever filter. Keep the backend as is, so we - - 2003-09-30 Marco Pesenti Gritti - - * embed/ephy-history.c: - * src/ephy-history-window.c: (build_search_box): - - More accurate description for Ever filter. - Keep the backend as is, so we dont have to change - it if we change history expire. - - ChangeLog | 9 +++++++++ - embed/ephy-history.c | 1 + - src/ephy-history-window.c | 11 +++++------ - 3 files changed, 15 insertions(+), 6 deletions(-) - -commit 489144a63292736d5b8abb3fb04175638db70cc8 -Author: Marco Pesenti Gritti -Date: Mon Sep 29 19:51:53 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - data/default-prefs.js | 33 +++++++++++++++++++++++++++++++++ - 2 files changed, 39 insertions(+) - -commit 0bd5c2029fe4b3c4d4268071afce36db2a77a080 -Author: Marco Pesenti Gritti -Date: Sun Sep 28 09:50:20 2003 +0000 - - The file picker dir can be NULL, check before trying to expand tilde. - - 2003-09-28 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - - The file picker dir can be NULL, check before - trying to expand tilde. - - * src/bookmarks/ephy-bookmarks-editor.c: - (import_dialog_response_cb), (cmd_bookmarks_import): - - Implement import from a file - - ChangeLog | 12 ++++++++++++ - embed/mozilla/mozilla-embed-single.cpp | 7 +++++-- - src/bookmarks/ephy-bookmarks-editor.c | 34 +++++++++++++++++++++++++++------- - 3 files changed, 44 insertions(+), 9 deletions(-) - -commit 6d4057eecb2f6cb916984d3c81403061b010214d -Author: Xan Lopez -Date: Sat Sep 27 13:17:41 2003 +0000 - - Forgot this. - - - Forgot this. - - ChangeLog | 6 ++++++ - configure.in | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 56d203dcae42202338ac474be30e2127dabd763a -Author: Marco Pesenti Gritti -Date: Sat Sep 27 12:41:16 2003 +0000 - - *** empty log message *** - - TODO | 2 ++ - 1 file changed, 2 insertions(+) - -commit c76f68d03f940f25534cc20e90bf5354a5a2227c -Author: Xan Lopez -Date: Sat Sep 27 12:19:57 2003 +0000 - - API sync, from galeon. - - - API sync, from galeon. - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 16 ++++++++-------- - 2 files changed, 15 insertions(+), 8 deletions(-) - -commit 87719c053d95cc1bf2cce252d75caa60852bf53b -Author: Christian Persch -Date: Sat Sep 27 11:33:40 2003 +0000 - - Offer to import from Firebird too. - - 2003-09-27 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_import): - * src/bookmarks/ephy-bookmarks-import.h: - - Offer to import from Firebird too. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 ++ - src/bookmarks/ephy-bookmarks-import.h | 7 ++++--- - 3 files changed, 13 insertions(+), 3 deletions(-) - -commit fa03218d67d0aafc6709629481a6e9ad717410f0 -Author: Marco Pesenti Gritti -Date: Sat Sep 27 11:15:47 2003 +0000 - - *** empty log message *** - - TODO | 1 - - 1 file changed, 1 deletion(-) - -commit 3e1c3f7c236a3e7586c771df2df1732dc015fb51 -Author: Marco Pesenti Gritti -Date: Sat Sep 27 11:09:46 2003 +0000 - - Simpler implementation. - - 2003-09-27 Marco Pesenti Gritti - - * lib/ephy-gui.c: (ephy_gui_get_pixbuf_from_mime_type): - - Simpler implementation. - - * lib/widgets/ephy-spinner.c: (ephy_spinner_load_images): - * src/ephy-shell.c: (ephy_shell_init): - - Pass 0 as flags - - ChangeLog | 11 +++++++++++ - lib/ephy-gui.c | 33 ++------------------------------- - lib/widgets/ephy-spinner.c | 2 +- - src/ephy-shell.c | 2 +- - 4 files changed, 15 insertions(+), 33 deletions(-) - -commit eed2331e611eb281440c1bcb5f76b2e547f1e0a7 -Author: Marco Pesenti Gritti -Date: Sat Sep 27 10:17:12 2003 +0000 - - Use gtkicontheme, and use it also for mime icons. - - 2003-09-27 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - * lib/ephy-gui.c: (make_mime_name), - (ephy_gui_get_pixbuf_from_mime_type): - * lib/ephy-gui.h: - * lib/widgets/ephy-spinner.c: (ephy_spinner_init), - (ephy_spinner_theme_changed), (ephy_spinner_load_images), - (ephy_spinner_finalize): - * src/ephy-shell.c: (ephy_shell_init): - - Use gtkicontheme, and use it also for mime icons. - - ChangeLog | 13 ++++++++ - embed/mozilla/ContentHandler.cpp | 6 ++-- - lib/ephy-gui.c | 72 ++++++++++++++++++++++++++++++++++++++++ - lib/ephy-gui.h | 3 ++ - lib/widgets/ephy-spinner.c | 35 ++++++++++--------- - src/ephy-shell.c | 25 ++++++++------ - 6 files changed, 127 insertions(+), 27 deletions(-) - -commit 66a44625b35868a79da71ec78de700d9b8ff7619 -Author: Marco Pesenti Gritti -Date: Fri Sep 26 23:55:18 2003 +0000 - - *** empty log message *** - - TODO | 1 + - 1 file changed, 1 insertion(+) - -commit 108abbc0574360a8e271e4577517b3f0f285e861 -Author: Marco Pesenti Gritti -Date: Fri Sep 26 18:53:27 2003 +0000 - - *** empty log message *** - - TODO | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -commit 9dc741fe17ecb74cbe7a28ad5376f5de5e07831c -Author: Marco Pesenti Gritti -Date: Fri Sep 26 18:51:30 2003 +0000 - - Implement history time filter - - 2003-09-26 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * lib/ephy-node-filter.c: (ephy_node_filter_evaluate): - * src/ephy-history-window.c: (ephy_history_window_finalize), - (add_by_site_filter), (add_by_date_filter), (add_by_word_filter), - (setup_filters), (site_node_selected_cb), (search_entry_search_cb), - (time_optionmenu_changed_cb), (build_search_box), - (ephy_history_window_construct), (save_date_filter), - (ephy_history_window_dispose): - - Implement history time filter - - ChangeLog | 13 +++ - data/epiphany.schemas.in | 13 +++ - lib/ephy-node-filter.c | 2 +- - src/ephy-history-window.c | 275 +++++++++++++++++++++++++++++++++++++--------- - 4 files changed, 250 insertions(+), 53 deletions(-) - -commit dd2be1f05963a5ae21eea8ab0e549acb25ebbcc3 -Author: Marco Pesenti Gritti -Date: Fri Sep 26 16:01:10 2003 +0000 - - Remove unused includes, they was causing warnings on solaris - - 2003-09-26 Marco Pesenti Gritti - - * src/ephy-window.c: - - Remove unused includes, they was causing warnings on solaris - - ChangeLog | 6 ++++++ - src/ephy-window.c | 3 --- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit edd1ef62795efbf585cf6de58f95056f08219dc9 -Author: Marco Pesenti Gritti -Date: Thu Sep 25 14:57:14 2003 +0000 - - split changelog - - ChangeLog | 11717 --------------------------------------------------- - ChangeLog-20030925 | 11717 +++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 11717 insertions(+), 11717 deletions(-) - -commit 2dfcaae29d711915fb58f38ac76ba518f701c9af -Author: Marco Pesenti Gritti -Date: Thu Sep 25 14:55:14 2003 +0000 - - *** empty log message *** - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 5 +---- - src/ephy-history-window.c | 3 --- - 3 files changed, 10 insertions(+), 7 deletions(-) - -commit 55b40647e65439d69831862ef98a25f039111325 -Author: Marco Pesenti Gritti -Date: Thu Sep 25 14:22:37 2003 +0000 - - Fix spacing ... when gtkdialog will be higgy ... - - 2003-09-25 Marco Pesenti Gritti - - * data/glade/epiphany.glade: - * src/ephy-history-window.c: (confirmation_dialog_construct): - - Fix spacing ... when gtkdialog will be higgy ... - - ChangeLog | 7 +++++++ - data/glade/epiphany.glade | 4 ++-- - src/ephy-history-window.c | 3 ++- - 3 files changed, 11 insertions(+), 3 deletions(-) - -commit d321a476c7fe2d9a8174cf0f6a23ea523c469395 -Author: Marco Pesenti Gritti -Date: Thu Sep 25 13:41:52 2003 +0000 - - Fix #123176. Use response instead of connecting 210 callbacks. - - 2003-09-25 Marco Pesenti Gritti - - * data/glade/epiphany.glade: - * embed/mozilla/ContentHandler.cpp: - - Fix #123176. Use response instead of - connecting 210 callbacks. - - ChangeLog | 8 +++++++ - data/glade/epiphany.glade | 8 +++---- - embed/mozilla/ContentHandler.cpp | 45 ++++++++++++++++++++++------------------ - 3 files changed, 36 insertions(+), 25 deletions(-) - -commit 3a96f0a59387535ba03ba622639e76b3ac0d23a8 -Author: Christian Persch -Date: Wed Sep 24 19:15:32 2003 +0000 - - Remove --server mode. It was a dirty hack anyway, and had a crasher when - - 2003-09-24 Christian Persch - - * idl/EphyAutomation.idl: - * src/ephy-automation.c: (impl_ephy_automation_quit): - * src/ephy-main.c: (ephy_main_start): - - Remove --server mode. It was a dirty hack anyway, and had a - crasher when loggin out from gnome-session. Sort of fixes bug #123047. - Flames will be redirected > /dev/null . - - ChangeLog | 10 ++++++++++ - idl/EphyAutomation.idl | 2 +- - src/ephy-automation.c | 2 -- - src/ephy-main.c | 19 ++----------------- - 4 files changed, 13 insertions(+), 20 deletions(-) - -commit f9b785e9f0e388bcebcfefdaf440b4c8a7773fb0 -Author: Christian Persch -Date: Wed Sep 24 18:45:03 2003 +0000 - - Don't destroy the session when all windows are closed. - - 2003-09-24 Christian Persch - - * src/ephy-shell.c: (ephy_shell_finalize), - (ephy_shell_get_session): - * src/session.c: (session_new), (save_tab), (parse_embed), - (session_remove_window): - - Don't destroy the session when all windows are closed. - - ChangeLog | 9 +++++++++ - src/ephy-shell.c | 9 +-------- - src/session.c | 26 +++----------------------- - 3 files changed, 13 insertions(+), 31 deletions(-) - -commit ca8f357fd917b4cab36550fd837777b6b5b3caed -Author: Xan Lopez -Date: Wed Sep 24 18:34:04 2003 +0000 - - Add 1.6a to the list. - - - Add 1.6a to the list. - - ChangeLog | 6 ++++++ - configure.in | 1 + - 2 files changed, 7 insertions(+) - -commit 6207b89fee0b0d515789256374493ae149046474 -Author: Marco Pesenti Gritti -Date: Wed Sep 24 13:52:48 2003 +0000 - - Simplify and solve bugs by using a checkbox with radio appeareance. That - - 2003-09-24 Marco Pesenti Gritti - - * src/ephy-tab.c: (ephy_tab_init): - * src/ephy-tabs-menu.c: (tab_added_cb), (tab_removed_cb), - (ephy_tabs_menu_init): - * src/ephy-window.c: (ephy_window_set_active_tab): - - Simplify and solve bugs by using a checkbox with radio - appeareance. That way we can get rid of groups that - doesnt really work well for our needs. - - ChangeLog | 11 +++++++++++ - src/ephy-tab.c | 5 +++-- - src/ephy-tabs-menu.c | 6 ------ - src/ephy-window.c | 6 ++++-- - 4 files changed, 18 insertions(+), 10 deletions(-) - -commit d39f450226f19adf4db9d209a9cec77fccd7f509 -Author: Marco Pesenti Gritti -Date: Wed Sep 24 13:09:33 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 3d646280312668391a0cde9aa72b95190f612fc3 -Author: Marco Pesenti Gritti -Date: Wed Sep 24 13:08:07 2003 +0000 - - ChangeLog - - data/epiphany.schemas.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 1406ab3ba29e8a9e6f40ab63b497b9019608c98c -Author: Marco Pesenti Gritti -Date: Wed Sep 24 13:06:21 2003 +0000 - - Remove also from the group - - 2003-09-24 Marco Pesenti Gritti - - * src/ephy-tabs-menu.c: (tab_removed_cb): - - Remove also from the group - - ChangeLog | 6 ++++++ - src/ephy-tabs-menu.c | 8 +++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit da6333c06e51b7c4447d6d534d301c3f728679d9 -Author: Marco Pesenti Gritti -Date: Wed Sep 24 12:45:45 2003 +0000 - - Do not use _ as accellerators in bookmarks menus. - - 2003-09-24 Marco Pesenti Gritti - - * lib/ephy-string.c: (ephy_string_double_underscores): - * lib/ephy-string.h: - * src/bookmarks/ephy-bookmark-action.c: (sync_bookmark_properties): - * src/bookmarks/ephy-bookmarks-menu.c: - (ephy_bookmarks_menu_rebuild): - * src/bookmarks/ephy-topic-action.c: (create_menu_item), - (sync_topic_properties): - - Do not use _ as accellerators in bookmarks menus. - - ChangeLog | 12 +++++++++++ - lib/ephy-string.c | 39 ++++++++++++++++++++++++++++++++++++ - lib/ephy-string.h | 2 ++ - src/bookmarks/ephy-bookmark-action.c | 10 ++++++--- - src/bookmarks/ephy-bookmarks-menu.c | 9 +++++++-- - src/bookmarks/ephy-topic-action.c | 18 ++++++++++++----- - 6 files changed, 80 insertions(+), 10 deletions(-) - -commit 3844f2dc783a6e505e7f114bc1a747e5c040021c -Author: Marco Pesenti Gritti -Date: Wed Sep 24 12:06:06 2003 +0000 - - Dave Bordoley - - 2003-09-24 Marco Pesenti Gritti - Dave Bordoley - - * src/ephy-tab.c: (ephy_tab_action_activate_cb), (ephy_tab_init): - * src/ephy-tabs-menu.c: (tab_added_cb), (tab_removed_cb), - (ephy_tabs_menu_set_window), (ephy_tabs_menu_set_property), - (ephy_tabs_menu_class_init), (ephy_tabs_menu_init), - (ephy_tabs_menu_clean), (ephy_tabs_menu_update): - * src/ephy-window.c: (ephy_window_set_active_tab), (tab_added_cb), - (tab_removed_cb), (tabs_reordered_cb): - - Use radio buttons for tabs menu. Do not recreate the - action group every time but keep it synced. - - * src/ephy-notebook.c: (ephy_notebook_insert_page): - - Emit added signal before activating the page. - - ChangeLog | 18 +++++++++++ - src/ephy-notebook.c | 4 +-- - src/ephy-tab.c | 12 +++++-- - src/ephy-tabs-menu.c | 90 +++++++++++++++++++++++++++++++++------------------- - src/ephy-window.c | 20 ++++++------ - 5 files changed, 96 insertions(+), 48 deletions(-) - -commit 330bb03126170f0be6527c71f44654aeefd46514 -Author: Christian Persch -Date: Wed Sep 24 11:43:21 2003 +0000 - - Fix topic labels. - - 2003-09-24 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (sync_topic_properties): - - Fix topic labels. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topic-action.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0836e677ab69560cd285b99a062d4386c24d12fa -Author: Marco Pesenti Gritti -Date: Wed Sep 24 07:33:09 2003 +0000 - - Use Bookmarks instead of All as label - - 2003-09-24 Marco Pesenti Gritti - - * src/bookmarks/ephy-topic-action.c: (sync_topic_properties): - - Use Bookmarks instead of All as label - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topic-action.c | 15 +++++++++++++-- - 2 files changed, 19 insertions(+), 2 deletions(-) - -commit 9ff9d3ca3f48ca645971aaaaeab1dd5afbbbf7cd -Author: Marco Pesenti Gritti -Date: Tue Sep 23 22:37:09 2003 +0000 - - Save session when windows are removed - - 2003-09-24 Marco Pesenti Gritti - - * src/session.c: (session_remove_window): - - Save session when windows are removed - - ChangeLog | 6 ++++++ - src/session.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit ca341ca5a6b69c395850ae32b55d7550cf8e1a1d -Author: Christian Persch -Date: Tue Sep 23 22:22:23 2003 +0000 - - Check for NULL return of gtk_get_current_event. Fixes bug #123063. - - 2003-09-24 Christian Persch - - * src/window-commands.c: (window_cmd_view_reload): - - Check for NULL return of gtk_get_current_event. Fixes bug #123063. - - ChangeLog | 6 ++++++ - src/window-commands.c | 23 +++++++++++++---------- - 2 files changed, 19 insertions(+), 10 deletions(-) - -commit 30930917e8ce020776e0096928aedfebe779bfd5 -Author: Marco Pesenti Gritti -Date: Tue Sep 23 17:08:54 2003 +0000 - - Refactor initialization/automation code. Now all the code used by the - - 2003-09-23 Marco Pesenti Gritti - - * src/ephy-automation.c: (ephy_automation_factory_new): - * src/ephy-automation.h: - * src/ephy-main.c: (main), (ephy_main_start): - * src/ephy-shell.c: (ephy_shell_init), (ephy_shell_finalize): - - Refactor initialization/automation code. Now all the code - used by the first instance is in ephy_shell, all the code - used by other instances is in ephy_main. - Unref the factory before quitting so we dont risk new - automation object are created and used with a dead shell. - - ChangeLog | 13 +++++++++++ - src/ephy-automation.c | 15 ++++++------ - src/ephy-automation.h | 7 +++--- - src/ephy-main.c | 65 ++++++++++----------------------------------------- - src/ephy-shell.c | 32 +++++++++++++++++++++++++ - 5 files changed, 68 insertions(+), 64 deletions(-) - -commit 2e1474156400d308faf8836801ee87607d9632d7 -Author: Christian Persch -Date: Tue Sep 23 10:09:09 2003 +0000 - - Correct popup path; fixes context menu on topics. - - 2003-09-23 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - (keyword_node_show_popup_cb): - - Correct popup path; fixes context menu on topics. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 050a156ac54f991e3c8de563a70af9c1941384bb -Author: Marco Pesenti Gritti -Date: Tue Sep 23 10:08:23 2003 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6003b89a702314d2fe60f3feae4b3b857526b6af -Author: Marco Pesenti Gritti -Date: Tue Sep 23 10:08:03 2003 +0000 - - Swapped arguments in a func, was causing edit on the address instead of - - 2003-09-23 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - - Swapped arguments in a func, was causing edit on the - address instead of title. - - ChangeLog | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit f570b8f51a31ba527846bfd169f8785dab8eabb9 -Author: Sajith VK -Date: Tue Sep 23 05:01:57 2003 +0000 - - Updateing according to inputs from SMC, the group for malayalam localization - - po/ml.po | 1369 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 694 insertions(+), 675 deletions(-) - -commit 2ed74da89fb11fab8fc0fe26ad8a86d06c28e84b -Author: Christian Persch -Date: Mon Sep 22 14:43:38 2003 +0000 - - Removed the spec file. - - 2003-09-22 Christian Persch - - * epiphany.spec: - - Removed the spec file. - - ChangeLog | 6 +++++ - epiphany.spec | 78 ----------------------------------------------------------- - 2 files changed, 6 insertions(+), 78 deletions(-) - -commit 661bd212a252211db4238c3a8b3fdc7fd23a4dd1 -Author: Marco Pesenti Gritti -Date: Sun Sep 21 23:09:50 2003 +0000 - - Complete view menu impl. There is a gtk bug that make it behave funnily - - 2003-09-22 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * src/bookmarks/ephy-bookmarks-editor.c: (set_columns_visibility), - (cmd_view_columns), (get_details_value), - (ephy_bookmarks_editor_construct): - - Complete view menu impl. There is a gtk bug that make it behave funnily - and the schemas does not work correctly (though I cant see any problem - with, maybe it's something borked here ...) - - ChangeLog | 11 ++++++ - data/epiphany.schemas.in | 15 +++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 63 +++++++++++++++++++++++++++++++---- - 3 files changed, 83 insertions(+), 6 deletions(-) - -commit 8444016d4d3f2f969b44b2e3738ce6a4d1721f46 -Author: Christian Persch -Date: Sun Sep 21 21:51:01 2003 +0000 - - Specify UTF-8 encoding in the keyword url. - - 2003-09-21 Christian Persch - - * data/default-prefs.js: - - Specify UTF-8 encoding in the keyword url. - - ChangeLog | 5 +++++ - data/default-prefs.js | 2 +- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit d538e7d29b445a3f15893d907aa2d11285cf9c6d -Author: Marco Pesenti Gritti -Date: Sun Sep 21 13:57:34 2003 +0000 - - Implement a way to choose visible column in a menu. Not finished I need to - - 2003-09-21 Marco Pesenti Gritti - - * data/ui/epiphany-bookmark-editor-ui.xml: - * lib/widgets/ephy-node-view.c: (ephy_node_view_add_column): - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_view_columns), - (ephy_bookmarks_editor_construct): - - Implement a way to choose visible column in a menu. Not finished - I need to persist state in a gconf key. - - ChangeLog | 10 +++++ - data/ui/epiphany-bookmark-editor-ui.xml | 5 +++ - lib/widgets/ephy-node-view.c | 3 -- - src/bookmarks/ephy-bookmarks-editor.c | 73 +++++++++++++++++++++++++-------- - 4 files changed, 71 insertions(+), 20 deletions(-) - -commit 740323fa9dc25b6d831c5ff4b681ad142cc1afa6 -Author: Christian Persch -Date: Sun Sep 21 13:38:54 2003 +0000 - - Depend on libxml2 >= 2.6.0; this should fix the bookmarks loss bug. - - 2003-09-21 Christian Persch - - * configure.in: - - Depend on libxml2 >= 2.6.0; this should fix the bookmarks loss bug. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 81791356a8f74dad96b53367ae27c88b8f2f4262 -Author: Christian Persch -Date: Sun Sep 21 10:34:55 2003 +0000 - - Fix check for return value of xmlSaveFileFormat, _maybe_ fixing the - - 2003-09-21 Christian Persch - - * lib/ephy-file-helpers.c: (ephy_file_save_xml): - - Fix check for return value of xmlSaveFileFormat, _maybe_ - fixing the bookmarks loss bug. - - ChangeLog | 7 +++++++ - lib/ephy-file-helpers.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 97bebf571d335e616028401389f36118e03f043d -Author: Christian Persch -Date: Sat Sep 20 14:18:01 2003 +0000 - - Use gconf_client_notify. Fixed bug #112882. - - 2003-09-20 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - - Use gconf_client_notify. Fixed bug #112882. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 11 +---------- - 2 files changed, 7 insertions(+), 10 deletions(-) - -commit 1035bd4db9c5946dd188282de99584757a6ba5a4 -Author: Marco Pesenti Gritti -Date: Sat Sep 20 11:48:40 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 1 + - 2 files changed, 7 insertions(+) - -commit b93121c147570503f42ce2d1d619296b26081d59 -Author: Christian Persch -Date: Sat Sep 20 11:17:54 2003 +0000 - - Fix directory selection persistence [bug #122780]. - - 2003-09-20 Christian Persch - - * embed/ephy-embed-utils.c: (ephy_embed_utils_save): - * embed/mozilla/mozilla-embed-single.cpp: - * src/window-commands.c: (window_cmd_file_open): - - Fix directory selection persistence [bug #122780]. - - ChangeLog | 8 +++++++ - embed/ephy-embed-utils.c | 28 ++++++++++++---------- - embed/mozilla/mozilla-embed-single.cpp | 6 ++--- - src/window-commands.c | 43 +++++++++++++++++----------------- - 4 files changed, 47 insertions(+), 38 deletions(-) - -commit 68616208eeeee369e62c9256fc9aba5dbe139e3e -Author: Christian Persch -Date: Sat Sep 20 09:37:26 2003 +0000 - - Remember the address in the location action, so we can restore it when we - - 2003-09-20 Christian Persch - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_class_init), - (ephy_location_entry_activation_finished), (location_focus_out_cb), - (ephy_location_entry_init), (ephy_location_ignore_prefix), - (ephy_location_entry_activate_cb), - (ephy_location_entry_set_location), - (ephy_location_entry_get_location), (ephy_location_entry_activate), - (ephy_location_entry_editable_changed_cb), - (ephy_location_entry_clear_history): - * lib/widgets/ephy-location-entry.h: - * src/ephy-location-action.c: (location_url_activate_cb), - (user_changed_cb), (sync_address), (connect_proxy), - (disconnect_proxy), (ephy_location_action_set_property), - (ephy_location_action_get_property), - (ephy_location_action_activate), (ephy_location_action_class_init), - (ephy_location_action_init), (ephy_location_action_finalize), - (ephy_location_action_get_address), - (ephy_location_action_set_address), (clear_history), - (ephy_location_action_clear_history): - * src/ephy-location-action.h: - * src/toolbar.c: (toolbar_class_init), (toolbar_set_property), - (sync_user_input_cb), (toolbar_setup_actions), - (toolbar_set_window), (toolbar_init), (toolbar_finalize), - (toolbar_new), (toolbar_activate_location), (toolbar_set_location), - (toolbar_get_location), (toolbar_clear_location_history): - * src/toolbar.h: - * src/window-commands.c: (window_cmd_load_location): - - Remember the address in the location action, so we can restore it when we - get a new proxy widget. - Do some misc cleanups on location entry, removing finished signal; move - activation from toolbar into location entry. - - ChangeLog | 35 ++++++ - lib/widgets/ephy-location-entry.c | 62 +++++++---- - lib/widgets/ephy-location-entry.h | 7 +- - src/ephy-location-action.c | 224 +++++++++++++++++++++++++++++++++----- - src/ephy-location-action.h | 20 +++- - src/toolbar.c | 161 +++++++++++---------------- - src/toolbar.h | 2 +- - src/window-commands.c | 3 +- - 8 files changed, 351 insertions(+), 163 deletions(-) - -commit f7c6e1db094b8f4da058aaec9b2faa9498326b59 -Author: Christian Persch -Date: Sat Sep 20 09:29:50 2003 +0000 - - Remove spurious code. - - 2003-09-20 Christian Persch - - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_init): - - Remove spurious code. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-tree-model-node.c | 8 -------- - 2 files changed, 7 insertions(+), 8 deletions(-) - -commit c5221159ffcbf123e22a6313995e8fc784de1141 -Author: Marco Pesenti Gritti -Date: Sat Sep 20 08:11:52 2003 +0000 - - Do not fail if prefs.js is corrupted. - - 2003-09-20 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - - Do not fail if prefs.js is corrupted. - - * src/ephy-window.c: (ephy_window_state_event_cb): - - Do not allow to edit toolbar in fs - - ChangeLog | 10 ++++++++++ - embed/mozilla/mozilla-embed-single.cpp | 1 - - src/ephy-window.c | 9 +++++++-- - 3 files changed, 17 insertions(+), 3 deletions(-) - -commit d1c2b88f108a6f461383d6d8bf9bbe9a13bf64a4 -Author: Marco Pesenti Gritti -Date: Fri Sep 19 23:42:15 2003 +0000 - - *** empty log message *** - - ChangeLog | 8 ++++++++ - lib/egg/egg-editable-toolbar.c | 4 ++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 54d2149bf268430f3b5f11e58c4492b1ab4c6ff5 -Author: Christian Persch -Date: Fri Sep 19 12:14:45 2003 +0000 - - Add an --import-bookmarks command line option, and really implement the - - 2003-09-19 Christian Persch - - * idl/EphyAutomation.idl: - * src/ephy-automation.c: (impl_ephy_automation_add_bookmark), - (impl_ephy_automation_import_bookmarks), - (ephy_automation_class_init): - * src/ephy-main.c: (ephy_main_start): - - Add an --import-bookmarks command line option, and really implement - the --add-bookmark one. - - ChangeLog | 11 +++++++++++ - idl/EphyAutomation.idl | 2 ++ - src/ephy-automation.c | 18 ++++++++++++++++++ - src/ephy-main.c | 10 ++++++++++ - 4 files changed, 41 insertions(+) - -commit d3873ae5a566d733c31cdde300a6e5997dc4b7ce -Author: Christian Persch -Date: Fri Sep 19 11:58:06 2003 +0000 - - Forgot to commit configure changes - - configure.in | 4 ++++ - 1 file changed, 4 insertions(+) - -commit a5847dd37c91a495db614312d4a5bd719d074991 -Author: Christian Persch -Date: Fri Sep 19 11:48:35 2003 +0000 - - embed/mozilla/MozRegisterComponents.cpp A embed/mozilla/GtkNSSDialogs.cpp - - 2003-09-19 Christian Persch - - * embed/mozilla/MozRegisterComponents.cpp - A embed/mozilla/GtkNSSDialogs.cpp - A embed/mozilla/GtkNSSDialogs.h - * embed/mozilla/Makefile.am - * configure.in: - - Implement Gtk versions of the mozilla certificate prompts. - Ported from galeon -- many thanks to Crispin for this excellent work! - - ChangeLog | 11 + - embed/mozilla/GtkNSSDialogs.cpp | 444 ++++++++++++++++++++++++++++++++ - embed/mozilla/GtkNSSDialogs.h | 31 +++ - embed/mozilla/Makefile.am | 3 + - embed/mozilla/MozRegisterComponents.cpp | 16 ++ - po/ChangeLog | 4 + - po/POTFILES.in | 1 + - 7 files changed, 510 insertions(+) - -commit 741ded15967b19b78879bcc9e8f172895eb984ff -Author: Marco Pesenti Gritti -Date: Fri Sep 19 09:02:05 2003 +0000 - - *** empty log message *** - - TODO | 52 +--------- - data/ui/epiphany-bookmark-editor-ui.xml.in | 56 ---------- - data/ui/epiphany-history-window-ui.xml.in | 40 -------- - data/ui/epiphany-toolbar.xml.in | 46 --------- - data/ui/epiphany-ui.xml.in | 159 ----------------------------- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 7 files changed, 4 insertions(+), 353 deletions(-) - -commit e886e958845ad243debf35139ffa81be9aad3088 -Author: Marco Pesenti Gritti -Date: Fri Sep 19 08:50:56 2003 +0000 - - Do not use .in for not to translate files. - - 2003-09-19 Marco Pesenti Gritti - - * data/ui/Makefile.am: - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * data/ui/epiphany-fs-toolbar.xml: - * data/ui/epiphany-history-window-ui.xml.in: - * data/ui/epiphany-toolbar.xml.in: - * data/ui/epiphany-ui.xml.in: - - Do not use .in for not to translate files. - - * lib/egg/egg-editable-toolbar.c: (create_toolbar), - (toolbars_clean), (egg_editable_toolbar_construct), - (egg_editable_toolbar_set_model), (egg_editable_toolbar_set_merge): - * lib/egg/egg-toolbars-model.c: (parse_toolbars): - - Handle change of properties correctly. Add a toolbar - style property in the xml. - - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_init): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_init): - * src/ephy-shell.c: (ephy_shell_init), (ephy_shell_finalize), - (ephy_shell_get_toolbars_model): - * src/ephy-shell.h: - * src/ephy-window.c: (ephy_window_fullscreen), - (ephy_window_unfullscreen): - * src/toolbar.c: (bookmark_destroy_cb), (toolbar_ensure_action), - (init_bookmarks_toolbar), (init_normal_mode), - (init_fullscreen_mode), (window_state_event_cb), - (toolbar_set_window), (toolbar_set_visibility): - * src/toolbar.h: - * src/window-commands.c: (toolbar_editor_response_cb), - (window_cmd_edit_toolbar): - - Special, more compact, toolbar layout for fullscreen. - - ChangeLog | 38 ++++++++ - data/ui/Makefile.am | 15 +-- - data/ui/epiphany-bookmark-editor-ui.xml | 56 +++++++++++ - data/ui/epiphany-fs-toolbar.xml | 10 ++ - data/ui/epiphany-history-window-ui.xml | 40 ++++++++ - data/ui/epiphany-toolbar.xml | 46 +++++++++ - data/ui/epiphany-ui.xml | 159 ++++++++++++++++++++++++++++++++ - lib/egg/egg-editable-toolbar.c | 68 ++++++++++---- - lib/egg/egg-toolbars-model.c | 8 ++ - src/ephy-shell.c | 43 +++++++-- - src/ephy-shell.h | 3 +- - src/ephy-window.c | 12 --- - src/toolbar.c | 77 ++++++++++++---- - src/toolbar.h | 1 + - src/window-commands.c | 4 +- - 15 files changed, 517 insertions(+), 63 deletions(-) - -commit 3d4cc4657225dcd214857e2c6d9798d881d00623 -Author: Tõivo Leedjärv -Date: Thu Sep 18 19:44:35 2003 +0000 - - Updated Estonian translation by Priit Laes . - - 2003-09-18 Tõivo Leedjärv - - * et.po: Updated Estonian translation - by Priit Laes . - - po/ChangeLog | 5 + - po/et.po | 438 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 224 insertions(+), 219 deletions(-) - -commit ed73696c92168492ee54292370db081533bf8955 -Author: Marco Pesenti Gritti -Date: Thu Sep 18 17:06:35 2003 +0000 - - correct toolitem type - - 2003-09-18 Marco Pesenti Gritti - - * src/ephy-favicon-action.c: (ephy_favicon_action_class_init): - - correct toolitem type - - ChangeLog | 6 ++++++ - src/ephy-favicon-action.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit bb13f5edca073852d07ee55f02da3d7ebc50f4ae -Author: Marco Pesenti Gritti -Date: Thu Sep 18 13:55:55 2003 +0000 - - Fix warning with new gtk - - 2003-09-18 Marco Pesenti Gritti - - * src/ephy-encoding-menu.c: (ephy_encoding_menu_rebuild): - - Fix warning with new gtk - - ChangeLog | 6 ++++++ - src/ephy-encoding-menu.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 6d93635b94a93ff3188e88a46393083fbca7e603 -Author: Christian Persch -Date: Wed Sep 17 22:04:47 2003 +0000 - - Refactor node db loading functions into a common one in ephy-node-db. - - 2003-09-18 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_init): - * embed/ephy-history.c: (ephy_history_init): - * lib/ephy-node-db.c: (ephy_node_db_load_from_file): - * lib/ephy-node-db.h: - * lib/ephy-state.c: (ensure_states): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): - - Refactor node db loading functions into a common one in - ephy-node-db. Switch to using xmlReader api. - - ChangeLog | 12 ++++++ - embed/ephy-favicon-cache.c | 29 ++------------- - embed/ephy-history.c | 29 ++------------- - lib/ephy-node-db.c | 84 ++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-node-db.h | 5 +++ - lib/ephy-state.c | 57 ++++++---------------------- - src/bookmarks/ephy-bookmarks.c | 48 +++--------------------- - 7 files changed, 127 insertions(+), 137 deletions(-) - -commit ff09416c7a185b6774c5f1e04c9673c9f0d86f71 -Author: Christian Persch -Date: Wed Sep 17 17:22:38 2003 +0000 - - Commit configure change, too - - configure.in | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit 55921eaa6c0396d34cbffbf312cc9337495e3e7f -Author: Christian Persch -Date: Wed Sep 17 17:21:44 2003 +0000 - - Re-revert, use new gnome vfs show_url api. - - 2003-09-17 Christian Persch - - * embed/mozilla/ExternalProtocolService.cpp: - - Re-revert, use new gnome vfs show_url api. - - * configure.in: - - Depend on appropriate gnome-vfs version. - - ChangeLog | 10 ++++++++++ - embed/mozilla/ExternalProtocolService.cpp | 6 +++--- - 2 files changed, 13 insertions(+), 3 deletions(-) - -commit a37c96725038bee5c8ba1817740908fdfa1a3d8e -Author: Marco Pesenti Gritti -Date: Wed Sep 17 13:02:53 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 7c552cdea9b4224345f8eb1aef59e583702ac944 -Author: Gediminas Paulauskas -Date: Wed Sep 17 12:12:35 2003 +0000 - - here too - - po/ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit e9696af0c569f693ba8d8f9d88d68c0961c6b914 -Author: Gediminas Paulauskas -Date: Wed Sep 17 11:57:34 2003 +0000 - - Add Lithuanian translation by Tomas Kuliavas . - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/lt.po | 2986 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2996 insertions(+), 1 deletion(-) - -commit 22288c6cad9346c892f15f8f68f6ce6cf2638c25 -Author: Marco Pesenti Gritti -Date: Wed Sep 17 11:08:44 2003 +0000 - - add supported protocols - - 2003-09-17 Marco Pesenti Gritti - - * data/epiphany.applications: - - add supported protocols - - ChangeLog | 6 ++++++ - data/epiphany.applications | 1 + - 2 files changed, 7 insertions(+) - -commit 3333b0f664a978f7cb86ce9cd164778e28febe06 -Author: Christian Persch -Date: Tue Sep 16 16:55:09 2003 +0000 - - Adapt to changed GtkActionGroup api. - - 2003-09-16 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/ephy-window.c: (setup_window): - - Adapt to changed GtkActionGroup api. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 17 ++++++++++++++--- - src/ephy-window.c | 34 ++++++++++++++++++++++------------ - 3 files changed, 44 insertions(+), 15 deletions(-) - -commit c373fff1059ce15f8c4f4dc8616dc0f36bb65bea -Author: Christopher James Lahey -Date: Tue Sep 16 16:41:35 2003 +0000 - - Added MOZ_PLUGIN_PATH default. Added migration from galeon settings. - - 2003-09-16 Christopher James Lahey - - * src/epiphany.in: Added MOZ_PLUGIN_PATH default. Added migration - from galeon settings. - - ChangeLog | 5 +++++ - src/epiphany.in | 18 ++++++++++++++++++ - 2 files changed, 23 insertions(+) - -commit cae41a6e3e2392290adfec7e37e18f42224fb5f8 -Author: Christian Persch -Date: Tue Sep 16 16:12:28 2003 +0000 - - Really use the translated names of the default topics and bookmarks when - - 2003-09-16 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults): - - Really use the translated names of the default topics and bookmarks when - creating them. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks.c | 7 +++---- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit 87786db64e5037a597659b698b032d34e8e23ae3 -Author: Christian Persch -Date: Tue Sep 16 16:00:42 2003 +0000 - - ephy_new_bookmark_construct): - - 2003-09-16 Christian Persch - - * src/bookmarks/ephy-new-bookmark.c: ephy_new_bookmark_construct): - - HIGgify dialogue title. Fixes bug 119710. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-new-bookmark.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 61134e230bd8eb8a8d070afbb651e38809eb4664 -Author: Marco Pesenti Gritti -Date: Mon Sep 15 18:20:35 2003 +0000 - - *** empty log message *** - - src/ephy-window.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c50979194745b2678e03a9067fff1d3ad00d5d85 -Author: Marco Pesenti Gritti -Date: Mon Sep 15 18:19:01 2003 +0000 - - Activate the embed when necessary. - - 2003-09-15 Marco Pesenti Gritti - - * src/ephy-window.c: (ephy_window_load_url): - - Activate the embed when necessary. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 11 +++++++++++ - 2 files changed, 17 insertions(+) - -commit 39eda95f17c3d2cf1cb661c019e3f55f30a73ea0 -Author: Christian Persch -Date: Mon Sep 15 18:07:45 2003 +0000 - - Correct spelling mistake in ChangeLog - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit bdadef115c9a7e35ed092891cc30c477aa56e5c6 -Author: Christian Persch -Date: Mon Sep 15 18:04:30 2003 +0000 - - Enable dragging the tab from a single-tab window too. - - 2003-09-15 Christian Persch - - * src/ephy-notebook.c: (drag_start), (drag_stop), - (motion_notify_cb), (move_tab_to_another_notebook), - (button_release_cb), (ephy_notebook_init): - - Enable dragging the tab from a single-tab window too. - - Correctly honour the drag threshold when starting a drag - (ported from galeon, tanks go to Crispin). - - ChangeLog | 11 +++++++++++ - src/ephy-notebook.c | 57 +++++++++++++++++++++-------------------------------- - 2 files changed, 33 insertions(+), 35 deletions(-) - -commit fb5cf4145671c33d9bdfe26d824b537f0ea9e9da -Author: Christian Persch -Date: Sun Sep 14 20:33:37 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - data/default-prefs.js | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 6b2fa5094bf7d36ed3cfe864ce42a0ac6b09edee -Author: Christian Rose -Date: Sun Sep 14 00:38:12 2003 +0000 - - Fixed terminology issue pointed out by Johan Hammar - - 2003-09-14 Christian Rose - - * sv.po: Fixed terminology issue pointed out by - Johan Hammar - and also updated the translation. - - po/ChangeLog | 6 + - po/sv.po | 1186 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 601 insertions(+), 591 deletions(-) - -commit b17358da7d49924e4a0791dd8e62faaa14d52a69 -Author: Patanjali Somayaji -Date: Sat Sep 13 18:45:30 2003 +0000 - - Added in support to allow Mozilla 1.4.1 to be used for Epiphany compile. - - configure.in | 7 ++++--- - embed/mozilla/ContentHandler.cpp | 6 +++--- - embed/mozilla/EphyWrapper.cpp | 2 +- - embed/mozilla/EventContext.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 5 files changed, 10 insertions(+), 9 deletions(-) - -commit 6a28480cf44eaf0203df179964ae9be2369a19e1 -Author: Nguyen Thai Ngoc Duy -Date: Sat Sep 13 10:21:35 2003 +0000 - - Update vi.po - - po/vi.po | 62 ++++++++++++++++++++++++++++++++------------------------------ - 1 file changed, 32 insertions(+), 30 deletions(-) - -commit 519c5cbab794b898ad4530dde62585868d361334 -Author: Christian Persch -Date: Sat Sep 13 08:29:25 2003 +0000 - - Exchange the newly-deprecated g_value_set_object_take_ownership() with - - 2003-09-13 Christian Persch - - * lib/egg/eggmarshalers.c: (_egg_marshal_OBJECT__VOID): - * src/bookmarks/ephy-bookmarks-editor.c: (provide_favicon): - * src/ephy-history-window.c: (provide_favicon): - - Exchange the newly-deprecated g_value_set_object_take_ownership() with - g_value_take_object(). - - ChangeLog | 9 +++++++++ - lib/egg/eggmarshalers.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - 4 files changed, 12 insertions(+), 3 deletions(-) - -commit 2bcd5a74e3ff4cb2260b1a3f49df05fc078eb421 -Author: Marco Pesenti Gritti -Date: Fri Sep 12 18:30:38 2003 +0000 - - Use a line to make more clear Language/Fonts relation. I had this idea - - 2003-09-12 Marco Pesenti Gritti - - * data/glade/prefs-dialog.glade: - - Use a line to make more clear Language/Fonts relation. - I had this idea from some time, having seen it in gnome-blog too, - I thought to give it a try. - - ChangeLog | 8 + - data/glade/prefs-dialog.glade | 479 ++++++++++++++++++++++-------------------- - 2 files changed, 263 insertions(+), 224 deletions(-) - -commit c93cd13f059815bfa8f1d2f23820d0c62796c15d -Author: Marco Pesenti Gritti -Date: Thu Sep 11 22:02:28 2003 +0000 - - Remove not needed removal of groups of actions from ui merge (gtk fix). - - 2003-09-11 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_finalize): - * src/bookmarks/ephy-bookmarks-menu.c: - (ephy_bookmarks_menu_finalize): - * src/ephy-encoding-menu.c: (ephy_encoding_menu_finalize_impl): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_finalize): - * src/ephy-history-window.c: (ephy_history_window_finalize): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_finalize_impl): - * src/ephy-window.c: (ephy_window_finalize): - * src/toolbar.c: (toolbar_finalize): - - Remove not needed removal of groups of actions from ui - merge (gtk fix). - - ChangeLog | 16 ++++++++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 -- - src/bookmarks/ephy-bookmarks-menu.c | 2 -- - src/ephy-encoding-menu.c | 3 --- - src/ephy-favorites-menu.c | 3 --- - src/ephy-history-window.c | 2 -- - src/ephy-tabs-menu.c | 3 --- - src/ephy-window.c | 2 -- - src/toolbar.c | 1 - - 9 files changed, 16 insertions(+), 18 deletions(-) - -commit 9345135208e277113cc014c355b2360e0689d51b -Author: Marco Pesenti Gritti -Date: Thu Sep 11 19:18:56 2003 +0000 - - Make sure to remove show_timeout also when the window is still not - - 2003-09-11 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_autocompletion_hide_alternatives), - (insert_text_cb), - (ephy_location_entry_autocompletion_window_hidden_cb): - - Make sure to remove show_timeout also when - the window is still not visible. - - ChangeLog | 10 ++++++++++ - lib/widgets/ephy-location-entry.c | 21 ++++++++------------- - 2 files changed, 18 insertions(+), 13 deletions(-) - -commit 3054db7013ad240d4231120e8135a6be6ca91539 -Author: Christian Persch -Date: Wed Sep 10 13:19:26 2003 +0000 - - Remove a double connect to signal. - - 2003-09-10 Christian Persch - - * src/ephy-window.c: (ephy_window_set_active_tab): - - Remove a double connect to signal. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 4 ---- - 2 files changed, 6 insertions(+), 4 deletions(-) - -commit abc9ae25f33969fcf25c9b7eb82b927a601491a8 -Author: Görkem Çetin -Date: Wed Sep 10 13:02:55 2003 +0000 - - CVS_SILENT - - po/tr.po | 1 - - 1 file changed, 1 deletion(-) - -commit 8a776a6dcf58d996277bc8c3d9f3b0d78c751b2f -Author: Görkem Çetin -Date: Wed Sep 10 11:53:39 2003 +0000 - - CVS_SILENT - - po/tr.po | 4576 ++++++++++++++++++++++++++++++++++++++------------------------ - 1 file changed, 2795 insertions(+), 1781 deletions(-) - -commit bd8de625888d481cb6c6ce73721d3597349f5afb -Author: Marco Pesenti Gritti -Date: Wed Sep 10 08:11:43 2003 +0000 - - Make spinner status per tab. Remove the default to tab pref, use tab by - - 2003-09-10 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * data/glade/prefs-dialog.glade: - * lib/ephy-prefs.h: - * src/ephy-notebook.c: (update_tabs_visibility), - (ephy_notebook_init): - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-tab.c: (open_link_in_new_tab): - * src/ephy-window.c: (sync_tab_load_status), - (ephy_window_set_active_tab), (tab_added_cb), (tab_removed_cb): - * src/prefs-dialog.c: - - Make spinner status per tab. - Remove the default to tab pref, use tab by default for middle - click on links, add a always_show_tabs_bar hidden pref. - - ChangeLog | 17 +++++++++++ - data/epiphany.schemas.in | 6 ++-- - data/glade/prefs-dialog.glade | 52 ---------------------------------- - lib/ephy-prefs.h | 2 +- - src/ephy-notebook.c | 4 +-- - src/ephy-shell.c | 4 +-- - src/ephy-tab.c | 3 +- - src/ephy-window.c | 65 +++++++++++++------------------------------ - src/prefs-dialog.c | 2 -- - 9 files changed, 46 insertions(+), 109 deletions(-) - -commit 50848b9653f92e9acedd1cfc33dfefd10f0df201 -Author: Pablo Saratxaga -Date: Wed Sep 10 00:13:05 2003 +0000 - - the right file this time - - po/wa.po | 3289 ++++++++++++++++++++++++++++++++++++++++++++++++++------------ - 1 file changed, 2642 insertions(+), 647 deletions(-) - -commit 89322ddc8a2f8ec4024d5a312b92950ee02f634b -Author: Pablo Saratxaga -Date: Wed Sep 10 00:11:01 2003 +0000 - - Added Walloon file - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/wa.po | 926 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 935 insertions(+), 1 deletion(-) - -commit 98fb9cfcb351c015b96230ee0f70c7f13483b6d6 -Author: Marco Pesenti Gritti -Date: Tue Sep 9 22:13:48 2003 +0000 - - Readd separators and dont use unnecessary placeholders. - - 2003-09-10 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml.in: - * src/ephy-favorites-menu.c: (ephy_favorites_menu_rebuild): - - Readd separators and dont use unnecessary placeholders. - - ChangeLog | 7 +++++++ - data/ui/epiphany-ui.xml.in | 4 ++-- - src/ephy-favorites-menu.c | 2 +- - 3 files changed, 10 insertions(+), 3 deletions(-) - -commit 391bbbee851c7e90e28322cf48a9277cc7aab883 -Author: Marco Pesenti Gritti -Date: Tue Sep 9 20:16:23 2003 +0000 - - First important step in solving the fonts mess. Allow to select the - - 2003-09-09 Marco Pesenti Gritti - - * data/default-prefs.js: - * data/glade/prefs-dialog.glade: - * embed/ephy-embed-single.c: (ephy_embed_single_get_font_list): - * embed/ephy-embed-single.h: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * src/prefs-dialog.c: (setup_font_menu), (attach_fonts_signals), - (setup_size_controls), (setup_fonts), (prefs_dialog_init): - - First important step in solving the fonts mess. - Allow to select the variable width instead of - families. Also use points instead of pixels. - Set a minimum font size by default. - - ChangeLog | 16 + - data/default-prefs.js | 3 + - data/glade/prefs-dialog.glade | 633 ++++++++++++--------------------- - embed/ephy-embed-single.c | 7 +- - embed/ephy-embed-single.h | 8 +- - embed/mozilla/mozilla-embed-single.cpp | 13 +- - embed/mozilla/mozilla-notifiers.cpp | 2 +- - src/prefs-dialog.c | 56 ++- - 8 files changed, 265 insertions(+), 473 deletions(-) - -commit 47fd3c8f0f15c3482ac51b6ab8de1414d4fd7881 -Author: Görkem Çetin -Date: Tue Sep 9 08:37:48 2003 +0000 - - Updating Turkish po files... - - po/tr.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b367752ed56a64c191ee8a4d431293dda52ac579 -Author: Christian Persch -Date: Tue Sep 9 08:27:05 2003 +0000 - - gtk+ now supports invisible event boxes. Remove our custom implementation - - 2003-09-09 Christian Persch - - * lib/widgets/Makefile.am: - * lib/widgets/ephy-event-box.c: - * lib/widgets/ephy-event-box.h: - * src/ephy-favicon-action.c: (create_tool_item): - * src/ephy-notebook.c: (build_tab_label): - * src/statusbar.c: (create_statusbar_security_icon): - - gtk+ now supports invisible event boxes. Remove our custom implementation - and use gtk+ api instead. - - ChangeLog | 12 +++ - lib/widgets/Makefile.am | 2 - - lib/widgets/ephy-event-box.c | 221 ------------------------------------------- - lib/widgets/ephy-event-box.h | 64 ------------- - src/ephy-favicon-action.c | 5 +- - src/ephy-notebook.c | 16 +++- - src/statusbar.c | 2 + - 7 files changed, 30 insertions(+), 292 deletions(-) - -commit ea1fa38ea96a167de2f80b07ebaad54ce36477ec -Author: Paul Duffy -Date: Mon Sep 8 08:26:22 2003 +0000 - - updated irish translation - - po/ChangeLog | 4 ++++ - po/ga.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 77a443b36bf0bb321849bfac4f0337b35affd44a -Author: Marco Pesenti Gritti -Date: Mon Sep 8 08:05:26 2003 +0000 - - add a missing file - - 2003-09-08 Marco Pesenti Gritti - - * po/POTFILES.in: - - add a missing file - - ChangeLog | 6 ++++++ - po/POTFILES.in | 1 + - 2 files changed, 7 insertions(+) - -commit 76b0971c7b53d90d24b562483effcf08e9c4bd22 -Author: Marcel Telka -Date: Sun Sep 7 20:14:56 2003 +0000 - - Updated Slovak translation. - - 2003-09-07 Marcel Telka - - * sk.po: Updated Slovak translation. - - po/ChangeLog | 4 ++ - po/sk.po | 194 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 101 insertions(+), 97 deletions(-) - -commit f93a2104397650e098316f77e158985b11e01cc9 -Author: Marcel Telka -Date: Sun Sep 7 20:10:21 2003 +0000 - - Added sk. - - 2003-09-07 Marcel Telka - - * configure.in (ALL_LINGUAS): Added sk. - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 4dc8ae1c1c6285a8569ce4a5f36dea50680b9682 -Author: Marcel Telka -Date: Sun Sep 7 19:55:15 2003 +0000 - - Added Slovak translation. - - 2003-09-07 Marcel Telka - - * sk.po: Added Slovak translation. - - po/ChangeLog | 4 + - po/sk.po | 2956 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2960 insertions(+) - -commit 5ea97c2e9682e475d082367837b4b88a69deff99 -Author: Marco Pesenti Gritti -Date: Sun Sep 7 18:50:31 2003 +0000 - - *** empty log message *** - - data/default-prefs.js | 38 ++++++++++++++++ - embed/mozilla/mozilla-embed-single.cpp | 79 +++++++++++----------------------- - 2 files changed, 64 insertions(+), 53 deletions(-) - -commit 34b0404b2f6642102a882346dbe8d52fa0c81fdb -Author: Marco Pesenti Gritti -Date: Sun Sep 7 18:49:53 2003 +0000 - - Galeon guys found a way to load prefs from a js file, without having them - - 2003-09-07 Marco Pesenti Gritti - - * data/Makefile.am: - * data/default-prefs.js: - * embed/mozilla/mozilla-embed-single.cpp: - - Galeon guys found a way to load prefs from - a js file, without having them saved on it. - So let's get it back. - - ChangeLog | 10 ++++++++++ - data/Makefile.am | 2 ++ - 2 files changed, 12 insertions(+) - -commit 67adad74eb9804c1f7ba4196c58932005afcc072 -Author: Marco Pesenti Gritti -Date: Sun Sep 7 10:07:11 2003 +0000 - - Set wrap around prop in mozilla interface - - 2003-09-07 Marco Pesenti Gritti - - * embed/mozilla/EphyWrapper.cpp: - - Set wrap around prop in mozilla interface - - ChangeLog | 6 ++++++ - embed/mozilla/EphyWrapper.cpp | 1 + - 2 files changed, 7 insertions(+) - -commit a4b4bb672018339c8449ede32a27f2ea6c2b9b5a -Author: Evandro Fernandes Giovanini -Date: Sat Sep 6 23:25:13 2003 +0000 - - Updated Brazilian Portuguese translation. - - 2003-09-06 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 ++++ - po/pt_BR.po | 6 +++--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 1c9888aff99b19587bf1644bd4662ab04a364eda -Author: Marco Pesenti Gritti -Date: Sat Sep 6 16:06:07 2003 +0000 - - Port to the new gtk dynamic menus api - - 2003-09-06 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-menu.c: (ephy_bookmarks_menu_clean), - (add_bookmarks_menu), (ephy_bookmarks_menu_rebuild), - (ephy_bookmarks_menu_set_window), - (ephy_bookmarks_menu_set_property), (ephy_bookmarks_menu_finalize): - - Port to the new gtk dynamic menus api - - ChangeLog | 9 ++++ - src/bookmarks/ephy-bookmarks-menu.c | 101 +++++++++++++++--------------------- - 2 files changed, 50 insertions(+), 60 deletions(-) - -commit 73d28bcf0b72658c77272b01a1c338f8c0fe7662 -Author: Christian Persch -Date: Fri Sep 5 16:50:01 2003 +0000 - - Use gtk_action_group_set_translation_domain() to restore menu and popup - - 2003-09-05 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/ephy-window.c: (setup_window): - * src/ppview-toolbar.c: (ppview_toolbar_set_window): - - Use gtk_action_group_set_translation_domain() to restore menu and popup - i18n. - - ChangeLog | 11 +++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 1 + - src/ephy-history-window.c | 1 + - src/ephy-window.c | 2 ++ - src/ppview-toolbar.c | 1 + - 5 files changed, 16 insertions(+) - -commit ac762623eea794b629452b1625835f97b02234c9 -Author: Christian Persch -Date: Thu Sep 4 21:23:13 2003 +0000 - - Adapt to new gtk_ui_manager_add_ui functionality. - - 2003-09-04 Christian Persch - - * src/ephy-favorites-menu.c: (ephy_favorites_menu_rebuild): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_update): - - Adapt to new gtk_ui_manager_add_ui functionality. - - ChangeLog | 7 +++++++ - src/ephy-favorites-menu.c | 3 ++- - src/ephy-tabs-menu.c | 3 ++- - 3 files changed, 11 insertions(+), 2 deletions(-) - -commit e2483a9a70ee85cd4e9e1dea45572bdc5f8118c6 -Author: Fatih Demir -Date: Thu Sep 4 18:13:43 2003 +0000 - - Updated Tamil translation - - po/ChangeLog | 4 + - po/ta.po | 310 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 152 insertions(+), 162 deletions(-) - -commit 45d37e714254976d810282e235f48bfb28ff838b -Author: Christian Persch -Date: Thu Sep 4 17:29:11 2003 +0000 - - Bump version to 1.1.0 and EPIPHANY_MAJOR to 1.1 on HEAD. - - 2003-09-04 Christian Persch - - * configure.in: - - Bump version to 1.1.0 and EPIPHANY_MAJOR to 1.1 on HEAD. - - ChangeLog | 8 +++++++- - configure.in | 4 ++-- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 7b2c1d49a56c2a0fcb3168acd35cd71dc4a85004 -Author: Marco Pesenti Gritti -Date: Thu Sep 4 14:12:39 2003 +0000 - - *** empty log message *** - - lib/widgets/ephy-node-view.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 4fd122fc251cf062675385259d28af549de75979 -Author: Marco Pesenti Gritti -Date: Thu Sep 4 14:00:03 2003 +0000 - - signature change in gtk - - 2003-09-04 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (popup_toolbar_context_menu_cb): - - signature change in gtk - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 3 +++ - 2 files changed, 9 insertions(+) - -commit d7e10b81a7d8b2cef33a902d9f672e774b672aa8 -Author: Marco Pesenti Gritti -Date: Thu Sep 4 13:46:49 2003 +0000 - - Use x,y only on drop, otherwise they are invalid. Damn that api suck. - - 2003-09-04 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (drag_data_received_cb): - - Use x,y only on drop, otherwise they are invalid. Damn - that api suck. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-node-view.c | 23 +++++++++++++---------- - 2 files changed, 20 insertions(+), 10 deletions(-) - -commit a16915c7337f69679aca212484a5f9568decb217 -Author: Marco Pesenti Gritti -Date: Thu Sep 4 12:06:35 2003 +0000 - - Fix a typo in the xml - - 2003-09-04 Marco Pesenti Gritti - - * data/ui/epiphany-history-window-ui.xml.in: - - Fix a typo in the xml - - * src/bookmarks/ephy-bookmarks-editor.c: - * src/ephy-history-window.c: (ephy_history_window_show_popup_cb): - - Change the popups path to fit new api - - ChangeLog | 11 +++++++++++ - data/ui/epiphany-history-window-ui.xml.in | 2 -- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - 4 files changed, 13 insertions(+), 4 deletions(-) - -commit 950219c7eb23cc9e19017c9adde87ca57e2bceeb -Author: Marco Pesenti Gritti -Date: Thu Sep 4 11:47:04 2003 +0000 - - Check if the target type match before highlighting the row and return - - 2003-09-04 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (drag_motion_cb): - - Check if the target type match before highlighting - the row and return success status. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-node-view.c | 4 +++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit d61780b30cd54e69dba79d74602079d7acdef8f1 -Author: Pablo Saratxaga -Date: Wed Sep 3 20:41:05 2003 +0000 - - updated Vietnamese po file - - po/ChangeLog | 4 + - po/vi.po | 2546 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1280 insertions(+), 1270 deletions(-) - -commit ba25047e3fa807323172ad68e543fac1db22cd95 -Author: Guntupalli Karunakar -Date: Wed Sep 3 13:44:33 2003 +0000 - - Corrected translation bugs. - - po/ChangeLog | 4 ++++ - po/hi.po | 22 +++++++++++----------- - 2 files changed, 15 insertions(+), 11 deletions(-) - -commit 45f9b007f1a057866dc0a44fe498993ef5293bfd -Author: Marco Pesenti Gritti -Date: Wed Sep 3 13:09:32 2003 +0000 - - Use the api for dynamic menus creation. Far cleaner. - - 2003-09-03 Marco Pesenti Gritti - - * src/ephy-favorites-menu.c: (ephy_favorites_menu_rebuild): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_update): - - Use the api for dynamic menus creation. Far cleaner. - - ChangeLog | 7 +++++++ - src/ephy-favorites-menu.c | 37 +++++++++---------------------------- - src/ephy-tabs-menu.c | 29 ++++++++--------------------- - 3 files changed, 24 insertions(+), 49 deletions(-) - -commit 85ab8f0a87cc2f05e49777756ffc861890b2e700 -Author: Guntupalli Karunakar -Date: Wed Sep 3 12:26:39 2003 +0000 - - Updated Hindi translation - - po/ChangeLog | 4 + - po/hi.po | 1460 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 697 insertions(+), 767 deletions(-) - -commit 33b7df96e9481e054c0f813840f299dd9118b77f -Author: Christian Persch -Date: Wed Sep 3 12:16:19 2003 +0000 - - Rewrote xbel bookmarks importer using xmlreader api. Should fix bug - - 2003-09-03 Christian Persch - - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_single_bookmark), - (xbel_parse_bookmark), (xbel_parse_folder), (xbel_parse_bookmarks), - (ephy_bookmarks_import_xbel): - - Rewrote xbel bookmarks importer using xmlreader api. Should fix - bug 120803. - - * configure.in: - - Require libxml2 >= 2.5.9 - - ChangeLog | 13 ++ - configure.in | 4 +- - src/bookmarks/ephy-bookmarks-import.c | 339 ++++++++++++++++++++++++++-------- - 3 files changed, 274 insertions(+), 82 deletions(-) - -commit 90b92dab6b239d3ba9d74e272035db767a2943d4 -Author: Christian Persch -Date: Wed Sep 3 11:31:07 2003 +0000 - - Fix galeon bookmarks import for the case of there existing a subdirectory - - 2003-09-03 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: (add_bookmarks_source_menu), - (cmd_bookmarks_import): - - Fix galeon bookmarks import for the case of there existing a subdirectory - of ~/.galeon having a bookmarks.xbel file. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 11 ++++++----- - 2 files changed, 14 insertions(+), 5 deletions(-) - -commit 2819986f63f220eab9d7855f49272704b17736fd -Author: Sanlig Badral -Date: Wed Sep 3 06:46:29 2003 +0000 - - Added Mongolian translation. - - po/mn.po | 2974 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 2974 insertions(+) - -commit 81d9f46758efe734388b7a721a6466435bdc7fae -Author: Sanlig Badral -Date: Wed Sep 3 06:45:43 2003 +0000 - - Added Mongolian translation - - ChangeLog | 4 ++++ - configure.in | 2 +- - po/ChangeLog | 4 ++++ - 3 files changed, 9 insertions(+), 1 deletion(-) - -commit c2dd5abc3fb32fafe099b878ed6a98cdb837d3be -Author: Mugurel Tudor -Date: Tue Sep 2 21:25:18 2003 +0000 - - *** empty log message *** - - po/ChangeLog | 5 +++++ - po/ro.po | 16 ++++++++-------- - 2 files changed, 13 insertions(+), 8 deletions(-) - -commit 0639750dee0a8fb29d8193875c3748958556cd9d -Author: Marco Pesenti Gritti -Date: Tue Sep 2 10:50:30 2003 +0000 - - typo - - ChangeLog | 6 ++++++ - src/ephy-nautilus-view.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 73a95385f4034998cc78199dc8bb9ee22d90d6aa -Author: Christian Persch -Date: Mon Sep 1 23:20:17 2003 +0000 - - Mega-patch, changelog too long to paste here. - - ChangeLog | 242 +++++++++++++++++++++++++++++++ - embed/downloader-view.c | 28 ++-- - embed/downloader-view.h | 22 ++- - embed/ephy-embed-dialog.c | 23 ++- - embed/ephy-embed-dialog.h | 15 +- - embed/ephy-embed-event.c | 23 ++- - embed/ephy-embed-event.h | 15 +- - embed/ephy-embed-persist.c | 31 ++-- - embed/ephy-embed-persist.h | 15 +- - embed/ephy-embed-popup-control.c | 30 ++-- - embed/ephy-embed-popup-control.h | 21 +-- - embed/ephy-embed-shell.c | 22 ++- - embed/ephy-embed-shell.h | 17 +-- - embed/ephy-embed-single.c | 33 ++--- - embed/ephy-embed-single.h | 15 +- - embed/ephy-embed-utils.c | 4 +- - embed/ephy-embed.c | 40 ++--- - embed/ephy-embed.h | 15 +- - embed/ephy-favicon-cache.c | 21 +-- - embed/ephy-favicon-cache.h | 10 +- - embed/ephy-history.c | 23 ++- - embed/ephy-history.h | 14 +- - embed/find-dialog.c | 47 +++--- - embed/find-dialog.h | 16 +- - embed/mozilla/ProgressListener.cpp | 4 +- - embed/mozilla/mozilla-embed-persist.cpp | 25 ++-- - embed/mozilla/mozilla-embed-persist.h | 15 +- - embed/mozilla/mozilla-embed-single.cpp | 28 ++-- - embed/mozilla/mozilla-embed-single.h | 12 +- - embed/mozilla/mozilla-embed.cpp | 40 ++--- - embed/mozilla/mozilla-embed.h | 15 +- - embed/print-dialog.c | 54 +++---- - embed/print-dialog.h | 14 +- - lib/ephy-autocompletion.c | 14 +- - lib/ephy-dialog.c | 22 ++- - lib/ephy-dialog.h | 15 +- - lib/ephy-node-db.c | 16 +- - lib/ephy-node-filter.c | 15 +- - lib/widgets/ephy-arrow-toolbutton.c | 11 +- - lib/widgets/ephy-arrow-toolbutton.h | 14 +- - lib/widgets/ephy-autocompletion-window.c | 15 +- - lib/widgets/ephy-location-entry.c | 11 +- - lib/widgets/ephy-node-view.c | 19 +-- - lib/widgets/ephy-search-entry.c | 29 +--- - lib/widgets/ephy-spinner.c | 23 +-- - lib/widgets/ephy-spinner.h | 13 +- - lib/widgets/ephy-tree-model-node.c | 18 +-- - lib/widgets/ephy-tree-model-sort.c | 14 +- - lib/widgets/ephy-zoom-action.c | 23 +-- - lib/widgets/ephy-zoom-control.c | 12 +- - src/bookmarks/ephy-bookmark-action.c | 21 +-- - src/bookmarks/ephy-bookmark-properties.c | 26 +--- - src/bookmarks/ephy-bookmarks-editor.c | 19 +-- - src/bookmarks/ephy-bookmarks-editor.h | 12 +- - src/bookmarks/ephy-bookmarks-menu.c | 11 +- - src/bookmarks/ephy-bookmarks.c | 29 ++-- - src/bookmarks/ephy-bookmarks.h | 14 +- - src/bookmarks/ephy-new-bookmark.c | 20 +-- - src/bookmarks/ephy-topic-action.c | 28 +--- - src/bookmarks/ephy-topics-selector.c | 28 +--- - src/bookmarks/ephy-topics-selector.h | 12 +- - src/ephy-automation.c | 10 +- - src/ephy-automation.h | 16 +- - src/ephy-encoding-menu.c | 16 +- - src/ephy-favicon-action.c | 21 ++- - src/ephy-favorites-menu.c | 18 ++- - src/ephy-history-window.c | 22 ++- - src/ephy-location-action.h | 4 + - src/ephy-nautilus-view.c | 13 +- - src/ephy-nautilus-view.h | 13 +- - src/ephy-navigation-action.c | 25 +--- - src/ephy-notebook.c | 22 +-- - src/ephy-notebook.h | 14 +- - src/ephy-plugin.h | 4 + - src/ephy-shell.c | 26 ++-- - src/ephy-shell.h | 15 +- - src/ephy-spinner-action.c | 26 ++-- - src/ephy-tab.c | 82 +++++------ - src/ephy-tab.h | 15 +- - src/ephy-tabs-menu.c | 17 ++- - src/ephy-tabs-menu.h | 23 ++- - src/ephy-toolbars-model.c | 16 +- - src/ephy-toolbars-model.h | 15 +- - src/ephy-window.c | 77 +++++----- - src/ephy-window.h | 14 +- - src/language-editor.c | 36 ++--- - src/language-editor.h | 14 +- - src/pdm-dialog.c | 35 ++--- - src/pdm-dialog.h | 15 +- - src/popup-commands.c | 2 +- - src/ppview-toolbar.c | 93 ++++++------ - src/ppview-toolbar.h | 14 +- - src/prefs-dialog.c | 39 +++-- - src/prefs-dialog.h | 18 ++- - src/session.c | 28 ++-- - src/session.h | 24 +-- - src/statusbar.c | 21 ++- - src/statusbar.h | 14 +- - src/toolbar.c | 41 +++--- - src/toolbar.h | 14 +- - 100 files changed, 1195 insertions(+), 1190 deletions(-) - -commit 3375c1878c4c0ebf4f5067d128024ea484208f62 -Author: Christian Persch -Date: Mon Sep 1 22:31:11 2003 +0000 - - Fix ui xml, make ppview toolbar work again. - - 2003-09-02 Christian Persch - - * src/ppview-toolbar.c: - - Fix ui xml, make ppview toolbar work again. - - ChangeLog | 6 ++++++ - src/ppview-toolbar.c | 18 +++++++++--------- - 2 files changed, 15 insertions(+), 9 deletions(-) - -commit b490b73ed8cc9377f3cecef2553b2c1f5692df94 -Author: Marius Andreiana -Date: Mon Sep 1 21:03:04 2003 +0000 - - added ( thanks to Mi%Gş%@u Moldovan ) - - 2003-09-01 Marius Andreiana - - * ro.po: added ( thanks to Mi%Gş%@u Moldovan ) - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/ro.po | 2985 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2994 insertions(+), 1 deletion(-) - -commit 7b9beb6c5ff3eddd3df3a84892a6f67a787215d4 -Author: Marco Pesenti Gritti -Date: Mon Sep 1 16:41:58 2003 +0000 - - Some more missing ensure update. - - 2003-09-01 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-menu.c: (ephy_bookmarks_menu_clean): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_clean): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_clean): - - Some more missing ensure update. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-menu.c | 1 + - src/ephy-favorites-menu.c | 1 + - src/ephy-tabs-menu.c | 1 + - 4 files changed, 11 insertions(+) - -commit 31d3aa82e78f99f41019feb539c36c09bc0efe55 -Author: Marco Pesenti Gritti -Date: Mon Sep 1 12:49:20 2003 +0000 - - Readd is_important and ensure_update, gtk now support them. - - 2003-09-01 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks-menu.c: (ephy_bookmarks_menu_clean): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_clean): - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/ephy-window.c: (setup_window): - * src/toolbar.c: (toolbar_setup_actions): - - Readd is_important and ensure_update, gtk now support them. - - ChangeLog | 12 ++++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 ++ - src/bookmarks/ephy-bookmarks-menu.c | 1 - - src/ephy-favorites-menu.c | 1 - - src/ephy-history-window.c | 1 + - src/ephy-window.c | 12 ++++-------- - src/toolbar.c | 2 +- - 7 files changed, 20 insertions(+), 11 deletions(-) - -commit c91ff321c1ba587317e022e9bb13e1d28857dee7 -Author: Marco Pesenti Gritti -Date: Sun Aug 31 18:10:11 2003 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmarks-editor.c | 20 ++++++++++---------- - src/ephy-window.c | 10 +++++++--- - 2 files changed, 17 insertions(+), 13 deletions(-) - -commit 3d58425833b6950f57fbc7578081f76befd17c14 -Author: Marco Pesenti Gritti -Date: Sun Aug 31 18:09:43 2003 +0000 - - Fix problems with EphyNodeView, bookmarks and history dialogs and update - - 2003-08-31 Marco Pesenti Gritti - - * data/ui/epiphany-history-window-ui.xml.in: - * data/ui/epiphany-ui.xml.in: - * lib/widgets/ephy-node-view.c: (get_selection): - * src/bookmarks/ephy-bookmarks-editor.c: (add_widget), - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks-menu.c: (add_bookmarks_menu), - (ephy_bookmarks_menu_rebuild): - * src/ephy-encoding-menu.c: (build_group), (build_encoding), - (ephy_encoding_menu_rebuild): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_rebuild): - * src/ephy-history-window.c: (add_widget), - (ephy_history_window_construct): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_clean), - (ephy_tabs_menu_update): - * src/ephy-window.c: (setup_window), (ephy_window_init): - - Fix problems with EphyNodeView, bookmarks and history - dialogs and update dynamic menus to the new xml format. - - ChangeLog | 21 +++++++++++++++++++++ - data/ui/epiphany-history-window-ui.xml.in | 4 +++- - data/ui/epiphany-ui.xml.in | 14 +++++++------- - lib/widgets/ephy-node-view.c | 2 +- - src/bookmarks/ephy-bookmarks-menu.c | 14 +++++++------- - src/ephy-encoding-menu.c | 12 ++++++------ - src/ephy-favorites-menu.c | 6 +++--- - src/ephy-history-window.c | 24 ++++++++++++------------ - src/ephy-tabs-menu.c | 7 +++---- - 9 files changed, 63 insertions(+), 41 deletions(-) - -commit 9d4c55cd61f4ab24e6c153a2fe5749d17b462ddf -Author: Marco Pesenti Gritti -Date: Sun Aug 31 15:50:06 2003 +0000 - - *** empty log message *** - - ChangeLog | 8 ++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 60 ++++----- - data/ui/epiphany-history-window-ui.xml.in | 42 +++--- - data/ui/epiphany-ui.xml.in | 204 ++++++++++++++--------------- - src/bookmarks/ephy-bookmark-action.c | 2 - - src/bookmarks/ephy-topic-action.c | 2 - - src/ephy-window.c | 38 +++--- - src/toolbar.c | 2 +- - 8 files changed, 185 insertions(+), 173 deletions(-) - -commit c8c588dae76140da7dc57bac79594aa9cad9238c -Author: Marco Pesenti Gritti -Date: Sun Aug 31 15:04:21 2003 +0000 - - *** empty log message *** - - ChangeLog | 13 +++++++++++ - src/ephy-window.c | 67 ++----------------------------------------------------- - 2 files changed, 15 insertions(+), 65 deletions(-) - -commit eaa410473a1601277d2dc0b9ff6ffdb549d04d5b -Author: Christophe Merlet -Date: Sun Aug 31 09:24:50 2003 +0000 - - Updated French translation. - - po/ChangeLog | 5 + - po/fr.po | 4203 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 2351 insertions(+), 1857 deletions(-) - -commit 676d6d40cf906f7fd2c626ec21ef66e28c5aa3f0 -Author: Marco Pesenti Gritti -Date: Sat Aug 30 12:34:34 2003 +0000 - - Complete gtk 2.3 port. It doesnt run here but it could be my env. - - 2003-08-30 Marco Pesenti Gritti - - * src/ephy-encoding-menu.c: (ephy_encoding_menu_verb_cb): - * src/ephy-favicon-action.c: (create_tool_item): - * src/ephy-favicon-action.h: - * src/ephy-favorites-menu.c: (ephy_favorites_menu_clean): - * src/ephy-go-action.c: (create_tool_item), (create_menu_proxy_cb): - * src/ephy-go-action.h: - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/ephy-location-action.c: (ephy_location_action_get_widget): - * src/ephy-location-action.h: - * src/ephy-navigation-action.c: - * src/ephy-navigation-action.h: - * src/ephy-spinner-action.c: (create_tool_item), - (item_parent_set_cb): - * src/ephy-spinner-action.h: - * src/ephy-tab.c: (ephy_tab_init): - * src/ephy-tabs-menu.c: (ephy_tabs_menu_clean), - (tab_set_action_accelerator), (ephy_tabs_menu_update): - * src/ephy-window.c: (ephy_window_state_event_cb), (setup_window), - (update_layout_toggles): - * src/popup-commands.c: - * src/ppview-toolbar.c: (ppview_toolbar_set_window), - (ppview_toolbar_init): - * src/toolbar.c: (toolbar_activate_location): - * src/window-commands.c: (window_cmd_view_bookmarks_bar), - (window_cmd_view_toolbar), (window_cmd_view_statusbar), - (window_cmd_view_fullscreen): - - Complete gtk 2.3 port. It doesnt run here but it could be - my env. - - ChangeLog | 32 ++++++++++++++++++++++ - src/ephy-encoding-menu.c | 12 +++++---- - src/ephy-favicon-action.c | 7 +++-- - src/ephy-favicon-action.h | 3 +-- - src/ephy-favorites-menu.c | 5 ++-- - src/ephy-go-action.c | 10 +++---- - src/ephy-go-action.h | 2 +- - src/ephy-history-window.c | 38 ++++++++++++-------------- - src/ephy-location-action.c | 2 +- - src/ephy-location-action.h | 3 +-- - src/ephy-navigation-action.c | 3 +++ - src/ephy-navigation-action.h | 3 +-- - src/ephy-spinner-action.c | 13 ++++----- - src/ephy-spinner-action.h | 3 +-- - src/ephy-tab.c | 3 ++- - src/ephy-tabs-menu.c | 35 ++++++++++++------------ - src/ephy-window.c | 64 +++++++++++++++++++------------------------- - src/popup-commands.c | 1 + - src/ppview-toolbar.c | 44 +++++++++++++----------------- - src/toolbar.c | 6 ++--- - src/window-commands.c | 14 +++++----- - 21 files changed, 161 insertions(+), 142 deletions(-) - -commit a03cfa7451bad9af112897db73bd7eecc43e2f2c -Author: Marco Pesenti Gritti -Date: Fri Aug 29 17:19:55 2003 +0000 - - *** empty log message *** - - src/bookmarks/ephy-topic-action.h | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit fe99ccbdd0f1655f4b50b7cd765a65932e7ce49f -Author: Marco Pesenti Gritti -Date: Fri Aug 29 17:19:29 2003 +0000 - - forgot files... - - lib/egg/egg-radio-action.h | 34 -- - lib/egg/eggradiotoolbutton.h | 61 --- - lib/egg/eggseparatortoolitem.h | 50 --- - lib/egg/eggtoggletoolbutton.c | 247 ------------ - lib/egg/eggtoolbutton.c | 848 ----------------------------------------- - lib/egg/eggtoolbutton.h | 91 ----- - src/ephy-spinner-action.h | 4 +- - 7 files changed, 2 insertions(+), 1333 deletions(-) - -commit 07f0c900d6ade15ceb7ef418aa0ea7dabd1909c4 -Author: Marco Pesenti Gritti -Date: Fri Aug 29 17:17:42 2003 +0000 - - Part of gtk 2.3 port, changelog too long to paste it - - ChangeLog | 192 ++ - configure.in | 4 +- - data/ui/epiphany-bookmark-editor-ui.xml.in | 21 +- - data/ui/epiphany-history-window-ui.xml.in | 21 +- - data/ui/epiphany-ui.xml.in | 34 +- - lib/egg/Makefile.am | 26 +- - lib/egg/egg-action-group.c | 294 --- - lib/egg/egg-action-group.h | 71 - - lib/egg/egg-action.c | 822 --------- - lib/egg/egg-action.h | 84 - - lib/egg/egg-editable-toolbar.c | 103 +- - lib/egg/egg-editable-toolbar.h | 7 +- - lib/egg/egg-menu-merge.c | 1320 ------------- - lib/egg/egg-menu-merge.h | 100 - - lib/egg/egg-menu.h | 11 - - lib/egg/egg-radio-action.c | 198 -- - lib/egg/egg-toggle-action.c | 197 -- - lib/egg/egg-toggle-action.h | 38 - - lib/egg/egg-toolbar-editor.c | 70 +- - lib/egg/egg-toolbar-editor.h | 4 +- - lib/egg/egg-toolbars-model.c | 10 +- - lib/egg/eggmarshalers.c | 2 +- - lib/egg/eggradiotoolbutton.c | 149 -- - lib/egg/eggseparatortoolitem.c | 72 - - lib/egg/eggtoggletoolbutton.h | 67 - - lib/egg/eggtoolbar.c | 2773 ---------------------------- - lib/egg/eggtoolbar.h | 255 --- - lib/egg/eggtoolitem.c | 754 -------- - lib/egg/eggtoolitem.h | 111 -- - lib/egg/eggtreemodelfilter.c | 2715 --------------------------- - lib/egg/eggtreemodelfilter.h | 125 -- - lib/egg/prop-editor.h | 31 - - lib/widgets/ephy-arrow-toolbutton.c | 10 +- - lib/widgets/ephy-arrow-toolbutton.h | 7 +- - lib/widgets/ephy-location-entry.c | 8 +- - lib/widgets/ephy-location-entry.h | 7 +- - lib/widgets/ephy-node-view.c | 46 +- - lib/widgets/ephy-zoom-action.c | 12 +- - lib/widgets/ephy-zoom-action.h | 6 +- - lib/widgets/ephy-zoom-control.c | 12 +- - lib/widgets/ephy-zoom-control.h | 6 +- - src/bookmarks/ephy-bookmark-action.c | 64 +- - src/bookmarks/ephy-bookmark-action.h | 8 +- - src/bookmarks/ephy-bookmarks-editor.c | 217 ++- - src/bookmarks/ephy-bookmarks-menu.c | 42 +- - src/bookmarks/ephy-topic-action.c | 69 +- - src/ephy-encoding-menu.c | 32 +- - src/ephy-favicon-action.c | 14 +- - src/ephy-favicon-action.h | 4 +- - src/ephy-favorites-menu.c | 28 +- - src/ephy-go-action.c | 24 +- - src/ephy-go-action.h | 4 +- - src/ephy-history-window.c | 147 +- - src/ephy-location-action.c | 12 +- - src/ephy-location-action.h | 4 +- - src/ephy-navigation-action.c | 10 +- - src/ephy-navigation-action.h | 4 +- - src/ephy-spinner-action.c | 24 +- - src/ephy-tab.c | 6 +- - src/ephy-tabs-menu.c | 40 +- - src/ephy-window.c | 381 ++-- - src/popup-commands.c | 34 +- - src/popup-commands.h | 43 +- - src/ppview-toolbar.c | 52 +- - src/toolbar.c | 86 +- - src/window-commands.c | 96 +- - src/window-commands.h | 95 +- - 67 files changed, 1182 insertions(+), 11153 deletions(-) - -commit 322e9bc21fbd27e9ee920b1908d04ba4302381df -Author: Marco Pesenti Gritti -Date: Fri Aug 29 17:00:33 2003 +0000 - - *** empty log message *** - - ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 50346bc092a782f2f31734672c5a16f9c826488c -Author: Kwok-Koon Cheung -Date: Fri Aug 29 04:08:31 2003 +0000 - - Updated traditional Chinese translation. - - * zh_TW.po: Updated traditional Chinese translation. - - po/.cvsignore | 1 + - po/ChangeLog | 4 + - po/zh_TW.po | 2003 +++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 1111 insertions(+), 897 deletions(-) - -commit 119cd3a50555bfaf69b88ba406678d4158196830 -Author: Laurent Dhima -Date: Fri Aug 29 01:48:47 2003 +0000 - - Added "sq" to ALL_LINGUAS - - * configure.in: Added "sq" to ALL_LINGUAS - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 135963de5b6668186238e5262292df8a403492b7 -Author: Laurent Dhima -Date: Fri Aug 29 01:43:42 2003 +0000 - - Added Albanian translation - - * sq.po: Added Albanian translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit efbce7794ddd21a17e25cc16142585717272b5ab -Author: Laurent Dhima -Date: Fri Aug 29 01:42:15 2003 +0000 - - Added Albanian file - - * sq.po: Added Albanian file - - po/sq.po | 2951 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 2951 insertions(+) - -commit ddd4969d8d2041bf350a9b13cc77db4a0a30163d -Author: Pablo Gonzalo del Campo -Date: Thu Aug 28 14:24:12 2003 +0000 - - Revision of Spanish translation by Francisco Javier F. Serrador - - 2003-08-28 Pablo Gonzalo del Campo - - * es.po: Revision of Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 ++ - po/es.po | 181 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 94 insertions(+), 92 deletions(-) - -commit 975411ffde96bb88e12b5d00c77e4900713ce267 -Author: Fatih Demir -Date: Thu Aug 28 00:06:00 2003 +0000 - - Added tamil file - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 657dea89134c67e5e49c3bf997fde98c68e6478d -Author: Fatih Demir -Date: Thu Aug 28 00:04:41 2003 +0000 - - Added Tamil file - - po/ChangeLog | 4 + - po/ta.po | 2926 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2930 insertions(+) - -commit c0c110460181c98933c806c827aeb5aa47dd149d -Author: Changwoo Ryu -Date: Wed Aug 27 13:57:40 2003 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 ++++ - po/ko.po | 22 +++++++++++----------- - 2 files changed, 15 insertions(+), 11 deletions(-) - -commit 457cb10faf6ad8762e9f722341142b67ffac14a5 -Author: Dafydd Harries -Date: Tue Aug 26 23:35:13 2003 +0000 - - Updated Welsh translation. - - po/ChangeLog | 4 ++ - po/cy.po | 208 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 108 insertions(+), 104 deletions(-) - -commit e28224874c26930c9869a12d69684ee8b1520d54 -Author: Vincent van Adrighem -Date: Tue Aug 26 22:49:00 2003 +0000 - - Dutch translation updated. - - 2003-08-27 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 +++ - po/nl.po | 101 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 55 insertions(+), 50 deletions(-) - -commit f96af392a262df1168a4c2bc2431b014de0a7358 -Author: Changwoo Ryu -Date: Mon Aug 25 15:42:53 2003 +0000 - - Updated Korean translation by Young-Ho Cha . - - * ko.po: Updated Korean translation by - Young-Ho Cha . - - po/ChangeLog | 5 +++++ - po/ko.po | 44 +++++++++++++++++++++++--------------------- - 2 files changed, 28 insertions(+), 21 deletions(-) - -commit e08099c41726b3d59a19982b4c78f3ba07906a9f -Author: Wang Jian -Date: Mon Aug 25 08:15:25 2003 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - po/zh_CN.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit af99d779c122c6c3eb7b1c6c33ebb422fd9f6c2d -Author: Alessio Frusciante -Date: Mon Aug 25 07:29:54 2003 +0000 - - Added Italian translation. - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/it.po | 3016 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3026 insertions(+), 1 deletion(-) - -commit 097591cdacf4ec08a1135caf846f56c7d8c22961 -Author: Marco Pesenti Gritti -Date: Sun Aug 24 19:13:17 2003 +0000 - - *** empty log message *** - - ChangeLog | 7 +++++++ - NEWS | 14 ++++++++++++++ - configure.in | 2 +- - 3 files changed, 22 insertions(+), 1 deletion(-) - -commit 46f5a689ef2b9b8bbb17686b15001e64ccb0c678 -Author: Christian Persch -Date: Sun Aug 24 18:20:58 2003 +0000 - - Fix the logic in the version-mismatch case. - - 2003-08-24 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_load): - - Fix the logic in the version-mismatch case. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit f81177dc840f6502fb7753006edabc29f119c1ef -Author: Anders Carlsson -Date: Sun Aug 24 17:59:31 2003 +0000 - - Use a small spinner for all styles except text under icons. - - 2003-08-24 Anders Carlsson - - * src/ephy-spinner-action.c (toolbar_style_sync): Use a - small spinner for all styles except text under icons. - - ChangeLog | 5 +++++ - src/ephy-spinner-action.c | 2 +- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 4cd69b304877e012940b0b56cd1ce7113daa363e -Author: Andraz Tori -Date: Sun Aug 24 17:58:52 2003 +0000 - - Updated Slovenian translation - - po/sl.po | 26 +++++++++----------------- - 1 file changed, 9 insertions(+), 17 deletions(-) - -commit be30696d65a65df42a5c80f0df957f415d2d19c3 -Author: Andraz Tori -Date: Sun Aug 24 17:43:28 2003 +0000 - - Updated Slovenian translation - - po/sl.po | 3535 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 3535 insertions(+) - -commit 8919c255fc990d4921735ff3d3aaa77854976e8f -Author: Andraz Tori -Date: Sun Aug 24 17:40:33 2003 +0000 - - Added sl language - - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 948f3ae6bb55f603ada08afd93951fd2b7ffcf6b -Author: Duarte Loreto -Date: Sun Aug 24 16:11:08 2003 +0000 - - Fixed extra accel in Portuguese translation. - - 2003-08-24 Duarte Loreto - - * pt.po: Fixed extra accel in Portuguese translation. - - po/ChangeLog | 4 ++++ - po/pt.po | 73 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 41 insertions(+), 36 deletions(-) - -commit c16cb1a1708cf26daaf9c5cdcefb1934a0e4e2be -Author: Christian Persch -Date: Sun Aug 24 14:49:48 2003 +0000 - - Convert erroneous g_return_if_fail into a simple conditional return. - - 2003-08-24 Christian Persch - - * lib/widgets/ephy-node-view.c: (ephy_node_view_remove): - - Convert erroneous g_return_if_fail into a simple conditional return. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-node-view.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit bc36afd042c949d85f3e8aaa12566950aa57ebe8 -Author: Christian Persch -Date: Sat Aug 23 19:49:56 2003 +0000 - - Add extra bogosity check, ported from galeon. - - 2003-08-23 Christian Persch - - * embed/mozilla/EphyWrapper.cpp: (SetZoomOnDocshell): - - Add extra bogosity check, ported from galeon. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyWrapper.cpp | 1 + - 2 files changed, 7 insertions(+) - -commit 874672b2c7fba2a0a6ee9319c0aa3f58cfce5801 -Author: Marco Pesenti Gritti -Date: Sat Aug 23 17:06:24 2003 +0000 - - Use WARN_CXXFLAGS for mozilla code. You need to update gnome-common. - - 2003-08-23 Marco Pesenti Gritti - - * configure.in: - * embed/mozilla/Makefile.am: - - Use WARN_CXXFLAGS for mozilla code. You need to - update gnome-common. - - ChangeLog | 8 ++++++++ - configure.in | 1 + - embed/mozilla/Makefile.am | 2 +- - 3 files changed, 10 insertions(+), 1 deletion(-) - -commit 751751ed4fc3018ec60af7990ab0e8d5bd5ed00c -Author: Marco Pesenti Gritti -Date: Sat Aug 23 16:37:00 2003 +0000 - - 0.9.1 - - 2003-08-23 Marco Pesenti Gritti - - * configure.in: - - 0.9.1 - - * src/Makefile.am: - - Do not distribute generated CORBA files - - ChangeLog | 10 ++++++++++ - NEWS | 7 +++++++ - configure.in | 2 +- - src/Makefile.am | 27 +++++++++++++++------------ - 4 files changed, 33 insertions(+), 13 deletions(-) - -commit 9ab21f8dc4b4028296d11ea9ca669cf883bd1dac -Author: Danilo Šegan -Date: Sat Aug 23 15:55:44 2003 +0000 - - Updated Serbian translation. - - 2003-08-23 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 ++++ - po/sr.po | 16 ++++++++-------- - po/sr@Latn.po | 16 ++++++++-------- - 3 files changed, 20 insertions(+), 16 deletions(-) - -commit 1f9ca5cdb30b3d104f757a5c448d3646e67585ed -Author: Kjartan Maraas -Date: Sat Aug 23 07:13:38 2003 +0000 - - Add missing file. The string is already translated so it doesn't add new - - 2003-08-23 Kjartan Maraas - - * POTFILES.in: Add missing file. The string - is already translated so it doesn't add new ones. - * no.po: Update Norwegian translation. - - po/ChangeLog | 6 + - po/POTFILES.in | 1 + - po/no.po | 338 ++++++++++----------------------------------------------- - 3 files changed, 67 insertions(+), 278 deletions(-) - -commit 2a1f733ef2702a4535d471579f1a6e1afea286e9 -Author: Changwoo Ryu -Date: Fri Aug 22 18:03:24 2003 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 ++ - po/ko.po | 174 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 90 insertions(+), 88 deletions(-) - -commit 31ec57b9f6f847a35a18e12fe2d2fe911a92fc02 -Author: Marco Pesenti Gritti -Date: Fri Aug 22 17:28:13 2003 +0000 - - correct release number - - NEWS | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 26aeeddb4d6b07a40b07b578384edbf17f49a137 -Author: Marco Pesenti Gritti -Date: Fri Aug 22 11:29:43 2003 +0000 - - *** empty log message *** - - NEWS | 38 ++++++++++++++++++++++++++++++++++++++ - 1 file changed, 38 insertions(+) - -commit e94929137f6192cc4404608d69f813cfdb01ef5c -Author: Marco Pesenti Gritti -Date: Fri Aug 22 11:29:23 2003 +0000 - - Update for 0.9.0 - - 2003-08-22 Marco Pesenti Gritti - - * NEWS: - * configure.in: - - Update for 0.9.0 - - ChangeLog | 7 +++++++ - configure.in | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 3e3d3961a8db405b5717cd0c02d67aa8abb8842b -Author: Marco Pesenti Gritti -Date: Fri Aug 22 11:02:10 2003 +0000 - - Make it NULL safe - - 2003-08-22 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (compare_string_values), - (ephy_node_view_sort_func): - * src/bookmarks/ephy-bookmarks-menu.c: (sort_topics), - (sort_bookmarks): - * src/bookmarks/ephy-topic-action.c: (sort_bookmarks), - (sort_topics): - - Make it NULL safe - - * src/ephy-toolbars-model.c: (impl_get_item_id): - - When creating bookmark, if the title is unknown, use untitled. - - ChangeLog | 15 +++++++++ - lib/widgets/ephy-node-view.c | 42 +++++++++++++++++++----- - src/bookmarks/ephy-bookmarks-menu.c | 51 +++++++++++++++++------------ - src/bookmarks/ephy-topic-action.c | 65 +++++++++++++++++++++++++------------ - src/ephy-toolbars-model.c | 10 +++++- - 5 files changed, 133 insertions(+), 50 deletions(-) - -commit 17ebc02eeb18c2084823ef8555705087588719f3 -Author: Paul Duffy -Date: Fri Aug 22 09:55:27 2003 +0000 - - Updated Irish translation - - po/ChangeLog | 4 ++++ - po/ga.po | 76 +++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 43 insertions(+), 37 deletions(-) - -commit 3facc1642b702282393e8a6e17e186322ba47e6e -Author: Paul Duffy -Date: Thu Aug 21 14:46:55 2003 +0000 - - updated irish translation - - po/ChangeLog | 4 -- - po/ga.po | 163 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 90 insertions(+), 77 deletions(-) - -commit f1d727822f13fdf8ccd782dc46f7a45575830186 -Author: Paul Duffy -Date: Thu Aug 21 13:33:02 2003 +0000 - - Updated Irish translation - - po/ChangeLog | 4 + - po/ga.po | 5834 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 2921 insertions(+), 2917 deletions(-) - -commit e248096d88862a9157cc23b00f211a8ea4ddaf2b -Author: Christian Persch -Date: Thu Aug 21 12:17:19 2003 +0000 - - Fix function signature, it's void instead of gboolean. Fix a logic error. - - 2003-08-21 Christian Persch - - * lib/widgets/ephy-node-view.c: (drag_data_received_cb): - - Fix function signature, it's void instead of gboolean. - Fix a logic error. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-node-view.c | 8 +++----- - 2 files changed, 10 insertions(+), 5 deletions(-) - -commit 4abcadb61611f22af59624b7554a2fea7aefe6be -Author: Paul Duffy -Date: Thu Aug 21 11:14:40 2003 +0000 - - Updated Irish Translation - - 2003-08-21 Paul Duffy - Updated Irish Translation - - po/ChangeLog | 4 + - po/ga.po | 256 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 133 insertions(+), 127 deletions(-) - -commit 20f2ae0a6cee5260a8dd0f1f1e0cf88c3208464b -Author: Patanjali Somayaji -Date: Thu Aug 21 08:13:04 2003 +0000 - - Adding more help documentation - - filling in history section - - screenshot of the history window - - help/C/epiphany.xml | 73 ++++++++++++++++++++++ - help/C/figures/ephy-history-window-screenshot.png | Bin 0 -> 47074 bytes - 2 files changed, 73 insertions(+) - -commit ecca1306630cb416d1e46c6b61e3f384c9ece75b -Author: Samel Jn Gunnarsson -Date: Thu Aug 21 00:08:54 2003 +0000 - - Added Icelandic translation. - - 2003-08-20 Samel Jn Gunnarsson - - * is.po: Added Icelandic translation. - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/is.po | 2926 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2935 insertions(+), 1 deletion(-) - -commit 849dc41ba0f43ff69a8e16d995797444009f347c -Author: Marco Pesenti Gritti -Date: Wed Aug 20 17:45:42 2003 +0000 - - Overwrite existing files. (We already warn the user about it). - - 2003-08-20 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-persist.cpp: - - Overwrite existing files. (We already warn the user - about it). - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-persist.cpp | 15 ++++++++------- - 2 files changed, 15 insertions(+), 7 deletions(-) - -commit 8c41e7c087541dd806765c9720cfac3a091483c7 -Author: Marco Pesenti Gritti -Date: Wed Aug 20 16:07:50 2003 +0000 - - Fix drag dest implementation getting some code from nautilus. - - 2003-08-20 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (get_node_from_path), - (gtk_tree_view_vertical_autoscroll), (scroll_timeout), - (remove_scroll_timeout), (set_drag_dest_row), - (clear_drag_dest_row), (get_drag_data), (free_drag_data), - (drag_motion_cb), (drag_leave_cb), (drag_data_received_cb), - (drag_drop_cb), (ephy_node_view_enable_drag_dest): - - Fix drag dest implementation getting some code from nautilus. - - ChangeLog | 11 ++ - lib/widgets/ephy-node-view.c | 284 +++++++++++++++++++++++++++++++++++-------- - 2 files changed, 244 insertions(+), 51 deletions(-) - -commit 66e636ac3f28461ba3c736d50a922df0652a2730 -Author: Paul Duffy -Date: Wed Aug 20 11:17:54 2003 +0000 - - Added irish translation - - 2003-08-20 Paul Duffy - Added irish translation - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 6 +- - po/ga.po | 2915 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2925 insertions(+), 2 deletions(-) - -commit 442df294bdebca58532d91d99c6b3fce537b8c8c -Author: Marco Pesenti Gritti -Date: Tue Aug 19 22:36:50 2003 +0000 - - Do not try to remove completed downloads, fixes a crash. - - 2003-08-20 Marco Pesenti Gritti - - * embed/downloader-view.c: (delete_pending_foreach): - - Do not try to remove completed downloads, fixes a crash. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 7 +++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit f0e8ce4b0d56ecf4ba2e33fc281307a6f1292ef4 -Author: Marco Pesenti Gritti -Date: Tue Aug 19 17:52:57 2003 +0000 - - Stop signals only when necessary on drag dest custom implementation. Make - - 2003-08-19 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (drag_motion_cb), (drag_drop_cb), - (drag_data_received_cb), (button_event_modifies_selection), - (did_not_drag), (button_release_cb), (motion_notify_cb), - (ephy_node_view_button_press_cb): - - Stop signals only when necessary on drag dest custom - implementation. - Make click on multiple selection deselect all but the - clicked element. - - ChangeLog | 12 ++++++++++ - lib/widgets/ephy-node-view.c | 54 ++++++++++++++++++++++++++++++++++---------- - 2 files changed, 54 insertions(+), 12 deletions(-) - -commit 6376cb9fdc071fcb5ee123cead053ed1e1ad33a0 -Author: Metin Amiroff -Date: Tue Aug 19 15:57:39 2003 +0000 - - Fixed Azerbaijani translation. - - 2003-08-19 Metin Amiroff - - * az.po: Fixed Azerbaijani translation. - - po/ChangeLog | 4 +++ - po/az.po | 85 ++++++++++++++++++++++++++++-------------------------------- - 2 files changed, 43 insertions(+), 46 deletions(-) - -commit 27b3a31636135db43034b5cbebb996e4b6d86db2 -Author: Marco Pesenti Gritti -Date: Mon Aug 18 22:42:39 2003 +0000 - - Add activate api. - - 2003-08-19 Marco Pesenti Gritti - - * embed/ephy-embed.c: (ephy_embed_activate): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - - Add activate api. - - * src/window-commands.c: (window_cmd_go_back), (window_cmd_go_up), - (window_cmd_go_forward), (window_cmd_view_stop), - (window_cmd_view_reload): - - Activate on navigation commands. It seem like a better - beahvior and it avoid some mozilla focus craziness. - - ChangeLog | 15 +++++++++++++++ - embed/ephy-embed.c | 7 +++++++ - embed/ephy-embed.h | 3 +++ - embed/mozilla/mozilla-embed.cpp | 11 +++++++++++ - src/window-commands.c | 10 ++++++++++ - 5 files changed, 46 insertions(+) - -commit 55ae859da0c35cc1cabbb68eb8bd343344bad3c9 -Author: Nikos Charonitakis -Date: Mon Aug 18 14:15:18 2003 +0000 - - updated Greek translation - - po/ChangeLog | 4 + - po/el.po | 252 ++++++++++++++++++++++------------------------------------- - 2 files changed, 96 insertions(+), 160 deletions(-) - -commit 0c8bfdccd6f1fd534184695ddc10397a603e0d6c -Author: Metin Amiroff -Date: Mon Aug 18 10:19:42 2003 +0000 - - Updated Azerbaijani translation. - - 2003-08-18 Metin Amiroff - - * az.po: Updated Azerbaijani translation. - - po/ChangeLog | 4 + - po/az.po | 362 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 186 insertions(+), 180 deletions(-) - -commit 2743f62a6eb9a6f903041d733a97350d045e4496 -Author: Kjartan Maraas -Date: Sun Aug 17 23:10:08 2003 +0000 - - Updated Norwegian translation. - - 2003-08-18 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 ++++ - po/no.po | 8 +++++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit c59c60dcb8e303eac05a141da34efd9b7b871931 -Author: Marco Pesenti Gritti -Date: Sun Aug 17 15:29:53 2003 +0000 - - *** empty log message *** - - ChangeLog | 7 +++++++ - embed/mozilla/EphyWrapper.cpp | 15 --------------- - embed/mozilla/EphyWrapper.h | 4 ---- - 3 files changed, 7 insertions(+), 19 deletions(-) - -commit 414552ebfcc82109fc58be5f810b5c9ac0cbab83 -Author: Christian Persch -Date: Sun Aug 17 14:59:38 2003 +0000 - - Removed useless code (debug leftovers). - - 2003-08-17 Christian Persch - - * lib/egg/egg-menu-merge.c: (update_node): - - Removed useless code (debug leftovers). - - ChangeLog | 6 ++++++ - lib/egg/egg-menu-merge.c | 6 ------ - 2 files changed, 6 insertions(+), 6 deletions(-) - -commit 68386ab6612dd61aed213aee0b21c72382256040 -Author: Christian Persch -Date: Sun Aug 17 14:57:02 2003 +0000 - - Remove unused variables and functions. - - 2003-08-17 Christian Persch - - * lib/egg/egg-action.c: (tool_button_new), (tool_button_get_label), - (tool_button_get_icon), (connect_proxy), (egg_action_disconnect_proxy): - - Remove unused variables and functions. - - ChangeLog | 13 ++++ - lib/egg/egg-action.c | 212 --------------------------------------------------- - 2 files changed, 13 insertions(+), 212 deletions(-) - -commit 3c6096787301d3fc15918fef41f7465b5efa65e1 -Author: Christian Persch -Date: Sun Aug 17 14:54:47 2003 +0000 - - Add missing include for unlink(). - - 2003-08-17 Christian Persch - - * lib/egg/egg-toolbars-model.c: - - Add missing include for unlink(). - - lib/egg/egg-toolbars-model.c | 1 + - 1 file changed, 1 insertion(+) - -commit 02b65d355aacca7f86b363134dd2ae200adc8cb3 -Author: Pauli Virtanen -Date: Sat Aug 16 16:35:27 2003 +0000 - - Updated Finnish translation. - - 2003-08-16 Pauli Virtanen - - * fi.po: Updated Finnish translation. - - po/ChangeLog | 4 + - po/fi.po | 530 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 294 insertions(+), 240 deletions(-) - -commit 468bd475144351e751e6ec7904aabd6a7261704f -Author: Guntupalli Karunakar -Date: Sat Aug 16 16:27:34 2003 +0000 - - Added Hindi translation - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/hi.po | 3024 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3033 insertions(+), 1 deletion(-) - -commit 3910da661bf0c2d601c51a19704e4d728687d825 -Author: Tivo Leedjrv -Date: Fri Aug 15 22:44:20 2003 +0000 - - Fixed a bug in Estonian translation. - - 2003-08-16 Tivo Leedjrv - - * et.po: Fixed a bug in Estonian translation. - - po/ChangeLog | 4 ++++ - po/et.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 1d1c862f30baabdde818af2c83473a90f636cec0 -Author: Tivo Leedjrv -Date: Fri Aug 15 21:16:52 2003 +0000 - - Added et to ALL_LINGUAS. - - 2003-08-16 Tivo Leedjrv - - * configure.in: Added et to ALL_LINGUAS. - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit fc8b0b40aa20067bbf1a2e8fb49c17d3b5a9e928 -Author: Tivo Leedjrv -Date: Fri Aug 15 21:16:22 2003 +0000 - - Added Estonian translation by Priit Laes . - - 2003-08-16 Tivo Leedjrv - - * et.po: Added Estonian translation - by Priit Laes . - - po/ChangeLog | 5 + - po/et.po | 2946 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2951 insertions(+) - -commit e9b4a684b1f0faba2019b16000bc4e049173308a -Author: Christian Persch -Date: Fri Aug 15 10:11:27 2003 +0000 - - Fix bug #119818. - - 2003-08-15 Christian Persch - - * embed/mozilla/MozillaPrivate.cpp: (MozillaCollatePrintSettings): - - Fix bug #119818. - - ChangeLog | 6 ++++++ - embed/mozilla/MozillaPrivate.cpp | 15 ++++++++++++++- - 2 files changed, 20 insertions(+), 1 deletion(-) - -commit f4f15a082b32eb99b34ff237fef1772e07079045 -Author: Christian Persch -Date: Fri Aug 15 10:03:27 2003 +0000 - - Expand initial ~ in file name to print to. - - 2003-08-15 Christian Persch - - * embed/print-dialog.c: (print_get_info): - - Expand initial ~ in file name to print to. - - ChangeLog | 6 ++++++ - embed/print-dialog.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit cef2c42a07d633d2431872c9a8929f28a052c6f3 -Author: Marco Pesenti Gritti -Date: Thu Aug 14 16:44:35 2003 +0000 - - Make print preview exit code safer. - - 2003-08-14 Marco Pesenti Gritti - - * embed/mozilla/EphyWrapper.cpp: - * src/ppview-toolbar.c: (toolbar_cmd_ppv_close): - - Make print preview exit code safer. - - ChangeLog | 7 +++++++ - embed/mozilla/EphyWrapper.cpp | 2 +- - src/ppview-toolbar.c | 13 ++++++++++--- - 3 files changed, 18 insertions(+), 4 deletions(-) - -commit 83d079f0b909106f3c3da16fd62a7cdfdf6b07e2 -Author: Christian Persch -Date: Thu Aug 14 12:37:49 2003 +0000 - - Fix compiler warnings. - - 2003-08-14 Christian Persch - - * lib/egg/egg-toolbars-model.c: (impl_add_item): - - Fix compiler warnings. - - ChangeLog | 8 +++++++- - lib/egg/egg-toolbars-model.c | 6 +++--- - 2 files changed, 10 insertions(+), 4 deletions(-) - -commit e2f4950b570a583b73bb45368cb86b533e9ce71a -Author: Xan Lopez -Date: Wed Aug 13 21:12:38 2003 +0000 - - Fix opening bookmarks in new window, there was a missing flag. - - - Fix opening bookmarks in new window, there was a missing flag. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit cecaa8f6550a2530136424b6a37a7daf021d475e -Author: Marco Pesenti Gritti -Date: Wed Aug 13 19:52:22 2003 +0000 - - Remove an unused progress listener. Looks like galeon 1 code ?! - - 2003-08-13 Marco Pesenti Gritti - - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/Makefile.am: - * embed/mozilla/PrintProgressListener.cpp: - * embed/mozilla/PrintProgressListener.h: - - Remove an unused progress listener. Looks like - galeon 1 code ?! - - ChangeLog | 10 +++ - embed/mozilla/EphyWrapper.cpp | 4 +- - embed/mozilla/Makefile.am | 2 - - embed/mozilla/PrintProgressListener.cpp | 116 -------------------------------- - embed/mozilla/PrintProgressListener.h | 38 ----------- - 5 files changed, 11 insertions(+), 159 deletions(-) - -commit a85acf972a5cfa1b6cff927de2c74130d29928e2 -Author: Marco Pesenti Gritti -Date: Wed Aug 13 19:17:03 2003 +0000 - - Do not show popups on print preview. - - 2003-08-13 Marco Pesenti Gritti - - * src/ephy-window.c: (show_embed_popup): - - Do not show popups on print preview. - - * src/ppview-toolbar.c: (ppview_toolbar_set_window), - (ppview_toolbar_init), (toolbar_cmd_ppv_goto_first), - (toolbar_cmd_ppv_goto_last), (clamp_page_limits), - (toolbar_cmd_ppv_go_back), (toolbar_cmd_ppv_go_forward): - - Use only known to work api to navigate. - - ChangeLog | 13 +++++++++++++ - src/ephy-window.c | 6 ++++++ - src/ppview-toolbar.c | 32 ++++++++++++++++++++++++-------- - 3 files changed, 43 insertions(+), 8 deletions(-) - -commit 2b694ee3289f08527ad278b811cdd76d8408cdb7 -Author: Kjartan Maraas -Date: Wed Aug 13 18:02:34 2003 +0000 - - Updated Norwegian translation. - - 2003-08-13 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 1345 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 735 insertions(+), 614 deletions(-) - -commit 4972550d9f6972e69307f651ac43e2b8de7d9ff9 -Author: Marco Pesenti Gritti -Date: Wed Aug 13 13:19:42 2003 +0000 - - Update my mail address - - 2003-08-13 Marco Pesenti Gritti - - * AUTHORS: - * HACKING: - * src/window-commands.c: (window_cmd_help_about): - - Update my mail address - - AUTHORS | 2 +- - ChangeLog | 8 ++++++++ - HACKING | 2 +- - src/window-commands.c | 2 +- - 4 files changed, 11 insertions(+), 3 deletions(-) - -commit b6e31b37c27bea50bb1c1794961aea53bc0f954c -Author: Nikos Charonitakis -Date: Tue Aug 12 00:07:56 2003 +0000 - - updated Greek translation - - po/ChangeLog | 4 ++ - po/el.po | 210 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 103 insertions(+), 111 deletions(-) - -commit 1ae9e642b53c3668c4b74e0b043ee6cf861a2b11 -Author: Marco Pesenti Gritti -Date: Mon Aug 11 19:26:24 2003 +0000 - - Respect priority text preference. Ported from gtk. - - 2003-08-11 Marco Pesenti Gritti - - * lib/egg/egg-action.c: (egg_action_class_init), (egg_action_init), - (egg_action_set_property), (egg_action_get_property), - (egg_action_sync_important), (connect_proxy): - * lib/egg/egg-action.h: - * lib/egg/eggtoolbar.c: (toolbar_item_is_homogeneous), - (egg_toolbar_size_request), (get_item_size): - * lib/egg/eggtoolbutton.c: (egg_tool_button_property_notify), - (egg_tool_button_class_init), (egg_tool_button_construct_contents): - * lib/egg/eggtoolitem.c: (egg_tool_item_class_init), - (egg_tool_item_get_is_important), (egg_tool_item_set_is_important), - (egg_tool_item_set_property), (egg_tool_item_get_property): - * lib/egg/eggtoolitem.h: - * src/ephy-window.c: (setup_window): - * src/toolbar.c: (toolbar_setup_actions): - - Respect priority text preference. Ported from gtk. - - ChangeLog | 26 ++++++++++++++++++++++++++ - NEWS | 26 ++++++++++++++++++++++++++ - configure.in | 2 +- - lib/egg/egg-action.c | 27 +++++++++++++++++++++++++++ - lib/egg/egg-action.h | 1 + - lib/egg/eggtoolbar.c | 25 ++++++++++++++++++++++--- - lib/egg/eggtoolbutton.c | 28 +++++++++++++++++++++++++--- - lib/egg/eggtoolitem.c | 41 +++++++++++++++++++++++++++++++++++++++++ - lib/egg/eggtoolitem.h | 4 ++++ - src/ephy-window.c | 7 +++++++ - src/toolbar.c | 1 + - 11 files changed, 181 insertions(+), 7 deletions(-) - -commit f36ca5abdf24b9562532e8743e6069dcb85866f5 -Author: Marco Pesenti Gritti -Date: Mon Aug 11 16:35:06 2003 +0000 - - Respect system pref about no proxy for. - - 2003-08-11 Marco Pesenti Gritti - - * embed/ephy-embed-prefs.h: - * embed/mozilla/mozilla-notifiers.cpp: - - Respect system pref about no proxy for. - - ChangeLog | 7 ++++++ - embed/ephy-embed-prefs.h | 2 +- - embed/mozilla/mozilla-notifiers.cpp | 45 +++++++++++++++++++++++++++++++++++++ - 3 files changed, 53 insertions(+), 1 deletion(-) - -commit 3afeffbe432a665ca4e888b387156944f5cf5ff0 -Author: Jordi Mallach -Date: Mon Aug 11 14:05:30 2003 +0000 - - Updated Catalan translation. - - po/ChangeLog | 4 + - po/ca.po | 332 ++++++++++++++++++++++------------------------------------- - 2 files changed, 125 insertions(+), 211 deletions(-) - -commit bdfaf37e8aceea7f3a1cb50a0e07d093420836bb -Author: Marco Pesenti Gritti -Date: Mon Aug 11 12:45:43 2003 +0000 - - Fix multiple rows dnd problems stealing some Nautilus code. - - 2003-08-11 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (ephy_node_view_finalize), - (ephy_node_view_enable_drag_dest), (selection_foreach), - (get_selection_refs), (ref_list_free), (stop_drag_check), - (drag_data_get_cb), (button_release_cb), (motion_notify_cb), - (button_event_modifies_selection), - (ephy_node_view_button_press_cb), (ephy_node_view_init), - (ephy_node_view_enable_drag_source): - - Fix multiple rows dnd problems stealing some Nautilus code. - - ChangeLog | 12 +++ - lib/widgets/ephy-node-view.c | 215 +++++++++++++++++++++++++++++++++++++++---- - 2 files changed, 211 insertions(+), 16 deletions(-) - -commit cba5a79a97648aaf9439ab6165cf2c68d54ee2f0 -Author: Ole Laursen -Date: Mon Aug 11 08:56:27 2003 +0000 - - Unfuzzyfied some strings. - - 2003-08-11 Ole Laursen - - * da.po: Unfuzzyfied some strings. - - po/ChangeLog | 4 ++++ - po/da.po | 60 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 34 insertions(+), 30 deletions(-) - -commit c4495e964ed5c78296826d35a672953ec1e5628b -Author: Patanjali Somayaji -Date: Mon Aug 11 08:07:22 2003 +0000 - - Added in help documentation about bookmark system - - help/C/epiphany.xml | 142 ++++++++++++++++++++++++++++++++++++++++++++++++++-- - 1 file changed, 138 insertions(+), 4 deletions(-) - -commit 791cc8e4f24d73f3c044b807314bd1a8140888f5 -Author: Dafydd Harries -Date: Sun Aug 10 23:22:10 2003 +0000 - - Updated Welsh translation. - - po/ChangeLog | 4 ++ - po/cy.po | 121 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 66 insertions(+), 59 deletions(-) - -commit 0c4262113d6a47834308ad6c35d0302f3d7d8c31 -Author: Xan Lopez -Date: Sun Aug 10 18:02:00 2003 +0000 - - Sync with Moz HEAD. - - - Sync with Moz HEAD. - - ChangeLog | 7 +++++++ - configure.in | 4 ++-- - embed/mozilla/ContentHandler.cpp | 7 +++++-- - 3 files changed, 14 insertions(+), 4 deletions(-) - -commit f4b6554560c4fefaf936eafddb66b9d5186dfa88 -Author: Marco Pesenti Gritti -Date: Sun Aug 10 17:16:13 2003 +0000 - - *** empty log message *** - - ChangeLog | 7 +++++++ - NEWS | 44 ++++++++++++++++++++++++++++++++++++++++++++ - configure.in | 2 +- - 3 files changed, 52 insertions(+), 1 deletion(-) - -commit a6fa6ce2946117238f08946864866a2072d4fae4 -Author: Evandro Fernandes Giovanini -Date: Sun Aug 10 06:50:37 2003 +0000 - - Updated Brazilian Portuguese translation. - - 2003-08-10 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 ++ - po/pt_BR.po | 143 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 76 insertions(+), 71 deletions(-) - -commit cd1ff5954c34f1d290fd849c3c009d66ac470790 -Author: Duarte Loreto -Date: Sat Aug 9 13:20:02 2003 +0000 - - Updated Portuguese translation. - - 2003-08-09 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 +++ - po/pt.po | 113 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 61 insertions(+), 56 deletions(-) - -commit c4b0ef71c328e4741a424bb66dd13acc342cc264 -Author: Wang Jian -Date: Sat Aug 9 11:37:25 2003 +0000 - - *** empty log message *** - - po/ChangeLog | 4 ++++ - po/zh_CN.po | 62 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 35 insertions(+), 31 deletions(-) - -commit eee955c9166cbd8917c904d742199b7e5bf4e1c5 -Author: Pablo Gonzalo del Campo -Date: Fri Aug 8 20:22:26 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-08-08 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 +++ - po/es.po | 119 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 67 insertions(+), 57 deletions(-) - -commit c3b1e582d7eb9295cb0de592f0334af725431884 -Author: Vincent van Adrighem -Date: Fri Aug 8 20:18:37 2003 +0000 - - Dutch translation updated. - - 2003-08-08 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 +++ - po/nl.po | 105 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 57 insertions(+), 52 deletions(-) - -commit be2a98f0fe87657468467688eea72ba4ee71919f -Author: Miloslav Trmac -Date: Fri Aug 8 19:20:50 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 411 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 216 insertions(+), 199 deletions(-) - -commit 024a046466834e87cf7e03794899cead93eb2343 -Author: Christian Persch -Date: Fri Aug 8 17:37:14 2003 +0000 - - Fix mem leak. - - 2003-08-08 Christian Persch - - * embed/downloader-view.c: (downloader_view_add_download): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 7 ++++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit f8c58a77e108232aa48688eee250bed33f359b22 -Author: Christian Persch -Date: Fri Aug 8 17:34:57 2003 +0000 - - Fix mem leak. - - 2003-08-08 Christian Persch - - * src/bookmarks/ephy-topics-selector: (topic_toggled), (topic_clicked), - (topic_key_pressed): - - Fix mem leak. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-topics-selector.c | 18 +++++++----------- - 2 files changed, 14 insertions(+), 11 deletions(-) - -commit 6dc137cb066c3eeb93fb69816cb55dcbc703b96d -Author: Christian Persch -Date: Fri Aug 8 17:33:34 2003 +0000 - - Fix mem leak. - - 2003-08-08 Christian Persch - - * lib/widgets/ephy-node-view.c: (cell_renderer_edited): - - Fix mem leak. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-node-view.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 35c6e9a25c47c94fac8a7955f398321946e6a3d1 -Author: Christian Persch -Date: Fri Aug 8 17:31:54 2003 +0000 - - Fix mem leaks. - - 2003-08-08 Christian Persch - - * lib/egg/eggtreemodelfilter.c: (egg_tree_model_filter_row_inserted): - - Fix mem leaks. - - ChangeLog | 6 ++++++ - lib/egg/eggtreemodelfilter.c | 9 +++++++-- - 2 files changed, 13 insertions(+), 2 deletions(-) - -commit 246abf588f7d8b85781ee2cb111296652ed45c8e -Author: Christian Persch -Date: Fri Aug 8 17:31:04 2003 +0000 - - Fix mem leaks. - - 2003-08-08 Christian Persch - - * embed/print-dialog.c: (print_free_info), (print_get_inf): - - Fix mem leaks. - - ChangeLog | 6 +++++ - embed/print-dialog.c | 63 ++++++++++++++++++++++++++++++++++------------------ - 2 files changed, 48 insertions(+), 21 deletions(-) - -commit 2fc37b3731e425693a349b9438cf841dd4c7de4b -Author: Christian Persch -Date: Fri Aug 8 17:30:05 2003 +0000 - - Fix mem leak. - - 2003-08-08 Christian Persch - - * embed/find-dialog.c: (set_properties): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/find-dialog.c | 4 ++++ - 2 files changed, 10 insertions(+) - -commit ddf8fccbe9c2afd3c432c06bf2240c398732c279 -Author: Marco Pesenti Gritti -Date: Fri Aug 8 16:21:19 2003 +0000 - - Update - - 2003-08-08 Marco Pesenti Gritti - - * lib/egg/egg-toolbars-model.c: - * lib/egg/egg-toolbars-model.h: - - Update - - * src/ephy-toolbars-model.c: (get_toolbar_and_item_pos), - (impl_add_item), (ephy_toolbars_model_class_init), - (get_toolbar_pos): - - Do not add duped bookmarks to toolbars - - ChangeLog | 13 ++++++ - lib/egg/egg-toolbars-model.c | 26 ++++++++--- - lib/egg/egg-toolbars-model.h | 7 ++- - src/ephy-toolbars-model.c | 103 +++++++++++++++++++++++++++---------------- - 4 files changed, 103 insertions(+), 46 deletions(-) - -commit fdba09646384da9c8526371507f75be15c9f2c17 -Author: Hasbullah Bin Pit -Date: Fri Aug 8 15:23:29 2003 +0000 - - Updated Malay translation. - - 2002-08-08 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - - po/ChangeLog | 4 ++ - po/ms.po | 170 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 91 insertions(+), 83 deletions(-) - -commit e0401ae34df8e4503a02a3e315f9c411a5a03c35 -Author: Danilo Šegan -Date: Fri Aug 8 15:11:35 2003 +0000 - - Updated Belarusian translation by Ales Nyakhaychyk . - - 2003-08-08 Danilo Šegan - - * be.po: Updated Belarusian translation by Ales Nyakhaychyk - . - - po/ChangeLog | 5 ++ - po/be.po | 203 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 108 insertions(+), 100 deletions(-) - -commit 0249ad6e5c9d34b8534a1fc96e43ef0700db1aaa -Author: Christian Neumair -Date: Fri Aug 8 15:05:05 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 415 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 218 insertions(+), 201 deletions(-) - -commit 48a1a6b2342330c332a23ec180cbdce533bdb815 -Author: Christian Persch -Date: Fri Aug 8 06:44:27 2003 +0000 - - Updated British English translation. - - 2003-08-08 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 +++ - po/en_GB.po | 84 ++++++++++++++++++++++++++++++------------------------------ - 2 files changed, 46 insertions(+), 42 deletions(-) - -commit 38c75724839409e249770276368e80f4ddd4ab94 -Author: Artur Flinta -Date: Fri Aug 8 04:46:05 2003 +0000 - - Updated Polish translation. - - 2003-08-08 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 ++ - po/pl.po | 131 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 70 insertions(+), 65 deletions(-) - -commit 4e5588de50bac721623d5e835a054b047168ce56 -Author: Danilo Šegan -Date: Thu Aug 7 23:54:08 2003 +0000 - - Updated Serbian translation. - - 2003-08-08 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation. - - po/ChangeLog | 4 + - po/sr.po | 247 +++++++++++++++++++++++++++++----------------------------- - po/sr@Latn.po | 247 +++++++++++++++++++++++++++++----------------------------- - 3 files changed, 252 insertions(+), 246 deletions(-) - -commit f2f43d77030a9e68bbef003815637200a42828ba -Author: Christian Rose -Date: Thu Aug 7 23:19:20 2003 +0000 - - Updated Swedish translation. - - 2003-08-08 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++ - po/sv.po | 145 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 86 insertions(+), 63 deletions(-) - -commit d6626508ee8eadfa4df7d9baa3aff2c6aae9bb6c -Author: Xan Lopez -Date: Thu Aug 7 22:58:50 2003 +0000 - - s/KB/kB/ - - - s/KB/kB/ - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 8 ++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit 012130270a6f72f19e26c49f112dfe6387440807 -Author: Marco Pesenti Gritti -Date: Thu Aug 7 22:13:53 2003 +0000 - - When the embed is not initialized return about:blank as address. - - 2003-08-08 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed.cpp: - - When the embed is not initialized return about:blank - as address. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit d1e77fff25e5a65b15d975f76278db31c0af418f -Author: Marco Pesenti Gritti -Date: Thu Aug 7 21:53:39 2003 +0000 - - Clamp the values to 0/100, mozilla sometimes report more done requests - - 2003-08-07 Marco Pesenti Gritti - - * src/ephy-tab.c: (build_load_percent): - - Clamp the values to 0/100, mozilla sometimes report - more done requests than total requests, but their - progress widget clamp them. - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 16 ++++++++++++---- - 2 files changed, 20 insertions(+), 4 deletions(-) - -commit 164d34f58d39f7b267b570ad3e467fff0bf49eb7 -Author: Marco Pesenti Gritti -Date: Thu Aug 7 17:07:20 2003 +0000 - - *** empty log message *** - - ChangeLog | 7 + - embed/mozilla/mozilla-notifiers.cpp | 4 + - lib/egg/Makefile.am | 2 - - lib/egg/egg-accel-dialog.c | 332 ------------------------------------ - lib/egg/egg-accel-dialog.h | 43 ----- - lib/egg/egg-menu.h | 2 - - 6 files changed, 11 insertions(+), 379 deletions(-) - -commit a35fc005a66d9976f47526783412868db73ad867 -Author: Marco Pesenti Gritti -Date: Thu Aug 7 16:21:01 2003 +0000 - - *** empty log message *** - - ChangeLog | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit 80c210a1e9be078d2b889dd0e9a3633266b48ab2 -Author: Marco Pesenti Gritti -Date: Thu Aug 7 10:58:54 2003 +0000 - - *** empty log message *** - - ChangeLog | 8 +++ - embed/mozilla/mozilla-notifiers.cpp | 116 +++++++++++++++++------------------- - 2 files changed, 63 insertions(+), 61 deletions(-) - -commit ba111795485db957a2cfc2c3dc6447690aaf12d3 -Author: Dmitry Mastrukov -Date: Thu Aug 7 04:24:50 2003 +0000 - - be.po: Updated Belarusian translation from Belarusian team . - - po/ChangeLog | 10 ++++++++++ - po/be.po | 21 +++++++++++---------- - 2 files changed, 21 insertions(+), 10 deletions(-) - -commit 0b8863c74c8e61bf97e0e85aaa4064b4fa2f27d6 -Author: Metin Amiroff -Date: Wed Aug 6 19:29:53 2003 +0000 - - Updated Azerbaijani translation. - - 2003-08-06 Metin Amiroff - - * az.po: Updated Azerbaijani translation. - - po/ChangeLog | 4 + - po/az.po | 1358 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 723 insertions(+), 639 deletions(-) - -commit 179e6f06b178cba0aac5d8260452a03deb09146c -Author: Christian Persch -Date: Wed Aug 6 09:47:55 2003 +0000 - - Correct insertion order of new tabs. - - 2003-08-06 Christian Persch - - * src/ephy-nodebook.c: (notebook_drag_data_received_cb): - * src/ephy-shell.c: (ephy_shell_new_tab): - - Correct insertion order of new tabs. - - ChangeLog | 7 +++++++ - src/ephy-notebook.c | 6 +++++- - src/ephy-shell.c | 7 ++++--- - 3 files changed, 16 insertions(+), 4 deletions(-) - -commit 732bcf4bf907ae01ecb2c041d13d3ba0ec4b07bc -Author: Christian Persch -Date: Tue Aug 5 22:55:13 2003 +0000 - - Fix blank page loading. - - 2003-08-06 Christian Persch - - * src/ephy-shell.c: (load_homepage): - * src/window-commands.c: (window_cmd_go_home): - - Fix blank page loading. - - * src/ephy-shell.c: (ephy_shell_new_tab): - - Fix new tab positioning. - - ChangeLog | 15 +++++++++++++-- - src/ephy-shell.c | 15 ++++++++++----- - src/window-commands.c | 9 ++++++++- - 3 files changed, 31 insertions(+), 8 deletions(-) - -commit 0f6260cce67b1642d2e56f7f1a9e53e6cb8ae9dd -Author: Pablo Gonzalo del Campo -Date: Tue Aug 5 21:44:25 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-08-05 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 +++++ - po/es.po | 12 ++++++------ - 2 files changed, 11 insertions(+), 6 deletions(-) - -commit d5e2f26192d3b06e6bf57304b65b7dc5582dbb8d -Author: Marco Pesenti Gritti -Date: Tue Aug 5 16:40:20 2003 +0000 - - *** empty log message *** - - ChangeLog | 13 ++++++++++--- - src/ephy-window.c | 4 ++-- - 2 files changed, 12 insertions(+), 5 deletions(-) - -commit 3bb530e15f6b8afcfb403b8f70c2acabcaccdc37 -Author: Christian Persch -Date: Tue Aug 5 16:35:11 2003 +0000 - - Fix mem leaks. - - 2003-08-04 Christian Persch - - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_to_xml): - * lib/egg/eggtoolbar.c: (egg_toolbar_finalize): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - lib/egg/egg-toolbars-model.c | 1 + - lib/egg/eggtoolbar.c | 4 ++++ - 3 files changed, 12 insertions(+) - -commit 49bf5d7f6eb779c0a69a0c04a66b9ae62d278a69 -Author: Christian Persch -Date: Tue Aug 5 16:17:22 2003 +0000 - - Correct ref-counting. - - 2003-08-04 Christian Persch - - * lib/widgets/ephy-arrow-toolbutton.c: - - Correct ref-counting. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-arrow-toolbutton.c | 7 +++++++ - 2 files changed, 13 insertions(+) - -commit 1d3c560d4e3eb2fea630f2d01d2af05e07c2131d -Author: Marco Pesenti Gritti -Date: Tue Aug 5 15:53:46 2003 +0000 - - Use link text as bookmark title when no title is specified. - - 2003-08-05 Marco Pesenti Gritti - - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - * src/popup-commands.c: (popup_cmd_bookmark_link): - - Use link text as bookmark title when no title - is specified. - - ChangeLog | 9 +++++ - embed/mozilla/EventContext.cpp | 85 +++++++++++++++++++++++++++++++++++++++++- - embed/mozilla/EventContext.h | 1 + - src/popup-commands.c | 16 ++++++-- - 4 files changed, 106 insertions(+), 5 deletions(-) - -commit 0cdb5df549513b32c291378257652adbe286faeb -Author: Changwoo Ryu -Date: Tue Aug 5 15:45:56 2003 +0000 - - Updated Korean translation by Young-Ho Cha . - - * ko.po: Updated Korean translation by Young-Ho Cha - . - - po/ChangeLog | 5 + - po/ko.po | 799 ++++++++++++++++++++++++++--------------------------------- - 2 files changed, 360 insertions(+), 444 deletions(-) - -commit b2d7bded6792cb421ae176908b0ae2168be5b857 -Author: Ole Laursen -Date: Tue Aug 5 14:15:58 2003 +0000 - - Updated Danish translation. - - 2003-08-05 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 1244 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 674 insertions(+), 574 deletions(-) - -commit 26b4fabfa8f4ad0fe1e99881e740588c39bca828 -Author: Jordi Mallach -Date: Tue Aug 5 09:37:21 2003 +0000 - - Updated Catalan translation by Francesc Dorca . - - 2003-08-05 Jordi Mallach - - * ca.po: Updated Catalan translation by - Francesc Dorca . - - po/ChangeLog | 5 + - po/ca.po | 3761 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 2065 insertions(+), 1701 deletions(-) - -commit fd9e6c17618dfdaeaaaf56ad34efe53f64d3f98d -Author: Changwoo Ryu -Date: Mon Aug 4 19:31:51 2003 +0000 - - Updated Korean translation. - - * ko.po: Updated Korean translation. - - po/ChangeLog | 4 + - po/ko.po | 3368 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1798 insertions(+), 1574 deletions(-) - -commit b3acc5c2662f07e58dd9ec3579744b2d82f414fd -Author: Metin AMiroff -Date: Mon Aug 4 10:25:53 2003 +0000 - - Added az to all linguas. - - 2003-08-04 Metin AMiroff - - * configure.in: Added az to all linguas. - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 2805b06f257faf4a5af6f2132ffebe6140f0273c -Author: Metin AMiroff -Date: Mon Aug 4 10:22:01 2003 +0000 - - Added Azerbaijani translation. - - 2003-08-04 Metin AMiroff - - * az.po: Added Azerbaijani translation. - - po/ChangeLog | 4 + - po/az.po | 2869 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2873 insertions(+) - -commit fb19ae5fd13379de93f8575c6013262109f821f4 -Author: Christian Persch -Date: Sun Aug 3 23:01:35 2003 +0000 - - Compare the scheme to "file", not the entire url. - - 2003-08-04 Christian Persch - - * embed/ephy-history.c: (ephy_history_add_host): - - Compare the scheme to "file", not the entire url. - - ChangeLog | 8 +++++++- - embed/ephy-history.c | 8 +++++--- - 2 files changed, 12 insertions(+), 4 deletions(-) - -commit 10494b97f75c9b20d373854d1f419b312331cba9 -Author: Christian Persch -Date: Sun Aug 3 22:59:36 2003 +0000 - - Fix mem leak, patch from galeon. - - 2003-08-03 Christian Persch - - * lib/ephy-autocompletion.c: (ephy_autocompletion_finalize_impl): - - Fix mem leak, patch from galeon. - - ChangeLog | 6 ++++++ - lib/ephy-autocompletion.c | 7 ++++++- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 29b1ab6e653d2e19a665e56c7d6fe6e200ec38bd -Author: Marco Pesenti Gritti -Date: Sun Aug 3 12:25:34 2003 +0000 - - 0.8.2. Drop mozilla 1.3 compatibility. - - 2003-08-03 Marco Pesenti Gritti - - * NEWS: - * configure.in: - * embed/mozilla/GlobalHistory.cpp: - - 0.8.2. Drop mozilla 1.3 compatibility. - - ChangeLog | 8 +++++ - NEWS | 67 +++++++++++++++++++++++++++++++++++++++++ - configure.in | 13 +++----- - embed/mozilla/GlobalHistory.cpp | 16 ---------- - 4 files changed, 79 insertions(+), 25 deletions(-) - -commit 998168dda9421fca4928b7dc0bb3d59fb63cd6b6 -Author: Wang Jian -Date: Sun Aug 3 07:19:29 2003 +0000 - - *** empty log message *** - - po/ChangeLog | 5 + - po/zh_CN.po | 305 ++++++++++++++++++++--------------------------------------- - 2 files changed, 107 insertions(+), 203 deletions(-) - -commit ce63434f4b47c89c4e9babd2c63a2e998f188d3f -Author: Marco Pesenti Gritti -Date: Sat Aug 2 17:25:25 2003 +0000 - - Work around for a gtk issue. Do not assert if a click outside the notebook - - 2003-08-02 Marco Pesenti Gritti - - * src/ephy-notebook.c: (find_tab_num_at_pos), (button_press_cb): - - Work around for a gtk issue. Do not assert if a click outside the notebook - is reported in button_press, just ignore. - - ChangeLog | 7 +++++++ - src/ephy-notebook.c | 9 +++++++-- - 2 files changed, 14 insertions(+), 2 deletions(-) - -commit d55879c531844be5e852d367c037e84e886d445a -Author: Marco Pesenti Gritti -Date: Sat Aug 2 16:01:48 2003 +0000 - - revert last commit - - ChangeLog | 7 ------- - embed/mozilla/mozilla-embed-single.cpp | 3 +++ - 2 files changed, 3 insertions(+), 7 deletions(-) - -commit 0eab68d17b8334c7c44a751a568de14193aac1c6 -Author: Marco Pesenti Gritti -Date: Sat Aug 2 15:45:54 2003 +0000 - - Do not disable window raising anymore, mozilla seem to behave correctly - - 2003-08-02 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - - Do not disable window raising anymore, mozilla seem - to behave correctly now. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 3 --- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit edaa6086ce7202cb52b62b645ecdcb4cd5c29c70 -Author: Sajith VK -Date: Sat Aug 2 14:36:43 2003 +0000 - - retrying - - po/ml.po | 2988 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 2988 insertions(+) - -commit 3a23fc9d67d35fb67cd4954f939153876f03a631 -Author: Christian Persch -Date: Sat Aug 2 13:26:20 2003 +0000 - - Updated British English translation. - - 2003-08-02 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 600 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 319 insertions(+), 285 deletions(-) - -commit 9279c6b1a75518e24ef9c57b9f9113efa90a6cd6 -Author: Christian Persch -Date: Sat Aug 2 13:11:02 2003 +0000 - - 2003-08-02 Christian Persch - - * src/ephy-encodings-menu.c: (build_group): - - Fix ui xml string. - - * src/ephy-tabs-menu.c: (ephy_tabs_menu_update): - - Fix mem leak. - - * src/ephy-window.c: (remove_from_session), (ephy_window_destroy), - (ephy_window_finalize): - * src/session.h: - * src/session.c: (session_class_init), (session_remove_window): - - Move up the removal of the window from the session to when it's still - valid and non-finalised. Include the window as parameter in the - close signal of the session. - - ChangeLog | 19 +++++++++++++++++++ - src/ephy-encoding-menu.c | 4 ++-- - src/ephy-tabs-menu.c | 2 ++ - src/ephy-window.c | 31 +++++++++++++++++-------------- - src/session.c | 13 +++++++++---- - src/session.h | 3 ++- - 6 files changed, 51 insertions(+), 21 deletions(-) - -commit 01b6a293d1724b772609c97ad8cdea49cb7ff53e -Author: Marco Pesenti Gritti -Date: Sat Aug 2 00:00:52 2003 +0000 - - *** empty log message *** - - data/.cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit f7a354dbcc9a72c8cb8faf31a2af0228032eeb86 -Author: Marco Pesenti Gritti -Date: Sat Aug 2 00:00:18 2003 +0000 - - Translators comment to avoid verb/adjective confusion - - 2003-08-02 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-menu.c: - (ephy_bookmarks_menu_rebuild): - * src/bookmarks/ephy-topic-action.c: (append_bookmarks_menu): - - Translators comment to avoid verb/adjective confusion - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-menu.c | 1 + - src/bookmarks/ephy-topic-action.c | 1 + - 3 files changed, 10 insertions(+) - -commit 20f21975e18eb372d532d016bb755004e00e2e3b -Author: Marco Pesenti Gritti -Date: Fri Aug 1 22:55:53 2003 +0000 - - Make sure props are saved when destroyed. - - 2003-08-02 Marco Pesenti Gritti - - * lib/ephy-dialog.c: (ephy_dialog_dispose), - (ephy_dialog_class_init), (ephy_dialog_init), - (ephy_dialog_finalize), (dialog_destroy_cb): - - Make sure props are saved when destroyed. - - ChangeLog | 8 ++++++++ - lib/ephy-dialog.c | 29 +++++++++++++++++++++-------- - 2 files changed, 29 insertions(+), 8 deletions(-) - -commit d236c947b918c43ca37e7e366aeacbce13395537 -Author: Anders Carlsson -Date: Fri Aug 1 22:35:26 2003 +0000 - - Doh - - po/sv.po | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit d55d8119accc37405103f736e528e36f2d5ceffb -Author: Anders Carlsson -Date: Fri Aug 1 22:35:09 2003 +0000 - - Fix a small error. - - 2003-08-02 Anders Carlsson - - * sv.po: Fix a small error. - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit ebb30d0428416a9a33eadcee0000a38d5e76f20f -Author: Christian Persch -Date: Fri Aug 1 19:43:49 2003 +0000 - - Fix mem leak. - - 2003-08-01 Christian Persch - - * src/ephy-main.c: (main): - - Fix mem leak. - - ChangeLog | 6 ++++++ - src/ephy-main.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit d0251310f8d4236076dd03affe2dad19f404a390 -Author: Christian Persch -Date: Fri Aug 1 19:42:21 2003 +0000 - - Restore the "ge_dom_mouse_down" signal. - - 2003-08-01 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: (mozilla_embed_dom_mouse_down_cb): - * embed/ephy-embed.h: - * embed/ephy-embed.c: (ephy_embed_base_init): - - Restore the "ge_dom_mouse_down" signal. - - ChangeLog | 8 ++++++++ - embed/ephy-embed.c | 11 +++++++++++ - embed/ephy-embed.h | 2 ++ - embed/mozilla/mozilla-embed.cpp | 26 ++++++++++++++++---------- - 4 files changed, 37 insertions(+), 10 deletions(-) - -commit dd1eeaa291d5cf7fe390615a281825f722cdea8a -Author: Nikos Charonitakis -Date: Fri Aug 1 13:30:10 2003 +0000 - - updated Greek translation (bugzilla 118780) - - po/ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit b731b06be2625816ae767e903dd3df7e8ac31a65 -Author: Nikos Charonitakis -Date: Fri Aug 1 13:25:13 2003 +0000 - - updated Greek translation: fixes bugzilla 118780 - - po/el.po | 95 ++++++++++++++++++++++++---------------------------------------- - 1 file changed, 35 insertions(+), 60 deletions(-) - -commit ed53127b92ed0f1453f46f0da1815e30e4054fa4 -Author: Wang Jian -Date: Fri Aug 1 02:56:57 2003 +0000 - - *** empty log message *** - - po/ChangeLog | 5 + - po/zh_CN.po | 1362 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 773 insertions(+), 594 deletions(-) - -commit 47d8711451f70d8a5745d2334ca97335889b1edb -Author: Christian Persch -Date: Thu Jul 31 20:33:32 2003 +0000 - - Changelog. - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 64739e8da65e8cb75b8809ee33227864bbb817cc -Author: Christian Persch -Date: Thu Jul 31 20:29:37 2003 +0000 - - Install .pc file. - - 2003-07-30 Christian Persch - - * data/epiphany-1.0.pc.in: - - Install .pc file. - - configure.in | 1 + - 1 file changed, 1 insertion(+) - -commit 536ea3dd9d1ae8985144bf61b44c208b22a9819a -Author: Vincent van Adrighem -Date: Thu Jul 31 19:46:02 2003 +0000 - - Dutch translation updated. - - 2003-07-31 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 332 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 169 insertions(+), 167 deletions(-) - -commit 10c31b4a352ef0d65a10988c47bd6388c99ad89d -Author: Telsa Gwynne -Date: Thu Jul 31 17:31:17 2003 +0000 - - Fixing bug 118749 from Chris M. Jackson. - - po/ChangeLog | 5 + - po/cy.po | 327 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 175 insertions(+), 157 deletions(-) - -commit e14676d9faf60ff7e210c2e132610165ccb9ac28 -Author: Nikos Charonitakis -Date: Thu Jul 31 13:22:43 2003 +0000 - - updated Greek translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 45c8921089afd810465bdd49aff9350569c23cda -Author: Nikos Charonitakis -Date: Thu Jul 31 13:17:20 2003 +0000 - - more fixes and updated translation - - po/el.po | 230 +++++++++++++++++++++++++++------------------------------------ - 1 file changed, 100 insertions(+), 130 deletions(-) - -commit a24f972a2b4ce3d98a1a18a84402b33f9e9cf4e6 -Author: Pablo Gonzalo del Campo -Date: Thu Jul 31 12:56:30 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-07-31 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 ++ - po/es.po | 162 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 86 insertions(+), 81 deletions(-) - -commit 946236809608d4e35d5819efde730d928c318d67 -Author: Dmitry Mastrukov -Date: Thu Jul 31 04:30:50 2003 +0000 - - be.po: Updated Belarusian translation from Belarusian team . - - po/ChangeLog | 5 + - po/be.po | 2871 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1598 insertions(+), 1278 deletions(-) - -commit d7b9c915164f5844137ecd9afecde317637ed786 -Author: Duarte Loreto -Date: Wed Jul 30 23:15:12 2003 +0000 - - Fixed bugzilla 118701. - - 2003-07-31 Duarte Loreto - - * pt.po: Fixed bugzilla 118701. - - po/ChangeLog | 4 + - po/pt.po | 395 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 209 insertions(+), 190 deletions(-) - -commit ce7d5d497c7e9116be6f1ba85b38dd96403f6e87 -Author: Christian Persch -Date: Wed Jul 30 22:17:07 2003 +0000 - - 2003-07-30 Christian Persch - - * data/epiphany-1.0.pc.in: - - ChangeLog | 6 ++++++ - data/Makefile.am | 9 +++++++-- - data/epiphany-1.0.pc.in | 11 +++++++++++ - 3 files changed, 24 insertions(+), 2 deletions(-) - -commit 0e426261da73ee87fe8563859333c3553f753ffd -Author: David Bordoley -Date: Wed Jul 30 19:03:49 2003 +0000 - - Always open bookmarks in new window/tab according to pref on activate. - - 2003-07-30 David Bordoley - - * src/ephy-history-window.c: (ephy_history_window_node_activated_cb): - * src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_node_activated_cb): - - Always open bookmarks in new window/tab according to pref on activate. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 15 +++------------ - src/ephy-history-window.c | 14 +++----------- - 3 files changed, 13 insertions(+), 23 deletions(-) - -commit 140a336a5aad4e6f7b679cdeff73c12a71611dcd -Author: Hasbullah Bin Pit -Date: Wed Jul 30 16:33:08 2003 +0000 - - lallaa - - po/ms.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c29ca6f1e0b1246895d36f60ca4a62813411990b -Author: Hasbullah Bin Pit -Date: Wed Jul 30 16:30:26 2003 +0000 - - Updated Malay translation. - - 2002-07-30 Hasbullah Bin Pit - - * ms.po: Updated Malay translation. - - po/ChangeLog | 8 +- - po/ms.po | 1185 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 606 insertions(+), 587 deletions(-) - -commit eeaa44d560a1620980ddf2153369464027d1a0f9 -Author: Marco Pesenti Gritti -Date: Wed Jul 30 16:12:54 2003 +0000 - - Make it distcheck - - 2003-07-30 Marco Pesenti Gritti - - * configure.in: - * help/nl/Makefile.am: - * src/Makefile.am: - - Make it distcheck - - ChangeLog | 12 ++++++++++++ - configure.in | 2 +- - help/nl/Makefile.am | 2 +- - src/Makefile.am | 4 +--- - 4 files changed, 15 insertions(+), 5 deletions(-) - -commit 22bdf25cdd21dd8bdbbd6e72a99e7afda9486e67 -Author: Pauli Virtanen -Date: Tue Jul 29 19:30:56 2003 +0000 - - Added "fi" (Finnish) to ALL_LINGUAS. Added - - 2003-07-29 Pauli Virtanen - - * configure.in: Added "fi" (Finnish) to ALL_LINGUAS. - * po/fi.po: Added - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/fi.po | 2946 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2955 insertions(+), 1 deletion(-) - -commit 84e3699e5f5a3ff1699634b57b917cc5ea83649b -Author: Nikolai Weibull -Date: Tue Jul 29 15:25:09 2003 +0000 - - s/ephy/epiphany. Fix session management. - - 2003-07-29 Nikolai Weibull - - * src/session.c: (save_yourself_cb): - - s/ephy/epiphany. Fix session management. - - 2 - - ChangeLog | 6 ++++++ - src/session.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4e1250b278d8e641c214bb2c8ad9b1dcded92654 -Author: Christian Rose -Date: Mon Jul 28 22:38:16 2003 +0000 - - Updated Swedish translation. - - 2003-07-29 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 620 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 328 insertions(+), 296 deletions(-) - -commit b9ee69beb11546119a4c3dcf563245736315b093 -Author: Nikos Charonitakis -Date: Mon Jul 28 22:25:27 2003 +0000 - - updated Greek translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 8839ed14dac37081abd601f880377bdc2d0b24f8 -Author: Nikos Charonitakis -Date: Mon Jul 28 22:24:46 2003 +0000 - - updated Greek translation (fixes,some fuzzy,some untranslated) - - po/el.po | 3434 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 1855 insertions(+), 1579 deletions(-) - -commit e59e1fa1ec163d07e8bf332d9c612bb9d8bd69d7 -Author: Evandro Fernandes Giovanini -Date: Mon Jul 28 15:28:59 2003 +0000 - - Updated Brazilian Portuguese translation. - - 2003-07-28 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 559 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 295 insertions(+), 268 deletions(-) - -commit 22043db74a745a853ca5e0890c44de02acc264fe -Author: Artur Flinta -Date: Mon Jul 28 00:03:52 2003 +0000 - - Updated Polish translation. - - 2003-07-28 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 ++++ - po/pl.po | 18 +++++++++--------- - 2 files changed, 13 insertions(+), 9 deletions(-) - -commit 50ced8189e4196263c7cfb7346655e0931c11b2c -Author: Artur Flinta -Date: Sun Jul 27 20:29:49 2003 +0000 - - Updated Polish translation. - - 2003-07-27 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 + - po/pl.po | 328 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 171 insertions(+), 161 deletions(-) - -commit d1f38adb951f506e11864f0784f325a940a3d232 -Author: Marco Pesenti Gritti -Date: Sun Jul 27 13:10:56 2003 +0000 - - 2003-07-27 Marco Pesenti Gritti - - * data/ui/epiphany-toolbar.xml.in: - * lib/egg/egg-editable-toolbar.c: (drag_data_received_cb): - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-toolbar-editor.c: (parse_item_list): - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_to_xml), - (safe_save_xml), (egg_toolbars_model_save), (toolbars_item_new), - (free_item_node), (egg_toolbars_model_add_separator), - (egg_toolbars_model_add_item), (parse_item_list), - (impl_get_item_id), (impl_get_item_name), (impl_get_item_type), - (egg_toolbars_model_class_init), (egg_toolbars_model_item_nth), - (egg_toolbars_model_toolbar_nth), (egg_toolbars_model_get_item_id), - (egg_toolbars_model_get_item_name), - (egg_toolbars_model_get_item_type): - * lib/egg/egg-toolbars-model.h: - * lib/egg/eggtoolbar.c: (egg_toolbar_finalize): - * lib/ephy-dnd.c: (add_one_topic), (ephy_dnd_drag_data_get): - * lib/ephy-dnd.h: - * lib/widgets/ephy-node-view.c: (drag_data_received_cb), - (ephy_node_view_select_node_by_key), (ephy_node_view_construct), - (ephy_node_view_add_data_column), - (ephy_node_view_enable_drag_source): - * lib/widgets/ephy-node-view.h: - * lib/widgets/ephy-tree-model-sort.c: - (ephy_tree_model_sort_class_init), (ephy_tree_model_sort_init), - (ephy_tree_model_sort_multi_row_draggable), - (ephy_tree_model_sort_set_column_id), - (each_property_get_data_binder), - (ephy_tree_model_sort_multi_drag_data_get): - * lib/widgets/ephy-tree-model-sort.h: - * src/bookmarks/ephy-bookmark-properties.c: - (toolbar_checkbox_changed_cb), (build_ui): - * src/bookmarks/ephy-bookmarks-editor.c: - (cmd_show_in_bookmarks_bar), (ephy_bookmarks_editor_update_menu), - (node_dropped_cb), (provide_keyword_uri), - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults), - (ephy_bookmarks_remove_keyword), (ephy_bookmarks_get_topic_uri), - (ephy_bookmarks_find_keyword): - * src/bookmarks/ephy-bookmarks.h: - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/ephy-toolbars-model.c: (ephy_toolbars_model_get_action_name), - (ephy_toolbars_model_get_node), (bookmark_destroy_cb), - (impl_get_item_name), (impl_get_item_id), (impl_get_item_type), - (connect_item), (ephy_toolbars_model_set_bookmarks), - (ephy_toolbars_model_class_init), (save_changes), (item_added), - (item_removed), (toolbar_added), (toolbar_removed), - (ephy_toolbars_model_init), (ephy_toolbars_model_finalize), - (ephy_toolbars_model_remove_bookmark), - - ChangeLog | 67 +++++++ - data/ui/epiphany-toolbar.xml.in | 66 +++---- - lib/egg/egg-editable-toolbar.c | 10 +- - lib/egg/egg-editable-toolbar.h | 2 - - lib/egg/egg-toolbar-editor.c | 8 +- - lib/egg/egg-toolbars-model.c | 210 ++++++++++++++++++---- - lib/egg/egg-toolbars-model.h | 35 ++-- - lib/egg/eggtoolbar.c | 1 - - lib/ephy-dnd.c | 45 +---- - lib/ephy-dnd.h | 3 - - lib/widgets/ephy-node-view.c | 66 +++---- - lib/widgets/ephy-node-view.h | 8 +- - lib/widgets/ephy-tree-model-sort.c | 148 +++------------- - lib/widgets/ephy-tree-model-sort.h | 4 +- - src/bookmarks/ephy-bookmark-properties.c | 4 +- - src/bookmarks/ephy-bookmarks-editor.c | 52 ++++-- - src/bookmarks/ephy-bookmarks.c | 72 ++++++-- - src/bookmarks/ephy-bookmarks.h | 3 + - src/ephy-history-window.c | 19 +- - src/ephy-toolbars-model.c | 293 ++++++++++++++----------------- - src/ephy-toolbars-model.h | 9 +- - src/toolbar.c | 100 +++-------- - 22 files changed, 654 insertions(+), 571 deletions(-) - -commit e9f8e15bf4f624f566eb0ea66e47be67098d5dc2 -Author: Christian Persch -Date: Sun Jul 27 12:26:10 2003 +0000 - - Fix mem leak. - - 2003-07-27 Christian Persch - - * lib/widgets/ephy-node-view.c: (ephy_node_view_remove): - - Fix mem leak. - - * lib/widgets/ephy-node-view.c: (ephy_node_view_remove): - * src/pdm-dialog.c: (pdm_cmd_delete_selection): - - If we've just deleted every row in the tree view, the row ref - contains an empty path. Check for that; possibly fixing bug #118398. - - ChangeLog | 12 ++++++++++++ - lib/widgets/ephy-node-view.c | 15 ++++++++++----- - src/pdm-dialog.c | 9 +++++++-- - 3 files changed, 29 insertions(+), 7 deletions(-) - -commit 0146bc5753236a6a0ae2037a8eba414780fa155b -Author: Danilo Šegan -Date: Sat Jul 26 14:33:29 2003 +0000 - - Updated Serbian translation by Serbian team (Prevod.org). - - 2003-07-26 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation by Serbian team - (Prevod.org). - - po/ChangeLog | 5 ++ - po/sr.po | 210 ++++++++++++++++++++++++++++++++-------------------------- - po/sr@Latn.po | 210 ++++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 239 insertions(+), 186 deletions(-) - -commit 3e53d46bb756fad2fc25c70f1923af01f9b0574e -Author: Marco Pesenti Gritti -Date: Fri Jul 25 17:03:50 2003 +0000 - - Make sure to remove the timeout on widget destruction - - 2003-07-25 Marco Pesenti Gritti - - * lib/widgets/ephy-search-entry.c: (ephy_search_entry_destroy_cb), - (ephy_search_entry_init): - - Make sure to remove the timeout on widget destruction - - ChangeLog | 7 +++++++ - lib/widgets/ephy-search-entry.c | 31 +++++++++++++------------------ - 2 files changed, 20 insertions(+), 18 deletions(-) - -commit da34a92dfce1a75705bf54646db0e936934ea3e5 -Author: Pablo Gonzalo del Campo -Date: Fri Jul 25 14:09:55 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-07-25 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 ++ - po/es.po | 172 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 97 insertions(+), 80 deletions(-) - -commit 2857ab5db775b460de06959ba94f645e7fad1a4e -Author: Xan Lopez -Date: Fri Jul 25 11:00:32 2003 +0000 - - Sort on the HOST columns by default (#115472). - - - Sort on the HOST columns by default (#115472). - - ChangeLog | 7 +++++++ - src/pdm-dialog.c | 6 ++++++ - 2 files changed, 13 insertions(+) - -commit 36b66330e3c387722cef7a87b6fe2e6abde4e0b6 -Author: Christian Persch -Date: Thu Jul 24 13:21:37 2003 +0000 - - Added one translator's comment, and clarified another. - - 2003-07-24 Christian Persch - - * src/prefs-dialog.c: - * embed/mozilla/mozilla-notifiers.cpp: - - Added one translator's comment, and clarified another. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-notifiers.cpp | 12 +++++++++--- - src/prefs-dialog.c | 7 +++++++ - 3 files changed, 23 insertions(+), 3 deletions(-) - -commit 976945f7348f8bd13a826b4442e4e01d4187c99d -Author: Pablo Gonzalo del Campo -Date: Thu Jul 24 12:35:28 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-07-24 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 ++ - po/es.po | 191 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 103 insertions(+), 93 deletions(-) - -commit 62047808f7c3db21324ef6fc9ec364388abdf91e -Author: Christian Persch -Date: Thu Jul 24 11:29:44 2003 +0000 - - String change. - - 2003-07-24 Christian Persch - - * data/glade/prefs-dialog.glade: - - String change. - - ChangeLog | 8 +++++++- - data/glade/prefs-dialog.glade | 2 +- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 695060254c17ac45940b058fdb1a2a6295ab9618 -Author: Xan Lopez -Date: Thu Jul 24 10:56:28 2003 +0000 - - cough - - - cough - - ChangeLog | 6 ++++++ - embed/mozilla/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 9e77fd10e25e6aba971fb71380560624172d09d2 -Author: Christian Neumair -Date: Thu Jul 24 08:57:29 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 275 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 146 insertions(+), 133 deletions(-) - -commit 533ff349bb80a598d19f2daf1e5012a55494ba4d -Author: Dafydd Harries -Date: Thu Jul 24 00:10:15 2003 +0000 - - Did various things. s/wynebfath/ffont/. s/nod tudalen/atgof. Fixed mistakes - with spaces, ellipses, punctuation, typos. - - po/ChangeLog | 4 + - po/cy.po | 754 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 378 insertions(+), 380 deletions(-) - -commit a8198cce00d04a41ea13cfd804b1fff89243f025 -Author: Marco Pesenti Gritti -Date: Wed Jul 23 22:34:58 2003 +0000 - - *** empty log message *** - - TODO | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++---------------- - 1 file changed, 50 insertions(+), 16 deletions(-) - -commit 383243a36a0b46a8ba26f67f981fccc56f4df7b0 -Author: Miloslav Trmac -Date: Wed Jul 23 20:41:39 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 357 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 204 insertions(+), 157 deletions(-) - -commit 1a8f3a84f08a01d3d1ca9d2339625b06ebb2ffea -Author: Marco Pesenti Gritti -Date: Wed Jul 23 16:56:12 2003 +0000 - - Do not distribute autogenerated corba stuff (from galeon) - - 2003-07-23 Marco Pesenti Gritti - - * src/Makefile.am: - - Do not distribute autogenerated corba stuff (from galeon) - - ChangeLog | 6 ++++++ - src/Makefile.am | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 64e61f549406aad0992551a606546d99cd3a88e0 -Author: Telsa Gwynne -Date: Wed Jul 23 16:33:18 2003 +0000 - - Added Welsh translation from Keigh Willoughby via Kyfieithu. - - ChangeLog | 5 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/cy.po | 3060 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3071 insertions(+), 1 deletion(-) - -commit 6d2843b2963e6b540885da29d82f328db7636307 -Author: Xan Lopez -Date: Wed Jul 23 15:29:30 2003 +0000 - - Add history include dir, needed for Mozilla 1.5b - - - Add history include dir, needed for Mozilla 1.5b - - ChangeLog | 6 ++++++ - embed/mozilla/Makefile.am | 2 ++ - 2 files changed, 8 insertions(+) - -commit e6162c01a59aef92a258821147353ff79957add2 -Author: Marco Pesenti Gritti -Date: Wed Jul 23 14:46:18 2003 +0000 - - Yet another try to get context menu and selection beahviors right. - - 2003-07-23 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: - (ephy_node_view_selection_changed_cb), - (ephy_node_view_button_press_cb), (ephy_node_view_init), - (ephy_node_view_get_selection), (ephy_node_view_is_target), - (ephy_node_view_has_selection): - - Yet another try to get context menu and selection beahviors - right. - - ChangeLog | 11 ++++++ - lib/widgets/ephy-node-view.c | 92 ++++++++++++-------------------------------- - 2 files changed, 35 insertions(+), 68 deletions(-) - -commit e7c8c9136dc532c8269850a72b2f170a091f6c81 -Author: Marco Pesenti Gritti -Date: Wed Jul 23 11:48:47 2003 +0000 - - Add https - - 2003-07-23 Marco Pesenti Gritti - - * src/ephy-tab.c: (open_link_in_new_tab): - - Add https - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 1 + - 2 files changed, 7 insertions(+) - -commit 4e5c3fde1f755e8868145f5262fde874112cb0c4 -Author: Marco Pesenti Gritti -Date: Wed Jul 23 11:46:37 2003 +0000 - - Add a show in bookmarks toolbar item on context menus. - - 2003-07-23 Marco Pesenti Gritti - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * help/nl/epiphany-nl.omf: - - Add a show in bookmarks toolbar item on context menus. - - ChangeLog | 7 +++++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 4 ++++ - help/nl/epiphany-nl.omf | 4 +--- - 3 files changed, 12 insertions(+), 3 deletions(-) - -commit ffec7f0cfb1d229e23e1794073cab2cfb4a1b792 -Author: Vincent van Adrighem -Date: Wed Jul 23 09:18:49 2003 +0000 - - Dutch translation updated. - - 2003-07-23 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 +++ - po/nl.po | 104 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 63 insertions(+), 45 deletions(-) - -commit 5b8f1ca1f2dcbe8f8c643f3b23f2467870f68f46 -Author: Artur Flinta -Date: Wed Jul 23 07:57:22 2003 +0000 - - Updated Polish translation. - - 2003-07-23 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 ++++ - po/pl.po | 52 +++++++++++++++++++++++++++++++--------------------- - 2 files changed, 35 insertions(+), 21 deletions(-) - -commit fbe67a1952461a15dfcb10f0168d6d182cce94ea -Author: Duarte Loreto -Date: Tue Jul 22 22:54:39 2003 +0000 - - Updated Portuguese translation. - - 2003-07-22 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 2740 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1541 insertions(+), 1203 deletions(-) - -commit 868caf0359ab9f68e44657946851538aa4cf3e61 -Author: Marco Pesenti Gritti -Date: Tue Jul 22 18:23:06 2003 +0000 - - Try to use more friendly description for cache prefs. - - 2003-07-22 Marco Pesenti Gritti - - * data/glade/prefs-dialog.glade: - - Try to use more friendly description for cache prefs. - - * src/ephy-tab.c: (open_link_in_new_tab), - (ephy_tab_dom_mouse_click_cb): - - Middle click open in new tab for http, ftp and file, - hope to not have missed any protocol that make sense. - - ChangeLog | 12 +++++++++++ - data/glade/prefs-dialog.glade | 6 +++--- - src/ephy-tab.c | 48 +++++++++++++++++++++++++++++++++++++------ - 3 files changed, 57 insertions(+), 9 deletions(-) - -commit d55c3cc3045d0c3c0b9a6c59fdd315cda7510d98 -Author: Christian Persch -Date: Tue Jul 22 16:09:19 2003 +0000 - - If the page is about:blank, set title to "Blank page", not "about:blank". - - 2003-07-22 Christian Persch - - * src/ephy-tab.c: (ephy_tab_set_title): - - If the page is about:blank, set title to "Blank page", not "about:blank". - - * src/bookmarks/ephy-topic-action.c: (append_bookmarks_menu), - (build_topics_menu): - - If there are no uncategorised bookmarks, don't append insensitive - "Empty" menu item after the topics. - - ChangeLog | 12 ++++++++++++ - src/bookmarks/ephy-topic-action.c | 8 ++++---- - src/ephy-tab.c | 3 +-- - 3 files changed, 17 insertions(+), 6 deletions(-) - -commit bde9f595b1e33906f2128bb62e3468ca37981115 -Author: Christian Persch -Date: Tue Jul 22 12:13:49 2003 +0000 - - An input-only window event box, copied from eel's ell-input-event-box. - - 2003-07-22 Christian Persch - - * lib/widgets/ephy-event-box.h: - * lib/widgets/ephy-event-box.c: - - An input-only window event box, copied from eel's ell-input-event-box. - - * src/ephy-notebook.c: (tab_build_label): - * src/ephy-favicon-action.c: (create_tool_item): - - Use EphyEventBox instead of GtkEventBox. Fixes transparency issue from - bug #110747 . - - ChangeLog | 13 +++ - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-event-box.c | 221 +++++++++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-event-box.h | 64 +++++++++++++ - src/ephy-favicon-action.c | 3 +- - src/ephy-notebook.c | 3 +- - 6 files changed, 304 insertions(+), 2 deletions(-) - -commit 26ae04d0bc55dc0f49c18d684644b6c46f67c956 -Author: Marco Pesenti Gritti -Date: Tue Jul 22 11:41:04 2003 +0000 - - *** empty log message *** - - help/nl/epiphany-nl.omf | 2 +- - lib/egg/eggtoolbutton.c | 9 +++++++++ - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 3f20a12f34b826ae8b49980188a4894dfc8bffc1 -Author: Reinout van Schouwen -Date: Tue Jul 22 11:39:29 2003 +0000 - - Add an dutch translation of the manual. - - 2003-07-22 Reinout van Schouwen - - * configure.in: - * help/Makefile.am: - * help/nl/.cvsignore: - * help/nl/Makefile.am: - * help/nl/epiphany-nl.omf: - * help/nl/epiphany.xml: - * help/nl/figures/ephy-screenshot.png: - * help/nl/legal.xml: - - Add an dutch translation of the manual. - - ChangeLog | 13 + - configure.in | 1 + - help/Makefile.am | 2 +- - help/nl/.cvsignore | 4 + - help/nl/Makefile.am | 7 + - help/nl/epiphany-nl.omf | 33 ++ - help/nl/epiphany.xml | 895 ++++++++++++++++++++++++++++++++++++ - help/nl/figures/ephy-screenshot.png | Bin 0 -> 40200 bytes - help/nl/legal.xml | 76 +++ - 9 files changed, 1030 insertions(+), 1 deletion(-) - -commit 7efa6512ce2653f310aabc4895c302e680148a46 -Author: Danilo Šegan -Date: Tue Jul 22 11:22:50 2003 +0000 - - Updated Serbian translation by Serbian team (Prevod.org). - - 2003-07-22 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation by Serbian team - (Prevod.org). - - po/ChangeLog | 5 + - po/sr.po | 816 +++++++++++++++++++++++++++--------------------------- - po/sr@Latn.po | 862 ++++++++++++++++++++++++++++++---------------------------- - 3 files changed, 866 insertions(+), 817 deletions(-) - -commit 5066a41b567933af2d2e14fcc212d32e620494dd -Author: Christian Persch -Date: Tue Jul 22 11:07:16 2003 +0000 - - Fix mem leak. - - 2003-07-22 Christian Persch - - * lib/egg/eggtoolbar.c: (egg_toolbar_finalize): - - Fix mem leak. - - * lib/egg/eggtoolbutton.c: (egg_tool_button_finalize): - - Fix mem leaks. Backported patch from gtk, bug #117312. - - ChangeLog | 10 ++++++++++ - lib/egg/eggtoolbar.c | 14 ++++++++++++++ - 2 files changed, 24 insertions(+) - -commit 636ab900c0cd1f0bc0842d53ff26bb735dfb86ff -Author: Marco Pesenti Gritti -Date: Tue Jul 22 10:53:24 2003 +0000 - - Fix incosistency between all topic and bookmarks menu. - - 2003-07-22 Marco Pesenti Gritti - - * src/bookmarks/ephy-topic-action.c: (sort_bookmarks), - (append_bookmarks_menu), (build_bookmarks_menu), (sort_topics), - (build_topics_menu): - - Fix incosistency between all topic and bookmarks menu. - - ChangeLog | 8 +++ - src/bookmarks/ephy-topic-action.c | 105 ++++++++++++++++++-------------------- - 2 files changed, 57 insertions(+), 56 deletions(-) - -commit 53fbea9a0dfa5f3345c618bc33e1abcd65f5cde7 -Author: Artur Flinta -Date: Mon Jul 21 20:48:43 2003 +0000 - - Updated Polish translation. - - 2003-07-21 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 ++++ - po/pl.po | 10 +++++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit 387a2e9c553ecbde4dca89f207c3da80d8599d17 -Author: Artur Flinta -Date: Mon Jul 21 20:48:25 2003 +0000 - - Updated Polish translation. - - 2003-07-21 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit ab94377799746286245af1fe0cd63f49c5fe30db -Author: Reinout van Schouwen -Date: Mon Jul 21 19:51:27 2003 +0000 - - Update add bookmark explanation to match menu changes. - - 2003-07-21 Reinout van Schouwen - - * help/C/epiphany.xml: - - Update add bookmark explanation to match menu changes. - - ChangeLog | 6 ++++++ - help/C/epiphany.xml | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit ae432cedf6dd0ec02aa35ed5a49b47c350732999 -Author: Artur Flinta -Date: Mon Jul 21 19:43:17 2003 +0000 - - Updated Polish translation. - - 2003-07-21 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 ++++ - po/pl.po | 29 +++++++++++++++++++---------- - 2 files changed, 23 insertions(+), 10 deletions(-) - -commit ddde3dbabdeef793a5907e3707b6ad0d6761c9a6 -Author: Artur Flinta -Date: Mon Jul 21 18:47:28 2003 +0000 - - Updated Polish translation. - - 2003-07-21 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 + - po/pl.po | 2864 +++------------------------------------------------------- - 2 files changed, 119 insertions(+), 2749 deletions(-) - -commit b0bcdf91d2eccc48f274ee8c571f528e2205bcfb -Author: Pablo Gonzalo del Campo -Date: Mon Jul 21 17:37:16 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-07-21 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 + - po/es.po | 1648 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 888 insertions(+), 765 deletions(-) - -commit 66dd05bd68c26af743cdeb4fa49d5fb52fe59b73 -Author: Artur Flinta -Date: Sun Jul 20 21:28:05 2003 +0000 - - Updated Polish translation. - - 2003-07-20 Artur Flinta - - * pl.po: Updated Polish translation. - - po/ChangeLog | 4 + - po/pl.po | 6928 +++++++++++++++++++++++++++++++++++++++++----------------- - 2 files changed, 4882 insertions(+), 2050 deletions(-) - -commit 7d520e5258162fd396365ced44936376d9aad664 -Author: Marco Pesenti Gritti -Date: Sun Jul 20 15:35:27 2003 +0000 - - Use connect_object for the dialog destroy signal, so we dont unref the - - 2003-07-20 Marco Pesenti Gritti - - * lib/ephy-dialog.c: (impl_construct): - - Use connect_object for the dialog destroy signal, so - we dont unref the EphyDialog object two times. - - ChangeLog | 7 +++++++ - lib/ephy-dialog.c | 8 ++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit ce46693ea1ae7b8af42b001009a828e30e022795 -Author: Marco Pesenti Gritti -Date: Sun Jul 20 11:31:26 2003 +0000 - - Do not emit warning when language pack is not installed. - - 2003-07-20 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - - Do not emit warning when language pack is not installed. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 8 +------- - 2 files changed, 7 insertions(+), 7 deletions(-) - -commit 370874c6ca4c695eeba57ec7f7d059830287e637 -Author: Marco Pesenti Gritti -Date: Sun Jul 20 11:05:16 2003 +0000 - - Rework find implementation to integrate better with type ahead and to - - 2003-07-20 Marco Pesenti Gritti - - * embed/ephy-embed.c: (ephy_embed_find_set_properties), - (ephy_embed_find_next): - * embed/ephy-embed.h: - * embed/find-dialog.c: (update_navigation_controls), (impl_show), - (find_dialog_class_init), (set_properties), (sync_page_change), - (sync_embed), (find_dialog_init), (find_dialog_finalize), - (find_dialog_go_next), (find_dialog_go_prev), - (find_close_button_clicked_cb), (find_next_button_clicked_cb), - (find_prev_button_clicked_cb), (find_entry_changed_cb), - (find_check_toggled_cb): - * embed/find-dialog.h: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed.cpp: - * lib/ephy-dialog.h: - * src/ephy-window.c: (ephy_window_find): - * src/ephy-window.h: - * src/window-commands.c: (window_cmd_edit_find), - (window_cmd_edit_find_next), (window_cmd_edit_find_prev): - - Rework find implementation to integrate better - with type ahead and to simplify the code. - Do not try to set menus sensitivity because - mozilla doesnt provide an api for it and it breaks - with type ahead. - - * lib/ephy-dialog.c: (ephy_dialog_class_init), - (ephy_dialog_finalize), (dialog_destroy_cb), (impl_construct), - (ephy_dialog_construct): - - Remove no more used destruct crap. - - ChangeLog | 35 +++++ - embed/ephy-embed.c | 16 +- - embed/ephy-embed.h | 28 ++-- - embed/find-dialog.c | 319 +++++++++++----------------------------- - embed/find-dialog.h | 19 --- - embed/mozilla/EphyWrapper.cpp | 55 ++----- - embed/mozilla/EphyWrapper.h | 8 +- - embed/mozilla/Makefile.am | 1 - - embed/mozilla/mozilla-embed.cpp | 65 ++++---- - lib/ephy-dialog.c | 42 +----- - lib/ephy-dialog.h | 3 - - src/ephy-window.c | 55 ++----- - src/ephy-window.h | 2 +- - src/window-commands.c | 22 ++- - 14 files changed, 227 insertions(+), 443 deletions(-) - -commit ba9c622c3574f82c1662aa9f0c3d676a217a1066 -Author: Marco Pesenti Gritti -Date: Sun Jul 20 09:05:14 2003 +0000 - - Remove useless icons - - 2003-07-20 Marco Pesenti Gritti - - * data/glade/print.glade: - - Remove useless icons - - ChangeLog | 6 ++++++ - data/glade/print.glade | 34 ---------------------------------- - 2 files changed, 6 insertions(+), 34 deletions(-) - -commit 7a59fa7bc611377476504c20b1d40422f3772a8e -Author: Christian Persch -Date: Sat Jul 19 21:37:00 2003 +0000 - - I forgot to commit the Makefile.am changes needed for the previous patch. - - 2003-07-19 Christian Persch - - * embed/mozilla/Makefile.am: - - I forgot to commit the Makefile.am changes needed for the previous patch. - Thanks to Manny for pointing this out to me :) - - ChangeLog | 7 +++++++ - embed/mozilla/Makefile.am | 2 ++ - 2 files changed, 9 insertions(+) - -commit 21b496bacc55fe032de0ccb57948921f227fa15f -Author: Vincent van Adrighem -Date: Sat Jul 19 20:35:19 2003 +0000 - - Dutch translation updated. - - 2003-07-19 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 308 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 160 insertions(+), 152 deletions(-) - -commit 6832f5180a08aa2fa02924d5709ab8fc1173ab1c -Author: Christian Persch -Date: Sat Jul 19 14:50:34 2003 +0000 - - Set the chrome locale on startup. That means that if the correct lang pack - - 2003-07-19 Christian Persch - - * embed/mozilla/mozilla-embed-single.c: (getUILang), - (mozilla_init_chrome), (mozilla_embed_single_init_services): - - Set the chrome locale on startup. That means that if the correct lang - pack is installed, dialogues coming from mozilla will be translated. - Set skin to 'classic' on startup, so we get native scrollbars. - - Ported from galeon. - - ChangeLog | 11 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 66 ++++++++++++++++++++++++++++++++++ - 2 files changed, 77 insertions(+) - -commit 48d2a12d9641c79037aa125c2e1ae6cc651e0ea5 -Author: Evandro Fernandes Giovanini -Date: Sat Jul 19 05:44:06 2003 +0000 - - Updated Brazilian Portuguese translation. - - 2003-07-19 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 662 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 357 insertions(+), 309 deletions(-) - -commit 9747e8b0a8d8b656e329e95239a86fd0851192a9 -Author: Miloslav Trmac -Date: Fri Jul 18 23:44:35 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 1572 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 823 insertions(+), 753 deletions(-) - -commit 13e5ff029eb36ce037288f336267e730cde6cef5 -Author: Pablo Gonzalo del Campo -Date: Fri Jul 18 22:06:07 2003 +0000 - - Updated Spanish translation by Francisco Javier Fernandez - - 2003-07-18 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier Fernandez . - - po/ChangeLog | 5 +++++ - po/es.po | 8 ++++---- - 2 files changed, 9 insertions(+), 4 deletions(-) - -commit 839374af035b0cac34a093aa358d86ef1c55083e -Author: Vincent van Adrighem -Date: Fri Jul 18 19:40:40 2003 +0000 - - Dutch translation updated. - - 2003-07-18 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 1594 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 822 insertions(+), 776 deletions(-) - -commit ba87a501132da436c9992d7a541df2f6e7e7d30c -Author: Marco Pesenti Gritti -Date: Fri Jul 18 15:57:59 2003 +0000 - - Do not enable smooth scroll and image autoresize. - - 2003-07-18 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - - Do not enable smooth scroll and image autoresize. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 8 -------- - 2 files changed, 6 insertions(+), 8 deletions(-) - -commit 3d4fe8182163a3f39cd5928095e27f5ddcc7fa3a -Author: Christian Neumair -Date: Fri Jul 18 14:56:48 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 657 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 355 insertions(+), 306 deletions(-) - -commit 482cd2bcb05ed4245da0fecfb3a9ab8e67f99616 -Author: Marco Pesenti Gritti -Date: Fri Jul 18 13:10:24 2003 +0000 - - Christian Persch - - 2003-07-18 Marco Pesenti Gritti - Christian Persch - - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init), - (ephy_bookmarks_find_bookmark): - * src/ephy-toolbars-model.c: (ephy_toolbars_model_get_action_name), - (topic_destroy_cb), (bookmark_destroy_cb), (setup_item), - (impl_add_item), (ephy_toolbars_model_set_bookmarks), - (ephy_toolbars_model_init), (get_toolbar_pos), - (get_toolbar_and_item_pos), (ephy_toolbars_model_remove_bookmark), - (ephy_toolbars_model_add_bookmark), - (ephy_toolbars_model_has_bookmark): - * src/ephy-toolbars-model.h: - * src/toolbar.c: (topic_destroy_cb), (bookmark_destroy_cb): - - Remove bookmarks also if they are not on the bookmarks toolbar. - Deal with bookmarks/model sync inside the model not in the toolbar. - If there are invalid bookmarks in the toolbar configuration - when loading it, emit a warning and drop them. - - ChangeLog | 21 ++++ - src/bookmarks/ephy-bookmarks.c | 7 +- - src/ephy-toolbars-model.c | 237 ++++++++++++++++++++++++++++++----------- - src/ephy-toolbars-model.h | 7 +- - src/toolbar.c | 2 - - 5 files changed, 203 insertions(+), 71 deletions(-) - -commit 62047066d4d6ff0acf5dcc22c0d473e6df902c57 -Author: Vincent van Adrighem -Date: Thu Jul 17 15:21:49 2003 +0000 - - Dutch translation updated. - - 2003-07-17 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++++ - po/nl.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit e8fbf999bcd5cc7bb8bf4e2b25885869a744ca43 -Author: Xan Lopez -Date: Thu Jul 17 13:20:10 2003 +0000 - - Allow DND of URLs (from links or favicons or other apps...) to the - - - Allow DND of URLs (from links or favicons or other apps...) to the - bookmarks toolbar, fixes #116613 (HOORAY), thanks to marco and - chpe for the help. - - ChangeLog | 13 +++++++++++++ - embed/ephy-history.c | 20 ++++++++++++++++++++ - embed/ephy-history.h | 2 ++ - src/ephy-favicon-action.c | 8 +++++++- - src/ephy-tab.c | 8 +++++--- - src/ephy-toolbars-model.c | 45 +++++++++++++++++++++++++++++++++++++++++++-- - src/toolbar.c | 3 +++ - 7 files changed, 93 insertions(+), 6 deletions(-) - -commit 3212871bff4999162a67e32c86990821e8c995ed -Author: Marco Pesenti Gritti -Date: Thu Jul 17 12:01:33 2003 +0000 - - add authors - - AUTHORS | 4 ++++ - 1 file changed, 4 insertions(+) - -commit eb0a41ef8d058224f28226262f0522ee42256928 -Author: Marco Pesenti Gritti -Date: Wed Jul 16 16:11:48 2003 +0000 - - Initiliaze font list to NULL. Otherwise if Enumerate fails we crash. - - 2003-07-16 Marco Pesenti Gritti - - * src/prefs-dialog.c: (setup_font_menu): - - Initiliaze font list to NULL. Otherwise if Enumerate fails - we crash. - - ChangeLog | 7 +++++++ - src/prefs-dialog.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 945e7a58faa779fe69bac52fcdb130989ebe17d2 -Author: Christian Persch -Date: Tue Jul 15 12:33:56 2003 +0000 - - Fix compiler warning. - - 2003-07-15 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: (impl_get_font_list): - - Fix compiler warning. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit f33d96649a39b25ecdc33acf430be5edc0380270 -Author: Marco Pesenti Gritti -Date: Tue Jul 15 09:53:50 2003 +0000 - - 0.8.0. Make it distcheck. - - 2003-07-15 Marco Pesenti Gritti - - * NEWS: - * configure.in: - * embed/Makefile.am: - * src/Makefile.am: - - 0.8.0. Make it distcheck. - - ChangeLog | 9 ++++++ - NEWS | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - configure.in | 3 +- - embed/Makefile.am | 2 +- - src/Makefile.am | 3 +- - 5 files changed, 96 insertions(+), 3 deletions(-) - -commit 8f7370b45fb5a90d77ab313f228f2d9abf1e4e98 -Author: Christian Persch -Date: Mon Jul 14 19:29:06 2003 +0000 - - Updated British English translation. - - 2003-07-14 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 655 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 354 insertions(+), 305 deletions(-) - -commit e48096489f85e377473deaee4ca9a46bba7d89bd -Author: Marco Pesenti Gritti -Date: Mon Jul 14 19:02:43 2003 +0000 - - No need to setup fonts on init, it will be done when the default encoding - - 2003-07-14 Marco Pesenti Gritti - - * configure.in: - * src/prefs-dialog.c: (prefs_dialog_init): - - No need to setup fonts on init, it will be done - when the default encoding is set. - - ChangeLog | 8 ++++++++ - configure.in | 2 +- - src/prefs-dialog.c | 2 -- - 3 files changed, 9 insertions(+), 3 deletions(-) - -commit d1df267f3880d560d778edb115a63acce689737f -Author: Marco Pesenti Gritti -Date: Mon Jul 14 16:50:46 2003 +0000 - - List all mozilla fonts and not only the language specific, otherwise we - - 2003-07-14 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - - List all mozilla fonts and not only the language specific, - otherwise we get empty list. - Use fontconfig aliases as defaults. - This is temporary until we design simpler fonts - configuration. - - ChangeLog | 10 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 54 +++++++++++----------------------- - 2 files changed, 27 insertions(+), 37 deletions(-) - -commit edd4b54aea706e6e2c4b6b35edb37012230c5cea -Author: Christian Persch -Date: Mon Jul 14 14:22:37 2003 +0000 - - Fix mem leaks; thanks to Xan for pointing this out. - - 2003-07-14 Christian Persch - - * src/pdm-dialog.c: (pdm_dialog_cookies_properties_button_clicked_cb): - * src/language-editor.c: (language_editor_update_pref): - * embed/downloader-view.c: (controls_info_foreach), - (download_dialog_pause_cb), (download_dialog_abort_cb), - (downloader_treeview_selection_changed_cb), (open_selection_foreach): - - Fix mem leaks; thanks to Xan for pointing this out. - - ChangeLog | 10 ++++++++++ - embed/downloader-view.c | 5 +++++ - src/language-editor.c | 1 + - src/pdm-dialog.c | 1 + - 4 files changed, 17 insertions(+) - -commit 52756c056bf6b4a3bd93e0461391287b1761ed8d -Author: Christian Rose -Date: Mon Jul 14 12:36:18 2003 +0000 - - Added missing files. Updated Swedish translation. - - 2003-07-14 Christian Rose - - * POTFILES.in: Added missing files. - * sv.po: Updated Swedish translation. - - po/ChangeLog | 5 + - po/POTFILES.in | 2 + - po/sv.po | 563 +++++++++++++++++++++++++++++---------------------------- - 3 files changed, 297 insertions(+), 273 deletions(-) - -commit 5c93f41d559dd69fa7afb1cfd90bc65de1d9af17 -Author: Pablo Gonzalo del Campo -Date: Mon Jul 14 12:23:25 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-07-14 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 +++++ - po/es.po | 24 ++++++++++++------------ - 2 files changed, 17 insertions(+), 12 deletions(-) - -commit 7fd10d1e4ad4a3cf1ffe93cbbdc4f519bf1a5225 -Author: Marco Pesenti Gritti -Date: Mon Jul 14 10:23:22 2003 +0000 - - Update - - 2003-07-14 Marco Pesenti Gritti - - * lib/egg/eggtreemultidnd.c: - (egg_tree_multi_drag_button_press_event): - - Update - - * embed/ephy-embed-popup-control.c: (save_property_url), - (embed_popup_download_link_cmd), (embed_popup_save_image_as_cmd), - (save_url), (embed_popup_save_page_as_cmd), - (embed_popup_save_background_as_cmd): - * src/popup-commands.c: (save_property_url), - (popup_cmd_download_link), (popup_cmd_save_image_as), - (popup_cmd_save_background_as): - * src/window-commands.c: (window_cmd_file_open), - (window_cmd_file_save_as): - - Higgy titles for file pickers. - - * embed/ephy-embed-utils.c: (ephy_embed_utils_save): - * embed/ephy-embed-utils.h: - - Allow to pass a title to _save. - Show an error message when saving doesnt succeed. - - ChangeLog | 25 +++++++++++++++++++++++++ - embed/ephy-embed-popup-control.c | 23 ++++++++++++----------- - embed/ephy-embed-utils.c | 20 +++++++++++++++++--- - embed/ephy-embed-utils.h | 1 + - lib/egg/eggtreemultidnd.c | 2 ++ - src/popup-commands.c | 16 +++++++++------- - src/window-commands.c | 3 ++- - 7 files changed, 68 insertions(+), 22 deletions(-) - -commit aaf367e6ca143eb22deeee902cbb9955de68305b -Author: Xan Lopez -Date: Mon Jul 14 09:51:37 2003 +0000 - - We use g_list_prepend to create selections now (in - - - We use g_list_prepend to create selections now (in ephy_node_view_get_selection() - and inside pdm_cmd_delete_selection), so the last element selected is the first in - the list and we need to use g_list_first instead of _last to make intelligent - selection after removal work on multiple selections. - - ChangeLog | 10 ++++++++++ - lib/widgets/ephy-node-view.c | 2 +- - src/pdm-dialog.c | 2 +- - 3 files changed, 12 insertions(+), 2 deletions(-) - -commit 227e58bfb458aa2d2019992d30ae9fb659718660 -Author: Xan Lopez -Date: Mon Jul 14 08:44:53 2003 +0000 - - Fix leak. - - - Fix leak. - - ChangeLog | 6 ++++++ - src/pdm-dialog.c | 1 + - 2 files changed, 7 insertions(+) - -commit e5e726afd351863297a2b87c64ffeed43a83e430 -Author: Xan Lopez -Date: Mon Jul 14 08:37:06 2003 +0000 - - Don't use event->string, is deprecated (#117346). Also improve intelligent - - - - * lib/widgets/ephy-node-view.c: - (ephy_node_view_select_node_by_key), (ephy_node_view_remove): - - Don't use event->string, is deprecated (#117346). - Also improve intelligent selection. - - * src/pdm-dialog.c: (pdm_dialog_remove_button_clicked_cb), - (pdm_cmd_delete_selection), (pdm_key_pressed_cb), - (setup_action): - - Connect del keys to delete action, also implement intelligent selection - after deletion (I want to be known as Mr. Intelligent Selection - from now, spread the word). - - ChangeLog | 15 +++++++++ - lib/widgets/ephy-node-view.c | 27 +++++++++++----- - src/pdm-dialog.c | 73 ++++++++++++++++++++++++++++++++++++++++++-- - 3 files changed, 106 insertions(+), 9 deletions(-) - -commit 2c7314e543cb6b8fce33e5818c9913cfb3e5507c -Author: Christian Persch -Date: Mon Jul 14 08:04:21 2003 +0000 - - Fix mem leaks. - - 2003-07-14 Christian Persch - - * src/pdm-dialog.c: (pdm_dialog_remove_button_clicked_cb), - (pdm_dialog_finalize): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - src/pdm-dialog.c | 5 +++++ - 2 files changed, 12 insertions(+) - -commit de6239c432661f8b0061ad02db565b793b0fa746 -Author: Christian Persch -Date: Sun Jul 13 17:09:05 2003 +0000 - - Fix mem leaks. - - 2003-07-13 Christian Persch - - * lib/widgets/ephy-node-view.c: (drag_motion_cb), - (drag_data_received_cb): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-node-view.c | 3 +++ - 2 files changed, 10 insertions(+) - -commit 966d9b7893671364b2ae8c04c82c93596390e264 -Author: Christian Persch -Date: Sun Jul 13 17:05:41 2003 +0000 - - Fix mem leak and add safety check. - - 2003-07-13 Christian Persch - - * lib/ephy-dnd.c: (ephy_dnd_node_list_extract_nodes): - - Fix mem leak and add safety check. - - ChangeLog | 6 ++++++ - lib/ephy-dnd.c | 8 ++++++-- - 2 files changed, 12 insertions(+), 2 deletions(-) - -commit 4bf4f76bffb2f7eb18672d26aace9c097b439fb9 -Author: Christian Persch -Date: Sun Jul 13 17:03:14 2003 +0000 - - Fix mem leaks. - - 2003-07-13 Christian Persch - - * src/language-editor.c: (language_editor_remove_button_clicked_cb): - * embed/downloader-view.c: (downloader_view_set_download_info), - (downloader_view_remove_download), - (downloader_view_set_download_progress), - (downloader_view_set_download_status), (download_dialog_abort_cb): - * lib/widgets/ephy-tree-model-sort.c: - (ephy_tree_model_sort_multi_row_draggable): - - Fix mem leaks. - - ChangeLog | 12 ++++++++++++ - embed/downloader-view.c | 36 +++++++++++++++++++++++++++--------- - lib/widgets/ephy-tree-model-sort.c | 13 +++++++++++-- - src/language-editor.c | 7 ++++--- - 4 files changed, 54 insertions(+), 14 deletions(-) - -commit 8251e7c1e69a39cc178a288aba7a006a9449cc00 -Author: Christian Persch -Date: Sun Jul 13 09:23:57 2003 +0000 - - Fix mem leaks. - - 2003-07-13 Christian Persch - - * lib/ephy-node.c: (ephy_node_finalize): - - Fix mem leaks. - - ChangeLog | 8 +++++++- - lib/ephy-node.c | 4 ++-- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 42d8a8cb91e46a1ac29334c054ac95c5cfc9a348 -Author: Marco Pesenti Gritti -Date: Sun Jul 13 09:07:08 2003 +0000 - - Add plugins dir - - 2003-07-13 Marco Pesenti Gritti - - * Makefile.am: - - Add plugins dir - - * plugins/sample/Makefile.am: - * plugins/sample/sample.c: (window_focus_in_cb): - - Make it compile with not installed headers - - * src/Makefile.am: - - Remove an obsolete include dir - - ChangeLog | 15 +++++++++++++++ - Makefile.am | 2 +- - plugins/sample/Makefile.am | 5 ++++- - plugins/sample/sample.c | 8 +++++--- - src/Makefile.am | 1 - - 5 files changed, 25 insertions(+), 6 deletions(-) - -commit 9f70e82e7fd4d8888f55c63cf3eb911d27b0fbec -Author: Marco Pesenti Gritti -Date: Sun Jul 13 08:52:36 2003 +0000 - - 2003-07-13 Marco Pesenti Gritti - - * Makefile.am: - * configure.in: - * embed/Makefile.am: - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_favicon_cache), - (impl_get_downloader_view): - * embed/ephy-embed-shell.h: - * embed/ephy-embed-single.c: - * embed/ephy-embed-single.h: - * embed/mozilla/ProgressListener.cpp: - * embed/mozilla/mozilla-embed.cpp: - * lib/Makefile.am: - * lib/ephy-langs.h: - * lib/ephy-node.c: (unref_signal_objects), - (ephy_node_signal_connect_object): - * plugins/Makefile.am: - * plugins/sample/Makefile.am: - * plugins/sample/sample.c: (bmk_added), (bmk_removed), - (bmk_changed), (switch_page_cb), (window_focus_in_cb), - (location_changed_cb), (tab_added_cb), (new_window_cb), - (plugin_init): - * src/Makefile.am: - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_sync_icon): - * src/bookmarks/ephy-bookmark-properties.c: (set_window_icon), - (ephy_bookmark_properties_init): - * src/bookmarks/ephy-bookmarks-editor.c: (provide_favicon), - (ephy_bookmarks_editor_init): - * src/bookmarks/ephy-bookmarks.c: (update_favorites_menus): - * src/bookmarks/ephy-topic-action.c: (build_bookmarks_menu): - * src/ephy-automation.c: (impl_ephy_automation_loadurl), - (impl_ephy_automation_quit), (impl_ephy_automation_load_session): - * src/ephy-favicon-action.c: (ephy_favicon_action_init): - * src/ephy-history-window.c: (confirmation_dialog_response_cb), - (provide_favicon): - * src/ephy-location-action.c: (connect_proxy): - * src/ephy-notebook.c: (sync_icon): - * src/ephy-shell.c: (ephy_shell_get_active_window), - (ephy_shell_get_session), (ephy_shell_get_autocompletion), - (ephy_shell_get_toolbars_model): - * src/ephy-shell.h: - * src/ephy-tab.c: (ephy_tab_net_state_cb), (ephy_tab_init), - (ephy_tab_get_action): - * src/ephy-tab.h: - * src/ephy-tabs-menu.c: (ephy_tabs_menu_update): - * src/ephy-window.c: (ephy_window_fullscreen), - (ephy_window_unfullscreen), (sync_tab_icon), (ephy_window_init), - (remove_from_session), (ephy_window_get_active_tab): - - ChangeLog | 60 +++++++++++++++++++++++ - configure.in | 12 +++++ - embed/Makefile.am | 39 +++++++++------ - embed/ephy-embed-shell.c | 13 ++--- - embed/ephy-embed-shell.h | 10 ++-- - embed/ephy-embed-single.c | 1 + - embed/ephy-embed-single.h | 2 - - embed/mozilla/ProgressListener.cpp | 4 +- - embed/mozilla/mozilla-embed.cpp | 1 + - lib/Makefile.am | 30 ++++++++++++ - lib/ephy-langs.h | 11 +++-- - lib/ephy-node.c | 20 +++++--- - plugins/Makefile.am | 6 ++- - plugins/sample/Makefile.am | 10 ++-- - plugins/sample/sample.c | 82 ++++++++++++++++++++++++++++++-- - src/Makefile.am | 56 +++++++++++++--------- - src/bookmarks/Makefile.am | 29 +++++++---- - src/bookmarks/ephy-bookmark-action.c | 5 +- - src/bookmarks/ephy-bookmark-properties.c | 8 +++- - src/bookmarks/ephy-bookmarks-editor.c | 8 +++- - src/bookmarks/ephy-bookmarks.c | 4 +- - src/bookmarks/ephy-topic-action.c | 5 +- - src/ephy-automation.c | 7 +-- - src/ephy-favicon-action.c | 5 +- - src/ephy-history-window.c | 7 ++- - src/ephy-location-action.c | 4 +- - src/ephy-notebook.c | 4 +- - src/ephy-shell.c | 18 ++++--- - src/ephy-shell.h | 13 ++--- - src/ephy-tab.c | 12 +++-- - src/ephy-tab.h | 19 ++++---- - src/ephy-tabs-menu.c | 3 +- - src/ephy-window.c | 19 +++++--- - src/toolbar.c | 16 +++++-- - src/window-commands.c | 8 +++- - 35 files changed, 403 insertions(+), 148 deletions(-) - -commit f73556913d8a794f6c8ed17a7664d0a2f61635da -Author: Szabolcs Ban -Date: Sat Jul 12 21:26:47 2003 +0000 - - Unification of terminology and hotkeys - - po/hu.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 402a852e3942e9b679947e06fefd53b62a7e2fcc -Author: Christian Persch -Date: Sat Jul 12 19:01:43 2003 +0000 - - Remove debug spew. - - 2003-07-12 Christian Persch - - * lib/ephy-gui.c: (ephy_gui_menu_position_under_widget): - - Remove debug spew. - - ChangeLog | 6 ++++++ - lib/ephy-gui.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit abd9a2e47e90cecdab2a811f31766753269d74fa -Author: Christian Persch -Date: Sat Jul 12 17:21:29 2003 +0000 - - Cleanup. - - 2003-07-12 Christian Persch - - * src/ephy-navigation-action.c: (new_history_menu_item): - - Cleanup. - - ChangeLog | 6 ++++++ - src/ephy-navigation-action.c | 23 ++++++++--------------- - 2 files changed, 14 insertions(+), 15 deletions(-) - -commit 6b0203cbb6e74481c898fd83aa732c20d8a10c30 -Author: Hasbullah Bin Pit -Date: Sat Jul 12 16:55:22 2003 +0000 - - Added Malay translation. - - 2002-07-12 Hasbullah Bin Pit - - * ms.po: Added Malay translation. - - po/ChangeLog | 4 + - po/ms.po | 2865 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1381 insertions(+), 1488 deletions(-) - -commit f0ff92009d1deef7978e261530d2114d5c4b8ba7 -Author: Christian Persch -Date: Sat Jul 12 16:41:03 2003 +0000 - - Shorten strings. - - 2003-07-12 Christian Persch - - * src/ephy-navigation-action.c: (new_history_menu_item): - - Shorten strings. - - ChangeLog | 6 ++++++ - src/ephy-navigation-action.c | 15 ++++++++++++--- - 2 files changed, 18 insertions(+), 3 deletions(-) - -commit b1647953bb1eb41616a9bfabf2ed5b6c010cc9f0 -Author: Christian Persch -Date: Sat Jul 12 16:39:21 2003 +0000 - - Fix mem leaks. - - 2003-07-12 Christian Persch - - * src/ephy-history-window.c: (provide_favicon): - * src/bookmarks/ephy-bookmarks-editor.c: (provide_favicon): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit c16f33a0183bf8da7c13eea9f85472d1ef807be0 -Author: Xan Lopez -Date: Sat Jul 12 16:26:19 2003 +0000 - - A "fast search" implementation for all node views. Pressing any valid - - - A "fast search" implementation for all node views. Pressing any valid - unicode character will make ephy select the first entry begining - with that key, or the nearest match (with previous or posterior letters). - Fixes bug #116744 (http://bugzilla.gnome.org/show_bug.cgi?id=116744). - - ChangeLog | 17 +++++++++ - lib/widgets/ephy-node-view.c | 69 +++++++++++++++++++++++++++++++++-- - lib/widgets/ephy-node-view.h | 3 +- - src/bookmarks/ephy-bookmarks-editor.c | 15 +++----- - src/ephy-history-window.c | 6 ++- - 5 files changed, 95 insertions(+), 15 deletions(-) - -commit 61f1dcadb9567d95440a6b0f4ea0863401c2934e -Author: Marco Pesenti Gritti -Date: Sat Jul 12 11:12:24 2003 +0000 - - Very simple plugin framework, unused for now. We will start making - - 2003-07-12 Marco Pesenti Gritti - - * configure.in: - * plugins/.cvsignore: - * plugins/Makefile.am: - * plugins/sample/.cvsignore: - * plugins/sample/Makefile.am: - * plugins/sample/sample.c: (bmks_changed), (plugin_init), - (plugin_exit): - * src/Makefile.am: - * src/ephy-plugin.c: (ephy_plugin_get_type), (ephy_plugin_new), - (ephy_plugin_load), (ephy_plugin_unload), (ephy_plugin_class_init), - (ephy_plugin_init), (ephy_plugin_finalize): - * src/ephy-plugin.h: - * src/ephy-shell.c: (ephy_shell_load_plugins), (ephy_shell_init), - (ephy_shell_finalize): - - Very simple plugin framework, unused for now. - We will start making something useful with it only post 1.0 - - ChangeLog | 20 +++++ - configure.in | 2 + - plugins/.cvsignore | 2 + - plugins/Makefile.am | 1 + - plugins/sample/.cvsignore | 2 + - plugins/sample/Makefile.am | 20 +++++ - plugins/sample/sample.c | 46 ++++++++++++ - src/Makefile.am | 3 + - src/ephy-plugin.c | 179 +++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-plugin.h | 37 ++++++++++ - src/ephy-shell.c | 42 +++++++++++ - 11 files changed, 354 insertions(+) - -commit 50a00ee6f89a730e2f991dec4696d2d94b602456 -Author: Wang Jian -Date: Fri Jul 11 17:53:21 2003 +0000 - - *** empty log message *** - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/zh_CN.po | 2887 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2897 insertions(+), 1 deletion(-) - -commit ccfab965e6affe6f6a4ed0c8e370a121ea4010e2 -Author: Marco Pesenti Gritti -Date: Fri Jul 11 17:33:34 2003 +0000 - - *** empty log message *** - - ChangeLog | 7 +++++++ - lib/egg/egg-menu-merge.c | 1 + - lib/egg/egg-menu-merge.h | 2 +- - 3 files changed, 9 insertions(+), 1 deletion(-) - -commit ebab320d3037aa258cd26b12841b63e7f8c50b7d -Author: David Bordoley -Date: Fri Jul 11 13:47:47 2003 +0000 - - Monitor for theme changes and set smb background accordingly. - - 2003-07-11 David Bordoley - - * lib/widgets/ephy-autocompletion-window.c: - (set_renderer_bg_color), (ephy_autocompletion_window_init_widgets): - - Monitor for theme changes and set smb background accordingly. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-autocompletion-window.c | 31 ++++++++++++++++++++++--------- - 2 files changed, 29 insertions(+), 9 deletions(-) - -commit d65595a4ba6e55cd0109fc0af1f3a5b4df88e51e -Author: Marco Pesenti Gritti -Date: Fri Jul 11 12:31:01 2003 +0000 - - Fix actions - - 2003-07-11 Marco Pesenti Gritti - - * lib/widgets/ephy-autocompletion-window.c: (move_selection), - (ephy_autocompletion_window_key_press_hack), - (ephy_autocompletion_window_hide): - - Fix actions - - * src/bookmarks/ephy-bookmarks-import.c: (parse_rdf_item): - - Actually use smartlink prop when importing - - ChangeLog | 12 ++++++++++++ - lib/widgets/ephy-autocompletion-window.c | 24 +++++++++++++----------- - src/bookmarks/ephy-bookmarks-import.c | 5 +++++ - 3 files changed, 30 insertions(+), 11 deletions(-) - -commit 61dae461c456c8b4ed807bc576c23aa2ec89a74b -Author: Lee Willis -Date: Fri Jul 11 11:08:41 2003 +0000 - - Fix export of smart bookmarks - - 2003-07-11 Lee Willis - - * src/bookmarks.ephy-bookmarks-export.c: (ephy_bookmarks_export_rdf): - - Fix export of smart bookmarks - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-export.c | 5 ++++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit 6affa95f2971189c6896fb5c20572c64b31915f1 -Author: Szabolcs Ban -Date: Fri Jul 11 11:05:14 2003 +0000 - - Unification of terminology and hotkeys - - po/hu.po | 58 +++++++++++++++++++++++++--------------------------------- - 1 file changed, 25 insertions(+), 33 deletions(-) - -commit 7c79b318a8c1763c3540258a38f30650323f1c0c -Author: Christian Rose -Date: Fri Jul 11 10:23:14 2003 +0000 - - Updated Swedish translation. - - 2003-07-11 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++ - po/sv.po | 165 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 103 insertions(+), 66 deletions(-) - -commit 9921d406286cca7e3cd182e5194a14d65d4cceb1 -Author: David Bordoley -Date: Fri Jul 11 03:31:32 2003 +0000 - - Fix up the tooltips. - - 2003-07-10 David Bordoley - - * src/ephy-window.c: - * src/toolbar.c: (toolbar_setup_actions): - - Fix up the tooltips. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 20 ++++++++++---------- - src/toolbar.c | 6 +++--- - 3 files changed, 20 insertions(+), 13 deletions(-) - -commit 66c8f535bac55e4aaddbebf7ba284f7d9cd8ed39 -Author: Marco Pesenti Gritti -Date: Thu Jul 10 20:11:36 2003 +0000 - - Show the doc context menu on ctrl+f10 - - 2003-07-10 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed.cpp: - - Show the doc context menu on ctrl+f10 - - 2 - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 13 ++++++++++--- - 2 files changed, 16 insertions(+), 3 deletions(-) - -commit d446a326bb0243e014e3d4e8e6152b6a6f9b7e28 -Author: Marco Pesenti Gritti -Date: Thu Jul 10 13:33:49 2003 +0000 - - Some minor changes in rdf format (thanks to Edd Dumbill), and use - - 2003-07-10 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-export.c: (add_topics_list), - (ephy_bookmarks_export_rdf): - - Some minor changes in rdf format (thanks to Edd Dumbill), - and use namespaces in the code. - - * src/bookmarks/ephy-bookmarks-import.c: (bookmark_add), - (ephy_bookmarks_import_xbel), (parse_rdf_subjects), - (parse_rdf_item), (ephy_bookmarks_import_rdf): - * src/bookmarks/ephy-bookmarks-import.h: - - Add an rdf importer. - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_load), - (ephy_bookmarks_save), (ephy_bookmarks_init), - (ephy_bookmarks_finalize): - - Update db to 1.0, import bookmarks from the rdf first time. - - WARNING Backup your bookmarks.rdf file before using this - and let me know if you get any problems. (esp if you had a - < 0.7.3 epiphany version). - - ChangeLog | 25 ++++++ - src/bookmarks/ephy-bookmarks-export.c | 81 ++++++++++++++----- - src/bookmarks/ephy-bookmarks-import.c | 147 +++++++++++++++++++++++++++++++++- - src/bookmarks/ephy-bookmarks-import.h | 3 + - src/bookmarks/ephy-bookmarks.c | 41 +++++++--- - 5 files changed, 262 insertions(+), 35 deletions(-) - -commit 268d6be0929222404146c78a5656ee0739af262a -Author: Evandro Fernandes Giovanini -Date: Wed Jul 9 18:16:11 2003 +0000 - - Updated Brazilian Portuguese translation. - - 2003-07-09 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 3044 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 1424 insertions(+), 1624 deletions(-) - -commit 77d4a1271ba2b2247f1c88dd5b34e3de118baa4e -Author: Szabolcs Ban -Date: Wed Jul 9 15:15:00 2003 +0000 - - small fix - - po/hu.po | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit b9e8d39b3fe05aa588dae37bb933bebe07d42b96 -Author: Andras Timar -Date: Tue Jul 8 15:03:33 2003 +0000 - - Updated Hungarian translation. - - 2003-07-08 Andras Timar - - * hu.po: Updated Hungarian translation. - - po/ChangeLog | 4 + - po/hu.po | 4465 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 2356 insertions(+), 2113 deletions(-) - -commit 0b4e1dd1f4ea04b007848fa84a5823d0dfee5e7e -Author: Danilo Šegan -Date: Mon Jul 7 20:15:38 2003 +0000 - - Updated Serbian translation by Serbian team (Prevod.org). - - 2003-07-07 Danilo Šegan - - * sr.po, sr@Latn.po: Updated Serbian translation by Serbian team - (Prevod.org). - - po/ChangeLog | 5 + - po/sr.po | 3165 +++++++++++++++++++++++++++++---------------------------- - po/sr@Latn.po | 3165 +++++++++++++++++++++++++++++---------------------------- - 3 files changed, 3213 insertions(+), 3122 deletions(-) - -commit 9a1113c3be0114592c2063095c11f418e1e5b6e5 -Author: Christian Persch -Date: Mon Jul 7 20:07:13 2003 +0000 - - Update spinner when a tab was removed. Fixes bug #116908. - - 2003-07-07 Christian Persch - - * src/ephy-window.c: (sync_tab_load_status), (tab_removed_cb): - - Update spinner when a tab was removed. Fixes bug #116908. - - src/ephy-window.c | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -commit de5a9b3979658fe7cdf928e3bc0501131dec0da2 -Author: Marco Pesenti Gritti -Date: Mon Jul 7 20:07:12 2003 +0000 - - *** empty log message *** - - ChangeLog | 22 ++++++++++++++++++++++ - 1 file changed, 22 insertions(+) - -commit 93cae499e00be4b654192183e746bb66e17da1e5 -Author: Christian Persch -Date: Mon Jul 7 20:07:12 2003 +0000 - - Update spinner when a tab was removed. Fixes bug #116908. - - 2003-07-07 Christian Persch - - * src/ephy-window.c: (sync_tab_load_status), (tab_removed_cb): - - Update spinner when a tab was removed. Fixes bug #116908. - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 72004ad60933daa7f7c75abb224b641706ba4d61 -Author: Marco Pesenti Gritti -Date: Mon Jul 7 19:37:01 2003 +0000 - - broken pipe pfff - - src/bookmarks/ephy-bookmarks.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit de62d972dd4b8078eb3d4a14db7f1b62e19ae44e -Author: Christian Persch -Date: Mon Jul 7 19:37:01 2003 +0000 - - Fix crash. - - 2003-07-07 Christian Persch - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_find_bookmark): - - Fix crash. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit b90fc83ec72f99244a2d93c5c735a380cfe31d10 -Author: Christian Persch -Date: Mon Jul 7 17:06:08 2003 +0000 - - Fix progress update logic. - - 2003-07-07 Christian Persch - - * src/ephy-tab.c: (build_progress_from_requests): - - Fix progress update logic. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0706064e2632c0828d2e53a497ce03100bed0828 -Author: Vincent van Adrighem -Date: Mon Jul 7 15:00:34 2003 +0000 - - Dutch translation updated. - - 2003-07-07 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++ - po/nl.po | 178 ++++++++++++++++------------------------------------------- - 2 files changed, 52 insertions(+), 130 deletions(-) - -commit 56ccc7d7f25998f36dc09357b42171d603f66d3e -Author: Pablo Gonzalo del Campo -Date: Mon Jul 7 14:28:30 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-07-07 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 +++++ - po/es.po | 4 ++-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit ed4336b7f4f0bec5d6d81e56c3538c07effde0b8 -Author: Marco Pesenti Gritti -Date: Mon Jul 7 13:02:53 2003 +0000 - - Remove unused define. - - 2003-07-07 Marco Pesenti Gritti - - * lib/ephy-types.h: - - Remove unused define. - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_save_delayed), - (bookmarks_changed_cb), (bookmarks_removed_cb), - (ephy_bookmarks_add): - - Save added bookmarks on idle, otherwise importing is too slow. - - ChangeLog | 12 ++++++++++++ - lib/ephy-types.h | 2 -- - src/bookmarks/ephy-bookmarks.c | 26 ++++++++++++++++++-------- - 3 files changed, 30 insertions(+), 10 deletions(-) - -commit 8c2b1c4e5e6335423c335fd99ab852fe74c0999f -Author: Marco Pesenti Gritti -Date: Mon Jul 7 11:15:07 2003 +0000 - - Cleanup. - - 2003-07-07 Marco Pesenti Gritti - - * lib/widgets/ephy-autocompletion-window.c: - (ephy_autocompletion_window_key_press_cb): - - Cleanup. - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_key_press_event_cb): - - Handle Tab key binding. The window binding doesnt - work because of the grab. - - ChangeLog | 13 +++++++++++++ - lib/widgets/ephy-autocompletion-window.c | 22 ++++------------------ - lib/widgets/ephy-location-entry.c | 14 ++++++++++++-- - 3 files changed, 29 insertions(+), 20 deletions(-) - -commit 3c2105e20f61af4cf4f94f35588dc0d6cf750e9b -Author: Marco Pesenti Gritti -Date: Mon Jul 7 09:47:04 2003 +0000 - - broken pipe pfff - - src/toolbar.c | 50 +++++++++++++++++++++++++++++++++++--------------- - 1 file changed, 35 insertions(+), 15 deletions(-) - -commit e8b3d2b580063ee746e824664db6b37e69091132 -Author: Marco Pesenti Gritti -Date: Mon Jul 7 09:47:04 2003 +0000 - - Rewrite selection logic to be simpler and to fix bugs. - - 2003-07-07 Marco Pesenti Gritti - - * lib/widgets/ephy-autocompletion-window.c: - (ephy_autocompletion_window_finalize_impl), - (ephy_autocompletion_window_show), (move_selection), - (ephy_autocompletion_window_key_press_hack), - (ephy_autocompletion_window_hide): - - Rewrite selection logic to be simpler and to - fix bugs. - - * lib/widgets/ephy-spinner.c: - * lib/widgets/ephy-spinner.h: - - Remove unused includes. - - * src/toolbar.c: - - Add missing include. - - ChangeLog | 20 ++++ - lib/widgets/ephy-autocompletion-window.c | 182 ++++++++++++++----------------- - lib/widgets/ephy-spinner.c | 7 -- - lib/widgets/ephy-spinner.h | 1 - - src/toolbar.c | 1 + - 5 files changed, 100 insertions(+), 111 deletions(-) - -commit 0edd8d08c8c86cf93b61fe31474e81893f39a0bc -Author: Christian Rose -Date: Sun Jul 6 21:55:34 2003 +0000 - - Updated Swedish translation. - - 2003-07-06 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++ - po/sv.po | 223 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 132 insertions(+), 95 deletions(-) - -commit 4a8de68620976f50cafd4eceedd7e42754184c1f -Author: Christian Persch -Date: Sun Jul 6 20:28:49 2003 +0000 - - Remove last bits of nautilus theme support. - - 2003-07-06 Christian Persch - - * lib/widgets/ephy-spinner.c: (ephy_spinner_get_type), - (ephy_spinner_init_directory_list): - - Remove last bits of nautilus theme support. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-spinner.c | 26 ++++---------------------- - 2 files changed, 11 insertions(+), 22 deletions(-) - -commit a93b312b628d02a1366d46380cef5a4aee51aac1 -Author: Marco Pesenti Gritti -Date: Sun Jul 6 19:58:26 2003 +0000 - - Merge external protocols in one file (implementation is just one macro). - - 2003-07-06 Marco Pesenti Gritti - - * embed/mozilla/ExternalProtocolHandlers.cpp: - * embed/mozilla/ExternalProtocolHandlers.h: - * embed/mozilla/FtpProtocolHandler.cpp: - * embed/mozilla/FtpProtocolHandler.h: - * embed/mozilla/IRCProtocolHandler.cpp: - * embed/mozilla/IRCProtocolHandler.h: - * embed/mozilla/MailtoProtocolHandler.cpp: - * embed/mozilla/MailtoProtocolHandler.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - - Merge external protocols in one file (implementation - is just one macro). - Add a news:// handler. - - ChangeLog | 17 ++++ - embed/mozilla/ExternalProtocolHandlers.cpp | 24 ++++++ - embed/mozilla/ExternalProtocolHandlers.h | 127 +++++++++++++++++++++++++++++ - embed/mozilla/FtpProtocolHandler.cpp | 23 ------ - embed/mozilla/FtpProtocolHandler.h | 59 -------------- - embed/mozilla/IRCProtocolHandler.cpp | 23 ------ - embed/mozilla/IRCProtocolHandler.h | 50 ------------ - embed/mozilla/MailtoProtocolHandler.cpp | 23 ------ - embed/mozilla/MailtoProtocolHandler.h | 50 ------------ - embed/mozilla/Makefile.am | 8 +- - embed/mozilla/MozRegisterComponents.cpp | 17 +++- - 11 files changed, 184 insertions(+), 237 deletions(-) - -commit f4199d79aabc830a6747ff8237ce9766002da0ae -Author: Marco Pesenti Gritti -Date: Sun Jul 6 19:26:24 2003 +0000 - - Patch by kris to speed it up. - - 2003-07-06 Marco Pesenti Gritti - - * lib/egg/eggtreemodelfilter.c: - - Patch by kris to speed it up. - - ChangeLog | 6 + - lib/egg/eggtreemodelfilter.c | 349 ++++++++++++++++++++++++++----------------- - 2 files changed, 219 insertions(+), 136 deletions(-) - -commit e6bfc523513823d06660a818389999ac15e3f57c -Author: Christian Persch -Date: Sun Jul 6 15:49:19 2003 +0000 - - Updated British English translation. - - 2003-07-06 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 408 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 224 insertions(+), 188 deletions(-) - -commit 26ab891231913b58db5be0527c9a6c47e7c09d4b -Author: Christian Persch -Date: Sun Jul 6 15:32:13 2003 +0000 - - Implement toolbar overflow menu item for the go button. - - 2003-07-06 Christian Persch - - * src/ephy-go-action.c: (button_clicked), (activate_cb), - (create_menu_item), (create_menu_proxy_cb), (connect_proxy), - (ephy_go_action_class_init): - - Implement toolbar overflow menu item for the go button. - - ChangeLog | 8 ++++++++ - src/ephy-go-action.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 55 insertions(+), 2 deletions(-) - -commit af976b33780d7a2d055d5c1075a6f4697897b70b -Author: Christian Neumair -Date: Sun Jul 6 13:16:33 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 747 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 413 insertions(+), 338 deletions(-) - -commit 55a35d634523b18ea78702d7562a40427f776a00 -Author: Christian Persch -Date: Sun Jul 6 12:08:59 2003 +0000 - - Fix mem leak. - - 2003-07-06 Christian Persch - - * lib/ephy-node.c: (ephy_node_finalize): - - Fix mem leak. - - * lib/ephy-node.c: (ephy_node_save_to_xml), (ephy_node_new_from_xml): - - Use locale-independent functions g_ascii_strtod and g_ascii_dtostr - when reading/writing float and double values. - - ChangeLog | 11 +++++++++++ - lib/ephy-node.c | 19 +++++++++++-------- - 2 files changed, 22 insertions(+), 8 deletions(-) - -commit 03d457e1fcc30913c79ffbd89a0028cf50426d5c -Author: Marco Pesenti Gritti -Date: Sun Jul 6 11:48:37 2003 +0000 - - *** empty log message *** - - embed/ephy-favicon-cache.c | 9 ++------ - src/bookmarks/ephy-bookmarks-import.c | 4 ---- - src/bookmarks/ephy-bookmarks.c | 42 ++++++++++++++++++++++++++++++----- - src/bookmarks/ephy-bookmarks.h | 2 -- - src/bookmarks/ephy-new-bookmark.c | 2 -- - 5 files changed, 39 insertions(+), 20 deletions(-) - -commit e34a73d3a57c3cdba064b6790874ac77dfc60b74 -Author: Christian Persch -Date: Sun Jul 6 11:48:37 2003 +0000 - - Fix mem leak. - - 2003-07-06 Christian Persch - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_finalize): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/ephy-favicon-cache.c | 1 + - 2 files changed, 7 insertions(+) - -commit 40b6ff9e29d8e36d3bb811bc5e1bd19af6dd36a6 -Author: Marco Pesenti Gritti -Date: Sun Jul 6 11:10:31 2003 +0000 - - Make sure we ever save bookmarks after changes, so they dont get lost on - - 2003-07-06 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-import.c: - (ephy_bookmarks_import_mozilla), (ephy_bookmarks_import_xbel): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults), - (save_bookmarks_delayed), (ephy_bookmarks_set_dirty), - (bookmarks_changed_cb), (bookmarks_removed_cb), - (ephy_bookmarks_init), (ephy_bookmarks_finalize), - (ephy_bookmarks_add): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_add): - * src/ephy-shell.c: (ephy_shell_finalize), - (ephy_shell_get_toolbars_model): - * src/ephy-toolbars-model.c: (item_added), (item_removed), - (toolbar_added), (toolbar_removed), (ephy_toolbars_model_init), - (ephy_toolbars_model_finalize): - - Make sure we ever save bookmarks after changes, so they dont - get lost on crashes. - - ChangeLog | 20 ++++++++++++++++++++ - src/ephy-shell.c | 32 -------------------------------- - 2 files changed, 20 insertions(+), 32 deletions(-) - -commit ae2fee0cd7782a2ca8bc4189e422413186af7ec1 -Author: Marco Pesenti Gritti -Date: Sun Jul 6 11:10:31 2003 +0000 - - broken pipe pfff - - src/ephy-toolbars-model.c | 78 ++++++++++++++++++++++++++++++----------------- - 1 file changed, 50 insertions(+), 28 deletions(-) - -commit 5f244c99e6fefb6f56ba468b442e0aab000cff34 -Author: Marco Pesenti Gritti -Date: Sun Jul 6 11:10:31 2003 +0000 - - Make sure we ever save bookmarks after changes, so they dont get lost on - - 2003-07-06 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-import.c: - (ephy_bookmarks_import_mozilla), (ephy_bookmarks_import_xbel): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults), - (save_bookmarks_delayed), (ephy_bookmarks_set_dirty), - (bookmarks_changed_cb), (bookmarks_removed_cb), - (ephy_bookmarks_init), (ephy_bookmarks_finalize), - (ephy_bookmarks_add): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_add): - * src/ephy-shell.c: (ephy_shell_finalize), - (ephy_shell_get_toolbars_model): - * src/ephy-toolbars-model.c: (item_added), (item_removed), - (toolbar_added), (toolbar_removed), (ephy_toolbars_model_init), - (ephy_toolbars_model_finalize): - - Make sure we ever save bookmarks after changes, so they dont - get lost on crashes. - - src/ephy-toolbars-model.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 56 insertions(+) - -commit 2ed547c52d8c9bde77dd0d95ddd6e32a9149b6d6 -Author: Christian Persch -Date: Sat Jul 5 23:57:24 2003 +0000 - - Fix mem leaks and a conditional. - - 2003-07-06 Christian Persch - - * lib/widgets/ephy-node-view.c: (ephy_node_view_button_press_cb), - (ephy_node_view_sort_func): - * src/bookmarks/ephy-topics-selector.c: (topic_clicked), - (topic_key_pressed): - - Fix mem leaks and a conditional. - - ChangeLog | 9 +++++++++ - lib/widgets/ephy-node-view.c | 6 ++++-- - src/bookmarks/ephy-topics-selector.c | 4 +++- - 3 files changed, 16 insertions(+), 3 deletions(-) - -commit ef8471f1c1829e864124d0025938ed1c8b8970c7 -Author: Christian Persch -Date: Sat Jul 5 17:49:11 2003 +0000 - - gtk_editable_insert_text takes the number of bytes in the string, not the - - 2003-07-05 Christian Persch - - * src/prefs-dialog.c: (setup_font_menu), (set_homepage_entry): - - gtk_editable_insert_text takes the number of bytes in the string, - not the number of characters. - - ChangeLog | 7 +++++++ - src/prefs-dialog.c | 6 +++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit 74a90453c307ef335076ebd89878a715a10889bd -Author: Marco Pesenti Gritti -Date: Sat Jul 5 17:31:39 2003 +0000 - - Api resync and cleanup from galeon. - - 2003-07-05 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/ContentHandler.h: - * src/prefs-dialog.c: (setup_font_menu): - - Api resync and cleanup from galeon. - - ChangeLog | 8 ++++++++ - embed/mozilla/ContentHandler.cpp | 15 ++++++++++----- - embed/mozilla/ContentHandler.h | 1 - - src/prefs-dialog.c | 3 ++- - 4 files changed, 20 insertions(+), 7 deletions(-) - -commit 23c8a4bef0c6006724043a428f3e5b5ca485e49f -Author: Valek Frob -Date: Sat Jul 5 16:13:19 2003 +0000 - - Updated russian translation. - - po/ChangeLog | 4 + - po/ru.po | 3285 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 1622 insertions(+), 1667 deletions(-) - -commit 47dca180ff1566242a1d2193357ed50458056948 -Author: Marco Pesenti Gritti -Date: Fri Jul 4 22:19:29 2003 +0000 - - *** empty log message *** - - acconfig.h | 7 ------- - 1 file changed, 7 deletions(-) - -commit f5084b05a6780f58a575cab34b0a8e7da0c8c755 -Author: Christian Persch -Date: Fri Jul 4 22:15:46 2003 +0000 - - Enclose literal values in double quotes. Fixes bug 116720. - - 2003-07-04 Christian Persch - - * data/epiphany.schemas.in: - - Enclose literal values in double quotes. Fixes bug 116720. - - ChangeLog | 6 +++++ - data/epiphany.schemas.in | 63 +++++++++++++++++++++++++----------------------- - 2 files changed, 39 insertions(+), 30 deletions(-) - -commit c5ff27114cf4b2cfdd2a3beece460f7feb44e949 -Author: Christian Persch -Date: Fri Jul 4 22:01:33 2003 +0000 - - Use G_VA_COPY macro from glib instead of va_copy, (hopefully) fixing the - - 2003-07-04 Christian Persch - - * lib/ephy-node.c: (callback): - - Use G_VA_COPY macro from glib instead of va_copy, (hopefully) - fixing the va_ problem for good. - - ChangeLog | 7 +++++++ - lib/ephy-node.c | 5 ++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 364f0a7d3e5ed8f891ca850ef25aa417c34ba8ea -Author: Christian Rose -Date: Fri Jul 4 21:52:46 2003 +0000 - - Updated Swedish translation. - - 2003-07-04 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 444 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 241 insertions(+), 207 deletions(-) - -commit 04232d1c20ac0fe729168ab1294e22e9e136b731 -Author: Christian Persch -Date: Fri Jul 4 14:41:23 2003 +0000 - - Remove the persist object from the hash table before emitting the changed - - 2003-07-04 Christian Persch - - * embed/ephy-favicon-cache.c: (favicon_download_completed_cb): - - Remove the persist object from the hash table before emitting the - changed signal. Fixes bug 116673. - - ChangeLog | 7 +++++++ - embed/ephy-favicon-cache.c | 8 +++++--- - 2 files changed, 12 insertions(+), 3 deletions(-) - -commit b88852bb0214f4aec9edc4eb12cf159fe0033601 -Author: Christian Persch -Date: Fri Jul 4 14:38:37 2003 +0000 - - 2003-07-04 Christian Persch - - * data/epiphany.schemas.in: - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 20 ++++++++++---------- - 2 files changed, 16 insertions(+), 10 deletions(-) - -commit a43bf835284c7706a0567bb6954c1c46e1bdb1c1 -Author: Christian Persch -Date: Fri Jul 4 14:37:17 2003 +0000 - - Use g_list_prepend instead of g_list_append. Correct erroneous copyright - - 2003-07-04 Christian Persch - - * src/bookmarks/ephy-bookmarks-menu.c: (add_bookmarks_menu): - - Use g_list_prepend instead of g_list_append. - Correct erroneous copyright notice. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-menu.c | 11 ++++++----- - 2 files changed, 13 insertions(+), 5 deletions(-) - -commit 0774d40cedbde3a4c8751d02e237f7b3b0e25572 -Author: Marco Pesenti Gritti -Date: Fri Jul 4 14:15:49 2003 +0000 - - Remove use of acconfig.h. - - 2003-07-04 Marco Pesenti Gritti - - * configure.in: - - Remove use of acconfig.h. - - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_embed_single): - * embed/ephy-embed-single.c: - * embed/ephy-embed-single.h: - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/MozRegisterComponents.h: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-embed-single.h: - * src/bookmarks/ephy-bookmarks-import.c: (bookmark_add), - (xbel_parse_folder), (ephy_bookmarks_import_mozilla): - * src/ephy-shell.c: (ephy_shell_init): - - Show an alert when mozilla cant start instead of crashing. - Do not import bookmarks dups. - Cleanup some mozilla code headers inclusion. - - ChangeLog | 24 ++++++++++ - configure.in | 24 +--------- - embed/ephy-embed-shell.c | 17 ++++++- - embed/ephy-embed-single.c | 13 ----- - embed/ephy-embed-single.h | 2 - - embed/mozilla/ContentHandler.cpp | 2 - - embed/mozilla/EphyWrapper.cpp | 2 - - embed/mozilla/Makefile.am | 85 +++++++++++++++------------------ - embed/mozilla/MozRegisterComponents.cpp | 14 +++--- - embed/mozilla/MozRegisterComponents.h | 17 +++---- - embed/mozilla/mozilla-embed-single.cpp | 43 +++++++++++------ - embed/mozilla/mozilla-embed-single.h | 6 ++- - src/bookmarks/ephy-bookmarks-import.c | 47 +++++++++--------- - src/ephy-shell.c | 30 +++++++++--- - 14 files changed, 174 insertions(+), 152 deletions(-) - -commit 53e29e3ec1e3d6f72118873a221cdf2bc621091b -Author: Christian Rose -Date: Thu Jul 3 22:12:06 2003 +0000 - - Updated Swedish translation. - - 2003-07-04 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 1527 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 812 insertions(+), 719 deletions(-) - -commit 6e61a1fde9793d4a9520a894cda4765dd8a2e292 -Author: Jeremy Katz -Date: Thu Jul 3 19:50:25 2003 +0000 - - Must use va_copy when assigning valist on arches where varargs are - - 2003-07-03 Jeremy Katz - - * lib/ephy-node.c (callback): Must use va_copy when assigning - valist on arches where varargs are implemented as an array type - (such as AMD64) - - ChangeLog | 6 ++++++ - lib/ephy-node.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 481bbe19eab224eb95d18278ee70c550773c9251 -Author: Xan Lopez -Date: Thu Jul 3 16:37:44 2003 +0000 - - Sync with Moz Head, small cleanup. - - - Sync with Moz Head, small cleanup. - - ChangeLog | 7 +++++++ - embed/mozilla/ContentHandler.cpp | 8 ++++---- - embed/mozilla/ContentHandler.h | 1 - - 3 files changed, 11 insertions(+), 5 deletions(-) - -commit f5299b00454e4aba71fd4a6d6e1043fffc7b08cc -Author: Christian Persch -Date: Thu Jul 3 15:10:40 2003 +0000 - - Ellipsise the bookmarks titles. - - 2003-07-03 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (build_bookmarks_menu): - - Ellipsise the bookmarks titles. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topic-action.c | 11 +++++++++-- - 2 files changed, 15 insertions(+), 2 deletions(-) - -commit cb4d1dac50b27f9efc03e6b02ab6ee2cba958248 -Author: Christian Persch -Date: Wed Jul 2 23:29:56 2003 +0000 - - Oops, fix mem leak introduced by previous checkin. - - 2003-07-03 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (create_menu_proxy): - - Oops, fix mem leak introduced by previous checkin. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmark-action.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit c96af6c518293719f3882bd9a08fd57fd8d00353 -Author: Christian Persch -Date: Wed Jul 2 23:22:39 2003 +0000 - - Updated British English translation. - - 2003-07-03 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 + - po/en_GB.po | 343 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 187 insertions(+), 160 deletions(-) - -commit 5aa9a4c46f443d5198c04f4c5b9fdd3391e5be8e -Author: Christian Persch -Date: Wed Jul 2 23:07:44 2003 +0000 - - Moved bookmark tool item creation back to ephy-bookmark-action.c, For - - 2003-07-03 Christian Persch - - * src/bookmarks/ephy-bookmark-toolitem.h: - * src/bookmarks/ephy-bookmark-toolitem.c: - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (ephy_bookmark_action_sync_label), (activate_cb), (create_menu_proxy), - (connect_proxy), (ephy_bookmark_action_class_init): - - Moved bookmark tool item creation back to ephy-bookmark-action.c, - For smart bookmarks, don't append ':' in the toolbar overflow menu. - - ChangeLog | 11 ++ - src/bookmarks/Makefile.am | 2 - - src/bookmarks/ephy-bookmark-action.c | 90 +++++++++++++++-- - src/bookmarks/ephy-bookmark-toolitem.c | 177 --------------------------------- - src/bookmarks/ephy-bookmark-toolitem.h | 60 ----------- - 5 files changed, 92 insertions(+), 248 deletions(-) - -commit 76e761ad2019ffa8f86d41afc848f271bea4d1e0 -Author: Christian Persch -Date: Wed Jul 2 22:12:33 2003 +0000 - - Don't try to assign va_list to a gpointer var. Fixes bug #116131. - - 2003-07-03 Christian Persch - - * lib/ephy-node.c: (callback), (ephy_node_emit_signal): - - Don't try to assign va_list to a gpointer var. Fixes bug #116131. - - ChangeLog | 6 ++++++ - lib/ephy-node.c | 31 +++++++++++++++++++------------ - 2 files changed, 25 insertions(+), 12 deletions(-) - -commit 6650d3ac5caa4cdad7d5a555fb47e19113b90b02 -Author: Christian Persch -Date: Wed Jul 2 20:56:42 2003 +0000 - - Implement custom tooltip setter. - - 2003-07-02 Christian Persch - - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_set_tooltip), - (ephy_zooom_control_class_init): - - Implement custom tooltip setter. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-zoom-control.c | 17 +++++++++++++++++ - 2 files changed, 24 insertions(+) - -commit 13b3d92da4d248b5a4e7a43f6849bac2471f4d21 -Author: Christian Persch -Date: Wed Jul 2 19:13:03 2003 +0000 - - Implement custom tooltip setter; sets tooltip on the directional button. - - 2003-07-02 Christian Persch - - * lib/widgets/ephy-arrow-toolbutton.c: - (ephy_arrow_toolbutton_set_tooltip), (ephy_arrow_toolbutton_class_init): - - Implement custom tooltip setter; sets tooltip on the directional button. - - * src/toolbar.c: (toolbar_setup_actions): - - Set tooltips on custom actions. - - ChangeLog | 11 +++++++++++ - lib/widgets/ephy-arrow-toolbutton.c | 19 +++++++++++++++++++ - src/toolbar.c | 7 ++++++- - 3 files changed, 36 insertions(+), 1 deletion(-) - -commit 2f7b2ca65482177d9c723fb9bef9eb92748d2377 -Author: Jordi Mallach -Date: Wed Jul 2 17:56:40 2003 +0000 - - Replace "0" with "false" in Terminal entries. - - 2003-07-02 Jordi Mallach - - * data/bme.desktop.in, data/epiphany.desktop.in: Replace "0" with - "false" in Terminal entries. - - ChangeLog | 5 +++++ - data/bme.desktop.in | 3 ++- - data/epiphany.desktop.in | 3 ++- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit 8836c9088ed01ac8cbf30c9d1fb53bc4297a5d9a -Author: Ole Laursen -Date: Wed Jul 2 09:51:18 2003 +0000 - - Updated Danish translation. - - 2003-07-02 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 274 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 141 insertions(+), 137 deletions(-) - -commit 3215ffe460fe512c4b4a797fcb300f9ca18c05cf -Author: Marco Pesenti Gritti -Date: Wed Jul 2 09:17:47 2003 +0000 - - s/Caches/Cache - - 2003-07-02 Marco Pesenti Gritti - - * data/glade/prefs-dialog.glade: - - s/Caches/Cache - - * embed/ephy-embed-prefs.h: - - Remove the compare cache define too - - ChangeLog | 10 ++++++++++ - data/glade/prefs-dialog.glade | 2 +- - embed/ephy-embed-prefs.h | 1 - - 3 files changed, 11 insertions(+), 2 deletions(-) - -commit 2507de9eae5d185af79d6425178ac571c4f48a75 -Author: Marco Pesenti Gritti -Date: Wed Jul 2 09:09:26 2003 +0000 - - Use the browser icon from gnome icon theme. Get rid of cache comparing - - 2003-07-02 Marco Pesenti Gritti - - * data/art/Makefile.am: - * data/art/epiphany.png: - * data/epiphany.desktop.in: - * data/epiphany.schemas.in: - * data/glade/prefs-dialog.glade: - * embed/mozilla/mozilla-notifiers.cpp: - * lib/ephy-dialog.c: (ephy_dialog_set_size_group): - * lib/ephy-dialog.h: - * src/ephy-main.c: (main): - * src/prefs-dialog.c: (prefs_dialog_init), - (prefs_homepage_blank_button_clicked_cb), (fill_language_editor): - * src/window-commands.c: (window_cmd_help_about): - - Use the browser icon from gnome icon theme. - Get rid of cache comparing prefs and rehash prefs pages to - make them more specific. - - ChangeLog | 19 ++ - data/art/Makefile.am | 2 +- - data/art/epiphany.png | Bin 3539 -> 0 bytes - data/epiphany.desktop.in | 2 +- - data/epiphany.schemas.in | 12 - - data/glade/prefs-dialog.glade | 548 ++++++++++++++++++------------------ - embed/mozilla/mozilla-notifiers.cpp | 38 --- - lib/ephy-dialog.c | 22 ++ - lib/ephy-dialog.h | 4 + - src/ephy-main.c | 22 +- - src/prefs-dialog.c | 49 ++-- - src/window-commands.c | 33 ++- - 12 files changed, 386 insertions(+), 365 deletions(-) - -commit 7c78319ee7d559c4cedb6f9d9845e5496ccb9520 -Author: Christian Persch -Date: Tue Jul 1 23:40:35 2003 +0000 - - Implement toolbar overflow menu item for bookmark topics. - - 2003-07-02 Christian Persch - - * src/bookmarks/ephy-topic-action.c: (ephy_topic_action_sync_label), - (create_menu_item), (create_menu_proxy), (connect_proxy), - (ephy_topic_action_class_init): - - Implement toolbar overflow menu item for bookmark topics. - - ChangeLog | 8 ++++ - src/bookmarks/ephy-topic-action.c | 81 ++++++++++++++++++++++++++++++++++----- - 2 files changed, 80 insertions(+), 9 deletions(-) - -commit 3da50215b70179a91abab515bc2250184033eced -Author: Marco Pesenti Gritti -Date: Tue Jul 1 23:30:18 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 1e9496102332bd71a63e87cffe6117d5e905e78e -Author: Marco Pesenti Gritti -Date: Tue Jul 1 23:21:46 2003 +0000 - - Use normal google search for keywords - - 2003-07-02 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - - Use normal google search for keywords - - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c621f76b4e81a30f6d6db5eb16bf2c75d0980468 -Author: Christian Persch -Date: Tue Jul 1 18:28:05 2003 +0000 - - Make the location entry an EggToolItem, and provide a custom tooptip - - 2003-07-01 Christian Persch - - * lib/widgets/ephy-location-entry.h: - * lib/widgets/ephy-location-entry.c: (ephy_location_entry_set_tooltip), - (ephy_location_entry_construct_contents), - (ephy_location_entry_class_init), (ephy_location_entry_init), - (ephy_location_entry_finalize): - - Make the location entry an EggToolItem, and provide a custom - tooptip setter. Fix mem leak. - - * src/ephy-location-action.c: (create_tool_item), - (ephy_location_action_class_init), (connect_proxy): - - Use the location entry EggToolItem instead of constructing it - explicitly. - - * src/toolbar.c: (toolbar_setup_action): - - Set tooltip for location entry. - - * lib/egg/egg-action.c: (connect_proxy), (disconnect_proxy): - - Connect the tooltip sync'er on any EggToolItem, not just EggTollButton:s. - Disconnect the tooltip sync func on disconnect, too. - - ChangeLog | 26 +++++++++ - lib/egg/egg-action.c | 16 +++-- - lib/egg/eggtoggletoolbutton.c | 26 ++++----- - lib/egg/eggtoolbar.c | 74 ++++++++++++----------- - lib/egg/eggtoolbutton.c | 46 ++++++++------- - lib/egg/eggtoolbutton.h | 2 - - lib/egg/eggtoolitem.c | 55 +++++++++++------ - lib/widgets/ephy-location-entry.c | 120 +++++++++++++++++++++++++------------- - lib/widgets/ephy-location-entry.h | 13 ++--- - src/ephy-location-action.c | 28 ++------- - src/toolbar.c | 1 + - 11 files changed, 245 insertions(+), 162 deletions(-) - -commit 0ab1c928c782530b2d5ab0ad81cb46e5aaed539d -Author: David Bordoley -Date: Tue Jul 1 14:27:04 2003 +0000 - - Set a label for the find toolbar item so that it doesn't have elipses. - - 2003-07-01 David Bordoley - - * src/ephy-window.c: (setup_window): - - Set a label for the find toolbar item so that it - doesn't have elipses. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 2 ++ - 2 files changed, 9 insertions(+) - -commit a6a77af950d68bfea17a1911aa452e00d4b23c9d -Author: Arafat Medini -Date: Tue Jul 1 13:24:22 2003 +0000 - - Added Arabic translation. - - - 2003-07-01 Arafat Medini - - * ar.po: Added Arabic translation. - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/ar.po | 3175 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3184 insertions(+), 1 deletion(-) - -commit 92bfd90849cf96b631ddc8038c66debd23287b9e -Author: Marco Pesenti Gritti -Date: Mon Jun 30 22:30:28 2003 +0000 - - testing before committing sometimes helps - - lib/widgets/ephy-location-entry.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 486e1939b5347d6ead5d1d0dcbc65399a1072ecc -Author: Marco Pesenti Gritti -Date: Mon Jun 30 22:26:45 2003 +0000 - - Hide only when necessary. Remove gdk_ungrab stuff that doesnt seem to be - - 2003-07-01 Marco Pesenti Gritti - - * lib/widgets/ephy-autocompletion-window.c: - (ephy_autocompletion_window_finalize_impl), - (ephy_autocompletion_window_show), - (ephy_autocompletion_window_hide): - - Hide only when necessary. Remove gdk_ungrab stuff - that doesnt seem to be necessary. - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_autocompletion_show_alternatives): - - Reset entry->button when showing autocompletion, the grab - get gtk crazy otherwise. - - ChangeLog | 16 ++++++++++++++++ - lib/widgets/ephy-autocompletion-window.c | 12 +----------- - lib/widgets/ephy-location-entry.c | 7 +++++++ - 3 files changed, 24 insertions(+), 11 deletions(-) - -commit ece5e036c19540f6973b510bd7d108bc3c0ad742 -Author: Marco Pesenti Gritti -Date: Mon Jun 30 16:31:59 2003 +0000 - - Remove some unused code - - 2003-06-30 Marco Pesenti Gritti - - * embed/ephy-embed-dialog.c: (ephy_embed_dialog_get_embed): - * embed/ephy-embed-shell.c: (ephy_embed_shell_init), - (ephy_embed_shell_get_favicon_cache): - * embed/ephy-embed-shell.h: - * embed/print-dialog.c: (print_dialog_print), - (print_dialog_preview): - * src/Makefile.am: - * src/ephy-tab.c: (ephy_tab_destroy_brsr_cb), (ephy_tab_init): - - Remove some unused code - - ChangeLog | 13 +++++++++++++ - embed/ephy-embed-dialog.c | 8 -------- - embed/ephy-embed-shell.c | 33 --------------------------------- - embed/ephy-embed-shell.h | 14 -------------- - embed/print-dialog.c | 2 ++ - src/Makefile.am | 4 ++-- - src/ephy-tab.c | 5 ----- - 7 files changed, 17 insertions(+), 62 deletions(-) - -commit 5f1869901b3705de47918f0f137762acfd773286 -Author: Ole Laursen -Date: Sun Jun 29 22:06:59 2003 +0000 - - Updated Danish translation. - - 2003-06-30 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 2147 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1169 insertions(+), 982 deletions(-) - -commit 948b68574491a5c9a157aa3edb829d4a6b20ccb0 -Author: James Willcox -Date: Sun Jun 29 19:56:33 2003 +0000 - - Remember the directory when saving files. Fixes #115603. - - - - 2003-06-29 James Willcox - - * embed/mozilla/ContentHandler.cpp: - - Remember the directory when saving files. Fixes #115603. - - ChangeLog | 6 +++++ - data/epiphany.applications | 2 +- - embed/mozilla/ContentHandler.cpp | 52 +++++++++++++++++++++++----------------- - 3 files changed, 37 insertions(+), 23 deletions(-) - -commit e823b1ae495d6a3f9df0acd0f73542e416bcb6a9 -Author: Marco Pesenti Gritti -Date: Sun Jun 29 19:43:44 2003 +0000 - - *** empty log message *** - - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit ff47844ae331688fc9f772862e47e7ea43bfe1a2 -Author: Marco Pesenti Gritti -Date: Sun Jun 29 19:43:29 2003 +0000 - - 0.7.3 - - 2003-06-29 Marco Pesenti Gritti - - * NEWS: - * configure.in: - - 0.7.3 - - ChangeLog | 7 +++++++ - NEWS | 14 ++++++++++++++ - 2 files changed, 21 insertions(+) - -commit d8d0e6b3e3d001aea01cb90472fae751c75f00b4 -Author: Christian Persch -Date: Sun Jun 29 17:53:46 2003 +0000 - - Fix callbacks for new signature of ge_location embed signal. - - 2003-06-29 Christian Persch - - * src/ephy-nautilus-view.c: (gnv_embed_location_cb): - * src/ephy-tab.c: (ephy_tab_address_cb): - * embed/find-dialog.c: (sync_page_change): - - Fix callbacks for new signature of ge_location embed signal. - - * src/ephy-tab.c: (ephy_tab_icon_cache_changed_cb): - - Fix logic to update the site icon. - - ChangeLog | 12 ++++++++++++ - embed/find-dialog.c | 2 +- - src/ephy-nautilus-view.c | 23 ++++++++--------------- - src/ephy-tab.c | 6 +++--- - 4 files changed, 24 insertions(+), 19 deletions(-) - -commit 71c44e8dc078e48bfb6bc6c2517041f75e9ab45e -Author: Marco Pesenti Gritti -Date: Sun Jun 29 11:10:07 2003 +0000 - - Temporary implementation of toolbar tooltips, until it's implement in - - 2003-06-29 Marco Pesenti Gritti - - * lib/egg/egg-action.c: (egg_action_init), (egg_action_finalize), - (egg_action_sync_tooltip), (connect_proxy): - * lib/egg/egg-action.h: - - Temporary implementation of toolbar tooltips, until it's - implement in menu. - - ChangeLog | 9 +++++++++ - lib/egg/egg-action.c | 32 ++++++++++++++++++++++++++++++++ - lib/egg/egg-action.h | 2 ++ - 3 files changed, 43 insertions(+) - -commit b41b89d2288fa87201f17909ce6ca252dacd292e -Author: Marco Pesenti Gritti -Date: Sun Jun 29 08:32:01 2003 +0000 - - Make sure marshalers are regenerated - - 2003-06-29 Marco Pesenti Gritti - - * lib/egg/Makefile.am: - - Make sure marshalers are regenerated - - * lib/egg/egg-editable-toolbar.c: - * lib/egg/eggmarshalers.c: - * lib/egg/eggmarshalers.h: - * lib/egg/eggmarshalers.list: - * lib/egg/eggradiotoolbutton.c: - * lib/egg/eggradiotoolbutton.h: - * lib/egg/eggtoggletoolbutton.c: - * lib/egg/eggtoggletoolbutton.h: - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolbar.h: - * lib/egg/eggtoolbutton.c: - * lib/egg/eggtoolbutton.h: - * lib/egg/eggtoolitem.c: - * lib/egg/eggtoolitem.h: - - Update - - ChangeLog | 23 ++++ - lib/egg/Makefile.am | 4 +- - lib/egg/egg-editable-toolbar.c | 9 +- - lib/egg/eggmarshalers.c | 82 +++++++++++++ - lib/egg/eggmarshalers.h | 16 +++ - lib/egg/eggmarshalers.list | 1 + - lib/egg/eggradiotoolbutton.c | 27 +++++ - lib/egg/eggradiotoolbutton.h | 16 ++- - lib/egg/eggtoggletoolbutton.c | 7 +- - lib/egg/eggtoggletoolbutton.h | 1 + - lib/egg/eggtoolbar.c | 269 ++++++++++++++++++----------------------- - lib/egg/eggtoolbar.h | 67 +++++----- - lib/egg/eggtoolbutton.c | 47 +++---- - lib/egg/eggtoolbutton.h | 3 +- - lib/egg/eggtoolitem.c | 88 ++++++++------ - lib/egg/eggtoolitem.h | 13 +- - 16 files changed, 402 insertions(+), 271 deletions(-) - -commit 515526399a7f11480c4077c55cdde9c5a796aca4 -Author: Marco Pesenti Gritti -Date: Sat Jun 28 23:52:49 2003 +0000 - - Emit the changed signal before unrefing the persist object. The changed - - 2003-06-29 Marco Pesenti Gritti - - * embed/ephy-favicon-cache.c: (favicon_download_completed_cb), - (ephy_favicon_cache_download), (ephy_favicon_cache_get): - - Emit the changed signal before unrefing the persist object. - The changed url is set_data_full on it and it will be freed - otherwise. - Make sure we never emit signals with NULL url. - - ChangeLog | 10 ++++++++++ - embed/ephy-favicon-cache.c | 13 ++++++++----- - 2 files changed, 18 insertions(+), 5 deletions(-) - -commit b2160774063d686ed8fa744da1bd8df45c2e1ea8 -Author: Piers Cornwell -Date: Sat Jun 28 23:44:08 2003 +0000 - - Don't show -1 KB before download starts. - - 2003-06-28 Piers Cornwell - - * embed/downloader-view.c: (downloader_view_add_download): - - Don't show -1 KB before download starts. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit f7cc9966f5aadc1ebb18e9a1e1b2b5874fb05cb9 -Author: Christian Persch -Date: Sat Jun 28 17:29:20 2003 +0000 - - Updated British English translation. - - 2003-06-28 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 ++++ - po/en_GB.po | 18 +++++++++--------- - 2 files changed, 13 insertions(+), 9 deletions(-) - -commit e8a5213d3e64b9f478db0a407219d5719f434735 -Author: Piers Cornwell -Date: Sat Jun 28 17:25:42 2003 +0000 - - Correct usage of ellipses. - - 2003-06-28 Piers Cornwell - - * src/ephy-window.c: - - Correct usage of ellipses. - - * src/prefs-dialog.c: - - Correct spelling of Bokmal and several cleanups. - - ChangeLog | 10 ++++++++++ - src/ephy-window.c | 6 +++--- - src/prefs-dialog.c | 19 +++++++++---------- - 3 files changed, 22 insertions(+), 13 deletions(-) - -commit f438ec984f9f684d805de89e2555cf0fb830dd38 -Author: Marco Pesenti Gritti -Date: Sat Jun 28 16:41:43 2003 +0000 - - *** empty log message *** - - src/Makefile.am | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 2894510c5edbc078f2ff178df53d6338d00c355d -Author: Christophe Fergeau -Date: Sat Jun 28 16:30:50 2003 +0000 - - removed unused header, fixes compilation with mozilla head - - 2003-06-28 Christophe Fergeau - - * embed/mozilla/EphyWrapper.cpp: removed unused header, - fixes compilation with mozilla head - - ChangeLog | 5 +++++ - embed/mozilla/EphyWrapper.cpp | 1 - - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 9e3a67f46a0c754c755744a8de00860189d25f4d -Author: Marco Pesenti Gritti -Date: Sat Jun 28 14:56:47 2003 +0000 - - Make sure idl generated sources are updated when necessary. - - 2003-06-28 Marco Pesenti Gritti - - * src/.cvsignore: - * src/Makefile.am: - - Make sure idl generated sources are updated when - necessary. - - ChangeLog | 8 ++++++++ - src/.cvsignore | 1 + - src/Makefile.am | 13 +++++++------ - 3 files changed, 16 insertions(+), 6 deletions(-) - -commit 40bb44a0371b059500b27820d3264b273a7cbc53 -Author: Christian Persch -Date: Sat Jun 28 14:27:32 2003 +0000 - - Fixed bug #116172 to make it into 0.7.2 release. - - 2003-06-28 Christian Persch - - * no.po: Fixed bug #116172 to make it into 0.7.2 release. - - po/ChangeLog | 4 ++++ - po/no.po | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 06eddd252635c43dbee55924a27f5788be2b4cfa -Author: Marco Pesenti Gritti -Date: Sat Jun 28 14:20:27 2003 +0000 - - updated - - 2003-06-28 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (create_item): - - updated - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit b73edfdd43b5ee2371e0868690de44685d824051 -Author: Christian Persch -Date: Sat Jun 28 13:24:00 2003 +0000 - - Add 'mk' to list of updated translations. - - 2003-06-28 Christian Persch - - * NEWS: - - Add 'mk' to list of updated translations. - - ChangeLog | 6 ++ - NEWS | 3 +- - po/ChangeLog | 4 + - po/en_GB.po | 326 +++++++++++++++++++++++++++++++---------------------------- - 4 files changed, 181 insertions(+), 158 deletions(-) - -commit c1ced24c7457d8991bc2e44c7cc784fe1215947c -Author: Marco Pesenti Gritti -Date: Sat Jun 28 13:14:47 2003 +0000 - - Fallback using directories to detect format if the mime is not relevant. - - 2003-06-28 Marco Pesenti Gritti - - * configure.in: - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmarks_import): - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): - * src/bookmarks/ephy-bookmarks-import.h: - - Fallback using directories to detect format if the mime - is not relevant. - - ChangeLog | 10 ++++++++++ - configure.in | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 7 +++---- - src/bookmarks/ephy-bookmarks-import.c | 13 ++++++++++++- - src/bookmarks/ephy-bookmarks-import.h | 4 ++++ - 5 files changed, 30 insertions(+), 6 deletions(-) - -commit cc8e17fdc6434920c709ecdc8aef54ed70f9c66e -Author: Marco Pesenti Gritti -Date: Sat Jun 28 12:29:36 2003 +0000 - - Update for 0.7.2 - - ChangeLog | 7 +++++ - NEWS | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 103 insertions(+) - -commit 5178020d52873aec82c4c83873b54c25cf6bc770 -Author: Marco Pesenti Gritti -Date: Sat Jun 28 07:49:32 2003 +0000 - - Update. - - 2003-06-28 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (set_item_drag_source), - (create_item): - - Update. - - ChangeLog | 7 +++++++ - lib/egg/egg-editable-toolbar.c | 7 ++++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit c6603174ea1a92f7ff07f2771f8db893e9e510d4 -Author: Kjartan Maraas -Date: Sat Jun 28 07:40:23 2003 +0000 - - Update Norwegian translation. - - 2003-06-28 Kjartan Maraas - - * no.po: Update Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 793 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 420 insertions(+), 377 deletions(-) - -commit 0a7c1a7da1081845d5833486e7524cafd04f5989 -Author: Marco Pesenti Gritti -Date: Sat Jun 28 07:36:47 2003 +0000 - - Set done size to total size on download completed - - 2003-06-28 Marco Pesenti Gritti - - * embed/downloader-view.c: (downloader_view_update_controls), - (downloader_view_set_download_info): - - Set done size to total size on download completed - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 16 ++++++++++------ - 2 files changed, 17 insertions(+), 6 deletions(-) - -commit 33dd5a32b5c97b6bb5d0bd8039bd52bae4eb7b67 -Author: Christian Persch -Date: Fri Jun 27 23:20:47 2003 +0000 - - Fix mem leaks. - - 2003-06-28 Christian Persch - - * src/ephy-navigation-action.c: (ephy_navigation_action_finalize), - (ephy_navigation_action_class_init): - * src/ephy-spinner-action.c: (ephy_spinner_action_finalize), - (ephy_spinner_action_class_init): - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_editable_changed_cb): - - Fix mem leaks. - - ChangeLog | 18 +++++++++++++++--- - lib/widgets/ephy-location-entry.c | 4 ++-- - src/ephy-navigation-action.c | 13 +++++++++++++ - src/ephy-spinner-action.c | 13 +++++++++++++ - 4 files changed, 43 insertions(+), 5 deletions(-) - -commit 4ddb9e1f94a1c75804bf699f5cee9cbe0d45ecab -Author: Christian Persch -Date: Fri Jun 27 23:10:53 2003 +0000 - - Fix mem leaks. - - 2003-06-28 Christian Persch - - * src/ephy-favorites-menu.c: (ephy_favorites_menu_rebuild): - * embed/find-dialog.c: (find_get_info): - - Fix mem leaks. - - embed/find-dialog.c | 12 ++++++++++-- - src/ephy-favorites-menu.c | 8 ++++++-- - 2 files changed, 16 insertions(+), 4 deletions(-) - -commit 7ba6cdfb3fb4727ec14cbcb9927dded050dbcc15 -Author: Marco Pesenti Gritti -Date: Fri Jun 27 19:09:51 2003 +0000 - - Revert escape/unescape, according to teuf is not necessary ;) - - 2003-06-27 Marco Pesenti Gritti - - * src/window-commands.c: (window_cmd_file_open): - - Revert escape/unescape, according to teuf is not necessary ;) - - ChangeLog | 6 ++++++ - src/window-commands.c | 13 ++++--------- - 2 files changed, 10 insertions(+), 9 deletions(-) - -commit af5e0c337633c1a40fcf9bfdab0aed3d5ce8e4f6 -Author: Marco Pesenti Gritti -Date: Fri Jun 27 18:20:06 2003 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmarks-export.c | 15 ++++++++------- - 1 file changed, 8 insertions(+), 7 deletions(-) - -commit 648c4d43ce6d6e0e177825d80db430cb656b36d3 -Author: Marco Pesenti Gritti -Date: Fri Jun 27 18:18:04 2003 +0000 - - 2003-06-27 Marco Pesenti Gritti - - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - * src/bookmarks/ephy-bookmarks-export.c: (add_topics_list), - (ephy_bookmarks_export_rdf): - * src/ephy-tab.c: (ephy_tab_address_cb): - * src/ephy-window.c: (ephy_window_load_url): - * src/window-commands.c: (window_cmd_file_open): - - ChangeLog | 19 +++++++++++++++++++ - embed/ephy-embed.c | 5 +++-- - embed/ephy-embed.h | 3 ++- - embed/mozilla/mozilla-embed.cpp | 11 ++++++++--- - src/ephy-tab.c | 6 +----- - src/window-commands.c | 13 +++++++++---- - 6 files changed, 42 insertions(+), 15 deletions(-) - -commit fa8c6fe4a3d78d541bb28e3828a007238d9be3f9 -Author: Pablo Gonzalo del Campo -Date: Thu Jun 26 17:49:06 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-06-26 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 +++++ - po/es.po | 10 +++++----- - 2 files changed, 10 insertions(+), 5 deletions(-) - -commit 55a49dd166a823c2ac6551a7aedb39c7cd2951b5 -Author: Christian Persch -Date: Thu Jun 26 17:37:13 2003 +0000 - - Make the toolbar overflow item really activate the bookmark action. - - 2003-06-26 Christian Persch - - * src/bookmarks/ephy-bookmark-action.c: (connect_proxy), - (entry_activated_cb), (activate_cb), (menu_activate_cb): - * src/bookmarks/ephy-bookmark-toolitem.h: - * src/bookmarks/ephy-bookmark-toolitem.c: (activated_cb), - (ephy_bookmark_toolitem_create_menu_proxy), - (ephy_bookmark_toolitem_class_init): - - Make the toolbar overflow item really activate the bookmark action. - Simplify code a little. - - ChangeLog | 12 ++++++ - src/bookmarks/ephy-bookmark-action.c | 78 +++++++++++++++------------------- - src/bookmarks/ephy-bookmark-toolitem.c | 37 ++++++++++++++++ - src/bookmarks/ephy-bookmark-toolitem.h | 3 ++ - 4 files changed, 87 insertions(+), 43 deletions(-) - -commit 9dbfd9b34b6dab67863392504c221e0c6f0eb4a2 -Author: Marco Pesenti Gritti -Date: Thu Jun 26 15:47:41 2003 +0000 - - Use window_load_url when useful. Right now just a cleanup but will be - - 2003-06-26 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-menu.c: (go_location_cb): - * src/ephy-favorites-menu.c: (go_location_cb): - * src/ephy-navigation-action.c: (activate_up_menu_item_cb): - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/toolbar.c: (go_location_cb): - * src/window-commands.c: (window_cmd_go_home): - - Use window_load_url when useful. Right now just a cleanup - but will be useful when mozilla focus will stop to suck. - - ChangeLog | 12 ++++++++++++ - src/bookmarks/ephy-bookmarks-menu.c | 7 +------ - src/ephy-favorites-menu.c | 7 +------ - src/ephy-navigation-action.c | 2 +- - src/ephy-shell.c | 2 +- - src/toolbar.c | 7 +------ - src/window-commands.c | 7 +------ - 7 files changed, 18 insertions(+), 26 deletions(-) - -commit bd886bd75b0f49f350d479ca1e6c57e6a7451f73 -Author: Christian Persch -Date: Thu Jun 26 15:06:45 2003 +0000 - - Add two new encodings, and change access keys to be unique. - - 2003-06-26 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Add two new encodings, and change access keys to be unique. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 10 +++++++--- - 2 files changed, 13 insertions(+), 3 deletions(-) - -commit ed734ac6890029f657a94dc3e8ff419d34251c88 -Author: Christian Persch -Date: Thu Jun 26 15:03:11 2003 +0000 - - Check dom_event, emit warning and return if it is NULL. - - 2003-06-26 Christian Persch - - * embed/mozilla/mozilla-embed.cpp: (mozilla_embed_dom_key_down_cb), - (mozilla_embed_dom_mouse_down_cb), (mozilla_embed_dom_mouse_click_cb): - - Check dom_event, emit warning and return if it is NULL. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed.cpp | 20 +++++++++++++++++++- - 2 files changed, 26 insertions(+), 1 deletion(-) - -commit 5c4078df2c17f93ca5e2ec679f65bac7c9102e6f -Author: Marco Pesenti Gritti -Date: Thu Jun 26 14:31:07 2003 +0000 - - Do not sync tab visibility on tab creation, it's state is undefined at - - 2003-06-26 Marco Pesenti Gritti - - * src/ephy-window.c: (tab_added_cb): - - Do not sync tab visibility on tab creation, it's state - is undefined at that point - - ChangeLog | 7 +++++++ - src/ephy-window.c | 1 - - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit e7f718df228b8aa3461480cb743609878995d2bc -Author: Marco Pesenti Gritti -Date: Wed Jun 25 19:55:18 2003 +0000 - - Update - - 2003-06-25 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: (set_item_drag_source), - (create_item), (egg_editable_toolbar_set_edit_mode): - - Update - - ChangeLog | 7 +++++ - lib/egg/egg-editable-toolbar.c | 66 +++++++++++++++++++++++------------------- - 2 files changed, 44 insertions(+), 29 deletions(-) - -commit 8ea3e8e38b1626e918782252f97d405ed152a86c -Author: Christian Persch -Date: Wed Jun 25 19:28:02 2003 +0000 - - Make sure there's only one print dialog per window. Fixes bug #115933. - - 2003-06-25 Christian Persch - - * src/ephy-window.c: (ephy_window_print): - - Make sure there's only one print dialog per window. Fixes bug #115933. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 17 ++++++++--------- - 2 files changed, 14 insertions(+), 9 deletions(-) - -commit 685b2ace571d07c4aa831288cc62fd2e9b444fe5 -Author: Christian Persch -Date: Wed Jun 25 12:58:45 2003 +0000 - - Added 'mk' (Macedonian) to ALL_LINGUAS. - - 2003-06-25 Christian Persch - - * configure.in: - - Added 'mk' (Macedonian) to ALL_LINGUAS. - - ChangeLog | 6 ++++++ - configure.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4b15e1d6307ddeae578adc03893faa3ad25fe57f -Author: Christian Neumair -Date: Wed Jun 25 11:16:41 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 642 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 333 insertions(+), 313 deletions(-) - -commit 82f0ef521de1e11efc6476eed4f7c893f9f30888 -Author: Marco Pesenti Gritti -Date: Tue Jun 24 18:22:16 2003 +0000 - - Grab focus after the old text has been restored. - - 2003-06-24 Marco Pesenti Gritti - - * embed/find-dialog.c: (impl_show): - - Grab focus after the old text has been restored. - - ChangeLog | 6 ++++++ - embed/find-dialog.c | 12 ++++++------ - 2 files changed, 12 insertions(+), 6 deletions(-) - -commit b5c21fd39fe8b7b33e673fbb2470e0284ec93c43 -Author: Marco Pesenti Gritti -Date: Tue Jun 24 14:46:15 2003 +0000 - - Api change - - 2003-06-24 Marco Pesenti Gritti - - * embed/mozilla/GlobalHistory.cpp: - - Api change - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 7 +++++++ - 2 files changed, 13 insertions(+) - -commit 101b005bf0f3d7af7e837c86d86aeff777c2618c -Author: Christian Persch -Date: Tue Jun 24 10:19:20 2003 +0000 - - Update documentation of the allowed values for - - 2003-06-24 Christian Persch - - * data/epiphany.schemas.in: - - Update documentation of the allowed values for - /apps/epiphany/dialogs/preferences_font_language - - ChangeLog | 7 +++++++ - data/epiphany.schemas.in | 13 +++++++------ - 2 files changed, 14 insertions(+), 6 deletions(-) - -commit 913d894c92418ca19abd687111ce55d76ed5f57d -Author: Pablo Gonzalo del Campo -Date: Mon Jun 23 16:06:05 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-06-23 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 ++ - po/es.po | 282 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 161 insertions(+), 126 deletions(-) - -commit ffb5879a05e93cc4c5ab70c2796e00e99d1c11ff -Author: Marco Pesenti Gritti -Date: Mon Jun 23 11:31:30 2003 +0000 - - fix warning - - src/ppview-toolbar.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -commit 50c50f2771be312a4836a14252122c6b828aa2a9 -Author: Marco Pesenti Gritti -Date: Mon Jun 23 09:58:25 2003 +0000 - - *** empty log message *** - - lib/ephy-gobject-misc.h | 77 ------------------------------------------------- - 1 file changed, 77 deletions(-) - -commit 6742f4d2c168a13221adb054520efc7390fe88dc -Author: Marco Pesenti Gritti -Date: Mon Jun 23 09:57:21 2003 +0000 - - Remove some unused headers. - - 2003-06-23 Marco Pesenti Gritti - - * embed/mozilla/GlobalHistory.cpp: - - Remove some unused headers. - - * embed/mozilla/mozilla-embed.cpp: - - Dont asser when trying to print blank page. - - * lib/Makefile.am: - * lib/ephy-autocompletion.c: (ephy_autocompletion_get_type): - * lib/widgets/ephy-autocompletion-window.c: - (ephy_autocompletion_window_get_type): - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_get_type): - * src/ephy-encoding-menu.c: (ephy_encoding_menu_get_type): - - Get rid of the gobject macros. - - * src/ephy-notebook.c: (move_tab), (move_tab_to_another_notebook), - (button_release_cb), (update_tabs_visibility), - (tabs_visibility_notifier), (ephy_notebook_init), - (ephy_notebook_finalize), (ephy_notebook_set_show_tabs): - * src/ephy-notebook.h: - * src/ephy-tabs-menu.c: - * src/ephy-window.c: (ephy_window_finalize), - (update_embed_dialogs), (ephy_window_get_find_dialog), - (print_dialog_preview_cb), (ephy_window_print): - * src/ephy-window.h: - * src/ppview-toolbar.c: (toolbar_cmd_ppv_close): - * src/window-commands.c: (window_cmd_file_print): - - Make sure tabs are hidden when going in print preview mode. - Make print dialog transient. - - ChangeLog | 36 +++++ - embed/mozilla/GlobalHistory.cpp | 6 - - embed/mozilla/mozilla-embed.cpp | 2 +- - lib/Makefile.am | 1 - - lib/ephy-autocompletion.c | 32 +++- - lib/widgets/ephy-autocompletion-window.c | 33 +++- - lib/widgets/ephy-location-entry.c | 33 +++- - src/ephy-encoding-menu.c | 34 ++++- - src/ephy-notebook.c | 251 ++++++++++++++++--------------- - src/ephy-notebook.h | 3 + - src/ephy-tabs-menu.c | 1 - - src/ephy-window.c | 51 ++++++- - src/ephy-window.h | 4 +- - src/ppview-toolbar.c | 4 + - src/window-commands.c | 22 +-- - 15 files changed, 331 insertions(+), 182 deletions(-) - -commit 01b26909a89f11ea190a312ad0100b5254c97651 -Author: Christian Persch -Date: Mon Jun 23 00:34:19 2003 +0000 - - Fix capitalisation of menu entry. - - 2003-06-23 Christian Persch - - * src/bookmarks/ephy-bookmarks-editor.c: - - Fix capitalisation of menu entry. - - ChangeLog | 6 + - po/ChangeLog | 4 + - po/en_GB.po | 429 +++++++++++++++++----------------- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 4 files changed, 222 insertions(+), 219 deletions(-) - -commit b0749c90570cf9ad796c02d0636fece080054008 -Author: Marco Pesenti Gritti -Date: Sun Jun 22 23:07:50 2003 +0000 - - *** empty log message *** - - TODO | 2 -- - embed/ephy-history.c | 9 ++------- - 2 files changed, 2 insertions(+), 9 deletions(-) - -commit ca789c035a4c74bfaf25b52d8d73c4685d4eb91f -Author: Marco Pesenti Gritti -Date: Sun Jun 22 23:03:43 2003 +0000 - - Correct translations dir (leftover from galeon) - - 2003-06-23 Marco Pesenti Gritti - - * configure.in: - - Correct translations dir (leftover from galeon) - - * embed/ephy-history.c: - - Lower expire to 10 days, similar to phoenix. Current interface - and perf make this a better default. - - * lib/ephy-dialog.c: (ephy_dialog_init), (setup_default_size): - - Make sure to not state_add more than one time - - * lib/widgets/ephy-location-entry.c: (insert_text_cb): - - Do not show autocompletion on not focused window. This is to - work around problems with gnome-entry. - - * src/ephy-window.c: (popup_menu_at_coords), (show_embed_popup), - (tab_context_menu_cb): - - Do not use custom func to show mouse popups. - Fix costum func to be smarter with screen limits. - - ChangeLog | 26 ++++++++++++++++++++++++++ - configure.in | 2 +- - embed/ephy-history.c | 2 +- - lib/ephy-dialog.c | 13 ++++++++++--- - lib/widgets/ephy-location-entry.c | 5 +++++ - src/ephy-window.c | 34 +++++++++++++++++----------------- - 6 files changed, 60 insertions(+), 22 deletions(-) - -commit 250fa48d8848faf5741544fe3e9a083119ba0309 -Author: Vincent van Adrighem -Date: Sun Jun 22 22:51:25 2003 +0000 - - Dutch translation updated. - - 2003-06-23 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 687 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 381 insertions(+), 310 deletions(-) - -commit bd7385ba23d1054fd194290b8fd86600516c2895 -Author: Christian Persch -Date: Sun Jun 22 20:18:15 2003 +0000 - - Use nsDependentCString instead of NS_LITERAL_CSTRING. Fixes bug 115739. - - 2003-06-22 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: (impl_remove_cookies): - - Use nsDependentCString instead of NS_LITERAL_CSTRING. Fixes bug 115739. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 5b8df4b6ad3dc01e291259c5496194517963a31d -Author: Marco Pesenti Gritti -Date: Sun Jun 22 19:57:05 2003 +0000 - - Fix add bookmark from link - - 2003-06-22 Marco Pesenti Gritti - - * src/popup-commands.c: (popup_cmd_bookmark_link): - - Fix add bookmark from link - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 4 ++++ - src/popup-commands.c | 2 +- - 3 files changed, 11 insertions(+), 1 deletion(-) - -commit d47cf3976d55464087e82ff8e12486a1772aab29 -Author: Christian Persch -Date: Sun Jun 22 15:25:02 2003 +0000 - - Drop encodings from our list which are not meant to be used in a browser. - - 2003-06-22 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Drop encodings from our list which are not meant to be used in - a browser. List from - lxr.mozilla.org/seamonkey/source/intl/uconv/src/charsetData.properties - - ChangeLog | 8 ++++++++ - embed/mozilla/mozilla-embed-single.cpp | 13 ------------- - 2 files changed, 8 insertions(+), 13 deletions(-) - -commit 1a8a2d3828f7cd5307a40fbcb3a05d488ae7613a -Author: Christian Persch -Date: Sun Jun 22 14:45:09 2003 +0000 - - Add two missing font language groups, and reorder encodings list. - - 2003-06-22 Christian Persch - - * lib/ephy-langs.c: - * embed/mozilla/mozilla-embed-single.cpp: - - Add two missing font language groups, and reorder encodings list. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 38 ++++++++++++++++------------------ - lib/ephy-langs.c | 2 ++ - 3 files changed, 27 insertions(+), 20 deletions(-) - -commit 2c24fc18e03eb6c7002f97144a031959ba2c1195 -Author: Marco Pesenti Gritti -Date: Sun Jun 22 10:08:34 2003 +0000 - - broken pipe pfff - - lib/ephy-state.c | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -commit 78b632a87b98b12595a9c82c9ea1d173b45971df -Author: Marco Pesenti Gritti -Date: Sun Jun 22 10:08:34 2003 +0000 - - Make sure to set size flag when setting default width height. Discard old - - 2003-06-22 Marco Pesenti Gritti - - * lib/ephy-state.c: (ephy_states_load), (ephy_states_save), - (create_window_node), (ephy_state_add_window): - - Make sure to set size flag when setting default width height. - Discard old states.xml, so we dont get bug reports about small - dialogs. - - ChangeLog | 9 ++++++ - lib/ephy-state.c | 83 ++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 69 insertions(+), 23 deletions(-) - -commit 393c76d574626ca402bc86057bea66a0130e2a72 -Author: Marco Pesenti Gritti -Date: Sun Jun 22 09:32:07 2003 +0000 - - When following SAVE_POSITION/SAVE_SIZE flags actually not save them - - 2003-06-22 Marco Pesenti Gritti - - * lib/ephy-state.c: (ephy_state_window_set_size), - (ephy_state_window_set_position), (ephy_state_window_save_size), - (ephy_state_window_save_position), (ephy_state_window_save), - (window_configure_event_cb), (window_state_event_cb), - (ephy_state_add_window): - - When following SAVE_POSITION/SAVE_SIZE flags actually not save - them instead of just not restore. - Do not use coords value to determine unset state but a boolean - flag. (this will restore all saved states to NULL now) - - * lib/ephy-state.h: - - Add a NONE flag, it will restore but not save. - - * src/ephy-tab.c: (ephy_tab_set_title): - - Fix a warning when the url is NULL (popups) - - * src/ephy-window.c: (ephy_window_init), (ephy_window_show): - - Use normal size for not sized popups. - - ChangeLog | 25 ++++++++++++++ - lib/ephy-state.c | 97 ++++++++++++++++++++++++++++--------------------------- - lib/ephy-state.h | 3 +- - src/ephy-tab.c | 8 +++-- - src/ephy-window.c | 40 +++++++++++++---------- - 5 files changed, 106 insertions(+), 67 deletions(-) - -commit 1b0ed8d6983398861ecef0971f0131661d0ccef1 -Author: Marco Pesenti Gritti -Date: Sun Jun 22 00:38:04 2003 +0000 - - *** empty log message *** - - embed/mozilla/ProgressListener.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit af0eb5ea01a68ca0efdc2efba245157571e671fd -Author: Marco Pesenti Gritti -Date: Sun Jun 22 00:37:32 2003 +0000 - - Pass elapsed times in seconds, more consistent and avoid overflow. - - 2003-06-22 Marco Pesenti Gritti - - * embed/downloader-view.c: (downloader_view_update_details): - * embed/mozilla/ProgressListener.cpp: - - Pass elapsed times in seconds, more consistent and avoid - overflow. - - ChangeLog | 8 ++++++++ - embed/downloader-view.c | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 2eb4aa3ecbad3c8fe62bd61fc85cd6626877361c -Author: Marco Pesenti Gritti -Date: Sun Jun 22 00:12:18 2003 +0000 - - Set address as title only when there is no title, on the second page load - - 2003-06-22 Marco Pesenti Gritti - - * src/ephy-tab.c: (ensure_page_info), (ephy_tab_net_state_cb), - (ephy_tab_init): - - Set address as title only when there is no title, on the second - page load just keep the old one until the new one is available. - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 12 ++++++++---- - 2 files changed, 16 insertions(+), 4 deletions(-) - -commit f4a52a4f5e21cc624fe0a9de2bca980732dd4563 -Author: Marco Pesenti Gritti -Date: Sat Jun 21 23:34:35 2003 +0000 - - do not popup autocompletion when setting url from the combo list - - 2003-06-22 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: (insert_text_cb): - - do not popup autocompletion when setting url from the combo list - - ChangeLog | 6 ++++++ - lib/widgets/ephy-location-entry.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit d1ea5948bd88351dbe86b511c291cafb9353999f -Author: Christian Persch -Date: Sat Jun 21 23:32:39 2003 +0000 - - Changed two nearly duplicated strings to the already present ones to save - - 2003-06-22 Christian Persch - - * src/prefs-dialog.c: - - Changed two nearly duplicated strings to the already present ones to - save work for translators. - - ChangeLog | 7 +++++++ - src/prefs-dialog.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 6cd10b366d5d541aca2e0394b41e2444ea93a586 -Author: Marco Pesenti Gritti -Date: Sat Jun 21 23:14:35 2003 +0000 - - Fix print preview toolbars - - 2003-06-22 Marco Pesenti Gritti - - * src/ephy-window.c: (update_chromes_visibility), - (ephy_window_fullscreen), (ephy_window_unfullscreen), - (ephy_window_set_chrome): - - Fix print preview toolbars - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 11 +++++------ - 2 files changed, 13 insertions(+), 6 deletions(-) - -commit 5a2c9060ea07649e9e07cb221d7588b9524e3ea6 -Author: Christian Persch -Date: Sat Jun 21 22:30:32 2003 +0000 - - Misc i18n fixes: mark default encoding and encoding autodetector in the - - 2003-06-22 Christian Persch - - * data/epiphany.schemas.in: - * src/prefs-dialog.c: - * embed/mozilla/mozilla-notifiers.cpp: (get_system_language): - - Misc i18n fixes: mark default encoding and encoding autodetector in - the schema as translatable, and instroduce a translatable string for - the locale-dependent http-accept-language list. Add simplified and - traditional chinese to the available languages list, and add the - universal encoding detector to the autodetectors list. - - ChangeLog | 12 ++ - data/epiphany.schemas.in | 21 +-- - embed/mozilla/mozilla-notifiers.cpp | 16 +- - po/ChangeLog | 4 + - po/en_GB.po | 317 +++++++++++++++++++----------------- - src/prefs-dialog.c | 5 +- - 6 files changed, 217 insertions(+), 158 deletions(-) - -commit c10acaa288a83d0a0d34a643cfee94199764ebef -Author: Marco Pesenti Gritti -Date: Fri Jun 20 22:01:02 2003 +0000 - - missing header - - 2003-06-20 Marco Pesenti Gritti - - * lib/ephy-string.c: - - missing header - - ChangeLog | 6 ++++++ - lib/ephy-string.c | 1 + - 2 files changed, 7 insertions(+) - -commit ede9fedc33b201530b89ae62d4fbad64ffb919b1 -Author: Christian Neumair -Date: Fri Jun 20 18:52:22 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 662 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 357 insertions(+), 309 deletions(-) - -commit 5d5fe667968ae5e9b4a4fe97ba36a06a7616d718 -Author: Marco Pesenti Gritti -Date: Fri Jun 20 16:52:49 2003 +0000 - - Set a title on NET_START (nicified url). - - 2003-06-20 Marco Pesenti Gritti - - * src/ephy-tab.c: (ephy_tab_net_state_cb), (ephy_tab_set_title): - - Set a title on NET_START (nicified url). - - * src/prefs-dialog.c: (prefs_homepage_current_button_clicked_cb): - * src/session.c: (save_tab): - * src/window-commands.c: (window_cmd_file_send_to), - (window_cmd_file_bookmark_page): - - Use embed_get_location when we want the real location, tab can - contain user changes. - - ChangeLog | 14 ++++++++++++++ - src/ephy-tab.c | 16 ++++++++++++++-- - src/prefs-dialog.c | 11 +++++++---- - src/session.c | 7 +++++-- - src/window-commands.c | 14 ++++++++++---- - 5 files changed, 50 insertions(+), 12 deletions(-) - -commit a838f6d5ab82bac98a25fb3ce9cb2c0cd575146c -Author: Marco Pesenti Gritti -Date: Fri Jun 20 15:43:38 2003 +0000 - - Use the embed url, the tab one can make no sense if the user edited it. - - 2003-06-20 Marco Pesenti Gritti - - * src/ephy-favicon-action.c: (each_url_get_data_binder): - - Use the embed url, the tab one can make no sense if the user - edited it. - - * src/toolbar.c: (location_user_changed_cb), (toolbar_set_window), - (toolbar_init), (toolbar_set_location): - - Block location updating when setting tab title on user_changed. - - ChangeLog | 12 ++++++++++++ - src/ephy-favicon-action.c | 8 ++++++-- - src/toolbar.c | 23 +++++++++++++++-------- - 3 files changed, 33 insertions(+), 10 deletions(-) - -commit 476c242753cd43a612cd9eea3166c77d822f7c80 -Author: Marco Pesenti Gritti -Date: Fri Jun 20 12:39:26 2003 +0000 - - Ever put cursor at the end of the text when selecting autocompletion - - 2003-06-20 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_autocompletion_window_url_selected_cb): - - Ever put cursor at the end of the text when selecting autocompletion - items. - - * src/pdm-dialog.c: (cookies_treeview_selection_changed_cb), - (action_treeview_selection_changed_cb): - - Do not allow to open properties of multiple cookies. (insensitive) - - ChangeLog | 13 +++++++++++++ - lib/widgets/ephy-location-entry.c | 3 ++- - src/pdm-dialog.c | 20 ++------------------ - 3 files changed, 17 insertions(+), 19 deletions(-) - -commit 8b66172512d6bfbdbb783613ed9b8e6cc057e86a -Author: Marco Pesenti Gritti -Date: Fri Jun 20 12:20:06 2003 +0000 - - hmmm - - src/ephy-tab.h | 10 +++++++++- - 1 file changed, 9 insertions(+), 1 deletion(-) - -commit 5b80fbd659cd964a59bd8a07ebf09616569608c3 -Author: Marco Pesenti Gritti -Date: Fri Jun 20 12:19:44 2003 +0000 - - Rewrite the url typed by user overwrite logic to fix bugs. - - 2003-06-20 Marco Pesenti Gritti - - * embed/mozilla/EphyWrapper.cpp: - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_class_init), (location_focus_out_cb), - (ephy_location_entry_init), (insert_text_cb), - (ephy_location_entry_key_press_event_cb), - (ephy_location_entry_activate_cb), - (ephy_location_entry_set_location), - (ephy_location_entry_autocompletion_window_url_selected_cb), - (ephy_location_entry_autocompletion_window_url_activated_cb), - (ephy_location_entry_editable_changed_cb): - * lib/widgets/ephy-location-entry.h: - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-tab.c: (ephy_tab_set_property), - (ephy_tab_set_link_message), (ephy_tab_set_window), - (ephy_tab_address_cb), (ensure_address), (ephy_tab_net_state_cb), - (ephy_tab_init), (ephy_tab_update_navigation_flags), - (ephy_tab_set_location): - * src/ephy-tab.h: - * src/ephy-window.c: (ephy_window_notebook_switch_page_cb): - * src/popup-commands.c: (get_event_info), - (popup_cmd_copy_link_address): - * src/toolbar.c: (get_location_entry), (location_user_changed_cb), - (toolbar_set_window), (toolbar_activate_location), - (toolbar_set_location), (toolbar_get_location), - (toolbar_clear_location_history): - * src/toolbar.h: - - Rewrite the url typed by user overwrite logic to fix bugs. - - ChangeLog | 31 ++++++++++++++ - lib/widgets/ephy-location-entry.c | 89 ++++++++++++++++++--------------------- - lib/widgets/ephy-location-entry.h | 4 +- - src/ephy-shell.c | 4 +- - src/ephy-tab.c | 53 +++++++++++++++-------- - src/ephy-window.c | 20 +-------- - src/popup-commands.c | 4 +- - src/toolbar.c | 73 ++++++++++++++++---------------- - src/toolbar.h | 2 - - 9 files changed, 151 insertions(+), 129 deletions(-) - -commit 2d8717b4bab5d9ee5431078b9a3a9288bc15e487 -Author: Miloslav Trmac -Date: Fri Jun 20 10:16:32 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++ - po/cs.po | 203 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 116 insertions(+), 91 deletions(-) - -commit 38f4f77d16ff6ee02751eb91b9870108f639e21a -Author: Marco Pesenti Gritti -Date: Thu Jun 19 23:58:02 2003 +0000 - - Get rid of get/set _event, reformat the header. - - 2003-06-20 Marco Pesenti Gritti - - * src/ephy-tab.c: (ephy_tab_finalize), (ephy_tab_init): - * src/ephy-tab.h: - - Get rid of get/set _event, reformat the header. - - * src/pdm-dialog.c: - - Fix compilation warning. - - * src/ephy-window.c: (popup_destroy_cb), (show_embed_popup): - * src/popup-commands.c: (get_event_info): - - Less invasive way to access the event info from the callbacks. - - ChangeLog | 16 ++++++++++++++++ - src/ephy-tab.c | 24 ------------------------ - src/ephy-tab.h | 53 ++++++++++++++++++++++++---------------------------- - src/ephy-window.c | 16 +++++++++++++++- - src/pdm-dialog.c | 2 ++ - src/popup-commands.c | 6 +----- - 6 files changed, 58 insertions(+), 59 deletions(-) - -commit 37a1f2f5e2544db814a79631d4f4b958f6dba9a8 -Author: Christian Persch -Date: Thu Jun 19 22:57:50 2003 +0000 - - Move the context popup menu to ephy-window.c. If there's no background - - 2003-06-20 Christian Persch - - * src/ephy-tab.h: - * src/ephy-tab.c: (popup_menu_at_coords), (ephy_tab_show_embed_popup), - (ephy_tab_context_menu_cb), (ephy_tab_set_event): - * src/ephy-window.c: (popup_menu_at_coords), (show_embed_popup), - (tab_context_menu_cb), (ephy_window_set_active_tab): - - Move the context popup menu to ephy-window.c. - If there's no background image, disable the SaveBackgroundAs - menu entry. - - ChangeLog | 12 ++++++ - src/ephy-tab.c | 100 +-------------------------------------------- - src/ephy-tab.h | 3 ++ - src/ephy-window.c | 119 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-window.h | 1 + - 5 files changed, 136 insertions(+), 99 deletions(-) - -commit b3dec5832fbbefc25e0efac92476a67130620ce5 -Author: Marco Pesenti Gritti -Date: Thu Jun 19 17:46:53 2003 +0000 - - Mozilla api change, pfffff - - 2003-06-19 Marco Pesenti Gritti - - * embed/mozilla/EphyWrapper.cpp: - - Mozilla api change, pfffff - - ChangeLog | 6 ++++++ - embed/mozilla/EphyWrapper.cpp | 4 ++++ - 2 files changed, 10 insertions(+) - -commit 9dfe2cae89f22c7f6bd38e9626221df09085453d -Author: Xan Lopez -Date: Thu Jun 19 16:17:02 2003 +0000 - - Fix compilation. - - - Fix compilation. - - ChangeLog | 7 +++++++ - embed/mozilla/ProgressListener.cpp | 1 - - embed/mozilla/ProgressListener.h | 1 + - 3 files changed, 8 insertions(+), 1 deletion(-) - -commit a43f391a6c26f27d16ea8116bd62051a076733ca -Author: Marco Pesenti Gritti -Date: Thu Jun 19 11:31:05 2003 +0000 - - With the gtk fullscreen api things can be cleaner: use the api instead of - - 2003-06-19 Marco Pesenti Gritti - - * embed/ephy-embed-types.h: - * lib/ephy-state.c: (window_configure_event_cb), - (window_state_event_cb): - * src/ephy-window.c: (ephy_window_destroy), - (ephy_window_class_init), (update_exit_fullscreen_popup_position), - (size_changed_cb), (exit_fullscreen_button_clicked_cb), - (update_chromes_visibility), (ephy_window_fullscreen), - (ephy_window_unfullscreen), (ephy_window_state_event_cb), - (setup_window), (sync_tab_icon), (sync_tab_load_progress), - (sync_tab_load_status), (ephy_window_init), (save_window_chrome), - (translate_default_chrome), (update_layout_toggles), - (ephy_window_set_chrome), (ephy_window_show): - * src/window-commands.c: (window_cmd_view_fullscreen): - - With the gtk fullscreen api things can be cleaner: - use the api instead of chromes to handle fullscreen, - dont persist window state when it's fullscreen. - Destroy exit fullscreen button on window destroy. - - * src/ephy-shell.c: (ephy_shell_new_tab): - - Give up on cloning until we find a good way to do it :/ - - ChangeLog | 25 ++++ - embed/ephy-embed-types.h | 3 +- - lib/ephy-state.c | 20 ++- - src/ephy-shell.c | 19 +-- - src/ephy-window.c | 373 +++++++++++++++++++++++++---------------------- - src/window-commands.c | 18 +-- - 6 files changed, 249 insertions(+), 209 deletions(-) - -commit 3c102efdf843bd1a8ff61875f1556037c163a95e -Author: Christian Persch -Date: Wed Jun 18 23:27:49 2003 +0000 - - Updated British English translation. - - 2003-06-19 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 ++ - po/en_GB.po | 169 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 99 insertions(+), 74 deletions(-) - -commit c62801560d891b183926655d26fede52811cbcf8 -Author: Xan Lopez -Date: Wed Jun 18 19:50:59 2003 +0000 - - More cleanups, fix memleaks. - - - More cleanups, fix memleaks. - - ChangeLog | 9 ++++ - embed/downloader-view.c | 2 +- - embed/mozilla/ProgressListener.cpp | 88 +++++++++++++++------------------ - embed/mozilla/ProgressListener.h | 6 +-- - embed/mozilla/mozilla-embed-persist.cpp | 4 +- - 5 files changed, 55 insertions(+), 54 deletions(-) - -commit 13552ed473e9c33cd0219eb3656da3adb28fc3a4 -Author: Miloslav Trmac -Date: Wed Jun 18 19:00:58 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - 1 file changed, 4 insertions(+) - -commit 4b1c6effe07b024a96efa38414acd5fe7b094295 -Author: Piers Cornwell -Date: Wed Jun 18 18:08:03 2003 +0000 - - Remove unused variables. - - 2003-06-18 Piers Cornwell - - * configure.in: - - Remove unused variables. - - * src/ephy-window.c: - - Add ellipse to Find menu item. - - * src/ephy-main.c: (ephy_main_start): - - Use the full program name, mark an error message as translatable - and don't print any message on launch when a window is already - open. - - ChangeLog | 16 ++++++++++++++++ - configure.in | 20 -------------------- - src/ephy-main.c | 21 ++++++++++----------- - src/ephy-window.c | 2 +- - 4 files changed, 27 insertions(+), 32 deletions(-) - -commit b40f531dea45d3b365bd310536afddc32573caad -Author: Marco Pesenti Gritti -Date: Wed Jun 18 18:06:02 2003 +0000 - - Use insert_text delete_text to show/hide the autocompletion window. - - 2003-06-18 Marco Pesenti Gritti - - * lib/ephy-autocompletion.c: (ephy_autocompletion_refine_matches), - (ephy_autocompletion_update_matches_full_item): - * lib/widgets/ephy-location-entry.c: (ephy_location_entry_build), - (ephy_location_entry_autocompletion_show_alternatives_to), - (real_entry_set_location), (delete_text_cb), (insert_text_cb), - (ephy_location_entry_key_press_event_cb), - (ephy_location_entry_content_is_text), - (ephy_location_entry_activate_cb): - * src/bookmarks/ephy-bookmarks.c: - (ephy_bookmarks_autocompletion_source_foreach): - * src/ephy-location-action.c: (create_tool_item), - (location_url_activate_cb): - - Use insert_text delete_text to show/hide the autocompletion - window. - Remember last search with autocompletion smart bookmarks. - - ChangeLog | 20 ++++++ - lib/ephy-autocompletion.c | 26 +++++--- - lib/widgets/ephy-location-entry.c | 125 +++++++++++++++++++++----------------- - src/bookmarks/ephy-bookmarks.c | 2 +- - src/ephy-location-action.c | 6 +- - 5 files changed, 113 insertions(+), 66 deletions(-) - -commit babb935ba03b3888164c609b9d6c498f392dd2c0 -Author: Marco Pesenti Gritti -Date: Wed Jun 18 12:29:54 2003 +0000 - - Higgify clear dialog - - 2003-06-18 Marco Pesenti Gritti - - * src/ephy-history-window.c: (confirmation_dialog_construct): - - Higgify clear dialog - - ChangeLog | 6 ++++++ - src/ephy-history-window.c | 35 ++++++++++++++++++++++++++++++----- - 2 files changed, 36 insertions(+), 5 deletions(-) - -commit 3b3889d5baf7963455f228bbaced14ecb56fad61 -Author: Christian Persch -Date: Wed Jun 18 12:17:16 2003 +0000 - - Unify the "Copy Email Address" and "Copy Link Address" context menu - - 2003-06-18 Christian Persch - - * data/ui/epiphany-ui.xml.in: - * src/ephy-window.c: - * src/popup-commands.h: - * src/popup-commands.c: (popup_cmd_copy_email), - (popup_cmd_copy_link_location), (popup_cmd_copy_link_address): - - Unify the "Copy Email Address" and "Copy Link Address" context menu - entries. Fixes bug #115377. - - ChangeLog | 11 +++++++++++ - data/ui/epiphany-ui.xml.in | 7 ++----- - src/ephy-window.c | 6 ++---- - src/popup-commands.c | 47 ++++++++++++++++++---------------------------- - src/popup-commands.h | 6 +----- - 5 files changed, 34 insertions(+), 43 deletions(-) - -commit a1ebf5424cef4d6923a24ac391c3287414cec800 -Author: Ivan Stojmirov -Date: Wed Jun 18 11:05:06 2003 +0000 - - added Macedonian translation - - po/mk.po | 2902 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 2902 insertions(+) - -commit 3e0a45d8c192353aa64af2594a3631750888ba16 -Author: Kjartan Maraas -Date: Wed Jun 18 08:49:30 2003 +0000 - - Update Norwegian translation. - - 2003-06-17 Kjartan Maraas - - * no.po: Update Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 1416 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 723 insertions(+), 697 deletions(-) - -commit ee4bb826dbb4333da91cc620bdd9ed9601d642ff -Author: Xan Lopez -Date: Tue Jun 17 23:59:56 2003 +0000 - - Drop some useless code. - - - Drop some useless code. - - ChangeLog | 6 ++++++ - embed/mozilla/ProgressListener.cpp | 7 ------- - 2 files changed, 6 insertions(+), 7 deletions(-) - -commit 68f425c35b80ae73ffdd3e65ad7670dfee1b6ad4 -Author: Marco Pesenti Gritti -Date: Tue Jun 17 23:34:28 2003 +0000 - - As first thing when a download stop, report it to the view. - - 2003-06-18 Marco Pesenti Gritti - - * embed/mozilla/ProgressListener.cpp: - - As first thing when a download stop, report it to the - view. - - ChangeLog | 7 +++++++ - embed/mozilla/ProgressListener.cpp | 19 +++++++++---------- - 2 files changed, 16 insertions(+), 10 deletions(-) - -commit 593e026cf2d2f1e5671f7ecb58330f4c5ab1ba99 -Author: Christian Persch -Date: Tue Jun 17 21:14:27 2003 +0000 - - Fix wrong cast of GtkDialog to GtkWindow. - - 2003-06-17 Christian Persch - - * src/prefs-dialog.c: - - Fix wrong cast of GtkDialog to GtkWindow. - - * data/glade/epiphany.glade: - * src/pdm-dialog.c: (pdm_dialog_show_help), (pdm_dialog_response_cb): - - Implement help button for pdm dialogue. - - ChangeLog | 11 +++++++++++ - data/glade/epiphany.glade | 16 ++++++++++++++-- - src/pdm-dialog.c | 45 ++++++++++++++++++++++++++++++++++++++++++--- - src/prefs-dialog.c | 2 +- - 4 files changed, 68 insertions(+), 6 deletions(-) - -commit 38d792d73126d14cb461560f9efc2d957a089ec9 -Author: Xan Lopez -Date: Tue Jun 17 21:07:41 2003 +0000 - - Forgot this (disgusted grunt). - - - Forgot this (disgusted grunt). - - ChangeLog | 9 ++++++++- - 1 file changed, 8 insertions(+), 1 deletion(-) - -commit c33c109a185dcb6b363c72189ba1201b2f593cfd -Author: Christian Persch -Date: Tue Jun 17 20:41:21 2003 +0000 - - Re-enable the next/prev buttons on page change. - - 2003-06-17 Christian Persch - - * embed/find-dialog.c: (sync_page_change), (unset_old_embed), - (sync_embed), (find_dialog_init), (find_dialog_finalize): - - Re-enable the next/prev buttons on page change. - - ChangeLog | 7 +++++++ - embed/find-dialog.c | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 59 insertions(+), 2 deletions(-) - -commit ce7e82d0829dae563296242acdcc52c2345e8597 -Author: Pablo Gonzalo del Campo -Date: Tue Jun 17 19:17:48 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-06-17 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 + - po/es.po | 742 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 391 insertions(+), 356 deletions(-) - -commit 60cb87ad5d08bb30f064b3c0852558dbdca15f93 -Author: Xan Lopez -Date: Tue Jun 17 19:09:05 2003 +0000 - - All cleanup and fixes and no play makes Xan a dull boy All cleanup and - - - All cleanup and fixes and no play makes Xan a dull boy - All cleanup and fixes and no play makes Xan a dull boy - All cleanup and fixes and no play makes Xan a dull boy - All cleanup and fixes and no play makes Xan a dull boy - ................ - - ChangeLog | 7 ++++++ - embed/find-dialog.c | 2 ++ - embed/mozilla/ProgressListener.cpp | 49 ++++++++++++++++---------------------- - src/window-commands.c | 1 + - 4 files changed, 30 insertions(+), 29 deletions(-) - -commit cd6c96081aef7d9b9a1ee4d65572bc3caf9583dd -Author: Christian Persch -Date: Tue Jun 17 16:01:06 2003 +0000 - - Updated British English translation. - - 2003-06-17 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 ++ - po/en_GB.po | 135 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 75 insertions(+), 64 deletions(-) - -commit bd491080e781e8bcf41a22fc2d9984e6cc3e2812 -Author: Christian Persch -Date: Tue Jun 17 15:42:38 2003 +0000 - - Some string fixes. - - 2003-06-16 Christian Persch - - * data/ui/nautilus-epiphany-view.xml.in: - * src/ephy-window.c: - * src/prefs-dialog.c: - - Some string fixes. - - ChangeLog | 8 ++++++++ - data/ui/nautilus-epiphany-view.xml.in | 6 +++--- - src/ephy-window.c | 6 +++--- - src/prefs-dialog.c | 4 ++-- - 4 files changed, 16 insertions(+), 8 deletions(-) - -commit 979ca43d6ef8b70cda5fb1c66d95e484c14f8e6a -Author: Miloslav Trmac -Date: Tue Jun 17 14:33:43 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 298 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 151 insertions(+), 151 deletions(-) - -commit 0f05073b6918c057536cded4784cc1fde48226e8 -Author: Christian Persch -Date: Tue Jun 17 12:55:16 2003 +0000 - - Updated British English translation. - - 2003-06-17 Christian Persch - - * en_GB.po: Updated British English translation. - - po/ChangeLog | 4 ++ - po/en_GB.po | 201 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 105 insertions(+), 100 deletions(-) - -commit 4b2d6b0b8b33720095be83c2604248b9940e9be5 -Author: Christian Persch -Date: Mon Jun 16 22:57:51 2003 +0000 - - Ref the child before removing it, and unref it after emitting the - - 2003-06-16 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_remove_page): - - Ref the child before removing it, and unref it after emitting the - tabs_removed signal. That way it stays alive while the signal is - being processed. Fixes bug 115306. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 11 +++++++++-- - 2 files changed, 17 insertions(+), 2 deletions(-) - -commit 33f7064755504d852085e872c57e77759b04db5a -Author: Christian Persch -Date: Mon Jun 16 22:22:27 2003 +0000 - - Added 'en_GB' to ALL_LINGUAS. - - 2003-06-16 Christian Persch - - * configure.in: - - Added 'en_GB' to ALL_LINGUAS. - - ChangeLog | 6 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/en_GB.po | 2923 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2934 insertions(+), 1 deletion(-) - -commit 9eeeed64b75c6c8e214e24ae7a5bc6f56540bd56 -Author: Christian Persch -Date: Mon Jun 16 18:27:22 2003 +0000 - - s/charset/encoding/ - - 2003-06-16 Christian Persch - - * data/epiphany.schemas.in: - - s/charset/encoding/ - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit d7b73e52e0b5413ea50abd589c0e0beb1b34e5b4 -Author: Marco Pesenti Gritti -Date: Mon Jun 16 18:22:08 2003 +0000 - - disable treeview interactive search - - 2003-06-16 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (ephy_node_view_init): - - disable treeview interactive search - - ChangeLog | 6 ++++++ - lib/widgets/ephy-node-view.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 7e29828679b0232b7543c4acb7bb05d84b6529e0 -Author: Miloslav Trmac -Date: Mon Jun 16 16:44:47 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 382 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 202 insertions(+), 184 deletions(-) - -commit f8ac3a5e684be6024af756a9ac354295849f9dce -Author: Marco Pesenti Gritti -Date: Mon Jun 16 16:21:41 2003 +0000 - - s/snprintf/g_snprintf to not break gcc 2.95 - - 2003-06-16 Marco Pesenti Gritti - - * embed/mozilla/mozilla-notifiers.cpp: - * lib/ephy-dialog.c: (set_config_from_color): - * src/ephy-tabs-menu.c: (tab_set_action_accelerator): - * src/prefs-dialog.c: (setup_font_menu), (save_font_menu), - (size_spinbutton_changed_cb), (setup_size_control): - * src/session.c: (session_save): - - s/snprintf/g_snprintf to not break gcc 2.95 - - ChangeLog | 11 +++++++++++ - embed/mozilla/mozilla-notifiers.cpp | 12 ++++++------ - lib/ephy-dialog.c | 2 +- - src/ephy-tabs-menu.c | 2 +- - src/prefs-dialog.c | 20 ++++++++++---------- - src/session.c | 8 ++++---- - 6 files changed, 33 insertions(+), 22 deletions(-) - -commit 559817b74ae0b6d87899b609d70c116cd6eefe7e -Author: Marco Pesenti Gritti -Date: Mon Jun 16 16:07:47 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit a9584d29c22a23410e0092d979129fca458268e7 -Author: Marco Pesenti Gritti -Date: Mon Jun 16 16:07:07 2003 +0000 - - Fix use document colors - - 2003-06-16 Marco Pesenti Gritti - - * embed/mozilla/mozilla-notifiers.cpp: - - Fix use document colors - - embed/mozilla/mozilla-notifiers.cpp | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit 622cb80aadf523ca0d1c742f9235a04385edd1cd -Author: Christian Persch -Date: Mon Jun 16 15:52:19 2003 +0000 - - Fix potential crash. - - 2003-06-16 Christian Persch - - * embed/find-dialog.c: (sync_embed): - - Fix potential crash. - - ChangeLog | 6 ++++++ - embed/find-dialog.c | 7 +++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 89effea2d02847e7eae987f3b8ac607cbaad8a5b -Author: Christian Persch -Date: Mon Jun 16 13:52:33 2003 +0000 - - Do not mark non-user-visible strings for translation. - - 2003-06-16 Christian Persch - - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_class_init): - - Do not mark non-user-visible strings for translation. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-zoom-control.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 710410942791488d41b27b3d01deb6563912a011 -Author: Marco Pesenti Gritti -Date: Mon Jun 16 10:57:05 2003 +0000 - - *** empty log message *** - - embed/ephy-embed-popup.c | 645 ----------------------------------------------- - embed/ephy-embed-popup.h | 73 ------ - 2 files changed, 718 deletions(-) - -commit 265c85e8ab0a90f2a7d389f5cd9f750eeadf3e22 -Author: Marco Pesenti Gritti -Date: Mon Jun 16 10:56:04 2003 +0000 - - Merge with popup control, we dont need it for bonobo window anymore. - - 2003-06-16 Marco Pesenti Gritti - - * embed/Makefile.am: - * embed/ephy-embed-popup-control.c: - (ephy_embed_popup_control_get_type), - (ephy_embed_popup_control_set_property), - (ephy_embed_popup_control_get_property), - (ephy_embed_popup_control_class_init), - (ephy_embed_popup_control_init), - (ephy_embed_popup_control_finalize), (get_popup_path), - (ephy_embed_popup_control_show), (setup_element_menu), - (setup_document_menu), (ephy_embed_popup_control_set_event), - (ephy_embed_popup_control_connect_verbs), - (ephy_embed_popup_control_get_event), - (embed_popup_copy_location_cmd), (embed_popup_copy_email_cmd), - (embed_popup_copy_link_location_cmd), (save_property_url), - (embed_popup_open_link_cmd), (embed_popup_download_link_cmd), - (embed_popup_save_image_as_cmd), (background_download_completed), - (embed_popup_set_image_as_background_cmd), - (embed_popup_copy_image_location_cmd), (save_url), - (embed_popup_save_page_as_cmd), - (embed_popup_save_background_as_cmd), (embed_popup_open_frame_cmd), - (embed_popup_reload_frame_cmd), (embed_popup_open_image_cmd), - (embed_popup_copy_to_clipboard): - * embed/ephy-embed-popup-control.h: - - Merge with popup control, we dont need it for bonobo - window anymore. - - * embed/mozilla/mozilla-embed-single.cpp: - - Do not override the UA but set vendor prefs so - that mozilla can build it correctly. - - * lib/ephy-dialog.c: (get_radio_button_active_index), - (set_config_from_radiobuttongroup), - (set_radiobuttongroup_from_config), (prefs_set_group_sensitivity), - (impl_get_value): - * lib/ephy-dnd.c: (ephy_dnd_node_list_extract_nodes): - * lib/ephy-gui.c: - * lib/ephy-gui.h: - * lib/ephy-string.c: (ephy_string_shorten), (ephy_string_to_int), - (ephy_string_strip_chr), (ephy_string_elide_underscores): - * lib/ephy-string.h: - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init), - (gnv_embed_context_menu_cb), (gnv_embed_location_cb), - (gnv_view_from_popup), (gnv_popup_cmd_new_window), - (gnv_popup_cmd_image_in_new_window), - (gnv_popup_cmd_frame_in_new_window), (gnv_cmd_file_print), - (gnv_embed_zoom_change_cb): - - ChangeLog | 56 +++ - embed/Makefile.am | 2 - - embed/ephy-embed-popup-control.c | 645 ++++++++++++++++++++++++++++++--- - embed/ephy-embed-popup-control.h | 20 +- - embed/mozilla/mozilla-embed-single.cpp | 46 +-- - lib/ephy-dialog.c | 68 +++- - lib/ephy-dnd.c | 2 +- - lib/ephy-gui.c | 66 +--- - lib/ephy-gui.h | 7 +- - lib/ephy-string.c | 397 +------------------- - lib/ephy-string.h | 37 +- - src/ephy-nautilus-view.c | 377 ++----------------- - src/session.c | 8 +- - src/statusbar.c | 4 +- - src/toolbar.c | 4 +- - 15 files changed, 785 insertions(+), 954 deletions(-) - -commit 3241ea896ff4f8939c038ab65f03948d026ed520 -Author: Marco Pesenti Gritti -Date: Sun Jun 15 23:47:33 2003 +0000 - - Remove some obsolete entries. - - 2003-06-16 Marco Pesenti Gritti - - * data/ui/nautilus-epiphany-view.xml.in: - - Remove some obsolete entries. - - * embed/Makefile.am: - * embed/ephy-embed-event.c: (ephy_embed_event_init), - (ephy_embed_event_get_event_type): - * embed/ephy-embed-event.h: - - Make more generic and allow to make distinction - between mouse and key events. - - * embed/ephy-embed-popup-bw.c: - * embed/ephy-embed-popup-bw.h: - - Remove, unused. - - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/mozilla-embed.cpp: - - Emit context signals only when necessary, - get rid of unused mouse_down signal. - - * embed/ephy-embed-popup-control.c: - (ephy_embed_popup_control_show_impl): - * embed/mozilla/EventContext.cpp: - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init), - (gnv_embed_dom_mouse_click_cb), (gnv_embed_context_menu_cb): - * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb), - (ephy_tab_context_menu_cb): - - Use new event api. - - ChangeLog | 37 +++++++ - data/ui/nautilus-epiphany-view.xml.in | 2 - - embed/Makefile.am | 2 - - embed/ephy-embed-event.c | 7 +- - embed/ephy-embed-event.h | 14 ++- - embed/ephy-embed-popup-bw.c | 198 ---------------------------------- - embed/ephy-embed-popup-bw.h | 58 ---------- - embed/ephy-embed-popup-control.c | 7 +- - embed/ephy-embed.c | 11 -- - embed/ephy-embed.h | 2 - - embed/mozilla/EventContext.cpp | 19 +++- - embed/mozilla/mozilla-embed.cpp | 67 +++++++----- - src/ephy-nautilus-view.c | 52 +++++---- - src/ephy-tab.c | 16 +-- - 14 files changed, 149 insertions(+), 343 deletions(-) - -commit d5b5f70b1cca8ea489ca5be9900d0b47275b5a23 -Author: Marco Pesenti Gritti -Date: Sun Jun 15 16:15:10 2003 +0000 - - Shift+F10 show context menus on the embed. (Less invasive way until - - 2003-06-15 Marco Pesenti Gritti - - * embed/ephy-embed-event.c: (ephy_embed_event_init): - * embed/ephy-embed-event.h: - * embed/ephy-embed-popup-bw.c: (popup_menu_at_coords), - (ephy_embed_popup_bw_show_impl): - * embed/ephy-embed.c: (ephy_embed_base_init): - * embed/ephy-embed.h: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-tab.c: (popup_menu_at_coords), - (ephy_tab_show_embed_popup), (ephy_tab_context_menu_cb), - (ephy_tab_init): - - Shift+F10 show context menus on the embed. - (Less invasive way until gtkmozembed has a context_menu - signal) - From galeon. - - ChangeLog | 20 +++++++++++ - embed/ephy-embed-event.c | 1 + - embed/ephy-embed-event.h | 1 + - embed/ephy-embed-popup-bw.c | 13 +++++++- - embed/ephy-embed.c | 11 +++++++ - embed/ephy-embed.h | 2 ++ - embed/mozilla/EventContext.cpp | 58 ++++++++++++++++++++++++++++++++ - embed/mozilla/EventContext.h | 1 + - embed/mozilla/mozilla-embed.cpp | 73 ++++++++++++++++++++++++++++++++++++++++- - src/ephy-tab.c | 30 +++++++++++++---- - 10 files changed, 202 insertions(+), 8 deletions(-) - -commit 41eafad36cb938d63f242ccd8dc2ad4988653614 -Author: Christian Persch -Date: Sun Jun 15 15:15:42 2003 +0000 - - Remove unneeded includes which mozilla cvs no longer provides. - - 2003-06-15 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: - - Remove unneeded includes which mozilla cvs no longer provides. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 4e80f98480981efd660bb3fda9bc01382574b669 -Author: Marco Pesenti Gritti -Date: Sun Jun 15 15:02:39 2003 +0000 - - Typo - - embed/mozilla/EventContext.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d9dbf128b234992f938c6800f31891800c68626c -Author: Marco Pesenti Gritti -Date: Sun Jun 15 15:00:42 2003 +0000 - - Use new INIT macros (from galeon). - - 2003-06-15 Marco Pesenti Gritti - - * configure.in: - - Use new INIT macros (from galeon). - - * embed/ephy-embed-event.c: (ephy_embed_event_get_coords): - * embed/ephy-embed-event.h: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/EventContext.h: - * embed/mozilla/mozilla-embed.cpp: - - mozilla api changes (from galeon). Untested. - - ChangeLog | 14 +++++ - configure.in | 23 ++++---- - embed/ephy-embed-event.c | 8 +-- - embed/ephy-embed-event.h | 4 +- - embed/mozilla/EventContext.cpp | 121 +++++++++++++++++----------------------- - embed/mozilla/EventContext.h | 7 ++- - embed/mozilla/mozilla-embed.cpp | 4 +- - 7 files changed, 90 insertions(+), 91 deletions(-) - -commit 3af933af0fb76029084541a4ecb0e85d9938e58e -Author: Christian Persch -Date: Sun Jun 15 14:10:04 2003 +0000 - - Removed it because it's unnecessary. - - 2003-06-15 Christian Persch - - * embed/mozilla/mozilla-embed-single: (control_encodings_list): - - Removed it because it's unnecessary. - - ChangeLog | 6 +++ - embed/mozilla/mozilla-embed-single.cpp | 91 ---------------------------------- - 2 files changed, 6 insertions(+), 91 deletions(-) - -commit 981d9babe49e2cbbcd6fb8a2fbf64da4ebc148e4 -Author: Marco Pesenti Gritti -Date: Sun Jun 15 13:37:17 2003 +0000 - - Suggest the address as title when web page has no title. - - 2003-06-15 Marco Pesenti Gritti - - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_set_title): - - Suggest the address as title when web page has no title. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-new-bookmark.c | 15 ++++++++++++++- - 2 files changed, 20 insertions(+), 1 deletion(-) - -commit f8cbf86bbc84292974146504dfa287b119c0ba8e -Author: Marco Pesenti Gritti -Date: Sun Jun 15 13:21:21 2003 +0000 - - *** empty log message *** - - embed/mozilla/FilePicker.cpp | 50 ++++--- - embed/mozilla/FilePicker.h | 3 +- - lib/egg/eggtreemodelfilter.c | 349 +++++++++++++++++-------------------------- - 3 files changed, 167 insertions(+), 235 deletions(-) - -commit edb7d2cc2c5c40ad9c8ecf167b760a7cf9ce4240 -Author: Vincent van Adrighem -Date: Sun Jun 15 13:21:13 2003 +0000 - - Dutch translation updated. - - 2003-06-15 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 963 ++++++++++++++++++++++++++--------------------------------- - 2 files changed, 429 insertions(+), 538 deletions(-) - -commit c563c28b882b24d4cb6218a48cfb0d797d5184ab -Author: Marco Pesenti Gritti -Date: Sun Jun 15 13:20:29 2003 +0000 - - Fix file picker warnings. - - 2003-06-15 Marco Pesenti Gritti - - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/FilePicker.h: - * lib/egg/eggtreemodelfilter.c: - (egg_tree_model_filter_fetch_child), - (egg_tree_model_filter_remove_node), - (egg_tree_model_filter_row_changed), - (egg_tree_model_filter_row_inserted), - (egg_tree_model_filter_row_deleted), - (egg_real_tree_model_filter_convert_child_path_to_path), - (egg_tree_model_filter_refilter_helper): - * src/window-commands.c: (window_cmd_file_open): - - Fix file picker warnings. - - 2 - - ChangeLog | 16 ++++++++++++++++ - src/window-commands.c | 29 ++++++++++++++--------------- - 2 files changed, 30 insertions(+), 15 deletions(-) - -commit 5a927d2793acbd7ca212812048e41891cda8a6e9 -Author: Christian Persch -Date: Sun Jun 15 12:01:53 2003 +0000 - - Convert dialog to metric units and default paper to A4. Fixes #112619 - - 2003-06-15 Christian Persch - - * embed/mozilla/MozillaPrivate.cpp: (MozillaCollatePrintSettings): - * embed/ephy-embed.h: - * embed/print-dialog.c: (print_dialog_init), (print_free_info), - (print_get_info): - * data/epiphany.schemas.in: - * data/glade/print.glade: - - Convert dialog to metric units and default paper to A4. Fixes #112619 - - ChangeLog | 11 +++++++++ - data/epiphany.schemas.in | 31 ++++++++++++------------ - data/glade/print.glade | 52 ++++++++++++++++++++-------------------- - embed/ephy-embed.h | 10 ++++---- - embed/mozilla/MozillaPrivate.cpp | 17 +++++-------- - embed/print-dialog.c | 15 ++++++++++-- - 6 files changed, 77 insertions(+), 59 deletions(-) - -commit fa31654eac12411d58ab603924953410c53e1426 -Author: Christian Persch -Date: Sun Jun 15 11:35:13 2003 +0000 - - Fix mem leaks. - - 2003-06-15 Christian Persch - - * src/session.c: (do_session_resume): - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download), - (ephy_favicon_cache_get): - - Fix mem leaks. - - ChangeLog | 8 ++++++++ - embed/ephy-favicon-cache.c | 13 +++++++------ - src/session.c | 3 ++- - 3 files changed, 17 insertions(+), 7 deletions(-) - -commit 70c9516fd0741ecd185196f33dcd9c7ad63d69fb -Author: Christian Persch -Date: Sun Jun 15 09:41:08 2003 +0000 - - ), (EventContext::SetStringProperty (const char*, const nsACString&)): - - 2003-06-15 Christian Persch - - * embed/mozilla/mozilla-embed-single: (control_encodings_list): - * embed/mozilla/EventContext.cpp: (EventContext::SetIntProperty), - (EventContext::SetStringProperty (const char*, const char*)), - (EventContext::SetStringProperty (const char*, const nsACString&)): - - Fix mem leaks. - - ChangeLog | 9 +++++++++ - embed/mozilla/EventContext.cpp | 6 +++--- - embed/mozilla/mozilla-embed-single.cpp | 3 +++ - 3 files changed, 15 insertions(+), 3 deletions(-) - -commit 94a825c3865eacb771b64dd93ea7b0dff3c9db49 -Author: Christian Persch -Date: Sun Jun 15 09:35:48 2003 +0000 - - Make prev/next navigation capability an object property, and sync on embed - - 2003-06-15 Christian Persch - - * embed/find-dialog.h: - * embed/find-dialog.c: (set_navigation_flags), - (ephy_find_dialog_get_property), (find_dialog_class_init), - (sync_embed), (find_get_info), (impl_show), (find_dialog_finalize), - (find_dialog_go_next), (find_dialog_go_prev), (find_entry_changed_cb), - (find_check_toggled_cb), (find_dialog_get_navigation_flags): - - Make prev/next navigation capability an object property, and sync - on embed changes. - - * embed/find-dialog.c: (find_dialog_new_with_parent): - * embed/ephy-embed-dialog.c: (ephy_embed_dialog_class_init), - (ephy_embed_dialog_new), (ephy_embed_dialog_new_with_parent), - (ephy_embed_dialog_set_embed): - * embed/print-dialog.c: (print_dialog_new), - (print_dialog_new_with_parent): - - s/EphyEmbed/embed/ for the object property name. - - * src/ephy-window.h: - * src/ephy-window.c: (sync_find_dialog), (update_find_control), - (ephy_window_switch_page_cb), (find_dialog_search_cb), - (ephy_window_get_find_dialog): - * src/window-commands.c: (window_cmd_edit_find_next), - (window_cmd_edit_find_prev): - - Sync on the find dialog on nav capability and embed changes instead of - explicit updating. - - ChangeLog | 31 ++++++++ - embed/ephy-embed-dialog.c | 11 +-- - embed/find-dialog.c | 195 ++++++++++++++++++++++++++-------------------- - embed/find-dialog.h | 27 ++++--- - embed/print-dialog.c | 4 +- - src/ephy-window.c | 79 ++++++++----------- - src/ephy-window.h | 1 - - src/window-commands.c | 4 - - 8 files changed, 199 insertions(+), 153 deletions(-) - -commit 53471bc2f89c2844c7bb81b41575ee253c1f6516 -Author: Christian Persch -Date: Sun Jun 15 09:12:25 2003 +0000 - - Rewritten, fixing mem leaks. - - 2003-06-15 Christian Persch - - * src/window-commands.c: (window_cmd_tabs_next), - (window_cmd_tabs_previous): - - Rewritten, fixing mem leaks. - - ChangeLog | 7 +++++++ - src/window-commands.c | 38 ++++++++++++++++---------------------- - 2 files changed, 23 insertions(+), 22 deletions(-) - -commit 47945195e7761d3bea395205b397cce2934c5f93 -Author: Christian Neumair -Date: Sat Jun 14 19:20:13 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 628 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 318 insertions(+), 314 deletions(-) - -commit b010b6e667b9ff6049cdebcdd337d4e365b87474 -Author: Miloslav Trmac -Date: Sat Jun 14 18:11:37 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 1498 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 771 insertions(+), 731 deletions(-) - -commit 9db42f6c20a456f5c910fe419cf23901deb98df3 -Author: Christian Persch -Date: Sat Jun 14 11:15:37 2003 +0000 - - Use g_list_prepend instead of g_list_append, and fix mem leaks along the - - 2003-06-14 Christian Persch - - * src/ephy-topic-action.c: (build_bookmarks_menu), - (build_topics_menu): - * src/language-dialog.c: (language_editor_remove_button_clicked_cb): - * src/pdm-dialog.c: (pdm_dialog_remove_button_clicked_cb): - * embed/downloader-view.c: (download_dialog_abort_cb): - - Use g_list_prepend instead of g_list_append, and fix mem leaks - along the way. - - ChangeLog | 11 +++++++++++ - embed/downloader-view.c | 19 +++++++++---------- - src/bookmarks/ephy-topic-action.c | 8 ++++---- - src/language-editor.c | 19 +++++++++---------- - src/pdm-dialog.c | 20 +++++++++----------- - 5 files changed, 42 insertions(+), 35 deletions(-) - -commit a01ebeee69c4781df8b34f2928843417f58d2a15 -Author: Marco Pesenti Gritti -Date: Sat Jun 14 11:05:23 2003 +0000 - - Respect the bookmarks bar visibility user choice also for popups. - - 2003-06-14 Marco Pesenti Gritti - - * embed/ephy-embed-types.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-window.c: (translate_default_chrome), - (ephy_window_set_chrome): - - Respect the bookmarks bar visibility user choice also - for popups. - - ChangeLog | 10 ++++++++++ - embed/ephy-embed-types.h | 19 ++++++++++--------- - embed/mozilla/mozilla-embed.cpp | 2 +- - src/ephy-window.c | 10 ++++++++-- - 4 files changed, 29 insertions(+), 12 deletions(-) - -commit 2ccb8c916575d21e2862cc38f98f92ef0f1d7b27 -Author: Christian Persch -Date: Fri Jun 13 23:17:39 2003 +0000 - - Fix previous change to actually work on anything else than en locales. - - 2003-06-14 Christian Persch - - * src/prefs-dialog.c: (create_fonts_language_menu): - - Fix previous change to actually work on anything else than en locales. - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 9 +++++++-- - 2 files changed, 13 insertions(+), 2 deletions(-) - -commit f7f4b30f8e6d8f2a74114d3b8689ea921e0e4a86 -Author: Christian Persch -Date: Fri Jun 13 23:13:57 2003 +0000 - - Make visibility a tab GObject property. - - 2003-06-14 Christian Persch - - * src/ephy-tab.c: (ephy_tab_get_property), (ephy_tab_set_property), - (ephy_tab_class_init), (ephy_tab_get_visibility), - (ephy_tab_visibility_cb): - - Make visibility a tab GObject property. - - * src/ephy-window.h: - * src/ephy-window.c: (sync_tab_visibility), (update_window_visibility), - (tab_added_cb), (tab_removed_cb): - - Sync on tab visibility changes. - - ChangeLog | 14 +++++++++++ - src/ephy-tab.c | 20 +++++++++++---- - src/ephy-window.c | 73 ++++++++++++++++++++++++++++++------------------------- - src/ephy-window.h | 1 - - 4 files changed, 69 insertions(+), 39 deletions(-) - -commit ba1b334527bccd32be59964d3f18d6883f4bee39 -Author: Christian Persch -Date: Fri Jun 13 22:39:15 2003 +0000 - - Persist the selected language for the fonts preferences, and make the - - 2003-06-14 Christian Persch - - * data/epiphany.schemas.in: - * src/prefs-dialog.c: (create_fonts_language_menu): - - Persist the selected language for the fonts preferences, and make - the default translatable. - - ChangeLog | 8 ++++++++ - data/epiphany.schemas.in | 18 ++++++++++++++++++ - src/prefs-dialog.c | 20 +++++++++++++++----- - 3 files changed, 41 insertions(+), 5 deletions(-) - -commit 14b719a06d565edd38e3a94ffda615150be841af -Author: Christian Persch -Date: Fri Jun 13 21:26:10 2003 +0000 - - Fix yet another mem leak. - - 2003-06-13 Christian Persch - - * src/ephy_window.c: (update_window_visibility): - - Fix yet another mem leak. - - ChangeLog | 6 +++--- - src/ephy-window.c | 11 ++++++++--- - 2 files changed, 11 insertions(+), 6 deletions(-) - -commit b0a5fd30502853b0498c55538e400c01287f4137 -Author: Marco Pesenti Gritti -Date: Fri Jun 13 19:30:13 2003 +0000 - - Typo - - 2003-06-13 Marco Pesenti Gritti - - * embed/ephy-embed-prefs.h: - - Typo - - ChangeLog | 6 ++++++ - embed/ephy-embed-prefs.h | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4e4136a14c342e8aaa0d55a86d9aa83c5f4e70e6 -Author: Christian Persch -Date: Fri Jun 13 18:36:01 2003 +0000 - - Persist the language selected for the fonts preferences. Make the - - 2003-06-13 Christian Persch - - * src/prefs-dialog.c: (create_language_menu): - - Persist the language selected for the fonts preferences. - Make the initialiser of the languages menu safe for NULL list - from eel_gconf_get_string_list. - - ChangeLog | 8 ++++++++ - src/prefs-dialog.c | 25 ++++++++++++++----------- - 2 files changed, 22 insertions(+), 11 deletions(-) - -commit 486d194d5a04616abb66e7eac63b63231c013447 -Author: Christian Persch -Date: Fri Jun 13 18:15:17 2003 +0000 - - Handle NULL return from eel_gconf_get_string. Oh, and fix yet another mem - - 2003-06-13 Christian Persch - - * lib/ephy-dialog.c: (get_index), (set_optionmenu_from_config), - (set_radiobuttongroup_from_config): - - Handle NULL return from eel_gconf_get_string. - Oh, and fix yet another mem leak. - - ChangeLog | 8 ++++++++ - lib/ephy-dialog.c | 53 ++++++++++++++++++++++++++--------------------------- - 2 files changed, 34 insertions(+), 27 deletions(-) - -commit 63c30bbc992945dcae374ef87716234fa53cd184 -Author: Marco Pesenti Gritti -Date: Fri Jun 13 18:05:27 2003 +0000 - - Do not use libxml to parse mozilla bookmarks. Use the galeon parser - - 2003-06-13 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-import.c: - (gul_general_read_line_from_file), (gul_string_ascii_strcasestr), - (ns_get_bookmark_item), (ns_parse_bookmark_item), - (ephy_bookmarks_import_mozilla): - - Do not use libxml to parse mozilla bookmarks. - Use the galeon parser instead, ugly but works. - - ChangeLog | 10 ++ - src/bookmarks/ephy-bookmarks-import.c | 270 ++++++++++++++++++++++++++++------ - 2 files changed, 231 insertions(+), 49 deletions(-) - -commit ab152b500ba9248f625db68601dc293bfd1fa3cb -Author: Piers Cornwell -Date: Fri Jun 13 17:32:30 2003 +0000 - - Lower the increments for the cache size spin button and further accesskey - - 2003-06-13 Piers Cornwell - - * data/glade/prefs-dialog.glade: - - Lower the increments for the cache size spin button and - further accesskey fixing. - - ChangeLog | 7 +++++++ - data/glade/prefs-dialog.glade | 6 +++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit bdd17f8ee9771a8d2db7df47690a041e690cea16 -Author: Christian Persch -Date: Fri Jun 13 17:31:11 2003 +0000 - - Fix statusbar message and tab label. - - 2003-06-13 Christian Persch - - * src/ephy-tab.c: (ephy_tab_init), (ephy_tab_net_state_cb): - - Fix statusbar message and tab label. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 11 +++++++++-- - 2 files changed, 15 insertions(+), 2 deletions(-) - -commit 25861b6a2a1234cc0acc1c10d8f2019912efd97c -Author: Pablo Gonzalo del Campo -Date: Fri Jun 13 16:04:23 2003 +0000 - - Updated Spanish translation by Francisco Javier F. Serrador - - 2003-06-13 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier F. Serrador . - - po/ChangeLog | 5 + - po/es.po | 950 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 490 insertions(+), 465 deletions(-) - -commit 4d5828e4dd67f6601a2aac9adeed802434bf363f -Author: Christian Persch -Date: Fri Jun 13 13:14:16 2003 +0000 - - Fix typo. - - 2003-06-13 Christian Persch - - * data/epiphany.schemas.in: - - Fix typo. - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit b47075448a59c1419cc21ac8104a58d549962ce6 -Author: Marco Pesenti Gritti -Date: Fri Jun 13 12:46:09 2003 +0000 - - Add support for string enums. - - 2003-06-13 Marco Pesenti Gritti - - * lib/ephy-dialog.c: (set_config_from_editable), - (set_config_from_optionmenu), (set_config_from_radiobuttongroup), - (set_config_from_spin_button), (set_config_from_togglebutton), - (set_config_from_color), (set_editable_from_config), - (set_optionmenu_from_config), (set_radiobuttongroup_from_config), - (set_spin_button_from_config), (set_togglebutton_from_config), - (set_color_from_config), (prefs_togglebutton_clicked_cb), - (prefs_radiobutton_clicked_cb), (prefs_spinbutton_timeout_cb), - (prefs_color_changed_cb), (prefs_entry_changed_cb), - (prefs_optionmenu_selected_cb), (ephy_dialog_init), (load_props), - (save_props), (free_props), (ephy_dialog_finalize), - (ephy_dialog_add_enum), (init_props), (impl_construct), - (impl_show): - - Add support for string enums. - - * lib/ephy-dialog.h: - * lib/ephy-prefs.h: - * src/prefs-dialog.c: (prefs_dialog_init): - * data/epiphany.schemas.in: - * embed/downloader-view.c: - * embed/ephy-embed-prefs.h: - * embed/find-dialog.c: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/print-dialog.c: - * lib/Makefile.am: - - Cleanup gconf prefs. This breaks compatibility - but better now that later. - - ChangeLog | 33 +++ - data/epiphany.schemas.in | 198 +++++++--------- - embed/downloader-view.c | 2 + - embed/ephy-embed-prefs.h | 35 ++- - embed/find-dialog.c | 6 +- - embed/mozilla/mozilla-embed-single.cpp | 37 +++ - embed/mozilla/mozilla-notifiers.cpp | 189 +++++++--------- - embed/print-dialog.c | 31 ++- - lib/Makefile.am | 2 - - lib/ephy-dialog.c | 403 ++++++++++++++++++++++++++++----- - lib/ephy-dialog.h | 9 +- - lib/ephy-prefs-utils.c | 285 ----------------------- - lib/ephy-prefs-utils.h | 61 ----- - lib/ephy-prefs.h | 21 +- - src/prefs-dialog.c | 28 +++ - 15 files changed, 661 insertions(+), 679 deletions(-) - -commit 52c6654061e8bd5c8607defd279fa77dfb3dfb87 -Author: Christian Persch -Date: Fri Jun 13 10:03:59 2003 +0000 - - The Friday the 13th Mega Patch. Beware! - - 2003-06-13 Christian Persch - - The Friday the 13th Mega Patch. Beware! - - * src/ephy-notebook.h: - * src/ephy-notebook.c: (ephy_notebook_class_init), - (ephy_notebook_move_page), (drag_stop), (ephy_notebook_init), - (ephy_notebook_set_page_status), (sync_load_status), - (ephy_notebook_set_page_icon), (sync_icon), - (ephy_notebook_set_page_title), (sync_label), (build_tab_label), - (update_tabs_visibility), (ephy_notebook_insert_page), - (ephy_notebook_remove_page): - - Reworked notebook signals. Now we have tab_added, tab_removed, - tab_detached and tabs_reordered; emit them at appropriate times. - Don't offer the ephy_notebook_set_x functions anymore; instead we - sync on the tab's gobject properties. - - * src/ephy-tab.h: - * src/ephy-tab.c: (ephy_tab_update_color), (ephy_tab_set_property), - (ephy_tab_get_property), (ephy_tab_set_load_status), - (ephy_tab_set_link_message), (ephy_tab_set_is_active), - (ephy_tab_get_is_active), (ephy_tab_set_favicon), - (ephy_tab_icon_cache_changed_cb), (ephy_tab_set_icon_address), - (ephy_tab_link_message_cb), (ephy_tab_address_cb), - (ephy_tab_zoom_changed_cb), (ensure_address), (ephy_tab_net_state_cb), - (ephy_tab_security_change_cb), (ephy_tab_init), - (ephy_tab_set_load_percent), (ephy_tab_update_navigation_flags), - (ephy_tab_get_navigation_flags), (ephy_tab_get_status_message), - (ephy_tab_set_title): - - Removed the is_active flag. Made load-status property boolean (true - means loading), removing the TAB_LOAD_NONE/TAB_LOAD_COMPLETED - distinction. Add navigation flags object property. Remove all calls to - ephy_window_update_x, instead let the window sync on object properties. - Fix statusbar message bug. - - * src/ephy-tabs-menu.c: (tab_set_action_accelerator): - - Fix accelerator for tabs with position > 10. - - * src/ephy-window.h: - * src/ephy-window.c: (ephy_window_destroy_cb), (setup_window), - (sync_tab_address), (sync_tab_icon), (sync_tab_load_progress), - (sync_tab_load_status), (sync_tab_message), (sync_tab_navigation), - (sync_tab_security), (sync_tab_stop), (sync_tab_title), - (sync_tab_zoom), (ephy_window_set_active_tab), (update_tabs_menu), - (tab_added_cb), (tab_removed_cb), (tab_detached_cb), - (tabs_reordered_cb), (setup_notebook), (ephy_window_init), - (ephy_window_add_tab), (real_get_active_tab), (ephy_window_remove_tab), - (update_status_message), (update_progress), (update_security), - (update_nav_control), (update_zoom_control), (update_title_control), - (update_location_control), (update_favicon_control), - (update_spinner_control), (ephy_window_update_control), - (ephy_window_get_active_tab), (ephy_window_get_active_embed), - (ephy_window_notebook_switch_page_cb), (ephy_window_tab_detached_cb): - - Sync on the active tab's object properties, and sync on the load - status of all tabs for the spinner. - - * src/toolbar.c: (toolbar_update_navigation_actions): - - Correct inverted logic. - - ChangeLog | 64 ++++ - src/ephy-nautilus-view.c | 4 +- - src/ephy-notebook.c | 314 +++++++++--------- - src/ephy-notebook.h | 30 +- - src/ephy-tab.c | 341 ++++++++------------ - src/ephy-tab.h | 18 +- - src/ephy-tabs-menu.c | 4 + - src/ephy-window.c | 821 +++++++++++++++++++++++++++-------------------- - src/ephy-window.h | 12 - - src/toolbar.c | 6 +- - 10 files changed, 850 insertions(+), 764 deletions(-) - -commit 6dfe3603d1a9875293870c0a4cf96fc760ef198f -Author: Christian Neumair -Date: Fri Jun 13 09:39:35 2003 +0000 - - embed/mozilla/ExternalProtocolService.cpp, embed/mozilla/FilePicker.cpp, - - 2003-06-13 Christian Neumair - - * embed/mozilla/ExternalProtocolService.cpp, - * embed/mozilla/FilePicker.cpp, - * lib/ephy-langs.c: - - Include config.h to enable i18n. - - embed/mozilla/ExternalProtocolService.cpp | 4 ++++ - embed/mozilla/FilePicker.cpp | 4 ++++ - lib/ephy-langs.c | 6 +++++- - 3 files changed, 13 insertions(+), 1 deletion(-) - -commit 237c938fd9b0cbbe33c019e8791771a99e7a6d29 -Author: Marco Pesenti Gritti -Date: Thu Jun 12 22:30:03 2003 +0000 - - Dont try to use class members after the class has been deleted. - - 2003-06-13 Marco Pesenti Gritti - - * embed/mozilla/ProgressListener.cpp: - - Dont try to use class members after the class - has been deleted. - - * embed/mozilla/mozilla-embed-persist.cpp: - - Fix use of uninitialized var. - - ChangeLog | 11 +++++++++++ - embed/mozilla/ProgressListener.cpp | 4 +++- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - 3 files changed, 15 insertions(+), 2 deletions(-) - -commit c86e7ace9cc6a3a701fc19c5183c5c6256694abf -Author: Marco Pesenti Gritti -Date: Thu Jun 12 19:02:50 2003 +0000 - - Do not use c++ new to allocate priv struct of the object - - 2003-06-12 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed.cpp: - - Do not use c++ new to allocate priv struct of the object - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit a11a0f4c48ebdcde5df388237d02d9154d6d82d2 -Author: Marco Pesenti Gritti -Date: Thu Jun 12 18:15:14 2003 +0000 - - s/scheme/host for the smartbookmarks - - 2003-06-12 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: (activate_cb): - - s/scheme/host for the smartbookmarks - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmark-action.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit ef8562bb3eef845145818dbaf726dfb2d0d394b7 -Author: Xan Lopez -Date: Thu Jun 12 18:00:23 2003 +0000 - - Do not persist node selection in BME between sessions. - - - Do not persist node selection in BME between sessions. - - ChangeLog | 11 ++++++++++- - data/epiphany.schemas.in | 9 --------- - lib/ephy-prefs.h | 1 - - src/bookmarks/ephy-bookmarks-editor.c | 32 +------------------------------- - 4 files changed, 11 insertions(+), 42 deletions(-) - -commit 53d825c05b5eafa38c10a5a9b1b9e58f1bc1051d -Author: Christian Persch -Date: Thu Jun 12 17:43:58 2003 +0000 - - Sigh. Fix some more mem leaks. - - 2003-06-12 Christian Persch - - * embed/ephy-embed-popup.c: (embed_popup_open_frame_cmd): - * embed/ephy-embed-utils.c: (ephy_embed_utils_save): - * embed/mozilla/mozilla-embed.cpp: (impl_go_up): - * src/ephy-nautilus-view.c: (gnv_popup_cmd_frame_in_new_window): - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/popup-commands.c: (popup_cmd_open_frame): - - Sigh. Fix some more mem leaks. - - ChangeLog | 11 +++++++++++ - embed/ephy-embed-popup.c | 2 ++ - embed/ephy-embed-utils.c | 1 + - embed/mozilla/mozilla-embed.cpp | 7 ++++--- - src/ephy-nautilus-view.c | 1 + - src/ephy-shell.c | 1 + - src/popup-commands.c | 2 ++ - 7 files changed, 22 insertions(+), 3 deletions(-) - -commit e7b6bad87295b8a0849d18eae16038d4964a6f85 -Author: Christian Neumair -Date: Thu Jun 12 12:42:17 2003 +0000 - - HIGified Import Bookmarks dialog. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 2c66bb70357257127d5fb964ed6411ca87724aec -Author: Marco Pesenti Gritti -Date: Thu Jun 12 08:58:07 2003 +0000 - - Better description. Bug #113287 - - 2003-06-12 Marco Pesenti Gritti - - * data/glade/prefs-dialog.glade: - - Better description. Bug #113287 - - ChangeLog | 6 ++++++ - data/glade/prefs-dialog.glade | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 90eb335f874d32aff6e230d08a6eede1411396f4 -Author: Marco Pesenti Gritti -Date: Thu Jun 12 08:43:02 2003 +0000 - - Update. - - 2003-06-12 Marco Pesenti Gritti - - * lib/egg/eggtreemodelfilter.c: - - Update. - - * src/ephy-window.c: (ephy_window_selection_received_cb), - (menu_activate_cb): - - Do not set clipboard items sensitivity, because there is - not a good way to do it atm. - Open url on middle click (on the page) in the same - tab. - - ChangeLog | 14 ++ - lib/egg/eggtreemodelfilter.c | 349 ++++++++++++++++++++++++++----------------- - src/ephy-window.c | 18 +-- - 3 files changed, 232 insertions(+), 149 deletions(-) - -commit 2adc5f349326386155e7edb506a9014a509ee035 -Author: Xan Lopez -Date: Wed Jun 11 23:54:40 2003 +0000 - - Fix compilation. - - - Fix compilation. - - ChangeLog | 8 +++++++- - src/bookmarks/ephy-bookmarks-menu.c | 1 + - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 5c496db6c7ccd1c451cb49b4529724630a64895f -Author: Christian Persch -Date: Wed Jun 11 23:14:38 2003 +0000 - - Use functions instead of declaring static vars in .h file, (hopefully) - - 2003-06-12 Christian Persch - - * lib/ephy-langs.h: - * lib/ephy-langs.c: (ephy_langs_get_n_font_languages), - (ephy_langs_get_font_languages): - - Use functions instead of declaring static vars in .h file, - (hopefully) fixing # 114906 . - - ChangeLog | 9 +++++++++ - embed/mozilla/mozilla-notifiers.cpp | 4 ++++ - lib/ephy-langs.c | 36 ++++++++++++++++++++++++++++++++++-- - lib/ephy-langs.h | 24 ++++-------------------- - po/POTFILES.in | 2 +- - src/prefs-dialog.c | 5 +++++ - 6 files changed, 57 insertions(+), 23 deletions(-) - -commit d25a4baf3c20a184803537334e656a5c4538211f -Author: Xan Lopez -Date: Wed Jun 11 22:46:35 2003 +0000 - - Fix warning. - - - Fix warning. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-node-view.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit f59dbefb87ef01a428d3d950b9508ef9af4e624c -Author: Xan Lopez -Date: Wed Jun 11 22:15:02 2003 +0000 - - Use gtk_tree_selection_select_iter to make selection, fixes #114965. - - - Use gtk_tree_selection_select_iter to make selection, fixes #114965. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-node-view.c | 6 +----- - 2 files changed, 7 insertions(+), 5 deletions(-) - -commit 45aa254e9c7d745fe0d8aaa1627fced919b0bbdc -Author: Christian Persch -Date: Wed Jun 11 22:06:26 2003 +0000 - - Moved bookmark tool item creation to a dedicated tool item. That way we - - 2003-06-11 Christian Persch - - * src/bookmarks/ephy-bookmark-toolitem.h: - * src/bookmarks/ephy-bookmark-toolitem.c: - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (create_menu_item), (ephy_bookmark_action_class_init): - - Moved bookmark tool item creation to a dedicated tool item. That way we - can provide toolbar overflow menu items. - - ChangeLog | 10 +++ - src/bookmarks/Makefile.am | 2 + - src/bookmarks/ephy-bookmark-action.c | 58 ++------------ - src/bookmarks/ephy-bookmark-toolitem.c | 140 +++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmark-toolitem.h | 57 ++++++++++++++ - 5 files changed, 214 insertions(+), 53 deletions(-) - -commit 0daded02b044566c4b9f8495c762508cbce39a0b -Author: Xan Lopez -Date: Wed Jun 11 21:33:57 2003 +0000 - - Remove unused gtk_tree_view_get_selection. - - - Remove unused gtk_tree_view_get_selection. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-node-view.c | 4 ---- - 2 files changed, 6 insertions(+), 4 deletions(-) - -commit 60cf06243c2ce05df0f31a0c9a08cfb118535ee4 -Author: Kwok-Koon Cheung -Date: Wed Jun 11 04:16:53 2003 +0000 - - Updated traditional Chinese translation. - - * zh_TW.po: Updated traditional Chinese translation. - - po/ChangeLog | 4 + - po/zh_TW.po | 1693 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 883 insertions(+), 814 deletions(-) - -commit d91af4a193325012e309d74179971aa5ce535f9b -Author: David Bordoley -Date: Wed Jun 11 02:13:21 2003 +0000 - - Remove data/starthere/Makefile from AC_OUTPUT. - - 2003-06-10 David Bordoley - - * configure.in: - - Remove data/starthere/Makefile from AC_OUTPUT. - - ChangeLog | 6 ++++++ - configure.in | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 4efe0a12e4577e16cb80dc5f59a2c551fd22245c -Author: Christian Rose -Date: Tue Jun 10 23:53:45 2003 +0000 - - Updated Swedish translation. - - 2003-06-11 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 421 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 211 insertions(+), 214 deletions(-) - -commit 73ae39307e5d8b732c81fc4353cbd3d827973faa -Author: Marco Pesenti Gritti -Date: Tue Jun 10 19:44:44 2003 +0000 - - Dont try to update menus of dead windows ;) - - 2003-06-10 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-menu.c: (ephy_bookmarks_menu_init), - (ephy_bookmarks_menu_finalize): - - Dont try to update menus of dead windows ;) - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-menu.c | 11 ++++++++--- - 2 files changed, 15 insertions(+), 3 deletions(-) - -commit c6214a25b44f09d1a33c0554dfb3a555c555b70f -Author: Marco Pesenti Gritti -Date: Tue Jun 10 19:16:31 2003 +0000 - - Small cleanups. Dont crash when adding a bookmark without topics. - - 2003-06-10 Marco Pesenti Gritti - - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_apply), (topic_clicked), (topic_key_pressed), - (ephy_topics_build_ui), (ephy_topics_selector_new): - - Small cleanups. Dont crash when adding a bookmark without topics. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-topics-selector.c | 32 ++++++++++++++++++-------------- - 2 files changed, 26 insertions(+), 14 deletions(-) - -commit a2a5043584b00f1ee879c41162ec76060df74bc0 -Author: Marco Pesenti Gritti -Date: Tue Jun 10 19:05:29 2003 +0000 - - Dont set sort function on idle. The sort is visible and we can crash if - - 2003-06-10 Marco Pesenti Gritti - - * src/bookmarks/ephy-topics-selector.c: (ephy_topics_build_ui): - - Dont set sort function on idle. The sort is visible and we can - crash if the dialog is closed very fast. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-topics-selector.c | 13 +++---------- - 2 files changed, 10 insertions(+), 10 deletions(-) - -commit 94abb0c23b768030c5f3c4e69a884d66d86a2665 -Author: Marco Pesenti Gritti -Date: Tue Jun 10 13:38:56 2003 +0000 - - Update - - 2003-06-10 Marco Pesenti Gritti - - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolbutton.c: - - Update - - ChangeLog | 7 +++++++ - lib/egg/eggtoolbar.c | 56 ++++++++++++++++++++++++++++++++++--------------- - lib/egg/eggtoolbutton.c | 20 +++++++++--------- - 3 files changed, 56 insertions(+), 27 deletions(-) - -commit d6e5066235fa4127797b066c77af130ad229c671 -Author: Christian Persch -Date: Tue Jun 10 13:22:28 2003 +0000 - - Fix mistake from previous checkin; strcmp cannot take NULL. - - 2003-06-10 Christian Persch - - * src/ephy-tab.c: (ephy_tab_icon_cache_changed_cb): - - Fix mistake from previous checkin; strcmp cannot take NULL. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit bc2beacdfff2adfc2c8ec02ddb868cd02b55963d -Author: Marco Pesenti Gritti -Date: Tue Jun 10 13:16:30 2003 +0000 - - Clear the location on NULL - - 2003-06-10 Marco Pesenti Gritti - - * src/toolbar.c: (toolbar_set_location): - - Clear the location on NULL - - ChangeLog | 6 ++++++ - src/toolbar.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 82bedf4e3216726b504d5ff68134f72f54b2dc41 -Author: Christian Persch -Date: Mon Jun 9 22:34:25 2003 +0000 - - Do not emit the TABS_CHANGED signal; the tab's egg action will itself take - - 2003-06-09 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_set_page_title): - - Do not emit the TABS_CHANGED signal; the tab's egg action will itself - take care of updating the menu entry. - - * src/ephy-tab.h: - * src/eph-tab.c: (ephy_tab_set_property), (ephy_tab_get_property) - (ephy_tab_class_init): - - Object properties for tab address, icon-address, load-progress, - load-status, message, security, title, window and zoom. - - * src/ephy-tab.c: (ephy_tab_action_activate_cb), (ephy_tab_get_action), - (ephy_tab_init): - - Augment the tab by an egg action for use in the tabs menu. - - * src/ephy-tab.c: (ephy_tab_set_load_status), - (ephy_tab_set_link_message), (ephy_tab_set_favicon), - (ephy_tab_icon_cache_changed_cb), (ephy_tab_set_icon_address), - (ephy_get_icon_address), (ephy_tab_favicon_cb), (ephy_tab_address_cb), - (ephy_tab_title_cb), (build_net_state_message), (ensure_address), - (ephy_tab_net_state_cb), (ephy_tab_security_change_cb), - (ephy_tab_set_load_percent), (ephy_tab_get_load_percent), - (ephy_tab_get_status_message), (ephy_tab_set_title), - (ephy_tab_set_location), (ephy_tab_set_security_level), - (ephy_tab_get_security_level), (ephy_tab_set_zoom), - (ephy_tab_get_zoom): - - Getters/setters for the tab's object properties. Use the setters in the - callbacks instead of setting the values directly. - - * src/ephy-tabs-menu.c: (ephy_tabs_menu_set_action_accelerator), - (ephy_tabs_menu_update): - - Use the tab's egg action directly instead of dummy egg actions. - This makes updating the tab titles in the tabs menu work - automagically. - - ChangeLog | 41 +++ - src/ephy-notebook.c | 2 - - src/ephy-shell.c | 1 - - src/ephy-tab.c | 702 ++++++++++++++++++++++++++++++++++---------------- - src/ephy-tab.h | 62 +++-- - src/ephy-tabs-menu.c | 249 ++++++++---------- - src/ephy-tabs-menu.h | 2 +- - src/ephy-window.c | 2 +- - src/toolbar.c | 2 +- - src/window-commands.c | 2 +- - 10 files changed, 666 insertions(+), 399 deletions(-) - -commit 19a2fcd839628fe12d783a0afd97be8e51cf99a4 -Author: Christian Neumair -Date: Mon Jun 9 21:46:27 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/POTFILES.in | 3 - - po/de.po | 473 ++++++++++++++++++++------------------------------------- - 3 files changed, 169 insertions(+), 311 deletions(-) - -commit 9b198e8afd1177a36db561538bbd7706465b40f6 -Author: Vincent van Adrighem -Date: Mon Jun 9 18:36:54 2003 +0000 - - Dutch translation updated. - - 2003-06-09 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 1443 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 752 insertions(+), 695 deletions(-) - -commit f48bb5d3da72e4e65bd3fae4ecb80f8f90bf0df2 -Author: Xan Lopez -Date: Mon Jun 9 17:02:04 2003 +0000 - - Minor cleanups. - - - Minor cleanups. - - ChangeLog | 9 +++++++++ - src/window-commands.c | 24 ++++++++++++++---------- - 2 files changed, 23 insertions(+), 10 deletions(-) - -commit 5109e760b1c90a225baaeb4d3ed2076913c36710 -Author: Pablo Gonzalo del Campo -Date: Mon Jun 9 15:44:54 2003 +0000 - - Updated Spanish translation from Francisco Javier Fernandez - - 2003-06-09 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation from - Francisco Javier Fernandez . - - po/ChangeLog | 5 + - po/es.po | 1253 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 671 insertions(+), 587 deletions(-) - -commit bd01d60a9404d63f2437ee868036187762b1983f -Author: Jeremy Katz -Date: Mon Jun 9 13:06:19 2003 +0000 - - Use va_copy for the valist instead of directly accessing it. va_list is - - 2003-06-09 Jeremy Katz - - * lib/ephy-node.c (callback): Use va_copy for the valist instead of - directly accessing it. va_list is implemented as an array on some - platforms (eg, AMD64). - - ChangeLog | 6 ++++++ - lib/ephy-node.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit a12c0af2690628f079a16dd86e3e234a0fdcfb29 -Author: Jeremy Katz -Date: Mon Jun 9 12:10:57 2003 +0000 - - Update prototype. - - 2003-06-08 Jeremy Katz - - * lib/egg/egg-menu-merge.h (egg_menu_merge_add_ui_from_string): - Update prototype. - - * lib/egg/egg-menu-merge.c (egg_menu_merge_add_ui_from_file): - size_t fixes for 64 bit platforms. - (egg_menu_merge_add_ui_from_string): Use size_t appropriately. - - ChangeLog | 9 +++++++++ - lib/egg/egg-menu-merge.c | 4 ++-- - lib/egg/egg-menu-merge.h | 2 +- - 3 files changed, 12 insertions(+), 3 deletions(-) - -commit 33c5910a3d9312ddb30de41eeda7d96d3b98a6c7 -Author: Marco Pesenti Gritti -Date: Mon Jun 9 11:54:18 2003 +0000 - - remove unused stuff - - data/Makefile.am | 2 +- - data/starthere/.cvsignore | 4 - - data/starthere/Makefile.am | 14 - - data/starthere/index.xml.in | 31 --- - data/starthere/section.xsl | 113 -------- - data/starthere/smartbookmarks.xml.in | 31 --- - embed/mozilla/StartHereProtocolHandler.cpp | 187 ------------- - embed/mozilla/StartHereProtocolHandler.h | 49 ---- - lib/ephy-start-here.c | 413 ----------------------------- - lib/ephy-start-here.h | 61 ----- - 10 files changed, 1 insertion(+), 904 deletions(-) - -commit 50bb5af3f6a571e8e341d26cdd5b7a1b2178d8dd -Author: Marco Pesenti Gritti -Date: Mon Jun 9 11:49:43 2003 +0000 - - Get rid of starthere: and default to google, as discussed with Seth. Add a - - 2003-06-09 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * embed/ephy-embed-shell.c: (ephy_embed_shell_class_init): - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * lib/Makefile.am: - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (ephy_bookmark_action_sync_smart_url), (entry_activated_cb), - (activate_cb), (connect_proxy), - (ephy_bookmark_action_set_property), - (ephy_bookmark_action_finalize), (ephy_bookmark_action_class_init), - (sync_bookmark_properties), (ephy_bookmark_action_init): - * src/bookmarks/ephy-bookmark-properties.c: - (location_entry_changed_cb): - * src/bookmarks/ephy-bookmarks-editor.c: (show_properties_dialog), - (add_bookmarks_source_menu), (import_dialog_response_cb), - (cmd_bookmarks_import): - * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import), - (mozilla_parse_bookmarks), (xbel_parse_folder), - (xbel_parse_bookmarks), (ephy_bookmarks_import_xbel): - * src/bookmarks/ephy-bookmarks-import.h: - * src/bookmarks/ephy-bookmarks.c: - (ephy_bookmarks_autocompletion_source_foreach), - (ephy_bookmarks_init_defaults), (update_topics_list), - (update_has_smart_address), (ephy_bookmarks_add), - (ephy_bookmarks_set_address): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_finalize), - (ephy_new_bookmark_add), (ephy_new_bookmark_init), - (ephy_new_bookmark_set_title): - * src/bookmarks/ephy-new-bookmark.h: - * src/ephy-shell.c: (ephy_shell_init): - * src/popup-commands.c: (popup_cmd_bookmark_link): - - Get rid of starthere: and default to google, as discussed - with Seth. - Add a way to import bookmarks from the editor. (you still - cant specificy a file, that's sort of low priority for me, but - we have a plan on how to do it). - Allow to edit smart bookmarks in the user interface. The address - field is used and when there is a %s, it's considered a smart - url. (like mozilla does it). - - ChangeLog | 45 +++++++++++ - data/epiphany.schemas.in | 2 +- - data/ui/epiphany-bookmark-editor-ui.xml.in | 2 + - embed/ephy-embed-shell.c | 19 ----- - embed/mozilla/Makefile.am | 2 - - embed/mozilla/MozRegisterComponents.cpp | 8 -- - lib/Makefile.am | 2 - - src/bookmarks/ephy-bookmark-action.c | 119 ++++++++++++++++++----------- - src/bookmarks/ephy-bookmark-properties.c | 8 +- - src/bookmarks/ephy-bookmarks-editor.c | 112 +++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks-import.c | 62 +++++++++------ - src/bookmarks/ephy-bookmarks-import.h | 6 +- - src/bookmarks/ephy-bookmarks.c | 68 +++++++++++------ - src/bookmarks/ephy-bookmarks.h | 9 ++- - src/bookmarks/ephy-new-bookmark.c | 14 +--- - src/bookmarks/ephy-new-bookmark.h | 3 - - src/ephy-shell.c | 83 -------------------- - src/popup-commands.c | 5 +- - 18 files changed, 340 insertions(+), 229 deletions(-) - -commit 715e6da7a85512491ac612dc5f97e48809ea5b4a -Author: Christian Rose -Date: Sun Jun 8 22:47:57 2003 +0000 - - Updated Swedish translation. - - 2003-06-09 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 653 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 342 insertions(+), 315 deletions(-) - -commit bc879380cdd671e88955d503f0f9c22815e1c67e -Author: Piers Cornwell -Date: Sun Jun 8 21:32:02 2003 +0000 - - Fixup context menu accesskeys. Use correct icon for Save As. - - 2003-06-08 Piers Cornwell - - * data/ui/epiphany-ui.xml.in: - * src/ephy-window.c: - - Fixup context menu accesskeys. Use correct icon for Save As. - - ChangeLog | 7 ++ - data/ui/epiphany-ui.xml.in | 4 +- - lib/egg/eggmarshalers.list | 1 + - lib/egg/eggtoolbar.c | 253 +++++++++++++++++++++++++++++++-------------- - lib/egg/eggtoolbar.h | 11 +- - lib/egg/eggtoolbutton.c | 79 +++++++++++--- - lib/egg/eggtoolitem.c | 17 +-- - src/ephy-window.c | 15 +-- - 8 files changed, 277 insertions(+), 110 deletions(-) - -commit e803042418a83e9fe898c06ded27eec014df4224 -Author: Jeremy Katz -Date: Sun Jun 8 20:17:05 2003 +0000 - - Explicitly create pointer to avoid strict aliasing warnings with gcc 3.3. - - 2003-06-08 Jeremy Katz - - * src/ephy-shell.c (ephy_shell_init): Explicitly create pointer to - avoid strict aliasing warnings with gcc 3.3. - * src/window-commands.c (window_cmd_help_about): Likewise. - - ChangeLog | 6 ++++++ - src/ephy-shell.c | 3 ++- - src/window-commands.c | 4 +++- - 3 files changed, 11 insertions(+), 2 deletions(-) - -commit 44be60f7fd5f2b448938d4d7364e2b0d6c602baf -Author: Christian Persch -Date: Sun Jun 8 19:54:07 2003 +0000 - - Fix mem leaks. - - 2003-06-08 Christian Persch - - * src/ephy-window.c: (update_favicon_control), - (update_spinner_control): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 18 +++++++++++++++--- - 2 files changed, 22 insertions(+), 3 deletions(-) - -commit d7fc4c3724e3bc44c2533c4809fc8bc79f81769b -Author: Marco Pesenti Gritti -Date: Sat Jun 7 18:54:05 2003 +0000 - - *** empty log message *** - - lib/widgets/Makefile.am | 2 ++ - 1 file changed, 2 insertions(+) - -commit 2831e21efc64d249e62b5432933680233e3a1673 -Author: Marco Pesenti Gritti -Date: Sat Jun 7 18:53:22 2003 +0000 - - Remove some leftovers. - - 2003-06-07 Marco Pesenti Gritti - - * embed/mozilla/mozilla-notifiers.cpp: - - Remove some leftovers. - - * lib/widgets/Makefile.am: - * lib/widgets/ephy-search-entry.c: (ephy_search_entry_get_type), - (ephy_search_entry_class_init), (ephy_search_entry_timeout_cb), - (ephy_search_entry_changed_cb), - (ephy_search_entry_focus_out_event_cb), (ephy_search_entry_init), - (ephy_search_entry_finalize), (ephy_search_entry_new), - (ephy_search_entry_clear): - * lib/widgets/ephy-search-entry.h: - * src/bookmarks/ephy-bookmarks-editor.c: - (keyword_node_selected_cb), (search_entry_search_cb), - (build_search_box): - * src/ephy-history-window.c: (site_node_selected_cb), - (search_entry_search_cb), (build_search_box): - - Implement a search entry that delays searches a bit after - the user pressed key, to have autoapply but make it interactive - enough. (Based on rhythmbox one) - - ChangeLog | 24 ++++ - embed/mozilla/mozilla-notifiers.cpp | 18 --- - lib/widgets/ephy-search-entry.c | 201 ++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-search-entry.h | 59 ++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 30 +---- - src/ephy-history-window.c | 33 +----- - 6 files changed, 296 insertions(+), 69 deletions(-) - -commit 80cd8d8b0e4e09a3e6f8628097cd6c9876053387 -Author: Christian Neumair -Date: Sat Jun 7 16:40:31 2003 +0000 - - Updated German translation and POTFILES.skip. - - po/ChangeLog | 1 + - po/POTFILES.skip | 1 + - po/de.po | 318 ++++++++++++++++++++++++++++--------------------------- - 3 files changed, 162 insertions(+), 158 deletions(-) - -commit 2bffc5309cc8e9686287138bb414b946e2864e48 -Author: Marco Pesenti Gritti -Date: Sat Jun 7 12:06:08 2003 +0000 - - *** empty log message *** - - data/epiphany.schemas.in | 19 ++++--------------- - 1 file changed, 4 insertions(+), 15 deletions(-) - -commit 1b57d44cfe8ed36a245f6a31961ec67d31529262 -Author: Marco Pesenti Gritti -Date: Sat Jun 7 11:54:41 2003 +0000 - - Remove memory cache prefs/ui, now mozilla can deal with it automagically. - - 2003-06-07 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * data/glade/prefs-dialog.glade: - * embed/ephy-embed-prefs.h: - * embed/ephy-embed-single.c: (ephy_embed_single_clear_cache): - * embed/ephy-embed-single.h: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * src/bookmarks/ephy-bookmarks-import.c: (mozilla_parse_bookmarks), - (xbel_parse_folder): - * src/prefs-dialog.c: (prefs_clear_cache_button_clicked_cb): - - Remove memory cache prefs/ui, now mozilla can deal with it - automagically. - Rename Appeareance tab to be less generic. - Do not convert spaces to _ on bookmarks importing. - - ChangeLog | 18 ++ - data/glade/prefs-dialog.glade | 290 ++++++++++++--------------------- - embed/ephy-embed-prefs.h | 5 +- - embed/ephy-embed-single.c | 5 +- - embed/ephy-embed-single.h | 12 +- - embed/mozilla/mozilla-embed-single.cpp | 8 +- - embed/mozilla/mozilla-notifiers.cpp | 27 ++- - src/bookmarks/ephy-bookmarks-import.c | 23 +-- - src/prefs-dialog.c | 28 +--- - 9 files changed, 158 insertions(+), 258 deletions(-) - -commit ec3068c56f7af999038247a4ec03be3db810a33f -Author: Christian Persch -Date: Sat Jun 7 10:47:13 2003 +0000 - - Install some object properties for later use. - - 2003-06-07 Christian Persch - - * src/ephy-tab.c: (ephy_tab_set_property), - (ephy_tab_get_property), (ephy_tab_class_init): - - Install some object properties for later use. - - ChangeLog | 7 ++++++ - src/ephy-tab.c | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 84 insertions(+), 1 deletion(-) - -commit 1f163449e5d1a61b2c71755bfb796fbf14883f90 -Author: Christian Persch -Date: Sat Jun 7 10:32:16 2003 +0000 - - Fix mem leaks. - - 2003-06-07 Christian Persch - - * src/window-commands.c: (window_cmd_tabs_detach), - (window_cmd_file_bookmark_page): - - Fix mem leaks. - - ChangeLog | 7 +++++++ - src/window-commands.c | 14 +++++++------- - 2 files changed, 14 insertions(+), 7 deletions(-) - -commit 9cfd57529bd0b209829be75b84390e782d756f74 -Author: Christian Neumair -Date: Sat Jun 7 10:31:25 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 1099 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 589 insertions(+), 514 deletions(-) - -commit bb42c1f857b0271c08edd1d78b43addd16aa2f3d -Author: Marco Pesenti Gritti -Date: Sat Jun 7 10:27:36 2003 +0000 - - Better icons. Thanks to Luca Ferretti for suggesting them and to Jimmac. - - 2003-06-07 Marco Pesenti Gritti - - * data/art/epiphany-secure.png: - * data/art/epiphany-unsecure.png: - - Better icons. Thanks to Luca Ferretti for suggesting them - and to Jimmac. - - ChangeLog | 8 ++++++++ - data/art/epiphany-secure.png | Bin 332 -> 866 bytes - data/art/epiphany-unsecure.png | Bin 332 -> 792 bytes - 3 files changed, 8 insertions(+) - -commit db7d95b0d6858417453e8f5e10f041c71c12a51f -Author: Christian Neumair -Date: Sat Jun 7 10:17:50 2003 +0000 - - We used to have two mnemonics for Shift_JS. Fix it and tell translators - - 2003-06-07 Christian Neumair - - * embed/mozilla/mozilla-embed-single.cpp: - - We used to have two mnemonics for Shift_JS. Fix it and tell - translators that they have to be careful. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 4 +++- - 2 files changed, 10 insertions(+), 1 deletion(-) - -commit cda0a0c5e93e986a83bfeb27c2faf48fa3f3d1ae -Author: Christian Persch -Date: Fri Jun 6 23:00:38 2003 +0000 - - Fix mem leak. - - 2003-06-07 Christian Persch - - * lib/ephy-dialog.c: (impl_get_value): - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_add): - - Fix mem leak. - - ChangeLog | 7 +++++++ - lib/ephy-dialog.c | 5 +++-- - src/bookmarks/ephy-new-bookmark.c | 2 ++ - 3 files changed, 12 insertions(+), 2 deletions(-) - -commit f6d5d88afad2d84ae8be385a1d63c8858cb78b5c -Author: Christian Persch -Date: Fri Jun 6 19:08:58 2003 +0000 - - Fix signed/unsigned mistake. - - 2003-06-06 Christian Persch - - * src/ephy-tabs-menu.c: (ephy_tabs_menu_init), (ephy_tabs_menu_clean): - - Fix signed/unsigned mistake. - - ChangeLog | 6 ++++++ - src/ephy-tabs-menu.c | 5 +++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit c535171fc9404e8349cd90a47a92b4ad41c5a398 -Author: Piers Cornwell -Date: Fri Jun 6 19:05:04 2003 +0000 - - Fixup a mistake in my previous patch for encoding accesskeys. - - 2003-06-06 Piers Cornwell - - * embed/mozilla/mozilla-embed-single.cpp: - - Fixup a mistake in my previous patch for encoding accesskeys. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 48ca29e6110f8c7418a9c2650b8e9e04c4b2abce -Author: Marco Pesenti Gritti -Date: Fri Jun 6 18:09:07 2003 +0000 - - *** empty log message *** - - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit d1eafdeab997188fdc8a3cc572a3365a673e2bc6 -Author: Marco Pesenti Gritti -Date: Fri Jun 6 17:56:55 2003 +0000 - - *** empty log message *** - - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit c77bc119424a6033d6f87a5e5d6b312009f8672f -Author: Marco Pesenti Gritti -Date: Fri Jun 6 17:56:38 2003 +0000 - - Update to 0.7.0 - - 2003-06-06 Marco Pesenti Gritti - - * configure.in: - - Update to 0.7.0 - - * lib/egg/egg-menu-merge.c: (egg_menu_merge_add_ui_from_string): - * lib/egg/egg-menu-merge.h: - - Fix crash on startup on alpha - - ChangeLog | 11 +++++++++++ - lib/egg/egg-menu-merge.c | 2 +- - lib/egg/egg-menu-merge.h | 2 +- - 3 files changed, 13 insertions(+), 2 deletions(-) - -commit 63d4e714682577a3bb854deeee33cc6008d5e65a -Author: Kjartan Maraas -Date: Fri Jun 6 16:23:38 2003 +0000 - - Update Norwegian translation. - - 2003-06-06 Kjartan Maraas - - * no.po: Update Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 2597 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 1197 insertions(+), 1404 deletions(-) - -commit 0298bd603cb154ecc65d2260605b3895db3b4f45 -Author: Marco Pesenti Gritti -Date: Fri Jun 6 15:34:52 2003 +0000 - - *** empty log message *** - - NEWS | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 64 insertions(+) - -commit 1ffec12b0dddb178dc04c969478fa047b2e33516 -Author: Christian Rose -Date: Fri Jun 6 10:24:50 2003 +0000 - - Added missing file. Updated Swedish translation. - - 2003-06-06 Christian Rose - - * POTFILES.in: Added missing file. - * sv.po: Updated Swedish translation. - - po/ChangeLog | 5 + - po/POTFILES.in | 1 + - po/sv.po | 789 +++++++++++++++++++++++++++++++++++++++------------------ - 3 files changed, 554 insertions(+), 241 deletions(-) - -commit 6c217beb4ac1ec20a3f5407714efcb16020811fd -Author: Christian Persch -Date: Fri Jun 6 07:13:55 2003 +0000 - - Fix signed/unsigned mistake, speed up favorites menu building - - 2003-06-06 Christian Persch - - * src/bookmarks/ephy-bookmarks-menu.c: (ephy_bookmarks_menu_clean), - (ephy_bookmarks_menu_rebuild), (ephy_bookmarks_menu_init): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_clean), - (ephy_favorites_menu_rebuild), (ephy_favorites_menu_init): - - Fix signed/unsigned mistake, speed up favorites menu building - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-bookmarks-menu.c | 11 ++++++++--- - src/ephy-favorites-menu.c | 11 ++++++++--- - 3 files changed, 25 insertions(+), 6 deletions(-) - -commit 6a8a736a25d0274d8ddcc5e63d8a6f1a535ea439 -Author: Piers Cornwell -Date: Thu Jun 5 19:03:28 2003 +0000 - - Add accels on the encoding menus. - - 2003-06-05 Piers Cornwell - - * embed/mozilla/mozilla-embed-single.cpp: - - Add accels on the encoding menus. - - ChangeLog | 6 + - embed/mozilla/mozilla-embed-single.cpp | 204 ++++++++++++++++----------------- - 2 files changed, 108 insertions(+), 102 deletions(-) - -commit 7da0ffe24f5f04d54932cc8bbca8d9d89f0efbbf -Author: Marco Pesenti Gritti -Date: Thu Jun 5 18:16:07 2003 +0000 - - Do not save when fullscreen - - 2003-06-05 Marco Pesenti Gritti - - * src/ephy-window.c: (save_window_chrome): - - Do not save when fullscreen - - ChangeLog | 6 ++++++ - src/ephy-window.c | 10 +++------- - 2 files changed, 9 insertions(+), 7 deletions(-) - -commit 686b095ac4f6590ae599b2c7d7d087683d09881f -Author: Marco Pesenti Gritti -Date: Thu Jun 5 17:53:51 2003 +0000 - - s/ask download/ask for download - - 2003-06-05 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - - s/ask download/ask for download - - * lib/egg/egg-editable-toolbar.c: (toolbar_changed_cb), - (egg_editable_toolbar_set_model): - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_set_flags), - (egg_toolbars_model_class_init): - * lib/egg/egg-toolbars-model.h: - * lib/egg/eggtoolbar.c: (egg_toolbar_internal_insert_element): - - Update. - - * src/ephy-toolbars-model.c: (ephy_toolbars_model_set_flag), - (ephy_toolbars_model_unset_flag): - * src/ephy-toolbars-model.h: - - Add a way to set/unset a flag on all toolbars. - - * src/ephy-window.c: (ephy_window_init), - (translate_default_chrome), - (update_exit_fullscreen_popup_position), (size_changed_cb), - (exit_fullscreen_button_clicked_cb), (ephy_window_fullscreen), - (ephy_window_unfullscreen), (ephy_window_set_chrome): - - Implement an exit fullscreen button. - Force toolbars style to be icon only. - - ChangeLog | 30 ++++++++++++ - data/epiphany.schemas.in | 4 +- - lib/egg/egg-editable-toolbar.c | 23 +++++++++ - lib/egg/egg-toolbars-model.c | 11 +++++ - lib/egg/egg-toolbars-model.h | 5 +- - lib/egg/eggtoolbar.c | 2 + - src/ephy-toolbars-model.c | 40 +++++++++++++++ - src/ephy-window.c | 107 +++++++++++++++++++++++++++++++++++++++-- - 8 files changed, 216 insertions(+), 6 deletions(-) - -commit 4ccc0bb51ea56894f5c8bea291eb16ab1f019acf -Author: Marco Pesenti Gritti -Date: Thu Jun 5 17:53:51 2003 +0000 - - broken pipe pfff - - src/ephy-toolbars-model.h | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - -commit 1f38532ca0e840470b825ede927fa6d55a98851e -Author: Marco Pesenti Gritti -Date: Thu Jun 5 17:53:51 2003 +0000 - - s/ask download/ask for download - - 2003-06-05 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - - s/ask download/ask for download - - * lib/egg/egg-editable-toolbar.c: (toolbar_changed_cb), - (egg_editable_toolbar_set_model): - * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_set_flags), - (egg_toolbars_model_class_init): - * lib/egg/egg-toolbars-model.h: - * lib/egg/eggtoolbar.c: (egg_toolbar_internal_insert_element): - - Update. - - * src/ephy-toolbars-model.c: (ephy_toolbars_model_set_flag), - (ephy_toolbars_model_unset_flag): - * src/ephy-toolbars-model.h: - - Add a way to set/unset a flag on all toolbars. - - * src/ephy-window.c: (ephy_window_init), - (translate_default_chrome), - (update_exit_fullscreen_popup_position), (size_changed_cb), - (exit_fullscreen_button_clicked_cb), (ephy_window_fullscreen), - (ephy_window_unfullscreen), (ephy_window_set_chrome): - - Implement an exit fullscreen button. - Force toolbars style to be icon only. - - src/ephy-toolbars-model.h | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 172b4a50d39567f0aeafd866dcb6f1eefeb25e67 -Author: Christian Rose -Date: Thu Jun 5 13:05:23 2003 +0000 - - Updated Swedish translation. - - 2003-06-05 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 497 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 256 insertions(+), 245 deletions(-) - -commit 7cceaace1d586ebb890d85588637bd1c655ec007 -Author: Miloslav Trmac -Date: Thu Jun 5 08:16:52 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 429 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 215 insertions(+), 218 deletions(-) - -commit 34b76e16a93ada1c21369fba8dee4ce9e752848d -Author: Marco Pesenti Gritti -Date: Thu Jun 5 07:41:18 2003 +0000 - - Actually add the ask for dest pref, it was using the wrong key. - - 2003-06-05 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * embed/ephy-embed-popup.c: (embed_popup_download_link_cmd): - * embed/ephy-embed-utils.c: (ephy_embed_utils_save): - - Actually add the ask for dest pref, it was using the wrong key. - - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/mozilla-embed-single.cpp: - - Return directory also on cancel. - - * lib/ephy-prefs.h: - * src/popup-commands.c: (popup_cmd_download_link): - - Persist directory also on cancel. - - ChangeLog | 18 ++++++++++++++++++ - data/epiphany.schemas.in | 11 +++++++++++ - embed/ephy-embed-popup.c | 2 +- - embed/ephy-embed-utils.c | 26 ++++++++++++++------------ - embed/mozilla/FilePicker.cpp | 8 +++----- - embed/mozilla/mozilla-embed-single.cpp | 27 ++++++++++++--------------- - lib/ephy-prefs.h | 1 + - src/popup-commands.c | 2 +- - 8 files changed, 61 insertions(+), 34 deletions(-) - -commit 7ae9c02441b4d75c6e686870e6c214ce7f0a823d -Author: David Bordoley -Date: Thu Jun 5 03:16:31 2003 +0000 - - Move the bookmarks menu after go. There is a slight inconsistency in the - - 2003-06-04 David Bordoley - - * data/ui/epiphany-ui.xml.in: - - Move the bookmarks menu after go. There is a slight - inconsistency in the HIG, but this is the intended order. - - * embed/mozilla/mozilla-embed-single.cpp: (MozillaEmbedSinglePrivate), - (mozilla_set_default_prefs), (color_to_string), - (mozilla_update_colors), (mozilla_setup_colors), - (mozilla_embed_single_init), (mozilla_embed_single_finalize): - - Disable caret browsing for now since enough people complain. - We really need a visible pref for this though. Oh you need to reset - this in about:config to actually turn it off. - Monitor theme changes and set the background and text colors based - on the theme text entry colors. - - ChangeLog | 18 +++++++ - data/ui/epiphany-ui.xml.in | 12 ++--- - embed/mozilla/mozilla-embed-single.cpp | 86 ++++++++++++++++++++++++++++++++-- - 3 files changed, 107 insertions(+), 9 deletions(-) - -commit 62b14d574cd763d5bd600a4aca583f53d16ffcac -Author: Xan Lopez -Date: Wed Jun 4 16:06:10 2003 +0000 - - Fix breakage. - - - Fix breakage. - - data/conspiracy.xhtml | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -commit 96b34afe3a6bffb9cb7a6671403de31644688cce -Author: Marco Pesenti Gritti -Date: Wed Jun 4 15:27:13 2003 +0000 - - Make sure to rebuild on add bookmark and on topic removal. Update on idle, - - 2003-06-04 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-menu.c: - (ephy_bookmarks_menu_rebuild), (do_updates), - (bookmarks_tree_changed_cb), (ephy_bookmarks_menu_init): - * src/bookmarks/ephy-bookmarks.c: (bookmarks_changed_cb), - (topics_removed_cb), (ephy_bookmarks_add): - - Make sure to rebuild on add bookmark and on topic removal. - Update on idle, so things like importing bookmarks doesnt - take two days. - - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - * src/ephy-shell.c: (ephy_init_services), (load_homepage), - (ephy_shell_new_tab): - * src/ephy-shell.h: - * src/ephy-window.c: (setup_window): - * src/session.c: (parse_embed): - - Drop NOT_JUMP_TO flag, we dont have a pref anymore. - - On new page instead of really clone the page, just clone - the url (put it in the address entry). So if the user need it - it's easy to load, but there are not the inacceptable slow - downs of real cloning. Let's see how this works ... - - ChangeLog | 26 ++++++++++ - src/bookmarks/ephy-bookmarks-menu.c | 22 ++++++++- - src/bookmarks/ephy-bookmarks.c | 4 +- - src/ephy-notebook.c | 3 +- - src/ephy-shell.c | 95 +++++++++---------------------------- - src/ephy-shell.h | 5 +- - src/ephy-window.c | 2 + - src/session.c | 1 - - 8 files changed, 77 insertions(+), 81 deletions(-) - -commit 29bbfe00469fe536bbf0f1025cde834cec3bec0b -Author: Marco Pesenti Gritti -Date: Wed Jun 4 11:59:38 2003 +0000 - - Implement bookmarks menu, might need to be optimized later. - - 2003-06-04 Marco Pesenti Gritti - - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmark-action.c: (connect_proxy): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_class_init), - (bookmarks_changed_cb), (bookmarks_removed_cb), - (ephy_bookmarks_set_keyword), (ephy_bookmarks_unset_keyword), - (ephy_bookmarks_get_favorites), - (ephy_bookmarks_get_not_categorized): - * src/bookmarks/ephy-bookmarks.h: - * src/ephy-window.c: (ephy_window_init), (ephy_window_finalize): - - Implement bookmarks menu, might need to be optimized later. - - ChangeLog | 14 ++ - src/bookmarks/Makefile.am | 2 + - src/bookmarks/ephy-bookmark-action.c | 3 +- - src/bookmarks/ephy-bookmarks-menu.c | 443 +++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks-menu.h | 58 +++++ - src/bookmarks/ephy-bookmarks.c | 31 +++ - src/bookmarks/ephy-bookmarks.h | 7 +- - src/ephy-window.c | 4 + - 8 files changed, 557 insertions(+), 5 deletions(-) - -commit 15358f9939f56b8ba5bc9df4499a72d65535ce41 -Author: Marco Pesenti Gritti -Date: Wed Jun 4 09:26:25 2003 +0000 - - Add a bookmarks menu. (still not the tree) - - 2003-06-04 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml.in: - - Add a bookmarks menu. (still not the tree) - - * src/bookmarks/ephy-bookmark-action.c: (create_menu_item), - (ephy_bookmark_action_sync_icon), - (ephy_bookmark_action_sync_label), (activate_cb), (connect_proxy), - (ephy_bookmark_action_class_init): - - Implement create_menu_item. - - * src/ephy-favorites-menu.c: (ephy_favorites_menu_get_type), - (go_location_cb), (ephy_favorites_menu_rebuild), - (ephy_favorites_menu_set_property), - (ephy_favorites_menu_get_property), - (ephy_favorites_menu_class_init), (ephy_favorites_menu_init), - (ephy_favorites_menu_finalize), (ephy_favorites_menu_new): - - Use bookmark action. - - * src/ephy-window.c: - - Change verbs for bookmarks menu. - - ChangeLog | 26 ++++ - data/ui/epiphany-ui.xml.in | 9 +- - src/bookmarks/ephy-bookmark-action.c | 88 ++++++++--- - src/ephy-favorites-menu.c | 287 ++++++++++++++++------------------- - src/ephy-window.c | 15 +- - 5 files changed, 242 insertions(+), 183 deletions(-) - -commit ee88ca67057b3635d4bb18b361ca6fd5ac8661e6 -Author: Xan Lopez -Date: Tue Jun 3 19:38:26 2003 +0000 - - GPLification of xhtml files (all hail our FSF overlords). - - - GPLification of xhtml files (all hail our FSF overlords). - - ChangeLog | 7 +++++++ - data/conspiracy.xhtml | 23 ++++++++++++++++++----- - data/epiphany.xhtml | 20 ++++++++++++++++---- - 3 files changed, 41 insertions(+), 9 deletions(-) - -commit bbefce85cb56466bf454c8bed271e0826025951b -Author: Christian Persch -Date: Tue Jun 3 16:48:27 2003 +0000 - - Get rid of the leftovers of the jump-to-tab pref. - - 2003-06-02 Christian Persch - - * lib/ephy-prefs.h: - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - - Get rid of the leftovers of the jump-to-tab pref. - - ChangeLog | 8 ++++++++ - lib/ephy-prefs.h | 2 -- - src/ephy-notebook.c | 5 ----- - src/ephy-shell.c | 2 -- - 4 files changed, 8 insertions(+), 9 deletions(-) - -commit 562b2a516b1cd3afaf6ae0fe7afedd43d42e2fe5 -Author: Christian Persch -Date: Tue Jun 3 16:15:31 2003 +0000 - - Fix compile with -Werror. VS: Enter Log. Lines beginning with `CVS:' are - - 2003-06-03 Christian Persch - - * lib/widgets/ephy-spinner.c: - - Fix compile with -Werror. - VS: Enter Log. Lines beginning with `CVS:' are removed automatically - - ChangeLog | 6 ++++ - lib/widgets/ephy-spinner.c | 68 ---------------------------------------------- - 2 files changed, 6 insertions(+), 68 deletions(-) - -commit 9bca61f59d134bcad242967c46919942ebe7edac -Author: Piers Cornwell -Date: Tue Jun 3 15:04:32 2003 +0000 - - update mozilla versions - - 2003-06-03 Piers Cornwell - - * configure.in: update mozilla versions - - ChangeLog | 4 ++++ - configure.in | 13 +++++++------ - 2 files changed, 11 insertions(+), 6 deletions(-) - -commit bedc2c0acbc34bf6afc271845d437871120b0021 -Author: Mathieu van Woerkom -Date: Tue Jun 3 08:45:54 2003 +0000 - - Added Limburgish translation. - - 2003-06-03 Mathieu van Woerkom - - * li.po: Added Limburgish translation. - - 2003-06-03 Kenneth Rohde Christiansen - - * configure.in: Added 'li' to ALL_LINGUAS - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/li.po | 3644 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3653 insertions(+), 1 deletion(-) - -commit 2b608b58314fbc4d2e8528f2230856f13470ae33 -Author: Christian Persch -Date: Mon Jun 2 21:23:22 2003 +0000 - - Removed keys some unused keys, and rename others to match what the code - - 2003-06-02 Christian Persch - - * data/epiphany.schemas.in: - - Removed keys some unused keys, and rename others to match what the - code defines them as. - - ChangeLog | 7 +++++++ - data/epiphany.schemas.in | 46 ++++++++++++++++------------------------------ - 2 files changed, 23 insertions(+), 30 deletions(-) - -commit 1696d2e9dc1776a873345a45509fb6cb360ca476 -Author: Takayuki KUSANO -Date: Mon Jun 2 14:42:34 2003 +0000 - - Updated Japanese translation. - - 2003-06-02 Takayuki KUSANO - - * ja.po: Updated Japanese translation. - - po/ChangeLog | 4 + - po/ja.po | 1791 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 954 insertions(+), 841 deletions(-) - -commit 463083e50d0a55206d707b0bd0f1519190d58f5e -Author: Vincent van Adrighem -Date: Mon Jun 2 14:18:06 2003 +0000 - - Dutch translation updated. - - 2003-06-02 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++ - po/nl.po | 126 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 64 insertions(+), 66 deletions(-) - -commit aec21a74daacbb80eb3de8a5f0292766b5b0d0db -Author: Ole Laursen -Date: Sun Jun 1 19:58:57 2003 +0000 - - Updated Danish translation. - - 2003-06-01 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 758 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 404 insertions(+), 358 deletions(-) - -commit e2c72b62158684f444b0ba461a0deef79074a1b7 -Author: Miloslav Trmac -Date: Sun Jun 1 12:09:43 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 +++ - po/cs.po | 100 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 52 insertions(+), 52 deletions(-) - -commit e2f9c23f9655e775a278f5b2712f7d57b53378da -Author: Christian Persch -Date: Sun Jun 1 08:35:15 2003 +0000 - - Remove custom notifiers, the generic string notifier works just fine for - - 2003-05-31 Christian Persch - - * embed/mozilla/mozilla-notifiers.cpp: - (mozilla_default_encoding_notifier), - (mozilla_autodetect_encoding_notifier): - - Remove custom notifiers, the generic string notifier works just fine - for those prefs. - - ChangeLog | 9 +++++++ - embed/mozilla/mozilla-notifiers.cpp | 52 +++---------------------------------- - 2 files changed, 12 insertions(+), 49 deletions(-) - -commit a5ac763cec5c776781dae024428d88fbaca019ed -Author: Christian Rose -Date: Sun Jun 1 08:32:50 2003 +0000 - - Updated Swedish translation. - - 2003-06-01 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++ - po/sv.po | 192 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 111 insertions(+), 85 deletions(-) - -commit c21fc8ae8784bab72563458084d6b75493897765 -Author: Piers Cornwell -Date: Sat May 31 17:51:49 2003 +0000 - - Fix accesskey conflicts in prefs for "Always use these fonts", "Default - - 2003-05-31 Piers Cornwell - - * data/glade/prefs-dialog.glade: - Fix accesskey conflicts in prefs for "Always use these fonts", - "Default encoding", "Language" and "More" and add accesskey for - "Language" in Languages Editor. - - * data/glade/print.glade: - Fix accesskey conflicts in print dialog for "from" and "portrait. - s/Printer/Print To. s/Paper Details/Paper. Better page range limits. - - ChangeLog | 11 +++++++++++ - data/glade/prefs-dialog.glade | 13 +++++++------ - data/glade/print.glade | 12 ++++++------ - 3 files changed, 24 insertions(+), 12 deletions(-) - -commit 1188fdc89e49de63f24235dfdfb534dc6197b02b -Author: Marco Pesenti Gritti -Date: Sat May 31 17:10:44 2003 +0000 - - Do not unref the db before cleaning the nodes. - - 2003-05-31 Marco Pesenti Gritti - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_finalize): - - Do not unref the db before cleaning the nodes. - - ChangeLog | 6 ++++++ - embed/ephy-favicon-cache.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit dceaf45eba6df9ead25cfc8eebe49b8ae8790a6f -Author: Lee Willis -Date: Sat May 31 15:49:05 2003 +0000 - - Don't crash if we can't find the spinner image - - 2003-05-31 Lee Willis - - * lib/widgets/ephy-spinner.c: - - Don't crash if we can't find the spinner image - - ChangeLog | 6 ++++++ - lib/widgets/ephy-spinner.c | 6 +++++- - 2 files changed, 11 insertions(+), 1 deletion(-) - -commit 3e928a776227a424dd18f56c782f7e79709adbb1 -Author: Vincent van Adrighem -Date: Sat May 31 13:37:29 2003 +0000 - - Dutch translation updated. - - 2003-05-31 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++++ - po/nl.po | 65 ++++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 41 insertions(+), 28 deletions(-) - -commit 43a108bf319410881db200e82019eb9e2b816bfd -Author: Miloslav Trmac -Date: Sat May 31 13:00:39 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 54 +++++++++++++++++++++++++++++++----------------------- - 2 files changed, 35 insertions(+), 23 deletions(-) - -commit 258d10723ac4938be08c832c9e058b4ac998d22a -Author: Kwok-Koon Cheung -Date: Sat May 31 07:48:00 2003 +0000 - - Updated traditional Chinese translation. - - * zh_TW.po: Updated traditional Chinese translation. - - po/ChangeLog | 8 + - po/POTFILES.in | 1 + - po/zh_TW.po | 1792 ++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 961 insertions(+), 840 deletions(-) - -commit 38e54c424fcccec2c57395b74be8c7d0cd43947d -Author: Christian Rose -Date: Sat May 31 00:32:48 2003 +0000 - - Updated Swedish translation. - - 2003-05-31 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++++ - po/sv.po | 14 +++++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit 20f3bc773fa7a77475842f64b2f282520c6d572f -Author: Miloslav Trmac -Date: Fri May 30 23:29:59 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++++ - po/cs.po | 14 +++++++------- - 2 files changed, 11 insertions(+), 7 deletions(-) - -commit 1220265ccb27eb51b47bba5069d3fa45b3a918a0 -Author: Christian Neumair -Date: Fri May 30 19:10:25 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 756 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 416 insertions(+), 344 deletions(-) - -commit 86ae18d30045e4d33210f80c14560569c608925b -Author: Marco Pesenti Gritti -Date: Fri May 30 15:25:46 2003 +0000 - - Use the spinner icon from gnome-icon-theme. You need a recent - - 2003-05-30 Marco Pesenti Gritti - - * lib/widgets/ephy-spinner.c: (get_spinner_dimensions), - (ephy_spinner_init), (ephy_spinner_theme_changed), - (scale_to_real_size), (extract_frame), (ephy_spinner_load_images), - (ephy_spinner_finalize), (ephy_spinner_get_theme_info): - - Use the spinner icon from gnome-icon-theme. - You need a recent gnome-icon-theme cvs for the spinner to - work correctly. - - ChangeLog | 11 +++ - lib/widgets/ephy-spinner.c | 201 ++++++++++++++++++++++++--------------------- - 2 files changed, 118 insertions(+), 94 deletions(-) - -commit 2e1109c635f8faaba1438a6cb00a319f1440a7e9 -Author: Pablo Saratxaga -Date: Fri May 30 15:20:55 2003 +0000 - - Added Vietnamese file - - configure.in | 2 +- - po/ChangeLog | 4 + - po/vi.po | 2939 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 2944 insertions(+), 1 deletion(-) - -commit f3986f2e89ffac3d2f6a497fae4fd82db4b6ce72 -Author: Vincent van Adrighem -Date: Fri May 30 14:32:39 2003 +0000 - - Dutch translation updated. - - 2003-05-30 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 696 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 373 insertions(+), 327 deletions(-) - -commit c2e5e4d99b41cd9cedb30f0ff9d2ef03bde80208 -Author: Pablo Gonzalo del Campo -Date: Fri May 30 12:32:13 2003 +0000 - - Updated Spanish translation by Francisco Javier Fernandez - - 2003-05-30 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier Fernandez - - po/ChangeLog | 5 + - po/es.po | 1540 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 828 insertions(+), 717 deletions(-) - -commit 48097ceb829577692c12c358453a17c3d7ebf7c0 -Author: Miloslav Trmac -Date: Fri May 30 12:19:46 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 484 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 252 insertions(+), 236 deletions(-) - -commit e8504015e5070e942b1f59a95daeda464556cf9c -Author: Christian Persch -Date: Fri May 30 12:10:14 2003 +0000 - - Fix wrong usage of <>. Stupid me :( - - 2003-05-30 Christian Persch - - * data/epiphany.schemas.in: - - Fix wrong usage of <>. Stupid me :( - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 925565eecb9d82daefdac528c1eebf21b721d18a -Author: Christian Rose -Date: Fri May 30 00:05:58 2003 +0000 - - Updated Swedish translation. - - 2003-05-30 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 322 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 174 insertions(+), 152 deletions(-) - -commit 487edf597f5e66130ccab0c7fd9a5cbea752f3eb -Author: Miloslav Trmac -Date: Thu May 29 12:59:57 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 502 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 277 insertions(+), 229 deletions(-) - -commit 2c31318d613005eb170d7a06292c2b18a054adb0 -Author: Christian Persch -Date: Thu May 29 12:16:50 2003 +0000 - - Get rid of MAKE_GET_TYPE; make building the tabs menu a little faster. - - 2003-05-29 Christian Persch - - * src/ephy-tabs-menu.c: (ephy_tabs_menu_get_type), - (ephy_tabs_menu_verb_cb), (ephy_tabs_menu_rebuild): - - Get rid of MAKE_GET_TYPE; make building the tabs menu a little faster. - - * src/ephy-window.c: (update_tabs_menu_sensitivity), - (ephy_window_get_tabs): - - Remove one unnecessary call to ephy_tabs_update_menu (). - - ChangeLog | 12 ++++++ - src/ephy-tabs-menu.c | 110 +++++++++++++++++++++++++++++---------------------- - src/ephy-window.c | 6 +-- - 3 files changed, 77 insertions(+), 51 deletions(-) - -commit 3893baeacbcdc24efbd7aca4e67508ddba2a4a5c -Author: Christian Persch -Date: Thu May 29 11:25:06 2003 +0000 - - Sort the lists of encoding autodetectors and of fonts languages. - - 2003-05-29 Christian Persch - - * lib/ephy-langs.h: - * data/glade/prefs-dialog.glade: - * src/prefs-dialog.c: (autodetector_info_free), (prefs_dialog_finalize), - (get_current_language_code), (setup_font_menu), (setup_size_control), - (fonts_language_info_cmp), (create_fonts_language_menu), - (autodetect_encoding_menu_changed_cb), (autodetector_info_cmp), - (find_autodetector_info), (create_encoding_autodetectors_menu), - (prefs_dialog_init): - - Sort the lists of encoding autodetectors and of fonts languages. - - * data/epiphany.schemas.in: - - Document the possible values for the encoding autodetectors. - - * embed/mozilla/mozilla-notifiers.cpp: (mozilla_notifiers_init), - (mozilla_default_encoding_notifier), - (mozilla_autodetect_encoding_notifier): - - Adapted for the changes in the prefs dialog. - The default encoding notifier now propagates the setting to mozilla :) - - ChangeLog | 24 ++++ - data/epiphany.schemas.in | 15 ++- - data/glade/prefs-dialog.glade | 192 +----------------------------- - embed/mozilla/mozilla-notifiers.cpp | 61 ++++------ - lib/ephy-langs.h | 39 +++--- - src/prefs-dialog.c | 228 +++++++++++++++++++++++++++++++++--- - 6 files changed, 299 insertions(+), 260 deletions(-) - -commit 4dc9c881958398daff5d76dd9749b443f75b3ab5 -Author: Christian Rose -Date: Wed May 28 22:14:35 2003 +0000 - - Updated Swedish translation. - - 2003-05-29 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 362 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 206 insertions(+), 160 deletions(-) - -commit 7338d7823322694868d71151ba7d1ef86961f265 -Author: Vincent van Adrighem -Date: Wed May 28 18:35:44 2003 +0000 - - Dutch translation updated. - - 2003-05-28 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 2508 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 1199 insertions(+), 1313 deletions(-) - -commit bbda044fa543cce525dd4b585941ea2a6f1f249f -Author: Christian Persch -Date: Wed May 28 15:43:24 2003 +0000 - - continuing checkin of previous patch (cvs aborted "broken pipe") - - 2003-05-28 Christian Persch - - continuing checkin of previous patch (cvs aborted "broken pipe") - - embed/ephy-embed-prefs.h | 4 +- - embed/ephy-embed-single.c | 15 +- - embed/ephy-embed-single.h | 27 ++-- - embed/ephy-embed-utils.c | 134 +++++++---------- - embed/ephy-embed-utils.h | 10 +- - embed/ephy-embed.c | 6 +- - embed/ephy-embed.h | 10 +- - embed/mozilla/EphyWrapper.cpp | 4 +- - embed/mozilla/EphyWrapper.h | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 254 ++++++++++++++++++--------------- - embed/mozilla/mozilla-embed.cpp | 14 +- - embed/mozilla/mozilla-notifiers.cpp | 50 +++---- - lib/Makefile.am | 1 + - lib/ephy-langs.c | 42 ++++++ - lib/ephy-langs.h | 45 ++++++ - lib/ephy-string.c | 31 +++- - lib/ephy-string.h | 2 +- - src/bookmarks/ephy-bookmarks-export.c | 1 + - src/ephy-encoding-menu.c | 123 ++++++++-------- - src/ephy-nautilus-view.c | 33 +++-- - src/ephy-window.h | 2 +- - src/prefs-dialog.c | 93 ++++++------ - 22 files changed, 494 insertions(+), 409 deletions(-) - -commit 6d3a2386b12ff5505fa9a78a7130240c94df3986 -Author: Christian Persch -Date: Wed May 28 15:38:55 2003 +0000 - - The "s/charset/encoding/" mega patch :) - - 2003-05-28 Christian Persch - - The "s/charset/encoding/" mega patch :) - - * *, */*, */*/*: - - s/charset/encoding/ - - * embed/mozilla/mozilla-embed-single.c: (impl_get_charsets), - (impl_get_language_groups), (control_charsets_list), - (mozilla_embed_single_init), (fill_charset_lists): - * embed/ephy-embed-single.h: - * embed/ephy-embed-single.c: - - Sort the returned list of charsets resp. language groups according - to the localised strings in the current locale. Allow for underscore - eliding to be able to use the list in both menus (underscore -> accel) - and in the prefs option menu (no accels). - - * lib/ephy-string.h: - * lib/ephy-string.c: (ephy_str_elide_underscores): - - New helper function for eliding underscores. - - * lib/ephy-langs.h: - * lib/ephy-langs.c: - - A few more common lang/encoding related defines and struct, as well - as helper functions to free them in one go. - - * embed/ephy-embed-utils.h: - * embed/ephy-embed-utils.c: (ephy_embed_utils_build_charsets_submenu): - * src/ephy-encoding-menu.c: (ephy_encoding_menu_verb_cb), - (build_group), (build_charset), (ephy_encoding_menu_rebuild): - * src/ephy-nautilus-view.c: (gnv_cmd_set_charset): - * src/prefs-dialog.c: (prefs_dialog_init), - (default_charset_menu_changed_cb), (find_charset_in_list_cmp), - (create_default_charset_menu), (prefs_dialog_finalize): - - Show the list of charsets and language groups sorted in the current - locale. - - * data/epiphany.schemas.in: - - Document the possible charset values. - - ChangeLog | 46 +++++++++++++++++++++++++++++++++++++++++++ - data/epiphany.schemas.in | 32 ++++++++++++++++++++++-------- - data/glade/prefs-dialog.glade | 8 ++++---- - 3 files changed, 74 insertions(+), 12 deletions(-) - -commit 20feb46533bc952744580cc2825265b6ba0d98ef -Author: Marco Pesenti Gritti -Date: Wed May 28 09:41:47 2003 +0000 - - Make it build with mozilla cvs. Remove only pages on history clear, the - - 2003-05-28 Marco Pesenti Gritti - - * configure.in: - * embed/ephy-history.c: (ephy_history_clear): - * embed/mozilla/GlobalHistory.cpp: - - Make it build with mozilla cvs. - Remove only pages on history clear, the sites - are automatically removed (fix freeze). - - ChangeLog | 10 ++++++++++ - configure.in | 11 +++++++---- - embed/ephy-history.c | 6 ------ - embed/mozilla/GlobalHistory.cpp | 8 ++++++++ - 4 files changed, 25 insertions(+), 10 deletions(-) - -commit 4f86399784893cf8692901bf6c231ec09f9075a0 -Author: Christian Rose -Date: Tue May 27 21:50:39 2003 +0000 - - Updated Swedish translation. - - 2003-05-27 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 456 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 239 insertions(+), 221 deletions(-) - -commit 6bbe4f3029a55ef83fd317267578f9246cf48950 -Author: Christian Persch -Date: Tue May 27 21:42:15 2003 +0000 - - Fix the compiler warning from my previous checkin. - - 2003-05-27 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp (impl_get_charset_groups): - - Fix the compiler warning from my previous checkin. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 042b7d8e719fe040d56e9d3705986dbda1b265f4 -Author: Christian Persch -Date: Tue May 27 21:07:12 2003 +0000 - - g_list_prepend is faster than g_list_append. - - 2003-05-27 Christian Persch - - * embed/mozilla/mozilla-embed-single.cpp: (impl_get_charset_titles), - (impl_get_charset_groups), (impl_get_font_list): - - g_list_prepend is faster than g_list_append. - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 14 +++++++------- - 2 files changed, 14 insertions(+), 7 deletions(-) - -commit 06cdf72ccc3d448d86c0ace29d74c06376572ecf -Author: Xan Lopez -Date: Tue May 27 20:22:02 2003 +0000 - - Try to fix dereferencing type-punned warning. - - - Try to fix dereferencing type-punned warning. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-node-view.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 7b931423fb733730ba74abd4207709974e6f67d9 -Author: Abel Cheung -Date: Tue May 27 10:18:08 2003 +0000 - - Remove non-existant file(s). Remove non-existant file(s). - - 2003-05-27 Abel Cheung - - * po/POTFILES.in: Remove non-existant file(s). - * po/POTFILES.skip: Remove non-existant file(s). - - po/ChangeLog | 5 +++++ - po/POTFILES.in | 1 - - po/POTFILES.skip | 3 --- - 3 files changed, 5 insertions(+), 4 deletions(-) - -commit 3f867c41ebb0b4bc84c9bffc3d2338f35981ac52 -Author: Xan Lopez -Date: Tue May 27 09:57:51 2003 +0000 - - More of the same. - - - More of the same. - - ChangeLog | 7 +++++++ - lib/ephy-node.c | 6 ++++++ - 2 files changed, 13 insertions(+) - -commit d24b49b8d86929645b0e6fe2a1cf47d9f35768f6 -Author: Xan Lopez -Date: Mon May 26 23:03:57 2003 +0000 - - Lots of safety checks on node functions. - - - Lots of safety checks on node functions. - - ChangeLog | 36 ++++++++++++++++++++++++++++-------- - lib/ephy-node.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++-- - lib/ephy-node.h | 4 ++++ - 3 files changed, 81 insertions(+), 10 deletions(-) - -commit 3f91d766156e07b491c27bc447fb7800cc7b4cdd -Author: Christian Persch -Date: Mon May 26 21:13:03 2003 +0000 - - Refactored the charset and language groups strings. - - 2003-05-26 Christian Persch - - * embed/mozilla/mozilla-i18n.h: - * embed/mozilla/mozilla-i18n.c: - * embed/mozilla/mozilla-embed-single.c: (fill_charsets_list), - (impl_get_charset_titles): - * embed/mozilla/mozilla-notifiers.c: (mozilla_notifiers_init): - * lib/ephy-langs.h: - * src/prefs-dialog.c: (setup_font_menu): - - Refactored the charset and language groups strings. - - ChangeLog | 12 +++ - embed/mozilla/Makefile.am | 2 - - embed/mozilla/mozilla-embed-single.cpp | 178 ++++++++++++++++++++++++++++++--- - embed/mozilla/mozilla-i18n.c | 162 ------------------------------ - embed/mozilla/mozilla-i18n.h | 60 ----------- - embed/mozilla/mozilla-notifiers.cpp | 11 +- - lib/Makefile.am | 1 + - lib/ephy-langs.h | 47 +++++++++ - src/prefs-dialog.c | 31 ++---- - 9 files changed, 238 insertions(+), 266 deletions(-) - -commit a991c432844c98ff65cca9765f5e8e3cf25d19b3 -Author: Christian Persch -Date: Mon May 26 21:03:15 2003 +0000 - - Fix potential memory corruption. Retain custom lang codes. Sort the - - 2003-05-26 Christian Persch - - * src/prefs-dialog.c: (free_lang_item), (prefs_dialog_finalize), - (compare_lang_items), (find_lang_code), (create_languages_list), - (general_prefs_new_language_menu), (language_menu_changed_cb), - (create_language_menu), (prefs_dialog_init), (fill_language_editor), - (language_dialog_changed_cb), (prefs_language_more_button_clicked_cb): - - Fix potential memory corruption. Retain custom lang codes. Sort the - languages list using the current locale. - - Fix some mem leaks en passant. - - ChangeLog | 13 ++++ - src/prefs-dialog.c | 204 ++++++++++++++++++++++++++++++++++++++++++----------- - 2 files changed, 177 insertions(+), 40 deletions(-) - -commit d94a3584faf8e3a3da1ffd3361c90cae4c78611a -Author: Christian Persch -Date: Mon May 26 20:57:06 2003 +0000 - - Fix mem leak. - - 2003-05-26 Christian Persch - - * embed/mozilla/mozilla-notifiers.c: (mozilla_language_notifier): - - Fix mem leak. - - ChangeLog | 6 ++++++ - embed/mozilla/mozilla-notifiers.cpp | 7 ++++++- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 5ff8f7cb898f02ddf1f2dfe0370e90c1c8d3e061 -Author: Marco Pesenti Gritti -Date: Mon May 26 19:02:39 2003 +0000 - - s/DESTROYED/DESTROY which is more useulf - - 2003-05-26 Marco Pesenti Gritti - - * lib/ephy-node.c: (callback), (ephy_node_dispose): - * lib/ephy-node.h: - - s/DESTROYED/DESTROY which is more useulf - - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_set_property), (root_destroy_cb): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults), - (ephy_bookmarks_set_toolbars_model), (ephy_bookmarks_set_property), - (ephy_bookmarks_get_property), (ephy_bookmarks_class_init), - (bookmarks_removed_cb), (topics_removed_cb), (ephy_bookmarks_init), - (ephy_bookmarks_finalize): - * src/ephy-shell.c: (ephy_shell_get_toolbars_model): - * src/ephy-toolbars-model.c: (impl_add_item), - (ephy_toolbars_model_set_bookmarks), - (ephy_toolbars_model_set_property), - (ephy_toolbars_model_get_property), - (ephy_toolbars_model_class_init), (ephy_toolbars_model_init), - (ephy_toolbars_model_finalize), (ephy_toolbars_model_new): - * src/ephy-toolbars-model.h: - * src/toolbar.c: (topic_destroy_cb), (bookmark_destroy_cb), - (toolbar_ensure_action), (toolbar_init): - - Better way to remove unrefed bookmarks from the toolbar. - - Ref bookmarks in toolbars model and weak reaf toolbars model - in bookmarks. So setting defaults really works. - - ChangeLog | 32 +++++++ - lib/ephy-node.c | 10 ++- - lib/ephy-node.h | 2 +- - lib/widgets/ephy-tree-model-node.c | 12 +-- - src/bookmarks/ephy-bookmarks-editor.c | 2 + - src/bookmarks/ephy-bookmarks.c | 147 ++++++++++++++++++++------------- - src/ephy-shell.c | 8 +- - src/ephy-toolbars-model.c | 73 ++++++++++++++-- - src/ephy-toolbars-model.h | 3 +- - src/toolbar.c | 151 ++++++++++++++-------------------- - 10 files changed, 272 insertions(+), 168 deletions(-) - -commit 70183cca32190c0d2b038441c01bd927e11b8148 -Author: Ole Laursen -Date: Mon May 26 10:05:04 2003 +0000 - - Fixed a string in Danish translation. - - 2003-05-26 Ole Laursen - - * da.po: Fixed a string in Danish translation. - - po/ChangeLog | 4 ++++ - po/da.po | 56 ++++++++++++++++++++++++++++---------------------------- - 2 files changed, 32 insertions(+), 28 deletions(-) - -commit d98d12f99aef8f32f08b1c2bfaaa0eaf73f36df5 -Author: Marco Pesenti Gritti -Date: Sun May 25 20:41:38 2003 +0000 - - Unlink the node from the childs only after the remove from parent signal - - 2003-05-25 Marco Pesenti Gritti - - * lib/ephy-node.c: (ephy_node_dispose): - - Unlink the node from the childs only after the remove - from parent signal has been emitted. - - ChangeLog | 7 +++++++ - lib/ephy-node.c | 10 +++++----- - 2 files changed, 12 insertions(+), 5 deletions(-) - -commit 9ae7960ca8c3ca534ba07bb6d58b430ee9cda413 -Author: Marco Pesenti Gritti -Date: Sun May 25 19:39:09 2003 +0000 - - Try to fix node removal problems. I cant repro crashes ... but they are - - 2003-05-25 Marco Pesenti Gritti - - * configure.in: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_save): - * embed/ephy-history.c: (ephy_history_save), (hosts_removed_cb), - (pages_removed_cb), (unref_empty_host), - (page_removed_from_host_cb), (connect_page_removed_from_host), - (ephy_history_init), (ephy_history_add_host): - * lib/ephy-file-helpers.c: (ephy_file_save_xml): - * lib/ephy-file-helpers.h: - * lib/ephy-node.c: (callback), (ephy_node_emit_signal), - (real_remove_child), (ephy_node_dispose): - * lib/ephy-node.h: - * lib/ephy-state.c: (ephy_states_save): - * lib/widgets/ephy-tree-model-node.c: (root_child_removed_cb): - * src/bookmarks/ephy-bookmarks-export.c: - (ephy_bookmarks_export_rdf): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_save), - (bookmarks_removed_cb), (topics_removed_cb): - - Try to fix node removal problems. I cant repro crashes ... - but they are quite hard to reproduce. - Use a save_xml helper that is low disk safe. - - * src/ephy-automation.c: (impl_ephy_automation_loadurl): - - Use OPEN_PAGE when an url is passed - - ChangeLog | 28 ++++++++++++++++ - configure.in | 7 ++-- - embed/ephy-favicon-cache.c | 2 +- - embed/ephy-history.c | 61 ++++++++++++++++++++++++++--------- - lib/ephy-file-helpers.c | 57 ++++++++++++++++++++++++++++++++ - lib/ephy-file-helpers.h | 4 +++ - lib/ephy-node.c | 56 ++++++++++++++++++++------------ - lib/ephy-node.h | 2 +- - lib/ephy-state.c | 2 +- - lib/widgets/ephy-tree-model-node.c | 5 ++- - src/bookmarks/ephy-bookmarks-export.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 4 ++- - src/ephy-automation.c | 2 +- - 13 files changed, 185 insertions(+), 47 deletions(-) - -commit c159006b08ac492649715c9a3ce55f258e199f97 -Author: Xan Lopez -Date: Sun May 25 18:59:59 2003 +0000 - - Fix crash on pause. - - - Fix crash on pause. - - ChangeLog | 10 ++++++++++ - embed/downloader-view.c | 25 ++++++++++++++++++++++--- - embed/mozilla/ProgressListener.cpp | 2 ++ - 3 files changed, 34 insertions(+), 3 deletions(-) - -commit f554cdac20348aa1ead34e2a83a9742d06556832 -Author: Marco Pesenti Gritti -Date: Sun May 25 17:56:51 2003 +0000 - - Fix nautilus view crash - - 2003-05-25 Marco Pesenti Gritti - - * lib/ephy-state.c: (ephy_state_save): - - Fix nautilus view crash - - ChangeLog | 6 ++++++ - lib/ephy-state.c | 13 ++++++++----- - 2 files changed, 14 insertions(+), 5 deletions(-) - -commit ee8f00175fc21b994eed32a4e44770d639444254 -Author: Christian Persch -Date: Sun May 25 17:25:41 2003 +0000 - - shift force reload - - 2003-05-16 Christian Persch - - * src/window-commands.c: shift force reload - - ChangeLog | 4 ++++ - src/window-commands.c | 26 +++++++++++++++++++++++++- - 2 files changed, 29 insertions(+), 1 deletion(-) - -commit 2c5dc444c9de699eb9d895c804e884331a03daaa -Author: Duarte Loreto -Date: Sun May 25 16:08:40 2003 +0000 - - Updated Portuguese translation. - - 2003-05-25 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 2389 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1285 insertions(+), 1108 deletions(-) - -commit 61c256c855b2e807a167fb1579f85dae5b92958a -Author: Ole Laursen -Date: Sun May 25 15:45:44 2003 +0000 - - Updated Danish translation. - - 2003-05-25 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 1632 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 839 insertions(+), 797 deletions(-) - -commit e41f00a561023bfaf3ba5ec83c0366013a140fc3 -Author: Kjartan Maraas -Date: Sun May 25 12:55:28 2003 +0000 - - Flush this - - po/no.po | 1421 +++++++++++++++++++++++++++++++++++--------------------------- - 1 file changed, 813 insertions(+), 608 deletions(-) - -commit a13c22de498a4d994644ee3e97a4ecabec42c805 -Author: Marco Pesenti Gritti -Date: Sat May 24 22:37:40 2003 +0000 - - Revert latest node changes. Parents nodes need to be saved first and it's - - 2003-05-25 Marco Pesenti Gritti - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_load), - (ephy_favicon_cache_save), (ephy_favicon_cache_init), - (ephy_favicon_cache_finalize): - * embed/ephy-history.c: (ephy_history_load), (ephy_history_save), - (ephy_history_init): - * lib/ephy-node-db.c: (ephy_node_db_get_property), - (ephy_node_db_set_property), (ephy_node_db_class_init), - (ephy_node_db_init), (ephy_node_db_finalize), (ephy_node_db_new), - (_ephy_node_db_remove_id): - * lib/ephy-node-db.h: - * lib/ephy-node.c: (ephy_node_save_to_xml): - * lib/ephy-node.h: - * lib/ephy-state.c: (ephy_states_load), (ephy_states_save), - (ensure_states): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_load), - (ephy_bookmarks_save), (ephy_bookmarks_init): - - Revert latest node changes. Parents nodes need to be saved - first and it's easier to do that in a not generic way :/ - - ChangeLog | 22 ++++++ - embed/ephy-favicon-cache.c | 60 ++++++++++++++-- - embed/ephy-history.c | 68 +++++++++++++++++- - lib/ephy-node-db.c | 152 +---------------------------------------- - lib/ephy-node-db.h | 12 +--- - lib/ephy-node.c | 4 +- - lib/ephy-node.h | 2 +- - lib/ephy-state.c | 45 ++++++++++-- - src/bookmarks/ephy-bookmarks.c | 73 +++++++++++++++++++- - 9 files changed, 259 insertions(+), 179 deletions(-) - -commit 5402d87b1b65023672ec302aca8203af0850f33e -Author: Christian Neumair -Date: Sat May 24 12:19:31 2003 +0000 - - Slightly updated German translation. Thanks to Christian Persch - for pointing out a small issue. - - po/ChangeLog | 6 ++ - po/de.po | 271 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 142 insertions(+), 135 deletions(-) - -commit ab25b91dc7b2d07a2762e799a7010d3f9438069c -Author: Marco Pesenti Gritti -Date: Sat May 24 08:51:04 2003 +0000 - - Update - - 2003-05-24 Marco Pesenti Gritti - - * lib/egg/eggradiotoolbutton.c: - * lib/egg/eggseparatortoolitem.c: - * lib/egg/eggtoggletoolbutton.c: - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolbar.h: - * lib/egg/eggtoolbutton.c: - * lib/egg/eggtoolbutton.h: - * lib/egg/eggtoolitem.c: - - Update - - ChangeLog | 13 ++++ - lib/egg/eggradiotoolbutton.c | 3 +- - lib/egg/eggseparatortoolitem.c | 15 ++--- - lib/egg/eggtoggletoolbutton.c | 38 ++++++++---- - lib/egg/eggtoolbar.c | 107 ++++++++++++++++++++++----------- - lib/egg/eggtoolbar.h | 1 - - lib/egg/eggtoolbutton.c | 133 ++++++++++++++++++++++++----------------- - lib/egg/eggtoolbutton.h | 3 - - lib/egg/eggtoolitem.c | 35 +++++++---- - 9 files changed, 220 insertions(+), 128 deletions(-) - -commit a98d9364cb5395aca5adc9fa4db219df7545ab98 -Author: Marco Pesenti Gritti -Date: Fri May 23 21:06:13 2003 +0000 - - Implement generic way to save/load db and make it low disk safe. - - 2003-05-23 Marco Pesenti Gritti - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_load), - (ephy_favicon_cache_save), (ephy_favicon_cache_init), - (ephy_favicon_cache_finalize): - * embed/ephy-history.c: (ephy_history_load), (ephy_history_save), - (ephy_history_init): - * lib/ephy-node-db.c: (ephy_node_db_set_version), - (ephy_node_db_get_property), (ephy_node_db_set_property), - (ephy_node_db_class_init), (ephy_node_db_init), - (ephy_node_db_finalize), (ephy_node_db_new), - (_ephy_node_db_remove_id), (ephy_node_db_load_from_xml), - (ephy_node_db_save_to_xml): - * lib/ephy-node-db.h: - * lib/ephy-node.c: (ephy_node_to_xml): - * lib/ephy-node.h: - * lib/ephy-state.c: (ephy_states_load), (ephy_states_save), - (ensure_states): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_load), - (ephy_bookmarks_save), (ephy_bookmarks_init), - (ephy_bookmarks_finalize): - - Implement generic way to save/load db and make it - low disk safe. - - ChangeLog | 25 +++++++ - embed/ephy-favicon-cache.c | 60 ++-------------- - embed/ephy-history.c | 68 +----------------- - lib/ephy-node-db.c | 152 ++++++++++++++++++++++++++++++++++++++++- - lib/ephy-node-db.h | 12 +++- - lib/ephy-node.c | 6 +- - lib/ephy-node.h | 2 +- - lib/ephy-state.c | 45 ++---------- - src/bookmarks/ephy-bookmarks.c | 75 ++------------------ - 9 files changed, 206 insertions(+), 239 deletions(-) - -commit bf20b4938c2e01f15d72dc2962c12400bb15d4d4 -Author: David Bordoley -Date: Fri May 23 13:50:29 2003 +0000 - - Activate the menu on button press down, like other menus. - - 2003-05-22 David Bordoley - - * src/bookmarks/ephy-topic-action.c: - (menu_deactivate_cb), (button_pressed_cb), - (connect_proxy): - - Activate the menu on button press down, like other menus. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-topic-action.c | 11 +++++++++++ - 2 files changed, 19 insertions(+) - -commit c4db125c559054c7d5bb5ffd302b303470ab03ba -Author: Marco Pesenti Gritti -Date: Thu May 22 19:19:43 2003 +0000 - - Revert embed dnd changes. They doesnt work properly. - - 2003-05-22 Marco Pesenti Gritti - - * src/ephy-notebook.c: (ephy_notebook_insert_page): - - Revert embed dnd changes. They doesnt work properly. - - ChangeLog | 6 ++++++ - src/ephy-notebook.c | 14 -------------- - 2 files changed, 6 insertions(+), 14 deletions(-) - -commit 12b4f94e6939dd7f69c67c19f3ca4068e506094e -Author: David Bordoley -Date: Thu May 22 18:37:55 2003 +0000 - - Disable Blink and Marquee, cuz they are annoying and non-standard. Don't - - 2003-05-22 David Bordoley - - * embed/mozilla/mozilla-embed-single.cpp: - (mozilla_set_default_prefs): - - Disable Blink and Marquee, cuz they are annoying and - non-standard. Don't fetch sidebar whats related stuff. - Line Wrap View->Source. CTRL-Mousewheel scrolls by one page. - Enable Image Auto-Resizing. Enable Browsing with the Caret. - - ChangeLog | 10 ++++++++++ - embed/mozilla/mozilla-embed-single.cpp | 21 +++++++++++++++++++++ - 2 files changed, 31 insertions(+) - -commit 99d3b20ac598df507e9394a2244c5b3145dde88a -Author: Christian Persch -Date: Thu May 22 17:50:15 2003 +0000 - - Don't set a border width on the zoom control, so that it fits on the - - 2003-05-22 Christian Persch - - * lib/widgets/ephy-zoom-control.c: (ephy_zoom_control_init): - - Don't set a border width on the zoom control, so that it - fits on the address toolbar. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-zoom-control.c | 1 - - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit c6e8d71d9d6e0deb28194cb036723ab214282ad9 -Author: Miloslav Trmac -Date: Thu May 22 09:36:29 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 430 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 215 insertions(+), 219 deletions(-) - -commit 41b43a067c024bb551139762bfb65b850b36075c -Author: Dmitry Mastrukov -Date: Thu May 22 08:42:20 2003 +0000 - - be.po: Updated Belarusian translation from Belarusian team . - - po/ChangeLog | 5 ++ - po/be.po | 273 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 148 insertions(+), 130 deletions(-) - -commit f344caca87716fbc46b7d94447cf20ee7aabfde6 -Author: Dmitry Mastrukov -Date: Thu May 22 04:21:19 2003 +0000 - - configure.in: Added be to ALL_LINGUAS. - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 92953da0f8159ac3962d444bf4b70bf5f86fab74 -Author: Dmitry Mastrukov -Date: Thu May 22 04:18:20 2003 +0000 - - be.po: Added Belarusian translation from Belarusian team . - - po/ChangeLog | 5 + - po/be.po | 4202 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 4207 insertions(+) - -commit 73c0aa7516a22fc361c82884bbdaf2228d6a1425 -Author: Christian Rose -Date: Wed May 21 21:46:17 2003 +0000 - - Updated Swedish translation. - - 2003-05-21 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 460 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 236 insertions(+), 228 deletions(-) - -commit c27659161ffabf18a7c537291c297382dba182e7 -Author: Xan Lopez -Date: Wed May 21 20:25:47 2003 +0000 - - Yet more new tab logic fixes. - - - Yet more new tab logic fixes. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-new-bookmark.c | 4 ++-- - src/ephy-window.c | 5 ++++- - 3 files changed, 16 insertions(+), 3 deletions(-) - -commit 537c11b20fd83ecf1194967fb6117be8061a22c6 -Author: Xan Lopez -Date: Wed May 21 19:26:35 2003 +0000 - - s/g_object_unref/ephy_node_unref/ - - - s/g_object_unref/ephy_node_unref/ - - ChangeLog | 7 +++++++ - embed/ephy-favicon-cache.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 489e50f1d4027e009243f3bd015350417d4f5758 -Author: Xan Lopez -Date: Wed May 21 19:05:36 2003 +0000 - - Fix according to new tab logic. - - - Fix according to new tab logic. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 3 ++- - src/session.c | 1 + - 3 files changed, 10 insertions(+), 1 deletion(-) - -commit 7fe7ce744bf7337232d55161d00fb1d1c89f6e99 -Author: Marco Pesenti Gritti -Date: Wed May 21 19:02:28 2003 +0000 - - Implement our own drag dest on the embed. Dnd of multiple urls on embed - - 2003-05-21 Marco Pesenti Gritti - - * src/ephy-notebook.c: (child_realize_cb), - (ephy_notebook_insert_page): - - Implement our own drag dest on the embed. Dnd of multiple - urls on embed now open them in tabs. - - ChangeLog | 8 ++++++++ - src/ephy-notebook.c | 14 ++++++++++++++ - 2 files changed, 22 insertions(+) - -commit 058908f9152b3ade2ad73427d1018c5479295bdb -Author: Christian Neumair -Date: Wed May 21 14:24:21 2003 +0000 - - Slightly updated German translation. - - po/de.po | 13 ++++++++----- - 1 file changed, 8 insertions(+), 5 deletions(-) - -commit fa9a11561b92f3ebc01388eecf9feaf6d27a9af2 -Author: Christian Neumair -Date: Wed May 21 14:23:09 2003 +0000 - - Add gettext call to l10nize string displayed in remaining column when - - * embed/downloader-view.c: (downloader_view_set_download_info): - - Add gettext call to l10nize string displayed in remaining column when - download is complete. - - ChangeLog | 7 +++++++ - embed/downloader-view.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 62666baa8d3eea73018678974e182199bfe6f642 -Author: David Bordoley -Date: Wed May 21 14:08:05 2003 +0000 - - s/address/page. This always bothered me. - - 2003-05-21 David Bordoley - - * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct): - - s/address/page. This always bothered me. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-new-bookmark.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit c6424dee454f3f06602ee84d296be897fe1e69f1 -Author: Christian Neumair -Date: Wed May 21 13:24:40 2003 +0000 - - Forgot to commit. - - data/epiphany.schemas.in | 11 ----------- - 1 file changed, 11 deletions(-) - -commit cbdbcf9f249c25a2e2127ce2adb0aaf37a18524e -Author: Christian Neumair -Date: Wed May 21 12:23:56 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 1254 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 597 insertions(+), 661 deletions(-) - -commit 4158114036336446c7c4f793db0ae031dfa558c2 -Author: Christian Neumair -Date: Wed May 21 12:15:32 2003 +0000 - - data/glade/epiphany.glade data/glade/prefs-dialog.glade - - * data/glade/epiphany.glade - * data/glade/prefs-dialog.glade - * data/epiphany.schemas.in - * embed/downloader-view.c - * embed/downloader-view.h: - - Applied patch from #113367 which inter alia removes the keep_open - option from the download manager and does various download UI tweakage. - - ChangeLog | 11 ++++++ - data/glade/epiphany.glade | 91 +++++++++++++++++-------------------------- - data/glade/prefs-dialog.glade | 2 +- - embed/downloader-view.c | 46 +++++++--------------- - embed/downloader-view.h | 2 - - 5 files changed, 60 insertions(+), 92 deletions(-) - -commit 8c7107742c5058841b22e52535a5ab316e44ad6e -Author: Marco Pesenti Gritti -Date: Wed May 21 11:15:52 2003 +0000 - - Cleanup new tab logic, and ever use window for new instances. - - 2003-05-21 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (cmd_open_bookmarks_in_tabs), - (ephy_bookmarks_editor_node_activated_cb): - * src/ephy-automation.c: (impl_ephy_automation_loadurl): - * src/ephy-history-window.c: (cmd_open_bookmarks_in_tabs), - (cmd_open_bookmarks_in_browser): - * src/ephy-notebook.c: (notebook_drag_data_received_cb): - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-shell.h: - * src/popup-commands.c: (popup_cmd_link_in_new_window), - (popup_cmd_link_in_new_tab), (popup_cmd_image_in_new_tab), - (popup_cmd_image_in_new_window), (popup_cmd_frame_in_new_tab), - (popup_cmd_frame_in_new_window): - * src/window-commands.c: (window_cmd_file_new_window), - (window_cmd_file_new_tab), (window_cmd_view_page_source): - - Cleanup new tab logic, and ever use window for new instances. - - ChangeLog | 20 +++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 3 +- - src/ephy-automation.c | 22 +++++------- - src/ephy-history-window.c | 3 +- - src/ephy-notebook.c | 2 +- - src/ephy-shell.c | 66 +++++++++++++++++------------------ - src/ephy-shell.h | 31 +++++++++------- - src/popup-commands.c | 6 ++++ - src/window-commands.c | 10 +++--- - 9 files changed, 95 insertions(+), 68 deletions(-) - -commit 811b8c4ba8f54cfa747db421adc07a35b0b30d43 -Author: Christian Rose -Date: Wed May 21 11:11:54 2003 +0000 - - Updated Swedish translation. - - 2003-05-21 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++++ - po/sv.po | 47 ++++++++++++++++++++++++++++++++++------------- - 2 files changed, 38 insertions(+), 13 deletions(-) - -commit 45a14654f55a8d6270fe483e2fdd40b88c246275 -Author: Marco Pesenti Gritti -Date: Wed May 21 10:08:25 2003 +0000 - - Do not free memory is not a good idea - - 2003-05-21 Marco Pesenti Gritti - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_save): - - Do not free memory is not a good idea - - * lib/ephy-node-db.c: (ephy_node_db_set_name): - - Free it two times is even worst - - ChangeLog | 10 ++++++++++ - embed/ephy-favicon-cache.c | 2 ++ - lib/ephy-node-db.c | 3 +-- - 3 files changed, 13 insertions(+), 2 deletions(-) - -commit 8ed5b305fdbaa74d7389ac9eb3baf209709296b1 -Author: Miloslav Trmac -Date: Wed May 21 08:31:49 2003 +0000 - - Update Czech translaiton - - po/ChangeLog | 4 + - po/cs.po | 558 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 313 insertions(+), 249 deletions(-) - -commit 3389ee02736c231e61877abd5d9663e57f27a276 -Author: Marco Pesenti Gritti -Date: Tue May 20 20:52:47 2003 +0000 - - Fix nodes drag and drop. Make double click select the whole address in - - 2003-05-20 Marco Pesenti Gritti - - * lib/ephy-dnd.c: (ephy_dnd_drag_data_get), - (ephy_dnd_node_list_extract_nodes): - * lib/ephy-node-db.c: (ephy_node_db_set_name), (node_from_id_real), - (ephy_node_db_get_name): - * lib/ephy-node-db.h: - * lib/ephy-node.c: (ephy_node_get_db): - * lib/ephy-node.h: - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_button_press_event_cb), - (ephy_location_entry_build): - * lib/widgets/ephy-tree-model-sort.c: (each_node_get_data_binder): - - Fix nodes drag and drop. - Make double click select the whole address in toolbar entry. - - ChangeLog | 31 +++++++++++++++++++++++++++++++ - lib/ephy-dnd.c | 13 +++++++------ - lib/ephy-node-db.c | 8 +++++++- - lib/ephy-node-db.h | 2 ++ - lib/ephy-node.c | 6 ++++++ - lib/ephy-node.h | 2 ++ - lib/widgets/ephy-location-entry.c | 14 ++++++++++++++ - lib/widgets/ephy-tree-model-sort.c | 6 +++++- - 8 files changed, 74 insertions(+), 8 deletions(-) - -commit def97c979d02aed973fb1443d89ab81f1d570b7c -Author: Christian Neumair -Date: Tue May 20 19:36:08 2003 +0000 - - Mark time format strings for translation. - - * embed/downloader-view.c: (format_time): - - Mark time format strings for translation. - - ChangeLog | 6 ++++++ - embed/downloader-view.c | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 23a69d5f21a27d82681919c131729015339d9410 -Author: Xan Lopez -Date: Tue May 20 18:41:08 2003 +0000 - - Make find dialog unresizable. - - - Make find dialog unresizable. - - ChangeLog | 7 +++++++ - data/glade/epiphany.glade | 2 +- - embed/find-dialog.c | 17 ----------------- - 3 files changed, 8 insertions(+), 18 deletions(-) - -commit 1a981a63d5abf16aeff8c1d7f53bd6f554776955 -Author: Christian Rose -Date: Tue May 20 14:28:59 2003 +0000 - - Added missing files. Updated Swedish translation. - - 2003-05-20 Christian Rose - - * POTFILES.in: Added missing files. - * sv.po: Updated Swedish translation. - - po/ChangeLog | 5 + - po/POTFILES.in | 16 +- - po/sv.po | 536 ++++++++++++++++++++++++++++++--------------------------- - 3 files changed, 300 insertions(+), 257 deletions(-) - -commit a6128e9a18af250523ca79fded63a1abf6e9fc18 -Author: Miloslav Trmac -Date: Tue May 20 13:49:00 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 674 +++++++++++++++++++++++++---------------------------------- - 2 files changed, 284 insertions(+), 394 deletions(-) - -commit 82607df04e5bcb608cf4e9ab3f12e2d84ccc5367 -Author: Pablo Gonzalo del Campo -Date: Tue May 20 13:14:37 2003 +0000 - - Updated Spanish translation by Francisco Javier Fernandez - - 2003-05-20 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier Fernandez - - po/ChangeLog | 5 + - po/es.po | 1160 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 574 insertions(+), 591 deletions(-) - -commit 754c3261279b58118b16cfe9018613f058b59c9b -Author: Christian Persch -Date: Tue May 20 11:46:28 2003 +0000 - - Simplified and reorganised zoom. Implement a zoom control for the toolbar. - - 2003-05-19 Christian Persch - - Simplified and reorganised zoom. Implement a zoom control for the - toolbar. - - * lib/widgets/ephy-zoom-action.h: - * lib/widgets/ephy-zoom-action.c: - * lib/widgets/ephy-zoom-control.h: - * lib/widgets/ephy-zoom-control.c: - - New. A simple zoom control and a corresponding egg action. - - * lib/ephy-zoom.h: - * lib/ephy-zoom.c: - - New. Define the supported zoom levels, plus some helper functions. - - * data/ui/epiphany-toolbar.xml.in: - * src/toolbar.h: - * src/toolbar.c: (toolbar_update_zoom_control), - (zoom_to_level_cb), (toolbar_setup_actions): - - Hook up zoom control. - - * src/ephy-window.c: (toolbar_update_zoom_control): - - New. Updates toolbar zoom control and menu item sensitivity. - - * embed/mozilla/mozilla-embed.c: (impl_zoom_set, impl_zoom_get): - * embed/ephy-embed.[ch]: (zoom_set), (zoom_get), (ephy_embed_zoom_set), - (ephy_embed_zoom_get): - * lib/ephy-marshal.list: - * src/ephy-nautilus-view.c: (gnv_embed_zoom_change_cb), - (gnv_zoomable_set_zoom_level_cb): - * src/ephy-tab.c: (ephy_tab_zoom_changed_cb): - * src/ephy-window.c: (ephy_window_set_zoom): - - Use float zoom factor instead of int percent for zoom. - - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init), - (ephy_nautilus_view_class_init), (gnv_zoomable_set_zoom_level_cb), - (gnv_zoomable_zoom_in_cb), (gnv_zoomable_zoom_out_cb), - (gnv_zoomable_zoom_to_default_cb), (gnv_embed_zoom_change_cb): - * src/window-commands.c: (window_cmd_view_zoom_in), - (window_cmd_view_zoom_out), (window_cmd_view_zoom_normal): - - Simplified; use ephy-zoom.h where appropriate. - - ChangeLog | 48 ++++++ - embed/ephy-embed.c | 8 +- - embed/ephy-embed.h | 8 +- - embed/mozilla/mozilla-embed.cpp | 21 +-- - lib/Makefile.am | 4 +- - lib/ephy-marshal.list | 1 + - lib/ephy-zoom.c | 57 +++++++ - lib/ephy-zoom.h | 64 ++++++++ - lib/widgets/Makefile.am | 7 +- - lib/widgets/ephy-zoom-action.c | 223 ++++++++++++++++++++++++++ - lib/widgets/ephy-zoom-action.h | 60 +++++++ - lib/widgets/ephy-zoom-control.c | 344 ++++++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-zoom-control.h | 66 ++++++++ - src/ephy-nautilus-view.c | 98 ++++++------ - src/ephy-tab.c | 2 +- - src/ephy-window.c | 67 ++++++-- - src/ephy-window.h | 2 +- - src/toolbar.c | 27 ++++ - src/toolbar.h | 2 + - src/window-commands.c | 24 +-- - 20 files changed, 1023 insertions(+), 110 deletions(-) - -commit bc555495c56dc8836db5ac7a4f3f6b5772e315d6 -Author: Marco Pesenti Gritti -Date: Tue May 20 11:46:23 2003 +0000 - - *** empty log message *** - - data/ui/epiphany-toolbar.xml.in | 1 - - 1 file changed, 1 deletion(-) - -commit 8a40e469167960d29916ae6f0a97a89a2e76110b -Author: Christian Persch -Date: Tue May 20 11:46:23 2003 +0000 - - Simplified and reorganised zoom. Implement a zoom control for the toolbar. - - 2003-05-19 Christian Persch - - Simplified and reorganised zoom. Implement a zoom control for the - toolbar. - - * lib/widgets/ephy-zoom-action.h: - * lib/widgets/ephy-zoom-action.c: - * lib/widgets/ephy-zoom-control.h: - * lib/widgets/ephy-zoom-control.c: - - New. A simple zoom control and a corresponding egg action. - - * lib/ephy-zoom.h: - * lib/ephy-zoom.c: - - New. Define the supported zoom levels, plus some helper functions. - - * data/ui/epiphany-toolbar.xml.in: - * src/toolbar.h: - * src/toolbar.c: (toolbar_update_zoom_control), - (zoom_to_level_cb), (toolbar_setup_actions): - - Hook up zoom control. - - * src/ephy-window.c: (toolbar_update_zoom_control): - - New. Updates toolbar zoom control and menu item sensitivity. - - * embed/mozilla/mozilla-embed.c: (impl_zoom_set, impl_zoom_get): - * embed/ephy-embed.[ch]: (zoom_set), (zoom_get), (ephy_embed_zoom_set), - (ephy_embed_zoom_get): - * lib/ephy-marshal.list: - * src/ephy-nautilus-view.c: (gnv_embed_zoom_change_cb), - (gnv_zoomable_set_zoom_level_cb): - * src/ephy-tab.c: (ephy_tab_zoom_changed_cb): - * src/ephy-window.c: (ephy_window_set_zoom): - - Use float zoom factor instead of int percent for zoom. - - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init), - (ephy_nautilus_view_class_init), (gnv_zoomable_set_zoom_level_cb), - (gnv_zoomable_zoom_in_cb), (gnv_zoomable_zoom_out_cb), - (gnv_zoomable_zoom_to_default_cb), (gnv_embed_zoom_change_cb): - * src/window-commands.c: (window_cmd_view_zoom_in), - (window_cmd_view_zoom_out), (window_cmd_view_zoom_normal): - - Simplified; use ephy-zoom.h where appropriate. - - data/ui/epiphany-toolbar.xml.in | 1 + - 1 file changed, 1 insertion(+) - -commit 672d06e7f172da3fdcdafb1411d42092ef9f2087 -Author: Marco Pesenti Gritti -Date: Tue May 20 10:47:30 2003 +0000 - - Fix some warnings. Go back hardcoding defaults in the code, mozilla pref - - 2003-05-20 Marco Pesenti Gritti - - * embed/downloader-view.c: (downloader_view_build_ui): - * embed/mozilla/Makefile.am: - * embed/mozilla/default-prefs.js: - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-prefs.cpp: - * embed/mozilla/mozilla-prefs.h: - * lib/ephy-dnd.c: (ephy_dnd_node_list_extract_nodes): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/ephy-history-window.c: (ephy_history_window_construct): - - Fix some warnings. - Go back hardcoding defaults in the code, mozilla pref api sucks :/ - Cleanup mozilla prefs code, we can use mozilla api directly now, - no need for a wrapper like in galeon1. - - ChangeLog | 19 ++++ - embed/downloader-view.c | 2 +- - embed/mozilla/Makefile.am | 7 -- - embed/mozilla/default-prefs.js | 27 ----- - embed/mozilla/mozilla-embed-single.cpp | 60 ++++++++-- - embed/mozilla/mozilla-notifiers.cpp | 62 +++++++++- - embed/mozilla/mozilla-prefs.cpp | 200 --------------------------------- - embed/mozilla/mozilla-prefs.h | 44 -------- - lib/ephy-dnd.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - 11 files changed, 137 insertions(+), 290 deletions(-) - -commit b5959ba28d003e0945ae587761f2e891266dcdfd -Author: Christian Rose -Date: Tue May 20 09:26:00 2003 +0000 - - Updated Swedish translation. - - 2003-05-20 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 605 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 320 insertions(+), 289 deletions(-) - -commit 0c843e88a595d6191a043426b99b49f65d2b24e4 -Author: Christian Neumair -Date: Mon May 19 19:53:28 2003 +0000 - - Made (hopefully) all dialogs HIG compliant, at least when it comes to spacing. - Last patch of the #112781 patch series. - - ChangeLog | 14 + - data/glade/epiphany.glade | 188 ++++--- - data/glade/prefs-dialog.glade | 587 +++++++++++---------- - data/glade/print.glade | 880 ++++++++++++++++--------------- - src/bookmarks/ephy-bookmark-properties.c | 7 +- - src/bookmarks/ephy-new-bookmark.c | 15 +- - src/pdm-dialog.c | 8 +- - src/session.c | 5 +- - src/window-commands.c | 7 + - 9 files changed, 887 insertions(+), 824 deletions(-) - -commit e47814bfadf34a954531ebbb61a45c4730ccc4d5 -Author: David Bordoley -Date: Mon May 19 19:46:35 2003 +0000 - - Use stock icons instead of the files directly to set window border icons. - - 2003-05-19 David Bordoley - - * embed/downloader-view.c: (downloader_view_build_ui): - * lib/ephy-stock-icons.c: (ephy_stock_icons_init): - * lib/ephy-stock-icons.h: - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - - Use stock icons instead of the files directly to set window - border icons. - - ChangeLog | 12 ++++++++++++ - embed/downloader-view.c | 10 +++++++--- - lib/ephy-stock-icons.c | 3 ++- - lib/ephy-stock-icons.h | 5 +++-- - src/bookmarks/ephy-bookmarks-editor.c | 12 +++++++----- - src/ephy-history-window.c | 10 +++++++--- - 6 files changed, 38 insertions(+), 14 deletions(-) - -commit 5a4aa1c8bb9ff82dffd8ce0c435720c460fc782c -Author: David Bordoley -Date: Mon May 19 19:35:44 2003 +0000 - - Shortest patch ever!!! Kill the new page pref. Make Seth happy :) - - - 2003-05-19 David Bordoley - - * data/epiphany.schemas.in: - * data/glade/prefs-dialog.glade: - * lib/ephy-prefs.h: - * src/ephy-shell.c: (build_homepage_url): - * src/pref-dialog.c: (properties[]) - - Shortest patch ever!!! Kill the new page pref. - Make Seth happy :) - - ChangeLog | 11 ++++ - data/epiphany.schemas.in | 12 ---- - data/glade/prefs-dialog.glade | 137 ------------------------------------------ - lib/ephy-prefs.h | 1 - - src/ephy-shell.c | 5 +- - src/prefs-dialog.c | 2 - - 6 files changed, 13 insertions(+), 155 deletions(-) - -commit cc8f3060b3c57453f2128a573391add2a0bb47d4 -Author: Marco Pesenti Gritti -Date: Mon May 19 17:25:12 2003 +0000 - - 2003-05-19 Marco Pesenti Gritti - - * lib/Makefile.am: - * lib/ephy-dnd.c: (ephy_dnd_node_list_extract_nodes): - * lib/ephy-node.c: (write_lock_to_read_lock), - (read_lock_to_write_lock), (lock_gdk), (unlock_gdk), (callback), - (ephy_node_emit_signal), (ephy_node_finalize), (real_remove_child), - (remove_child), (signal_object_weak_notify), - (unref_signal_objects), (ephy_node_dispose), (ephy_node_new), - (ephy_node_new_with_id), (ephy_node_get_id), (ephy_node_ref), - (ephy_node_unref), (ephy_node_freeze), (ephy_node_thaw), - (child_changed), (real_set_property), (ephy_node_set_property), - (ephy_node_get_property), (ephy_node_get_property_string), - (ephy_node_get_property_boolean), (ephy_node_get_property_long), - (ephy_node_get_property_int), (ephy_node_get_property_double), - (ephy_node_get_property_float), (ephy_node_get_property_node), - (save_parent), (ephy_node_save_to_xml), (real_add_child), - (ephy_node_new_from_xml), (ephy_node_add_child), - (ephy_node_remove_child), (ephy_node_has_child), - (ephy_node_real_get_child_index), (ephy_node_sort_children), - (ephy_node_reorder_children), (ephy_node_get_children), - (ephy_node_get_n_children), (ephy_node_get_nth_child), - (get_child_index_real), (ephy_node_get_child_index), - (ephy_node_get_next_child), (ephy_node_get_previous_child), - (ephy_node_signal_connect_object), (ephy_node_signal_disconnect): - * lib/ephy-node.h: - * lib/ephy-state.c: (ephy_states_load), (ensure_states), - (ephy_state_add_window), (ephy_state_add_paned), (ephy_state_save): - * lib/widgets/ephy-node-view.c: (ephy_node_view_class_init), - (ephy_node_view_selection_changed_cb), - (ephy_node_view_set_property), (ephy_node_view_get_property), - (ephy_node_view_remove): - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_class_init), - (ephy_tree_model_node_set_property), - (ephy_tree_model_node_get_property), - (ephy_tree_model_node_get_value), (ephy_tree_model_node_get_path), - (ephy_tree_model_node_iter_next), - (ephy_tree_model_node_node_from_iter): - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_init), (ephy_bookmark_action_new): - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_class_init), - (ephy_bookmark_properties_set_property): - * src/bookmarks/ephy-bookmarks-editor.c: - (cmd_show_in_bookmarks_bar), (cmd_open_bookmarks_in_tabs), - (cmd_open_bookmarks_in_browser), (cmd_delete), - (cmd_bookmark_properties), (cmd_copy), - (ephy_bookmarks_editor_node_activated_cb), - (ephy_bookmarks_editor_update_menu), - - ChangeLog | 86 +++ - embed/ephy-favicon-cache.c | 32 +- - embed/ephy-history.c | 64 +- - lib/Makefile.am | 2 + - lib/ephy-dnd.c | 8 +- - lib/ephy-node-db.c | 292 ++++++++ - lib/ephy-node-db.h | 73 ++ - lib/ephy-node.c | 1181 +++++++++++------------------- - lib/ephy-node.h | 72 +- - lib/ephy-state.c | 26 +- - lib/widgets/ephy-node-view.c | 31 +- - lib/widgets/ephy-tree-model-node.c | 63 +- - src/bookmarks/ephy-bookmark-action.c | 8 +- - src/bookmarks/ephy-bookmark-properties.c | 11 +- - src/bookmarks/ephy-bookmarks-editor.c | 25 +- - src/bookmarks/ephy-bookmarks-export.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 51 +- - src/bookmarks/ephy-bookmarks.h | 7 +- - src/bookmarks/ephy-topic-action.c | 23 +- - src/bookmarks/ephy-topics-selector.c | 13 +- - src/ephy-history-window.c | 11 +- - src/ephy-shell.c | 2 - - src/ephy-toolbars-model.c | 4 +- - 23 files changed, 1109 insertions(+), 978 deletions(-) - -commit f9f7a48a13d9e876cb641af773a2eb88a4a0aaf6 -Author: Kwok-Koon Cheung -Date: Mon May 19 15:07:13 2003 +0000 - - fix typo - - po/zh_TW.po | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -commit 5240d64990710a9cf28b9a8b906e93eeb4181bff -Author: Christian Rose -Date: Mon May 19 13:45:27 2003 +0000 - - Updated Swedish translation. - - 2003-05-19 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 1022 +++++++++++++++++++++++++++++----------------------------- - 2 files changed, 516 insertions(+), 510 deletions(-) - -commit afa1d5df9f208dc554cdb3ede0ab07f85be96650 -Author: David Bordoley -Date: Mon May 19 12:41:52 2003 +0000 - - Remove fine grain color settings. Always use the system theme colors in - - 2003-05-19 David Bordoley - - * data/epiphany.schemas.in: - * data/glade/prefs-dialog.glade: - * embed/ephy-embed-prefs.h: - * embed/mozilla/default-prefs.js: - * embed/mozilla/mozilla-notifiers.cpp: (conversion_table []): - * src/prefs-dialog.c: (properties []): - - Remove fine grain color settings. Always use the system theme - colors in the case where a page doesn't set it own colors. - - ChangeLog | 12 ++ - data/epiphany.schemas.in | 44 ------ - data/glade/prefs-dialog.glade | 297 +----------------------------------- - embed/ephy-embed-prefs.h | 5 - - embed/mozilla/default-prefs.js | 3 + - embed/mozilla/mozilla-notifiers.cpp | 5 - - src/prefs-dialog.c | 10 -- - 7 files changed, 16 insertions(+), 360 deletions(-) - -commit cd6a565de9af99b743571a448ee9683ed5363c0f -Author: Kwok-Koon Cheung -Date: Mon May 19 00:32:19 2003 +0000 - - Updated traditional Chinese translation. - - * zh_TW.po: Updated traditional Chinese translation. - - po/ChangeLog | 4 + - po/zh_TW.po | 1970 +++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 1118 insertions(+), 856 deletions(-) - -commit a8c21b82947b1e4568670bc880e83a52a0741e7c -Author: Marco Pesenti Gritti -Date: Sun May 18 19:42:06 2003 +0000 - - Fix uninstallation - - 2003-05-18 Marco Pesenti Gritti - - * Makefile.am: - * data/Makefile.am: - * data/starthere/Makefile.am: - - Fix uninstallation - - ChangeLog | 8 ++++++++ - Makefile.am | 9 +++++++++ - data/Makefile.am | 3 +-- - data/starthere/Makefile.am | 1 + - 4 files changed, 19 insertions(+), 2 deletions(-) - -commit ea50f388412c9c4d880bea7aa770d079b8c9141c -Author: Marco Pesenti Gritti -Date: Sun May 18 17:11:24 2003 +0000 - - 0.6.1 - - 2003-05-18 Marco Pesenti Gritti - - * NEWS: - * configure.in: - - 0.6.1 - - * embed/find-dialog.c: (dialog_constrain_height): - - Missing cast. - - * lib/ephy-start-here.c: - - Missing header. - - ChangeLog | 15 +++++++++++++++ - NEWS | 10 ++++++++++ - configure.in | 2 +- - embed/find-dialog.c | 7 ++++--- - lib/ephy-start-here.c | 2 +- - 5 files changed, 31 insertions(+), 5 deletions(-) - -commit c5202864540e0ac530dde2e4eb18a7e22fe699d8 -Author: Miloslav Trmac -Date: Sun May 18 12:36:28 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 610 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 313 insertions(+), 301 deletions(-) - -commit 1bc99b2754010594f2abd1e93573f3ad975bc4d6 -Author: Xan Lopez -Date: Sun May 18 09:06:46 2003 +0000 - - Updated - - - Updated - - ChangeLog | 4 ++++ - NEWS | 12 +++++++----- - 2 files changed, 11 insertions(+), 5 deletions(-) - -commit e1e6685df476caa9ca2598fa2b6aac960a470e23 -Author: Takayuki KUSANO -Date: Sun May 18 04:14:28 2003 +0000 - - Updated Japanese translation. - - * ja.po: Updated Japanese translation. - - po/ChangeLog | 4 + - po/ja.po | 2137 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 1245 insertions(+), 896 deletions(-) - -commit e666bba340f4b0d10750cdcbea9ba3c3dbe31c02 -Author: Marco Pesenti Gritti -Date: Sat May 17 23:27:30 2003 +0000 - - update for 0.6.1, feel free to improve - - 2003-05-18 Marco Pesenti Gritti - - * NEWS: update for 0.6.1, feel free to improve - - ChangeLog | 4 ++++ - NEWS | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 69 insertions(+) - -commit 86aba5d21023eb60fe1357cea66c8bc553f51bde -Author: Xan Lopez -Date: Sat May 17 15:44:53 2003 +0000 - - Do not allow to resize the dialog vertically, fixes #112727. Remove unused - - - Do not allow to resize the dialog vertically, fixes #112727. - Remove unused header. - - ChangeLog | 10 ++++++++++ - embed/find-dialog.c | 21 ++++++++++++++++++++- - embed/mozilla/FilePicker.cpp | 1 - - 3 files changed, 30 insertions(+), 2 deletions(-) - -commit 36b6b34ca77a6349d90032e537d738e0233b7220 -Author: Marco Pesenti Gritti -Date: Sat May 17 13:47:55 2003 +0000 - - Use gtk api for fullscreen, not wm directly - - 2003-05-17 Marco Pesenti Gritti - - * src/ephy-window.c: (ephy_window_set_chrome): - - Use gtk api for fullscreen, not wm directly - - ChangeLog | 6 ++++++ - src/ephy-window.c | 61 ++++++++----------------------------------------------- - 2 files changed, 14 insertions(+), 53 deletions(-) - -commit 89064048e1d2895c16b0681de6692a12534a3a4d -Author: Christian Neumair -Date: Sat May 17 13:12:36 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 1269 ++++++++++++++++++++++++++++------------------------------ - 2 files changed, 617 insertions(+), 656 deletions(-) - -commit fb2090099ff43e090a3bc4eabc7a6e8e6952b31d -Author: Christian Neumair -Date: Sat May 17 13:01:48 2003 +0000 - - Capitalized "Toolbar Editor" in the toolbar editor window's title. - - ChangeLog | 4 ++++ - src/window-commands.c | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit da4bacb5a3de0dafe863ea82aea78d2e40731730 -Author: Christian Neumair -Date: Sat May 17 12:43:34 2003 +0000 - - Fixed many issues mentioned in #112781. - - ChangeLog | 66 ++++++++++++++++++++++++++++++++ - data/starthere/index.xml.in | 5 ++- - data/starthere/section.xsl | 6 ++- - data/starthere/smartbookmarks.xml.in | 11 +++--- - data/ui/epiphany-ui.xml.in | 4 +- - embed/downloader-view.c | 10 +++-- - embed/ephy-embed-event.c | 1 - - embed/ephy-embed-persist.c | 2 - - embed/ephy-embed-utils.c | 4 ++ - embed/ephy-history.c | 6 ++- - embed/mozilla/mozilla-i18n.c | 2 +- - embed/mozilla/mozilla-notifiers.cpp | 4 +- - lib/eel-gconf-extensions.c | 2 +- - lib/ephy-file-helpers.c | 2 +- - lib/ephy-gui.c | 6 ++- - lib/ephy-node.c | 2 +- - lib/ephy-start-here.c | 6 ++- - lib/ephy-string.c | 8 +++- - lib/widgets/ephy-autocompletion-window.c | 1 - - lib/widgets/ephy-node-view.c | 1 - - lib/widgets/ephy-tree-model-node.c | 1 - - src/bookmarks/ephy-bookmark-action.c | 6 ++- - src/bookmarks/ephy-bookmark-properties.c | 6 ++- - src/bookmarks/ephy-bookmarks-editor.c | 6 ++- - src/bookmarks/ephy-bookmarks.c | 6 ++- - src/bookmarks/ephy-new-bookmark.c | 6 ++- - src/bookmarks/ephy-topic-action.c | 4 ++ - src/ephy-encoding-menu.c | 2 +- - src/ephy-favorites-menu.c | 3 +- - src/ephy-go-action.c | 8 +++- - src/ephy-history-window.c | 6 ++- - src/ephy-notebook.c | 6 ++- - src/ephy-window.c | 2 +- - src/pdm-dialog.c | 13 +++++-- - src/ppview-toolbar.c | 3 ++ - src/prefs-dialog.c | 10 ++--- - src/session.c | 6 ++- - src/toolbar.c | 4 ++ - 38 files changed, 195 insertions(+), 52 deletions(-) - -commit e5d335763657c0ebf4d464f4bc1d81542220141b -Author: David Bordoley -Date: Sat May 17 12:08:43 2003 +0000 - - Marco Pesenti Gritti - - 2003-05-17 David Bordoley - Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml.in: - * src/Makefile.am: - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item): - * src/ephy-notebook.c: (ephy_notebook_class_init), - (ephy_notebook_move_page), (move_tab), - (notebook_drag_data_received_cb), (ephy_notebook_init), - (ephy_notebook_set_page_status), (update_tabs_visibility), - (ephy_notebook_insert_page), (ephy_notebook_remove_page), - (ephy_notebook_set_page_title): - * src/ephy-notebook.h: - * src/ephy-tabs-menu.c: (ephy_tabs_menu_class_init), - (ephy_tabs_menu_init), (ephy_tabs_menu_clean), - (ephy_tabs_menu_finalize_impl), (ephy_tabs_menu_set_property), - (ephy_tabs_menu_get_property), (ephy_tabs_menu_new), - (ephy_tabs_menu_verb_cb), (ephy_tabs_menu_set_action_accelerator), - (ephy_tabs_menu_rebuild), (ephy_tabs_menu_update): - * src/ephy-tabs-menu.h: - * src/ephy-window.c: (setup_window), - (update_tabs_menu_sensitivity), (ephy_window_tabs_changed_cb), - (setup_notebook), (ephy_window_init), (ephy_window_finalize), - (ephy_window_update_control), (ephy_window_update_all_controls), - (ephy_window_notebook_switch_page_cb): - * src/ephy-window.h: - * src/window-commands.c: (window_cmd_tabs_move_left), - (window_cmd_tabs_move_right), (window_cmd_tabs_detach): - - Implement a list of tabs at the bottom of tabs menu. - Add a changed signal to the notebook and use it to update - list and sensitivity. - - ChangeLog | 33 ++++ - data/ui/epiphany-ui.xml.in | 3 + - src/Makefile.am | 2 + - src/bookmarks/ephy-bookmark-action.c | 1 + - src/ephy-notebook.c | 79 ++++---- - src/ephy-notebook.h | 1 + - src/ephy-tabs-menu.c | 340 +++++++++++++++++++++++++++++++++++ - src/ephy-tabs-menu.h | 61 +++++++ - src/ephy-window.c | 130 ++++++-------- - src/ephy-window.h | 1 - - src/window-commands.c | 11 +- - 11 files changed, 550 insertions(+), 112 deletions(-) - -commit 452a329409d547296f6d79fa902ddba45a8286c8 -Author: Christian Persch -Date: Sat May 17 10:50:15 2003 +0000 - - Make it utf-8 safe. Fixes bug 113114. - - 2003-05-16 Christian Persch - - * lib/ephy-string.h: (ephy_string_shorten): - - Make it utf-8 safe. Fixes bug 113114. - - ChangeLog | 6 ++++++ - lib/ephy-string.c | 37 ++++++++++++++++++------------------- - 2 files changed, 24 insertions(+), 19 deletions(-) - -commit 83cfb6db38febe9509e98e12f1f5ff396fd2d75f -Author: Pablo Gonzalo del Campo -Date: Fri May 16 12:23:23 2003 +0000 - - Updated Spanish translation by Francisco Javier Fernandez - - 2003-05-16 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier Fernandez - - po/ChangeLog | 5 + - po/es.po | 1253 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 697 insertions(+), 561 deletions(-) - -commit 87cf61940185d8dce75803451e7398f91ceed3b7 -Author: Miloslav Trmac -Date: Fri May 16 10:06:18 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 + - po/cs.po | 247 +++++++++++++++++++++-------------------------------------- - 2 files changed, 93 insertions(+), 158 deletions(-) - -commit 009e7ca86cdd95808f51d64b1d5286d589e7669b -Author: Christian Rose -Date: Thu May 15 22:02:57 2003 +0000 - - Updated Swedish translation. - - 2003-05-16 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 291 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 145 insertions(+), 150 deletions(-) - -commit da6ce6fd629b047caf683a1f6007326af6174c42 -Author: David Bordoley -Date: Thu May 15 16:25:11 2003 +0000 - - Remove unused history prefs and filtering prefs. - - 2003-05-15 David Bordoley - - * data/epiphany.schemas.in: - - Remove unused history prefs and filtering prefs. - - ChangeLog | 6 +++ - data/epiphany.schemas.in | 95 +----------------------------------------------- - 2 files changed, 7 insertions(+), 94 deletions(-) - -commit b1181741dc793b50081915e6132530e3f43a1432 -Author: David Bordoley -Date: Thu May 15 16:12:26 2003 +0000 - - Add elipses to rename menu entry. - - 2003-05-15 David Bordoley - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmark_popup_entries []): - - Add elipses to rename menu entry. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 61441046e925a8abd1cf8ba9580309504c1903d9 -Author: Miloslav Trmac -Date: Thu May 15 09:46:25 2003 +0000 - - Update Czech translation - - po/ChangeLog | 4 ++ - po/cs.po | 127 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 76 insertions(+), 55 deletions(-) - -commit 9c70fee1396ce6235517729912bb19ab405bf7d9 -Author: Christian Rose -Date: Thu May 15 08:57:04 2003 +0000 - - Updated Swedish translation. - - 2003-05-15 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++++ - po/sv.po | 53 ++++++++++++++++++++++++++++------------------------- - 2 files changed, 32 insertions(+), 25 deletions(-) - -commit eeaf48fd45a69393fdb7ce8d9d2c06a089edde9c -Author: Ole Laursen -Date: Wed May 14 21:04:12 2003 +0000 - - Updated Danish translation. - - 2003-05-14 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 ++ - po/da.po | 160 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 97 insertions(+), 67 deletions(-) - -commit 4aa40856b87eee28bfb74cb6e1f2a09543f98608 -Author: Miloslav Trmac -Date: Wed May 14 14:52:48 2003 +0000 - - Add Czech translation - Add cs to ALL_LINGUAS in configure.in - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/cs.po | 3053 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 3062 insertions(+), 1 deletion(-) - -commit 9d573dc9d9f047d1ec4bbb0776f3c7bc5e83768e -Author: David Bordoley -Date: Wed May 14 13:41:46 2003 +0000 - - Add some flags so that we can choose to save position or size or both. - - 2003-05-14 David Bordoley - - * lib/ephy-state.c: (ephy_state_add_window): - * lib/ephy-state.h: (EphyStateWindowFlags): - - Add some flags so that we can choose to save - position or size or both. - - * lib/ephy-dialog.c: (setup_default_size): - * src/ephy-window.c: (ephy_window_show): - * src/window-commands.c: (window_cmd_edit_toolbar): - * src/bookmarks/ephy-bookmark-properties.c: (build_ui): - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_construct): - - Only save size for dialogs and main windows. - - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - - Save size and position. - - ChangeLog | 22 ++++++++++++++++++++++ - lib/ephy-dialog.c | 3 ++- - lib/ephy-state.c | 14 +++++++++++--- - lib/ephy-state.h | 9 ++++++++- - src/bookmarks/ephy-bookmark-properties.c | 3 ++- - src/bookmarks/ephy-bookmarks-editor.c | 3 ++- - src/bookmarks/ephy-new-bookmark.c | 3 ++- - src/ephy-history-window.c | 3 ++- - src/ephy-window.c | 3 ++- - src/window-commands.c | 3 ++- - 10 files changed, 55 insertions(+), 11 deletions(-) - -commit ab4fc64696bd1f23bc41943b91939b77a86e164a -Author: Xan Lopez -Date: Wed May 14 11:36:03 2003 +0000 - - Don't split sentences. - - - Don't split sentences. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-new-bookmark.c | 10 +++++++--- - 2 files changed, 14 insertions(+), 3 deletions(-) - -commit cf7d7072442a5da3d3e6779b978259cc471ed65d -Author: Christian Rose -Date: Tue May 13 23:29:47 2003 +0000 - - Updated Swedish translation. - - 2003-05-14 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++ - po/sv.po | 121 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 73 insertions(+), 52 deletions(-) - -commit a6c318098d45b2c250c3f8aee67cd17cf2019829 -Author: Hasbullah Bin Pit -Date: Tue May 13 19:43:02 2003 +0000 - - Added Malay translation. - - 2002-05-14 Hasbullah Bin Pit - - * ms.po: Added Malay translation. - - po/ChangeLog | 4 + - po/ms.po | 1926 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 1045 insertions(+), 885 deletions(-) - -commit 0efa94feb8fbfc31e32d39d8ba188eb4aae3bd59 -Author: David Bordoley -Date: Tue May 13 19:33:09 2003 +0000 - - s/bookmark page/bookmark link, more consistent with the docs and better - - 2003-05-13 David Bordoley - - * data/ui/epiphany-history-window-ui.xml.in: - * src/ephy-history-window.c: - - s/bookmark page/bookmark link, more consistent with - the docs and better ui. - - * help/C/epiphany.xml: - - Start the create a bookmark section. Needs more work. - Finish to open/copy address bookmark/history link sections. - - ChangeLog | 13 +++ - data/ui/epiphany-history-window-ui.xml.in | 4 +- - help/C/epiphany.xml | 159 ++++++++++++++++++++++++------ - src/ephy-history-window.c | 8 +- - 4 files changed, 149 insertions(+), 35 deletions(-) - -commit d642127eebe872d0f98d39b8e9656555fefea6b0 -Author: Xan Lopez -Date: Tue May 13 19:31:05 2003 +0000 - - s/&/&/ - - - s/&/&/ - - ChangeLog | 6 ++++++ - data/starthere/smartbookmarks.xml.in | 6 ++++-- - 2 files changed, 10 insertions(+), 2 deletions(-) - -commit 72154773a5f2c7a7f880b908db7483934e213b6f -Author: Xan Lopez -Date: Tue May 13 18:25:21 2003 +0000 - - Fix the no_topics pointer writing, fixes adding bookmarks to Uncategorized - - - Fix the no_topics pointer writing, fixes adding bookmarks to - Uncategorized when they are removed from a topic and they still - are in other topics (Bad Marco). - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks.c | 6 ++++-- - 2 files changed, 12 insertions(+), 2 deletions(-) - -commit 97b43a5ae57b98a94a2031db0a72d27515bc2cca -Author: Marco Pesenti Gritti -Date: Tue May 13 18:22:52 2003 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmarks.c | 2 -- - 1 file changed, 2 deletions(-) - -commit 1730a037daf5c370cc61bf8babd5c40fd816ef8a -Author: Marco Pesenti Gritti -Date: Tue May 13 18:22:35 2003 +0000 - - Revert api change. So we keep 2.2 compatibility. - - 2003-05-13 Marco Pesenti Gritti - - * embed/mozilla/ExternalProtocolService.cpp: - - Revert api change. So we keep 2.2 compatibility. - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_class_init), (location_focus_out_cb), - (ephy_location_entry_activate_cb): - * lib/widgets/ephy-location-entry.h: - - Add a finished callback to know when the user finished - using location. - - * src/bookmarks/ephy-bookmarks.c: (history_site_visited_cb), - (ephy_bookmarks_set_icon): - - Remove unused vars. Bad xan. - - * src/toolbar.c: (location_finished_cb), - (toolbar_activate_location): - - Show the toolbar on ctrl+l, hide it again when the user - finished to edit (focus out/activate) - - ChangeLog | 25 +++++++++++++++++++++++++ - embed/mozilla/ExternalProtocolService.cpp | 6 +++--- - lib/widgets/ephy-location-entry.c | 14 ++++++++++++++ - lib/widgets/ephy-location-entry.h | 1 + - src/toolbar.c | 22 ++++++++++++++++++++++ - 5 files changed, 65 insertions(+), 3 deletions(-) - -commit 704e1716a071203b9eb81be8f525eab008d2f547 -Author: David Bordoley -Date: Tue May 13 17:38:43 2003 +0000 - - Don't go modal when showing the duplicate bookmark dialog. - - 2003-05-13 David Bordoley - - * src/bookmarks/ephy-new-bookmark.c: (duplicate_dialog_construct), - (duplicate_bookmark_response_cb), (ephy_new_bookmark_is_unique): - - Don't go modal when showing the duplicate bookmark dialog. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-new-bookmark.c | 28 ++++++++++++++++++++++++---- - 2 files changed, 31 insertions(+), 4 deletions(-) - -commit acddd88152e9ffbafda64913ce5173d2648aa4c3 -Author: David Bordoley -Date: Tue May 13 14:19:07 2003 +0000 - - Get rid of the unneeded convenience callback since no one is try to make - - 2003-05-13 David Bordoley - - * src/ephy-history-window.c: (cmd_bookmark_page): - * src/popup-commands.c: (popup_cmd_bookmark_link): - * src/window-commands.c: (window_cmd_file_bookmark_page): - * src/bookmarks/ephy-new-bookmark.c: (response_cb), - (ephy_new_bookmark_response_cb): - * src/bookmarks/ephy-new-bookmark.h: - - Get rid of the unneeded convenience callback since no - one is try to make the new bookmark dialog modal anymore. - - ChangeLog | 12 ++++++++++++ - src/bookmarks/ephy-new-bookmark.c | 22 ++++------------------ - src/bookmarks/ephy-new-bookmark.h | 7 ------- - src/ephy-history-window.c | 3 --- - src/popup-commands.c | 3 --- - src/window-commands.c | 3 --- - 6 files changed, 16 insertions(+), 34 deletions(-) - -commit bacb58f2fda5bef60b55500aa79e17be7aa8a384 -Author: Xan Lopez -Date: Mon May 12 19:22:27 2003 +0000 - - Don't allow to have more than one bookmark with the same URL^H^H^Haddress, - - - Don't allow to have more than one bookmark with the same - URL^H^H^Haddress, warn the user with a nice dialog. - Fixes #110854. - - ChangeLog | 17 +++++++++ - src/bookmarks/ephy-bookmarks.c | 33 +++++++++--------- - src/bookmarks/ephy-bookmarks.h | 2 +- - src/bookmarks/ephy-new-bookmark.c | 72 ++++++++++++++++++++++++++++++++++++++- - src/bookmarks/ephy-new-bookmark.h | 4 +++ - src/ephy-history-window.c | 20 ++++++----- - src/popup-commands.c | 24 +++++++------ - src/window-commands.c | 24 +++++++------ - 8 files changed, 149 insertions(+), 47 deletions(-) - -commit 1044f92a19ab225a74e7829561cfe1733aee6913 -Author: Marco Pesenti Gritti -Date: Mon May 12 18:04:58 2003 +0000 - - Use new gnome vfs show_url api. - - 2003-05-12 Marco Pesenti Gritti - - * embed/mozilla/ExternalProtocolService.cpp: - - Use new gnome vfs show_url api. - - * embed/mozilla/MozRegisterComponents.cpp: - - Register external protocols ! - - * embed/mozilla/mozilla-embed-single.cpp: - - Check that the ftp handler is not epiphany, to - avoid infinite loop. - - ChangeLog | 15 +++++++++++++++ - embed/mozilla/ExternalProtocolService.cpp | 6 +++--- - embed/mozilla/MozRegisterComponents.cpp | 7 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 2 +- - 4 files changed, 26 insertions(+), 4 deletions(-) - -commit 125882e6f5591567b75b377a89b4127ed7c55f6e -Author: Christian Rose -Date: Sun May 11 21:37:42 2003 +0000 - - Updated Swedish translation. - - 2003-05-11 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 862 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 458 insertions(+), 408 deletions(-) - -commit c334d4ee5fc3dd3407f09c76bde94c019f4eecb4 -Author: Xan Lopez -Date: Sun May 11 19:46:22 2003 +0000 - - Fix make dist. - - - Fix make dist. - - ChangeLog | 6 ++++++ - lib/Makefile.am | 1 + - 2 files changed, 7 insertions(+) - -commit d5907b653b7fe8c1830563b56c44bc1016c94ba1 -Author: Marco Pesenti Gritti -Date: Sun May 11 19:08:24 2003 +0000 - - Fix google smart bookmarks to use utf8 - - 2003-05-11 Marco Pesenti Gritti - - * data/starthere/smartbookmarks.xml.in: - - Fix google smart bookmarks to use utf8 - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_solve_smart_url): - - Fix google smart bookmarks to use utf8. - Escape the search string before merging it in the url. - - ChangeLog | 11 +++++++++++ - data/starthere/smartbookmarks.xml.in | 4 ++-- - src/bookmarks/ephy-bookmarks.c | 8 ++++++-- - 3 files changed, 19 insertions(+), 4 deletions(-) - -commit cb3c864677acdb69f6c3e71d4c2624482ea7ddc6 -Author: Ole Laursen -Date: Sun May 11 17:12:36 2003 +0000 - - Updated Danish translation. - - 2003-05-11 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 1513 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 832 insertions(+), 685 deletions(-) - -commit 37b95eca0168c8542153c7bd2076a243b34fdb99 -Author: Xan Lopez -Date: Sun May 11 14:06:25 2003 +0000 - - Fix refcount, patch by Christian. - - - Fix refcount, patch by Christian. - - ChangeLog | 6 ++++++ - src/statusbar.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 043f4445af1eed2b00695036c4c2ec1c6eb6ed87 -Author: Christian Persch -Date: Sun May 11 12:56:08 2003 +0000 - - Show the full page title in tooltip on the tab label. Loosely based on a - - 2003-05-10 Christian Persch - - * src/ephy-notebook.c: (ephy_notebook_init), (tab_get_label), - (tab_build_label), (ephy_notebook_set_page_tite): - - Show the full page title in tooltip on the tab label. - Loosely based on a patch for galeon2 by Tommi Komulainen - (attached to bug 64737). - - ChangeLog | 9 +++++++++ - src/ephy-notebook.c | 40 +++++++++++++++++++++++++--------------- - 2 files changed, 34 insertions(+), 15 deletions(-) - -commit 2f80e37d076f2967124f0472aad90cadde224e33 -Author: Marco Pesenti Gritti -Date: Sun May 11 12:26:36 2003 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmarks-export.c | 142 ++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks-export.h | 31 ++++++++ - 2 files changed, 173 insertions(+) - -commit 1ffbaefc6b9d99f76fb666215709b6ab4e83d547 -Author: Marco Pesenti Gritti -Date: Sun May 11 12:24:35 2003 +0000 - - Update - - 2003-05-11 Marco Pesenti Gritti - - * lib/egg/egg-action.c: - * lib/egg/eggseparatortoolitem.c: - * lib/egg/eggtoggletoolbutton.c: - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolbutton.c: - * lib/egg/eggtoolitem.c: - * lib/egg/eggtoolitem.h: - - Update - - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmarks.c: - * src/bookmarks/ephy-bookmarks-export.c: - * src/bookmarks/ephy-bookmarks-export.h: - - Export bookmarks in an rdf format (RSS was perfect, - so I just used it instead of inventing a new one). - This is useful to ensure compatibility in case - of database formats changes. It will be used also - as import format for ephy. Also I think it can be easily - displayed, need to talk with Edd about the css url though. - - Thanks to Edd Dumbill for the help with this. - - ChangeLog | 26 +++++++++++ - lib/egg/egg-action.c | 12 ++++- - lib/egg/eggseparatortoolitem.c | 9 ---- - lib/egg/eggtoggletoolbutton.c | 38 +++++++++------ - lib/egg/eggtoolbar.c | 39 ++++++++++------ - lib/egg/eggtoolbutton.c | 25 ++++++---- - lib/egg/eggtoolitem.c | 102 ++++++++++++++++++++++++++++++++--------- - lib/egg/eggtoolitem.h | 58 +++++++++++++---------- - src/bookmarks/Makefile.am | 2 + - src/bookmarks/ephy-bookmarks.c | 11 ++++- - 10 files changed, 226 insertions(+), 96 deletions(-) - -commit 3ab85f2df9c5f3201d984d7e6fbe65767f340143 -Author: Evandro Fernandes Giovanini -Date: Sun May 11 04:12:50 2003 +0000 - - Updated Brazilian Portuguese translation. - - 2003-05-11 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 1334 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 777 insertions(+), 561 deletions(-) - -commit 34aa4f661aba6d1f87cd7b9b23f3b0615cfd5390 -Author: Xan Lopez -Date: Sat May 10 23:30:58 2003 +0000 - - Small cleanup. - - - Small cleanup. - - ChangeLog | 6 +++ - src/bookmarks/ephy-topic-action.c | 97 ++++++++++++++++++++------------------- - 2 files changed, 57 insertions(+), 46 deletions(-) - -commit a940a2161225fcc766fee92a3718186b1068888d -Author: Xan Lopez -Date: Sat May 10 19:02:32 2003 +0000 - - Add ephy_node_sort_children, unused but kept for future reference in - - - Add ephy_node_sort_children, unused but kept for future reference - in jorn's s3kr3t project (and it's cool to be the state of the - art implementation of node stuff anyway). - - ChangeLog | 10 +++++++ - lib/ephy-node.c | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++------ - lib/ephy-node.h | 2 ++ - 3 files changed, 85 insertions(+), 8 deletions(-) - -commit 8cc5535a4ef4ac8980280a4cc784cb39e8281cf3 -Author: Marco Pesenti Gritti -Date: Sat May 10 19:00:20 2003 +0000 - - Fix Open, typo. - - 2003-05-10 Marco Pesenti Gritti - - * embed/mozilla/ContentHandler.cpp: - - Fix Open, typo. - - ChangeLog | 6 ++++++ - embed/mozilla/ContentHandler.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 62bd43f7d8a97b9a8b84f71cfefdb69f303638aa -Author: Xan Lopez -Date: Sat May 10 17:28:07 2003 +0000 - - Alphabetical sort of bookmarks menu elements, fixes #111315. Also create - - - Alphabetical sort of bookmarks menu elements, fixes #111315. - Also create ephy-node-common.h with some general enums. - - ChangeLog | 17 +++++ - embed/ephy-favicon-cache.c | 1 + - embed/ephy-history.c | 4 +- - lib/ephy-state.c | 1 + - lib/ephy-types.h | 14 ---- - src/bookmarks/ephy-bookmarks-editor.c | 13 ++-- - src/bookmarks/ephy-bookmarks.c | 10 +-- - src/bookmarks/ephy-topic-action.c | 116 +++++++++++++++++++++++++++++++--- - 8 files changed, 141 insertions(+), 35 deletions(-) - -commit 477a3fa1f329ab95464c9078f6f33c06774e18c1 -Author: Marco Pesenti Gritti -Date: Sat May 10 17:28:05 2003 +0000 - - broken pipe pfff - - lib/ephy-node-common.h | 9 +++++++-- - 1 file changed, 7 insertions(+), 2 deletions(-) - -commit e7fd761bd7a2820298025394951e48281867e0cc -Author: Xan Lopez -Date: Sat May 10 17:28:05 2003 +0000 - - Alphabetical sort of bookmarks menu elements, fixes #111315. Also create - - - Alphabetical sort of bookmarks menu elements, fixes #111315. - Also create ephy-node-common.h with some general enums. - - lib/ephy-node-common.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 45 insertions(+) - -commit 781e8b984aea05d4a02f326ed8a99a62bf52996e -Author: Marco Pesenti Gritti -Date: Sat May 10 16:39:11 2003 +0000 - - Use sys language as default - - 2003-05-10 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - - Use sys language as default - - * data/glade/prefs-dialog.glade: - - Put back stuff I accidentally removed. - - * data/glade/print.glade: - - Set it has hidden in glade, so we can set position - before it's showed. - - * embed/mozilla/mozilla-notifiers.cpp: - * src/prefs-dialog.c: - - Add system language - - ChangeLog | 20 +++++ - data/epiphany.schemas.in | 2 +- - data/glade/prefs-dialog.glade | 158 ++++++++++++++++++++++++++++++++++++ - data/glade/print.glade | 1 - - embed/mozilla/mozilla-notifiers.cpp | 74 +++++++++++------ - src/prefs-dialog.c | 1 + - 6 files changed, 227 insertions(+), 29 deletions(-) - -commit 1a9a315b7f892116319bc5b05323f7d98bbccc36 -Author: Marco Pesenti Gritti -Date: Sat May 10 10:57:14 2003 +0000 - - Implement security page. Remove some useless hidden prefs in the process. - - 2003-05-10 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * data/glade/prefs-dialog.glade: - * embed/ephy-embed-prefs.h: - * embed/mozilla/mozilla-notifiers.cpp: - * src/language-editor.h: - * src/prefs-dialog.c: - - Implement security page. Remove some useless - hidden prefs in the process. - - ChangeLog | 12 ++ - data/epiphany.schemas.in | 46 ++++++ - data/glade/prefs-dialog.glade | 273 +++++++++++++++++++++++++++++++++++- - embed/ephy-embed-prefs.h | 14 +- - embed/mozilla/mozilla-notifiers.cpp | 38 +---- - src/language-editor.h | 3 +- - src/prefs-dialog.c | 12 ++ - 7 files changed, 348 insertions(+), 50 deletions(-) - -commit f86f63bb3a32a1b5ce3a6afcaf3c8c825f4533e9 -Author: Christian Neumair -Date: Sat May 10 10:54:15 2003 +0000 - - Updated POTFILES.in and de.po. - - po/ChangeLog | 7 +- - po/POTFILES.in | 3 +- - po/de.po | 1088 ++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 584 insertions(+), 514 deletions(-) - -commit a5bb8b3314258d54773132e104853d36d1d6b7e0 -Author: Marco Pesenti Gritti -Date: Sat May 10 09:53:54 2003 +0000 - - *** empty log message *** - - src/general-prefs.h | 58 ----------------------------------------------------- - 1 file changed, 58 deletions(-) - -commit 38f165dfad2c29b25f93efce2a29b1ea771615e8 -Author: Marco Pesenti Gritti -Date: Sat May 10 09:53:38 2003 +0000 - - Rework prefs dialog ui a bit. Remove jumpto and tabbed_popups prefs - - 2003-05-10 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * data/glade/prefs-dialog.glade: - * lib/ephy-prefs.h: - * src/Makefile.am: - * src/ephy-shell.c: (ephy_shell_new_window_cb): - * src/ephy-tab.c: (ephy_tab_new_window_cb): - * src/prefs-dialog.c: (prefs_dialog_get_type), (prefs_dialog_new), - (prefs_dialog_show_help), (setup_font_menu), (save_font_menu), - (font_entry_changed_cb), (attach_font_signal), - (attach_fonts_signals), (size_spinbutton_changed_cb), - (attach_size_controls_signals), (setup_size_control), - (setup_size_controls), (setup_fonts), - (default_charset_menu_changed_cb), (find_charset_in_list_cmp), - (create_default_charset_menu), (general_prefs_new_language_menu), - (language_menu_changed_cb), (create_language_menu), - (set_homepage_entry), (prefs_dialog_init), - (prefs_dialog_response_cb), - (prefs_clear_disk_cache_button_clicked_cb), - (fonts_language_optionmenu_changed_cb), - (prefs_homepage_current_button_clicked_cb), - (prefs_homepage_blank_button_clicked_cb), (fill_language_editor), - (language_dialog_changed_cb), - (prefs_language_more_button_clicked_cb): - * src/prefs-dialog.h: - * src/window-commands.c: (window_cmd_edit_prefs): - - Rework prefs dialog ui a bit. Remove jumpto and tabbed_popups - prefs (jumpto is still in the schemas. - Remove the crazy page by page separation in the code. - - ChangeLog | 32 + - data/epiphany.schemas.in | 11 - - data/glade/prefs-dialog.glade | 3798 +++++++++++++++++++++-------------------- - lib/ephy-prefs.h | 1 - - src/Makefile.am | 4 - - src/appearance-prefs.c | 453 ----- - src/appearance-prefs.h | 58 - - src/ephy-shell.c | 16 +- - src/ephy-tab.c | 16 +- - src/general-prefs.c | 493 ------ - src/prefs-dialog.c | 854 +++++++-- - src/prefs-dialog.h | 20 +- - src/window-commands.c | 10 +- - 13 files changed, 2655 insertions(+), 3111 deletions(-) - -commit d5b2112c4a55235afdd91d15146a1a623eb5bec6 -Author: Marco Pesenti Gritti -Date: Sat May 10 07:40:32 2003 +0000 - - Share signal emission for all dom mouse events, so they dont go out of - - 2003-05-10 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed.cpp: - - Share signal emission for all dom mouse events, so - they dont go out of sync. - - * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb), - (ephy_tab_dom_mouse_down_cb), (ephy_tab_security_change_cb), - (ephy_tab_init): - - Take middle click actions on click instead of on mouse down. - Cleanups. - - ChangeLog | 14 ++ - embed/mozilla/mozilla-embed.cpp | 59 +++------ - src/ephy-tab.c | 276 ++++++++++++++++++---------------------- - 3 files changed, 158 insertions(+), 191 deletions(-) - -commit a6fa796d9e009463eaca187f41d3ee38f514d18d -Author: Christopher Blizzard -Date: Fri May 9 22:47:57 2003 +0000 - - Fix 64 bit problems. Patch from katzj@redhat.com. - - 2003-05-09 Christopher Blizzard - - * src/ephy-navigation-action.c (activate_up_menu_item_cb): - * src/ephy-navigation-action.c (activate_back_or_forward_menu_item_cb): - * lib/eel-gconf-extensions.c (ephy_notification_add): - - Fix 64 bit problems. Patch from katzj@redhat.com. - - ChangeLog | 8 ++++++++ - lib/eel-gconf-extensions.c | 2 +- - src/ephy-navigation-action.c | 4 ++-- - 3 files changed, 11 insertions(+), 3 deletions(-) - -commit 4db03d7b7b5321721f581989f8df0cb36d6aa4a7 -Author: Marco Pesenti Gritti -Date: Fri May 9 22:44:42 2003 +0000 - - Remove unused var - - 2003-05-10 Marco Pesenti Gritti - - * src/prefs-dialog.c: (prefs_dialog_show_help): - - Remove unused var - - ChangeLog | 6 ++++++ - src/prefs-dialog.c | 1 - - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit c44d5ed7b58fe5d8bb4aca988ede55938bb30d67 -Author: Lee Willis -Date: Fri May 9 22:29:13 2003 +0000 - - Don't show broken sub-menus for topics that have no children in the - - 2003-05-07 Lee Willis - - * src/bookmarks/ephy-topic-action.c: - - Don't show broken sub-menus for topics that - have no children in the bookmark toolbar. - Follow IE behaviour and show an insensitive - "Empty" entry - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-topic-action.c | 12 ++++++++++++ - 2 files changed, 21 insertions(+) - -commit e316717e71d7961f0713e49963063065afc6cdf4 -Author: Christian Rose -Date: Fri May 9 08:36:15 2003 +0000 - - Updated Swedish translation. - - 2003-05-09 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 659 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 364 insertions(+), 299 deletions(-) - -commit 99da736a376322c5425dad776bc1871239c25f14 -Author: David Adam Bordoley -Date: Fri May 9 04:08:39 2003 +0000 - - s/items/links to match the docs. - - 2003-05-09 David Adam Bordoley - - * src/ephy-history-window.c: - (confirmation_dialog_construct): - - s/items/links to match the docs. - - ChangeLog | 7 +++++++ - src/ephy-history-window.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit d14ce588e335a055d39d9a9665f55a3496fb76f0 -Author: David Adam Bordoley -Date: Thu May 8 18:52:45 2003 +0000 - - s/location/address and some other minor changes. - - 2003-05-08 David Adam Bordoley - - * data/epiphany.schemas.in: - * data/starthere/index.xml.in: - * data/starthere/smartbookmarks.xml.in: - - s/location/address and some other minor changes. - - ChangeLog | 8 ++++++++ - data/epiphany.schemas.in | 12 ++++++------ - data/starthere/index.xml.in | 4 ++-- - data/starthere/smartbookmarks.xml.in | 2 +- - 4 files changed, 17 insertions(+), 9 deletions(-) - -commit eba983c9919526bb366dbe7f5d10ef2c266ccd31 -Author: David Adam Bordoley -Date: Thu May 8 18:37:49 2003 +0000 - - Don't set an icon unless their is a favicon. Append a colon onto the label - - - 2003-05-08 David Adam Bordoley - - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_sync_icon), - (ephy_bookmark_action_sync_label): - - Don't set an icon unless their is a favicon. - Append a colon onto the label of smartbookmarks. - - ChangeLog | 9 +++++++++ - src/bookmarks/ephy-bookmark-action.c | 21 ++++++++++++++------- - 2 files changed, 23 insertions(+), 7 deletions(-) - -commit 11c5ec3ac5c8c250a737a723d2dd0c1a9fd7a875 -Author: David Adam Bordoley -Date: Thu May 8 18:11:33 2003 +0000 - - s/location/address. Fix up mnemonic collisions in the print dialog. Mark - - 2003-05-08 David Adam Bordoley - - * TODO: - * data/glade/epiphany.glade: - * data/glade/prefs-dialog.glade: - * data/glade/print.glade: - * src/ephy-history-window.c: (ephy_history_ui_entries []) - (ephy_history_window_update_menu), - (ephy_history_window_construct): - * src/ephy-window.c: (ephy_popups_entries []), - * src/toolbar.c: (toolbar_setup_actions): - * src/bookmarks/ephy-bookmark-properties.c: (build_ui): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmark_popup_entries []), - (ephy_bookmarks_editor_update_menu): - - s/location/address. Fix up mnemonic collisions - in the print dialog. Mark toolbar action names - for translation. s/location/"address entry" for - the entry bar name (this may change depending - on what the docs team says). Add a todo - about changing code to use address where - appropriate. - - ChangeLog | 24 ++++++++++++++++++++++++ - TODO | 1 + - data/glade/epiphany.glade | 3 +-- - data/glade/prefs-dialog.glade | 2 +- - data/glade/print.glade | 20 ++++++++++---------- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 10 +++++----- - src/ephy-history-window.c | 22 +++++++++++----------- - src/ephy-window.c | 4 ++-- - src/toolbar.c | 11 +++++++---- - 10 files changed, 63 insertions(+), 36 deletions(-) - -commit 58045fd02a6447a3551dfa34087e3c71e77032c8 -Author: David Adam Bordoley -Date: Thu May 8 16:49:15 2003 +0000 - - Add a label to the find field. Use nicer language. - - 2003-05-08 David Adam Bordoley - - * data/glade/epiphany.glade: - - Add a label to the find field. - Use nicer language. - - ChangeLog | 7 +++++ - data/glade/epiphany.glade | 75 ++++++++++++++++++++++++----------------------- - 2 files changed, 45 insertions(+), 37 deletions(-) - -commit 6be59e74845e71b11e1ade1e7e8de2ad6d87f590 -Author: David Adam Bordoley -Date: Thu May 8 16:22:12 2003 +0000 - - Convenience function for displaying help. Remove unneeded include of - - 2003-05-08 David Adam Bordoley - - * lib/ephy-gui.c: (ephy_gui_help): - * lib/ephy-gui.h: - - Convenience function for displaying help. - Remove unneeded include of gnome-dialog.h - - * src/ephy-history-window.c: (cmd_help_contents): - * src/prefs-dialog.c: (prefs_dialog_show_help): - * src/window-commands.c: (window_cmd_help_contents), - (window_cmd_help_about): - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_help), - (bookmark_properties_response_cb): - * src/bookmarks/ephy-bookmarks-editor.c: - (cmd_help_contents): - * src/bookmarks/ephy-new-bookmark.c: - (ephy_new_bookmark_help), (response_cb): - - Hook up help to windows/dialogs. - Add the guilty parties to about. - - * help/C/epiphany.xml: - - Fixed the "To Create a New Bookmark" id. - - ChangeLog | 27 ++++++++++++++++++++++++ - help/C/epiphany.xml | 2 +- - lib/ephy-gui.c | 28 +++++++++++++++++++++++++ - lib/ephy-gui.h | 11 ++++++---- - src/bookmarks/ephy-bookmark-properties.c | 11 ++++------ - src/bookmarks/ephy-bookmarks-editor.c | 5 ++++- - src/bookmarks/ephy-new-bookmark.c | 11 ++++------ - src/ephy-history-window.c | 5 ++++- - src/prefs-dialog.c | 36 +++++++++----------------------- - src/window-commands.c | 34 +++++------------------------- - 10 files changed, 94 insertions(+), 76 deletions(-) - -commit 8de67d32c63ed75c7e4fa233bb4d1afd63770943 -Author: Anders Carlsson -Date: Thu May 8 13:33:12 2003 +0000 - - Require automake >= 1.6 - - 2003-05-08 Anders Carlsson - - * autogen.sh: Require automake >= 1.6 - - ChangeLog | 4 ++++ - autogen.sh | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 3237341847b11d96de065abff7665fe935f0fd9a -Author: David Adam Bordoley -Date: Wed May 7 22:24:13 2003 +0000 - - Add "To Select Bookmarks and Topics" section. - - 2003-05-07 David Adam Bordoley - - * help/C/epiphany.xml: - - Add "To Select Bookmarks and Topics" section. - - ChangeLog | 6 ++++++ - help/C/epiphany.xml | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++--- - 2 files changed, 61 insertions(+), 3 deletions(-) - -commit aa22c767b7667dbfed2e9c36193cc1b98faba75d -Author: David Adam Bordoley -Date: Wed May 7 20:12:39 2003 +0000 - - Add help for adding/removing bookmarks/topics from the bookmarks bar, - - - 2003-05-07 David Adam Bordoley - - * help/C/epiphany.xml: - - Add help for adding/removing bookmarks/topics - from the bookmarks bar, renaming and deleting. - - ChangeLog | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 16a1346719cb06fca79cdbbb9e2df623d68b3316 -Author: David Adam Bordoley -Date: Wed May 7 20:08:00 2003 +0000 - - Add help for adding/removing bookmarks/topics from the bookmarks bar, - - 2003-05-07 David Adam Bordoley - - * help/C/epiphany.xml: - - Add help for adding/removing bookmarks/topics - from the bookmarks bar, renaming and deleting. - - help/C/epiphany.xml | 80 +++++++++++++++++++++++++++++++++++++++++++++-------- - 1 file changed, 69 insertions(+), 11 deletions(-) - -commit 660ca85d29529f38da0c5ea7060f5bf70d86c61a -Author: David Adam Bordoley -Date: Wed May 7 19:02:54 2003 +0000 - - Slight reorganization to the "Browsing the web" section. Added "To Save a - - 2003-05-07 David Adam Bordoley - - * help/C/epiphany.xml: - - Slight reorganization to the "Browsing the - web" section. Added "To Save a Page to a File" - section. s/file/page in the find help section. - - ChangeLog | 8 ++++++ - help/C/epiphany.xml | 70 ++++++++++++++++++++++++++--------------------------- - 2 files changed, 43 insertions(+), 35 deletions(-) - -commit 8372e7cbe68721eb9a4930fd94380988cc6d9d5b -Author: Pablo Gonzalo del Campo -Date: Wed May 7 17:40:49 2003 +0000 - - Updated Spanish translation by Francisco Javier Fernandez - - 2003-05-07 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier Fernandez - - po/ChangeLog | 5 + - po/es.po | 850 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 449 insertions(+), 406 deletions(-) - -commit 83d90db8645321a6ff2c4399cb269e47a0a9fd67 -Author: David Adam Bordoley -Date: Wed May 7 14:52:53 2003 +0000 - - Add find help. - - 2003-05-07 David Adam Bordoley - - * help/C/epiphany.xml: - - Add find help. - - ChangeLog | 6 ++++++ - help/C/epiphany.xml | 37 +++++++++++++++++++++++++++++++++---- - 2 files changed, 39 insertions(+), 4 deletions(-) - -commit 574c3c12fac6ecac351314bd7cc443ab44bc496b -Author: David Adam Bordoley -Date: Wed May 7 14:13:43 2003 +0000 - - Add Zooming help. - - 2003-05-07 David Adam Bordoley - - * help/C/epiphany.xml: - - Add Zooming help. - - ChangeLog | 6 ++++++ - help/C/epiphany.xml | 29 ++++++++++++++++++++++++----- - 2 files changed, 30 insertions(+), 5 deletions(-) - -commit 3de8a0267dc89614546e83908cff70743639f7e0 -Author: David Adam Bordoley -Date: Wed May 7 05:06:20 2003 +0000 - - Document New Window and New Tab. - - 2003-05-07 David Adam Bordoley - - * help/C/epiphany.xml: - - Document New Window and New Tab. - - ChangeLog | 6 ++++++ - help/C/epiphany.xml | 12 ++++++++---- - 2 files changed, 14 insertions(+), 4 deletions(-) - -commit b1e191a223b8db9d8ccca310af69e90cde76fda7 -Author: David Adam Bordoley -Date: Wed May 7 04:49:39 2003 +0000 - - Fixed some badly formed xml, bad dave! - - 2003-05-07 David Adam Bordoley - - * help/C/epiphany.xml: - - Fixed some badly formed xml, bad dave! - - ChangeLog | 6 ++++++ - help/C/epiphany.xml | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 35fb5e59db35689c4e2487e517912c290e2322a7 -Author: David Adam Bordoley -Date: Wed May 7 04:42:47 2003 +0000 - - Docs for "To Show and Hide Browser Window Components" section. - - 2003-05-06 David Adam Bordoley - - * help/C/epiphany.xml: - - Docs for "To Show and Hide Browser Window - Components" section. - - ChangeLog | 7 +++++++ - help/C/epiphany.xml | 19 ++++++++++++++++--- - 2 files changed, 23 insertions(+), 3 deletions(-) - -commit 3923aa13eac27d2603436d53f1644d5c58c6abbd -Author: David Adam Bordoley -Date: Wed May 7 04:14:57 2003 +0000 - - Write the Browser Windows section. Minor touchups to other sections. - - 2003-05-06 David Adam Bordoley - - * help/C/epiphany.xml: - - Write the Browser Windows section. - Minor touchups to other sections. - - ChangeLog | 7 ++++ - help/C/epiphany.xml | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 98 insertions(+), 3 deletions(-) - -commit b2b5ad35d010ae8200f8c58c96dd4ca7129e17eb -Author: David Adam Bordoley -Date: Wed May 7 03:26:33 2003 +0000 - - Remove the editorializing from the introduction section, since the - - 2003-05-06 David Adam Bordoley - - * help/C/epiphany.xml: - - Remove the editorializing from the introduction section, - since the Documentation Style Guide specifically states - not to do this. Remove the screenshot from the docs too, - its old and needs to be redone to meet our guidlines. - Write the Getting Started section, changing terminology - to "open" instead of "start." Marco would it be worthwhile - to add a docs specific changelog? - - ChangeLog | 12 ++++ - help/C/epiphany.xml | 179 ++++++++++++++++++---------------------------------- - 2 files changed, 73 insertions(+), 118 deletions(-) - -commit 1d95a8d6c62224c69ca401cd2a6e175e03c726e5 -Author: David Adam Bordoley -Date: Tue May 6 22:52:40 2003 +0000 - - Initial checkin of the help stubs. Need to hook these up to the ui and - - 2003-05-06 David Adam Bordoley - - * help/C/epiphany.xml: - - Initial checkin of the help stubs. Need to hook - these up to the ui and actually write the help. - - ChangeLog | 7 ++ - help/C/epiphany.xml | 304 ++++++++++++++++++++++++++++++++++++++++++++++++---- - 2 files changed, 288 insertions(+), 23 deletions(-) - -commit 1c8790187d74915ff26fe081daf1284e9116fca4 -Author: Christian Neumair -Date: Tue May 6 14:22:28 2003 +0000 - - Updated German translation. - - po/ChangeLog | 5 + - po/POTFILES.in | 4 +- - po/POTFILES.skip | 1 - - po/de.po | 3253 ++++++++++++------------------------------------------ - 4 files changed, 701 insertions(+), 2562 deletions(-) - -commit c712d82632f1208519bd2c41ca7f7e8f4aaaa785 -Author: Edd Dumbill -Date: Tue May 6 12:03:12 2003 +0000 - - Use AM_CXX_FLAGS - - 2003-05-06 Edd Dumbill - - * configure.in: - - Use AM_CXX_FLAGS - - ChangeLog | 6 ++++++ - configure.in | 13 +++++++++---- - 2 files changed, 15 insertions(+), 4 deletions(-) - -commit 6f4d431c2ea7384aec032c691cd0743755d364a7 -Author: Christian Persch -Date: Tue May 6 11:59:09 2003 +0000 - - Implement the EPHY_NEW_TAB_APPEND_AFTER flag. - - 2003-05-05 Christian Persch - - * src/ephy-shell.c: - * src/ephy-shell.h: (ephy_shell_new_tab): - - Implement the EPHY_NEW_TAB_APPEND_AFTER flag. - - * src/ephy-window.c: - * src/ephy-window.h: (ephy_window_add_tab): - - Changed parameter (gboolean) groupde to (gint) position, to support - specifying the position in the notebook to insert the new tab into. - - * src/ephy-shell.c: (ephy_shell_new_window_cb): - * src/ephy-tab.c: (ephy_tab_new_window_cb): - - Fix callers of ephy_window_add_tab for new parameter. - - * src/ephy-notebook.c: (notebook_drag_data_received_cb), - (ephy_notebook_init), (ephy_notebook_insert_page): - - Implement drag-and-drop of links to tabs. - - ChangeLog | 23 ++++++++++ - src/ephy-notebook.c | 118 ++++++++++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-shell.c | 17 +++++++- - src/ephy-shell.h | 3 +- - src/ephy-tab.c | 2 +- - src/ephy-window.c | 4 +- - src/ephy-window.h | 2 +- - 7 files changed, 161 insertions(+), 8 deletions(-) - -commit 468c744c0c5efde0aa7bbc179bd0bba784c908a5 -Author: Christian Persch -Date: Tue May 6 11:49:35 2003 +0000 - - Check for NULL PresContext. - - 2003-05-06 Christian Persch - - * embed/mozilla/EphyWrapper.cpp: (EphyWrapper::SetZoomOnDocshell): - - Check for NULL PresContext. - - ChangeLog | 6 ++++++ - embed/mozilla/EphyWrapper.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 0844abeea1ba193d4c9aa9afdbd9aaddba459d17 -Author: Marco Pesenti Gritti -Date: Tue May 6 11:08:45 2003 +0000 - - Remove proxy prefs initialization. Now we call the gconf notifier on - - 2003-05-06 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - - Remove proxy prefs initialization. Now we call the gconf - notifier on startup for all mozilla prefs, so it should - be no more necessary. - - * embed/mozilla/mozilla-notifiers.cpp: - - Fix a nice infinite loop with EmbedSingle being shell_get from - his _init. General cleanup of that code. Galeon1 code is so messy :/ - - ChangeLog | 13 +++++++ - embed/mozilla/mozilla-embed-single.cpp | 68 ---------------------------------- - embed/mozilla/mozilla-notifiers.cpp | 42 ++++++++++----------- - 3 files changed, 33 insertions(+), 90 deletions(-) - -commit 9902a5b9f55a904589bc7651722445d1bde3a2ef -Author: Osma Ahvenlampi -Date: Mon May 5 22:37:30 2003 +0000 - - Fix memory leak while saving bookmarks, and performance problem during - - 2003-05-04 Osma Ahvenlampi - - * src/bookmarks/ephy-bookmarks.c: - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-bookmarks-import.c: - * src/bookmarks/ephy-new-bookmark.c: - - Fix memory leak while saving bookmarks, and performance problem - during import. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmarks-import.c | 4 ++++ - src/bookmarks/ephy-bookmarks.c | 6 ++++-- - src/bookmarks/ephy-bookmarks.h | 2 ++ - src/bookmarks/ephy-new-bookmark.c | 2 ++ - 5 files changed, 22 insertions(+), 2 deletions(-) - -commit bf389ed5fefee7aeffcf0b44c050fea7a19780bc -Author: Christian Rose -Date: Mon May 5 22:21:38 2003 +0000 - - Added sr and sr@Latn to ALL_LINGUAS. Added Serbian translation by Danilo - - 2003-05-05 Christian Rose - - * configure.in: Added sr and sr@Latn to ALL_LINGUAS. - * po/sr.po, po/sr@Latn.po: Added Serbian translation by - Danilo Šegan . - * po/sv.po: Updated Swedish translation. - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 6 + - po/sr.po | 2929 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - po/sr@Latn.po | 2929 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - po/sv.po | 371 ++++---- - 6 files changed, 6081 insertions(+), 160 deletions(-) - -commit 4d31b592f20e788c247b8f6ed266c28daf0d32d3 -Author: Marco Pesenti Gritti -Date: Mon May 5 18:05:16 2003 +0000 - - Better sensitivity updates for history - - 2003-05-05 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: (build_search_box): - * src/ephy-history-window.c: (confirmation_dialog_response_cb), - (confirmation_dialog_construct), (cmd_clear), (cmd_bookmark_page), - (ephy_history_window_class_init), (entry_selection_changed_cb), - (add_entry_monitor), (view_focus_cb), (add_focus_monitor), - (remove_focus_monitor), (ephy_history_window_show_popup_cb), - (build_search_box), (view_selection_changed_cb), - (ephy_history_window_construct), (ephy_history_window_dispose): - * src/window-commands.c: (toolbar_editor_destroy_cb), - (toolbar_editor_response_cb), (window_cmd_edit_toolbar), - (window_cmd_help_contents): - - Better sensitivity updates for history - - ChangeLog | 16 +++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 187 ++++++++++++++++++++++++---------- - src/window-commands.c | 18 ++-- - 4 files changed, 157 insertions(+), 66 deletions(-) - -commit a9ad6d75f510335d318eef6082d6b5b18de48971 -Author: David Adam Bordoley -Date: Mon May 5 16:53:25 2003 +0000 - - If there is only one "toolbar" make it non-removable. - - 2003-05-05 David Adam Bordoley - - * src/toolbar.c: (update_toolbar_remove_flag), - (toolbar_set_window): - - If there is only one "toolbar" make it non-removable. - - * src/bookmarks/ephy-bookmarks.c: (default_bookmarks []), - (default_topics []), (ephy_bookmarks_init_defaults): - - Make the default topic similar to safari's. Mark - the default google smartbookmark for translation and - include a comment instructing translators how to properly - translate it. Add the google smartbookmark to the - bookmarks bar by default. - - * src/bookmarks/ephy-topic-action.c: (create_tool_item): - - Change the space between the topic and it arrow to 3px. - 6px seemed like too much. - - ChangeLog | 21 +++++++++++++++++++++ - src/bookmarks/ephy-bookmarks.c | 22 ++++++++++++++++++---- - src/bookmarks/ephy-topic-action.c | 2 +- - src/toolbar.c | 38 ++++++++++++++++++++++++++++++++++++++ - 4 files changed, 78 insertions(+), 5 deletions(-) - -commit 7457f676155191be13664f62ccbe2e1fcb184de4 -Author: Marco Pesenti Gritti -Date: Mon May 5 16:08:04 2003 +0000 - - Update (removing toolbars with context menu works again). - - 2003-05-05 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: - * lib/egg/egg-toolbar-editor.c: - * lib/egg/egg-toolbar-editor.h: - * lib/egg/egg-toolbars-model.c: - * lib/egg/egg-toolbars-model.h: - - Update (removing toolbars with context menu works again). - - * src/window-commands.c: (toolbar_editor_help_cb), - (window_cmd_edit_toolbar): - - Build the tbe dialog, update for new egg api. - Fix position of new toolbars to be before bookmarks toolbar. - - ChangeLog | 16 ++++++++++ - lib/egg/egg-editable-toolbar.c | 4 +-- - lib/egg/egg-toolbar-editor.c | 66 ++++-------------------------------------- - lib/egg/egg-toolbar-editor.h | 9 +++--- - lib/egg/egg-toolbars-model.c | 14 ++++++--- - lib/egg/egg-toolbars-model.h | 1 + - src/window-commands.c | 58 +++++++++++++++++++++++++++---------- - 7 files changed, 80 insertions(+), 88 deletions(-) - -commit 781a2569005c985af2ac82f329fc35d9e0e5d268 -Author: Jon Svendsen -Date: Sun May 4 18:51:27 2003 +0000 - - Port confirmation dialog for clearing history to new history dialog. - - 2003-05-02 Jon Svendsen - - * src/ephy-history-window.c: (cmd_clear), (cmd_close), - (confirmation_dialog_response_cb), (confirmation_dialog_construct), - - Port confirmation dialog for clearing history to new history dialog. - - ChangeLog | 7 ++++ - src/ephy-history-window.c | 90 +++++++++++++++++++++++++++++++++++++++++++++-- - 2 files changed, 95 insertions(+), 2 deletions(-) - -commit bcce5d7896e0dd7acb157420b2f8f5920e315d03 -Author: David Adam Bordoley -Date: Sun May 4 18:48:04 2003 +0000 - - Fix two descriptions - - 2003-05-04 David Adam Bordoley - - * data/epiphany.schemas.in: - - Fix two descriptions - - ChangeLog | 6 ++++++ - data/epiphany.schemas.in | 10 +++++----- - 2 files changed, 11 insertions(+), 5 deletions(-) - -commit 7bb7ee7a2460eee1496c6b5e51db09007f7809b1 -Author: Christian Persch -Date: Sun May 4 18:44:40 2003 +0000 - - Use uri as title when the page is untitled. - - 2003-05-04 Christian Persch - - * src/ephy-tab.c: (ephy_tab_title_cb): - - Use uri as title when the page is untitled. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 22 +++++++++++++++++++++- - 2 files changed, 27 insertions(+), 1 deletion(-) - -commit ffe15a896a6714ad23c013eaeefd49671f7fbc47 -Author: Marco Pesenti Gritti -Date: Sun May 4 18:36:09 2003 +0000 - - ctrl+u view source - - 2003-05-04 Marco Pesenti Gritti - - * src/ephy-window.c: - - ctrl+u view source - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 11fce9b705a8b1b514f89661f8d9cb36f56fc296 -Author: Marco Pesenti Gritti -Date: Sun May 4 16:21:58 2003 +0000 - - Initialize mozilla prefs on startup every time. That is necessary if - - 2003-05-04 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed-single.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-notifiers.h: - - Initialize mozilla prefs on startup every time. That is necessary - if people change them with gconf-editor. This is a 10 ms regression - on startup but ... it's necessary. What worries me more is the 130 ms - the notifiers registration takes, that's odd. - - ChangeLog | 11 +++ - embed/mozilla/mozilla-embed-single.cpp | 51 ++------------ - embed/mozilla/mozilla-notifiers.cpp | 120 ++++++++++++++++----------------- - embed/mozilla/mozilla-notifiers.h | 2 - - 4 files changed, 77 insertions(+), 107 deletions(-) - -commit 65cedb32fe70cce5d4d55588efa2843dd3027f40 -Author: Evandro Fernandes Giovanini -Date: Sun May 4 03:33:20 2003 +0000 - - Updated Brazilian Portuguese translation. - - 2003-05-04 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 1164 +++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 632 insertions(+), 536 deletions(-) - -commit f2aee30be5861937fa946ba4abf54273a20197ff -Author: MArk Finlay -Date: Sat May 3 18:16:57 2003 +0000 - - Marco Pesenti Gritti - - 2003-05-03 MArk Finlay - Marco Pesenti Gritti - - * data/Makefile.am: - * data/epiphany.applications: - - Register ephy for mime types - - * data/epiphany.desktop.in: - - Use %U, so drag and drop on ephy icon will work - - Ready for 0.6.0 - - ChangeLog | 14 ++++++++++++++ - NEWS | 1 + - data/Makefile.am | 10 +++++++--- - data/epiphany.applications | 7 +++++++ - data/epiphany.desktop.in | 2 +- - 5 files changed, 30 insertions(+), 4 deletions(-) - -commit 7b8bbf8cb9b28e181a33b2ef49cbe991c8a4dc63 -Author: Marco Pesenti Gritti -Date: Sat May 3 17:34:46 2003 +0000 - - Hide view menus in the xml, not working. - - 2003-05-03 Marco Pesenti Gritti - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * data/ui/epiphany-history-window-ui.xml.in: - - Hide view menus in the xml, not working. - - * src/window-commands.c: (toolbar_editor_destroy_cb): - - Update ui after tb editing, so location is not lost. - - ChangeLog | 11 +++++++++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 6 ------ - data/ui/epiphany-history-window-ui.xml.in | 6 ------ - src/window-commands.c | 5 +++++ - 4 files changed, 16 insertions(+), 12 deletions(-) - -commit 3f4726c21f495297332c5cedae66e636ba88a1a0 -Author: Marco Pesenti Gritti -Date: Sat May 3 16:51:29 2003 +0000 - - Search for ui files in the share dir - - 2003-05-03 Marco Pesenti Gritti - - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init), - (gnv_bonobo_control_activate_cb): - - Search for ui files in the share dir - - * src/statusbar.c: (statusbar_set_message): - - Strip \n \r from messages - - * src/toolbar.c: - - Allow reorder of bookmarks - - ChangeLog | 15 +++++++++++++++ - src/ephy-nautilus-view.c | 10 +++++----- - src/statusbar.c | 11 ++++++++++- - src/toolbar.c | 5 +++-- - 4 files changed, 33 insertions(+), 8 deletions(-) - -commit 14e235f2eb930212dcdf8eca1dccfdcf56cd933e -Author: Marco Pesenti Gritti -Date: Sat May 3 11:59:29 2003 +0000 - - Do not assert on corrupted xml, just warn. Put back views shadows for now. - - 2003-05-03 Marco Pesenti Gritti - - * embed/ephy-history.c: (ephy_history_load): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_load): - * src/ephy-history-window.c: (ephy_history_window_construct): - - Do not assert on corrupted xml, just warn. - Put back views shadows for now. - - ChangeLog | 11 +++++++++++ - embed/ephy-history.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 2 ++ - src/bookmarks/ephy-bookmarks.c | 2 +- - src/ephy-history-window.c | 2 ++ - 5 files changed, 17 insertions(+), 2 deletions(-) - -commit 1e88407c82ff067a9db36c532e4fdde521770331 -Author: Xan Lopez -Date: Sat May 3 11:17:29 2003 +0000 - - Minor changes. - - - Minor changes. - - ChangeLog | 6 ++++++ - NEWS | 7 ++++--- - 2 files changed, 10 insertions(+), 3 deletions(-) - -commit 93d4df580208c1d5691b0b300d478a00d326a7b3 -Author: Christian Rose -Date: Sat May 3 11:05:43 2003 +0000 - - Updated Swedish translation. - - 2003-05-03 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 518 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 257 insertions(+), 265 deletions(-) - -commit e6ca8c61b8e17f5774d7a4ccd249d40d99712a31 -Author: Marco Pesenti Gritti -Date: Sat May 3 11:04:23 2003 +0000 - - Update for the release. - - 2003-05-03 Marco Pesenti Gritti - - * NEWS: - * configure.in: - - Update for the release. - - * lib/egg/egg-editable-toolbar.c: - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-toolbar-editor.c: - - Update. - - ChangeLog | 13 ++++ - NEWS | 78 +++++++++++++++++++++ - configure.in | 2 +- - lib/egg/egg-editable-toolbar.c | 154 ++++++++++++++++++++++++++++++++++++++++- - lib/egg/egg-editable-toolbar.h | 4 ++ - lib/egg/egg-toolbar-editor.c | 38 ++++++---- - 6 files changed, 275 insertions(+), 14 deletions(-) - -commit b31b537149199df4562bc482dd7fff28f94c7494 -Author: Xan Lopez -Date: Fri May 2 09:32:28 2003 +0000 - - Workaround to not act on every download, ongoing or finished, when we - - - Workaround to not act on every download, ongoing or finished, - when we click on Pause/Resume or Remove. - - Minor UI changes to the download dialog, - including merging Pause - and Resume in one button, and removing - File: from the details view. - - ChangeLog | 22 ++++++ - data/glade/epiphany.glade | 62 ++++----------- - embed/downloader-view.c | 153 ++++++++++++++----------------------- - embed/downloader-view.h | 8 +- - embed/mozilla/ProgressListener.cpp | 55 ++++--------- - embed/mozilla/ProgressListener.h | 5 -- - 6 files changed, 109 insertions(+), 196 deletions(-) - -commit 00a0ba94312aa3fc5cdb3f39a29c1bbbc4f02b99 -Author: David Bordoley -Date: Wed Apr 30 18:16:24 2003 +0000 - - Remove old unused sidebar and toolbar config stuff. - - 2003-04-30 David Bordoley - - * data/epiphany.schemas.in: - * embed/ephy-embed-types.h: - * lib/ephy-prefs.h: - * src/ephy-window.c: - - Remove old unused sidebar and toolbar config stuff. - - ChangeLog | 9 +++++++++ - data/epiphany.schemas.in | 45 --------------------------------------------- - embed/ephy-embed-types.h | 1 - - lib/ephy-prefs.h | 4 ---- - src/ephy-window.c | 1 - - 5 files changed, 9 insertions(+), 51 deletions(-) - -commit a2cc71e51c55bd11d65facb13c8915f774ef3bac -Author: David Bordoley -Date: Wed Apr 30 16:58:56 2003 +0000 - - Don't set/save window position if it is maximized. - - 2003-04-30 David Bordoley - - * lib/ephy-state.c: (ephy_state_window_set_position), - (ephy_state_window_save_position): - - Don't set/save window position if it is maximized. - - * src/ephy-history-window.c: (ephy_history_window_construct): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - - Don't set the shadow_type to GTK_SHADOW_IN - the ScrolledWindows. It breaks some fitts law considerations, - and really amounts to just visual noise. - - ChangeLog | 15 ++++++++ - lib/ephy-state.c | 64 ++++++++++++++++++++++------------- - src/bookmarks/ephy-bookmarks-editor.c | 2 -- - src/ephy-history-window.c | 3 -- - 4 files changed, 56 insertions(+), 28 deletions(-) - -commit 6a6479ca2b2c1fd5aa78c860299d1a96ef51f199 -Author: David Bordoley -Date: Wed Apr 30 15:23:59 2003 +0000 - - src/ephy-window.c data/epiphany.schemas.in - - 2003-04-30 David Bordoley - - * src/ephy-window.c - * data/epiphany.schemas.in - * lib/ephy-prefs.h: - - Remove fullscreen-only prefs for which UI items to display. - Now fullscreen respects the "View" menu toggles for UI - items - but the menu bar is not shown in fullscreen view. - See bug 111747 for details. - - Patch from Lee Willis - - ChangeLog | 13 +++++++++++++ - data/epiphany.schemas.in | 33 --------------------------------- - lib/ephy-prefs.h | 3 --- - src/ephy-window.c | 41 ++++++++++++----------------------------- - 4 files changed, 25 insertions(+), 65 deletions(-) - -commit 4060d7d5d6a9c6199515e9c059faf43d53b02e44 -Author: David Bordoley -Date: Wed Apr 30 15:10:19 2003 +0000 - - Remove unused variables. - - 2003-04-30 David Bordoley - - * src/session.c: (parse_embed): - - Remove unused variables. - - Patch from Christian Persch - - ChangeLog | 8 ++++++++ - src/session.c | 3 --- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit 0ba96975ca121da2cb6e02fd467d426121768ce3 -Author: David Bordoley -Date: Wed Apr 30 14:54:29 2003 +0000 - - Use ephy_shell_new_tab instead of doing exactly the same work itself. - - 2003-04-30 David Bordoley - - * src/session.c: (parse_embed): - - Use ephy_shell_new_tab instead of doing - exactly the same work itself. - - Patch from Christian Persch - - ChangeLog | 9 +++++++++ - src/session.c | 12 ++++-------- - 2 files changed, 13 insertions(+), 8 deletions(-) - -commit 701cb67fe785b4562adbdbeeaf7b2667cc4970a3 -Author: Xan Lopez -Date: Wed Apr 30 13:11:37 2003 +0000 - - Respect all the new_tab used flags, drop unused ones. Patch by Christian - - - Respect all the new_tab used flags, drop unused ones. - Patch by Christian Perch - - ChangeLog | 11 +++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - src/ephy-shell.c | 3 +++ - src/ephy-shell.h | 25 ++++++++++++------------- - 5 files changed, 28 insertions(+), 15 deletions(-) - -commit 1e87821a2fffbad162cdd36a3f80e7f43021e803 -Author: David Bordoley -Date: Wed Apr 30 01:44:41 2003 +0000 - - Update go menu to match the default toolbar layout. - - 2003-04-29 David Bordoley - - * data/ui/epiphany-ui.xml.in: - - Update go menu to match the default toolbar layout. - - * src/ephy-history-window.c: (build_search_box), - (ephy_history_window_construct): - * src/bookmarks/ephy-bookmarks-editor.c: (build_search_box ), - (ephy_bookmarks_editor_construct): - - Remove unneccessary padding on the window. Add - some padding around the search box. - - ChangeLog | 14 ++++++++++++++ - data/ui/epiphany-ui.xml.in | 6 +++--- - src/bookmarks/ephy-bookmarks-editor.c | 5 +++-- - src/ephy-history-window.c | 5 +++-- - 4 files changed, 23 insertions(+), 7 deletions(-) - -commit 75dff06922e4a1da9f9c363141b60334c3d6b86f -Author: Kjartan Maraas -Date: Tue Apr 29 20:22:09 2003 +0000 - - Update some more - - po/no.po | 171 +++++++++++++++++++++++++++++++++++---------------------------- - 1 file changed, 95 insertions(+), 76 deletions(-) - -commit b4df6c7d7c84610ecb9808103f7e411d75dfbae2 -Author: Marco Pesenti Gritti -Date: Tue Apr 29 19:08:25 2003 +0000 - - We dont need a _remove api, unrefing the node will work better. Try to - - 2003-04-29 Marco Pesenti Gritti - - * embed/ephy-history.c: (remove_obsolete_pages), - (pages_removed_cb), (ephy_history_get_last_page): - * embed/ephy-history.h: - - We dont need a _remove api, unrefing the node will work - better. - Try to remove the host when it's empty. It still doesnt work - properly, prolly EphyNode bug. - - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_get_node): - * src/bookmarks/ephy-bookmark-properties.h: - * src/bookmarks/ephy-bookmarks-editor.c: (prop_dialog_destroy_cb), - (show_properties_dialog), (cmd_bookmark_properties), - (ephy_bookmarks_editor_finalize), (ephy_bookmarks_editor_init): - - Do not open more than one dialog per node, just present it. - Picky picky Dave. - - * src/ephy-automation.c: (impl_ephy_automation_loadurl): - * src/ephy-shell.c: (ephy_shell_new_tab): - - Ever present the window when opening windows through automation. - - ChangeLog | 26 +++++++++++++++++ - embed/ephy-history.c | 48 +++++++++++--------------------- - embed/ephy-history.h | 3 -- - src/bookmarks/ephy-bookmark-properties.c | 7 +++++ - src/bookmarks/ephy-bookmark-properties.h | 2 ++ - src/bookmarks/ephy-bookmarks-editor.c | 37 ++++++++++++++++++++++-- - src/ephy-automation.c | 6 ++-- - src/ephy-shell.c | 12 ++++++-- - 8 files changed, 99 insertions(+), 42 deletions(-) - -commit db1b85b940e4ea707c0fadda76ba79ddec8f697b -Author: Christian Persch -Date: Tue Apr 29 16:55:51 2003 +0000 - - Remove unused function and fix a leak. - - 2003-04-29 Christian Persch - - * lib/ephy-dnd.c: (ephy_dnd_drag_data_get), - (ephy_dnd_node_list_extract_nodes): - * lib/ephy-dnd.h: - - Remove unused function and fix a leak. - - ChangeLog | 8 ++++++++ - lib/ephy-dnd.c | 52 ++-------------------------------------------------- - lib/ephy-dnd.h | 2 -- - 3 files changed, 10 insertions(+), 52 deletions(-) - -commit c46158a00cd6572504ded30c8a9d1ec1b468d07f -Author: Marco Pesenti Gritti -Date: Tue Apr 29 16:47:21 2003 +0000 - - Update - - 2003-04-29 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: - * lib/egg/eggtoggletoolbutton.c: - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolbutton.c: - * lib/egg/eggtoolbutton.h: - - Update - - ChangeLog | 10 + - lib/egg/egg-editable-toolbar.c | 19 ++ - lib/egg/eggtoggletoolbutton.c | 6 +- - lib/egg/eggtoolbar.c | 58 +++- - lib/egg/eggtoolbutton.c | 648 +++++++++++++++++++++-------------------- - lib/egg/eggtoolbutton.h | 17 +- - 6 files changed, 427 insertions(+), 331 deletions(-) - -commit 48b245e9205fc5a9a4745e8e0a3146d32a21f816 -Author: Marco Pesenti Gritti -Date: Tue Apr 29 09:46:00 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - lib/egg/egg-editable-toolbar.c | 1 + - 2 files changed, 7 insertions(+) - -commit 0677bcd3e3207bf8a0c6a0239a879818f65da15c -Author: Marco Pesenti Gritti -Date: Tue Apr 29 09:23:05 2003 +0000 - - Check if there are states before saving, fix a crash closing the nautilus - - 2003-04-29 Marco Pesenti Gritti - - * lib/ephy-state.c: (ephy_states_save) - - Check if there are states before saving, fix a crash - closing the nautilus view. - - ChangeLog | 7 +++++++ - lib/ephy-state.c | 10 ++++++---- - 2 files changed, 13 insertions(+), 4 deletions(-) - -commit d588f872540c33afce1f69a006249a630c2474d2 -Author: Marco Pesenti Gritti -Date: Tue Apr 29 09:04:59 2003 +0000 - - Install epiphany-bookmarks.png also in art dir, we are forced to do it - - 2003-04-29 Marco Pesenti Gritti - - * data/art/Makefile.am: - - Install epiphany-bookmarks.png also in art dir, we are - forced to do it because it's a menu icon too. - - ChangeLog | 7 +++++++ - data/art/Makefile.am | 1 + - 2 files changed, 8 insertions(+) - -commit 56b18a72cbde121e7999846d99bb3e8eb91d4068 -Author: Marco Pesenti Gritti -Date: Tue Apr 29 08:50:19 2003 +0000 - - Remove add_icon_column func and add the functionality to the normal - - 2003-04-29 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (ephy_node_view_add_column): - * lib/widgets/ephy-node-view.h: - - Remove add_icon_column func and add the functionality to the - normal add_column. The icon will be packed in the same column. - - * src/bookmarks/ephy-bookmarks-editor.c: - (entry_selection_changed_cb), (add_entry_monitor), - (add_text_renderer_monitor), (cmd_add_topic), (cmd_rename), - (build_search_box), (ephy_bookmarks_editor_construct), - (toolbar_items_changed_cb), (ephy_bookmarks_editor_init): - - Fix for api change. - - Deal with 2 more sensitivity cases: - bookmarks added by dnd to the toolbar and treeview text - renderers. - - Remove hints until we have more columns. - - * src/ephy-history-window.c: (ephy_history_window_construct): - - Fix for new api - - * src/ephy-toolbars-model.c: (impl_add_item): - - Dont check if normal items are already in the toolbar: - fix warnings. - - ChangeLog | 31 +++++++++++++++ - lib/widgets/ephy-node-view.c | 42 +++++++++------------ - lib/widgets/ephy-node-view.h | 6 +-- - src/bookmarks/ephy-bookmarks-editor.c | 71 +++++++++++++++++++++++++---------- - src/ephy-history-window.c | 11 ++---- - src/ephy-toolbars-model.c | 12 ++++-- - 6 files changed, 115 insertions(+), 58 deletions(-) - -commit fefbbb55910beadb0e568e917d3736cd5c62d31a -Author: Dave Bordoley -Date: Mon Apr 28 19:48:39 2003 +0000 - - updated the changelog with my email address. - - ChangeLog | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 6ad3b34420560d8d3fba15e6f9140efce7bc202a -Author: David Bordoley -Date: Mon Apr 28 19:47:05 2003 +0000 - - Add lib/egg/egg-toolbar-editor.c. - - 2003-04-28 David Bordoley - - * po/POTFILES.in: - - Add lib/egg/egg-toolbar-editor.c. - - ChangeLog | 6 ++++++ - po/POTFILES.in | 1 + - 2 files changed, 7 insertions(+) - -commit 688938e2985a7f50ed529659e31d2af514228d40 -Author: Christian Rose -Date: Mon Apr 28 19:38:56 2003 +0000 - - Updated Swedish translation. - - 2003-04-28 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 371 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 194 insertions(+), 181 deletions(-) - -commit 18ad5373ee12a17e3bcecd404a5e0288191721c2 -Author: Marco Pesenti Gritti -Date: Mon Apr 28 19:35:29 2003 +0000 - - Update ephy-notebook.c path - - 2003-04-28 Marco Pesenti Gritti - - * po/POTFILES.in: - - Update ephy-notebook.c path - - ChangeLog | 6 ++++++ - po/POTFILES.in | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 7814189f863a49c9a0fcd3c2898e24ce3cac162f -Author: David Bordoley -Date: Mon Apr 28 19:15:43 2003 +0000 - - New default toolbar layout. See bug 105983 for reasoning behind the - - 2003-04-28 David Bordoley - - * data/ui/epiphany-toolbar.xml.in: - - New default toolbar layout. See bug 105983 for reasoning - behind the layout. - - ChangeLog | 7 +++++++ - data/ui/epiphany-toolbar.xml.in | 10 ++++++++-- - 2 files changed, 15 insertions(+), 2 deletions(-) - -commit 48834c65ab583d46eaa331f4661ad35eb6de14e1 -Author: David Bordoley -Date: Mon Apr 28 18:41:00 2003 +0000 - - Check if the bookmarks bar already contains the dragged bm or topic before - - 2003-04-28 David Bordoley - - * src/ephy-toolbars-model.c: (impl_add_item): - - Check if the bookmarks bar already contains the dragged - bm or topic before adding it to the toolbar. - - ChangeLog | 7 +++++++ - src/ephy-toolbars-model.c | 15 ++++++++++----- - 2 files changed, 17 insertions(+), 5 deletions(-) - -commit 93c335f91a7b6f48a0f1aa16e1d493a6dbbe115f -Author: Marco Pesenti Gritti -Date: Mon Apr 28 17:38:19 2003 +0000 - - Move notebook in src/. An abstract notebook is an overkill. - - 2003-04-28 Marco Pesenti Gritti - - * lib/widgets/Makefile.am: - * lib/widgets/ephy-notebook.c: - * lib/widgets/ephy-notebook.h: - * src/Makefile.am: - * src/ephy-notebook.c: (ephy_notebook_get_type), - * src/ephy-notebook.h: - - Move notebook in src/. An abstract notebook is an overkill. - - * src/toolbar.c: (ensure_bookmark_action): - - Fix compilation issue on 2.95 - - ChangeLog | 15 + - lib/widgets/Makefile.am | 2 - - lib/widgets/ephy-notebook.c | 921 -------------------------------------------- - lib/widgets/ephy-notebook.h | 103 ----- - src/Makefile.am | 2 + - src/ephy-notebook.c | 921 ++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-notebook.h | 103 +++++ - src/toolbar.c | 2 + - 8 files changed, 1043 insertions(+), 1026 deletions(-) - -commit 7da6219f9b4d1fe0142ddce67846afa1cc7fd2f8 -Author: David Bordoley -Date: Mon Apr 28 15:28:34 2003 +0000 - - s/GALEON/EPIPHANY in the defines. - - 2003-04-28 David Bordoley - - * embed/ephy-embed-types.h: - s/GALEON/EPIPHANY in the defines. - - * embed/ephy-embed-utils.c: (ephy_embed_utils_save) - s/GaleonEmbedPersist/EphyEmbedPersist in the comment. - - * embed/mozilla/mozilla-embed-persist.cpp: (impl_save): - s/mozilla_embed_get_galeon_wrapper/mozilla_embed_get_ephy_wrapper. - - * embed/mozilla/mozilla-embed.cpp: (mozilla_embed_get_galeon_wrapper), - (mozilla_embed_get_ephy_wrapper): - Remove duplicate function (keep the galeon one, since it was the one - actually being used in the code). - s/galeon/ephy. - - * embed/mozilla/mozilla-embed.h: - s/mozilla_embed_get_galeon_wrapper/mozilla_embed_get_ephy_wrapper. - - ChangeLog | 20 ++++++++++++++++++++ - embed/ephy-embed-types.h | 4 ++-- - embed/ephy-embed-utils.c | 2 +- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed.cpp | 12 +++--------- - embed/mozilla/mozilla-embed.h | 2 +- - 6 files changed, 28 insertions(+), 14 deletions(-) - -commit eeaf97888b199c4fbd313665cbfd0f2ad6a2a7ef -Author: David Bordoley -Date: Mon Apr 28 14:21:56 2003 +0000 - - Consistent use of the term "Bookmarks Bar" in the code, ui and schema. - - 2003-04-28 David Bordoley - - * data/epiphany.schemas.in: - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * data/ui/epiphany-toolbar.xml.in: - * data/ui/epiphany-ui.xml.in: - * embed/ephy-embed-types.h: - * embed/mozilla/mozilla-embed.cpp: (mozilla_embed_new_window_cb): - * lib/ephy-prefs.h: - * src/ephy-toolbars-model.c: (ephy_toolbars_model_remove_bookmark), - (ephy_toolbars_model_add_bookmark), (ephy_toolbars_model_has_bookmark): - * src/ephy-window.c: (save_window_chrome), (translate_default_chrome), - (update_layout_toggles), (ephy_window_set_chrome): - * src/toolbar.c: (init_bookmarks_toolbar), (toolbar_set_visibility): - * src/window-commands.c: (window_cmd_view_bookmarks_bar): - * src/window-commands.h: - * src/bookmarks/ephy-bookmark-properties.c: (build_ui): - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_show_in_bookmarks_bar), - (ephy_bookmarks_editor_update_menu): - - Consistent use of the term "Bookmarks Bar" in the code, ui and schema. - Replaces "Bookmarks Toolbar" and "Personal Toolbar." You'll probably - have to delete your epiphany-toolbar.xml file to get the bm toolbar to - work now. - - ChangeLog | 25 +++++++++++++++++++++++++ - data/epiphany.schemas.in | 8 ++++---- - data/ui/epiphany-bookmark-editor-ui.xml.in | 2 +- - data/ui/epiphany-toolbar.xml.in | 2 +- - data/ui/epiphany-ui.xml.in | 2 +- - embed/ephy-embed-types.h | 2 +- - embed/mozilla/mozilla-embed.cpp | 2 +- - lib/ephy-prefs.h | 2 +- - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 30 +++++++++++++++--------------- - src/ephy-toolbars-model.c | 6 +++--- - src/ephy-window.c | 20 ++++++++++---------- - src/toolbar.c | 4 ++-- - src/window-commands.c | 8 ++++---- - src/window-commands.h | 4 ++-- - 15 files changed, 72 insertions(+), 47 deletions(-) - -commit 2b4f4ce2f4d105ec1d24d236ed1508e7aa59ad12 -Author: Kjartan Maraas -Date: Mon Apr 28 14:21:33 2003 +0000 - - Update Norwegian translation. - - 2003-04-28 Kjartan Maraas - - * no.po: Update Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 2250 ++++++++++++++++++---------------------------------------- - 2 files changed, 712 insertions(+), 1542 deletions(-) - -commit 180c09f50c3e0ff6cedd601ca60b02c7d5d4922a -Author: Marco Pesenti Gritti -Date: Mon Apr 28 12:28:43 2003 +0000 - - Actually pass a parent to history/bookmarks window, where to open the url. - - 2003-04-28 Marco Pesenti Gritti - - * src/ephy-automation.c: - (impl_ephy_automation_open_bookmarks_editor): - * src/ephy-shell.c: (ephy_shell_show_bookmarks_editor), - (ephy_shell_show_history_window): - * src/ephy-shell.h: - * src/window-commands.c: (window_cmd_go_bookmarks), - (window_cmd_go_history): - - Actually pass a parent to history/bookmarks window, where - to open the url. Bad who regressed this ;) - - ChangeLog | 13 +++++++++++++ - src/ephy-automation.c | 2 +- - src/ephy-shell.c | 18 ++++++++++++++++-- - src/ephy-shell.h | 30 ++++++++++++++++-------------- - src/window-commands.c | 4 ++-- - 5 files changed, 48 insertions(+), 19 deletions(-) - -commit 87df5c2a8c41c2574f63131d97fee96615dc495c -Author: Marco Pesenti Gritti -Date: Mon Apr 28 12:11:52 2003 +0000 - - Reapply one of our MenuMerge patches. Fixes crashes on window close. - - 2003-04-28 Marco Pesenti Gritti - - * lib/egg/egg-menu-merge.c: (egg_menu_merge_finalize), - (egg_menu_merge_class_init): - - Reapply one of our MenuMerge patches. Fixes crashes on - window close. - - ChangeLog | 8 ++++++++ - lib/egg/egg-menu-merge.c | 21 +++++++++++++++++++++ - 2 files changed, 29 insertions(+) - -commit 70c5d9a1d5598f03a7717ba8028952ba65abaff2 -Author: Marco Pesenti Gritti -Date: Mon Apr 28 09:05:56 2003 +0000 - - Sync toolbar on bookmark properties changes. - - 2003-04-28 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-action.c: (sync_bookmark_properties), - (bookmarks_child_changed_cb), (ephy_bookmark_action_init), - (ephy_bookmark_action_new): - * src/bookmarks/ephy-topic-action.c: - (ephy_topic_action_set_property), (ephy_topic_action_get_property), - (ephy_topic_action_class_init), (sync_topic_properties), - (topic_child_changed_cb), (ephy_topic_action_init), - (ephy_topic_action_new): - - Sync toolbar on bookmark properties changes. - - ChangeLog | 13 +++++++ - src/bookmarks/ephy-bookmark-action.c | 71 +++++++++++++++++++++++++++--------- - src/bookmarks/ephy-topic-action.c | 57 +++++++++++++++++++++++------ - 3 files changed, 112 insertions(+), 29 deletions(-) - -commit bd41682b235e8a4a0c37b317ef71c38e5ed6a5a1 -Author: David Bordoley -Date: Mon Apr 28 03:39:46 2003 +0000 - - Removed old history dialog, since it is dead now. Set the border width of - - 2003-04-27 David Bordoley - - * data/glade/epiphany.glade: - - Removed old history dialog, since it is dead now. - Set the border width of the passwords tab in the PDM - to 12px to match that of the cookies tab. - - ChangeLog | 8 ++ - data/glade/epiphany.glade | 317 +--------------------------------------------- - 2 files changed, 9 insertions(+), 316 deletions(-) - -commit 39be2b7d5389829cdc5ecb7084b1cab12b4b86ea -Author: David Bordoley -Date: Mon Apr 28 03:29:20 2003 +0000 - - Save the position of windows on the screen, and checks if the position is - - 2003-04-27 David Bordoley - - * lib/ephy-state.c: (ephy_state_window_set_position), - (ephy_state_window_save_position), (window_configure_event_cb), - (window_state_event_cb), (ephy_state_add_window): - - Save the position of windows on the screen, - and checks if the position is off the screen. - - * src/toolbar.c: (init_bookmarks_toolbar): - - Pass arguments to egg_toolbars_model_set_flags in the - correct order. - - ChangeLog | 14 +++++++++++ - lib/ephy-state.c | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- - src/toolbar.c | 2 +- - 3 files changed, 91 insertions(+), 2 deletions(-) - -commit 948ed56e6996018cd6504e0b990f24b48f4398ce -Author: David Bordoley -Date: Mon Apr 28 01:36:41 2003 +0000 - - Make the view paned and monitor the state. - - 2003-04-27 David Bordoley - - * src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_construct): - - Make the view paned and monitor the state. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 27 +++++++++++++++------------ - 2 files changed, 21 insertions(+), 12 deletions(-) - -commit d65d1d8a4694e0dd9fb28d5a8defaa16927bc155 -Author: Marco Pesenti Gritti -Date: Sun Apr 27 18:38:28 2003 +0000 - - Emit removed signal after the node is actually removed. This could cause - - 2003-04-27 Marco Pesenti Gritti - - * lib/ephy-node.c: (real_remove_child): - - Emit removed signal after the node is actually removed. - This could cause bugs, test test test ;) - - * src/bookmarks/ephy-bookmarks.c: (topics_removed_cb): - - Update topics list and uncategorized folder on topics - removal. - - ChangeLog | 12 +++++ - lib/ephy-node.c | 17 +++--- - src/bookmarks/ephy-bookmarks.c | 120 +++++++++++++++++++++++++---------------- - 3 files changed, 94 insertions(+), 55 deletions(-) - -commit 4d94003629211bb7cb57189742b718201d2c27bd -Author: Marco Pesenti Gritti -Date: Sun Apr 27 17:09:58 2003 +0000 - - Update sensitivity on selection changes. Thanks xan to find this one. - - 2003-04-27 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu), (view_selection_changed_cb), - (ephy_bookmarks_editor_construct): - - Update sensitivity on selection changes. Thanks xan to find - this one. - - * src/toolbar.c: (remove_action), (topic_remove_cb), - (bookmark_remove_cb): - - Get back bookmarks/toolbar sync on bookmark removal. - - ChangeLog | 14 +++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 17 +++++++++++++ - src/toolbar.c | 46 ++++++++++++++++++++++++++++++----- - 3 files changed, 71 insertions(+), 6 deletions(-) - -commit fbe3cc4fcb4bdfd7bd28443a0852a4b79ff920c6 -Author: Marco Pesenti Gritti -Date: Sun Apr 27 13:03:48 2003 +0000 - - Change the way sensitivity is updated once again. We need to test this - - 2003-04-27 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: (view_focus_cb), - (add_focus_monitor), (remove_focus_monitor), - (ephy_bookmarks_editor_show_popup_cb), - (ephy_bookmarks_editor_dispose), (keyword_node_show_popup_cb), - (search_selection_changed_cb), (build_search_box), - (ephy_bookmarks_editor_construct): - - Change the way sensitivity is updated once again. - We need to test this really really well and then port it - to the history dialog. - - ChangeLog | 13 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 69 +++++++++++++++++++++++++++-------- - 2 files changed, 66 insertions(+), 16 deletions(-) - -commit 3d8e5e157f5a740d1f8005383597b13eca6725d4 -Author: Marco Pesenti Gritti -Date: Sun Apr 27 11:49:19 2003 +0000 - - update - - 2003-04-27 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-toolbar-editor.c: - * lib/egg/egg-toolbars-model.c: - * lib/egg/egg-toolbars-model.h: - * lib/egg/eggtoolbar.c: - - update - - * src/ephy-shell.c: (save_toolbars), - (ephy_shell_get_toolbars_model): - * src/ephy-toolbars-model.c: (impl_add_item), - (ephy_toolbars_model_class_init): - * src/ephy-toolbars-model.h: - * src/toolbar.c: (action_request_cb), (init_bookmarks_toolbar), - (toolbar_set_window): - - Load the toolbars model in EphyShell so bookmarks editor - alone can use it. - Update the actions on a new editable toolbar signal, - actions are per toolbar, not per model. - - ChangeLog | 24 ++++++++++++++++++++ - lib/egg/egg-editable-toolbar.c | 40 ++++++++++++++++++++++++++++++++- - lib/egg/egg-editable-toolbar.h | 3 +++ - lib/egg/egg-toolbar-editor.c | 25 ++++++++++++--------- - lib/egg/egg-toolbars-model.c | 50 +++++++++++++++++++++++++++++++++++++----- - lib/egg/egg-toolbars-model.h | 10 +++++++++ - lib/egg/eggtoolbar.c | 2 +- - src/ephy-shell.c | 22 ++++++++++++++++++- - src/ephy-toolbars-model.c | 13 ----------- - src/ephy-toolbars-model.h | 3 --- - src/toolbar.c | 36 ++++++++++-------------------- - 11 files changed, 169 insertions(+), 59 deletions(-) - -commit 34c164d7175456a25362d00981d1cc38a339baf2 -Author: David Bordoley -Date: Sun Apr 27 08:35:50 2003 +0000 - - Update. - - 2003-04-27 David Bordoley - - * lib/egg/egg-editable-toolbar.c: - * lib/egg/egg-toolbar-editor.c: - * lib/egg/egg-toolbar-editor.h: - - Update. - - * src/window-commands.c: (toolbar_editor_help_cb), - (window_cmd_edit_toolbar): - - Add and help button. - - ChangeLog | 13 +++++++++++++ - lib/egg/egg-editable-toolbar.c | 38 ++++++++++++++++++++++---------------- - lib/egg/egg-toolbar-editor.c | 9 +++++++-- - lib/egg/egg-toolbar-editor.h | 4 +++- - src/window-commands.c | 21 ++++++++++++++++++++- - 5 files changed, 65 insertions(+), 20 deletions(-) - -commit 9605e12bd4a9238f989e6f1c662781b848555cac -Author: Xan Lopez -Date: Sat Apr 26 21:56:59 2003 +0000 - - Use epiphany logo in about window. - - - Use epiphany logo in about window. - - ChangeLog | 6 ++++++ - src/window-commands.c | 12 +++++++++++- - 2 files changed, 17 insertions(+), 1 deletion(-) - -commit 2441e42e4d988862eb7112d2c6dd00ec790d8285 -Author: Pablo Gonzalo del Campo -Date: Fri Apr 25 21:51:15 2003 +0000 - - Updated Spanish translation by Francisco Javier Fernandez - - 2003-04-25 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier Fernandez - - po/ChangeLog | 5 + - po/es.po | 1093 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 655 insertions(+), 443 deletions(-) - -commit 95c5dbcfc4214c63c93318344f5b6de091677d5e -Author: Marco Pesenti Gritti -Date: Fri Apr 25 18:46:54 2003 +0000 - - Update. - - 2003-04-25 Marco Pesenti Gritti - - * lib/egg/egg-toolbars-model.c: - * lib/egg/eggtoolbar.c: - - Update. - - * src/bookmarks/ephy-bookmark-properties.c: - (toolbar_checkbox_changed_cb), (build_ui), - (ephy_bookmark_properties_init): - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_show_in_the_toolbar), - (cmd_delete), (ephy_bookmarks_editor_update_menu), - (ephy_bookmarks_editor_init): - * src/bookmarks/ephy-bookmarks.h: - * src/ephy-toolbars-model.c: (ephy_toolbars_model_new), - (get_item_pos), (get_action_name), (get_toolbar_pos), - (ephy_toolbars_model_remove_bookmark), - (ephy_toolbars_model_add_bookmark), - (ephy_toolbars_model_has_bookmark): - * src/ephy-toolbars-model.h: - - Implement the checkbox to add bookmarks to the toolbar. - - ChangeLog | 23 ++++++ - lib/egg/egg-toolbars-model.c | 5 +- - lib/egg/eggtoolbar.c | 48 ++++++++++-- - src/bookmarks/ephy-bookmark-properties.c | 42 +++++----- - src/bookmarks/ephy-bookmarks-editor.c | 56 +++++++++---- - src/bookmarks/ephy-bookmarks.h | 3 +- - src/ephy-toolbars-model.c | 130 +++++++++++++++++++++++++++++++ - src/ephy-toolbars-model.h | 16 +++- - 8 files changed, 276 insertions(+), 47 deletions(-) - -commit e22d66b927f60c384f96c47aa5d4519ceb4f9c47 -Author: David Bordoley -Date: Fri Apr 25 16:31:05 2003 +0000 - - Hookup to the response signal instead of using gtk_dialog_run. Prevents us - - 2003-04-25 David Bordoley - - * src/ephy-history-window.c: (cmd_bookmark_page): - * src/popup-commands.c: (popup_cmd_bookmark_link): - * src/window-commands.c: (window_cmd_file_bookmark_page): - - Hookup to the response signal instead of using gtk_dialog_run. - Prevents us from going modal. - - * src/bookmarks/ephy-new-bookmark.c: (response_cb), - (ephy_new_bookmark_response_cb): - * src/bookmarks/ephy-new-bookmark.h - - Add a convenience callback function, that callers can - use to destroy the dialog after a response. - - * src/ephy-shell.c: (ephy_shell_command_cb): - - Use a callback to the gtk_widget_destroy on the "response" - signal instead of using gtk_dialog_run. eg. don't go modal. - Some code cleanups too. - - ChangeLog | 22 ++++++++++++ - src/bookmarks/ephy-new-bookmark.c | 23 ++++++++++--- - src/bookmarks/ephy-new-bookmark.h | 6 ++++ - src/ephy-history-window.c | 6 ++-- - src/ephy-shell.c | 72 ++++++++++++++++----------------------- - src/popup-commands.c | 6 ++-- - src/window-commands.c | 6 ++-- - 7 files changed, 89 insertions(+), 52 deletions(-) - -commit 98f768009939e3b06f2777ccb4307245f0637f36 -Author: Xan Lopez -Date: Fri Apr 25 16:06:19 2003 +0000 - - Implement ephy_node_reorder_children (from Rhythmbox). - - - Implement ephy_node_reorder_children (from Rhythmbox). - - ChangeLog | 11 ++++++++ - lib/ephy-node.c | 53 ++++++++++++++++++++++++++++++++++++++ - lib/ephy-node.h | 6 +++-- - lib/widgets/ephy-tree-model-node.c | 16 ++++++++++++ - 4 files changed, 84 insertions(+), 2 deletions(-) - -commit 942e954a637fe6a462f3337c2aef8fa683877976 -Author: Marco Pesenti Gritti -Date: Fri Apr 25 15:47:16 2003 +0000 - - Update - - 2003-04-25 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolitem.c: - * lib/egg/eggtoolitem.h: - - Update - - ChangeLog | 9 ++ - lib/egg/egg-editable-toolbar.c | 1 + - lib/egg/eggtoolbar.c | 97 ++++++---------- - lib/egg/eggtoolbar.h | 2 +- - lib/egg/eggtoolbutton.c | 249 ++++++++++++++++++----------------------- - lib/egg/eggtoolitem.c | 118 +++++++++---------- - lib/egg/eggtoolitem.h | 63 +++++------ - 7 files changed, 235 insertions(+), 304 deletions(-) - -commit 7fcf1690b730892033993c1001c08666448f90b1 -Author: Marco Pesenti Gritti -Date: Fri Apr 25 15:23:09 2003 +0000 - - Get back toolbar editing functionalities. More work on the bookmarks - - 2003-04-25 Marco Pesenti Gritti - - * data/ui/epiphany-toolbar.xml.in: - * data/ui/epiphany-ui.xml.in: - * lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_hide), - (egg_editable_toolbar_set_drag_dest): - * lib/egg/egg-editable-toolbar.h: - * src/bookmarks/ephy-topic-action.c: (create_tool_item): - * src/ephy-shell.c: (save_toolbars), (ephy_shell_finalize), - (ephy_shell_get_toolbars_model): - * src/ephy-toolbars-model.c: (impl_add_item), - (ephy_toolbars_model_class_init): - * src/ephy-toolbars-model.h: - * src/ephy-window.c: (ephy_window_set_chrome): - * src/toolbar.c: (ensure_bookmark_action), (toolbar_ensure_action), - (action_added_cb), (init_bookmarks_toolbar), (toolbar_set_window), - (toolbar_new), (toolbar_set_visibility): - * src/toolbar.h: - * src/window-commands.c: (toolbar_editor_destroy_cb), - (window_cmd_edit_toolbar): - - Get back toolbar editing functionalities. - More work on the bookmarks toolbars implementation. - The toolbars context menus are regressed but it's not my fault :/ - The signal on EggToolbar is borked. - - ChangeLog | 26 ++++++ - data/ui/epiphany-toolbar.xml.in | 5 +- - data/ui/epiphany-ui.xml.in | 1 + - lib/egg/egg-editable-toolbar.c | 51 ++++++++++++ - lib/egg/egg-editable-toolbar.h | 23 +++--- - src/bookmarks/ephy-topic-action.c | 2 +- - src/ephy-shell.c | 21 ++++- - src/ephy-toolbars-model.c | 40 +++++++--- - src/ephy-toolbars-model.h | 3 + - src/ephy-window.c | 20 +---- - src/toolbar.c | 162 +++++++++++++++++++++++++++++++------- - src/toolbar.h | 4 + - src/window-commands.c | 37 +++++++-- - 13 files changed, 320 insertions(+), 75 deletions(-) - -commit 33a47e1d4cc08edd1006d3bfd85b7a15d350119d -Author: David Bordoley -Date: Fri Apr 25 13:53:00 2003 +0000 - - Connect to the "toggled" signal instead of "button_press_event" so that - - 2003-04-25 David Bordoley - - * src/bookmarks/ephy-topic-action.c: (button_toggled_cb), - (connect_proxy): - - Connect to the "toggled" signal instead of "button_press_event" - so that keynav works. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-topic-action.c | 20 ++++++++------------ - 2 files changed, 16 insertions(+), 12 deletions(-) - -commit 06b0667718c7dc86bcd189af92688f2e664fab60 -Author: David Bordoley -Date: Fri Apr 25 13:30:35 2003 +0000 - - Commented out the include egg_toolbars_group.h so that it builds. - - 2003-04-25 David Bordoley - - * src/toolbar.c: - - Commented out the include egg_toolbars_group.h - so that it builds. - - ChangeLog | 7 +++++++ - src/toolbar.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit f490b816b02230dd74fc78610eae674f2aa8e88d -Author: Marco Pesenti Gritti -Date: Fri Apr 25 11:42:37 2003 +0000 - - *** empty log message *** - - lib/egg/egg-toolbar-editor.c | 599 ++++++++++++++++++++++++++++++++++++++ - lib/egg/egg-toolbar-editor.h | 61 ++++ - lib/egg/egg-toolbars-group.c | 668 ------------------------------------------- - lib/egg/egg-toolbars-group.h | 103 ------- - lib/egg/egg-toolbars-model.c | 490 +++++++++++++++++++++++++++++++ - lib/egg/egg-toolbars-model.h | 104 +++++++ - src/ephy-toolbars-model.c | 148 ++++++++++ - src/ephy-toolbars-model.h | 55 ++++ - 8 files changed, 1457 insertions(+), 771 deletions(-) - -commit 22bf87253ddffa6a7225ecaad60c15cd0815c974 -Author: Marco Pesenti Gritti -Date: Fri Apr 25 11:40:44 2003 +0000 - - Update from egg - - 2003-04-25 Marco Pesenti Gritti - - * data/ui/epiphany-toolbar.xml.in: - * lib/egg/Makefile.am: - * lib/egg/egg-editable-toolbar.c: - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-menu-merge.c: - * lib/egg/egg-radio-action.c: - * lib/egg/eggmarshalers.c: - * lib/egg/eggmarshalers.h: - * lib/egg/eggmarshalers.list: - * lib/egg/eggtoggletoolbutton.c: - * lib/egg/eggtoggletoolbutton.h: - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolbar.h: - * lib/egg/eggtoolbutton.c: - * lib/egg/eggtoolbutton.h: - * lib/egg/eggtoolitem.c: - * lib/egg/eggtoolitem.h: - * lib/egg/eggtreemodelfilter.c: - - Update from egg - - * src/Makefile.am: - * src/ephy-location-action.c: (create_tool_item): - * src/ephy-shell.c: (ephy_shell_init), (ephy_shell_get_bookmarks), - * src/ephy-shell.h: - * src/ephy-window.c: (setup_window), (ephy_window_finalize), - (ephy_window_set_chrome): - * src/toolbar.c: (toolbar_class_init), (toolbar_set_window), - (topic_remove_cb), (bookmark_remove_cb), (toolbar_init), - (toolbar_new): - * src/window-commands.c: (window_cmd_edit_toolbar): - - Use the new toolbar editor api. This is incomplete, if you - use bookmarks toolbars please still do not update. - - ChangeLog | 37 ++ - data/ui/epiphany-toolbar.xml.in | 2 - - lib/egg/Makefile.am | 6 +- - lib/egg/egg-editable-toolbar.c | 1169 ++++++++------------------------------- - lib/egg/egg-editable-toolbar.h | 39 +- - lib/egg/egg-menu-merge.c | 92 ++- - lib/egg/egg-radio-action.c | 4 + - lib/egg/eggmarshalers.c | 166 +++++- - lib/egg/eggmarshalers.h | 49 +- - lib/egg/eggmarshalers.list | 6 + - lib/egg/eggtoggletoolbutton.c | 8 - - lib/egg/eggtoggletoolbutton.h | 1 - - lib/egg/eggtoolbar.c | 573 ++++++++++--------- - lib/egg/eggtoolbar.h | 6 +- - lib/egg/eggtoolbutton.c | 264 +++++---- - lib/egg/eggtoolbutton.h | 24 +- - lib/egg/eggtoolitem.c | 114 ++-- - lib/egg/eggtoolitem.h | 50 +- - lib/egg/eggtreemodelfilter.c | 3 - - src/Makefile.am | 2 + - src/ephy-location-action.c | 2 +- - src/ephy-shell.c | 15 + - src/ephy-shell.h | 3 + - src/ephy-window.c | 17 +- - src/toolbar.c | 127 +---- - src/window-commands.c | 4 +- - 26 files changed, 1216 insertions(+), 1567 deletions(-) - -commit 8b97477b0882b666962c56ed2c20d26c615b9db3 -Author: Ole Laursen -Date: Thu Apr 24 17:28:33 2003 +0000 - - Updated Danish translation. - - 2003-04-24 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 954 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 589 insertions(+), 369 deletions(-) - -commit c90bd03ce20c8cbb3e937e87eab4c1aeffb7d994 -Author: Christian Rose -Date: Thu Apr 24 13:03:52 2003 +0000 - - Updated Swedish translation. - - 2003-04-24 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 1052 ++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 619 insertions(+), 437 deletions(-) - -commit 5868173118fc790b7371a4bac8511358db7438bd -Author: David Bordoley -Date: Thu Apr 24 03:51:26 2003 +0000 - - Always save a page's content if there i content to be saved. Remove the - - 2003-04-23 David Bordoley - - * embed/ephy-embed-single.c: (ephy_embed_single_show_file_picker): - * embed/ephy-embed-single.h: - * embed/ephy-embed-utils.c: (ephy_embed_utils_save): - * embed/ephy-embed-utils.h: - * embed/mozilla/FilePicker.cpp: (GFilePicker::GFilePicker), - (GFilePicker::Show), (GFilePicker::HandleFilePickerR): - * embed/mozilla/FilePicker.h: - * embed/mozilla/mozilla-embed-persist.cpp: (impl_save): - * embed/mozilla/mozilla-embed-single.cpp: (impl_show_file_picker): - * src/window-commands.c: (window_cmd_file_open): - - Always save a page's content if there i content to be saved. - Remove the checkbox from the save as dialog. - - Patch from Christian Persch - - ChangeLog | 18 ++++++++++++++++++ - embed/ephy-embed-single.c | 3 +-- - embed/ephy-embed-single.h | 2 -- - embed/ephy-embed-utils.c | 13 ++++--------- - embed/ephy-embed-utils.h | 2 +- - embed/mozilla/FilePicker.cpp | 28 ++-------------------------- - embed/mozilla/FilePicker.h | 9 ++------- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 20 ++------------------ - src/window-commands.c | 2 +- - 10 files changed, 32 insertions(+), 67 deletions(-) - -commit 8c83ceb4776c927353d7a235290c1fc2f9f34b1f -Author: David Bordoley -Date: Thu Apr 24 03:08:36 2003 +0000 - - Set spacing between a topic and the arrow to 6px. - - 2003-04-23 David Bordoley - - * src/bookmarks/ephy-topic-action.c: (create_tool_item): - - Set spacing between a topic and the arrow to 6px. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topic-action.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 1ef28966ea5d1e0f075d808bc1adfce45a0ac78b -Author: David Bordoley -Date: Wed Apr 23 19:59:58 2003 +0000 - - Add a down arrow to topics in bm toolbars. - - 2003-04-23 David Bordoley - - * src/bookmarks/ephy-topic-action.c: (create_tool_item): - - Add a down arrow to topics in bm toolbars. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topic-action.c | 5 +++++ - 2 files changed, 11 insertions(+) - -commit 9b7c94e7c4817e651ed72e9e29d9d8ceb0bcadcf -Author: Xan Lopez -Date: Wed Apr 23 19:29:17 2003 +0000 - - Forgot this. - - - Forgot this. - - ChangeLog | 13 +++++++++++++ - 1 file changed, 13 insertions(+) - -commit aea7ecd4cbfc8f7ac91263279e89246956b9a281 -Author: Xan Lopez -Date: Wed Apr 23 19:06:43 2003 +0000 - - Remove --geometry option, we weren't respecting it anyway (this patch - - - Remove --geometry option, we weren't respecting it anyway (this - patch patronized by marco's "DropDropDrop" project). - Fix Leak. - - idl/EphyAutomation.idl | 1 - - src/bookmarks/ephy-bookmarks-editor.c | 1 + - src/ephy-automation.c | 1 - - src/ephy-main.c | 9 --------- - 4 files changed, 1 insertion(+), 11 deletions(-) - -commit 64ea5b29d748e2e3c9337d1e5845776221d67a2b -Author: Christian Neumair -Date: Wed Apr 23 18:43:15 2003 +0000 - - Use gettext instead of gettext_noop call for g_object_set's third - - * src/ephy-window.c (setup_window): - - Use gettext instead of gettext_noop call for g_object_set's third - argument. Makes some i18n magic in tbe dialog actually visible. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 8 ++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit 66853c7ee5b10e35ddf3c4528afcf5ea9dcd0d82 -Author: Duarte Loreto -Date: Tue Apr 22 23:04:42 2003 +0000 - - Updated Portuguese translation. - - 2003-04-22 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 787 +++++++++++++++++++++++++++++++++++------------------------ - 2 files changed, 471 insertions(+), 320 deletions(-) - -commit 0046767be464256f0add9d10c32f2b677f75ef97 -Author: David Bordoley -Date: Tue Apr 22 16:22:22 2003 +0000 - - Rearrange the File menu so that delete is below bookmark page. Add delete - - 2003-04-22 David Bordoley - - * data/ui/epiphany-history-window-ui.xml.in: - - Rearrange the File menu so that delete - is below bookmark page. Add delete and bookmark to - the context menu. s/BMK/HST. - - ChangeLog | 8 ++++++++ - data/ui/epiphany-history-window-ui.xml.in | 12 ++++++++---- - 2 files changed, 16 insertions(+), 4 deletions(-) - -commit 497b8d39b3b4654c24ba42067d63a263f06ae204 -Author: Vincent van Adrighem -Date: Tue Apr 22 10:56:23 2003 +0000 - - Dutch translation updated. - - 2003-04-22 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 1141 +++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 703 insertions(+), 442 deletions(-) - -commit f9a6452fb16f4fcfe976e6a5f63f54cbe88bcf59 -Author: Xan Lopez -Date: Mon Apr 21 17:53:14 2003 +0000 - - Use em instead of px to respect user selected font sizes. - - - Use em instead of px to respect user selected font sizes. - - ChangeLog | 6 ++++++ - data/starthere/section.xsl | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit 99b07178a3ae4596e074a2569ef28b2978415450 -Author: David Bordoley -Date: Mon Apr 21 17:37:31 2003 +0000 - - Use delete key to remove history items. - - 2003-04-21 David Bordoley - - * src/ephy-history-window.c: (key_pressed_cb), - (ephy_history_window_construct): - - Use delete key to remove history items. - - * src/bookmarks/ephy-bookmarks-editor: (cmd_delete), - (key_pressed_cb), (ephy_bookmarks_editor_construct): - - Call cmd_delete from key_press_cb for code reuse. - Don't allow deletion of special topics with the keyboard delete. - - ChangeLog | 13 +++++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 25 +++++++++++++++++++------ - src/ephy-history-window.c | 23 +++++++++++++++++++++++ - 3 files changed, 55 insertions(+), 6 deletions(-) - -commit 1ccd53c473f0a9037af0fdffa9c9b302c22554dd -Author: Marco Pesenti Gritti -Date: Mon Apr 21 16:01:11 2003 +0000 - - Revert the bookmarks toolbar implementation. We really need to integrate - - 2003-04-21 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml.in: - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmarks-toolbar.c: - * src/bookmarks/ephy-bookmarks-toolbar.h: - * src/ephy-window.c: (ephy_window_init), (ephy_window_set_chrome): - - Revert the bookmarks toolbar implementation. We really need to - integrate it with normal toolbars editor code. - - ChangeLog | 11 + - data/ui/epiphany-ui.xml.in | 1 - - src/bookmarks/Makefile.am | 2 - - src/bookmarks/ephy-bookmarks-toolbar.c | 365 --------------------------------- - src/bookmarks/ephy-bookmarks-toolbar.h | 58 ------ - src/ephy-window.c | 5 - - 6 files changed, 11 insertions(+), 431 deletions(-) - -commit 6a8eda0888cc095d9224d1e8c556a4c0acc67a1a -Author: David Bordoley -Date: Mon Apr 21 15:26:24 2003 +0000 - - Added tooltips to all the actions. - - 2003-04-21 David Bordoley - - * src/ephy-history-window.c: - * src/bookmarks/ephy-bookmarks-editor.c: - - Added tooltips to all the actions. - - ChangeLog | 7 +++++ - src/bookmarks/ephy-bookmarks-editor.c | 50 ++++++++++++++++++++++------------ - src/ephy-history-window.c | 51 ++++++++++++++++++++++------------- - 3 files changed, 73 insertions(+), 35 deletions(-) - -commit a43ec4118dd3f0ca9bba92d38b0bfe54d632b3f7 -Author: David Bordoley -Date: Mon Apr 21 14:27:53 2003 +0000 - - Added back code to clear the location entry. Marco I hope this is ok with - - 2003-04-21 David Bordoley - - * src/ephy-history-window.c: (cmd_clear): - - Added back code to clear the location entry. - Marco I hope this is ok with you :) - - ChangeLog | 7 +++++++ - src/ephy-history-window.c | 15 +++++++++++++++ - 2 files changed, 22 insertions(+) - -commit 861ffe47ca91ae1fa7a39c422c6941885d31bb2d -Author: David Bordoley -Date: Mon Apr 21 12:36:40 2003 +0000 - - Fixed a duplicate seperator. Add a view menu. - - 2003-04-21 David Bordoley - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - - Fixed a duplicate seperator. Add a view menu. - - * data/ui/epiphany-history-window-ui.xml.in: - - Add a view menu. - - * src/ephy-history-window.c: (ephy_history_window_construct): - - Clean up ephy_history_ui_entries[] so that it is a little more - organized. Add a view menu, but still needs to be hooked up. - - * src/bookmarks/ephy-bookmark-properties.c: (build_ui): - - s/"Show in the bookmarks _toolbar"/"_Show in the bookmarks toolbar". - Fixes a mnemonic collision. - - * src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_construct): - Clean up ephy_bookmark_popup_entries[] so that it is a little more - organized. Add a view menu, but still needs to be hooked up. Add mnemonic - to the "_Show in Toolbar" menu entry. - - ChangeLog | 25 +++++++++++++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 7 ++++- - data/ui/epiphany-history-window-ui.xml.in | 6 ++++ - src/bookmarks/ephy-bookmark-properties.c | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 50 +++++++++++++++++------------- - src/ephy-history-window.c | 34 ++++++++++++-------- - 6 files changed, 87 insertions(+), 37 deletions(-) - -commit 89f94d0afc4ce506aea6ad94ccb0f64cf6679851 -Author: Marco Pesenti Gritti -Date: Sun Apr 20 21:34:58 2003 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmarks-editor.c | 1 - - 1 file changed, 1 deletion(-) - -commit 32fa82cefb15534449fc472b9a43ba4bb6eac642 -Author: Marco Pesenti Gritti -Date: Sun Apr 20 21:27:05 2003 +0000 - - Remove unused files - - 2003-04-20 Marco Pesenti Gritti - - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-keywords-entry.c: - * src/bookmarks/ephy-keywords-entry.h: - - Remove unused files - - ChangeLog | 8 + - src/bookmarks/Makefile.am | 2 - - src/bookmarks/ephy-keywords-entry.c | 281 ------------------------------------ - src/bookmarks/ephy-keywords-entry.h | 68 --------- - 4 files changed, 8 insertions(+), 351 deletions(-) - -commit 55b65a38b1129a1e0874b22a565719750ce0ef14 -Author: Marco Pesenti Gritti -Date: Sun Apr 20 20:57:13 2003 +0000 - - Allow to add topics, update when changing bookmarks. - - 2003-04-20 Marco Pesenti Gritti - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_show_in_the_toolbar), - (cmd_copy), (ephy_bookmarks_editor_update_menu): - * src/bookmarks/ephy-bookmarks-toolbar.c: (bookmarks_changed_cb), - (ephy_bookmarks_toolbar_init), (ephy_bookmarks_toolbar_clean), - (go_location_cb), (add_toolitem), (ephy_bookmarks_toolbar_rebuild), - (ephy_bookmarks_toolbar_update): - - Allow to add topics, update when changing bookmarks. - - ChangeLog | 12 ++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 5 +- - src/bookmarks/ephy-bookmarks-editor.c | 73 ++++++++++++++++++-- - src/bookmarks/ephy-bookmarks-toolbar.c | 106 +++++++++++++++++++++++++---- - 4 files changed, 179 insertions(+), 17 deletions(-) - -commit 9f83e4c982e031826e3b0f020c3eafd8619fe1aa -Author: Abel Cheung -Date: Sun Apr 20 19:41:12 2003 +0000 - - Add missing files, remove non-existant ones. Updated traditional Chinese - - 2003-04-20 Abel Cheung - - * POTFILES.in: Add missing files, remove non-existant ones. - * zh_TW.po: Updated traditional Chinese translation. - * el.po: Fix header for msgfmt check. - - po/ChangeLog | 6 + - po/POTFILES.in | 12 +- - po/el.po | 2 +- - po/zh_TW.po | 1156 +++++++++++++++++++++++++++++++------------------------- - 4 files changed, 660 insertions(+), 516 deletions(-) - -commit 73d8a454b477fff54652bd94a773cddeb028dbf2 -Author: Xan Lopez -Date: Sun Apr 20 19:21:51 2003 +0000 - - Use g_list_free instead of g_free. - - - Use g_list_free instead of g_free. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/ephy-history-window.c | 2 +- - 3 files changed, 9 insertions(+), 2 deletions(-) - -commit bcaa7e7ec1f0bdd0fa4707854aeb7378031368fd -Author: Marco Pesenti Gritti -Date: Sun Apr 20 11:04:08 2003 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmarks-toolbar.c | 283 +++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks-toolbar.h | 58 +++++++ - 2 files changed, 341 insertions(+) - -commit d5eed5f210049e0b3b4332ddb36b0fde6b50a76e -Author: Marco Pesenti Gritti -Date: Sun Apr 20 11:03:42 2003 +0000 - - Update - - 2003-04-20 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: - - Update - - * data/epiphany.schemas.in: - * data/ui/epiphany-ui.xml.in: - * lib/egg/egg-editable-toolbar.h: - * lib/ephy-prefs.h: - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmark-properties.c: (update_checkbox), - (update_window_title), (toolbar_checkbox_changed_cb), - (set_window_icon), (build_ui): - * src/bookmarks/ephy-bookmarks.h: - * src/ephy-window.c: (add_widget), (ephy_window_init), - (save_window_chrome), (ephy_window_finalize), - (translate_default_chrome), (update_layout_toggles), - (ephy_window_set_chrome): - * src/window-commands.c: (window_cmd_view_bookmarks_toolbar): - * src/window-commands.h: - - First implementation of the new bookmarks toolbar thing. - Still doesnt work properly ... old bmk toolbars are still there - though. - Dave I dont like much the position of the checkbox in properties :/ - Maybe a different tab dunno .... - - ChangeLog | 28 +++++++++++++++++ - data/epiphany.schemas.in | 11 +++++++ - data/ui/epiphany-ui.xml.in | 1 + - lib/egg/egg-editable-toolbar.c | 52 ++++++++++++++++++++++++++++++++ - lib/egg/egg-editable-toolbar.h | 2 ++ - lib/ephy-prefs.h | 1 + - src/bookmarks/Makefile.am | 10 +++--- - src/bookmarks/ephy-bookmark-properties.c | 50 +++++++++++++++++++++++++----- - src/bookmarks/ephy-bookmarks.h | 3 +- - src/ephy-window.c | 46 +++++++++++++++++----------- - src/window-commands.c | 19 ++++++++++++ - src/window-commands.h | 3 ++ - 12 files changed, 197 insertions(+), 29 deletions(-) - -commit 1ae8286ebfe005b34e1ebe7068fc364aa3a4cb09 -Author: Marco Pesenti Gritti -Date: Sun Apr 20 09:00:08 2003 +0000 - - Looks like Erich forgot the xml changes - - 2003-04-20 Marco Pesenti Gritti - - * data/ui/epiphany-history-window-ui.xml.in: - - Looks like Erich forgot the xml changes - - ChangeLog | 6 ++++++ - data/ui/epiphany-history-window-ui.xml.in | 3 +++ - 2 files changed, 9 insertions(+) - -commit 9e97c642accc2106df3ba2811cd3b0cffd1f6730 -Author: Erich Lesh -Date: Sun Apr 20 08:34:33 2003 +0000 - - Delete and Bookmark page menu. - - 2003-04-20 Erich Lesh - - * src/ephy-history-window.c: (cmd_copy), (cmd_delete), - (cmd_bookmark_page), (ephy_history_window_update_menu): - - Delete and Bookmark page menu. - - ChangeLog | 7 +++++ - src/ephy-history-window.c | 70 ++++++++++++++++++++++++++++++++++++++++++++--- - 2 files changed, 73 insertions(+), 4 deletions(-) - -commit b3274d2018924e17db89a45a432d7da703c80130 -Author: Marco Pesenti Gritti -Date: Sun Apr 20 00:17:11 2003 +0000 - - Update tabs menu sensitivity when switching. - - 2003-04-20 Marco Pesenti Gritti - - * src/window-commands.c: (window_cmd_tabs_move_left), - (window_cmd_tabs_move_right): - - Update tabs menu sensitivity when switching. - - ChangeLog | 7 +++++++ - src/window-commands.c | 4 ++++ - 2 files changed, 11 insertions(+) - -commit 61e00b20d9933e55a7373b397b92f52bca2d954c -Author: Marco Pesenti Gritti -Date: Sat Apr 19 17:57:16 2003 +0000 - - Update Tabs and Zoom menus sensitivity - - 2003-04-19 Marco Pesenti Gritti - - * src/ephy-window.c: (setup_window), (update_tabs), - (ephy_window_update_control), (ephy_window_update_all_controls), - (ephy_window_set_zoom): - - Update Tabs and Zoom menus sensitivity - - ChangeLog | 8 ++++++++ - src/ephy-window.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 56 insertions(+) - -commit b2c6abf1424cde68177727eabb25f9789cfdc33c -Author: David Bordoley -Date: Sat Apr 19 17:20:45 2003 +0000 - - Add copy to the bookmark context menu. - - 2003-04-19 David Bordoley - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - - Add copy to the bookmark context menu. - - * data/ui/epiphany-history-window-ui.xml.in: - - Add an edit menu. Add copy to history item context menu. - - * src/ephy-history-window.c: (cmd_cut), (cmd_copy), - (cmd_paste), (cmd_select_all), (ephy_history_window_update_menu), - (ephy_history_window_construct): - - Add edit menu actions. Update the edit menu when activated. - Support copying the location of a history item and change - the label to "Copy Location". - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_copy), - (ephy_bookmarks_editor_update_menu): - - Support copying the location of a bookmark and change - the label to "Copy Location". - - ChangeLog | 24 +++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 4 +- - data/ui/epiphany-history-window-ui.xml.in | 14 ++- - src/bookmarks/ephy-bookmarks-editor.c | 51 +++++++--- - src/ephy-history-window.c | 145 ++++++++++++++++++++++++++++- - 5 files changed, 221 insertions(+), 17 deletions(-) - -commit 18bb6d0b335066b06f5e95d5ab27ac5a490e90b7 -Author: Marco Pesenti Gritti -Date: Sat Apr 19 16:48:28 2003 +0000 - - Update Edit menu sensitivity - - 2003-04-19 Marco Pesenti Gritti - - * src/ephy-window.c: (menu_activate_cb), (setup_window): - - Update Edit menu sensitivity - - ChangeLog | 6 ++++++ - src/ephy-window.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 67 insertions(+), 1 deletion(-) - -commit e67869280305fba213814f2cefa8c8d0aa0f36c7 -Author: Jorn Baayen -Date: Sat Apr 19 15:08:17 2003 +0000 - - slight treemodel cleanup - - ChangeLog | 11 +++++++++++ - lib/widgets/ephy-tree-model-node.c | 15 +++++++-------- - 2 files changed, 18 insertions(+), 8 deletions(-) - -commit 223c64a4749f008236d5523bb7a6bfd696ff0ffe -Author: Xan Lopez -Date: Sat Apr 19 12:16:17 2003 +0000 - - Open view source and copy page next to the current tab, not at the end - - - Open view source and copy page next to the current tab, not at the - end (this was actually a multi-liner patch, sorry marco :P). - - ChangeLog | 7 +++++++ - src/ephy-shell.c | 12 +++++++++--- - 2 files changed, 16 insertions(+), 3 deletions(-) - -commit eb54a302b7a560007abe4b803d04526d91c07553 -Author: Marco Pesenti Gritti -Date: Sat Apr 19 11:21:52 2003 +0000 - - Fix bookmarks editing and warnings when openining the dialog. - - 2003-04-19 Marco Pesenti Gritti - - * lib/widgets/ephy-node-view.c: (ephy_node_view_add_column), - (ephy_node_view_remove), (ephy_node_view_edit): - - Fix bookmarks editing and warnings when openining the dialog. - - * lib/widgets/ephy-node-view.h: - - Remove unused api. - - ChangeLog | 11 +++++++++++ - lib/widgets/ephy-node-view.c | 25 ++++++++++--------------- - lib/widgets/ephy-node-view.h | 3 --- - 3 files changed, 21 insertions(+), 18 deletions(-) - -commit 50ff5e50420a75f627344b7d8bad2451e9fb714a -Author: Xan Lopez -Date: Sat Apr 19 11:00:56 2003 +0000 - - Assume Pause/Resume is available for every channel, "fixes" resume for - - - Assume Pause/Resume is available for every channel, "fixes" resume for - HTTP among others. Drop some useless code. - - ChangeLog | 13 +++++++++++++ - embed/downloader-view.c | 11 +++-------- - embed/downloader-view.h | 1 - - embed/mozilla/ProgressListener.cpp | 19 ++----------------- - embed/mozilla/ProgressListener.h | 2 -- - 5 files changed, 18 insertions(+), 28 deletions(-) - -commit e527da5ea75e15dba79b88a95619e378f14e9043 -Author: Marco Pesenti Gritti -Date: Sat Apr 19 09:51:42 2003 +0000 - - from galeon. Don't assume sizeof(gsize) == sizeof(guint) makes epiphany - - 2003-04-19 Marco Pesenti Gritti - - * embed/mozilla/FilePicker.cpp: - - from galeon. Don't assume sizeof(gsize) == sizeof(guint) - makes epiphany build better on 64-bit architectures - - ChangeLog | 7 +++++++ - embed/mozilla/FilePicker.cpp | 8 ++++---- - 2 files changed, 11 insertions(+), 4 deletions(-) - -commit 6478cbdce358376ecc2ff37c975de89dc7038f51 -Author: Marco Pesenti Gritti -Date: Sat Apr 19 08:54:07 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - data/starthere/smartbookmarks.xml.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 94c177286f98d5ae22669eed8ed1e48fbf1e5ebe -Author: Marco Pesenti Gritti -Date: Fri Apr 18 17:48:01 2003 +0000 - - Fix the bug with back/fwd buttons auto prelighting. - - 2003-04-18 Marco Pesenti Gritti - - * lib/widgets/ephy-arrow-toolbutton.c: (button_state_changed_cb): - - Fix the bug with back/fwd buttons auto prelighting. - - ChangeLog | 6 ++++++ - lib/widgets/ephy-arrow-toolbutton.c | 28 ++++++++++++++++++---------- - 2 files changed, 24 insertions(+), 10 deletions(-) - -commit 4a4d612e4177cb4fc080324f60f57682c408b01a -Author: Marco Pesenti Gritti -Date: Fri Apr 18 16:43:54 2003 +0000 - - Implement clear history. Put favicons near sites names. - - 2003-04-18 Marco Pesenti Gritti - - * embed/ephy-history.c: (ephy_history_set_page_title), - (ephy_history_set_icon), (ephy_history_clear): - * embed/ephy-history.h: - * src/ephy-history-window.c: (cmd_clear), (provide_favicon), - (ephy_history_window_construct): - * src/ephy-tab.c: (ephy_tab_set_favicon): - - Implement clear history. Put favicons near sites names. - - ChangeLog | 11 +++++++++++ - embed/ephy-history.c | 29 +++++++++++++++++++++++++---- - embed/ephy-history.h | 7 ++++++- - src/ephy-history-window.c | 24 ++++++++++++++++++++++++ - src/ephy-tab.c | 5 +++++ - 5 files changed, 71 insertions(+), 5 deletions(-) - -commit 26d1ed1f62e1c3229729bb79673f1b424a4dd8d9 -Author: Marco Pesenti Gritti -Date: Fri Apr 18 10:19:22 2003 +0000 - - Do not install two copies of epiphany.png - - 2003-04-18 Marco Pesenti Gritti - - * data/art/Makefile.am: - - Do not install two copies of epiphany.png - - * embed/ephy-history.c: (ephy_history_save), - (ephy_history_set_page_title): - - Use host name as title for sites, not the real - title. - - * lib/ephy-state.c: (ephy_state_add_window), - (paned_size_allocate_cb), (ephy_state_add_paned): - * lib/ephy-state.h: - - Add a way to persist paned. - - * lib/widgets/ephy-node-view.h: - * lib/widgets/ephy-node-view.c: (ephy_node_view_sort_func), - (provide_text_weight), (ephy_node_view_add_column), - (ephy_node_view_has_selection): - - Improve add_column api a bit to support both auto sorting - and user sorting. - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - - Updates for changed api. - - * src/ephy-history-window.c: (ephy_history_window_construct): - - Set a max size for title/location. Not very good, but the - best we can do with current treeview api prolly. - Persist the paned size. - Make columns user sortable. - - ChangeLog | 38 +++++++++++++++++ - data/art/Makefile.am | 1 - - embed/ephy-history.c | 33 +-------------- - lib/ephy-state.c | 58 +++++++++++++++++++++++++ - lib/ephy-state.h | 4 ++ - lib/widgets/ephy-node-view.c | 79 +++++++++++++++-------------------- - lib/widgets/ephy-node-view.h | 15 +++---- - src/bookmarks/ephy-bookmarks-editor.c | 8 ++-- - src/ephy-history-window.c | 35 ++++++++++------ - 9 files changed, 171 insertions(+), 100 deletions(-) - -commit 6e4b4bb1ec37e4afb9a8b52bb81d4d82ce20b136 -Author: Marco Pesenti Gritti -Date: Thu Apr 17 18:36:15 2003 +0000 - - *** empty log message *** - - data/ui/.cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit f4aaa4442027d3078cc2809a0c9db2d5b4e48d85 -Author: Marco Pesenti Gritti -Date: Thu Apr 17 18:34:38 2003 +0000 - - New history dialog implementation. More similar to bookmarks. Yeah it - - 2003-04-17 Marco Pesenti Gritti - - * data/ui/Makefile.am: - * embed/ephy-history.c: (ephy_history_init): - * embed/ephy-history.h: - * lib/widgets/ephy-tree-model-node.c: - (ephy_tree_model_node_get_value): - * src/Makefile.am: - * src/ephy-shell.c: (ephy_shell_init), (ephy_shell_finalize), - (ephy_shell_show_bookmarks_editor), (history_window_hide_cb), - (ephy_shell_show_history_window): - * src/ephy-shell.h: - * src/ephy-window.c: (ephy_window_finalize), - (update_embed_dialogs), (ephy_window_get_find_dialog): - * src/ephy-window.h: - * src/window-commands.c: (window_cmd_go_history): - - New history dialog implementation. More similar - to bookmarks. Yeah it still sucks ... but the hard - part is done. - - ChangeLog | 21 + - data/ui/Makefile.am | 3 +- - data/ui/epiphany-history-window-ui.xml.in | 28 + - embed/ephy-history.c | 20 + - embed/ephy-history.h | 3 +- - lib/widgets/ephy-tree-model-node.c | 2 +- - src/Makefile.am | 6 +- - src/ephy-history-model.c | 844 ------------------------------ - src/ephy-history-model.h | 84 --- - src/ephy-history-window.c | 728 ++++++++++++++++++++++++++ - src/ephy-history-window.h | 60 +++ - src/ephy-shell.c | 42 +- - src/ephy-shell.h | 4 +- - src/ephy-window.c | 45 -- - src/ephy-window.h | 2 - - src/history-dialog.c | 631 ---------------------- - src/history-dialog.h | 63 --- - src/window-commands.c | 2 +- - 18 files changed, 909 insertions(+), 1679 deletions(-) - -commit 868e9739e1a2273ebe6f668cd28cc0b9eec50c2d -Author: Duarte Loreto -Date: Thu Apr 17 18:28:33 2003 +0000 - - Updated Portuguese translation. - - 2003-04-17 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 354 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 210 insertions(+), 148 deletions(-) - -commit daf5bb543ce053a50ad5b82e46a84175175b204d -Author: Marco Pesenti Gritti -Date: Thu Apr 17 13:25:02 2003 +0000 - - *** empty log message *** - - src/history-dialog.c | 3 +++ - 1 file changed, 3 insertions(+) - -commit 609b92cfa632385313d1d2421b516bdb41fdbf00 -Author: Marco Pesenti Gritti -Date: Thu Apr 17 12:59:52 2003 +0000 - - New abstracted implementations. Nicer and will be useful for history - - 2003-04-17 Marco Pesenti Gritti - - * lib/widgets/Makefile.am: - * lib/widgets/ephy-node-view.c: - * lib/widgets/ephy-node-view.h: - * lib/widgets/ephy-tree-model-node.c: - * lib/widgets/ephy-tree-model-node.h: - - New abstracted implementations. - Nicer and will be useful for - history dialog interface rehash to make - it more consistent with bookmarks (this - was the hard part of the work). - - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmarks-editor.c: - - Use them. - - * src/history-dialog.c: - - Temp hack to keep the thing building until - I actually rewrite history dialog. - - 2 - - ChangeLog | 24 + - lib/widgets/Makefile.am | 4 + - lib/widgets/ephy-node-view.c | 1099 +++++++++++++++++++++++++++++++++ - lib/widgets/ephy-node-view.h | 116 ++++ - lib/widgets/ephy-tree-model-node.c | 727 ++++++++++++++++++++++ - lib/widgets/ephy-tree-model-node.h | 85 +++ - src/bookmarks/Makefile.am | 6 +- - src/bookmarks/ephy-bookmarks-editor.c | 52 +- - src/bookmarks/ephy-bookmarks.c | 13 +- - src/bookmarks/ephy-bookmarks.h | 7 - - src/bookmarks/ephy-node-view.c | 1039 ------------------------------- - src/bookmarks/ephy-node-view.h | 101 --- - src/bookmarks/ephy-topics-selector.c | 5 +- - src/bookmarks/ephy-tree-model-node.c | 752 ---------------------- - src/bookmarks/ephy-tree-model-node.h | 83 --- - src/ephy-window.c | 1 - - 16 files changed, 2106 insertions(+), 2008 deletions(-) - -commit 9e94d5208ee7d936c6d3595435b9364fec5850dd -Author: Marco Pesenti Gritti -Date: Wed Apr 16 19:23:44 2003 +0000 - - Remove, no more used - - 2003-04-16 Marco Pesenti Gritti - - * data/ui/Makefile.am: - * data/ui/epiphany-toolbar-popup-ui.xml.in: - - Remove, no more used - - ChangeLog | 7 +++++++ - TODO | 1 + - data/ui/Makefile.am | 3 +-- - data/ui/epiphany-toolbar-popup-ui.xml.in | 12 ------------ - 4 files changed, 9 insertions(+), 14 deletions(-) - -commit 8412f01e4161ccc40603ccdc4011714c5a3f9aa7 -Author: Marco Pesenti Gritti -Date: Wed Apr 16 19:14:37 2003 +0000 - - Update. - - 2003-04-16 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolitem.h: - - Update. - - ChangeLog | 8 + - lib/egg/egg-editable-toolbar.c | 36 ++- - lib/egg/eggtoolbar.c | 586 ++++++++++++++++++++--------------------- - lib/egg/eggtoolitem.h | 1 + - 4 files changed, 333 insertions(+), 298 deletions(-) - -commit e89d190c6c6ecaaa4e367835c5fddb549325b3f2 -Author: Dave Camp -Date: Wed Apr 16 18:41:06 2003 +0000 - - Moved the new_window_orphan signal to EphyEmbedSingle. - - 2003-04-16 Dave Camp - - * embed/ephy-embed-shell.c: (ephy_embed_shell_class_init): - * embed/ephy-embed-single.c: (ephy_embed_single_class_init): - * src/ephy-shell.c: (ephy_shell_init): Moved the - new_window_orphan signal to EphyEmbedSingle. - - ChangeLog | 7 +++++++ - embed/ephy-embed-shell.c | 12 ------------ - embed/ephy-embed-shell.h | 4 ---- - embed/ephy-embed-single.c | 19 +++++++++++++++++++ - embed/ephy-embed-single.h | 5 +++++ - src/ephy-shell.c | 2 +- - 6 files changed, 32 insertions(+), 17 deletions(-) - -commit 8b70f35b46a84e6ebaf11471e707b8fe2dcdb4c7 -Author: Jeremy Katz -Date: Wed Apr 16 18:32:31 2003 +0000 - - New file. Rpm spec. - - 2003-04-16 Jeremy Katz - - * epiphany.spec: New file. Rpm spec. - - ChangeLog | 4 +++ - epiphany.spec | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 82 insertions(+) - -commit 3d8d6c2a763f3f8cdb69719763ebe3cbeeaab789 -Author: Marco Pesenti Gritti -Date: Wed Apr 16 18:02:41 2003 +0000 - - Add a way to decide if the view is target. The impl is an hack but we keep - - 2003-04-16 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_rename), - (cmd_delete), (cmd_select_all), - (ephy_bookmarks_editor_update_menu), - (ephy_bookmarks_editor_show_popup_cb), - (keyword_node_show_popup_cb), (menu_activate_cb): - * src/bookmarks/ephy-node-view.c: (ephy_node_view_key_press_cb), - (ephy_node_view_button_press_cb), (ephy_node_view_construct), - (ephy_node_view_is_editing), (ephy_node_view_is_target): - * src/bookmarks/ephy-node-view.h: - - Add a way to decide if the view is target. The impl is an hack - but we keep ephy-bookmarks clean. The best we can do right now. - - ChangeLog | 15 ++++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 33 +++++++++++---------------- - src/bookmarks/ephy-node-view.c | 43 +++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-node-view.h | 2 ++ - 4 files changed, 73 insertions(+), 20 deletions(-) - -commit 4bc1338f7943928d6abaac5b955c2a86f5ddc8e6 -Author: Marco Pesenti Gritti -Date: Tue Apr 15 19:53:43 2003 +0000 - - Dont set icon on bookmarks when the url is NULL ! Fix a bad crasher. - - 2003-04-15 Marco Pesenti Gritti - - * src/ephy-tab.c: (ephy_tab_set_favicon): - - Dont set icon on bookmarks when the url is NULL ! - Fix a bad crasher. - - ChangeLog | 7 +++++++ - src/ephy-tab.c | 15 ++++++++------- - 2 files changed, 15 insertions(+), 7 deletions(-) - -commit 5c498e67e980c040e5c83e2b0b8ebed0ae38cb65 -Author: Xan Lopez -Date: Tue Apr 15 19:20:32 2003 +0000 - - "Intelligent" selection in node removal. - - - "Intelligent" selection in node removal. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-node-view.c | 33 +++++++++++++++++++++++++++++++++ - 2 files changed, 39 insertions(+) - -commit 0fa3e5187480f6138c38771e59924e992205cd09 -Author: David Bordoley -Date: Tue Apr 15 17:42:54 2003 +0000 - - Set sizing of the icon column to GTK_TREE_VIEW_COLUMN_GROW_ONLY. - - 2003-04-15 David Bordoley - - * src/bookmarks/ephy-node-view.c: - (ephy_node_view_add_icon_column): - - Set sizing of the icon column to GTK_TREE_VIEW_COLUMN_GROW_ONLY. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-node-view.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 81cc9fc7c119b8d45c28b0cdf1351e330f445264 -Author: Marco Pesenti Gritti -Date: Tue Apr 15 17:36:46 2003 +0000 - - Fix context menu selection mess, tricky, tricky, tricky. It's all kris - - 2003-04-15 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu), - (ephy_bookmarks_editor_show_popup_cb), - (keyword_node_show_popup_cb), (menu_activate_cb): - * src/bookmarks/ephy-node-view.c: - (ephy_node_view_selection_changed_cb), (get_node_from_path), - (ephy_node_view_button_press_cb), (ephy_node_view_init), - (ephy_node_view_get_selection), (ephy_node_view_has_selection): - - Fix context menu selection mess, tricky, - tricky, tricky. It's all kris fault. - - ChangeLog | 14 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 50 +++++++++++++--------- - src/bookmarks/ephy-node-view.c | 80 +++++++++++++++++++++++------------ - 3 files changed, 97 insertions(+), 47 deletions(-) - -commit 9d9872cea3a0bc588ee0d64f231d64510906efbb -Author: David Bordoley -Date: Tue Apr 15 16:47:00 2003 +0000 - - *src/bookmarks/ephy-bookmark-editor.c: - - 2003-04-15 David Bordoley - - *src/bookmarks/ephy-bookmark-editor.c: - (ephy_bookmarks_editor_update_menu): - - Paste = False when not in an editable. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 1 + - 2 files changed, 8 insertions(+) - -commit 9419650a822caaa2310a323ec8199fa5eb1f0e33 -Author: David Bordoley -Date: Tue Apr 15 16:41:23 2003 +0000 - - *src/bookmarks/ephy-bookmark-editor.c: - - 2003-04-15 David Bordoley - - *src/bookmarks/ephy-bookmark-editor.c: - (ephy_bookmarks_editor_update_menu): - - Fix select all for the bmview. Paste only - sensitive when in an editable. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 15 +++++++++------ - 2 files changed, 17 insertions(+), 6 deletions(-) - -commit 6eb4292b469aa9a12247f2cd1b22d742624adf81 -Author: Marco Pesenti Gritti -Date: Tue Apr 15 16:25:41 2003 +0000 - - Remove some obsolete factory code - - 2003-04-15 Marco Pesenti Gritti - - * embed/mozilla/EphyAboutRedirector.h: - - Remove some obsolete factory code - - ChangeLog | 6 ++++++ - embed/mozilla/EphyAboutRedirector.h | 3 --- - 2 files changed, 6 insertions(+), 3 deletions(-) - -commit 7e61b74638a8d3858f1d019ecc4331b833b680ff -Author: Marco Pesenti Gritti -Date: Tue Apr 15 15:59:55 2003 +0000 - - Hidden pref for middle click open url. Default off. - - 2003-04-15 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * lib/ephy-prefs.h: - * src/ephy-tab.c: (ephy_tab_init), (ephy_tab_dom_mouse_down_cb): - - Hidden pref for middle click open url. Default off. - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu), - (ephy_bookmarks_editor_dispose), (keyword_node_selected_cb), - (keyword_node_show_popup_cb), (build_search_box), - (menu_activate_cb), (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-node-view.c: (cell_renderer_edited), - (ephy_node_view_init), (ephy_node_view_edit), - (ephy_node_view_is_editing): - * src/bookmarks/ephy-node-view.h: - - Rework sensitivity updates and complete them with cut/copy/select all - - ChangeLog | 20 ++++++++ - data/epiphany.schemas.in | 11 ++++ - lib/ephy-prefs.h | 1 + - src/bookmarks/ephy-bookmarks-editor.c | 97 ++++++++++++++++------------------- - src/bookmarks/ephy-node-view.c | 13 +++++ - src/bookmarks/ephy-node-view.h | 2 + - src/ephy-tab.c | 24 ++------- - 7 files changed, 95 insertions(+), 73 deletions(-) - -commit a1962faa29d9f42ed0dfeab8126767470c4be6e0 -Author: David Bordoley -Date: Tue Apr 15 15:02:56 2003 +0000 - - Added a confirmation dialog for clearing history. - - 2003-04-15 David Bordoley - - * src/history-dialog.c: (history_clear_button_clicked_cb), - (clear_history_dialog_response_cb): - - Added a confirmation dialog for clearing history. - - Patch from Jon Svendsen - - ChangeLog | 9 +++++++ - src/history-dialog.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++--- - 2 files changed, 77 insertions(+), 4 deletions(-) - -commit 217f693f5762bbc4f327542dd911a639c42dc8bd -Author: Marco Pesenti Gritti -Date: Tue Apr 15 14:24:35 2003 +0000 - - Update, fix remove toolbar regressions. - - 2003-04-15 Marco Pesenti Gritti - - * lib/egg/egg-editable-toolbar.c: - * lib/egg/eggmarshalers.list: - * lib/egg/eggtoggletoolbutton.c: - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolbar.h: - - Update, fix remove toolbar regressions. - - ChangeLog | 10 ++ - lib/egg/egg-editable-toolbar.c | 111 ++++++----------- - lib/egg/eggmarshalers.list | 2 + - lib/egg/eggtoggletoolbutton.c | 52 +++++--- - lib/egg/eggtoolbar.c | 268 ++++++++++++++++++++--------------------- - lib/egg/eggtoolbar.h | 4 +- - 6 files changed, 221 insertions(+), 226 deletions(-) - -commit b97ce595da599035a5b3e38997eace8c2b416060 -Author: Marco Pesenti Gritti -Date: Tue Apr 15 14:10:57 2003 +0000 - - Remove some api that was just silly wrappers. Return GtkTreeViewColumn on - - 2003-04-15 Marco Pesenti Gritti - - * TODO: - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_select_all), - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-node-view.c: (ephy_node_view_add_column), - (ephy_node_view_remove): - * src/bookmarks/ephy-node-view.h: - - Remove some api that was just silly wrappers. - Return GtkTreeViewColumn on add_column. - - * src/ephy-nautilus-view.c: (gnv_embed_new_window_cb): - * src/ephy-shell.c: (ephy_shell_new_window_cb), - (ephy_shell_new_tab): - * src/ephy-tab.c: (ephy_tab_new_window_cb): - * src/ephy-window.c: (ephy_window_add_tab): - * src/ephy-window.h: - * src/session.c: (parse_embed): - - Ever open tab as last on File->New tab and similars. - - ChangeLog | 22 ++++++++++++++++++++++ - TODO | 1 - - src/bookmarks/ephy-bookmarks-editor.c | 12 +++++++++--- - src/bookmarks/ephy-node-view.c | 22 ++++------------------ - src/bookmarks/ephy-node-view.h | 28 ++++++++++++---------------- - src/ephy-nautilus-view.c | 2 +- - src/ephy-shell.c | 3 ++- - src/ephy-tab.c | 2 +- - src/ephy-window.c | 11 ++++++----- - src/ephy-window.h | 1 + - src/session.c | 2 +- - 11 files changed, 59 insertions(+), 47 deletions(-) - -commit c608bb09921d9f654c7dc6fd3a81a370b2c85111 -Author: Marco Pesenti Gritti -Date: Tue Apr 15 12:08:08 2003 +0000 - - Implement Not categorized special topic, note that only new/modified - - 2003-04-15 Marco Pesenti Gritti - - * lib/ephy-types.h: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_save), - (ephy_bookmarks_init), (ephy_bookmarks_finalize), - (ephy_bookmarks_add), (get_topics_list), (update_topics_list), - (ephy_bookmarks_set_keyword), (ephy_bookmarks_unset_keyword): - * src/bookmarks/ephy-tree-model-node.c: - (ephy_tree_model_node_update_node): - - Implement Not categorized special topic, note that only - new/modified bookmarks will be added to it. - - ChangeLog | 3 +++ - 1 file changed, 3 insertions(+) - -commit 45fdc41e1bf87f59021c8415e240d121043d8a0f -Author: Vincent Untz -Date: Tue Apr 15 11:47:31 2003 +0000 - - Declare all the variables before the first instruction. Fixes a - - 2003-04-13 Vincent Untz - - * src/prefs-dialog.c: (prefs_dialog_show_help): - - Declare all the variables before the first instruction. Fixes a - compilation problem under gcc 2.95. - - ChangeLog | 27 ++++++++++++ - lib/ephy-types.h | 1 + - src/bookmarks/ephy-bookmarks.c | 80 +++++++++++++++++++++++++++++++----- - src/bookmarks/ephy-tree-model-node.c | 2 + - src/prefs-dialog.c | 3 +- - 5 files changed, 101 insertions(+), 12 deletions(-) - -commit ff1c282fd26c20c432c20350cbba084aeffd4720 -Author: Hasbullah Bin Pit -Date: Tue Apr 15 06:51:59 2003 +0000 - - Added "ms". - - 2003-04-14 Hasbullah Bin Pit - - * configure.in(ALL_LINGUAS): Added "ms". - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit e7b2a115e5a602c6cfa9b2622c5f8ee1c3f74ba9 -Author: Hasbullah Bin Pit -Date: Tue Apr 15 06:50:08 2003 +0000 - - Added Malay translation. - - 2002-04-14 Hasbullah Bin Pit - - * ms.po: Added Malay translation. - - po/ChangeLog | 4 + - po/ms.po | 2893 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2897 insertions(+) - -commit bb9f4f7ecba81dce53650ff7d8f4bb003404e9ea -Author: Christophe Merlet -Date: Mon Apr 14 23:18:42 2003 +0000 - - Updated French translation. - - po/ChangeLog | 4 + - po/fr.po | 478 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 272 insertions(+), 210 deletions(-) - -commit 48a618c47c5af59c214b10b52a1afb24023cbcb7 -Author: Marco Pesenti Gritti -Date: Mon Apr 14 19:59:09 2003 +0000 - - Use home:, have titles. - - 2003-04-14 Marco Pesenti Gritti - - * data/epiphany.schemas.in: - * data/starthere/index.xml.in: - * data/starthere/section.xsl: - * data/starthere/smartbookmarks.xml.in: - * embed/mozilla/StartHereProtocolHandler.cpp: - * embed/mozilla/StartHereProtocolHandler.h: - - Use home:, have titles. - - * lib/ephy-node.c: (ephy_node_get_from_id): - - Do not assert on 0 id. It's valid. - - ChangeLog | 15 +++++++++++++++ - data/epiphany.schemas.in | 2 +- - data/starthere/index.xml.in | 6 +++--- - data/starthere/section.xsl | 3 ++- - data/starthere/smartbookmarks.xml.in | 6 +++--- - embed/mozilla/StartHereProtocolHandler.cpp | 2 +- - embed/mozilla/StartHereProtocolHandler.h | 2 +- - lib/ephy-node.c | 2 -- - 8 files changed, 26 insertions(+), 12 deletions(-) - -commit 9e73b40c1c5d4c65933bf8affb40066196a45db9 -Author: David Bordoley -Date: Mon Apr 14 19:12:25 2003 +0000 - - Added some help buttons to the new bookmark, and properties dialogs. - - 2003-04-14 David Bordoley - - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_help), (bookmark_properties_response_cb), - (build_ui): - * src/bookmarks/ephy-new-bookmark.c: (phy_new_bookmark_help), - (ephy_new_bookmark_response_cb), (ephy_new_bookmark_construct): - - Added some help buttons to the new bookmark, and properties dialogs. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmark-properties.c | 13 ++++++++++++- - src/bookmarks/ephy-new-bookmark.c | 13 ++++++++++++- - 3 files changed, 34 insertions(+), 2 deletions(-) - -commit 1b233621840ce78f89ab5b91e67f8c9c8f6a09df -Author: Marco Pesenti Gritti -Date: Mon Apr 14 18:51:06 2003 +0000 - - s/galeon/epiphany ;) - - 2003-04-14 Marco Pesenti Gritti - - * configure.in: - - s/galeon/epiphany ;) - - * src/bookmarks/ephy-bookmarks-editor.c: (reset_search_entry), - (keyword_node_selected_cb), (search_entry_changed_cb): - * src/bookmarks/ephy-topic-action.c: (build_bookmarks_menu), - (build_topics_menu), (build_menu), (button_press_cb): - - Evil bookmarks menu is back in toolbars eeeeek. - And no you cant have more than one level ... too bad. - - Fix search/node selection interaction. - - ChangeLog | 16 +++++++ - configure.in | 4 +- - src/bookmarks/ephy-bookmarks-editor.c | 30 +++++++++++++ - src/bookmarks/ephy-topic-action.c | 79 +++++++++++++++++++++++++++++++---- - 4 files changed, 119 insertions(+), 10 deletions(-) - -commit 33021c190b07950973747e1891f0a58af675fe2b -Author: David Bordoley -Date: Mon Apr 14 14:21:32 2003 +0000 - - Add a help menu and associated "Contents" and "About" menu entries. Add a - - 2003-04-14 David Bordoley - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_help_contents), - (ephy_bookmarks_editor_update_menu), (ephy_bookmarks_editor_dispose), - (ephy_bookmarks_editor_node_selected_cb), (keyword_node_selected_cb), - (build_search_box): - - Add a help menu and associated "Contents" and "About" menu entries. - Add a focus_monitor to the search entry. Only pass an editor - to update_menu. Update the sensitivity and label of - "Open in New Window/Tab(s)" based on focus and selection. Translators, - if this causes problems with mneumonics, please give suggestions for - other letters to use. - - * src/window-commands.c: (window_cmd_help_about): - * src/window-commands.h: - - Take a GtkWidget instead of an EphyWindow as the - callback data so that the about function can be used - in the bme. - - * src/ephy-window.c: (setup_window): - - Setup short toolbar labels for "Bookmark Page...", - "Save As...", "Print...", and "Open..." so that these - items don't have elipses on the toolbar. - - ChangeLog | 28 ++++++++++++++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 5 +++ - src/bookmarks/ephy-bookmarks-editor.c | 54 ++++++++++++++++++++++++++---- - src/ephy-window.c | 11 +++++- - src/window-commands.c | 2 +- - src/window-commands.h | 2 +- - 6 files changed, 92 insertions(+), 10 deletions(-) - -commit 9b184b29ecf975bdd48166599349e8e9a314d2e3 -Author: Frank Belew (Myth) -Date: Mon Apr 14 14:11:42 2003 +0000 - - If user prefers tabs (CONF_TABS_TABBED), always show tab bar - - * lib/widgets/ephy-notebook.c (update_tabs_visibility): - If user prefers tabs (CONF_TABS_TABBED), always show tab bar - - ChangeLog | 6 ++++++ - lib/widgets/ephy-notebook.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 9c982398b8e889b2b1228b352e89f3c50b5c4360 -Author: Christian Rose -Date: Mon Apr 14 11:05:19 2003 +0000 - - Updated Swedish translation. - - 2003-04-14 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++ - po/sv.po | 134 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 87 insertions(+), 51 deletions(-) - -commit 4ecb881aa606bd741b49e0d1d486694e8fe4250b -Author: Marco Pesenti Gritti -Date: Sun Apr 13 18:34:43 2003 +0000 - - No need to advertise our name in menus. The user doesnt care. s/Epiphany - - 2003-04-13 Marco Pesenti Gritti - - * data/bme.desktop.in: - * data/epiphany.desktop.in: - - No need to advertise our name in menus. The user doesnt care. - s/Epiphany Bookmarks Editor/Web bookmarks - - ChangeLog | 8 ++++++++ - data/bme.desktop.in | 2 +- - data/epiphany.desktop.in | 2 +- - 3 files changed, 10 insertions(+), 2 deletions(-) - -commit 56a6f25de5030d5645d08eac6ba7fe453dfe7aed -Author: Mark Finlay -Date: Sun Apr 13 18:17:40 2003 +0000 - - add buzilla info to dekstop files - - ChangeLog | 7 +++++++ - data/bme.desktop.in | 3 +++ - data/epiphany.desktop.in | 3 +++ - 3 files changed, 13 insertions(+) - -commit 5009179262c9faf39857e7bca14ad718b84ba51c -Author: Marco Pesenti Gritti -Date: Sun Apr 13 18:08:55 2003 +0000 - - Fix leaks. Dont truncate utf8 strings. - - 2003-04-13 Marco Pesenti Gritti - - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-tab.c: (ephy_tab_init), (ephy_tab_finalize), - (ephy_tab_set_favicon), (ephy_tab_favicon_cache_changed_cb), - (ephy_tab_link_message_cb), (ephy_tab_location_cb), - (ephy_tab_get_status_message): - - Fix leaks. Dont truncate utf8 strings. - - ChangeLog | 10 ++++++++++ - embed/mozilla/mozilla-embed.cpp | 12 +++--------- - src/ephy-tab.c | 29 ++++++++++++++--------------- - 3 files changed, 27 insertions(+), 24 deletions(-) - -commit d4d88cfb05a492697310ef53da921ce2c95cef0a -Author: Marco Pesenti Gritti -Date: Sun Apr 13 17:20:06 2003 +0000 - - Fix the text to make sense. - - 2003-04-13 Marco Pesenti Gritti - - * data/starthere/smartbookmarks.xml.in: - - Fix the text to make sense. - - ChangeLog | 6 ++++++ - data/starthere/smartbookmarks.xml.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 678b3694e0291e11b6ba658b83cc93d043d2a524 -Author: Marco Pesenti Gritti -Date: Sun Apr 13 17:15:49 2003 +0000 - - Install the script. - - 2003-04-13 Marco Pesenti Gritti - - * NEWS: - * src/Makefile.am: - - Install the script. - - Release 0.5.0 - - ChangeLog | 9 +++++++++ - NEWS | 6 +++--- - src/Makefile.am | 1 + - 3 files changed, 13 insertions(+), 3 deletions(-) - -commit b01577f5778108342c668f1432c2b84cf2f2c6bf -Author: Evandro Fernandes Giovanini -Date: Sun Apr 13 17:02:48 2003 +0000 - - Updated Brazilian Portuguese translation. - - 2003-04-13 Evandro Fernandes Giovanini - - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 373 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 197 insertions(+), 180 deletions(-) - -commit 1d0dee8dc5b8430df45386bf4a870e6de14c9a77 -Author: Duarte Loreto -Date: Sun Apr 13 16:30:17 2003 +0000 - - Updated Portuguese translation. - - 2003-04-13 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 + - po/pt.po | 290 ++++++++++++++++++++++++++++++++++------------------------- - 2 files changed, 170 insertions(+), 124 deletions(-) - -commit 71ba304503bfc2219ea4905ea766ed0880219ecc -Author: Marco Pesenti Gritti -Date: Sun Apr 13 10:12:34 2003 +0000 - - Use google feel like for keywords - - 2003-04-13 Marco Pesenti Gritti - - * embed/mozilla/default-prefs.js: - - Use google feel like for keywords - - * lib/ephy-node.c: (ephy_node_new_with_id), - (ephy_node_system_init): - * lib/ephy-node.h: - - Pass the reserved ids num - - * lib/ephy-types.h: - * src/ephy-shell.c: (ephy_shell_init): - - Increase reserved ids to 100. - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init_defaults), - (ephy_bookmarks_load), (ephy_bookmarks_init): - - Default keywords and bookmarks (only google smb). - Keywords are probably quite sucky, well it's a start ;) - Adding more bookmarks could be a i18n pain. - - We should be ready for 0.5.0 now. - - Apologies to translators for the added string, but this - was really necessary for the bookmarks system to make sense :/ - - ChangeLog | 26 +++++++++++++++++++++ - embed/mozilla/default-prefs.js | 2 +- - lib/ephy-node.c | 10 +++------ - lib/ephy-node.h | 2 +- - lib/ephy-types.h | 2 ++ - src/bookmarks/ephy-bookmarks.c | 51 ++++++++++++++++++++++++++++++++++++++++-- - src/ephy-shell.c | 2 +- - 7 files changed, 83 insertions(+), 12 deletions(-) - -commit 4e4065d82b2f0322c43015db238e11e9edf76bd8 -Author: Xan Lopez -Date: Sun Apr 13 00:16:27 2003 +0000 - - Fix typos in NEWS, cosmetic changes to epiphany.xhtml - - - Fix typos in NEWS, cosmetic changes to epiphany.xhtml - - ChangeLog | 10 ++++++++++ - NEWS | 4 ++-- - data/epiphany.xhtml | 28 +++++++--------------------- - 3 files changed, 19 insertions(+), 23 deletions(-) - -commit 665391b5a7a6a10ec84bf042c505776b9a4b039d -Author: Marco Pesenti Gritti -Date: Sat Apr 12 22:55:04 2003 +0000 - - *** empty log message *** - - NEWS | 38 +++++++++++++++++++------------------- - src/.cvsignore | 1 + - src/Makefile.am | 6 +++--- - src/epiphany.in | 20 ++++++++++++++++++++ - 4 files changed, 43 insertions(+), 22 deletions(-) - -commit c3caa86f98d9468a719de3a208bcad696e133804 -Author: Marco Pesenti Gritti -Date: Sat Apr 12 22:37:38 2003 +0000 - - Update for 0.5.0. Readd evil start script. This sucks :/ - - 2003-04-13 Marco Pesenti Gritti - - * NEWS: - * TODO: - * configure.in: - * src/Makefile.am: - - Update for 0.5.0. - Readd evil start script. This sucks :/ - - ChangeLog | 10 ++++++ - NEWS | 113 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- - TODO | 29 +-------------- - configure.in | 4 ++- - 4 files changed, 122 insertions(+), 34 deletions(-) - -commit 46e46510eada4f36a8e556d748f016e8da890545 -Author: Ole Laursen -Date: Sat Apr 12 12:39:37 2003 +0000 - - Updated Danish translation. - - 2003-04-12 Ole Laursen - - * da.po: Updated Danish translation. - - po/ChangeLog | 4 + - po/da.po | 621 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 340 insertions(+), 285 deletions(-) - -commit 351710529822eaa9dd0d0daaef2a8f5599ece375 -Author: Christian Neumair -Date: Sat Apr 12 09:51:39 2003 +0000 - - Updated German translation, added missing files to POTFILES.*. - - po/ChangeLog | 5 + - po/POTFILES.in | 2 + - po/POTFILES.skip | 2 + - po/de.po | 436 ++++++++++++++++++++++++++++--------------------------- - 4 files changed, 235 insertions(+), 210 deletions(-) - -commit f79b4f6d13374b3fd3c0011e524c6c16955250fb -Author: Christian Rose -Date: Sat Apr 12 02:42:06 2003 +0000 - - Updated Swedish translation. - - 2003-04-12 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 265 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 142 insertions(+), 127 deletions(-) - -commit 824dfce72819337e7dad44f9b9c999caadd0e9a2 -Author: Marco Pesenti Gritti -Date: Sat Apr 12 00:37:43 2003 +0000 - - *** empty log message *** - - ChangeLog | 29 +++ - configure.in | 30 +++ - embed/mozilla/ContentHandler.cpp | 26 --- - embed/mozilla/EphyAboutRedirector.cpp | 21 -- - embed/mozilla/EphyWrapper.cpp | 20 +- - embed/mozilla/ExternalProtocolService.cpp | 23 -- - embed/mozilla/FilePicker.cpp | 24 -- - embed/mozilla/FtpProtocolHandler.cpp | 37 +-- - embed/mozilla/FtpProtocolHandler.h | 13 +- - embed/mozilla/GlobalHistory.cpp | 49 +--- - embed/mozilla/GlobalHistory.h | 26 ++- - embed/mozilla/IRCProtocolHandler.cpp | 37 +-- - embed/mozilla/IRCProtocolHandler.h | 13 +- - embed/mozilla/MailtoProtocolHandler.cpp | 43 +--- - embed/mozilla/MailtoProtocolHandler.h | 13 +- - embed/mozilla/MozRegisterComponents.cpp | 360 ++++++++++++++++++----------- - embed/mozilla/PrintingPromptService.cpp | 39 +--- - embed/mozilla/PrintingPromptService.h | 13 +- - embed/mozilla/ProgressListener.cpp | 24 -- - embed/mozilla/StartHereProtocolHandler.cpp | 37 +-- - embed/mozilla/StartHereProtocolHandler.h | 17 +- - embed/mozilla/mozilla-embed.cpp | 2 + - 22 files changed, 370 insertions(+), 526 deletions(-) - -commit 3a57d18b63e6cde5a2a3bed06834020794c0ebd9 -Author: Marco Pesenti Gritti -Date: Wed Apr 9 09:24:05 2003 +0000 - - We cant assume the favicon is already in the cache. - - 2003-04-09 Marco Pesenti Gritti - - * src/bookmarks/ephy-topic-action.c: (build_topics_menu): - - We cant assume the favicon is already in the cache. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-topic-action.c | 36 ++++++++++++++++++++---------------- - 2 files changed, 26 insertions(+), 16 deletions(-) - -commit fb06348b0b3b5e19c3407b388945919c01d80870 -Author: Xan Lopez -Date: Tue Apr 8 23:39:08 2003 +0000 - - Ignore bme.desktop - - - Ignore bme.desktop - - ChangeLog | 6 ++++++ - data/.cvsignore | 1 + - 2 files changed, 7 insertions(+) - -commit 6869072199d751b46f6f7757aee792a9f0eca7fe -Author: Xan Lopez -Date: Tue Apr 8 23:13:37 2003 +0000 - - Allow to launch the BME alone, rework some CORBA code, add a .desktop file - - - Allow to launch the BME alone, rework some CORBA code, add a .desktop - file for the BME. Fixes #102477. - - ChangeLog | 23 ++++++++++++++++++++ - data/Makefile.am | 2 +- - data/art/Makefile.am | 3 +-- - data/bme.desktop.in | 10 +++++++++ - idl/EphyAutomation.idl | 10 +++++---- - src/bookmarks/ephy-bookmarks-editor.c | 22 +++++++++++++------ - src/ephy-automation.c | 35 ++++++++++++++---------------- - src/ephy-main.c | 10 +++++++++ - src/ephy-shell.c | 40 +++++++++++++++++++++++++++++++++++ - src/ephy-shell.h | 2 ++ - src/window-commands.c | 38 +-------------------------------- - 11 files changed, 126 insertions(+), 69 deletions(-) - -commit b934ed62cfeb93b86c0f655eff39ff0de63ef7df -Author: Marco Pesenti Gritti -Date: Tue Apr 8 22:42:33 2003 +0000 - - Add funcs to add/remove focus monitor. Make the code nicer and fix warning - - 2003-04-09 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: (add_focus_monitor), - (remove_focus_monitor), (ephy_bookmarks_editor_dispose), - (ephy_bookmarks_editor_node_selected_cb), - (ephy_bookmarks_editor_construct): - - Add funcs to add/remove focus monitor. Make the code nicer - and fix warning on destroy. - - ChangeLog | 10 +++ - src/bookmarks/ephy-bookmarks-editor.c | 145 ++++++++++++++++++---------------- - 2 files changed, 88 insertions(+), 67 deletions(-) - -commit faca041aa2dfd5e8243eb10ab8dbf609352ffbf5 -Author: Johan Dahlin -Date: Tue Apr 8 20:55:36 2003 +0000 - - If there exist a favicon for the bookmark, add it to the menu. - - * src/bookmarks/ephy-topic-action.c (build_topics_menu): If there - exist a favicon for the bookmark, add it to the menu. - - ChangeLog | 5 +++++ - src/bookmarks/ephy-topic-action.c | 21 ++++++++++++++++++++- - 2 files changed, 25 insertions(+), 1 deletion(-) - -commit bf5ae80d6a2281da9a661cc59fa0de7b0b4cc13d -Author: Marco Pesenti Gritti -Date: Tue Apr 8 19:44:22 2003 +0000 - - Update. - - 2003-04-08 Marco Pesenti Gritti - - * lib/egg/egg-toolbars-group.c: - * lib/egg/egg-toolbars-group.h: - - Update. - - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_class_init), - (bookmarks_removed_cb), (topics_removed_cb), (ephy_bookmarks_init): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-new-bookmark.c: - (ephy_new_bookmark_response_cb): - * src/popup-commands.c: (popup_cmd_bookmark_link): - * src/toolbar.c: (toolbar_get_action_name), (toolbar_get_action), - (topic_remove_cb), (bookmark_remove_cb), (toolbar_init): - * src/window-commands.c: (window_cmd_file_bookmark_page): - - Update toolbars when bookmarks and topics are removed. - Use dialog_run for new_bookmark dialog. - (Dave I hope this doesnt break something, but it's necessary - to url dnd to toolbars to work correctly) - - ChangeLog | 22 ++++++++++++++ - lib/egg/egg-toolbars-group.c | 25 ++++++++++++++++ - lib/egg/egg-toolbars-group.h | 4 +++ - src/bookmarks/ephy-bookmarks.c | 53 ++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks.h | 5 ++++ - src/bookmarks/ephy-new-bookmark.c | 2 -- - src/popup-commands.c | 3 +- - src/toolbar.c | 61 +++++++++++++++++++++++++++++++++++---- - src/window-commands.c | 3 +- - 9 files changed, 168 insertions(+), 10 deletions(-) - -commit 20dd70b526a557dccd623f9a1c0b05720317e9f7 -Author: Marco Pesenti Gritti -Date: Mon Apr 7 19:41:46 2003 +0000 - - Move and autoupdate these from egg. - - 2003-04-07 Marco Pesenti Gritti - - * lib/widgets/Makefile.am: - * lib/widgets/eggtreemodelfilter.c: - * lib/widgets/eggtreemodelfilter.h: - * lib/widgets/eggtreemultidnd.c: - * lib/widgets/eggtreemultidnd.h: - * lib/egg/Makefile.am: - * lib/egg/eggtreemodelfilter.c: - * lib/egg/eggtreemodelfilter.h: - * lib/egg/eggtreemultidnd.c: - * lib/egg/eggtreemultidnd.h: - * lib/egg/update-from-egg.sh: - - Move and autoupdate these from egg. - - * lib/ephy-dnd.c: - * lib/ephy-dnd.h: - * src/ephy-favicon-action.c: - - Remove an unnecessary param in ephydnd API. - - * lib/widgets/ephy-tree-model-sort.c: - - Use the real multidnd api. - - 2 - - ChangeLog | 26 + - lib/egg/Makefile.am | 10 +- - lib/egg/eggtreemodelfilter.c | 2636 ++++++++++++++++++++++++++++++++++++ - lib/egg/eggtreemodelfilter.h | 125 ++ - lib/egg/eggtreemultidnd.c | 412 ++++++ - lib/egg/eggtreemultidnd.h | 76 ++ - lib/egg/update-from-egg.sh | 3 + - lib/ephy-dnd.c | 1 - - lib/ephy-dnd.h | 1 - - lib/widgets/Makefile.am | 4 - - lib/widgets/eggtreemodelfilter.c | 2560 ---------------------------------- - lib/widgets/eggtreemodelfilter.h | 123 -- - lib/widgets/eggtreemultidnd.c | 425 ------ - lib/widgets/eggtreemultidnd.h | 78 -- - lib/widgets/ephy-tree-model-sort.c | 6 +- - src/ephy-favicon-action.c | 2 +- - 16 files changed, 3288 insertions(+), 3200 deletions(-) - -commit 30177ef207092d95ebbc2c835d52262618436c90 -Author: Marco Pesenti Gritti -Date: Sun Apr 6 20:07:14 2003 +0000 - - Add a separator item to the editor. - - 2003-04-06 Marco Pesenti Gritti - - * libegg/toolbareditor/egg-editable-toolbar.c: (get_dest_targets), - (editor_create_item), (update_editor_sheet): - - Add a separator item to the editor. - - ChangeLog | 9 ++ - TODO | 1 + - lib/egg/Makefile.am | 2 +- - lib/egg/egg-editable-toolbar.c | 81 ++++++---- - lib/egg/egg-menu-merge.c | 10 +- - lib/egg/eggmarshalers.c | 43 +++++- - lib/egg/eggmarshalers.h | 12 +- - lib/egg/eggmarshalers.list | 1 + - lib/egg/eggtoggletoolbutton.c | 44 +++++- - lib/egg/eggtoggletoolbutton.h | 3 + - lib/egg/eggtoolbar.c | 344 ++++++++++++++++++++++++++++++++++++----- - lib/egg/eggtoolbar.h | 98 ++++++------ - lib/egg/eggtoolbutton.c | 10 +- - lib/egg/eggtoolitem.c | 80 ++++++---- - 14 files changed, 567 insertions(+), 171 deletions(-) - -commit 856bc05445cae1c838b1e1cd7a30f3ebdbe52e01 -Author: Marco Pesenti Gritti -Date: Sun Apr 6 18:28:33 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 97146ff3c55199180ede96de03f1c61d306eea86 -Author: Christian Persch -Date: Sun Apr 6 18:28:17 2003 +0000 - - Typo. Drag url, not title. - - 2003-04-06 Christian Persch - - * src/history-dialog.c: (history_dialog_setup_view): - - Typo. Drag url, not title. - - src/history-dialog.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit f4211ee4e0660b8218dfc666241b724692ef6a3c -Author: Evandro Fernandes Giovanini -Date: Sun Apr 6 16:59:57 2003 +0000 - - Removed file that doesn't exist. Updated Brazilian Portuguese translation. - - 2003-04-06 Evandro Fernandes Giovanini - - * POTFILES.in: Removed file that doesn't exist. - * pt_BR.po: Updated Brazilian Portuguese translation. - - po/ChangeLog | 7 +- - po/POTFILES.in | 1 - - po/pt_BR.po | 2280 +++----------------------------------------------------- - 3 files changed, 110 insertions(+), 2178 deletions(-) - -commit ca7629615f88e67157731b206b93a0167025edc1 -Author: Evandro Fernandes Giovanini -Date: Sun Apr 6 02:57:01 2003 +0000 - - Added "pt_BR". - - 2003-04-05 Evandro Fernandes Giovanini - - * configure.in(ALL_LINGUAS): Added "pt_BR". - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 20f9db8946f1b4bb63f298584ae5af42a4fffee1 -Author: Evandro Fernandes Giovanini -Date: Sun Apr 6 02:53:30 2003 +0000 - - Added Brazilian Portuguese translation. - - 2003-03-05 Evandro Fernandes Giovanini - - * pt_BR.po: Added Brazilian Portuguese translation. - - po/ChangeLog | 4 + - po/pt_BR.po | 4923 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 4927 insertions(+) - -commit 893ec76256945916281467e8937ffa283efd7cd3 -Author: David Bordoley -Date: Sat Apr 5 17:04:48 2003 +0000 - - Just show the new bookmark dialog, don't go modal. - - 2003-04-05 David Bordoley - - * src/popup-commands.c: (popup_cmd_bookmark_link): - * src/window-commands.c: (window_cmd_file_bookmark_page): - Just show the new bookmark dialog, don't go modal. - - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_new): - * src/bookmarks/ephy-bookmark-properties.h - Need to pass the parent window to _new(), and - set the dialog transient to its parent. - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_bookmark_properties): - Pass the bme window to the ephy_bookmark_properties_new. - - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_response_cb): - Call gtk_widget_destroy() when cancel or ok are clicked. - - ChangeLog | 18 ++++++++++++++++++ - src/bookmarks/ephy-bookmark-properties.c | 11 ++++++++--- - src/bookmarks/ephy-bookmark-properties.h | 3 ++- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/bookmarks/ephy-new-bookmark.c | 2 ++ - src/popup-commands.c | 3 +-- - src/window-commands.c | 3 +-- - 7 files changed, 33 insertions(+), 9 deletions(-) - -commit 1d2079919896bb08fdfd2d21236c5314b21908fb -Author: Marco Pesenti Gritti -Date: Sat Apr 5 15:49:38 2003 +0000 - - *** empty log message *** - - TODO | 4 ---- - 1 file changed, 4 deletions(-) - -commit 6fb828f7aa9033cda3ccb62c764c5b5f66e23d1a -Author: Marco Pesenti Gritti -Date: Sat Apr 5 15:47:44 2003 +0000 - - Include config.h. Menu translated again now. - - 2003-04-05 Marco Pesenti Gritti - - * lib/egg/eggintl.h: - - Include config.h. Menu translated again now. - - ChangeLog | 6 ++++++ - lib/egg/eggintl.h | 4 ++++ - 2 files changed, 10 insertions(+) - -commit bb9135424aa48a88b35446521810dd8590b03419 -Author: Marco Pesenti Gritti -Date: Sat Apr 5 15:13:03 2003 +0000 - - The callback return a boolean ! - - 2003-04-05 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: (view_focus_cb): - - The callback return a boolean ! - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 4 +++- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 86fe205bedd65bbc15d6f2bcbbabeb8cf7e9582d -Author: Marco Pesenti Gritti -Date: Sat Apr 5 14:50:05 2003 +0000 - - Rewrite sensitivity code. Should take in account focus now. - - 2003-04-05 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_update_menu), - (ephy_bookmarks_editor_node_selected_cb), (view_focus_cb), - (keyword_node_selected_cb), (build_search_box), - (ephy_bookmarks_editor_construct), (ephy_bookmarks_editor_init): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_add_keyword): - * src/bookmarks/ephy-node-view.c: (ephy_node_view_has_selection): - * src/bookmarks/ephy-node-view.h: - - Rewrite sensitivity code. Should take in account focus now. - - * src/ephy-window.c: (ephy_window_show): - - Remove some unused code. - - ChangeLog | 17 ++++ - src/bookmarks/ephy-bookmarks-editor.c | 170 ++++++++++++++++------------------ - src/bookmarks/ephy-bookmarks.c | 6 ++ - src/bookmarks/ephy-node-view.c | 18 ++++ - src/bookmarks/ephy-node-view.h | 3 + - src/ephy-window.c | 5 - - 6 files changed, 124 insertions(+), 95 deletions(-) - -commit b3b66a73fca6da255a313862b68a147ec7fcf707 -Author: Marco Pesenti Gritti -Date: Sat Apr 5 12:53:29 2003 +0000 - - Have a decent size for popups that doesnt specify it. Do not allow to drag - - 2003-04-05 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-node-view.c: (drag_motion_cb), (drag_drop_cb), - (drag_data_received_cb): - * src/ephy-window.c: (ephy_window_show): - - Have a decent size for popups that doesnt specify it. - Do not allow to drag on special topics. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmarks.h | 2 +- - src/bookmarks/ephy-node-view.c | 25 +++++++++++++++++++++---- - src/ephy-window.c | 18 +++++++++++++++++- - 4 files changed, 49 insertions(+), 6 deletions(-) - -commit 1a09e5e82379afe72911f7f1cdf407bed57813e9 -Author: Christian Persch -Date: Fri Apr 4 22:32:04 2003 +0000 - - Set drag source on the event box, to avoid conflicts with toolbars drag - - 2003-04-05 Christian Persch - - * src/ephy-favicon-action.c: (create_tool_item), (connect_proxy): - - Set drag source on the event box, to avoid conflicts with toolbars - drag and drop. - - ChangeLog | 18 ++++++++++ - lib/egg/egg-editable-toolbar.c | 77 +++++++++++++++++++++++++++++++++++------- - lib/egg/egg-editable-toolbar.h | 2 ++ - src/ephy-favicon-action.c | 63 +++++++++++++++++----------------- - src/toolbar.c | 5 +++ - 5 files changed, 122 insertions(+), 43 deletions(-) - -commit d95d1dfa398383b0b6446d63b96dc4e2e3a972ff -Author: Marco Pesenti Gritti -Date: Fri Apr 4 20:33:39 2003 +0000 - - Use mozilla-config.h instead of hacks. - - 2003-04-04 Marco Pesenti Gritti - - * configure.in: - * embed/mozilla/Makefile.am: - - Use mozilla-config.h instead of hacks. - - ChangeLog | 7 +++++++ - configure.in | 27 +++++++++++++++++++++++++++ - embed/mozilla/Makefile.am | 5 +---- - 3 files changed, 35 insertions(+), 4 deletions(-) - -commit 47015d29a0d473474643f1cdffcec8e437c60b64 -Author: Marco Pesenti Gritti -Date: Tue Apr 1 18:54:24 2003 +0000 - - Fix debug code, smart bookmarks are back in the autocompletion. - - 2003-04-01 Marco Pesenti Gritti - - * lib/ephy-autocompletion.c: - (ephy_autocompletion_update_matches_full_item): - - Fix debug code, smart bookmarks are back in the - autocompletion. - - ChangeLog | 8 ++++++++ - lib/ephy-autocompletion.c | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit 1bf392262548cf4c6779e1bc6c550b3605aba733 -Author: Marco Pesenti Gritti -Date: Tue Apr 1 18:48:50 2003 +0000 - - Use EggEditableToolbar. Update to latest versions (not EggMenuMerge, we - - 2003-04-01 Marco Pesenti Gritti - - * lib/egg/Makefile.am: - * lib/egg/egg-accel-dialog.c: - * lib/egg/egg-action-group.c: - * lib/egg/egg-action.c: - * lib/egg/egg-editable-toolbar.c: - * lib/egg/egg-editable-toolbar.h: - * lib/egg/egg-radio-action.c: - * lib/egg/egg-toggle-action.c: - * lib/egg/egg-toolbars-group.c: - * lib/egg/egg-toolbars-group.h: - * lib/egg/eggintl.h: - * lib/egg/eggtoolbar.c: - * lib/egg/eggtoolbutton.c: - * lib/egg/update-from-egg.sh: - - Use EggEditableToolbar. - Update to latest versions (not EggMenuMerge, we still need patches). - - WARNING: it's no more possible to drag bookmarks in the toolbar, - if you depend on that feature please wait the weekend to update cvs. - - * lib/egg/egg-markup.c: - * lib/egg/egg-markup.h: - - Remove, not used. - - * lib/widgets/Makefile.am: - * lib/widgets/ephy-editable-toolbar.c: - * lib/widgets/ephy-editable-toolbar.h: - * lib/widgets/ephy-toolbars-group.c: - * lib/widgets/ephy-toolbars-group.h: - - Remove. - - * src/prefs-dialog.c: (prefs_dialog_show_help), - (prefs_dialog_response_cb): - - Fix a warning. - - * src/toolbar.c: (toolbar_get_type), (toolbar_get_action_name), - (toolbar_get_action), (toolbar_class_init), (toolbar_init): - * src/toolbar.h: - * src/window-commands.c: (window_cmd_edit_toolbar): - - Update to use the egg api. - - ChangeLog | 48 ++ - lib/egg/Makefile.am | 28 +- - lib/egg/egg-accel-dialog.c | 2 +- - lib/egg/egg-action-group.c | 3 +- - lib/egg/egg-action.c | 17 +- - lib/egg/egg-editable-toolbar.c | 1149 ++++++++++++++++++++++++++++++++++ - lib/egg/egg-editable-toolbar.h | 73 +++ - lib/egg/egg-markup.c | 438 ------------- - lib/egg/egg-markup.h | 30 - - lib/egg/egg-radio-action.c | 2 +- - lib/egg/egg-toggle-action.c | 2 +- - lib/egg/egg-toolbars-group.c | 643 +++++++++++++++++++ - lib/egg/egg-toolbars-group.h | 99 +++ - lib/egg/eggintl.h | 6 + - lib/egg/eggtoolbar.c | 1 + - lib/egg/eggtoolbutton.c | 2 +- - lib/egg/update-from-egg.sh | 40 ++ - lib/widgets/Makefile.am | 4 - - lib/widgets/ephy-editable-toolbar.c | 1171 ----------------------------------- - lib/widgets/ephy-editable-toolbar.h | 75 --- - lib/widgets/ephy-toolbars-group.c | 656 -------------------- - lib/widgets/ephy-toolbars-group.h | 111 ---- - src/prefs-dialog.c | 21 +- - src/toolbar.c | 20 +- - src/toolbar.h | 6 +- - src/window-commands.c | 6 +- - 26 files changed, 2117 insertions(+), 2536 deletions(-) - -commit a040bc3b4be4f80ae661b7f2a88c78d29c480e65 -Author: Christian Persch -Date: Tue Apr 1 18:05:27 2003 +0000 - - Marco-is-silly-patch. Update to latest version of the favicons patch. - - 2003-04-01 Christian Persch - - * src/ephy-tab.c: - * src/ephy-tab.h: - - Marco-is-silly-patch. Update to latest version - of the favicons patch. - - ChangeLog | 8 ++++++++ - src/ephy-tab.c | 5 ++++- - src/ephy-tab.h | 3 --- - 3 files changed, 12 insertions(+), 4 deletions(-) - -commit 6c25765d7c82c5b529746a5f75322473e8484a65 -Author: Christian Persch -Date: Tue Apr 1 11:55:41 2003 +0000 - - Show favicons on tabs - - 2003-04-01 Christian Persch - - * lib/widgets/ephy-notebook.c: (ephy_notebook_set_page_status), - (ephy_notebook_set_page_icon), (tab_build_label): - * lib/widgets/ephy-notebook.h: - * src/ephy-tab.c: (ephy_tab_init), (ephy_tab_set_favicon), - (ephy_tab_favicon_cache_changed_cb), (ephy_tab_favicon_cb), - (ephy_tab_location_cb): - * src/ephy-tab.h: - * src/ephy-window.c: (ephy_window_init): - - Show favicons on tabs - - ChangeLog | 13 +++++++++ - lib/widgets/ephy-notebook.c | 35 ++++++++++++++++++++-- - lib/widgets/ephy-notebook.h | 4 +++ - src/ephy-tab.c | 71 ++++++++++++++++++++++++++++++++++++++++----- - src/ephy-tab.h | 3 ++ - src/ephy-window.c | 14 --------- - 6 files changed, 117 insertions(+), 23 deletions(-) - -commit fe94f37cfdbeab550953efbe89cafedbafbaff51 -Author: Patanjali Somayaji -Date: Tue Apr 1 05:16:48 2003 +0000 - - Added place holders for help text for preferences dialog added code to - - 2003-04-01 Patanjali Somayaji - - * help/C/epiphany.xml: - Added place holders for help text for preferences dialog - * src/prefs-dialog.c: added code to invoke appropriate help - * src/window_commands.c: added documenter credit - - ChangeLog | 7 +++++++ - help/C/epiphany.xml | 36 ++++++++++++++++++++++++++++++++++++ - src/prefs-dialog.c | 50 +++++++++++++++++++++++++++++++++++++++++++++++++- - src/window-commands.c | 1 + - 4 files changed, 93 insertions(+), 1 deletion(-) - -commit 7f0ed6fc4aa39684c079b391b28840cfdfacc7af -Author: Marco Pesenti Gritti -Date: Mon Mar 31 19:22:58 2003 +0000 - - Use the new EggToolbar apis. Better drop feedback, separators drag and - - 2003-03-31 Marco Pesenti Gritti - - * lib/egg/eggtoolbar.c: (egg_toolbar_class_init), - (egg_toolbar_init), (egg_toolbar_unrealize), (egg_toolbar_expose), - (egg_toolbar_size_allocate), (find_drop_pos), - (egg_toolbar_drag_leave), (egg_toolbar_drag_motion), - (egg_toolbar_get_item_index), (egg_toolbar_get_show_arrow), - (egg_toolbar_get_drop_index): - * lib/egg/eggtoolbar.h: - * lib/egg/eggtoolitem.c: (egg_tool_item_get_type), - (egg_tool_item_class_init), (create_drag_window), - (egg_tool_item_realize), (egg_tool_item_unrealize), - (egg_tool_item_map), (egg_tool_item_unmap), - (egg_tool_item_size_allocate), (egg_tool_item_set_tooltip), - (egg_tool_item_set_use_drag_window): - * lib/egg/eggtoolitem.h: - * lib/widgets/ephy-editable-toolbar.c: (drag_data_received_cb), - (drag_data_get_cb), (connect_item_drag_source), - (disconnect_item_drag_source), (popup_toolbar_context_menu), - (setup_toolbar), (do_merge), (ephy_editable_toolbar_init), - (hide_editor), (update_editor_sheet), (show_editor): - * lib/widgets/ephy-toolbars-group.c: (add_action), - (ephy_toolbars_group_add_item), (parse_item_list): - * lib/widgets/ephy-toolbars-group.h: - - Use the new EggToolbar apis. Better drop feedback, - separators drag and code cleanups. - - ChangeLog | 28 ++++ - lib/egg/eggtoolbar.c | 246 +++++++++++++++++++++++++++++++++++- - lib/egg/eggtoolbar.h | 9 +- - lib/egg/eggtoolitem.c | 154 ++++++++++++++++++++-- - lib/egg/eggtoolitem.h | 8 +- - lib/widgets/ephy-editable-toolbar.c | 164 +++++++----------------- - lib/widgets/ephy-toolbars-group.c | 20 +-- - lib/widgets/ephy-toolbars-group.h | 2 +- - 8 files changed, 483 insertions(+), 148 deletions(-) - -commit 8c10e78e46c4427326cc9cb7162aa65346048102 -Author: David Bordoley -Date: Mon Mar 31 15:40:10 2003 +0000 - - Update to reflect changes in EphyTopicSelector api. Wrap the topic - - 2003-03-30 David Bordoley - - * src/bookmarks/ephy-bookmark-properties.c: (build_ui): - Update to reflect changes in EphyTopicSelector api. Wrap the - topic selector in a GtkScrolledWindow. - - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_add_topic), - (cmd_rename), (cmd_open_bookmarks_in_tabs), (cmd_open_bookmarks_in_browser), - (cmd_delete), (cmd_bookmark_properties), (cmd_select_all), - (ephy_bookmarks_editor_dispose), (keyword_node_selected_cb), - (ephy_bookmarks_editor_construct), (ephy_bookmarks_editor_update_menu): - Update to reflect changes in EphyNodeView api. Wrap bm_view - and key_view in GtkScrolledWindows. - s/_Open In New Window/_Open in New Window and s/Open In New _Tabs/Open in New _Tab. - - * src/bookmarks/ephy-new-bookmark.c: (build_editing_table): - Update to reflect changes in EphyTopicSelector api. Wrap the - topic selector in a GtkScrolledWindow. - - * src/bookmarks/ephy-node-view.c: (ephy_node_view_get_type), - (ephy_node_view_construct), (ephy_node_view_new), - (ephy_node_view_add_column), (ephy_node_view_add_icon_column), - (ephy_node_view_get_selection), (ephy_node_view_has_focus), - (ephy_node_view_set_browse_mode), (ephy_node_view_select_node), - (ephy_node_view_enable_drag_dest), (ephy_node_view_enable_drag_source), - (ephy_node_view_set_hinted), (ephy_node_view_edit): - * src/bookmarks/ephy-node-view.h: - Inherit from GtkTreeView instead of GtkScrolledWindow and - change methods to reflect the change. Allow for better/easier keynav. - Return a GtkWidget from ephy_node_view_new to be consistent with GTK. - - * src/bookmarks/ephy-topics-selector.c: (ephy_topics_selector_get_type), - (mneumonic_activated), (ephy_topics_build_ui), (ephy_topics_selector_new): - * src/bookmarks/ephy-topics-selector.h: - Inherit from GtkTreeView instead of GtkScrolledWindow and - change methods to reflect the change. Allow for better/easier keynav. - - ChangeLog | 37 +++++++++++ - src/bookmarks/ephy-bookmark-properties.c | 16 ++++- - src/bookmarks/ephy-bookmarks-editor.c | 104 +++++++++++++++++++------------ - src/bookmarks/ephy-new-bookmark.c | 14 ++++- - src/bookmarks/ephy-node-view.c | 73 ++++++---------------- - src/bookmarks/ephy-node-view.h | 13 ++-- - src/bookmarks/ephy-topics-selector.c | 47 +++----------- - src/bookmarks/ephy-topics-selector.h | 6 +- - 8 files changed, 158 insertions(+), 152 deletions(-) - -commit 668bf3c20445fdd23862a7b7140df68ee3b63fc0 -Author: Duarte Loreto -Date: Sun Mar 30 20:16:46 2003 +0000 - - Updated Portuguese translation. - - 2003-03-30 Duarte Loreto - - * pt.po: Updated Portuguese translation. - - po/ChangeLog | 4 ++ - po/pt.po | 199 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 111 insertions(+), 92 deletions(-) - -commit a3638b15667bac68d1afe793ff6416c263d55328 -Author: David Bordoley -Date: Sun Mar 30 15:57:07 2003 +0000 - - Use hotkeys to navigate around the dialog. - - 2003-03-30 David Bordoley - - * src/bookmarks/ephy-bookmark-properties.c: (build_ui): - * src/bookmarks/ephy-new-bookmark.c: (build_editing_table): - Use hotkeys to navigate around the dialog. - - * src/bookmarks/ephy-topics-selector.c: (mneumonic_activated), - (ephy_topics_build_ui), (ephy_topics_selector_new): - Catch the mneumonic-activated signal and focus the currently - selected item in the list. If no items are selected, select the - first item. - - * src/bookmarks/ephy-bookmarks-editor.c: (key_pressed_cb): - Change function to return a gboolean and return false - if we don't handle the key event (fixes keynav in the bme). - - ChangeLog | 16 +++++++++++++ - src/bookmarks/ephy-bookmark-properties.c | 41 ++++++++++++++++---------------- - src/bookmarks/ephy-bookmarks-editor.c | 6 +++-- - src/bookmarks/ephy-new-bookmark.c | 28 ++++++++++++---------- - src/bookmarks/ephy-topics-selector.c | 41 +++++++++++++++++++++++++------- - 5 files changed, 88 insertions(+), 44 deletions(-) - -commit 33700d8d076cee88d0da1e12b4c27dfc0283139b -Author: Xan Lopez -Date: Sun Mar 30 15:32:55 2003 +0000 - - More sensitive stuff. - - - More sensitive stuff. - - ChangeLog | 9 ++++ - src/bookmarks/ephy-bookmarks-editor.c | 78 ++++++++++++++++++++++++++--------- - 2 files changed, 67 insertions(+), 20 deletions(-) - -commit e6f7200e86782d3fb216617d124024f42ba07721 -Author: Xan Lopez -Date: Sat Mar 29 23:12:34 2003 +0000 - - Do not update menus on unselect. - - - Do not update menus on unselect. - - ChangeLog | 11 +++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 32 +++++++++++++------------------- - 2 files changed, 24 insertions(+), 19 deletions(-) - -commit 381356622a1181fe41cf5eda3261cf0e06b04647 -Author: David Bordoley -Date: Sat Mar 29 17:30:42 2003 +0000 - - Add alt+s mneumonic to the search box and activate it. - - 2003-03-29 David Bordoley - - * src/bookmarks/ephy-bookmarks-editor.c: (build_search_box): - Add alt+s mneumonic to the search box and activate it. - - ChangeLog | 5 +++++ - src/bookmarks/ephy-bookmarks-editor.c | 22 +++++++++++++--------- - 2 files changed, 18 insertions(+), 9 deletions(-) - -commit 1aadcfa011e7249c003a7fd59f56d23925d9c9ce -Author: Xan Lopez -Date: Sat Mar 29 17:24:41 2003 +0000 - - Fix warning. - - - Fix warning. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-node-view.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit c1a38e77d25cde47f4cc33922f0ef8983e12ae17 -Author: Marco Pesenti Gritti -Date: Sat Mar 29 17:07:50 2003 +0000 - - Make dnd code smarter, so it can support more than just urls types. - - 2003-03-29 Marco Pesenti Gritti - - * lib/ephy-dnd.c: (add_one_node), (ephy_dnd_drag_data_get), - (ephy_dnd_node_list_extract_nodes): - * lib/ephy-dnd.h: - * lib/ephy-marshal.list: - * lib/widgets/ephy-tree-model-sort.c: (each_node_get_data_binder), - (ephy_tree_model_sort_multi_drag_data_get): - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_rename), - (cmd_select_all), (ephy_bookmarks_editor_show_popup_cb), - (keyword_node_show_popup_cb), (node_dropped_cb), - (ephy_bookmarks_editor_construct), - (ephy_bookmarks_editor_update_menu): - * src/bookmarks/ephy-node-view.c: (ephy_node_view_class_init), - (ephy_node_view_button_press_cb), (ephy_node_view_has_focus), - (get_node_from_path), (drag_motion_cb), (drag_drop_cb), - (drag_data_received_cb), (ephy_node_view_enable_drag_dest), - (ephy_node_view_enable_drag_source): - * src/bookmarks/ephy-node-view.h: - * src/ephy-favicon-action.c: (connect_proxy): - * src/history-dialog.c: (history_dialog_setup_view): - * src/toolbar.c: (toolbar_get_action_name): - - Make dnd code smarter, so it can support more than - just urls types. - Implement drag of bookmarks on topics in bme. What a pain ! - - ChangeLog | 27 ++++++ - lib/ephy-dnd.c | 95 +++++++++++--------- - lib/ephy-dnd.h | 7 +- - lib/ephy-marshal.list | 1 + - lib/widgets/ephy-tree-model-sort.c | 59 +++++++++---- - src/bookmarks/ephy-bookmarks-editor.c | 79 +++++++++++++---- - src/bookmarks/ephy-node-view.c | 157 +++++++++++++++++++++++++++++++--- - src/bookmarks/ephy-node-view.h | 11 ++- - src/ephy-favicon-action.c | 14 ++- - src/history-dialog.c | 15 +++- - src/toolbar.c | 8 +- - 11 files changed, 372 insertions(+), 101 deletions(-) - -commit f1d834f969e790e26fe7a0bd2aa203977113bc88 -Author: Christian Rose -Date: Sat Mar 29 13:34:16 2003 +0000 - - Updated Swedish translation. - - 2003-03-29 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 +++ - po/sv.po | 106 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 57 insertions(+), 53 deletions(-) - -commit 68ff809d73900bcf7e9342bf358f6c29eb865181 -Author: Marco Pesenti Gritti -Date: Sat Mar 29 00:45:35 2003 +0000 - - Implement topics menu. TODO: All should generate the crappy bookmarks - - 2003-03-29 Marco Pesenti Gritti - - * src/bookmarks/ephy-topic-action.c: (create_tool_item), - (menu_deactivate_cb), (menu_activate_cb), (build_topics_menu), - (button_press_cb), (ephy_topic_action_set_property), - (ephy_topic_action_get_property), (ephy_topic_action_class_init), - (ephy_topic_action_new): - - Implement topics menu. - TODO: All should generate the crappy bookmarks menu, favicons, - topic icon. - These are lower priority for me now though. - - ChangeLog | 13 ++++++ - src/bookmarks/ephy-topic-action.c | 89 +++++++++++++++++++++++++++++++++------ - 2 files changed, 88 insertions(+), 14 deletions(-) - -commit 991ec0a565029dd58b28160fddbb20126d5170df -Author: Xan Lopez -Date: Fri Mar 28 23:40:10 2003 +0000 - - Update .cvsignore s - - - Update .cvsignore s - - ChangeLog | 7 +++++++ - help/.cvsignore | 2 ++ - help/C/.cvsignore | 4 ++++ - 3 files changed, 13 insertions(+) - -commit 13c995d08b42053330b5c31247156a6d44cbe356 -Author: Xan Lopez -Date: Fri Mar 28 22:07:15 2003 +0000 - - Makes Delete and Rename menu entries in the BME unsensitive under the - - - Makes Delete and Rename menu entries in the BME unsensitive - under the following conditions: - - Topic with priority != NORMAL selected => Delete and Rename - unsensitive - - Node selection bigger than 1 (multiple selection) => Rename unsensitive - - ChangeLog | 13 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 57 +++++++++++++++++++++++++++++++++++ - 2 files changed, 70 insertions(+) - -commit 3ae850300edbdef58508d04f243e2241dd1bda64 -Author: Frank Belew (Myth) -Date: Fri Mar 28 20:21:49 2003 +0000 - - added xmldocs.make and omf.make to EXTRA_DIST . so building from a disted - - * Makefile.am: added xmldocs.make and omf.make to EXTRA_DIST - . so building from a disted tarball works again - - ChangeLog | 5 +++++ - Makefile.am | 2 ++ - 2 files changed, 7 insertions(+) - -commit d15bb064a753c1087301d830f6ebf036290f26d7 -Author: David Bordoley -Date: Fri Mar 28 16:06:33 2003 +0000 - - Use the same key_press callback for both the topics and bm's view. - - 2003-03-27 David Bordoley - - * src/bookmarks/ephy-bookmarks-editor.c: (key_pressed_cb), - (ephy_bookmarks_editor_construct): - Use the same key_press callback for both the topics and bm's view. - s/bookmarks/title in the bm tree. - Remove an unused enum. - - * src/bookmarks/ephy-topics-selector.c: (topic_key_pressed), - (ephy_topics_build_ui): - Use space, return and enter to toggle topics in the selector. - - ChangeLog | 12 +++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 40 +++++++++-------------------------- - src/bookmarks/ephy-topics-selector.c | 35 ++++++++++++++++++++++++++++++ - 3 files changed, 57 insertions(+), 30 deletions(-) - -commit 7f45e7613d25995f69daf640bebc05399b557f91 -Author: Vincent van Adrighem -Date: Fri Mar 28 14:16:19 2003 +0000 - - Dutch translation updated. - - 2003-03-28 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 292 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 146 insertions(+), 150 deletions(-) - -commit fde953ca77fcc0a12a78bcac29a6407690ff6973 -Author: Pablo Gonzalo del Campo -Date: Fri Mar 28 13:32:54 2003 +0000 - - Updated Spanish translation by Francisco Javier Fernandez - - 2003-03-28 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier Fernandez - - po/ChangeLog | 5 + - po/es.po | 301 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 165 insertions(+), 141 deletions(-) - -commit cc467e1bc1e9bdfdf9847f6d17c029e3e974691c -Author: Xan Lopez -Date: Thu Mar 27 21:45:18 2003 +0000 - - Fix warning. - - - Fix warning. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-node-view.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit d5be47a8e46ac8a35e41f296a95bb5ddcf7365e8 -Author: David Bordoley -Date: Thu Mar 27 13:39:33 2003 +0000 - - Reorganize the menus a bit. Unifiy topic/bookmarks rename/delete items. - - 2003-03-27 David Bordoley - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_rename), - (cmd_delete), (cmd_cut), (cmd_copy), (cmd_paste), - (cmd_select_all), (keyword_node_key_pressed_cb), - (keyword_node_show_popup_cb), (ephy_bookmarks_editor_construct): - Reorganize the menus a bit. Unifiy topic/bookmarks - rename/delete items. Add text editting menu items - to the edit menu. Add a topic context menu. - - * src/bookmarks/ephy-node-view.[c-h]: (ephy_node_view_select_all), - (ephy_node_view_has_focus): - New functions. - - * src/bookmarks/ephy-topics-selector.c: (set_sort_column_id), - (topic_clicked), (ephy_topics_build_ui): - Sort topics case insensitively. Add/remove topics using a single click. - - ChangeLog | 19 +++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 25 ++-- - src/bookmarks/ephy-bookmarks-editor.c | 182 +++++++++++++++++++++-------- - src/bookmarks/ephy-node-view.c | 25 ++++ - src/bookmarks/ephy-node-view.h | 4 + - src/bookmarks/ephy-topics-selector.c | 42 ++++++- - 6 files changed, 239 insertions(+), 58 deletions(-) - -commit 1ee9df3c80f558d2e05c7204ef8d682bba938886 -Author: Christian Rose -Date: Thu Mar 27 01:38:10 2003 +0000 - - Updated Swedish translation. - - 2003-03-27 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 303 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 171 insertions(+), 136 deletions(-) - -commit 712aae808ee329cafdcb92e78f145a50c78b89b8 -Author: Patanjali Somayaji -Date: Wed Mar 26 17:05:07 2003 +0000 - - Added help support, help manual and scrollkeeper updates - - 2003-03-26 Patanjali Somayaji - - Added help support, help manual and scrollkeeper updates - - * configure.in (help/Makefile and help/C/Makefile for AC_OUTPUT()) - * makefile.am (added "help" to SUBDIRS in Makefile.am) - * omf.make (added) - * xmldocs.make (added) - * omf-install/Makefile.am (added) - * help/Makefile.am (added) - * help/C/epiphany.xml (manual xml added) - * help/C/legal.xml (added) - * help/C/epiphany-C.omf (omf file added) - * help/C/Makefile.am (added) - * help/C/figures/ephy-screenshot.png (added) - * src/window-commands.c (added handler code to show manual) - - ChangeLog | 17 +++ - Makefile.am | 2 +- - configure.in | 2 + - help/C/Makefile.am | 7 ++ - help/C/epiphany-C.omf | 31 ++++++ - help/C/epiphany.xml | 217 +++++++++++++++++++++++++++++++++++++ - help/C/figures/ephy-screenshot.png | Bin 0 -> 40200 bytes - help/C/legal.xml | 76 +++++++++++++ - help/Makefile.am | 1 + - omf-install/Makefile.am | 33 ++++++ - omf.make | 53 +++++++++ - src/window-commands.c | 28 ++++- - xmldocs.make | 95 ++++++++++++++++ - 13 files changed, 560 insertions(+), 2 deletions(-) - -commit 61972bb181cc4de1537d1137e797edd7f386ae91 -Author: updated ja.po. T.Aihana -Date: Wed Mar 26 15:51:36 2003 +0000 - - 2003-03-26 updated ja.po. T.Aihana - - po/ChangeLog | 5 + - po/ja.po | 701 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 366 insertions(+), 340 deletions(-) - -commit b3320ef7127e9fa0ca93c6c024466e1e1f0ae1c7 -Author: Marco Pesenti Gritti -Date: Tue Mar 25 19:53:58 2003 +0000 - - Make ids private - - 2003-03-25 Marco Pesenti Gritti - - * lib/ephy-dnd.c: - * lib/ephy-dnd.h: - - Make ids private - - * lib/widgets/ephy-editable-toolbar.c: (impl_get_action_name), - (impl_get_action), (drag_data_received_cb), (setup_toolbar), - (setup_item), (ensure_action), (ephy_editable_toolbar_class_init), - (update_editor_sheet), (ephy_editable_toolbar_get_action_name), - (ephy_editable_toolbar_get_action): - * lib/widgets/ephy-editable-toolbar.h: - - Rework special actions api. - - * lib/widgets/ephy-tree-model-sort.c: (ephy_tree_model_sort_init), - (ephy_tree_model_sort_set_drag_property), - (each_url_get_data_binder), - (ephy_tree_model_sort_multi_drag_data_get): - * lib/widgets/ephy-tree-model-sort.h: - - Support nodes dnd. Need more work, see FIXME - - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init), - (ephy_bookmarks_finalize), (ephy_bookmarks_find_keyword): - * src/bookmarks/ephy-node-view.c: - (ephy_node_view_enable_drag_source): - * src/bookmarks/ephy-node-view.h: - * src/history-dialog.c: (history_dialog_setup_view): - * src/toolbar.c: (toolbar_get_action_name), (toolbar_get_action), - (toolbar_class_init): - - Support for topics dnd. The menu is still not implemented - but the hard part is done. Cant finish it until the weekend :/ - - ChangeLog | 39 +++++ - lib/ephy-dnd.c | 6 + - lib/ephy-dnd.h | 10 +- - lib/widgets/ephy-editable-toolbar.c | 77 ++++++---- - lib/widgets/ephy-editable-toolbar.h | 25 ++-- - lib/widgets/ephy-tree-model-sort.c | 54 ++++++- - lib/widgets/ephy-tree-model-sort.h | 6 +- - src/bookmarks/Makefile.am | 2 + - src/bookmarks/ephy-bookmarks-editor.c | 13 +- - src/bookmarks/ephy-bookmarks.c | 95 +++--------- - src/bookmarks/ephy-node-view.c | 27 +++- - src/bookmarks/ephy-node-view.h | 5 +- - src/bookmarks/ephy-topic-action.c | 273 ++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-topic-action.h | 54 +++++++ - src/history-dialog.c | 3 + - src/toolbar.c | 77 +++++++--- - 16 files changed, 610 insertions(+), 156 deletions(-) - -commit 4a0747542c21fa5660cbf09d4b3aca5520ef8ca9 -Author: Xan Lopez -Date: Tue Mar 25 19:48:18 2003 +0000 - - Fix compilation with -Werror - - - Fix compilation with -Werror - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-bookmarks-import.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit c5f06422616bdbdcddf177d73484d2ea188c7300 -Author: Xan Lopez -Date: Tue Mar 25 00:29:25 2003 +0000 - - Missing bits from old commit. - - - Missing bits from old commit. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 15 +++++++++++++-- - 2 files changed, 19 insertions(+), 2 deletions(-) - -commit 674c6c88ec079fe16688296835fdc6da0820832f -Author: Marco Pesenti Gritti -Date: Mon Mar 24 23:04:29 2003 +0000 - - Fix to use the new api - - 2003-03-25 Marco Pesenti Gritti - - * TODO: - * src/bookmarks/ephy-bookmarks-import.c: (set_folder), - (mozilla_parse_bookmarks), (xbel_parse_folder): - - Fix to use the new api - - ChangeLog | 8 ++++++++ - TODO | 4 ---- - src/bookmarks/ephy-bookmarks-import.c | 36 +++++++++++++++++++++++++++-------- - 3 files changed, 36 insertions(+), 12 deletions(-) - -commit 0dd895b5ec8984bcbb10d1df91a26cf0e4e70771 -Author: Xan Lopez -Date: Mon Mar 24 22:27:36 2003 +0000 - - Update TODO. - - - Update TODO. - - ChangeLog | 6 ++++++ - TODO | 2 -- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit 4a33f87a3b02445e8e09b76f9400782e7e74d512 -Author: Xan Lopez -Date: Mon Mar 24 21:48:06 2003 +0000 - - Insensitive case ordering of strings. - - - Insensitive case ordering of strings. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-node-view.c | 13 +++++++------ - 2 files changed, 13 insertions(+), 6 deletions(-) - -commit 7f3240fa1f99fb9ce69d74cdbde88ab28c5f66bc -Author: Christophe Merlet -Date: Mon Mar 24 21:26:02 2003 +0000 - - Updated French translation. - - po/ChangeLog | 5 + - po/fr.po | 1332 ++++++++++++++++++++++++++-------------------------------- - 2 files changed, 592 insertions(+), 745 deletions(-) - -commit 7fc59f9ba217078ef4688e189d8ce37816fbad00 -Author: Marco Pesenti Gritti -Date: Mon Mar 24 21:05:59 2003 +0000 - - *** empty log message *** - - TODO | 5 ----- - 1 file changed, 5 deletions(-) - -commit a920f4d662c9d6460990e7a1a551064c9f1ab211 -Author: Marco Pesenti Gritti -Date: Mon Mar 24 21:02:39 2003 +0000 - - fix a warning - - 2003-03-24 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-properties.c: - - fix a warning - - ChangeLog | 17 +++++------------ - src/bookmarks/ephy-bookmark-properties.c | 1 + - 2 files changed, 6 insertions(+), 12 deletions(-) - -commit 5edfc6d1d2c7ba42be2463c1609b8c1482e32799 -Author: Marco Pesenti Gritti -Date: Mon Mar 24 20:56:19 2003 +0000 - - Dont put special keywords in the topics list. Use ephy-state for size of - - 2003-03-24 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmark-properties.c: (build_ui): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_construct): - * src/bookmarks/ephy-topics-selector.c: (fill_model): - * src/bookmarks/ephy-tree-model-node.c: - (ephy_tree_model_node_get_value): - * src/bookmarks/ephy-tree-model-node.h: - - Dont put special keywords in the topics list. - Use ephy-state for size of all bookmarks dialogs. - - ChangeLog | 29 +++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmark-properties.c | 6 +++++- - src/bookmarks/ephy-bookmarks-editor.c | 12 +++++++++--- - src/bookmarks/ephy-bookmarks.c | 4 ++-- - src/bookmarks/ephy-bookmarks.h | 7 +++++++ - src/bookmarks/ephy-new-bookmark.c | 13 +++++++++---- - src/bookmarks/ephy-topics-selector.c | 7 ++++--- - src/bookmarks/ephy-tree-model-node.c | 10 +++++----- - src/bookmarks/ephy-tree-model-node.h | 7 ------- - 9 files changed, 70 insertions(+), 25 deletions(-) - -commit 53a85cd93b24a7fd98a7ae205fd9e20a4d54e71a -Author: David Bordoley -Date: Mon Mar 24 20:08:08 2003 +0000 - - New epiphany-bookmark-page stock image. I'm not at all attached to this - - 2003-03-24 David Bordoley - - * data/art/epiphany-bookmark-page.png: (New file): - * data/art/Makefile.am: - * lib/ephy-stock-icons.c: - * lib/ephy-stock-icons.h: - New epiphany-bookmark-page stock image. I'm not at all attached to this icon, - if you can make a better one, please do :) - - * data/glade/epiphany.glade: - Change button ordering to [clear][cancel][jump to]. - - * embed/find-dialog.c: - Use GTK_STOCK_FIND for the window border icon. - - * embed/print-dialog.c: - Use GTK_STOCK_PRINT for the window border icon. - - * src/bookmarks/ephy-new-bookmark.c: - Use EPHY_STOCK_BOOKMARK_PAGE for the window icon. - s/add bookmark/new bookmark for the window title. - - * src/bookmarks/ephy-bookmark-properties.c: (set_window_icon), - (update_window_title): - New functions. Dynamically set the property window title base on the - bookmark title. Use the favicon icon if available for the window icon, otherwise use - GTK_STOCK_PROPERTIES. - - * src/window-commands.c: - Use GNOME_STOCK_ABOUT for the about window icon. - - * src/prefs-dialog.c: - USE GTK_STOCK_PREFERENCES for the window icon. - - * src/history-dialog.c: - Use epiphany-history.png for the window border icon. - - * src/ephy-window.c: - Use EPHY_STOCK_BOOKMARK_PAGE for the boomark page/link menu items. - - ChangeLog | 40 ++++++++++++++++++++++++ - data/art/Makefile.am | 1 + - data/art/epiphany-bookmark-page.png | Bin 0 -> 486 bytes - data/glade/epiphany.glade | 29 ++++++++--------- - embed/find-dialog.c | 13 ++++++++ - embed/print-dialog.c | 14 +++++++++ - lib/ephy-stock-icons.c | 1 + - lib/ephy-stock-icons.h | 1 + - src/bookmarks/ephy-bookmark-properties.c | 52 +++++++++++++++++++++++++++++-- - src/bookmarks/ephy-new-bookmark.c | 11 ++++++- - src/ephy-window.c | 4 +-- - src/history-dialog.c | 12 ++++++- - src/prefs-dialog.c | 8 +++++ - src/window-commands.c | 10 ++++++ - 14 files changed, 175 insertions(+), 21 deletions(-) - -commit 63b600e23ba36103cc5d28b2314c2d885577bc56 -Author: Xan Lopez -Date: Mon Mar 24 19:26:25 2003 +0000 - - Fix warning. - - - Fix warning. - - src/bookmarks/ephy-bookmark-properties.c | 1 + - 1 file changed, 1 insertion(+) - -commit 1b741a09f48f593702e998d83bd11b8ce4dd1793 -Author: Xan Lopez -Date: Mon Mar 24 19:18:32 2003 +0000 - - s/EPHY_NODE_KEYWORD_PROP_ALL_PRIORITY/EPHY_NODE_KEYWORD_PROP_PRIORITY/ Add - - - s/EPHY_NODE_KEYWORD_PROP_ALL_PRIORITY/EPHY_NODE_KEYWORD_PROP_PRIORITY/ - Add a "Most Visited" topic, featuring the 10 most visited - bookmarks. - Now special topics are bold too. - - ChangeLog | 15 +++++++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 10 +++++----- - src/bookmarks/ephy-bookmarks.c | 18 ++++++++++++++++-- - src/bookmarks/ephy-bookmarks.h | 2 +- - src/bookmarks/ephy-topics-selector.c | 2 +- - src/bookmarks/ephy-tree-model-node.c | 11 ++++++----- - 6 files changed, 44 insertions(+), 14 deletions(-) - -commit bb4528f9eef4b9417a4d7a2c7c012d8a3136170a -Author: Marco Pesenti Gritti -Date: Mon Mar 24 18:01:35 2003 +0000 - - Fix warning opening selector. Destroy the editor on exit, ref the shell so - - 2003-03-24 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks.c: (update_topics_list), - (ephy_bookmarks_set_keyword), (ephy_bookmarks_unset_keyword): - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_set_property): - * src/window-commands.c: (bookmarks_hide_cb), - (shell_weak_notify_cb), (window_cmd_go_bookmarks): - - Fix warning opening selector. - Destroy the editor on exit, ref the shell so you can have just - the editor open. - Build the key list and set is as property of the node (should solve - autocompletion problems). - - ChangeLog | 15 ++++++++++++++ - src/bookmarks/ephy-bookmarks.c | 40 ++++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-topics-selector.c | 1 + - src/window-commands.c | 25 ++++++++++++++++++++++ - 4 files changed, 81 insertions(+) - -commit 2dba798e1f6e6c29db3bffa922b9831197bd3e16 -Author: David Bordoley -Date: Mon Mar 24 14:08:25 2003 +0000 - - Add close to the file menu. Add some keybindings. - - 2003-03-24 David Bordoley - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * src/bookmarks/ephy-bookmarks-editor.c: - Add close to the file menu. Add some keybindings. - - ChangeLog | 6 ++++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 1 + - src/bookmarks/ephy-bookmarks-editor.c | 10 +++++----- - 3 files changed, 12 insertions(+), 5 deletions(-) - -commit 55abb9b1835211addec69efaefc04907938839d5 -Author: David Bordoley -Date: Mon Mar 24 07:45:24 2003 +0000 - - TODO Added another todo for the bme. - - 2003-03-24 David Bordoley - - * TODO - Added another todo for the bme. - - ChangeLog | 5 +++++ - TODO | 1 + - 2 files changed, 6 insertions(+) - -commit 7ec8f9c45435c3ecf30c05493b7d988f0fc65e08 -Author: David Bordoley -Date: Mon Mar 24 01:08:23 2003 +0000 - - TODO Added some more todos for the bme. - - 2003-03-23 David Bordoley - - * TODO - Added some more todos for the bme. - - ChangeLog | 5 +++++ - TODO | 7 ++++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit cea22c828818c7a9555a496840efccee215d490f -Author: James Willcox -Date: Sun Mar 23 23:56:53 2003 +0000 - - Guard against "item" being NULL. Fixes a crash when typing in the location - - - - 2003-03-23 James Willcox - - * lib/ephy-autocompletion.c: - (ephy_autocompletion_update_matches_full_item): - - Guard against "item" being NULL. Fixes a crash when typing in the - location bar. - - ChangeLog | 8 ++++++++ - lib/ephy-autocompletion.c | 2 ++ - 2 files changed, 10 insertions(+) - -commit cfaf78f79dbbbe93fb588bc4c9d645697b5a949f -Author: David Bordoley -Date: Sun Mar 23 23:27:59 2003 +0000 - - Use the ephy-bookmarks.png for the window icon. - - 2003-03-23 David Bordoley - - * src/bookmarks/ephy-bookmarks-editor.c: - Use the ephy-bookmarks.png for the window icon. - - ChangeLog | 5 +++++ - src/bookmarks/ephy-bookmarks-editor.c | 3 +++ - 2 files changed, 8 insertions(+) - -commit 0e595f395732cc4c2e6a18dd460beb9335f81188 -Author: Xan Lopez -Date: Sun Mar 23 20:10:33 2003 +0000 - - Some ground work on the PRIORITY property, change it from bool to int, add - - - Some ground work on the PRIORITY property, change it from - bool to int, add more priority types (ALL, SPECIAL, NORMAL), - and use it in the WEIGTH_TEXT property (just ALL is bold now). - - ChangeLog | 13 +++++++++++++ - src/bookmarks/ephy-bookmarks.c | 5 +++-- - src/bookmarks/ephy-node-view.c | 8 ++++++++ - src/bookmarks/ephy-tree-model-node.c | 16 +++++++++++----- - src/bookmarks/ephy-tree-model-node.h | 7 +++++++ - 5 files changed, 42 insertions(+), 7 deletions(-) - -commit 9e061fdc100ec5c71288049e4daffedd4253733d -Author: David Bordoley -Date: Sun Mar 23 18:21:22 2003 +0000 - - Set and icon for the download window - - 2003-03-23 David Bordoley - - * data/art/Makefile.am: - * data/art/epiphany-download.png: (new file from jimmac) - * embed/downloader-view.c: - Set and icon for the download window - - ChangeLog | 7 +++++++ - data/art/Makefile.am | 1 + - data/art/epiphany-download.png | Bin 0 -> 440 bytes - embed/downloader-view.c | 8 ++++++++ - 4 files changed, 16 insertions(+) - -commit b5adadbd95876430b6eae6c053cdda3c00bfe5fd -Author: Duarte Loreto -Date: Sun Mar 23 17:16:52 2003 +0000 - - Added "pt" to ALL_LINGUAS. - - 2003-03-23 Duarte Loreto - - * configure.in: Added "pt" to ALL_LINGUAS. - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 372f5343d1a0b0dfa3f560867af53657133f5f51 -Author: Duarte Loreto -Date: Sun Mar 23 17:15:51 2003 +0000 - - New Portuguese Translation. - - 2003-03-23 Duarte Loreto - - * pt.po: New Portuguese Translation. - - po/ChangeLog | 4 + - po/pt.po | 2838 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2842 insertions(+) - -commit 855ca310e36248addf0b127ce01a7495d4b390c9 -Author: Marco Pesenti Gritti -Date: Sun Mar 23 12:39:38 2003 +0000 - - sorry the last one ;) - - TODO | 1 + - 1 file changed, 1 insertion(+) - -commit a0ba508f69185d046142b32e9b441e5d29acd8cc -Author: Marco Pesenti Gritti -Date: Sun Mar 23 12:37:59 2003 +0000 - - *** empty log message *** - - TODO | 1 + - 1 file changed, 1 insertion(+) - -commit cb58de14e4a29f40e7226f6926ac92ccb5f396ec -Author: Marco Pesenti Gritti -Date: Sun Mar 23 12:33:26 2003 +0000 - - *** empty log message *** - - TODO | 1 + - 1 file changed, 1 insertion(+) - -commit 145d05d7dcc0997df6c77ead60239a17c775b617 -Author: Marco Pesenti Gritti -Date: Sun Mar 23 12:31:24 2003 +0000 - - *** empty log message *** - - TODO | 1 + - 1 file changed, 1 insertion(+) - -commit c325934e436073606e8ff5c725f1b068618d3797 -Author: Marco Pesenti Gritti -Date: Sun Mar 23 12:30:41 2003 +0000 - - Complete implementation of the editor functionalities. - - 2003-03-23 Marco Pesenti Gritti - - * TODO: - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_add_topic), - (cmd_remove_topic), (cmd_close), (cmd_rename_topic), - (cmd_rename_bookmark), (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_remove_keyword): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-node-view.c: (cell_renderer_edited), - (ephy_node_view_add_column), (ephy_node_view_init), - (ephy_node_view_edit): - * src/bookmarks/ephy-node-view.h: - - Complete implementation of the editor functionalities. - - [Still work to do ... I updated the TODO with some of the higher - priority things. If you want to work on any of them let me - know ... (to avoid conflicts, I plan to keep working on this - stuff in the next days).] - - ChangeLog | 21 +++++++ - TODO | 16 +++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 16 +++-- - src/bookmarks/ephy-bookmarks-editor.c | 45 +++++++++++++- - src/bookmarks/ephy-bookmarks.c | 6 ++ - src/bookmarks/ephy-bookmarks.h | 3 + - src/bookmarks/ephy-node-view.c | 96 +++++++++++++++++++++++++++++- - src/bookmarks/ephy-node-view.h | 5 +- - 8 files changed, 198 insertions(+), 10 deletions(-) - -commit f360f793d3c18a3d0e9870f05d0a9787066f7046 -Author: Xan Lopez -Date: Sun Mar 23 10:26:11 2003 +0000 - - Fix right click selection logic. - - - Fix right click selection logic. - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-node-view.c | 21 ++++++++++++++++++--- - 2 files changed, 24 insertions(+), 3 deletions(-) - -commit 1cbf7f5f14b162826d5c016d836d8c2243986f58 -Author: Marco Pesenti Gritti -Date: Sat Mar 22 23:59:04 2003 +0000 - - Never destroy but hide the bme. Present the window on activate. Allow to - - 2003-03-23 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: (get_target_window), - (cmd_open_bookmarks_in_tabs), (cmd_open_bookmarks_in_browser), - (ephy_bookmarks_editor_finalize), - (ephy_bookmarks_editor_node_activated_cb), (delete_event_cb), - (ephy_bookmarks_editor_construct), - (ephy_bookmarks_editor_set_parent), (ephy_bookmarks_editor_new): - * src/bookmarks/ephy-bookmarks-editor.h: - * src/window-commands.c: (window_cmd_go_bookmarks): - - Never destroy but hide the bme. - Present the window on activate. - Allow to put the editor in the background. - Smarter way to choose the window where to load the bookmark. - - ChangeLog | 16 +++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 66 +++++++++++++++++++++++++++++------ - src/bookmarks/ephy-bookmarks-editor.h | 6 ++-- - src/window-commands.c | 16 ++++++--- - 4 files changed, 87 insertions(+), 17 deletions(-) - -commit 63135332334125311908d415423cd15602cd6535 -Author: Marco Pesenti Gritti -Date: Sat Mar 22 15:15:07 2003 +0000 - - Some more bookmarks work ... - - 2003-03-22 Marco Pesenti Gritti - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * src/bookmarks/ephy-bookmark-properties.c: (update_entry), - (title_entry_changed_cb), (location_entry_changed_cb), (build_ui): - * src/bookmarks/ephy-bookmarks-editor.c: (cmd_add_topic), - (cmd_remove_topic), (cmd_rename_bookmark), - (cmd_open_bookmarks_in_tabs), (cmd_open_bookmarks_in_browser), - (cmd_remove_bookmarks), (cmd_bookmark_properties), (add_widget), - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks.c: (bookmarks_removed_cb), - (ephy_bookmarks_has_keyword), (ephy_bookmarks_unset_keyword): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-new-bookmark.c: (build_editing_table): - * src/bookmarks/ephy-topics-selector.c: (fill_model), - (topic_toggled), (ephy_topics_selector_new): - * src/bookmarks/ephy-topics-selector.h: - - Some more bookmarks work ... - - ChangeLog | 20 +++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 19 ++++- - src/bookmarks/ephy-bookmark-properties.c | 42 +++++++++- - src/bookmarks/ephy-bookmarks-editor.c | 119 +++++++++++++++++------------ - src/bookmarks/ephy-bookmarks.c | 46 ++--------- - src/bookmarks/ephy-bookmarks.h | 4 + - src/bookmarks/ephy-new-bookmark.c | 2 +- - src/bookmarks/ephy-topics-selector.c | 16 +++- - src/bookmarks/ephy-topics-selector.h | 3 +- - 9 files changed, 177 insertions(+), 94 deletions(-) - -commit 7038fa5c1a3d6eee199e0731e1fae8430498eeab -Author: Marco Pesenti Gritti -Date: Sat Mar 22 12:56:37 2003 +0000 - - Begin bookmarks editor redesign. Please still dont use it or you really - - 2003-03-22 Marco Pesenti Gritti - - * data/ui/epiphany-bookmark-editor-ui.xml.in: - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmark-properties.c: - (ephy_bookmark_properties_get_type), - (ephy_bookmark_properties_class_init), - (ephy_bookmark_properties_finalize), - (ephy_bookmark_properties_set_bookmark), - (ephy_bookmark_properties_set_property), - (ephy_bookmark_properties_get_property), - (bookmark_properties_response_cb), (build_ui), - (ephy_bookmark_properties_init), (ephy_bookmark_properties_new): - * src/bookmarks/ephy-bookmark-properties.h: - * src/bookmarks/ephy-bookmarks-editor.c: - (popup_cmd_bookmark_properties), (ephy_bookmarks_editor_get_type), - (keyword_node_selected_cb), (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks-editor.h: - * src/bookmarks/ephy-bookmarks-import.c: (mozilla_parse_bookmarks), - (xbel_parse_single_bookmark), (xbel_parse_folder): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_add), - (ephy_bookmarks_set_keyword), (ephy_bookmarks_unset_keyword): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_add), - (build_editing_table), (ephy_new_bookmark_construct): - * src/bookmarks/ephy-topics-selector.c: - (ephy_topics_selector_get_type), (ephy_topics_selector_class_init), - (ephy_topics_selector_finalize), - (ephy_topics_selector_set_bookmark), - (ephy_topics_selector_set_property), - (ephy_topics_selector_get_property), (fill_model), (topic_toggled), - (ephy_topics_selector_apply), (ephy_topics_build_ui), - (ephy_topics_selector_init), (ephy_topics_selector_new): - * src/bookmarks/ephy-topics-selector.h: - - Begin bookmarks editor redesign. Please still dont use it or you really - want backup your bookmarks ;) - - ChangeLog | 38 ++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 2 + - src/bookmarks/Makefile.am | 36 +-- - src/bookmarks/ephy-bookmark-properties.c | 301 +++++++++++++++++++++++++ - src/bookmarks/ephy-bookmark-properties.h | 58 +++++ - src/bookmarks/ephy-bookmarks-editor.c | 271 +++------------------- - src/bookmarks/ephy-bookmarks-editor.h | 2 +- - src/bookmarks/ephy-bookmarks-import.c | 9 +- - src/bookmarks/ephy-bookmarks.c | 94 +------- - src/bookmarks/ephy-bookmarks.h | 8 +- - src/bookmarks/ephy-new-bookmark.c | 49 ++-- - src/bookmarks/ephy-topics-selector.c | 350 +++++++++++++++++++++++++++++ - src/bookmarks/ephy-topics-selector.h | 63 ++++++ - 13 files changed, 896 insertions(+), 385 deletions(-) - -commit 2b29eae9bd4e37d8f7fe1ff84a74cb8e7f0c527b -Author: Marco Pesenti Gritti -Date: Sat Mar 22 00:05:00 2003 +0000 - - Cleanup: get active tab using the function - - 2003-03-22 Marco Pesenti Gritti - - * src/ephy-window.c: (update_favicon_control): - - Cleanup: get active tab using the function - - ChangeLog | 6 ++++++ - src/ephy-window.c | 7 +++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit b68c6da7c78ccd283f7589848f830f76816bcfcd -Author: Xan Lopez -Date: Tue Mar 18 20:46:00 2003 +0000 - - *** empty log message *** - - ChangeLog | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit d012141a9d6dc6e0b374b4e992e18239b21501dd -Author: Marco Pesenti Gritti -Date: Tue Mar 18 19:13:23 2003 +0000 - - Reimplement ephystate using xml and make it easier to use. -> remove some - - 2003-03-18 Marco Pesenti Gritti - - * lib/ephy-dialog.c: (setup_default_size): - * lib/ephy-state.c: (ephy_states_load), (ephy_states_save), - (find_by_name), (ensure_states), (ephy_state_window_set_size), - (ephy_state_window_save_size), (window_configure_event_cb), - (window_state_event_cb), (ephy_state_add_window), - (ephy_state_save): - * lib/ephy-state.h: - * lib/ephy-types.h: - * src/ephy-shell.c: (ephy_shell_finalize): - * src/ephy-window.c: (setup_window), (ephy_window_init), - (ephy_window_show): - * src/prefs-dialog.c: (prefs_dialog_init): - - Reimplement ephystate using xml and make it easier to use. - -> remove some duplicate code - - ChangeLog | 18 ++++ - lib/ephy-dialog.c | 19 +--- - lib/ephy-state.c | 302 +++++++++++++++++++++++++++++++++++++---------------- - lib/ephy-state.h | 22 ++-- - lib/ephy-types.h | 3 +- - src/ephy-shell.c | 2 + - src/ephy-window.c | 45 +------- - src/prefs-dialog.c | 19 +--- - 8 files changed, 251 insertions(+), 179 deletions(-) - -commit d248386941ce108b1e99d1a553682d5af791a628 -Author: Jon Svendsen -Date: Mon Mar 17 23:36:23 2003 +0000 - - Properly save maximized/unmaximized state. - - 2003-03-17 Jon Svendsen - - * lib/ephy-state.c: (ephy_state_save_window): - - Properly save maximized/unmaximized state. - - ChangeLog | 6 ++++++ - lib/ephy-state.c | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit b3560643271d1c4b9eb16d96c2e9b065546628e9 -Author: Marco Pesenti Gritti -Date: Mon Mar 17 22:38:09 2003 +0000 - - respect aclocal flags. This was easy damnit, if I think how many times I - - 2003-03-17 Marco Pesenti Gritti - - * configure.in: - - respect aclocal flags. This was easy damnit, if I think - how many times I had to rerun autogen ... - - ChangeLog | 7 +++++++ - configure.in | 2 ++ - 2 files changed, 9 insertions(+) - -commit dff4d10cd7198ddd3ec2b15ca125c24b2efa8063 -Author: Pablo Gonzalo del Campo -Date: Mon Mar 17 19:49:58 2003 +0000 - - Updated Spanish translation by Francisco Javier Fernandez - - 2003-03-17 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Francisco Javier Fernandez - - po/ChangeLog | 5 + - po/es.po | 460 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 238 insertions(+), 227 deletions(-) - -commit 98beabeddbcab702386cef9cc5ba5f2c6dc2fb98 -Author: Kjartan Maraas -Date: Mon Mar 17 16:59:00 2003 +0000 - - Updated Norwegian translation. Remove files that don't exist. - - 2003-03-17 Kjartan Maraas - - * no.po: Updated Norwegian translation. - * POTFILES.in: Remove files that don't exist. - - po/no.po | 38 +++++++++++++++++++------------------- - 1 file changed, 19 insertions(+), 19 deletions(-) - -commit 6d4b0209d35658abae5c9c95bbc640b79335745c -Author: Kjartan Maraas -Date: Mon Mar 17 14:35:53 2003 +0000 - - Updated Norwegian translation. Remove files that don't exist. - - 2003-03-17 Kjartan Maraas - - * no.po: Updated Norwegian translation. - * POTFILES.in: Remove files that don't exist. - - po/ChangeLog | 5 + - po/POTFILES.in | 2 - - po/no.po | 1134 +++++++++++++++++++++++++++++++------------------------- - 3 files changed, 628 insertions(+), 513 deletions(-) - -commit 9f2533ae031c7a77f62e26210c6375791be7e590 -Author: Kang Jeong-Hee -Date: Mon Mar 17 04:32:28 2003 +0000 - - ko.po added - - configure.in | 2 +- - po/ChangeLog | 4 + - po/ko.po | 2842 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 2847 insertions(+), 1 deletion(-) - -commit 642d345dfd4a97d21750254a2b6c6b9a6eaf3123 -Author: Chyla Zbigniew -Date: Mon Mar 17 01:06:16 2003 +0000 - - Added Polish translation by GNOME PL Team - - po/ChangeLog | 5 + - po/pl.po | 2782 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2787 insertions(+) - -commit a9a5aabacc4513bc42782bcd00882e96903f8337 -Author: Zbigniew Chyla -Date: Mon Mar 17 01:05:39 2003 +0000 - - Added pl (Polish). - - - 2003-03-17 Zbigniew Chyla - - * configure.in (ALL_LINGUAS): Added pl (Polish). - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit c24c8c4f38379dd0fa2bbc2d35e561c7023ec4aa -Author: Marco Pesenti Gritti -Date: Sun Mar 16 18:45:16 2003 +0000 - - Cleanup filepicker api behavior. Put pdm buttons in a size group, to make - - 2003-03-16 Marco Pesenti Gritti - - * embed/ephy-embed-utils.c: (ephy_embed_utils_save): - * embed/mozilla/mozilla-embed-single.cpp: - * src/pdm-dialog.c: (group_button_allocations), (pdm_dialog_init): - * src/window-commands.c: (window_cmd_file_open): - - Cleanup filepicker api behavior. - Put pdm buttons in a size group, to make switching page smoother. - (from galeon) - - ChangeLog | 11 +++++++++++ - embed/ephy-embed-utils.c | 2 +- - embed/mozilla/mozilla-embed-single.cpp | 2 -- - src/pdm-dialog.c | 27 +++++++++++++++++++++++++++ - src/window-commands.c | 4 ++-- - 5 files changed, 41 insertions(+), 5 deletions(-) - -commit afb64e1503b7c459887710747be56522abf02e3e -Author: Xan Lopez -Date: Sun Mar 16 01:15:54 2003 +0000 - - Fix Warning. - - - Fix Warning. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-node-view.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit cbce0224b85bac0df28964fdc2b97bd3c9ff43e5 -Author: Xan Lopez -Date: Sat Mar 15 23:28:20 2003 +0000 - - Put the bookmark view in hinted mode. Fix multiple selection actions in - - - Put the bookmark view in hinted mode. - Fix multiple selection actions in the Bookmark Editor. - - ChangeLog | 13 +++++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 4 +++- - src/bookmarks/ephy-node-view.c | 11 +++++++++++ - src/bookmarks/ephy-node-view.h | 3 +++ - 4 files changed, 30 insertions(+), 1 deletion(-) - -commit a49c85f4678d4b9edb19725b6c2168dc706d5b54 -Author: Marco Pesenti Gritti -Date: Sat Mar 15 18:27:14 2003 +0000 - - Keep a ref on EmbedPersist while save is in progress. - - 2003-03-15 Marco Pesenti Gritti - - * embed/ephy-embed-persist.c: (ephy_embed_persist_init), - (ephy_embed_persist_finalize): - * embed/mozilla/ProgressListener.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-persist.h: - - Keep a ref on EmbedPersist while save is in progress. - - ChangeLog | 10 ++++++++++ - embed/ephy-embed-persist.c | 6 +++++- - embed/mozilla/ProgressListener.cpp | 18 ++++++++++++++---- - embed/mozilla/mozilla-embed-persist.cpp | 11 +++++++++++ - embed/mozilla/mozilla-embed-persist.h | 2 ++ - 5 files changed, 42 insertions(+), 5 deletions(-) - -commit e460bd19de1c3856b1f066a84fc985014f07004f -Author: Christian Persch -Date: Sat Mar 15 14:26:15 2003 +0000 - - Fix leak and a double free - - 2003-03-15 Christian Persch - - * embed/ephy-embed-utils.c: (ephy_embed_utils_save): - * src/popup-commands.c: (save_property_url): - - Fix leak and a double free - - ChangeLog | 7 +++++++ - embed/ephy-embed-utils.c | 1 + - src/popup-commands.c | 2 ++ - 3 files changed, 10 insertions(+) - -commit c4f0df940819eecbafa66faf177d2a4b97dea09c -Author: Marco Pesenti Gritti -Date: Sat Mar 15 13:34:29 2003 +0000 - - Remove our custom prompt implementation. Gtkmozembed provides and HIG - - 2003-03-15 Marco Pesenti Gritti - - * data/glade/Makefile.am: - * data/glade/prompts.glade: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/PromptService.cpp: - * embed/mozilla/PromptService.h: - - Remove our custom prompt implementation. - Gtkmozembed provides and HIG compliant one now. - - ChangeLog | 12 + - data/glade/Makefile.am | 1 - - data/glade/prompts.glade | 722 ----------------------------- - embed/mozilla/Makefile.am | 2 - - embed/mozilla/MozRegisterComponents.cpp | 7 - - embed/mozilla/PromptService.cpp | 773 -------------------------------- - embed/mozilla/PromptService.h | 39 -- - 7 files changed, 12 insertions(+), 1544 deletions(-) - -commit 0493568f7449cea1dd8eeb08919c33f7979a8c09 -Author: Marco Pesenti Gritti -Date: Sat Mar 15 11:00:21 2003 +0000 - - bookmarks tasks - - doc/bookmarks.txt | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 1 file changed, 70 insertions(+) - -commit 95302a30a839e654d2dd0a574063a00c8437d97d -Author: Marco Pesenti Gritti -Date: Fri Mar 14 23:19:40 2003 +0000 - - Reload embed when changing charset - - 2003-03-15 Marco Pesenti Gritti - - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/mozilla-embed.cpp: - - Reload embed when changing charset - - * embed/print-dialog.c: (print_get_info): - - Correct colors flag - - ChangeLog | 20 ++++++++++++++++++++ - embed/mozilla/EphyWrapper.cpp | 2 +- - embed/mozilla/EphyWrapper.h | 2 +- - embed/mozilla/mozilla-embed.cpp | 11 +++++------ - embed/print-dialog.c | 2 +- - 5 files changed, 28 insertions(+), 9 deletions(-) - -commit d52ebda480bfc31dc585fb7789ba33c7aa92899d -Author: Xan Lopez -Date: Fri Mar 14 21:12:16 2003 +0000 - - Add Application Name - - - Add Application Name - - ChangeLog | 6 ++++++ - src/ephy-main.c | 1 + - 2 files changed, 7 insertions(+) - -commit 8957dd77876ac9b26a39d93f7d2f87dc5c88f095 -Author: Andrew Sobala -Date: Fri Mar 14 16:49:05 2003 +0000 - - revert to revision 1.2 to fix crash, per Marco's advice. Fixes: 108198. - - 2003-03-14 Andrew Sobala - - * embed/mozilla/ProgressListener.cpp: - - revert to revision 1.2 to fix crash, per Marco's advice. Fixes: 108198. - - ChangeLog | 6 ++++++ - embed/mozilla/ProgressListener.cpp | 32 +++++++++++--------------------- - 2 files changed, 17 insertions(+), 21 deletions(-) - -commit 8680bdc0594de8ced25f5b648e817ea789475ffe -Author: Iain Holmes -Date: Thu Mar 13 14:36:02 2003 +0000 - - Replace deprecated function - - ChangeLog | 5 +++++ - lib/widgets/ephy-spinner.c | 16 ++++++++-------- - 2 files changed, 13 insertions(+), 8 deletions(-) - -commit 63c056f322363949ba6c2e044be48d5ace24d2a6 -Author: Christian Neumair -Date: Wed Mar 12 11:54:20 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 401 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 206 insertions(+), 199 deletions(-) - -commit 1a6f7614dbc29b4d3bfde6ec3dbe5e164e6fa146 -Author: Vincent van Adrighem -Date: Tue Mar 11 12:07:30 2003 +0000 - - Dutch translation updated. - - 2003-03-11 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 +++ - po/nl.po | 108 +++++++++++++++++++++++++++++------------------------------ - 2 files changed, 58 insertions(+), 54 deletions(-) - -commit 666fda707688a305a0ca16a698868e6983824803 -Author: Marco Pesenti Gritti -Date: Tue Mar 11 11:25:08 2003 +0000 - - weak ref the dialog (from galeon) - - 2003-03-11 Marco Pesenti Gritti - - * embed/mozilla/ProgressListener.cpp: - - weak ref the dialog (from galeon) - - ChangeLog | 6 ++++++ - embed/mozilla/ProgressListener.cpp | 32 +++++++++++++++++++++----------- - 2 files changed, 27 insertions(+), 11 deletions(-) - -commit b072eb8810a82ef0faa6d6b67f47e24b3d974ff4 -Author: Christian Rose -Date: Mon Mar 10 21:13:05 2003 +0000 - - Updated Swedish translation. - - 2003-03-10 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 403 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 218 insertions(+), 189 deletions(-) - -commit 27f6513d78a135206d426a35577425ca1dc82356 -Author: Marco Pesenti Gritti -Date: Mon Mar 10 13:25:23 2003 +0000 - - Fix conflicting mnemonics. Partially from galeon. - - 2003-03-10 Marco Pesenti Gritti - - * data/glade/prefs-dialog.glade: - - Fix conflicting mnemonics. Partially from galeon. - - ChangeLog | 6 ++++++ - data/glade/prefs-dialog.glade | 6 +++--- - 2 files changed, 9 insertions(+), 3 deletions(-) - -commit a3bb576d6845ecedb9cedd9ae77333a556d6830a -Author: Vincent van Adrighem -Date: Sun Mar 9 22:16:43 2003 +0000 - - Dutch translation updated. - - 2003-03-09 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 328 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 161 insertions(+), 171 deletions(-) - -commit b30ae35bb2170c03f16a7b9eb5a62d66056bb62e -Author: Xan Lopez -Date: Sun Mar 9 19:36:38 2003 +0000 - - More cleaner way of length calculation from previous commit. - - - More cleaner way of length calculation from previous commit. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-keywords-entry.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 64f7879af2f0d3e234926d03ae1f1da711a89329 -Author: Dan Damian -Date: Sun Mar 9 19:32:41 2003 +0000 - - Use default widget color for smart bookmarks background. Fixes #107902. - - 2003-03-09 Dan Damian - - * lib/widgets/ephy-autocompletion-window.c: - (ephy_autocompletion_window_init_widgets): - - Use default widget color for smart bookmarks background. Fixes - #107902. - - * lib/ephy-gui.h: - * lib/ephy-gui.c (shift_color_component), - (ephy_gui_rgb_shift_color), (rgb16_to_rgb), - (ephy_gui_gdk_color_to_rgb), (ephy_gui_rgb_to_color): - - Removed unused functions. - - ChangeLog | 19 ++++++- - lib/ephy-gui.c | 90 -------------------------------- - lib/ephy-gui.h | 8 --- - lib/widgets/ephy-autocompletion-window.c | 7 ++- - 4 files changed, 20 insertions(+), 104 deletions(-) - -commit 2f46d7cd79bda7c11395223411cfe4e28c6111d6 -Author: Xan Lopez -Date: Sun Mar 9 19:24:08 2003 +0000 - - Properly autocomplete when topics have national characters, fix #107685 - - - Properly autocomplete when topics have national characters, fix #107685 - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-keywords-entry.c | 13 ++++++------- - 2 files changed, 13 insertions(+), 7 deletions(-) - -commit dc5e7c29cd4d88a9ce5b329c5a47f274df7f56cb -Author: Xan Lopez -Date: Sun Mar 9 10:42:11 2003 +0000 - - *** empty log message *** - - ChangeLog | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 52f73aa03ed70ff89f1e53f632539bd8d3c8359a -Author: Xan Lopez -Date: Sun Mar 9 01:09:05 2003 +0000 - - s/Keywords/Topics/ - - - s/Keywords/Topics/ - - src/bookmarks/ephy-bookmarks-editor.c | 4 ++-- - src/bookmarks/ephy-new-bookmark.c | 2 +- - 2 files changed, 3 insertions(+), 3 deletions(-) - -commit 054c98c402cf486d55185ba286d5415b47bf4db7 -Author: Marco Pesenti Gritti -Date: Sun Mar 9 00:32:34 2003 +0000 - - Code cleanup from galeon - - 2003-03-09 Marco Pesenti Gritti - - * lib/widgets/ephy-spinner.c: (ephy_spinner_expose), - (bump_spinner_frame), (ephy_spinner_class_init): - - Code cleanup from galeon - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - - s/Title/Bookmark, should be more clear - - ChangeLog | 12 ++++++++++++ - lib/widgets/ephy-spinner.c | 23 ++++------------------- - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 3 files changed, 17 insertions(+), 20 deletions(-) - -commit 8129584f01c3756626d0b8f38284f197e1e2f822 -Author: Dan Damian -Date: Sat Mar 8 18:13:33 2003 +0000 - - A space by any other name. - - ChangeLog | 5 +++++ - lib/ephy-debug.h | 2 +- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit debc99b09a3217569e0835283384109fef182d7e -Author: Iain Holmes -Date: Sat Mar 8 12:44:34 2003 +0000 - - Make the popup labels more descriptive - - ChangeLog | 5 +++++ - lib/widgets/ephy-editable-toolbar.c | 4 ++-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 6a8cdc3478fe1451cac86a9999fb172ab82bd83c -Author: James Willcox -Date: Fri Mar 7 23:44:11 2003 +0000 - - Enable using dnd for removing toolbars. Also, fix #107793. - - - - 2003-03-07 James Willcox - - * lib/widgets/ephy-editable-toolbar.c: - (toolbar_drag_data_delete_cb), (toolbar_drag_data_get_cb), - (connect_toolbar_drag_source), (disconnect_toolbar_drag_source), - (do_merge), (editor_close), (button_press_cb), - (ephy_editable_toolbar_edit): - - Enable using dnd for removing toolbars. Also, fix #107793. - - ChangeLog | 10 +++ - lib/widgets/ephy-editable-toolbar.c | 147 +++++++++++++++++++++++++++++++++++- - 2 files changed, 155 insertions(+), 2 deletions(-) - -commit c8b29351ef404b3a62b7e484e4ed28a62027615f -Author: David Bordoley -Date: Fri Mar 7 21:48:02 2003 +0000 - - Add a stock icon for entry box so that it has an icon in the tbe. - - 2003-03-07 David Bordoley - - * lib/ephy-stock-icons.h: - * lib/ephy-stock-icons.c: - * data/art/Makefile.am: - * data/art/epiphany-entry.png: (new file) - * src/toolbar.c: - Add a stock icon for entry box so that it has an icon in the tbe. - - ChangeLog | 9 +++++++++ - 1 file changed, 9 insertions(+) - -commit caf8c10a29884a991924b2b63fad5d9d28f47f44 -Author: David Bordoley -Date: Fri Mar 7 21:39:30 2003 +0000 - - Add a stock icon for entry box so that it has an icon in the tbe. - - - 2003-03-07 David Bordoley - - * lib/ephy-stock-icons.h: - * lib/ephy-stock-icons.c: - * data/art/Makefile.am: - * data/art/epiphany-entry.png: (new file) - * src/toolbar.c: - Add a stock icon for entry box so that it has an icon in the tbe. - - data/art/Makefile.am | 1 + - data/art/epiphany-entry.png | Bin 0 -> 383 bytes - lib/ephy-stock-icons.c | 3 ++- - lib/ephy-stock-icons.h | 1 + - src/toolbar.c | 2 ++ - 5 files changed, 6 insertions(+), 1 deletion(-) - -commit 80e8650c21c1be9199cc659b85e13a23a3bf2168 -Author: Marco Pesenti Gritti -Date: Fri Mar 7 20:56:06 2003 +0000 - - *** empty log message *** - - data/ui/.cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit 28d607eb84641c696b1d459f8906a389d169fc83 -Author: Dan Damian -Date: Fri Mar 7 20:32:58 2003 +0000 - - lib/ephy-debug.h: (LOG) use named variable arguments for - compatibility with older gcc (2.95). - - ChangeLog | 5 +++++ - lib/ephy-debug.h | 6 +++--- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit ff8cb3c94a12a0c52f5d32c88598a018e7fa74c4 -Author: David Bordoley -Date: Fri Mar 7 12:37:47 2003 +0000 - - New toolbar action so that the "Go" button is always text only. Removed - - 2003-03-07 David Bordoley - - * src/ephy-go-action.c: (new file) - * src/ephy-go-action.h: (new file) - * src/Makefile.am: - * src/ephy-window.c: - * src/toolbar.c: - * data/ui/epiphany-toolbar.xml.in: - * po/POTFILES.in: - New toolbar action so that the "Go" button is always text only. - Removed the old toolbar "Go" button. - - ChangeLog | 12 +++++ - data/ui/epiphany-toolbar.xml.in | 2 +- - po/POTFILES.in | 1 + - src/Makefile.am | 2 + - src/ephy-go-action.c | 113 ++++++++++++++++++++++++++++++++++++++++ - src/ephy-go-action.h | 46 ++++++++++++++++ - src/ephy-window.c | 5 -- - src/toolbar.c | 12 +++++ - 8 files changed, 187 insertions(+), 6 deletions(-) - -commit 49b1348c56bbcd4f00361b0aed4755242903efd8 -Author: James Willcox -Date: Fri Mar 7 01:20:45 2003 +0000 - - Fix the padding. - - - - 2003-03-06 James Willcox - - * lib/egg/eggtoolbar.c: (egg_toolbar_size_allocate): Fix the padding. - - ChangeLog | 4 ++++ - lib/egg/eggtoolbar.c | 7 ++----- - 2 files changed, 6 insertions(+), 5 deletions(-) - -commit cae31d5a232a286fa1e9ce2c303f3ed139b81b87 -Author: James Willcox -Date: Fri Mar 7 00:39:47 2003 +0000 - - Update from libegg same - - - - 2003-03-06 James Willcox - - * data/ui/epiphany-ui.xml.in: - * lib/egg/eggtoolbar.c: Update from libegg - * lib/egg/eggtoolbar.h: same - * lib/widgets/ephy-editable-toolbar.c: - (ephy_editable_toolbar_remove_cb), (ephy_editable_toolbar_edit_cb), - (popup_toolbar_context_menu), (setup_toolbar), (do_merge): - - Implement a context menu for toolbars. - - ChangeLog | 11 ++ - data/ui/Makefile.am | 3 +- - data/ui/epiphany-toolbar-popup-ui.xml.in | 12 ++ - lib/egg/eggtoolbar.c | 201 ++++++++++++++++++++++++++----- - lib/egg/eggtoolbar.h | 1 + - lib/widgets/ephy-editable-toolbar.c | 112 ++++++++++++++++- - 6 files changed, 307 insertions(+), 33 deletions(-) - -commit f7d30977b5bff128551c56ce4d8f20ddf3ab245c -Author: Marco Pesenti Gritti -Date: Thu Mar 6 23:09:29 2003 +0000 - - *** empty log message *** - - TODO | 1 + - 1 file changed, 1 insertion(+) - -commit 077fc2dcdfce76dc3b22e1d4321601400a1b9783 -Author: Marco Pesenti Gritti -Date: Thu Mar 6 23:07:58 2003 +0000 - - Better user agent string (from galeon) - - 2003-03-07 Marco Pesenti Gritti - - * TODO: - * embed/mozilla/mozilla-notifiers.cpp: - - Better user agent string (from galeon) - - ChangeLog | 7 +++++++ - embed/mozilla/mozilla-notifiers.cpp | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit 71cc433697cd7017393bf8ca1d2c0a6244429143 -Author: James Willcox -Date: Thu Mar 6 23:04:36 2003 +0000 - - Remove the spinner prefs UI. - - - - 2003-03-06 James Willcox - - * data/glade/prefs-dialog.glade: Remove the spinner prefs UI. - - ChangeLog | 4 ++ - data/glade/prefs-dialog.glade | 100 ------------------------------------------ - 2 files changed, 4 insertions(+), 100 deletions(-) - -commit 789fcc6e7ce4840ecb294e0d00aa06f989bc974f -Author: Xan Lopez -Date: Thu Mar 6 19:41:43 2003 +0000 - - about: world comination - - - about: world comination - - ChangeLog | 13 +++++++ - data/Makefile.am | 6 +-- - data/conspiracy.xhtml | 49 +++++++++++++++++++++++++ - data/epiphany.xhtml | 65 +++++++++++++++++++++++++++++++++ - embed/mozilla/EphyAboutRedirector.cpp | 3 +- - embed/mozilla/EphyAboutRedirector.h | 1 + - embed/mozilla/MozRegisterComponents.cpp | 8 ++++ - 7 files changed, 141 insertions(+), 4 deletions(-) - -commit 2d790e3b02e5f479571f618713f2fed3857cd2a2 -Author: Edd Dumbill -Date: Thu Mar 6 18:39:54 2003 +0000 - - Fix EXTRA_DIST - - 2003-03-06 Edd Dumbill - - * data/Makefile.am: - - Fix EXTRA_DIST - - ChangeLog | 6 ++++++ - data/Makefile.am | 5 ++--- - 2 files changed, 8 insertions(+), 3 deletions(-) - -commit 7abb532917cd5aef49154bf6557dcc04f9c78402 -Author: Kostas Papadimas -Date: Wed Mar 5 19:07:43 2003 +0000 - - Added the Greek translation - - configure.in | 2 +- - po/ChangeLog | 4 + - po/el.po | 2858 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 2863 insertions(+), 1 deletion(-) - -commit 91f079bb911f1c116e085ab26fe689d0824ef489 -Author: Marco Pesenti Gritti -Date: Wed Mar 5 18:49:00 2003 +0000 - - Try to handle better editing/multiple selection - - 2003-03-05 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (popup_cmd_open_bookmarks_in_browser), - (ephy_bookmarks_editor_node_selected_cb), - (ephy_bookmarks_editor_show_popup_cb), - (ephy_bookmarks_editor_key_pressed_cb), (update_prop_from_entry), - (ephy_bookmarks_editor_construct): - - Try to handle better editing/multiple selection - - ChangeLog | 11 +++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 28 ++++++++++++++++------------ - 2 files changed, 27 insertions(+), 12 deletions(-) - -commit 1cdbb298de7e410b9b013d2966ac5aa5d78f4366 -Author: Dmitry Mastrukov -Date: Wed Mar 5 05:53:05 2003 +0000 - - configure.in: Added Russian to ALL_LINGUAS. - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit ab74b7baa91e76944cf188cfe309cf99418bd0a3 -Author: Dmitry Mastrukov -Date: Wed Mar 5 05:51:00 2003 +0000 - - ru.po: Added Russian translation from Russian team . - - po/ChangeLog | 5 + - po/ru.po | 2946 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 2951 insertions(+) - -commit 0fd958d28fdd8eded9b2086eb9344cfe0a650586 -Author: Marco Pesenti Gritti -Date: Tue Mar 4 21:27:06 2003 +0000 - - *** empty log message *** - - TODO | 2 ++ - 1 file changed, 2 insertions(+) - -commit b13ca3fa01c8663acbf1015a13ba4fbc61b993ed -Author: Marco Pesenti Gritti -Date: Tue Mar 4 20:27:03 2003 +0000 - - Translate menus - - 2003-03-04 Marco Pesenti Gritti - - * TODO: - * embed/mozilla/EphyAboutRedirector.cpp: - * embed/mozilla/EphyAboutRedirector.h: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/MozillaPrivate.cpp: - * lib/egg/egg-action-group.c: - * src/ephy-encoding-menu.c: (build_group), (build_charset): - - Translate menus - - * src/ephy-automation.c: (impl_ephy_automation_loadurl): - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-window.c: - - Make -f work - - ChangeLog | 18 ++++++++++++++++++ - TODO | 1 + - embed/mozilla/EphyAboutRedirector.cpp | 1 + - embed/mozilla/EphyAboutRedirector.h | 1 + - embed/mozilla/MozRegisterComponents.cpp | 7 +++++++ - embed/mozilla/MozillaPrivate.cpp | 1 + - lib/egg/egg-action-group.c | 4 +--- - src/ephy-automation.c | 5 +++++ - src/ephy-encoding-menu.c | 6 ++++-- - src/ephy-shell.c | 6 ++++++ - src/ephy-window.c | 2 +- - 11 files changed, 46 insertions(+), 6 deletions(-) - -commit 59112c5d1ecefa9108e83135ecac07f9d7263657 -Author: Marco Pesenti Gritti -Date: Tue Mar 4 11:49:35 2003 +0000 - - *** empty log message *** - - data/epiphany.html | 1 + - data/ui/.cvsignore | 2 +- - embed/mozilla/EphyAboutRedirector.cpp | 123 ++++++++++++++++++++++++++++++++++ - embed/mozilla/EphyAboutRedirector.h | 74 ++++++++++++++++++++ - 4 files changed, 199 insertions(+), 1 deletion(-) - -commit a33bcd1401e16577bee22734142aa74e6849814b -Author: Marco Pesenti Gritti -Date: Tue Mar 4 11:44:55 2003 +0000 - - *** empty log message *** - - data/ui/.cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit 0edd1d380be6ee3a7dbcf5b93fe757ed5bbc1ebb -Author: Marco Pesenti Gritti -Date: Tue Mar 4 11:42:28 2003 +0000 - - about:options and about:epiphany - - 2003-03-04 Marco Pesenti Gritti - - * data/Makefile.am: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * src/Makefile.am: - - about:options and about:epiphany - - * src/ephy-shell.c: (ephy_init_services): - - monitor proxy changes - - * src/prefs-dialog.c: (create_page), (prefs_dialog_get_page): - * src/ui-prefs.c: - * src/ui-prefs.h: - * lib/widgets/ephy-spinner.c: (ephy_spinner_get_theme_info), - (ephy_spinner_init_directory_list), (ephy_spinner_info_free), - (ephy_spinner_get_theme_path): - * lib/widgets/ephy-spinner.h: - - Remove spinner configuration, this should be part of the icon theme - at some point. - - ChangeLog | 24 ++++ - data/Makefile.am | 3 + - embed/mozilla/Makefile.am | 3 +- - embed/mozilla/MozRegisterComponents.cpp | 16 +++ - lib/widgets/ephy-spinner.c | 86 ++---------- - lib/widgets/ephy-spinner.h | 9 -- - src/Makefile.am | 2 - - src/ephy-shell.c | 1 + - src/prefs-dialog.c | 21 ++- - src/ui-prefs.c | 232 -------------------------------- - src/ui-prefs.h | 58 -------- - 11 files changed, 77 insertions(+), 378 deletions(-) - -commit c615a211b12f14649045651af653d251dd46a29b -Author: Ole Laursen -Date: Sat Mar 1 17:01:59 2003 +0000 - - Ported translation from newest Galeon. - - 2003-03-01 Ole Laursen - - * da.po: Ported translation from newest Galeon. - - * POTFILES.in: Removed non-existing toolbar-editor.glade. - - po/ChangeLog | 6 + - po/POTFILES.in | 1 - - po/da.po | 4846 +++----------------------------------------------------- - 3 files changed, 255 insertions(+), 4598 deletions(-) - -commit d5a9404675266fdb5c68cd3ab51ff2797b7d43fc -Author: Xan Lopez -Date: Sat Mar 1 15:41:59 2003 +0000 - - Fix 105990. - - - Fix 105990. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 25 +++++++++++++++++++++++++ - 2 files changed, 33 insertions(+) - -commit fd4721ce45cce12723d3a1fde8a635367eb08559 -Author: Marco Pesenti Gritti -Date: Fri Feb 28 19:22:58 2003 +0000 - - Fix embed dialog to pass a good EphyEmbed when the initial one has been - - 2003-02-28 Marco Pesenti Gritti - - * TODO: - * embed/ephy-embed-dialog.c: (unset_embed), - (ephy_embed_dialog_finalize), (ephy_embed_dialog_set_embed): - * src/ephy-tab.c: (ephy_tab_init), (ephy_tab_destroy_brsr_cb): - - Fix embed dialog to pass a good EphyEmbed when the initial one - has been destroyed - - ChangeLog | 10 ++++++++++ - TODO | 2 +- - embed/ephy-embed-dialog.c | 17 ++++++++++++++++- - src/ephy-tab.c | 5 +++++ - 4 files changed, 32 insertions(+), 2 deletions(-) - -commit 30268048c1a62294bfe663d95830eeffb594aaf4 -Author: Marco Pesenti Gritti -Date: Fri Feb 28 18:34:48 2003 +0000 - - Remove old toolbar editor ui - - 2003-02-28 Marco Pesenti Gritti - - * data/glade/Makefile.am: - * data/glade/toolbar-editor.glade: - - Remove old toolbar editor ui - - * lib/ephy-autocompletion.c: (ephy_autocompletion_update_matches): - - Remove an obsolete FIXME - - * lib/ephy-gui.c: - * lib/ephy-gui.h: - - Remove some functions that was used only in galeon bookmarks - - * lib/widgets/ephy-autocompletion-window.c: - (hack_tree_view_move_selection), - (ephy_autocompletion_window_key_press_hack): - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_autocompletion_window_url_selected_cb): - - Up on the top border of the autocompl window goes back to the entry - - * src/appearance-prefs.c: (setup_font_menu): - - Free fonts list - - * src/ephy-tab.c: (ephy_tab_parent_set_cb), - (ephy_tab_set_visibility): - * src/window-commands.c: (window_cmd_tabs_move_left), - (window_cmd_tabs_move_right): - - Implement tabs moving - - ChangeLog | 35 +++ - data/glade/Makefile.am | 1 - - data/glade/toolbar-editor.glade | 418 ------------------------------- - lib/ephy-autocompletion.c | 1 - - lib/ephy-gui.c | 114 --------- - lib/ephy-gui.h | 26 -- - lib/widgets/ephy-autocompletion-window.c | 29 ++- - lib/widgets/ephy-location-entry.c | 10 +- - src/appearance-prefs.c | 3 +- - src/ephy-tab.c | 7 +- - src/window-commands.c | 28 +++ - 11 files changed, 95 insertions(+), 577 deletions(-) - -commit f622f8192547ed09c59f09416a4b532c5541a372 -Author: Vincent van Adrighem -Date: Fri Feb 28 16:18:19 2003 +0000 - - Dutch translation updated. - - 2003-02-28 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++++ - po/nl.po | 26 +++++++------------------- - 2 files changed, 11 insertions(+), 19 deletions(-) - -commit fac2687f27d75671ce94177f020063404a4a45a2 -Author: Marco Pesenti Gritti -Date: Fri Feb 28 12:40:12 2003 +0000 - - fix compilation - - 2003-02-28 Marco Pesenti Gritti - - * src/bookmarks/ephy-node-view.c: (ephy_node_view_sort_func): - - fix compilation - - ChangeLog | 6 ++++++ - src/bookmarks/ephy-node-view.c | 18 ++++++++++-------- - 2 files changed, 16 insertions(+), 8 deletions(-) - -commit 9f7e8afa6de9c9a643d727f791160ce11cff7044 -Author: Marco Pesenti Gritti -Date: Fri Feb 28 02:46:31 2003 +0000 - - cleaner xml dump code. - - 2003-02-28 Marco Pesenti Gritti - - * lib/ephy-start-here.c: (ephy_start_here_get_page): - - cleaner xml dump code. - - * lib/widgets/ephy-autocompletion-window.c: - (ephy_autocompletion_window_key_press_hack): - * lib/widgets/ephy-location-entry.c: (ephy_location_entry_init), - (ephy_location_entry_finalize_impl), - (ephy_location_entry_autocompletion_show_alternatives_to), - (ephy_location_entry_key_press_event_cb), - (ephy_location_entry_autocompletion_window_url_selected_cb): - - Do not overwrite search text when going on an action, - make Esc get back the location content before the completion. - - ChangeLog | 17 +++++++++++++++++ - lib/ephy-start-here.c | 17 ++++------------- - lib/widgets/ephy-autocompletion-window.c | 2 ++ - lib/widgets/ephy-location-entry.c | 14 ++++++++++++-- - 4 files changed, 35 insertions(+), 15 deletions(-) - -commit ea7657cbc7b0a294305716fa0ed3660ccdb15f43 -Author: Marco Pesenti Gritti -Date: Thu Feb 27 13:11:49 2003 +0000 - - Fix toolbar removal. - - 2003-02-27 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: (editor_close), - (editor_add_toolbar), (dialog_response_cb), (setup_editor): - - Fix toolbar removal. - - * lib/widgets/ephy-toolbars-group.c: - (ephy_toolbars_group_to_string), (ephy_toolbars_group_remove_item): - - Use a real GtkDialog for the editor, nicer code and good window placement. - Just hope we dont have to change this again :/ - - ChangeLog | 13 ++++ - lib/widgets/ephy-editable-toolbar.c | 116 ++++++++++++++++++------------------ - lib/widgets/ephy-toolbars-group.c | 5 +- - 3 files changed, 75 insertions(+), 59 deletions(-) - -commit fca771346f8dc0d8707bc5352e6432e32d9439ea -Author: Xan Lopez -Date: Wed Feb 26 23:09:25 2003 +0000 - - Typo. - - - Typo. - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 2479acbc8d5b8e72146e3e91b2946218324ee209 -Author: Christian Rose -Date: Wed Feb 26 15:19:20 2003 +0000 - - Updated Swedish translation. - - 2003-02-26 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 1882 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 1043 insertions(+), 843 deletions(-) - -commit 3b67321d5cfb618a93720567db9291a712cff5d6 -Author: Marco Pesenti Gritti -Date: Wed Feb 26 12:26:47 2003 +0000 - - Remove also the toolbar when removing the last item - - 2003-02-26 Marco Pesenti Gritti - - * lib/widgets/ephy-toolbars-group.c: - (ephy_toolbars_group_remove_item): - - Remove also the toolbar when removing the last item - - lib/widgets/ephy-toolbars-group.c | 8 ++++++++ - 1 file changed, 8 insertions(+) - -commit 534e068d3e702d23643f8a0bc7d84e3b3e0b990f -Author: Xan Lopez -Date: Wed Feb 26 12:21:43 2003 +0000 - - BE auto sort. - - - BE auto sort. - - ChangeLog | 18 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - src/bookmarks/ephy-bookmarks.c | 6 +++ - src/bookmarks/ephy-bookmarks.h | 4 +- - src/bookmarks/ephy-node-view.c | 83 ++++++++++++++++++++++++++++++++++- - src/bookmarks/ephy-tree-model-node.c | 17 +++++++ - src/bookmarks/ephy-tree-model-node.h | 2 + - 7 files changed, 129 insertions(+), 3 deletions(-) - -commit db6e87f093cbd92f35b65f8b9875c07e01d3be30 -Author: Marco Pesenti Gritti -Date: Wed Feb 26 12:19:22 2003 +0000 - - Remove also the toolbar when removing the last item - - 2003-02-26 Marco Pesenti Gritti - - * lib/widgets/ephy-toolbars-group.c: - (ephy_toolbars_group_remove_item): - - Remove also the toolbar when removing the last item - - ChangeLog | 7 +++++++ - 1 file changed, 7 insertions(+) - -commit 4f956b536b91ef80b478f0dc3aaedfef591b648c -Author: Marco Pesenti Gritti -Date: Wed Feb 26 12:08:37 2003 +0000 - - Make tbe a normal dialog for now. - - 2003-02-26 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: (ui_update), - (ephy_editable_toolbar_init), (editor_add_toolbar_cb), - (editor_drag_data_received_cb), (editor_drag_data_delete_cb), - (setup_editor), (update_editor_sheet), - (ephy_editable_toolbar_edit): - * lib/widgets/ephy-editable-toolbar.h: - * src/window-commands.c: (window_cmd_edit_toolbar): - - Make tbe a normal dialog for now. - - ChangeLog | 12 ++++ - lib/widgets/ephy-editable-toolbar.c | 116 ++++-------------------------------- - lib/widgets/ephy-editable-toolbar.h | 3 +- - src/window-commands.c | 3 +- - 4 files changed, 26 insertions(+), 108 deletions(-) - -commit 49487ca10a9278035c6ee14ee237f7bed7a4ef99 -Author: Marco Pesenti Gritti -Date: Wed Feb 26 10:49:41 2003 +0000 - - Remove an hack used to work around a fixed combo problem - - 2003-02-26 Marco Pesenti Gritti - - * src/appearance-prefs.c: (setup_font_menu): - - Remove an hack used to work around a fixed combo problem - - * src/ephy-shell.c: (ephy_shell_command_cb): - - Use info dialog for mozilla bookmarks imported, not error. - - ChangeLog | 10 ++++++++++ - src/appearance-prefs.c | 7 ------- - src/ephy-shell.c | 2 +- - 3 files changed, 11 insertions(+), 8 deletions(-) - -commit 2227b7a87f73bea0b61e92aa003d7a5a77c1a583 -Author: Marco Pesenti Gritti -Date: Wed Feb 26 00:59:17 2003 +0000 - - Remove Tab autocompletion. Behavior still not optimal, but that code is - - 2003-02-26 Marco Pesenti Gritti - - * lib/ephy-autocompletion.c: (ephy_autocompletion_init), - (ephy_autocompletion_reset), (ephy_autocompletion_set_key), - (ephy_autocompletion_update_matches): - * lib/ephy-autocompletion.h: - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_key_press_event_cb), - (ephy_location_entry_autocompletion_sources_changed_cb): - - Remove Tab autocompletion. Behavior still not optimal, - but that code is such a pain :( - - ChangeLog | 13 ++++ - lib/ephy-autocompletion.c | 60 ---------------- - lib/ephy-autocompletion.h | 1 - - lib/widgets/ephy-location-entry.c | 140 +------------------------------------- - 4 files changed, 14 insertions(+), 200 deletions(-) - -commit a19a320b865685d726ed8a50b36872596ddd70be -Author: Vincent van Adrighem -Date: Mon Feb 24 10:18:44 2003 +0000 - - Dutch translation updated. - - 2003-02-24 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++++ - po/nl.po | 4 ++-- - 2 files changed, 6 insertions(+), 2 deletions(-) - -commit d70d3cea45081a164b9618d1f3c7a29dda9e72e0 -Author: Vincent van Adrighem -Date: Sun Feb 23 13:39:33 2003 +0000 - - Dutch translation updated. - - 2003-02-23 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++++ - po/nl.po | 30 +++++++++++++++--------------- - 2 files changed, 19 insertions(+), 15 deletions(-) - -commit 5a5bd9910fde9c324be25cc254af31fdab24037e -Author: Marco Pesenti Gritti -Date: Sun Feb 23 02:49:10 2003 +0000 - - Revert unwanted checkin - - 2003-02-23 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: (drag_data_delete_cb), - (drag_data_get_cb), (do_merge), (editor_close_cb), - (button_press_cb), (ephy_editable_toolbar_edit): - * src/ephy-window.c: (add_widget): - - Revert unwanted checkin - - ChangeLog | 9 ++++ - lib/widgets/ephy-editable-toolbar.c | 92 +++---------------------------------- - src/ephy-window.c | 5 -- - 3 files changed, 16 insertions(+), 90 deletions(-) - -commit db0e48d09abcc0134efac3ce2717c42a216b18e3 -Author: Marco Pesenti Gritti -Date: Sun Feb 23 02:20:51 2003 +0000 - - Update location entry with the urls selected on the drop down. Implement - - 2003-02-23 Marco Pesenti Gritti - - * lib/widgets/ephy-autocompletion-window.c: - (ephy_autocompletion_window_class_init), - (ephy_autocompletion_window_key_press_hack): - * lib/widgets/ephy-autocompletion-window.h: - * lib/widgets/ephy-editable-toolbar.c: (drag_data_delete_cb), - (drag_data_get_cb), (connect_toolbar_drag_source), - (disconnect_toolbar_drag_source), (do_merge), (editor_close_cb), - (button_press_cb), (ephy_editable_toolbar_edit): - * lib/widgets/ephy-location-entry.c: (location_focus_out_cb), - (ephy_location_entry_init), (real_entry_set_location), - (ephy_location_entry_key_press_event_cb), - (ephy_location_entry_activate_cb), - (ephy_location_entry_set_location), - (ephy_location_entry_autocompletion_window_url_selected_cb), - (ephy_location_entry_set_autocompletion), - (ephy_location_entry_autocompletion_window_url_activated_cb), - (ephy_location_entry_autocompletion_window_hidden_cb), - (ephy_location_entry_edit): - * lib/widgets/ephy-location-entry.h: - * src/ephy-shell.c: (ephy_shell_new_tab): - * src/ephy-window.c: (add_widget): - * src/toolbar.c: (toolbar_edit_location): - * src/toolbar.h: - - Update location entry with the urls selected on the drop down. - Implement editing mode in location entry == when the user is typing - an url try to do not disturb (mozilla still grab the focus damnit). - Dont put the homepage url in the location. I'm not sure if this is - a good behavior for normal urls (I dont see problems, but please - prove me wrong), but for about:blank it's needed. - - ChangeLog | 33 ++++++++++++ - lib/widgets/ephy-autocompletion-window.c | 29 ++++++++++ - lib/widgets/ephy-autocompletion-window.h | 4 +- - lib/widgets/ephy-editable-toolbar.c | 92 +++++++++++++++++++++++++++++--- - lib/widgets/ephy-location-entry.c | 70 +++++++++++++++++++++--- - lib/widgets/ephy-location-entry.h | 1 + - src/ephy-shell.c | 13 +++-- - src/ephy-window.c | 5 ++ - src/toolbar.c | 16 ++++++ - src/toolbar.h | 2 + - 10 files changed, 245 insertions(+), 20 deletions(-) - -commit 6fb4ac671cbcfdd90fffb7752f3fdce8f80cc30e -Author: James Willcox -Date: Sun Feb 23 01:34:12 2003 +0000 - - Adapt to API change in CVS mozilla. - - - - 2003-02-22 James Willcox - - * embed/mozilla/GlobalHistory.cpp: - - Adapt to API change in CVS mozilla. - - ChangeLog | 6 ++++++ - embed/mozilla/GlobalHistory.cpp | 9 --------- - 2 files changed, 6 insertions(+), 9 deletions(-) - -commit 16037b9975d309e1c615ebc473d3c2ba64675fde -Author: Pablo Saratxaga -Date: Sat Feb 22 12:39:44 2003 +0000 - - Added Catalan file - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/ca.po | 2821 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2830 insertions(+), 1 deletion(-) - -commit ec5b9cf692fb2dfd17a21eb17c9f7373afb8f2ac -Author: James Willcox -Date: Fri Feb 21 23:42:36 2003 +0000 - - Remove the css file from the build. - - - - 2003-02-21 James Willcox - - * data/starthere/Makefile.am: - - Remove the css file from the build. - - ChangeLog | 6 ++++++ - data/starthere/Makefile.am | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 4278f80b4cd2937dac80a12c727e21be3aceae1f -Author: James Willcox -Date: Fri Feb 21 23:13:28 2003 +0000 - - Make the start-here: page use the theme colors. - - - - 2003-02-21 James Willcox - - * data/starthere/section.xsl: - * lib/ephy-start-here.c: (color_to_string), (build_content): - - Make the start-here: page use the theme colors. - - ChangeLog | 7 ++++++ - data/starthere/section.css | 29 ----------------------- - data/starthere/section.xsl | 40 +++++++++++++++++++++++++++++++- - lib/ephy-start-here.c | 57 +++++++++++++++++++++++++++++++++++++++++++--- - 4 files changed, 100 insertions(+), 33 deletions(-) - -commit 95620115f1a1939b0ac8cd91d22a2827abb4a741 -Author: Pablo Gonzalo del Campo -Date: Fri Feb 21 20:41:31 2003 +0000 - - Updated Spanish translation by Javier Fernandez - - 2003-02-21 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Javier Fernandez - - po/ChangeLog | 5 ++ - po/es.po | 268 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 174 insertions(+), 99 deletions(-) - -commit 2e9f84f58b7b13b747881263f403249458a2e8e4 -Author: Marco Pesenti Gritti -Date: Fri Feb 21 19:54:35 2003 +0000 - - Use connect_object so the changed signal is removed from closed window. - - 2003-02-21 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: - (ephy_editable_toolbar_set_group): - - Use connect_object so the changed signal is removed - from closed window. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-editable-toolbar.c | 6 +++--- - 2 files changed, 11 insertions(+), 3 deletions(-) - -commit 5d4d9eba1c241a12304d74d3c2bea7e80a853cd6 -Author: Marco Pesenti Gritti -Date: Fri Feb 21 19:33:45 2003 +0000 - - Dont create duped actions, fix crash on exit - - 2003-02-21 Marco Pesenti Gritti - - * src/toolbar.c: (get_bookmark_action), (toolbar_get_action): - - Dont create duped actions, fix crash on exit - - ChangeLog | 6 ++++++ - src/toolbar.c | 37 ++++++++++++++++++------------------- - 2 files changed, 24 insertions(+), 19 deletions(-) - -commit 339ba24998303dd302e0223fb0ccd67cd684ce79 -Author: Takayuki KUSANO -Date: Fri Feb 21 17:37:54 2003 +0000 - - added ja.po to ALL_LINGUAS New Japanese translation. - - * configure.in: added ja.po to ALL_LINGUAS - * po/ja.po: New Japanese translation. - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/ja.po | 2866 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2875 insertions(+), 1 deletion(-) - -commit 170c60d49682f73c4a47c16f04ef5f4c06e8c90c -Author: Marco Pesenti Gritti -Date: Fri Feb 21 16:40:34 2003 +0000 - - Fix crashes with multiple windows open - - 2003-02-21 Marco Pesenti Gritti - - * lib/egg/egg-action.c: (egg_action_remove_proxy): - * lib/widgets/ephy-editable-toolbar.c: (get_item_widget), - (connect_item_drag_source), (disconnect_item_drag_source), - (setup_toolbar), (setup_item), (ensure_toolbar_min_size): - * lib/widgets/ephy-toolbars-group.c: (toolbars_toolbar_new), - (toolbars_item_new), (free_toolbar_node), (free_item_node), - (ephy_toolbars_group_to_string), (ephy_toolbars_group_get_path): - * lib/widgets/ephy-toolbars-group.h: - - Fix crashes with multiple windows open - - ChangeLog | 13 +++++++++++++ - lib/widgets/ephy-editable-toolbar.c | 38 ++++++++++++++++++++----------------- - lib/widgets/ephy-toolbars-group.c | 30 ++++++++++++++++++----------- - lib/widgets/ephy-toolbars-group.h | 4 ++-- - 4 files changed, 55 insertions(+), 30 deletions(-) - -commit 19499e453f3efa2208c9905058476d0b1fba68e3 -Author: Vincent van Adrighem -Date: Fri Feb 21 14:22:27 2003 +0000 - - Dutch translation updated. - - 2003-02-21 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++ - po/nl.po | 120 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 69 insertions(+), 55 deletions(-) - -commit 6c8e698f726899d3e4a128f69c8663730a5515b5 -Author: Pekka Lampila -Date: Fri Feb 21 13:54:32 2003 +0000 - - Free xml documents - - 2003-02-21 Pekka Lampila - - * lib/widgets/ephy-toolbars-group.c: (load_defaults), - (load_toolbar): - - Free xml documents - - ChangeLog | 7 +++++++ - lib/widgets/ephy-toolbars-group.c | 4 ++++ - 2 files changed, 11 insertions(+) - -commit a3d3dccb3b0320900696f6a2246b07afb28766ec -Author: Marco Pesenti Gritti -Date: Fri Feb 21 13:29:37 2003 +0000 - - Add lots of debug code to solve these damned crashes. Dont create multiple - - 2003-02-21 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: (find_action), - (impl_get_action), (ui_update), (queue_ui_update), - (drag_data_received_cb), (drag_data_delete_cb), (drag_data_get_cb), - (connect_item_drag_source), (disconnect_item_drag_source), - (setup_toolbar), (setup_item), (ensure_toolbar_min_size), - (do_merge), (ensure_action), (group_changed_cb), - (ephy_editable_toolbar_set_group), - (ephy_editable_toolbar_set_merge), (hide_editor), - (editor_close_cb), (editor_add_toolbar_cb), - (editor_drag_data_received_cb), (editor_drag_data_delete_cb), - (setup_editor), (add_to_list), (update_editor_sheet), - (update_editor_position), (button_press_cb), (show_editor), - (set_action_sensitive), (ephy_editable_toolbar_edit): - * lib/widgets/ephy-toolbars-group.c: (ephy_toolbars_group_to_xml), - (toolbars_group_save), (toolbars_item_new), (free_toolbar_node), - (free_item_node), (ephy_toolbars_group_add_item), - (ephy_toolbars_group_add_toolbar), (load_defaults), (load_toolbar), - (ephy_toolbars_group_to_string), - (ephy_toolbars_group_remove_toolbar), - (ephy_toolbars_group_remove_item), - (ephy_toolbars_group_set_source), (is_item_in_toolbars), - (ephy_toolbars_group_foreach_available), - (ephy_toolbars_group_foreach_toolbar), - (ephy_toolbars_group_foreach_item), (ephy_toolbars_group_get_path): - * src/toolbar.c: (toolbar_get_action): - - Add lots of debug code to solve these damned crashes. - Dont create multiple actions for the same bookmark. - There are two crashes that I can repro now. 1 Adding bookmarks - with more then one toolbar opened, and then open tbe. - 2 Add multiple "links" to the same bookmark and then close. - But I'm sure xan can find more ;) - - ChangeLog | 35 ++++++++++++++++ - lib/widgets/ephy-editable-toolbar.c | 81 ++++++++++++++++++++++++++++++++++++- - lib/widgets/ephy-toolbars-group.c | 51 ++++++++++++++++++++++- - src/toolbar.c | 15 +++---- - 4 files changed, 172 insertions(+), 10 deletions(-) - -commit 9a390a3125826aeb7f62bdac0b6c31c576f688be -Author: Marco Pesenti Gritti -Date: Fri Feb 21 00:02:04 2003 +0000 - - Fix another warning - - 2003-02-21 Marco Pesenti Gritti - - * lib/widgets/ephy-autocompletion-window.c: - (hack_tree_view_move_selection): - - Fix another warning - - ChangeLog | 7 +++++++ - lib/widgets/ephy-autocompletion-window.c | 2 +- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit a26946a39370cdf88882752aaf6deb40a97dabf1 -Author: Christophe Fergeau -Date: Thu Feb 20 20:56:31 2003 +0000 - - Fixed po file info - - 2003-02-20 Christophe Fergeau - - * fr.po: Fixed po file info - - po/ChangeLog | 4 + - po/fr.po | 7142 +++++++++++++++++++++++++++------------------------------- - 2 files changed, 3362 insertions(+), 3784 deletions(-) - -commit 56ab57c6dcca3c20911ec8ef78c34d6b89f86337 -Author: Christophe Fergeau -Date: Thu Feb 20 20:32:07 2003 +0000 - - added fr.po to ALL_LINGUAS - - 2003-02-20 Christophe Fergeau - - * configure.in: added fr.po to ALL_LINGUAS - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit 104edeee75e1808223e1bf57ab9686e3d53153d3 -Author: Christophe Fergeau -Date: Thu Feb 20 20:30:03 2003 +0000 - - Imported file from galeon, translate 75% of the strings, yay! - - 2003-02-20 Christophe Fergeau - - * fr.po: Imported file from galeon, translate 75% of - the strings, yay! - - po/ChangeLog | 5 + - po/fr.po | 8362 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 8367 insertions(+) - -commit 4c20b03469556b005030cdb741f3fea4b1175251 -Author: Marco Pesenti Gritti -Date: Thu Feb 20 17:42:01 2003 +0000 - - Update actions also on other windows - - 2003-02-20 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: (do_merge), (ensure_action), - (group_changed_cb): - - Update actions also on other windows - - ChangeLog | 7 +++++++ - lib/widgets/ephy-editable-toolbar.c | 17 ++++++++++++----- - 2 files changed, 19 insertions(+), 5 deletions(-) - -commit 147faa7b5aa35e676d97dfce0952695022b7a3a0 -Author: Xan Lopez -Date: Thu Feb 20 17:22:05 2003 +0000 - - History go to button. - - - History go to button. - - ChangeLog | 11 ++++++++++ - data/glade/epiphany.glade | 12 +++++++++++ - src/history-dialog.c | 53 ++++++++++++++++++++++++++++++++++++++++++++--- - 3 files changed, 73 insertions(+), 3 deletions(-) - -commit a923f76715c4cca404b318f5370b8098b4b0a83f -Author: Marco Pesenti Gritti -Date: Thu Feb 20 16:24:41 2003 +0000 - - Dont crash when dragging a new bookmark on the toolbar and then click - - 2003-02-20 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: (drag_data_received_cb): - * src/toolbar.c: (toolbar_get_action): - - Dont crash when dragging a new bookmark on the toolbar and - then click cancel. - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-editable-toolbar.c | 11 +++++++---- - src/toolbar.c | 11 ++++++++--- - 3 files changed, 23 insertions(+), 7 deletions(-) - -commit 443bb3dcad6c71a4d847091e5655d66e475742bd -Author: Marco Pesenti Gritti -Date: Thu Feb 20 15:47:25 2003 +0000 - - Fix this crazy bug with toolbar buttons doing two actions after having - - 2003-02-20 Marco Pesenti Gritti - - * lib/widgets/ephy-toolbars-group.c: - (ephy_toolbars_group_to_string), - (ephy_toolbars_group_remove_toolbar), - (ephy_toolbars_group_remove_item), (ephy_toolbars_group_get_path): - - Fix this crazy bug with toolbar buttons doing two actions after - having edited them. - Save toolbar editor also after removing items. - - ChangeLog | 11 +++++++++++ - lib/widgets/ephy-toolbars-group.c | 18 ++++++++++++------ - 2 files changed, 23 insertions(+), 6 deletions(-) - -commit aadbd414cacd3cd88c3e5fdded7dcf8387533b70 -Author: Christian Neumair -Date: Thu Feb 20 13:41:13 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 ++ - po/de.po | 139 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 82 insertions(+), 61 deletions(-) - -commit cbe9ef1b847ac3ffe97ac44f60c65613101cbb92 -Author: Marco Pesenti Gritti -Date: Thu Feb 20 11:07:18 2003 +0000 - - Activate the url when clicking on it from the combo dropdown. Based on - - 2003-02-20 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_list_event_after_cb), - (ephy_location_entry_editable_changed_cb): - - Activate the url when clicking on it from the combo dropdown. - Based on galeon patch. - - ChangeLog | 9 +++++++++ - lib/widgets/ephy-location-entry.c | 19 +++++++++++++++---- - 2 files changed, 24 insertions(+), 4 deletions(-) - -commit bc890e54e7b5a77829e3f97b855f921f09e5192a -Author: Marco Pesenti Gritti -Date: Thu Feb 20 10:09:06 2003 +0000 - - *** empty log message *** - - Makefile.am | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -commit f9dda954bf68cc76b8f3c35c23ef7689c0b654de -Author: Marco Pesenti Gritti -Date: Thu Feb 20 10:06:56 2003 +0000 - - add a COPYING.README for GPL - - 2003-02-20 Marco Pesenti Gritti - - * Makefile.am: - - add a COPYING.README for GPL - - COPYING.README | 8 ++++++++ - ChangeLog | 6 ++++++ - 2 files changed, 14 insertions(+) - -commit 6c451c4d52501fcc0a9c548214f03f237cfbcce6 -Author: James Willcox -Date: Wed Feb 19 23:26:35 2003 +0000 - - Added a note about data/art/loading.gif - - - - 2003-02-19 James Willcox - - * COPYING: Added a note about data/art/loading.gif - - COPYING | 5 +++++ - ChangeLog | 4 ++++ - 2 files changed, 9 insertions(+) - -commit 6d760fb1a90ca7d2adbe2bfd68a87eb1388b284a -Author: Marco Pesenti Gritti -Date: Wed Feb 19 16:57:03 2003 +0000 - - Avoid warnings when there is no match - - 2003-02-19 Marco Pesenti Gritti - - * lib/widgets/ephy-autocompletion-window.c: - (ephy_autocompletion_window_init_widgets), - (hack_tree_view_move_selection): - - Avoid warnings when there is no match - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-autocompletion-window.c | 16 ++++++++++------ - 2 files changed, 18 insertions(+), 6 deletions(-) - -commit dc85f85488cc9cf4ef1c665ec624a4a48ba27d65 -Author: Marco Pesenti Gritti -Date: Wed Feb 19 16:34:55 2003 +0000 - - Dont have a separate context menu for copy, just put it inside the - - 2003-02-19 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml.in: - * src/ephy-tab.c: (ephy_tab_show_embed_popup): - * src/ephy-window.c: - * src/popup-commands.c: - * src/window-commands.c: - - Dont have a separate context menu for copy, just - put it inside the document one - - ChangeLog | 11 +++++++++++ - data/ui/epiphany-ui.xml.in | 8 +++++--- - src/ephy-tab.c | 7 ------- - src/ephy-window.c | 2 -- - src/popup-commands.c | 15 --------------- - src/window-commands.c | 17 ----------------- - 6 files changed, 16 insertions(+), 44 deletions(-) - -commit 0d661cce429a4bd8bbe4e521d86cd862ecd067db -Author: Dave Bordoley -Date: Wed Feb 19 14:09:00 2003 +0000 - - data/ui/epiphany-bookmark-editor-ui.xml.in - - 2003-02-19 Dave Bordoley - - * data/ui/epiphany-bookmark-editor-ui.xml.in - * src/bookmarks/ephy-bookmarks-editor.c - Fix up the context menu to be more like other ephy - context menus, added mneumonics. - - ChangeLog | 7 +++++++ - data/ui/epiphany-bookmark-editor-ui.xml.in | 2 +- - src/bookmarks/ephy-bookmarks-editor.c | 10 +++++----- - 3 files changed, 13 insertions(+), 6 deletions(-) - -commit 262160918af0789a63a4b7bfd557d068e3d9ddb2 -Author: Vincent van Adrighem -Date: Tue Feb 18 11:37:49 2003 +0000 - - Dutch translation updated. - - 2003-02-18 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++ - po/nl.po | 123 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 67 insertions(+), 60 deletions(-) - -commit 543c928c71deab4b52f73cb3d8f972b048be8bf9 -Author: Abel Cheung -Date: Mon Feb 17 11:19:36 2003 +0000 - - New traditional Chinese translation. - - 2003-02-17 Abel Cheung - - * zh_TW.po: New traditional Chinese translation. - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/zh_TW.po | 2829 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2838 insertions(+), 1 deletion(-) - -commit 87fdfec206525bd8527349060c7720fd6635c5fc -Author: Dave Bordoley -Date: Sun Feb 16 15:41:27 2003 +0000 - - src/ephy-window.c Fix mneumonic collision between back and bookmarks. - - 2003-02-16 Dave Bordoley - - * src/ephy-window.c - Fix mneumonic collision between back and bookmarks. - - ChangeLog | 5 +++++ - src/ephy-window.c | 2 +- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit ac8a253194008f2c62de4d92dcbb0b5a663368b4 -Author: Dave Bordoley -Date: Sun Feb 16 05:49:54 2003 +0000 - - data/ui/epiphany-toolbar.xml.in data/ui/epiphany-ui.xml.in - - 2003-02-16 Dave Bordoley - - * data/ui/epiphany-toolbar.xml.in - * data/ui/epiphany-ui.xml.in - * src/ephy-window.c - * src/popup-commands.c - * src/popup-commands.h - * src/window-commands.c - * src/window-commands.h - s/browser/window as per conversation with seth... - - ChangeLog | 11 +++++++++++ - data/ui/epiphany-toolbar.xml.in | 2 +- - data/ui/epiphany-ui.xml.in | 14 +++++++------- - src/ephy-window.c | 24 ++++++++++++------------ - src/popup-commands.c | 6 +++--- - src/popup-commands.h | 6 +++--- - src/window-commands.c | 4 ++-- - src/window-commands.h | 4 ++-- - 8 files changed, 41 insertions(+), 30 deletions(-) - -commit 34ac853507e9f8527250df9ff7598e6b54e43f8d -Author: Marco Pesenti Gritti -Date: Sat Feb 15 21:29:07 2003 +0000 - - fix casting on big-endian, from galeon. - - 2003-02-15 Marco Pesenti Gritti - - * embed/mozilla/EventContext.cpp: - - fix casting on big-endian, from galeon. - - ChangeLog | 6 ++++++ - embed/mozilla/EventContext.cpp | 7 ++++++- - 2 files changed, 12 insertions(+), 1 deletion(-) - -commit 669cb390f319c44540df27839b8a628bcd54bc90 -Author: Vincent van Adrighem -Date: Sat Feb 15 21:24:06 2003 +0000 - - Dutch translation updated. - - 2003-02-15 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++ - po/nl.po | 152 +++++++++++++++++++++++++++++++++++++++++++---------------- - 2 files changed, 115 insertions(+), 41 deletions(-) - -commit 211ab5e5cd773d6a7453afb285c6c5978cb9ff7a -Author: Christian Neumair -Date: Sat Feb 15 19:44:57 2003 +0000 - - Updated German translation. - - po/de.po | 34 +++++++++++++++++----------------- - 1 file changed, 17 insertions(+), 17 deletions(-) - -commit 8cfabf3b9aa3dbeb7bc1fa5f97d05e08451fe29a -Author: Christian Neumair -Date: Sat Feb 15 16:42:31 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 ++++ - po/de.po | 12 ++++++------ - 2 files changed, 10 insertions(+), 6 deletions(-) - -commit e4f6db1134882e31c415fe2ab493d968cf155aa5 -Author: Christian Neumair -Date: Sat Feb 15 16:26:15 2003 +0000 - - Updated German translation. - - po/de.po | 230 ++++++++++++++++++++++++++++++++++++++------------------------- - 1 file changed, 140 insertions(+), 90 deletions(-) - -commit 22e63760412a7fc434dff68ea8c4347b1cd13c9c -Author: Marco Pesenti Gritti -Date: Sat Feb 15 10:08:03 2003 +0000 - - *** empty log message *** - - data/glade/epiphany.glade | 3 +- - data/ui/epiphany-ui.xml.in | 2 - - embed/find-dialog.c | 97 ++++++++++++++++++++++------------------------ - 3 files changed, 47 insertions(+), 55 deletions(-) - -commit c6797825d807211a8d0c187bf2c299aabb1becef -Author: Marco Pesenti Gritti -Date: Sat Feb 15 10:02:34 2003 +0000 - - Implement a selected text context menu. - - 2003-02-15 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml.in: - * src/ephy-tab.c: (ephy_tab_show_embed_popup): - - Implement a selected text context menu. - - ChangeLog | 7 +++++++ - data/ui/epiphany-ui.xml.in | 8 ++++++-- - src/ephy-tab.c | 12 +++++++++++- - 3 files changed, 24 insertions(+), 3 deletions(-) - -commit 77f221609143e50d1fb260b892aba1ebaedb74d3 -Author: Marco Pesenti Gritti -Date: Sat Feb 15 09:16:11 2003 +0000 - - Port some galeon fixes - - 2003-02-15 Marco Pesenti Gritti - - * embed/find-dialog.c: (find_get_info), (impl_show), - (find_dialog_go_prev): - - Port some galeon fixes - - ChangeLog | 16 ++++++++++++---- - 1 file changed, 12 insertions(+), 4 deletions(-) - -commit 7207a1355f44aff105a424e30be95d34bf4fe072 -Author: Dave Bordoley -Date: Sat Feb 15 07:48:48 2003 +0000 - - src/ephy-window.c src/window-commands.c src/window-commands.h - - 2003-02-15 Dave Bordoley - - * src/ephy-window.c - * src/window-commands.c - * src/window-commands.h - * data/ui/epiphany-ui.xml.in - Added Help->Contents - Move reload and stop to bottom of view menu - Fix mneumonic collision in the go menu - - ChangeLog | 10 ++++++++++ - data/ui/epiphany-ui.xml.in | 13 +++++++------ - src/ephy-window.c | 5 ++++- - src/window-commands.c | 7 +++++++ - src/window-commands.h | 3 +++ - 5 files changed, 31 insertions(+), 7 deletions(-) - -commit 853e7df8135a9a57071e3b0122e4dbf29e447dc9 -Author: James Willcox -Date: Fri Feb 14 18:52:57 2003 +0000 - - Add tab load notification (a little spinning icon), and a context menu for - - - - 2003-02-14 James Willcox - - * data/art/Makefile.am: - * data/ui/Makefile.am: - * lib/widgets/ephy-notebook.c: (ephy_notebook_init), - (ephy_notebook_set_page_status), (tab_build_label): - * src/bookmarks/ephy-bookmarks-editor.c: - (popup_cmd_open_bookmarks_in_tabs), - (popup_cmd_open_bookmarks_in_browser), - (popup_cmd_remove_bookmarks), (ephy_bookmarks_editor_finalize), - (ephy_bookmarks_editor_show_popup_cb), - (ephy_bookmarks_editor_construct): - - Add tab load notification (a little spinning icon), and a context - menu for the bookmarks editor. - - ChangeLog | 16 ++++ - data/art/Makefile.am | 3 +- - data/art/epiphany-tab-loading.gif | Bin 0 -> 288 bytes - data/ui/Makefile.am | 1 + - data/ui/epiphany-bookmark-editor-ui.xml.in | 13 +++ - lib/widgets/ephy-notebook.c | 44 +++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 137 +++++++++++++++++++++++++++++ - 7 files changed, 213 insertions(+), 1 deletion(-) - -commit 49db412621481e87b3b5d882320e533a290eaa62 -Author: Dave Bordoley -Date: Fri Feb 14 17:35:52 2003 +0000 - - data/ui/epiphany-toolbar.xml.in s/FileAddBookmark/FileBookmarkPage so that - - 2003-02-14 Dave Bordoley - - * data/ui/epiphany-toolbar.xml.in - s/FileAddBookmark/FileBookmarkPage so that - the toolbar editor doesn't crash. - - ChangeLog | 6 ++++++ - data/ui/epiphany-toolbar.xml.in | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 1b0346316f0267219a4318be47b9ca2b0b8e3e8c -Author: Pablo Gonzalo del Campo -Date: Fri Feb 14 16:24:09 2003 +0000 - - Updated Spanish translation by Javier Fernandez - - 2003-02-14 Pablo Gonzalo del Campo - - * es.po: Updated Spanish translation by - Javier Fernandez - - po/ChangeLog | 5 + - po/es.po | 1717 ++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 953 insertions(+), 769 deletions(-) - -commit 737468b377c209b6c479a14b7dae7a6342ce8094 -Author: Dave Bordoley -Date: Fri Feb 14 15:18:26 2003 +0000 - - data/ui/epiphany-ui.xml.in Added some separators. Changed "bookmark" verbs - - - - * data/ui/epiphany-ui.xml.in - Added some separators. - Changed "bookmark" verbs and menu names to reflect changes - in src/ephy-window.c - - * src/ephy-window.c - Added a bunch of mneumonics to context menu entries - s/Add Bookmark.../Bookmark Page... for pages. - s/Add Bookmark.../Bookmark Link... for links. - Changed callbacks in ephy_menu_entries[] and ephy_popups_entries - to reflect changes in src/window-commands.(ch) and src/pop-commands.(ch). - - * src/popup-commands.c - * src/popup-commands.h - s/popup_cmd_link_in_new_window/popup_cmd_link_in_new_browser - s/popup_cmd_image_in_new_window/popup_cmd_image_in_new_browser - s/popup_cmd_add_link_bookmark/void popup_cmd_bookmark_link - s/void popup_cmd_frame_in_new_window/void popup_cmd_frame_in_new_browser - - * src/window-commands.c - * src/window-commands.h - s/window_cmd_file_new_window/window_cmd_file_new_browser - s/window_cmd_file_add_bookmark/window_cmd_file_bookmark_page - - * lib/ephy-stock-icons.h - Fixed #endif comment s/RB/EPHY - - ChangeLog | 29 +++++++++++++++++++++++++++ - data/ui/epiphany-ui.xml.in | 16 +++++++++------ - lib/ephy-stock-icons.h | 2 +- - src/ephy-window.c | 50 +++++++++++++++++++++++----------------------- - src/popup-commands.c | 8 ++++---- - src/popup-commands.h | 8 ++++---- - src/window-commands.c | 4 ++-- - src/window-commands.h | 4 ++-- - 8 files changed, 77 insertions(+), 44 deletions(-) - -commit a1396baa264c3e382daee684bb351726ae0571c5 -Author: Marco Pesenti Gritti -Date: Fri Feb 14 12:32:05 2003 +0000 - - + 2003-02-13 Lee Willis - + - + * src/session.c: Fix session saving - + - - ChangeLog | 4 ++++ - src/session.c | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit f75468c2a1c114c4790ee7084e65f26e6dbd5020 -Author: Dave Bordoley -Date: Fri Feb 14 04:25:38 2003 +0000 - - *** empty log message *** - - ChangeLog | 5 +++++ - src/ephy-window.c | 2 +- - 2 files changed, 6 insertions(+), 1 deletion(-) - -commit 63bcb49e9b32d7b9be1e58ee99a9f2dd2b60b5f4 -Author: Xan Lopez -Date: Thu Feb 13 17:16:12 2003 +0000 - - Make "Go to" button insensitive when no bookmark is selected. - - - Make "Go to" button insensitive when no bookmark is selected. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 11 ++++++++++- - 2 files changed, 18 insertions(+), 1 deletion(-) - -commit b4fa5f3fcf81f4cdfb570314069640611b618a8a -Author: James Willcox -Date: Thu Feb 13 17:11:06 2003 +0000 - - Fix a heap corruption bug that was causing bad stuff when smart bookmarks - - - - 2003-02-12 James Willcox - - * src/bookmarks/ephy-bookmark-action.c: (entry_activated_cb): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_solve_smart_url): - - Fix a heap corruption bug that was causing bad stuff when smart - bookmarks were used from the toolbar. Fixes #105180 - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmark-action.c | 1 - - src/bookmarks/ephy-bookmarks.c | 3 +-- - 3 files changed, 9 insertions(+), 3 deletions(-) - -commit 52592b0c39f41b4b22a97bf56f16b9d28a1c7b01 -Author: Vincent van Adrighem -Date: Thu Feb 13 13:45:58 2003 +0000 - - Dutch translation updated. - - 2003-02-13 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 3269 ++++++++-------------------------------------------------- - 2 files changed, 426 insertions(+), 2847 deletions(-) - -commit 10d8862013fc3cd9cadcbc08aede899729e9f1d2 -Author: Kenneth Christiansen -Date: Thu Feb 13 00:51:19 2003 +0000 - - update - - po/da.po | 1842 +++++++++++++++++++++++++++++++++----------------------------- - 1 file changed, 986 insertions(+), 856 deletions(-) - -commit 008fa0294df03b23a47716277d42a386396f9b25 -Author: Marco Pesenti Gritti -Date: Wed Feb 12 22:33:29 2003 +0000 - - Use g_string_free in the correct way - - 2003-02-12 Marco Pesenti Gritti - - * lib/widgets/ephy-ellipsizing-label.c: (ellipsize_string): - * lib/widgets/ephy-toolbars-group.c: - (ephy_toolbars_group_to_string): - - Use g_string_free in the correct way - - ChangeLog | 8 ++++++++ - lib/widgets/ephy-ellipsizing-label.c | 4 ++-- - lib/widgets/ephy-toolbars-group.c | 4 +--- - 3 files changed, 11 insertions(+), 5 deletions(-) - -commit f2928d9a3b8411a189c6ba9523c20890b0772791 -Author: Marco Pesenti Gritti -Date: Wed Feb 12 20:39:55 2003 +0000 - - Fix default size, remove some unnecessary spaces - - 2003-02-12 Marco Pesenti Gritti - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_dispose), - (ephy_bookmarks_editor_node_selected_cb), - (ephy_bookmarks_editor_go_to_location), - (ephy_bookmarks_editor_construct): - - Fix default size, remove some unnecessary spaces - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 12 ++++++------ - 2 files changed, 16 insertions(+), 6 deletions(-) - -commit c8d58f062a15c0a42bdaf359449cfdf8c6c8afd8 -Author: Xan Lopez -Date: Wed Feb 12 19:52:35 2003 +0000 - - Add "Go to" button to the BE. - - - Add "Go to" button to the BE. - - ChangeLog | 10 ++++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 37 +++++++++++++++++++++++++++++++---- - 2 files changed, 43 insertions(+), 4 deletions(-) - -commit cec20e1993813177828726bddd2ffa4e112ba0ad -Author: Marco Pesenti Gritti -Date: Wed Feb 12 19:22:05 2003 +0000 - - Fix capitalization - - - 2003-02-12 Marco Pesenti Gritti - - * data/ui/nautilus-epiphany-view.xml.in: - - Fix capitalization - - ChangeLog | 6 ++++++ - data/ui/nautilus-epiphany-view.xml.in | 4 ++-- - 2 files changed, 8 insertions(+), 2 deletions(-) - -commit 764f52e639805fe04fc9efbb1a398160fd424e5f -Author: Marco Pesenti Gritti -Date: Wed Feb 12 19:21:00 2003 +0000 - - *** empty log message *** - - ChangeLog | 44 +++ - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-editable-toolbar.c | 686 +++++++++------------------------- - lib/widgets/ephy-toolbars-group.c | 180 +++++++-- - lib/widgets/ephy-toolbars-group.h | 29 +- - src/bookmarks/ephy-bookmarks-editor.c | 6 +- - src/bookmarks/ephy-bookmarks.c | 134 ++----- - src/ephy-window.c | 2 +- - src/toolbar.c | 17 + - 9 files changed, 461 insertions(+), 639 deletions(-) - -commit 87dacf48f3b15b9cef564af8a82b05f4a0b236d9 -Author: Christian Neumair -Date: Wed Feb 12 13:42:51 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 316 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 167 insertions(+), 153 deletions(-) - -commit c24243f0891977fd37ab4a19ecbbd87db01a9c59 -Author: James Willcox -Date: Mon Feb 10 23:24:41 2003 +0000 - - Make the bookmarks editor properly select the "All" keyword if it was the - - - - 2003-02-10 James Willcox - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_dispose): - - Make the bookmarks editor properly select the "All" keyword if - it was the last keyword selected. - - ChangeLog | 8 ++++++++ - src/bookmarks/ephy-bookmarks-editor.c | 2 +- - 2 files changed, 9 insertions(+), 1 deletion(-) - -commit c4464cadae6923fc42bfa205e5c701cf5eb0277d -Author: Marco Pesenti Gritti -Date: Mon Feb 10 22:13:02 2003 +0000 - - *** empty log message *** - - ChangeLog | 19 ++ - lib/widgets/ephy-toolbars-group.c | 470 ++++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-toolbars-group.h | 96 ++++++++ - 3 files changed, 585 insertions(+) - -commit 8dbf2a4cd47e215ffbe9a673920622181db920b3 -Author: Fatih Demir -Date: Mon Feb 10 21:37:09 2003 +0000 - - Added Turkish translation by Ercin - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/tr.po | 2943 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2952 insertions(+), 1 deletion(-) - -commit 675475904f7a7005847bd10576cac278ccd84b2c -Author: Xan Lopez -Date: Mon Feb 10 21:34:47 2003 +0000 - - Remove Location field from BE bookmarks view, add a location entry - - - Remove Location field from BE bookmarks view, add a location - entry instead. - - ChangeLog | 9 ++++++ - src/bookmarks/ephy-bookmarks-editor.c | 53 ++++++++++++++++++++++++++++------- - src/bookmarks/ephy-tree-model-node.c | 7 ----- - src/bookmarks/ephy-tree-model-node.h | 1 - - 4 files changed, 52 insertions(+), 18 deletions(-) - -commit 78b2fbc125502918e9e614e3ee3dad5947e0a68e -Author: Marco Pesenti Gritti -Date: Sun Feb 9 22:57:48 2003 +0000 - - Have just one Close menu item and make it behave like other gnome apps. - - 2003-02-09 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml.in: - * src/ephy-window.c: - * src/window-commands.c: (window_cmd_file_close_browser): - * src/window-commands.h: - - Have just one Close menu item and make it behave like - other gnome apps. - - ChangeLog | 7 +++++++ - src/ephy-nautilus-view.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 32b7e2915272d770df992ce41cea961d2180953f -Author: Marco Pesenti Gritti -Date: Sun Feb 9 21:32:17 2003 +0000 - - Have just one Close menu item and make it behave like other gnome apps. - - 2003-02-09 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml.in: - * src/ephy-window.c: - * src/window-commands.c: (window_cmd_file_close_browser): - * src/window-commands.h: - - Have just one Close menu item and make it behave like - other gnome apps. - - ChangeLog | 10 ++++++++++ - data/ui/epiphany-ui.xml.in | 1 - - src/ephy-window.c | 5 +---- - src/window-commands.c | 11 ++--------- - src/window-commands.h | 7 ++----- - 5 files changed, 15 insertions(+), 19 deletions(-) - -commit a00d43743474c70d5919f04fd4dd9488e6050fd7 -Author: Marco Pesenti Gritti -Date: Sun Feb 9 16:14:18 2003 +0000 - - Make nautilus view actually work - - 2003-02-09 Marco Pesenti Gritti - - * acconfig.h: - * configure.in: - * data/GNOME_Epiphany_NautilusView.server.in: - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init): - * src/ephy-shell.c: - - Make nautilus view actually work - - ChangeLog | 10 ++++++++++ - acconfig.h | 1 + - configure.in | 2 +- - data/GNOME_Epiphany_NautilusView.server.in | 6 +++--- - src/ephy-nautilus-view.c | 2 +- - src/ephy-shell.c | 6 +++++- - 6 files changed, 21 insertions(+), 6 deletions(-) - -commit f985873341b39d28cb7e0f594bd32922aa9b1f64 -Author: Daniel Yacob -Date: Sun Feb 9 12:45:49 2003 +0000 - - Updating Amharic translation. - - po/ChangeLog | 4 +++ - po/am.po | 109 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 63 insertions(+), 50 deletions(-) - -commit dfcb8831f38257733af1d23753487e9041ea5f06 -Author: Marco Pesenti Gritti -Date: Sat Feb 8 19:41:22 2003 +0000 - - Some more gtk_timeout_add. - - 2003-02-08 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_autocompletion_sources_changed_cb): - - Some more gtk_timeout_add. - - ChangeLog | 7 +++++++ - lib/widgets/ephy-location-entry.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 2f4619f7a19aa79016051d82c060aaf53ef719c1 -Author: Christian Meyer -Date: Sat Feb 8 19:38:38 2003 +0000 - - Changed GtkType to GType. - - ChangeLog | 20 ++++++++++++++++++++ - lib/egg/egg-accel-dialog.c | 2 +- - lib/egg/egg-action.c | 2 +- - lib/egg/egg-menu-merge.c | 2 +- - lib/egg/egg-radio-action.c | 2 +- - lib/egg/egg-toggle-action.c | 2 +- - lib/egg/eggtoolbar.c | 2 +- - lib/egg/eggtoolbutton.c | 2 +- - lib/egg/eggtoolitem.c | 2 +- - lib/widgets/ephy-ellipsizing-label.h | 2 +- - lib/widgets/ephy-spinner.h | 2 +- - src/bookmarks/ephy-bookmark-action.c | 2 +- - src/ephy-favicon-action.c | 2 +- - src/ephy-location-action.c | 2 +- - src/ephy-navigation-action.c | 2 +- - src/ephy-spinner-action.c | 2 +- - 16 files changed, 35 insertions(+), 15 deletions(-) - -commit 887537b93f80cd1c0ca81f5a4a42d4373c27d0ba -Author: Marco Pesenti Gritti -Date: Sat Feb 8 19:23:43 2003 +0000 - - Remove gtk_timeout_x calls. Hope I got all of them. - - 2003-02-08 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_key_press_event_cb): - * lib/widgets/ephy-spinner.c: (ephy_spinner_start), - (ephy_spinner_remove_update_callback): - - Remove gtk_timeout_x calls. Hope I got all of them. - - ChangeLog | 9 +++++++++ - lib/widgets/ephy-location-entry.c | 4 ++-- - lib/widgets/ephy-spinner.c | 10 +++++----- - 3 files changed, 16 insertions(+), 7 deletions(-) - -commit f465875a69cf6efa9d73011dfc88e6998ebcff8e -Author: Xan Lopez -Date: Sat Feb 8 18:25:14 2003 +0000 - - Error handling in moz bookmarks import. - - - Error handling in moz bookmarks import. - - ChangeLog | 6 ++++++ - src/ephy-shell.c | 26 ++++++++++++++++++-------- - 2 files changed, 24 insertions(+), 8 deletions(-) - -commit d826f10b86f32327bd63eefe243499be39cef6c9 -Author: Xan Lopez -Date: Sat Feb 8 18:06:53 2003 +0000 - - Fix mozilla bookmarks import. - - - Fix mozilla bookmarks import. - - ChangeLog | 6 ++++++ - embed/mozilla/StartHereProtocolHandler.cpp | 2 +- - 2 files changed, 7 insertions(+), 1 deletion(-) - -commit 410c67efe41f21a3c96add5026eb75403e9f20a1 -Author: Daniel Yacob -Date: Sat Feb 8 15:58:01 2003 +0000 - - Updating Amharic translation. - - po/ChangeLog | 4 +++ - po/am.po | 79 +++++++++++++++++++++++++++++++++++++++++------------------- - 2 files changed, 58 insertions(+), 25 deletions(-) - -commit 4fd28730cad515f8956d550aa0e67d3265751520 -Author: Christian Neumair -Date: Sat Feb 8 14:08:25 2003 +0000 - - Don't mark the bookmarks-import paragraph in data/starthere/index.xml.in for translation as it just contains a tag. - - ChangeLog | 5 +++++ - data/starthere/index.xml.in | 4 ++-- - 2 files changed, 7 insertions(+), 2 deletions(-) - -commit 161c9b511dce174be1654400ac2f116d64a32747 -Author: Marco Pesenti Gritti -Date: Sat Feb 8 12:53:15 2003 +0000 - - Fix some i18n problems - - 2003-02-08 Marco Pesenti Gritti - - * data/starthere/index.xml.in: - - Fix some i18n problems - - * src/ephy-spinner-action.c: (item_parent_set_cb), (connect_proxy): - - Use connect object to avoid signals on dead widgets. - - ChangeLog | 10 ++++++++++ - data/starthere/index.xml.in | 17 +++++++++++------ - src/ephy-spinner-action.c | 12 ++++++------ - 3 files changed, 27 insertions(+), 12 deletions(-) - -commit fd8fbb88aca38f094ef80e223abfa17e8505e624 -Author: Marco Pesenti Gritti -Date: Sat Feb 8 11:23:32 2003 +0000 - - Add a go button to the toolbar editor. The icon is duped with default - - 2003-02-08 Marco Pesenti Gritti - - * data/ui/epiphany-toolbar.xml.in: - * lib/widgets/ephy-editable-toolbar.c: (add_action): - * src/ephy-window.c: - * src/window-commands.c: (window_cmd_load_location): - * src/window-commands.h: - - Add a go button to the toolbar editor. The icon is duped - with default favicon. Would be nice to find something better - for one of them (I'm not sure if the concept of jump to is good - for favicon actually). - - Rename FileNewWindow to FileNewBrowser also in toolbar configuration - file. - - ChangeLog | 16 ++++++++++++++++ - data/ui/epiphany-toolbar.xml.in | 3 ++- - lib/widgets/ephy-editable-toolbar.c | 2 ++ - src/ephy-window.c | 5 +++++ - src/window-commands.c | 19 +++++++++++++++++++ - src/window-commands.h | 3 +++ - 6 files changed, 47 insertions(+), 1 deletion(-) - -commit 9731a68ae462cf67c4857d142c060b16d0d2db53 -Author: Christian Neumair -Date: Sat Feb 8 09:26:12 2003 +0000 - - Updated German translation. - - po/ChangeLog | 6 +++- - po/de.po | 91 +++++++++++++++++++++++++++++++++++++++--------------------- - 2 files changed, 64 insertions(+), 33 deletions(-) - -commit 9d4d228fb605633ad54f9935bc3905fb16e50677 -Author: Marco Pesenti Gritti -Date: Sat Feb 8 00:07:31 2003 +0000 - - Better toolbar appeareance. More clear buttons labels on resume dialog. - - 2003-02-08 Marco Pesenti Gritti - - * lib/egg/eggtoolbar.c: (egg_toolbar_init): - * src/session.c: (crashed_resume_dialog): - - Better toolbar appeareance. More clear - buttons labels on resume dialog. - - ChangeLog | 8 ++++++++ - lib/egg/eggtoolbar.c | 4 +--- - src/session.c | 3 ++- - 3 files changed, 11 insertions(+), 4 deletions(-) - -commit 07f599e4b4e2ec6e9e9636d6efd8083a1217a97c -Author: James Willcox -Date: Fri Feb 7 23:53:10 2003 +0000 - - Make the bookmarks editor not crash-on-close if no keyword is selected. - - - - 2003-02-07 James Willcox - - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_dispose): - - Make the bookmarks editor not crash-on-close if no keyword is selected. - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-editor.c | 7 +++++++ - 2 files changed, 14 insertions(+) - -commit d83af56f155c5a4420f06dda714436dd38ef3550 -Author: Daniel Yacob -Date: Fri Feb 7 23:00:36 2003 +0000 - - Updating Amharic translation. - - po/ChangeLog | 4 + - po/am.po | 640 +++++++++++++++++++++++++++++++++-------------------------- - 2 files changed, 359 insertions(+), 285 deletions(-) - -commit 4221c99c10801fcac73e6840ccab21d15090fe34 -Author: Marco Pesenti Gritti -Date: Fri Feb 7 20:43:07 2003 +0000 - - *** empty log message *** - - data/ui/epiphany-ui.xml.in | 18 +++++++++--------- - src/ephy-window.c | 18 +++++++++--------- - 2 files changed, 18 insertions(+), 18 deletions(-) - -commit 6ed666f2b6ecc7a50c19c03cdf98a5b953f14660 -Author: Marco Pesenti Gritti -Date: Fri Feb 7 20:41:55 2003 +0000 - - Spinner dont overlap toolbar shadow - - 2003-02-07 Marco Pesenti Gritti - - * lib/egg/eggtoolbar.c: (egg_toolbar_init): - * lib/widgets/ephy-spinner.c: (ephy_spinner_expose), - (ephy_spinner_size_request): - - Spinner dont overlap toolbar shadow - - ChangeLog | 17 +++++++++++++++++ - lib/egg/eggtoolbar.c | 2 ++ - lib/widgets/ephy-spinner.c | 4 +--- - 3 files changed, 20 insertions(+), 3 deletions(-) - -commit f0678b1e01d7fea1ebd13b010084dbb18ecebe7d -Author: Xan Lopez -Date: Fri Feb 7 20:32:43 2003 +0000 - - Fix two memleaks (I hope). - - - Fix two memleaks (I hope). - - ChangeLog | 7 +++++++ - lib/widgets/ephy-spinner.c | 1 + - src/ephy-encoding-menu.c | 2 +- - 3 files changed, 9 insertions(+), 1 deletion(-) - -commit 1d8988f4d183bc8481a1ed6d10ca8d0d976266bd -Author: James Willcox -Date: Thu Feb 6 22:32:01 2003 +0000 - - Make the bookmarks editor remember the last selected keyword, and make - - - - 2003-02-06 James Willcox - - * data/epiphany.schemas.in: - * lib/ephy-prefs.h: - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_class_init), - (ephy_bookmarks_editor_dispose), (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-node-view.c: (ephy_node_view_select_node): - * src/ephy-main.c: (ephy_main_start): - - Make the bookmarks editor remember the last selected keyword, and - make startup-notification not hang when using the existing instance. - - ChangeLog | 13 ++++++++ - TODO | 2 +- - data/epiphany.schemas.in | 9 ++++++ - lib/ephy-prefs.h | 1 + - src/bookmarks/ephy-bookmarks-editor.c | 58 +++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-node-view.c | 6 +++- - src/ephy-main.c | 2 ++ - 7 files changed, 89 insertions(+), 2 deletions(-) - -commit cf749bea95aaede12db0475b9205f79fdc227765 -Author: Marco Pesenti Gritti -Date: Thu Feb 6 21:24:38 2003 +0000 - - *** empty log message *** - - TODO | 7 +++---- - 1 file changed, 3 insertions(+), 4 deletions(-) - -commit 27bdb80c00c3648be780bb53f47e7885749613e7 -Author: Marco Pesenti Gritti -Date: Thu Feb 6 14:58:30 2003 +0000 - - Do not use a button for spinner. Correctly update spinner size for toolbar - - 2003-02-06 Marco Pesenti Gritti - - * lib/widgets/ephy-spinner.c: (ephy_spinner_expose), - (ephy_spinner_class_init): - * src/ephy-spinner-action.c: (create_tool_item), - (toolbar_style_sync), (item_parent_set_cb), (connect_proxy): - - Do not use a button for spinner. - Correctly update spinner size for toolbar style. - - ChangeLog | 10 +++ - lib/widgets/ephy-spinner.c | 214 +-------------------------------------------- - src/ephy-spinner-action.c | 47 ++++++++-- - 3 files changed, 50 insertions(+), 221 deletions(-) - -commit eb7eaf060f2a2b08d80b50a103919ea3c1012a00 -Author: Christian Neumair -Date: Thu Feb 6 13:43:25 2003 +0000 - - Removed non-ui libegg files and added them to ~.skip. Readded, definitly - - * POTFILES.in: Removed non-ui libegg files and added them to - ~.skip. - * POTFILES.skip: Readded, definitly needs to be present! - * de.po: Updated German translation. - - po/ChangeLog | 6 + - po/POTFILES.in | 6 - - po/POTFILES.skip | 8 + - po/de.po | 742 +++++++++++++++++++++++++++++++------------------------ - 4 files changed, 435 insertions(+), 327 deletions(-) - -commit 415411682db49f95b121d27e94d3918445d391bf -Author: Marco Pesenti Gritti -Date: Thu Feb 6 11:18:05 2003 +0000 - - Clear also location history when clearing history. Doesnt update - - 2003-02-06 Marco Pesenti Gritti - - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_clear_history): - * lib/widgets/ephy-location-entry.h: - * src/history-dialog.c: (history_clear_button_clicked_cb): - * src/toolbar.c: (toolbar_clear_location_history): - * src/toolbar.h: - - Clear also location history when clearing history. - Doesnt update immediately, gtk/gnome bug, will submit - patches. - - ChangeLog | 13 +++++++++++++ - lib/widgets/ephy-location-entry.c | 6 ++++++ - lib/widgets/ephy-location-entry.h | 1 + - src/history-dialog.c | 15 +++++++++++++++ - src/toolbar.c | 15 +++++++++++++++ - src/toolbar.h | 2 ++ - 6 files changed, 52 insertions(+) - -commit 22b5564396f1f0bb07ec810e3238697edf62564e -Author: James Willcox -Date: Thu Feb 6 04:12:00 2003 +0000 - - Make importing actually work properly. *cough* - - - - 2003-02-05 James Willcox - - * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_folder), - (xbel_parse_bookmarks): - - Make importing actually work properly. *cough* - - ChangeLog | 7 +++++++ - src/bookmarks/ephy-bookmarks-import.c | 19 ++----------------- - 2 files changed, 9 insertions(+), 17 deletions(-) - -commit a5db253e80f45304855e99c98447aa76f86b648c -Author: Abel Cheung -Date: Thu Feb 6 03:46:20 2003 +0000 - - Removed. No need to present. Sorted, removed non-existant file and add new - - 2003-02-06 Abel Cheung - - * POTFILES.skip: Removed. No need to present. - * POTFILES.in: Sorted, removed non-existant file and add new one. - - po/ChangeLog | 5 +++++ - po/POTFILES.in | 24 ++++++++++++------------ - po/POTFILES.skip | 3 --- - 3 files changed, 17 insertions(+), 15 deletions(-) - -commit 5a4dc61b3d5599842daef9004cb4a61c28c4dffa -Author: James Willcox -Date: Thu Feb 6 01:55:50 2003 +0000 - - Added the ability to import galeon and konqueror bookmarks. - - - - 2003-02-05 James Willcox - - * data/starthere/section.xsl: - * embed/mozilla/StartHereProtocolHandler.cpp: - * lib/ephy-start-here.c: (galeon_bookmarks), (attach_content): - * src/bookmarks/ephy-bookmarks-import.c: - (xbel_parse_single_bookmark), (xbel_parse_folder), - (xbel_parse_bookmarks), (ephy_bookmarks_import_mozilla), - (ephy_bookmarks_import_xbel): - * src/bookmarks/ephy-bookmarks-import.h: - * src/ephy-shell.c: (ephy_shell_command_cb): - - Added the ability to import galeon and konqueror bookmarks. - - ChangeLog | 14 +++ - data/starthere/section.xsl | 2 +- - embed/mozilla/StartHereProtocolHandler.cpp | 18 +++- - lib/ephy-start-here.c | 66 +++++++++++- - src/bookmarks/ephy-bookmarks-import.c | 168 +++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks-import.h | 4 + - src/ephy-shell.c | 50 ++++++++- - 7 files changed, 316 insertions(+), 6 deletions(-) - -commit 2f1334d2b432eec9ed13d64ac350beeeea43b49f -Author: Marco Pesenti Gritti -Date: Wed Feb 5 22:38:31 2003 +0000 - - Fix #105184 - - 2003-02-05 Marco Pesenti Gritti - - * embed/mozilla/PromptService.cpp: - - Fix #105184 - - ChangeLog | 6 ++++++ - embed/mozilla/PromptService.cpp | 27 ++++++++++++++++----------- - 2 files changed, 22 insertions(+), 11 deletions(-) - -commit 7e908772c6a1050721a0a8ed4f4d1a0416277bbd -Author: Marco Pesenti Gritti -Date: Wed Feb 5 20:29:48 2003 +0000 - - Split mozilla related calls out of EmbedShell. Load default mozilla prefs - - 2003-02-05 Marco Pesenti Gritti - - * embed/Makefile.am: - * embed/ephy-embed-event.h: - * embed/ephy-embed-shell.c: (ephy_embed_shell_init), - (ephy_embed_shell_finalize), (ephy_embed_shell_new), - (ephy_embed_shell_get_embed_single), (impl_get_downloader_view): - * embed/ephy-embed-shell.h: - * embed/ephy-embed-utils.c: (ephy_embed_utils_save), - (ephy_embed_utils_build_charsets_submenu): - * embed/ephy-embed.c: (ephy_embed_new): - * embed/ephy-embed.h: - * embed/mozilla/ContentHandler.h: - * embed/mozilla/EventContext.cpp: - * embed/mozilla/GlobalHistory.cpp: - * embed/mozilla/Makefile.am: - * embed/mozilla/MozRegisterComponents.cpp: - * embed/mozilla/PromptService.cpp: - * embed/mozilla/mozilla-notifiers.cpp: - * embed/mozilla/mozilla-notifiers.h: - * embed/mozilla/mozilla-prefs.cpp: - * embed/mozilla/mozilla-prefs.h: - * src/appearance-prefs.c: (setup_font_menu): - * src/ephy-encoding-menu.c: (ephy_encoding_menu_rebuild): - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init): - * src/ephy-shell.c: (ephy_shell_get_type), (ephy_shell_init): - * src/ephy-tab.c: (ephy_tab_init): - * src/general-prefs.c: (default_charset_menu_changed_cb), - (create_default_charset_menu): - * src/pdm-dialog.c: (pdm_dialog_cookie_remove), - (pdm_dialog_password_remove), (pdm_dialog_cookies_free), - (pdm_dialog_passwords_free), (pdm_dialog_init): - * src/prefs-dialog.c: (prefs_clear_memory_cache_button_clicked_cb), - (prefs_clear_disk_cache_button_clicked_cb): - * src/window-commands.c: (window_cmd_file_open): - - Split mozilla related calls out of EmbedShell. - Load default mozilla prefs from a .js file. - Disable stupid useless security dialogs. - Fix chechbox alert to have Ok as default action. - - ChangeLog | 49 +++++++ - embed/ephy-embed-single.c | 292 +++++++++++++++++++++++++++++++++++++++++ - embed/ephy-embed-single.h | 226 +++++++++++++++++++++++++++++++ - embed/mozilla/default-prefs.js | 24 ++++ - 4 files changed, 591 insertions(+) - -commit 768eae4a4874a7fe0eada98423f61d84f6416bde -Author: Marco Pesenti Gritti -Date: Wed Feb 5 20:28:09 2003 +0000 - - *** empty log message *** - - embed/Makefile.am | 2 + - embed/ephy-embed-event.h | 1 - - embed/ephy-embed-shell.c | 196 +----- - embed/ephy-embed-shell.h | 186 +----- - embed/ephy-embed-utils.c | 28 +- - embed/ephy-embed.c | 6 +- - embed/ephy-embed.h | 2 +- - embed/mozilla/ContentHandler.h | 2 +- - embed/mozilla/EventContext.cpp | 4 - - embed/mozilla/GlobalHistory.cpp | 2 +- - embed/mozilla/Makefile.am | 13 +- - embed/mozilla/MozRegisterComponents.cpp | 24 - - embed/mozilla/PromptService.cpp | 1 + - embed/mozilla/mozilla-embed-shell.cpp | 1000 ------------------------------- - embed/mozilla/mozilla-embed-shell.h | 55 -- - embed/mozilla/mozilla-embed-single.cpp | 958 +++++++++++++++++++++++++++++ - embed/mozilla/mozilla-embed-single.h | 53 ++ - embed/mozilla/mozilla-notifiers.cpp | 19 +- - embed/mozilla/mozilla-notifiers.h | 4 +- - embed/mozilla/mozilla-prefs.cpp | 55 +- - embed/mozilla/mozilla-prefs.h | 10 +- - src/appearance-prefs.c | 10 +- - src/ephy-encoding-menu.c | 12 +- - src/ephy-nautilus-view.c | 4 + - src/ephy-shell.c | 13 +- - src/ephy-tab.c | 9 +- - src/general-prefs.c | 17 +- - src/pdm-dialog.c | 40 +- - src/prefs-dialog.c | 16 +- - src/window-commands.c | 8 +- - 30 files changed, 1205 insertions(+), 1545 deletions(-) - -commit 4e522c23a0650605cf8270f381ca10f2f35bbf78 -Author: Marco Pesenti Gritti -Date: Tue Feb 4 22:56:53 2003 +0000 - - Fix back/forward accels. Add startup feedback. - - 2003-02-04 Marco Pesenti Gritti - - * data/epiphany.desktop.in: - * src/ephy-window.c: - - Fix back/forward accels. - Add startup feedback. - - data/epiphany.desktop.in | 1 + - src/ephy-window.c | 6 +++--- - 2 files changed, 4 insertions(+), 3 deletions(-) - -commit c3a88dc4a79d7723f4721869206ed59c3f49753c -Author: Xan Lopez -Date: Tue Feb 4 20:17:11 2003 +0000 - - Set a sane title in the editor window. - - - Set a sane title in the editor window. - - ChangeLog | 5 +++++ - 1 file changed, 5 insertions(+) - -commit 6d56c7ad35cb23f2340b2d33b125efdd33fb9ed3 -Author: Xan Lopez -Date: Tue Feb 4 20:11:17 2003 +0000 - - Set proper title in bookmarks editor window. - - - Set proper title in bookmarks editor window. - - src/bookmarks/ephy-bookmarks-editor.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 2b7c5931d3720abb43c172c049c05c23f235d1a0 -Author: Marco Pesenti Gritti -Date: Tue Feb 4 17:11:27 2003 +0000 - - Dont crash when going to a not existent page. - - 2003-02-04 Marco Pesenti Gritti - - * embed/mozilla/StartHereProtocolHandler.cpp: - * lib/ephy-start-here.c: (ephy_start_here_get_page): - - Dont crash when going to a not existent page. - - ChangeLog | 7 +++++++ - embed/mozilla/StartHereProtocolHandler.cpp | 1 + - lib/ephy-start-here.c | 1 + - 3 files changed, 9 insertions(+) - -commit 3618cd422cdc8ea4228daf2a7f6b854a2bce4edb -Author: Marco Pesenti Gritti -Date: Tue Feb 4 16:36:15 2003 +0000 - - Fix several menu accels I borked when porting to egg. Connect drag source - - 2003-02-04 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: (item_node_new), - (connect_drag_sources), (disconnect_drag_sources), - (setup_toolbars), (do_merge), (ephy_editable_toolbar_init), - (editor_close_cb), (ephy_editable_toolbar_edit): - * src/ephy-favicon-action.c: (connect_proxy): - * src/ephy-window.c: - - Fix several menu accels I borked when porting to egg. - Connect drag source on toolbar buttons only when necessary, - fix favicon drag. - - ChangeLog | 13 ++++++ - lib/widgets/ephy-editable-toolbar.c | 84 +++++++++++++++++++++++++++++++++---- - src/ephy-favicon-action.c | 2 +- - src/ephy-window.c | 16 +++---- - 4 files changed, 99 insertions(+), 16 deletions(-) - -commit c394fa6c682a336366e7645af1295b5ffad86835 -Author: Marco Pesenti Gritti -Date: Mon Feb 3 23:20:13 2003 +0000 - - Change xml to have translations merged properly. Maybe this should be - - 2003-02-04 Marco Pesenti Gritti - - * data/starthere/index.xml.in: - - Change xml to have translations merged properly. - Maybe this should be fixed in intltool though. - - ChangeLog | 7 +++++++ - data/starthere/index.xml.in | 16 ++++++++-------- - 2 files changed, 15 insertions(+), 8 deletions(-) - -commit 67852234cbe600705463202637b19aa48884da87 -Author: Daniel Yacob -Date: Mon Feb 3 17:23:41 2003 +0000 - - Updating Amharic translation. - - po/ChangeLog | 4 ++++ - po/am.po | 6 +++--- - 2 files changed, 7 insertions(+), 3 deletions(-) - -commit 44d3c42976df9d2a63a71ac06f9e77f77eb0f498 -Author: Marco Pesenti Gritti -Date: Mon Feb 3 13:25:14 2003 +0000 - - *** empty log message *** - - embed/mozilla/Makefile.am | 1 - - 1 file changed, 1 deletion(-) - -commit 3c46fe343624ad6cfa88fdbe38aea86f46bfbdd8 -Author: Marco Pesenti Gritti -Date: Mon Feb 3 13:23:22 2003 +0000 - - Add some icons, thanks to jorn to provide them. last api change seem to - - 2003-02-02 Marco Pesenti Gritti - - * lib/ephy-stock-icons.c: Add some icons, thanks - to jorn to provide them. - * embed/EphyWrapper.cpp: last api change seem to have - been reverted ?! - - ChangeLog | 7 +++++++ - data/art/Makefile.am | 4 +++- - data/art/epiphany-fullscreen.png | Bin 563 -> 674 bytes - data/art/epiphany-history.png | Bin 2108 -> 1513 bytes - data/art/epiphany-send-link.png | Bin 0 -> 363 bytes - data/art/epiphany-viewsource.png | Bin 0 -> 147 bytes - embed/mozilla/EphyWrapper.cpp | 1 - - lib/ephy-stock-icons.c | 4 +++- - lib/ephy-stock-icons.h | 2 ++ - src/ephy-window.c | 6 +++--- - 10 files changed, 18 insertions(+), 6 deletions(-) - -commit e13619917174d7b03497959c39f5effbceafaaf7 -Author: German Poo-Caaman~o -Date: Sun Feb 2 13:47:57 2003 +0000 - - Added es (Spanish) to ALL_LINGUAS. - - 2003-02-02 German Poo-Caaman~o - - * configure.in: Added es (Spanish) to ALL_LINGUAS. - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 5 + - po/es.po | 2788 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2798 insertions(+), 1 deletion(-) - -commit 7423fae667b40119604f2376a0bc2cc14701bbe5 -Author: Marco Pesenti Gritti -Date: Fri Jan 31 19:26:37 2003 +0000 - - Make favorites really work and avoid they crash when closing window, 0.5 - - 2003-01-31 Marco Pesenti Gritti - - * lib/ephy-types.h: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_clean), - (ephy_favorites_menu_rebuild): - - Make favorites really work and avoid they crash when - closing window, 0.5 is nearer now :) - - ChangeLog | 10 ++++++++++ - lib/ephy-types.h | 1 + - src/bookmarks/ephy-bookmarks.c | 2 +- - src/ephy-favorites-menu.c | 3 ++- - 4 files changed, 14 insertions(+), 2 deletions(-) - -commit 69f9268e0676daa1d8a358d568355f73665c4f2d -Author: Marco Pesenti Gritti -Date: Fri Jan 31 13:52:31 2003 +0000 - - *** empty log message *** - - ChangeLog | 5 +++++ - data/art/epiphany-bookmarks.png | Bin 3091 -> 1287 bytes - 2 files changed, 5 insertions(+) - -commit 22680a9f840cde2db6df8284a41613135f43ad32 -Author: Marco Pesenti Gritti -Date: Fri Jan 31 12:43:29 2003 +0000 - - *** empty log message *** - - ChangeLog | 6 ++++++ - 1 file changed, 6 insertions(+) - -commit 7548f42681c7b6792cffb6135b525436dc280fa8 -Author: Marco Pesenti Gritti -Date: Fri Jan 31 12:42:25 2003 +0000 - - Add icons, fix some minor appeareance stuff, rework ui updating to deal - - 2003-01-31 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: Add icons, - fix some minor appeareance stuff, rework ui updating - to deal with editor size. - - TODO | 1 + - data/art/Makefile.am | 6 +- - data/art/epiphany-bookmarks.png | Bin 0 -> 3091 bytes - data/art/epiphany-fullscreen.png | Bin 0 -> 563 bytes - data/art/epiphany-history.png | Bin 0 -> 2108 bytes - data/art/epiphany-new-tab.png | Bin 0 -> 938 bytes - lib/egg/eggtoolbutton.c | 2 + - lib/ephy-stock-icons.c | 6 +- - lib/ephy-stock-icons.h | 4 + - lib/widgets/ephy-editable-toolbar.c | 244 ++++++++++++++++++++++-------------- - po/POTFILES.in | 8 +- - src/ephy-window.c | 9 +- - 12 files changed, 178 insertions(+), 102 deletions(-) - -commit 419f820922705e79860f0c57a46db11742601f6d -Author: Daniel Yacob -Date: Thu Jan 30 15:32:28 2003 +0000 - - Adding Amharic translation. - - ChangeLog | 4 + - configure.in | 2 +- - po/ChangeLog | 4 + - po/am.po | 2653 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 4 files changed, 2662 insertions(+), 1 deletion(-) - -commit e0fc19a36551bdef202fa36bb6eb674f74368d9c -Author: Marco Pesenti Gritti -Date: Thu Jan 30 13:54:05 2003 +0000 - - *** empty log message *** - - data/ui/epiphany-toolbar.xml.in | 3 +++ - 1 file changed, 3 insertions(+) - -commit bd2108eb559d0538b59c6907b89f7aba137431dd -Author: Marco Pesenti Gritti -Date: Thu Jan 30 13:53:39 2003 +0000 - - Allow to drag also normal urls in the toolbars. Commit some fixes I did to - - 2003-01-30 Marco Pesenti Gritti - - * data/ui/epiphany-toolbar.xml.in: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/Makefile.am: - * lib/egg/egg-action.c: (disconnect_proxy): - * lib/egg/egg-menu-merge.c: (update_node): - * lib/ephy-dnd.c: (ephy_dnd_uri_list_extract_uris): - * lib/ephy-dnd.h: - * lib/ephy-string.c: (ephy_str_to_int): - * lib/widgets/ephy-editable-toolbar.c: (item_node_new), - (impl_get_action), (add_action), (parse_item_list), - (toolbar_list_to_xml), (ephy_editable_toolbar_save), (do_merge), - (free_node), (ephy_editable_toolbar_finalize): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_get_bookmark_id): - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_add), - (ephy_new_bookmark_response_cb), (ephy_new_bookmark_init), - (ephy_new_bookmark_set_icon), (ephy_new_bookmark_get_id): - * src/bookmarks/ephy-new-bookmark.h: - * src/popup-commands.c: (popup_cmd_add_link_bookmark): - * src/toolbar.c: (get_bookmark_action), (toolbar_get_action): - * src/window-commands.c: (window_cmd_file_add_bookmark): - - Allow to drag also normal urls in the toolbars. - Commit some fixes I did to the eggmenu stuff, now - toolbar editor should work well, please start - reporting bugs :) - - ChangeLog | 28 ++++++++++++++ - embed/mozilla/EphyWrapper.cpp | 2 +- - embed/mozilla/Makefile.am | 2 + - lib/egg/egg-action.c | 11 ++++-- - lib/egg/egg-menu-merge.c | 4 +- - lib/ephy-dnd.c | 50 ++++++++++++++++++++++++ - lib/ephy-dnd.h | 1 + - lib/ephy-string.c | 3 -- - lib/widgets/ephy-editable-toolbar.c | 51 +++++++++++++++---------- - src/bookmarks/ephy-bookmarks.c | 2 +- - src/bookmarks/ephy-new-bookmark.c | 18 ++++++--- - src/bookmarks/ephy-new-bookmark.h | 3 ++ - src/popup-commands.c | 3 +- - src/toolbar.c | 76 ++++++++++++++++++++++++++++++------- - src/window-commands.c | 3 +- - 15 files changed, 205 insertions(+), 52 deletions(-) - -commit c1008f8781b7940bb7096bc6e5fe250ec6ebcaf2 -Author: Marco Pesenti Gritti -Date: Wed Jan 29 23:20:47 2003 +0000 - - Fix bookmarks/smart bookmarks add to the toolbars. - - 2003-01-30 Marco Pesenti Gritti - - * lib/ephy-dnd.c: (ephy_dnd_url_drag_source_set), - (ephy_dnd_enable_model_drag_source): - * lib/ephy-dnd.h: - * lib/widgets/ephy-editable-toolbar.c: (item_node_new), - (add_action), (parse_item_list), (toolbar_list_to_xml), - (drag_data_received_cb), (setup_toolbar_drag): - * src/toolbar.c: (toolbar_get_action): - - Fix bookmarks/smart bookmarks add to the toolbars. - - ChangeLog | 12 ++++++++++++ - lib/ephy-dnd.c | 5 +++-- - lib/ephy-dnd.h | 4 +--- - lib/widgets/ephy-editable-toolbar.c | 35 ++++++++++++++++++++++++++--------- - src/toolbar.c | 7 ------- - 5 files changed, 42 insertions(+), 21 deletions(-) - -commit dff9e866bb4f2fc18074d5c638733ee860746f9b -Author: Marco Pesenti Gritti -Date: Wed Jan 29 21:06:40 2003 +0000 - - Complete (or nearly) toolbar editor implementation. Bookmarks are - - 2003-01-29 Marco Pesenti Gritti - - * lib/ephy-bonobo-extensions.c: (ephy_bonobo_clear_path), - (ephy_bonobo_replace_path): - * lib/ephy-bonobo-extensions.h: - * lib/ephy-marshal.list: - * lib/ephy-string.c: (ephy_str_to_int): - * lib/ephy-string.h: - * lib/widgets/ephy-editable-toolbar.c: (impl_get_action), - (add_action), (parse_item_list), (add_toolbar), (parse_toolbars), - (load_defaults), (load_toolbar), (drag_data_received_cb), - (setup_toolbar_drag), (ensure_toolbars_min_size), (do_merge), - (ephy_editable_toolbar_class_init), (editor_get_dimensions), - (hide_editor), (editor_close_cb), (editor_add_toolbar_cb), - (editor_drag_data_received_cb), (editor_drag_data_delete_cb), - (setup_editor), (button_press_cb), (show_editor), - (ephy_editable_toolbar_edit), (ephy_editable_toolbar_get_action): - * lib/widgets/ephy-editable-toolbar.h: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_get_bookmark_id): - * src/bookmarks/ephy-bookmarks.h: - * src/session.c: (session_load): - * src/toolbar.c: (go_location_cb), (toolbar_get_action), - (toolbar_class_init), (toolbar_init): - - Complete (or nearly) toolbar editor implementation. - Bookmarks are implemented too, but some minor problems - are stopping them to work. - - ChangeLog | 28 ++ - lib/ephy-bonobo-extensions.c | 622 +----------------------------------- - lib/ephy-bonobo-extensions.h | 76 ----- - lib/ephy-string.c | 4 +- - lib/ephy-string.h | 2 +- - lib/widgets/ephy-editable-toolbar.c | 376 +++++++++++++++++----- - lib/widgets/ephy-editable-toolbar.h | 18 +- - src/bookmarks/ephy-bookmarks.c | 20 ++ - src/bookmarks/ephy-bookmarks.h | 3 + - src/session.c | 2 +- - src/toolbar.c | 94 +++--- - 11 files changed, 420 insertions(+), 825 deletions(-) - -commit ec52d432955e2e2d5467a8da01c8ce929388325c -Author: Christian Neumair -Date: Wed Jan 29 13:34:14 2003 +0000 - - Changed copyright notice in about dialog (src/window-commands.c). - - ChangeLog | 4 ++++ - src/window-commands.c | 8 ++------ - 2 files changed, 6 insertions(+), 6 deletions(-) - -commit a20e13541380dd2148dda61b2c52d196a70b20df -Author: Marco Pesenti Gritti -Date: Tue Jan 28 20:51:11 2003 +0000 - - Reimplement data using GNode, cleaner. Give up on "autoapply" for now, gtk - - 2003-01-28 Marco Pesenti Gritti - - * lib/widgets/ephy-editable-toolbar.c: (toolbar_node_new), - (item_node_new), (find_node_from_action), (add_action), - (parse_item_list), (parse_toolbars), (load_defaults), - (load_toolbar), (toolbar_list_to_xml), (toolbar_list_to_string), - (ui_update), (queue_ui_update), (drag_data_received_cb), - (drag_data_delete_cb), (drag_data_get_cb), (setup_toolbar_drag), - (do_merge), (ephy_editable_toolbar_set_merge), - (ephy_editable_toolbar_init), (build_to_drag_actions_list), - (setup_editor), (button_press_cb), (show_editor), - (set_all_actions_sensitive), (ephy_editable_toolbar_edit): - * src/ephy-window.c: (add_widget): - - Reimplement data using GNode, cleaner. - Give up on "autoapply" for now, gtk dnd doesnt really - like it :(. - Implement reordering. - - ChangeLog | 19 ++ - lib/widgets/ephy-editable-toolbar.c | 414 +++++++++++++++++------------------- - src/ephy-window.c | 7 - - 3 files changed, 218 insertions(+), 222 deletions(-) - -commit 8dd9ad57a1f3e8829047040c537c851a86a81b23 -Author: Marco Pesenti Gritti -Date: Mon Jan 27 20:13:57 2003 +0000 - - dont leak signals, ported from galeon - - 2003-01-27 Marco Pesenti Gritti - - * embed/ephy-embed.c: (ephy_embed_base_init): - - dont leak signals, ported from galeon - - ChangeLog | 6 ++++++ - embed/ephy-embed.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit b4ccfc8ea4cf00327a44cb814997d8ede9cd1706 -Author: Marco Pesenti Gritti -Date: Mon Jan 27 20:05:34 2003 +0000 - - Implement dragging from the editor. It's stilly buggy but I didnt expect - - 2003-01-27 Marco Pesenti Gritti - - * configure.in: - * data/ui/epiphany-toolbar.xml.in: - * lib/widgets/ephy-editable-toolbar.c: (copy_toolbars), - (is_action_in_toolbars), (is_separator), - (find_toolbar_from_widget), (add_action_to_list), - (parse_item_list), (toolbar_list_to_xml), (toolbar_list_to_string), - (drag_data_received_cb), (drag_motion_cb), (drag_drop_cb), - (setup_toolbar_drag), (do_merge), - (ephy_editable_toolbar_set_merge), (ephy_editable_toolbar_init), - (ephy_editable_toolbar_finalize), (drag_data_get_cb), - (build_to_drag_actions_list), (setup_editor), - (set_all_actions_sensitive), (ephy_editable_toolbar_edit): - * src/ephy-favicon-action.c: (create_tool_item), - (ephy_favicon_action_class_init): - * src/ephy-location-action.c: (create_tool_item), - (ephy_location_action_class_init): - * src/ephy-spinner-action.c: (create_tool_item), - (ephy_spinner_action_class_init): - - Implement dragging from the editor. It's stilly buggy - but I didnt expect to get that working so soon :) - - ChangeLog | 24 +++ - data/ui/epiphany-toolbar.xml.in | 8 + - lib/widgets/ephy-editable-toolbar.c | 291 +++++++++++++++++++++++++++++++----- - src/ephy-favicon-action.c | 4 +- - src/ephy-location-action.c | 5 +- - src/ephy-spinner-action.c | 4 +- - 6 files changed, 293 insertions(+), 43 deletions(-) - -commit fcdec6a2c1b3383b61d98ab6add8755fedc0a88a -Author: Marco Pesenti Gritti -Date: Sun Jan 26 15:20:07 2003 +0000 - - *** empty log message *** - - ChangeLog | 16 +++ - lib/egg/egg-menu-merge.c | 8 +- - lib/widgets/ephy-editable-toolbar.c | 269 ++++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-editable-toolbar.h | 2 + - src/ephy-window.c | 7 + - src/toolbar.c | 3 + - src/window-commands.c | 6 + - 7 files changed, 305 insertions(+), 6 deletions(-) - -commit f0ed62fd5de56876d5257d6def06a761aa364e09 -Author: Marco Pesenti Gritti -Date: Sat Jan 25 17:03:04 2003 +0000 - - Complete bookmark action implementation (with smb too) - - 2003-01-25 Marco Pesenti Gritti - - * configure.in: - * src/bookmarks/ephy-bookmark-action.c: (create_tool_item), - (ephy_bookmark_action_sync_icon), - (ephy_bookmark_action_sync_label), (entry_activated_cb), - (button_clicked_cb), (connect_proxy), - (ephy_bookmark_action_set_property), - (ephy_bookmark_action_finalize), (ephy_bookmark_action_class_init), - (ephy_bookmark_action_init), (ephy_bookmark_action_new): - * src/bookmarks/ephy-bookmark-action.h: - * src/ephy-favicon-action.c: (ephy_favicon_action_sync_icon): - - Complete bookmark action implementation (with smb too) - - ChangeLog | 15 +++ - src/bookmarks/ephy-bookmark-action.c | 220 +++++++++++++++++++++++++++++++++-- - src/bookmarks/ephy-bookmark-action.h | 2 + - src/ephy-favicon-action.c | 1 + - 4 files changed, 228 insertions(+), 10 deletions(-) - -commit 19a39f46e3982211744c0162812faa129190ee1f -Author: Marco Pesenti Gritti -Date: Fri Jan 24 14:52:03 2003 +0000 - - *** empty log message *** - - ChangeLog | 39 +++++++++++++++++++++++++++++++++++++++ - 1 file changed, 39 insertions(+) - -commit b0f66eed569bdc92c55cb8c39f62b5694b7f62b3 -Author: Marco Pesenti Gritti -Date: Fri Jan 24 14:48:34 2003 +0000 - - Implement the data part of the toolbar editor. Partial implementation of - - 2003-01-24 Marco Pesenti Gritti - - * NEWS: - * configure.in: - * data/ui/epiphany-toolbar.xml.in: - * lib/egg/Makefile.am: - * lib/widgets/Makefile.am: - * lib/widgets/ephy-editable-toolbar.c: - (ephy_editable_toolbar_get_type), (find_action), - (add_action_to_list), (parse_item_list), (parse_toolbars), - (load_defaults), (load_toolbar), (toolbar_list_to_xml), - (toolbar_list_to_string), (do_merge), - (ephy_editable_toolbar_set_merge), - (ephy_editable_toolbar_set_property), - (ephy_editable_toolbar_get_property), - (ephy_editable_toolbar_class_init), (ephy_editable_toolbar_init), - (ephy_editable_toolbar_save), (ephy_editable_toolbar_finalize), - (ephy_editable_toolbar_new): - * lib/widgets/ephy-editable-toolbar.h: - * src/Makefile.am: - * src/bookmarks/Makefile.am: - * src/bookmarks/ephy-bookmark-action.c: - (ephy_bookmark_action_get_type), (create_tool_item), - (ephy_bookmark_action_sync_label), (connect_proxy), - (ephy_bookmark_action_set_property), - (ephy_bookmark_action_get_property), - (ephy_bookmark_action_class_init), (ephy_bookmark_action_init), - (ephy_bookmark_action_new): - * src/bookmarks/ephy-bookmark-action.h: - * src/ephy-tab.c: (ephy_tab_finalize), (ephy_tab_set_location): - * src/toolbar.c: (toolbar_get_type), (toolbar_set_window), - (editable_toolbar_request_action), (toolbar_init), - (toolbar_finalize): - * src/toolbar.h: - - Implement the data part of the toolbar editor. - Partial implementation of Bookmark action. - Try to fix crashes when switching tabs. - - NEWS | 6 + - data/ui/epiphany-toolbar.xml.in | 40 ++-- - lib/egg/Makefile.am | 6 +- - lib/widgets/Makefile.am | 2 + - lib/widgets/ephy-editable-toolbar.c | 450 +++++++++++++++++++++++++++++++++++ - lib/widgets/ephy-editable-toolbar.h | 59 +++++ - src/Makefile.am | 1 + - src/bookmarks/Makefile.am | 5 +- - src/bookmarks/ephy-bookmark-action.c | 208 ++++++++++++++++ - src/bookmarks/ephy-bookmark-action.h | 52 ++++ - src/ephy-tab.c | 6 +- - src/toolbar.c | 46 +++- - src/toolbar.h | 6 +- - 13 files changed, 851 insertions(+), 36 deletions(-) - -commit 459e4b6f3a76d3904c84127b1147a14676586ed7 -Author: Vincent van Adrighem -Date: Fri Jan 24 11:29:25 2003 +0000 - - Dutch translation updated. - - 2003-01-24 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 276 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 156 insertions(+), 124 deletions(-) - -commit e8f2f09e344ca00d5bd40df0cdf240754fde9a7e -Author: Vincent van Adrighem -Date: Thu Jan 23 20:49:58 2003 +0000 - - Dutch translation updated. - - 2003-01-23 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 + - po/nl.po | 1618 ++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 850 insertions(+), 772 deletions(-) - -commit bcd2c87f376c7a7912e1cd28d980821f9903c155 -Author: Marco Pesenti Gritti -Date: Thu Jan 23 13:53:00 2003 +0000 - - Fix evil bug in id factory. - - 2003-01-23 Marco Pesenti Gritti - - * TODO: - * lib/ephy-node.c: (id_factory_set_to): - - Fix evil bug in id factory. - - ChangeLog | 7 +++++++ - TODO | 2 +- - lib/ephy-node.c | 5 ++++- - 3 files changed, 12 insertions(+), 2 deletions(-) - -commit 3c7e9683462c1af47c215039250f739ab4d6fcc2 -Author: Christian Neumair -Date: Thu Jan 23 13:37:03 2003 +0000 - - Updated German translation and POTFILES.in. - - po/ChangeLog | 6 ++ - po/POTFILES.in | 2 + - po/de.po | 296 +++++++++++++++++++++++++++++++-------------------------- - 3 files changed, 171 insertions(+), 133 deletions(-) - -commit 4cd2382e6b072606846b4571765ee8ae86f68ccd -Author: Marco Pesenti Gritti -Date: Thu Jan 23 13:23:08 2003 +0000 - - *** empty log message *** - - data/ui/epiphany-ui.xml.in | 2 +- - src/ephy-encoding-menu.c | 294 +++++++++++++++++++++++++++++++++++++++++++++ - src/ephy-encoding-menu.h | 59 +++++++++ - 3 files changed, 354 insertions(+), 1 deletion(-) - -commit 2db0d1ed3d15012d2d9c80d8d9499160e1f535dc -Author: Marco Pesenti Gritti -Date: Thu Jan 23 13:22:17 2003 +0000 - - Reimplement encoding menus. Work around eggmenu finalization problems. Fix - - 2003-01-23 Marco Pesenti Gritti - - * TODO: - * data/ui/epiphany-ui.xml.in: - * embed/ephy-embed-utils.c: - (ephy_embed_utils_build_charsets_submenu): - * lib/egg/egg-menu-merge.c: (egg_menu_merge_finalize), - (egg_menu_merge_class_init), (egg_menu_merge_init), - (egg_menu_merge_node_prepend_uierence), - (egg_menu_merge_node_remove_uierence), (start_element_handler), - (cleanup), (remove_ui), (update_node): - * src/Makefile.am: - * src/ephy-encoding-menu.c: (ephy_encoding_menu_class_init), - (ephy_encoding_menu_init), (ephy_encoding_menu_finalize_impl), - (ephy_encoding_menu_set_property), - (ephy_encoding_menu_get_property), (ephy_encoding_menu_new), - (ephy_encoding_menu_verb_cb), (build_group), (build_charset), - (ephy_encoding_menu_rebuild): - * src/ephy-encoding-menu.h: - * src/ephy-favorites-menu.c: (ephy_favorites_menu_finalize_impl), - (ephy_favorites_menu_verb_cb): - * src/ephy-favorites-menu.h: - * src/ephy-window.c: (ephy_window_init), (ephy_window_finalize): - * src/ppview-toolbar.c: (ppview_toolbar_finalize): - - Reimplement encoding menus. - Work around eggmenu finalization problems. - Fix ppvtoolbar/favorites menu to correctly - remove action group on finalize. - - ChangeLog | 30 +++++++++++++++++++++++ - TODO | 5 ++++ - embed/ephy-embed-utils.c | 2 +- - lib/egg/egg-menu-merge.c | 62 ++++++++++++++++++++++++++++++++--------------- - src/Makefile.am | 2 ++ - src/ephy-favorites-menu.c | 13 +++++++--- - src/ephy-favorites-menu.h | 2 -- - src/ephy-window.c | 18 ++++---------- - src/ppview-toolbar.c | 7 +++--- - 9 files changed, 98 insertions(+), 43 deletions(-) - -commit 7fe73f1990a361a3c794ef5517e2cb4d3188466e -Author: Marco Pesenti Gritti -Date: Thu Jan 23 00:34:12 2003 +0000 - - Fix autocompletion to not show duped entries. Complete print preview impl. - - 2003-01-23 Marco Pesenti Gritti - - * TODO: - * lib/ephy-autocompletion.c: (ephy_autocompletion_reset), - (ephy_autocompletion_set_key), - (ephy_autocompletion_update_matches_full): - * lib/widgets/ephy-location-entry.c: - (get_editable_number_of_chars), (position_is_at_end), - (ephy_location_entry_key_press_event_cb): - * src/ephy-favicon-action.c: (ephy_favicon_action_finalize): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_finalize_impl), - (ephy_favorites_menu_rebuild): - * src/ephy-window.c: (add_widget), (setup_window), - (ephy_window_finalize), (ephy_window_set_chrome): - * src/ppview-toolbar.c: (toolbar_update_sensitivity), - (ppview_toolbar_set_window), (toolbar_cmd_ppv_close): - * src/toolbar.c: (toolbar_setup_widgets), (toolbar_finalize): - - Fix autocompletion to not show duped entries. - Complete print preview impl. - Fix actions referencing, a bug in egg still blocking it though. - - ChangeLog | 22 +++++++++++++ - TODO | 1 + - lib/ephy-autocompletion.c | 5 ++- - lib/widgets/ephy-location-entry.c | 24 +++++++++++++- - src/ephy-favicon-action.c | 3 ++ - src/ephy-favorites-menu.c | 4 +-- - src/ephy-window.c | 26 +++++++++++++-- - src/ppview-toolbar.c | 68 ++++++++++++++++++++++----------------- - src/toolbar.c | 10 ++++-- - 9 files changed, 125 insertions(+), 38 deletions(-) - -commit 5d0ba75eb24a3acee481ce987b6003ef36195c94 -Author: Kjartan Maraas -Date: Tue Jan 21 23:18:37 2003 +0000 - - Updated Norwegian translation. - - 2003-01-22 Kjartan Maraas - - * no.po: Updated Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 1821 ++++++++++++++++++++++++---------------------------------- - 2 files changed, 768 insertions(+), 1057 deletions(-) - -commit b4c2824437ab718c2b3e5fdcdbd5b9377053e7da -Author: Marco Pesenti Gritti -Date: Tue Jan 21 20:50:21 2003 +0000 - - Dont crash when url is NULL - - 2003-01-21 Marco Pesenti Gritti - - * embed/ephy-history.c: (ephy_history_host_set_title): - - Dont crash when url is NULL - - ChangeLog | 6 ++++++ - embed/ephy-history.c | 3 ++- - 2 files changed, 8 insertions(+), 1 deletion(-) - -commit e2eae63203dae33b0b72ed369d879be2c9179a26 -Author: Marco Pesenti Gritti -Date: Tue Jan 21 20:27:35 2003 +0000 - - Fix chromes - - 2003-01-21 Marco Pesenti Gritti - - * data/ui/epiphany-ui.xml.in: - * lib/egg/egg-menu-merge.c: (do_updates): - * src/ephy-spinner-action.c: (create_tool_item): - * src/ephy-window.c: (add_widget), (ephy_window_init), - (ephy_window_finalize), (update_layout_toggles), - (ephy_window_set_chrome): - * src/toolbar.c: (toolbar_set_window), (toolbar_new): - * src/toolbar.h: - * src/window-commands.c: (window_cmd_view_toolbar), - (window_cmd_view_statusbar), (window_cmd_view_fullscreen): - * src/window-commands.h: - - Fix chromes - - ChangeLog | 16 ++++++++++++++ - data/ui/epiphany-ui.xml.in | 1 + - lib/egg/egg-menu-merge.c | 2 -- - src/ephy-spinner-action.c | 2 +- - src/ephy-window.c | 55 +++++++++++++++++++++++++++++++++++++++++----- - src/toolbar.c | 12 ---------- - src/toolbar.h | 3 --- - src/window-commands.c | 47 +++++++++++++++++++++++++++++++++++++++ - src/window-commands.h | 3 +++ - 9 files changed, 117 insertions(+), 24 deletions(-) - -commit e9f5eff3e812dab2c9f8aaddf13c7540f309a5ee -Author: Marco Pesenti Gritti -Date: Tue Jan 21 12:37:02 2003 +0000 - - hmmm - - src/ephy-shell.c | 1 - - 1 file changed, 1 deletion(-) - -commit 572b443c4e45841cbb4e42caeecad762245163e5 -Author: Marco Pesenti Gritti -Date: Tue Jan 21 12:36:02 2003 +0000 - - *** empty log message *** - - src/bookmarks/ephy-bookmarks.c | 2 ++ - 1 file changed, 2 insertions(+) - -commit 6d0925a6632ab79046b1d59b74d88f3b5bc39eae -Author: Marco Pesenti Gritti -Date: Tue Jan 21 12:35:45 2003 +0000 - - Remove fs autocompletion, we are a browser after all - - 2003-01-21 Marco Pesenti Gritti - - * lib/Makefile.am: - * lib/ephy-filesystem-autocompletion.c: - * lib/ephy-filesystem-autocompletion.h: - - Remove fs autocompletion, we are a browser after all - - ChangeLog | 8 + - lib/Makefile.am | 2 - - lib/ephy-filesystem-autocompletion.c | 339 ----------------------------------- - lib/ephy-filesystem-autocompletion.h | 70 -------- - 4 files changed, 8 insertions(+), 411 deletions(-) - -commit 3b1d26f1fd1107ed5196c8fb48dd40bbf888cda4 -Author: Marco Pesenti Gritti -Date: Tue Jan 21 12:33:23 2003 +0000 - - Api changes. - - 2003-01-21 Marco Pesenti Gritti - - * embed/mozilla/BaseProtocolContentHandler.cpp: - * embed/mozilla/StartHereProtocolHandler.cpp: - - Api changes. - - * embed/ephy-embed-shell.c: (ephy_embed_shell_finalize): - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_finalize): - * embed/ephy-history.c: (ephy_history_host_visited), - (ephy_history_set_page_title), (ephy_history_remove): - * lib/widgets/ephy-spinner.c: (ephy_spinner_expose), - (ephy_spinner_size_request): - * lib/widgets/ephy-spinner.h: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_finalize): - * src/ephy-shell.c: (ephy_shell_finalize), - (ephy_shell_get_autocompletion): - * src/ephy-spinner-action.c: (create_tool_item): - - Nicer spinner size. Fix references problem - and a lot of logs to make it easy to debug it. - - ChangeLog | 22 ++++++++++++++++++++++ - embed/ephy-embed-shell.c | 5 ++++- - embed/ephy-favicon-cache.c | 2 ++ - embed/ephy-history.c | 25 +++++++++++++++---------- - embed/mozilla/BaseProtocolContentHandler.cpp | 2 +- - embed/mozilla/StartHereProtocolHandler.cpp | 6 +----- - lib/widgets/ephy-spinner.c | 4 +++- - lib/widgets/ephy-spinner.h | 3 +-- - src/ephy-shell.c | 10 +++------- - src/ephy-spinner-action.c | 2 +- - 10 files changed, 53 insertions(+), 28 deletions(-) - -commit 98a7051020195ab2b8a1174e60ab72e950dda42e -Author: Christian Neumair -Date: Mon Jan 20 21:29:03 2003 +0000 - - Updated German translation, updated POTFILES.in. - - po/ChangeLog | 3 + - po/POTFILES.in | 8 - - po/de.po | 1365 +++++++++++++++++++++++++++++--------------------------- - 3 files changed, 714 insertions(+), 662 deletions(-) - -commit ec961c8ff34e1e80eda7c121d02a81c1475c7676 -Author: Marco Pesenti Gritti -Date: Mon Jan 20 20:19:45 2003 +0000 - - Set stop button sensitivity - - 2003-01-20 Marco Pesenti Gritti - - * src/ephy-window.c: (update_nav_control): - - Set stop button sensitivity - - ChangeLog | 6 ++++++ - src/ephy-window.c | 2 ++ - 2 files changed, 8 insertions(+) - -commit 3b49a697eca4d8a5004193d7b5cbbdea0e53da52 -Author: Marco Pesenti Gritti -Date: Mon Jan 20 20:07:23 2003 +0000 - - Fix a stupid mistake porting galeon changes, no more freeze. - - 2003-01-20 Marco Pesenti Gritti - - * embed/ephy-embed-event.c: (ephy_embed_event_finalize): - - Fix a stupid mistake porting galeon changes, no more - freeze. - - * src/ephy-favicon-action.c: (ephy_favicon_action_sync_icon), - (ephy_favicon_action_class_init), (ephy_favicon_action_init), - (ephy_favicon_action_finalize): - - Ref favicon cache. - - * src/ephy-window.c: (ephy_window_init): - - Initialize ppview pointer. - - ChangeLog | 17 +++++++++++++++++ - embed/ephy-embed-event.c | 3 --- - src/ephy-favicon-action.c | 30 ++++++++++++++++++++++++++---- - src/ephy-window.c | 1 + - 4 files changed, 44 insertions(+), 7 deletions(-) - -commit b847d4bc65b02333271bdd0d2d5beebdd4b21395 -Author: Marco Pesenti Gritti -Date: Mon Jan 20 18:59:08 2003 +0000 - - *** empty log message *** - - data/ui/.cvsignore | 1 + - lib/egg/.cvsignore | 2 ++ - 2 files changed, 3 insertions(+) - -commit c2beffd03405e6db4295afd6c2982388b808cb2e -Author: Marco Pesenti Gritti -Date: Mon Jan 20 18:57:20 2003 +0000 - - Merge eog-menu-api branch - - 2003-01-20 Marco Pesenti Gritti - - * Merge eog-menu-api branch - - ChangeLog | 166 ++++ - TODO | 4 +- - configure.in | 2 +- - data/ui/Makefile.am | 5 +- - data/ui/epiphany-toolbar.xml.in | 15 + - data/ui/epiphany-ui.xml.in | 568 +++-------- - lib/Makefile.am | 4 +- - lib/egg/Makefile.am | 59 ++ - lib/egg/egg-accel-dialog.c | 332 +++++++ - lib/egg/egg-accel-dialog.h | 43 + - lib/egg/egg-action-group.c | 297 ++++++ - lib/egg/egg-action-group.h | 71 ++ - lib/egg/egg-action.c | 961 ++++++++++++++++++ - lib/egg/egg-action.h | 81 ++ - lib/egg/egg-markup.c | 438 +++++++++ - lib/egg/egg-markup.h | 30 + - lib/egg/egg-menu-merge.c | 1316 +++++++++++++++++++++++++ - lib/egg/egg-menu-merge.h | 100 ++ - lib/egg/egg-menu.h | 13 + - lib/egg/egg-radio-action.c | 194 ++++ - lib/egg/egg-radio-action.h | 34 + - lib/egg/egg-toggle-action.c | 197 ++++ - lib/egg/egg-toggle-action.h | 38 + - lib/egg/eggmarshalers.c | 277 ++++++ - lib/egg/eggmarshalers.h | 60 ++ - lib/egg/eggmarshalers.list | 6 + - lib/egg/eggradiotoolbutton.c | 121 +++ - lib/egg/eggradiotoolbutton.h | 57 ++ - lib/egg/eggseparatortoolitem.c | 86 ++ - lib/egg/eggseparatortoolitem.h | 50 + - lib/egg/eggtoggletoolbutton.c | 192 ++++ - lib/egg/eggtoggletoolbutton.h | 64 ++ - lib/egg/eggtoolbar.c | 1850 +++++++++++++++++++++++++++++++++++ - lib/egg/eggtoolbar.h | 242 +++++ - lib/egg/eggtoolbutton.c | 670 +++++++++++++ - lib/egg/eggtoolbutton.h | 74 ++ - lib/egg/eggtoolitem.c | 416 ++++++++ - lib/egg/eggtoolitem.h | 98 ++ - lib/egg/prop-editor.h | 31 + - lib/ephy-gui.c | 6 +- - lib/toolbar/Makefile.am | 44 - - lib/widgets/Makefile.am | 3 + - lib/widgets/ephy-arrow-toolbutton.c | 234 +++++ - lib/widgets/ephy-arrow-toolbutton.h | 59 ++ - lib/widgets/ephy-location-entry.c | 4 +- - lib/widgets/ephy-location-entry.h | 4 +- - lib/widgets/ephy-spinner.c | 4 +- - src/Makefile.am | 12 +- - src/ephy-favicon-action.c | 252 +++++ - src/ephy-favicon-action.h | 49 + - src/ephy-favorites-menu.c | 104 +- - src/ephy-favorites-menu.h | 3 - - src/ephy-location-action.c | 181 ++++ - src/ephy-location-action.h | 51 + - src/ephy-navigation-action.c | 336 +++++++ - src/ephy-navigation-action.h | 56 ++ - src/ephy-navigation-button.c | 612 ------------ - src/ephy-navigation-button.h | 79 -- - src/ephy-shell.c | 3 +- - src/ephy-spinner-action.c | 183 ++++ - src/ephy-spinner-action.h | 49 + - src/ephy-tab.c | 77 +- - src/ephy-tab.h | 2 + - src/ephy-tbi.c | 191 ---- - src/ephy-tbi.h | 70 -- - src/ephy-window.c | 667 ++++++------- - src/ephy-window.h | 12 +- - src/popup-commands.c | 364 +++++-- - src/popup-commands.h | 86 +- - src/ppview-toolbar.c | 169 ++-- - src/ppview-toolbar.h | 6 - - src/statusbar.c | 159 +-- - src/statusbar.h | 14 +- - src/toolbar.c | 636 +++--------- - src/toolbar.h | 26 +- - src/window-commands.c | 377 ++----- - src/window-commands.h | 233 ++--- - 77 files changed, 11569 insertions(+), 3110 deletions(-) - -commit 822ca51797e05edbe42b80f1a33a70a7327d732e -Author: Marco Pesenti Gritti -Date: Mon Jan 20 17:59:34 2003 +0000 - - mass remove - - lib/toolbar/ephy-tb-button.c | 775 ----------------------------- - lib/toolbar/ephy-tb-button.h | 79 --- - lib/toolbar/ephy-tbi-favicon.c | 188 ------- - lib/toolbar/ephy-tbi-favicon.h | 66 --- - lib/toolbar/ephy-tbi-location.c | 205 -------- - lib/toolbar/ephy-tbi-location.h | 66 --- - lib/toolbar/ephy-tbi-navigation-history.c | 342 ------------- - lib/toolbar/ephy-tbi-navigation-history.h | 81 --- - lib/toolbar/ephy-tbi-separator.c | 179 ------- - lib/toolbar/ephy-tbi-separator.h | 68 --- - lib/toolbar/ephy-tbi-spinner.c | 188 ------- - lib/toolbar/ephy-tbi-spinner.h | 66 --- - lib/toolbar/ephy-tbi-std-toolitem.c | 407 ---------------- - lib/toolbar/ephy-tbi-std-toolitem.h | 84 ---- - lib/toolbar/ephy-tbi-zoom.c | 304 ------------ - lib/toolbar/ephy-tbi-zoom.h | 66 --- - lib/toolbar/ephy-toolbar-bonobo-view.c | 193 -------- - lib/toolbar/ephy-toolbar-bonobo-view.h | 75 --- - lib/toolbar/ephy-toolbar-editor.c | 634 ------------------------ - lib/toolbar/ephy-toolbar-editor.h | 80 --- - lib/toolbar/ephy-toolbar-item-factory.c | 168 ------- - lib/toolbar/ephy-toolbar-item-factory.h | 33 -- - lib/toolbar/ephy-toolbar-item.c | 142 ------ - lib/toolbar/ephy-toolbar-item.h | 91 ---- - lib/toolbar/ephy-toolbar-tree-model.c | 784 ------------------------------ - lib/toolbar/ephy-toolbar-tree-model.h | 74 --- - lib/toolbar/ephy-toolbar.c | 420 ---------------- - lib/toolbar/ephy-toolbar.h | 80 --- - 28 files changed, 5938 deletions(-) - -commit 0fc5b6e84e578ecda2095db6bb41d27558821b55 -Author: Christian Neumair -Date: Mon Jan 20 13:07:11 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 ++++ - po/de.po | 50 +++++++++++++++++++++++++------------------------- - 2 files changed, 29 insertions(+), 25 deletions(-) - -commit 5f2bf6e7fe67481c000fe9671a679feef79a2fcf -Author: Marco Pesenti Gritti -Date: Mon Jan 20 00:19:13 2003 +0000 - - Port several leaks fixes from galeon. - - 2003-01-20 Marco Pesenti Gritti - - * embed/ephy-embed-event.c: (free_g_value), - (ephy_embed_event_init), (ephy_embed_event_get_property): - * embed/ephy-embed-event.h: - * embed/ephy-embed-popup.c: (setup_document_menu), - (embed_popup_copy_email_cmd), (embed_popup_copy_link_location_cmd), - (save_property_url), (embed_popup_open_link_cmd), - (embed_popup_set_image_as_background_cmd), - (embed_popup_copy_image_location_cmd), - (embed_popup_open_image_cmd): - * embed/ephy-embed-utils.c: (build_charset), - (ephy_embed_utils_build_charsets_submenu): - * embed/mozilla/FilePicker.cpp: - * src/bookmarks/ephy-bookmarks.c: (update_favorites_menus): - * src/ephy-nautilus-view.c: (gnv_embed_dom_mouse_down_cb), - (gnv_popup_cmd_new_window), (gnv_popup_cmd_image_in_new_window): - * src/ephy-shell.c: (ephy_shell_get_active_window): - * src/ephy-tab.c: (ephy_tab_dom_mouse_down_cb): - * src/ephy-window.c: (update_window_visibility), - (update_spinner_control): - * src/general-prefs.c: (language_dialog_changed_cb): - * src/popup-commands.c: (popup_cmd_new_window), - (popup_cmd_new_tab), (popup_cmd_image_in_new_tab), - (popup_cmd_image_in_new_window), (popup_cmd_add_bookmark): - * src/session.c: (session_close), (session_save): - * src/session.h: - - Port several leaks fixes from galeon. - - ChangeLog | 30 ++++++++++++++++++++++++++++++ - embed/ephy-embed-event.c | 12 ++++++++++-- - embed/ephy-embed-event.h | 2 +- - embed/ephy-embed-popup.c | 16 ++++++++-------- - embed/ephy-embed-utils.c | 12 ++++++------ - embed/mozilla/FilePicker.cpp | 22 ++++++++++++++++------ - src/bookmarks/ephy-bookmarks.c | 2 +- - src/ephy-nautilus-view.c | 6 +++--- - src/ephy-shell.c | 2 +- - src/ephy-tab.c | 2 +- - src/ephy-window.c | 16 ++++++++-------- - src/general-prefs.c | 9 +++++---- - src/popup-commands.c | 16 ++++++++-------- - src/session.c | 16 +++++++++------- - src/session.h | 2 +- - 15 files changed, 108 insertions(+), 57 deletions(-) - -commit 29e1844f7711f8bcfb5f7c561c6368d6240a6c9b -Author: Christian Neumair -Date: Sun Jan 19 19:35:09 2003 +0000 - - Updated German translation. - - po/ChangeLog | 4 + - po/de.po | 265 +++++++++++++++++++++++++++++++++++++---------------------- - 2 files changed, 169 insertions(+), 100 deletions(-) - -commit 39bbbe7e172afc6c678816001a3199fcac6317bf -Author: Christian Rose -Date: Sun Jan 19 02:18:00 2003 +0000 - - Updated Swedish translation. - - 2003-01-19 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++++ - po/sv.po | 27 ++++++++++++++------------- - 2 files changed, 18 insertions(+), 13 deletions(-) - -commit 219ac503f8eec33bd3061db4eb4982408dd679f2 -Author: Lee Willis -Date: Fri Jan 17 13:31:59 2003 +0000 - - Don't leak history xml every 5 minutes - - 2003-01-17 Lee Willis - - * embed/ephy-history.c: Don't leak history xml every 5 minutes - - ChangeLog | 4 ++++ - embed/ephy-history.c | 1 + - 2 files changed, 5 insertions(+) - -commit 1a2f5add8233f90f93082cc9983452ebfb8fbe15 -Author: Rob Clews -Date: Thu Jan 16 21:17:02 2003 +0000 - - fix incorrect figures on small files - - 2003-01-16 Rob Clews - - * embed/downloader-view.c: fix incorrect figures on small files - - 2003-01-16 Marco Pesenti Gritti - - * embed/mozilla/FilePicker.cpp: Api change - - ChangeLog | 8 ++++++++ - embed/downloader-view.c | 5 ++++- - embed/mozilla/GlobalHistory.cpp | 9 +++++++++ - 3 files changed, 21 insertions(+), 1 deletion(-) - -commit 36ca5b730350be39e5befc6a4aab9edcf659d387 -Author: Vincent van Adrighem -Date: Thu Jan 16 17:11:18 2003 +0000 - - Dutch translation updated. - - 2003-01-16 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++ - po/nl.po | 146 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 80 insertions(+), 70 deletions(-) - -commit f14041d8be5f61c7080c03a00a8e12d210ae6137 -Author: Christian Rose -Date: Wed Jan 15 00:35:25 2003 +0000 - - Updated Swedish translation. - - 2003-01-15 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++ - po/sv.po | 151 ++++++++++++++++++++++++++++++----------------------------- - 2 files changed, 81 insertions(+), 74 deletions(-) - -commit c0f7f7b356da2665cef68281b711f780ece55e0e -Author: Marco Pesenti Gritti -Date: Mon Jan 13 20:54:44 2003 +0000 - - Dont crash when schemas installed incorrectly - - 2003-01-13 Marco Pesenti Gritti - - * embed/mozilla/FilePicker.cpp: - * src/general-prefs.c: (create_default_charset_menu): - - Dont crash when schemas installed incorrectly - - ChangeLog | 7 +++++++ - embed/mozilla/FilePicker.cpp | 1 + - src/general-prefs.c | 1 + - 3 files changed, 9 insertions(+) - -commit 0b915d7b876435fdd1292f1d8c0f35628c8e859d -Author: Alex Duggan -Date: Mon Jan 13 19:54:46 2003 +0000 - - s/Galeon/Epiphany/ - - 2003-01-13 Alex Duggan - - * configure.in: - * embed/mozilla/ExternalProtocolService.cpp: - * embed/mozilla/ExternalProtocolService.h: - * embed/mozilla/FilePicker.h: - * embed/mozilla/FtpProtocolHandler.h: - * embed/mozilla/IRCProtocolHandler.h: - * embed/mozilla/MailtoProtocolHandler.h: - * embed/mozilla/PrintingPromptService.h: - * embed/mozilla/PromptService.cpp: - * embed/mozilla/PromptService.h: - * embed/mozilla/StartHereProtocolHandler.h: - * idl/EphyAutomation.idl: - - s/Galeon/Epiphany/ - - ChangeLog | 17 +++++++++++++++++ - configure.in | 4 ++-- - embed/mozilla/ExternalProtocolService.cpp | 2 +- - embed/mozilla/ExternalProtocolService.h | 2 +- - embed/mozilla/FilePicker.h | 2 +- - embed/mozilla/FtpProtocolHandler.h | 4 ++-- - embed/mozilla/IRCProtocolHandler.h | 4 ++-- - embed/mozilla/MailtoProtocolHandler.h | 4 ++-- - embed/mozilla/PrintingPromptService.h | 2 +- - embed/mozilla/PromptService.cpp | 2 +- - embed/mozilla/PromptService.h | 2 +- - embed/mozilla/StartHereProtocolHandler.h | 2 +- - idl/EphyAutomation.idl | 2 +- - 13 files changed, 33 insertions(+), 16 deletions(-) - -commit afb43e43599602fba8c1b9178d17c1a8a14867e1 -Author: Marco Pesenti Gritti -Date: Mon Jan 13 19:01:47 2003 +0000 - - Use the title also for hosts in history. Cleanup hosts matching code a - - 2003-01-13 Marco Pesenti Gritti - - * embed/ephy-history.c: (ephy_history_save), (hosts_added_cb), - (hosts_removed_cb), (ephy_history_finalize), - (ephy_history_host_set_title), (ephy_history_host_visited), - (ephy_history_add_host), (ephy_history_visited), - (ephy_history_add_page), (ephy_history_set_page_title): - * src/ephy-history-model.c: (ephy_history_model_get_value): - * src/ephy-shell.c: (ephy_shell_get_autocompletion): - - Use the title also for hosts in history. - Cleanup hosts matching code a lot. - - ChangeLog | 13 ++++ - embed/ephy-history.c | 175 ++++++++++++++++++++++++++++++++--------------- - src/ephy-history-model.c | 3 +- - src/ephy-shell.c | 1 + - 4 files changed, 136 insertions(+), 56 deletions(-) - -commit 9ff4f5f92f9db92f4b420430d6368feabc26490b -Author: Marco Pesenti Gritti -Date: Mon Jan 13 12:29:55 2003 +0000 - - Use favicons in bookmarks. Use titles for session history when possible. - - 2003-01-13 Marco Pesenti Gritti - - * TODO: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_get): - * src/bookmarks/ephy-bookmarks-editor.c: - (ephy_bookmarks_editor_construct): - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_set_icon): - * src/bookmarks/ephy-bookmarks.h: - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_finalize), - (ephy_new_bookmark_add), (ephy_new_bookmark_init), - (ephy_new_bookmark_set_smarturl), (ephy_new_bookmark_set_icon): - * src/bookmarks/ephy-new-bookmark.h: - * src/bookmarks/ephy-node-view.c: (ephy_node_view_add_column), - (ephy_node_view_add_icon_column): - * src/bookmarks/ephy-node-view.h: - * src/bookmarks/ephy-tree-model-node.c: - (ephy_tree_model_node_get_column_type), (get_icon_pixbuf), - (ephy_tree_model_node_get_value), - (ephy_tree_model_node_column_get_type): - * src/bookmarks/ephy-tree-model-node.h: - * src/ephy-history-model.c: (ephy_history_model_get_value): - * src/ephy-navigation-button.c: (setup_back_or_forward_menu): - * src/ephy-tab.c: (ephy_tab_favicon_cb): - * src/window-commands.c: (window_cmd_bookmarks_add_default): - - Use favicons in bookmarks. - Use titles for session history when possible. - - ChangeLog | 28 ++++++++++++++++++++++++++++ - TODO | 1 + - embed/ephy-favicon-cache.c | 2 ++ - src/bookmarks/ephy-bookmarks-editor.c | 1 + - src/bookmarks/ephy-bookmarks.c | 23 +++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks.h | 7 ++++++- - src/bookmarks/ephy-new-bookmark.c | 18 ++++++++++++++++++ - src/bookmarks/ephy-new-bookmark.h | 3 +++ - src/bookmarks/ephy-node-view.c | 20 ++++++++++++++++++++ - src/bookmarks/ephy-node-view.h | 3 +++ - src/bookmarks/ephy-tree-model-node.c | 31 +++++++++++++++++++++++++++++++ - src/bookmarks/ephy-tree-model-node.h | 1 + - src/ephy-navigation-button.c | 4 ++-- - src/ephy-tab.c | 5 +++++ - src/window-commands.c | 5 +++++ - 15 files changed, 149 insertions(+), 3 deletions(-) - -commit 225e05938a6bff23249516da4d277d7d742e2283 -Author: Vincent van Adrighem -Date: Mon Jan 13 11:58:45 2003 +0000 - - Dutch translation updated. - - 2003-01-13 Vincent van Adrighem - - * nl.po: Dutch translation updated. - - po/ChangeLog | 4 ++ - po/nl.po | 197 ++++++++++++++++++++++++++++------------------------------- - 2 files changed, 97 insertions(+), 104 deletions(-) - -commit 7b711e596038c4c5e2fe9b9dbb2a6e6326fa4136 -Author: Marco Pesenti Gritti -Date: Sun Jan 12 23:48:15 2003 +0000 - - correctly update window icon when the page doesnt specify any favicon url. - - 2003-01-13 Marco Pesenti Gritti - - * src/ephy-window.c: (update_favicon_control): - - correctly update window icon when the page doesnt - specify any favicon url. - - ChangeLog | 7 +++++++ - src/ephy-window.c | 4 ++-- - 2 files changed, 9 insertions(+), 2 deletions(-) - -commit 00fec89f0ce1f11af7783da3bcc1d40413bbe377 -Author: Kjartan Maraas -Date: Sun Jan 12 21:20:42 2003 +0000 - - Added "no". - - 2003-01-12 Kjartan Maraas - - * configure.in (ALL_LINGUAS): Added "no". - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit bab42d4e2aa3d4828235f991aaf466a0a809bf1c -Author: Kjartan Maraas -Date: Sun Jan 12 21:20:02 2003 +0000 - - Added Norwegian translation. - - 2003-01-12 Kjartan Maraas - - * no.po: Added Norwegian translation. - - po/ChangeLog | 4 + - po/no.po | 4024 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 4028 insertions(+) - -commit 94d3a02079ea65a67bc7e5bd4f2145595ccdb93b -Author: Kenneth Christiansen -Date: Sun Jan 12 19:06:26 2003 +0000 - - Added da to ALL_LINGUAS - - 2003-01-12 Kenneth Christiansen - - * configure.in: Added da to ALL_LINGUAS - - ChangeLog | 4 + - configure.in | 2 +- - po/da.po | 7073 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 3 files changed, 7078 insertions(+), 1 deletion(-) - -commit 71916ff56019a87b14466b29c5da352aa1b0d968 -Author: Marco Pesenti Gritti -Date: Sun Jan 12 13:53:15 2003 +0000 - - *** empty log message *** - - configure.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -commit 0b4919fb72473a94f07d4d01d8daa412b31c7031 -Author: Marco Pesenti Gritti -Date: Sun Jan 12 13:53:01 2003 +0000 - - 0.4.2 Release. Switch configure.in to 0.5.0. - - 2003-01-12 Marco Pesenti Gritti - - * configure.in: - - 0.4.2 Release. Switch configure.in to 0.5.0. - - * embed/mozilla/ContentHandler.cpp: - * embed/mozilla/PrintingPromptService.cpp: - * embed/mozilla/mozilla-embed.cpp: - - Remove some stupid printf. - - ChangeLog | 12 ++++++++++++ - embed/mozilla/ContentHandler.cpp | 1 - - embed/mozilla/PrintingPromptService.cpp | 3 --- - embed/mozilla/mozilla-embed.cpp | 2 +- - 4 files changed, 13 insertions(+), 5 deletions(-) - -commit 54df3f0ea343005402ab02ab90b137783d0bdd72 -Author: Marco Pesenti Gritti -Date: Sun Jan 12 13:18:44 2003 +0000 - - 2003-01-12 Marco Pesenti Gritti - - * configure.in: - * doc/debugging.txt: - * embed/ephy-embed-utils.c: - (ephy_embed_utils_build_charsets_submenu): - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_init): - * embed/ephy-history.c: (ephy_history_save): - * embed/mozilla/mozilla-embed.cpp: - * lib/ephy-autocompletion.c: (ephy_autocompletion_reset), - (ephy_autocompletion_get_common_prefix), - (ephy_autocompletion_refine_matches), - (ephy_autocompletion_update_matches_full), - (ephy_autocompletion_sort_by_score), - (ephy_autocompletion_data_changed_cb), (acma_grow): - * lib/ephy-debug.c: (log_module), (ephy_debug_init), - (ephy_profiler_new), (ephy_should_profile), (ephy_profiler_dump), - (ephy_profiler_free), (ephy_profiler_start), (ephy_profiler_stop): - * lib/ephy-debug.h: - * lib/ephy-filesystem-autocompletion.c: - (ephy_filesystem_autocompletion_finalize_impl), - (gfa_load_directory_cb), - (ephy_filesystem_autocompletion_set_current_dir), - (ephy_filesystem_autocompletion_set_base_dir): - * lib/ephy-start-here.c: - * lib/widgets/ephy-autocompletion-window.c: - (ephy_autocompletion_window_get_dimensions), - (ephy_autocompletion_window_fill_store_chunk), - (ephy_autocompletion_window_show), - (ephy_autocompletion_window_key_press_cb): - * lib/widgets/ephy-location-entry.c: - (ephy_location_entry_finalize_impl), - (ephy_location_entry_autocompletion_show_alternatives_to), - (ephy_location_entry_autocompletion_to), - (ephy_location_entry_activate_cb), - (ephy_location_entry_autocompletion_sources_changed_cb), - (ephy_location_entry_autocompletion_window_url_activated_cb), - (ephy_location_entry_autocompletion_window_hidden_cb): - * src/bookmarks/ephy-bookmarks-editor.c: - * src/bookmarks/ephy-bookmarks.c: - (ephy_bookmarks_clean_empty_keywords), (ephy_bookmarks_save), - (ephy_bookmarks_find_keyword), (diff_keywords): - * src/bookmarks/ephy-keywords-entry.c: (try_to_expand_keyword): - * src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_set_title): - * src/ephy-favorites-menu.c: (ephy_favorites_menu_rebuild): - * src/ephy-nautilus-view.c: (gnv_cmd_set_charset), (if): - * src/ephy-navigation-button.c: - (ephy_navigation_button_finalize_impl): - * src/ephy-shell.c: (ephy_shell_finalize): - * src/ephy-tab.c: (ephy_tab_embed_destroy_cb), (ephy_tab_finalize): - - ChangeLog | 60 ++++++++++++ - configure.in | 1 + - doc/debugging.txt | 35 +++++++ - embed/ephy-embed-utils.c | 21 ++-- - embed/ephy-favicon-cache.c | 6 +- - embed/ephy-history.c | 6 +- - embed/mozilla/mozilla-embed.cpp | 7 +- - lib/ephy-autocompletion.c | 93 +++++------------- - lib/ephy-debug.c | 162 +++++++++++++++++++++++++++++-- - lib/ephy-debug.h | 44 ++++++++- - lib/ephy-filesystem-autocompletion.c | 20 ++-- - lib/ephy-start-here.c | 3 - - lib/widgets/ephy-autocompletion-window.c | 70 ++----------- - lib/widgets/ephy-location-entry.c | 28 +++--- - src/bookmarks/ephy-bookmarks-editor.c | 3 - - src/bookmarks/ephy-bookmarks.c | 19 ++-- - src/bookmarks/ephy-keywords-entry.c | 14 +-- - src/bookmarks/ephy-new-bookmark.c | 6 +- - src/ephy-favorites-menu.c | 9 +- - src/ephy-nautilus-view.c | 29 +++--- - src/ephy-navigation-button.c | 10 +- - src/ephy-shell.c | 8 +- - src/ephy-tab.c | 14 +-- - src/ephy-tbi.c | 10 +- - src/ephy-window.c | 5 +- - src/toolbar.c | 17 ++-- - 26 files changed, 409 insertions(+), 291 deletions(-) - -commit ec474aa2c989710ab13aafaca9405f767f759b63 -Author: Andras Timar -Date: Sun Jan 12 11:14:14 2003 +0000 - - Added de, hu and nl to ALL_LINGUAS. - - 2003-01-12 Andras Timar - - * configure.in: Added de, hu and nl to ALL_LINGUAS. - - ChangeLog | 4 ++++ - configure.in | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -commit f4957ea70e4b4590a118babe01a19bec4c1c0529 -Author: Andras Timar -Date: Sun Jan 12 11:11:55 2003 +0000 - - Added Hungarian translation. - - 2003-01-12 Andras Timar - - * hu.po: Added Hungarian translation. - - po/ChangeLog | 4 + - po/hu.po | 3110 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 3114 insertions(+) - -commit 61abe1395add8bfcb726c739c4d1d633bed9f77d -Author: Marco Pesenti Gritti -Date: Sun Jan 12 01:25:12 2003 +0000 - - *** empty log message *** - - lib/ephy-debug.c | 47 +++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-debug.h | 40 ++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 87 insertions(+) - -commit dcccb22acc252879837bb08a7f6eaaea91005860 -Author: Marco Pesenti Gritti -Date: Sun Jan 12 01:24:41 2003 +0000 - - Move root nodes ids to ephy-types. Simple logging facility: - - 2003-01-12 Marco Pesenti Gritti - - * configure.in: - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download): - * embed/ephy-history.c: - * lib/Makefile.am: - * lib/ephy-types.h: - * src/bookmarks/ephy-bookmarks.c: - * src/ephy-shell.c: (ephy_shell_init): - - Move root nodes ids to ephy-types. - Simple logging facility: - EPHY_DEBUG_MODULES= all | filename - will enable it. - Need to provide a way to disable it and to get rid - of the old per file crap. - - ChangeLog | 17 +++++++++++++++++ - configure.in | 2 +- - embed/ephy-favicon-cache.c | 8 +++----- - embed/ephy-history.c | 7 +------ - lib/Makefile.am | 3 ++- - lib/ephy-types.h | 11 +++++++++++ - src/bookmarks/ephy-bookmarks.c | 6 ------ - src/ephy-shell.c | 2 ++ - 8 files changed, 37 insertions(+), 19 deletions(-) - -commit 594097cc0181cfea7e8205448a7b6e315e311a36 -Author: Marco Pesenti Gritti -Date: Sat Jan 11 20:12:48 2003 +0000 - - Reimplement favicons. Now all exit crashes related to connections left - - 2003-01-11 Marco Pesenti Gritti - - * embed/Makefile.am: - * embed/ephy-embed-favicon.c: - * embed/ephy-embed-favicon.h: - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_favicon_cache): - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_class_init), - (ephy_favicon_cache_new), (ephy_favicon_cache_load), - (icon_is_obsolete), (icons_added_cb), (icons_removed_cb), - (remove_obsolete_icons), (ephy_favicon_cache_save), - (ephy_favicon_cache_init), (kill_download), - (cleanup_downloads_hash), (ephy_favicon_cache_finalize), - (favicon_name_build), (favicon_download_completed_cb), - (ephy_favicon_cache_download), (ephy_favicon_cache_get): - * embed/ephy-favicon-cache.h: - * embed/ephy-favicon.c: - * embed/ephy-favicon.h: - * embed/mozilla/mozilla-embed-shell.cpp: - * src/ephy-tab.c: (ephy_tab_init), (ephy_tab_favicon_cb), - (ephy_tab_location_cb), (ephy_tab_get_location), - (ephy_tab_get_favicon_url): - * src/ephy-tab.h: - * src/ephy-window.c: (update_favicon_control): - * src/toolbar.c: (toolbar_setup_favicon_ebox), - (toolbar_update_favicon): - - Reimplement favicons. Now all exit crashes related - to connections left open by favicons should be fixed. - - ChangeLog | 29 ++ - embed/Makefile.am | 4 - - embed/ephy-embed-favicon.c | 251 ----------------- - embed/ephy-embed-favicon.h | 63 ----- - embed/ephy-embed-shell.c | 5 +- - embed/ephy-favicon-cache.c | 493 +++++++++++++++++++++------------- - embed/ephy-favicon-cache.h | 20 +- - embed/ephy-favicon.c | 280 ------------------- - embed/ephy-favicon.h | 64 ----- - embed/mozilla/mozilla-embed-shell.cpp | 6 +- - src/ephy-tab.c | 37 +++ - src/ephy-tab.h | 2 + - src/ephy-window.c | 4 +- - src/toolbar.c | 29 +- - 14 files changed, 419 insertions(+), 868 deletions(-) - -commit 67a3a6a3e873bf7972d76cee8396b8dec08fdcae -Author: Marco Pesenti Gritti -Date: Sat Jan 11 12:57:26 2003 +0000 - - left this out - - embed/mozilla/ProgressListener.cpp | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -commit 476dd3a483d5002b07859036b1b7dbb6f883e4f9 -Author: Marco Pesenti Gritti -Date: Sat Jan 11 12:56:54 2003 +0000 - - Implement a cancel api. Fix refcount to really destroy the WebPersist - - 2003-01-11 Marco Pesenti Gritti - - * embed/ephy-embed-persist.c: (ephy_embed_persist_cancel): - * embed/ephy-embed-persist.h: - * embed/mozilla/ProgressListener.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed-persist.h: - - Implement a cancel api. Fix refcount to really destroy - the WebPersist object when done. - - ChangeLog | 11 ++++++++++ - embed/ephy-embed-persist.c | 7 +++++++ - embed/ephy-embed-persist.h | 6 ++++++ - embed/mozilla/mozilla-embed-persist.cpp | 37 ++++++++++++++++++++++++++++----- - embed/mozilla/mozilla-embed-persist.h | 4 +++- - 5 files changed, 59 insertions(+), 6 deletions(-) - -commit aa24bfd629dfa18c35b98eedcbb06f6d1e64cec2 -Author: Vincent van Adrighem -Date: Fri Jan 10 17:55:19 2003 +0000 - - Dutch translation added. - - 2003-01-10 Vincent van Adrighem - - * nl.po: Dutch translation added. - - po/ChangeLog | 4 + - po/nl.po | 5736 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 5740 insertions(+) - -commit f3abccbb20e7258eef7e88d47e40e20e59473f65 -Author: Marco Pesenti Gritti -Date: Fri Jan 10 14:45:29 2003 +0000 - - Download favicon only when it's not already on disk. As side effect avoid - - 2003-01-10 Marco Pesenti Gritti - - * embed/ephy-favicon-cache.c: (ephy_favicon_cache_insert_from_url): - - Download favicon only when it's not already on disk. As side effect - avoid most crashes on exit. Still need to really fix that. - - ChangeLog | 7 +++++++ - embed/ephy-favicon-cache.c | 6 ++++-- - 2 files changed, 11 insertions(+), 2 deletions(-) - -commit 678e71b94d7221c659bcc93332a071dc56d10d30 -Author: Marco Pesenti Gritti -Date: Thu Jan 9 21:25:32 2003 +0000 - - Fix schemas build. - - 2003-01-09 Marco Pesenti Gritti - - * data/Makefile.am: - - Fix schemas build. - - * embed/mozilla/mozilla-embed-persist.cpp: - - Api change grrrr. - - ChangeLog | 10 ++++++++++ - data/Makefile.am | 6 ++++-- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - 3 files changed, 15 insertions(+), 3 deletions(-) - -commit b89760dbb2551973cdf6cc8647bf518b0f7eb564 -Author: Lee Willis -Date: Thu Jan 9 19:50:09 2003 +0000 - - Destroy "Invalid path dialog" correctly - - 2003-01-09 Lee Willis - - * embed/mozilla/FilePicker.cpp: - - Destroy "Invalid path dialog" correctly - - ChangeLog | 6 ++++++ - embed/mozilla/FilePicker.cpp | 1 + - 2 files changed, 7 insertions(+) - -commit 237622044c96f0cfcba6d7fe21b908beb085b2e4 -Author: Marco Pesenti Gritti -Date: Thu Jan 9 19:40:18 2003 +0000 - - Rehash link context menu order to be hig compliant. Set a desktop icon. - - 2003-01-09 Marco Pesenti Gritti - - * data/art/Makefile.am: - * data/epiphany.desktop.in: - * data/ui/epiphany-ui.xml.in: - * embed/ephy-embed-popup.c: (embed_popup_open_link_cmd): - * src/ephy-main.c: (main): - * src/window-commands.c: (window_cmd_set_charset): - - Rehash link context menu order to be hig compliant. - Set a desktop icon. - - ChangeLog | 12 ++++++++++++ - data/art/Makefile.am | 5 ++++- - data/epiphany.desktop.in | 2 +- - data/ui/epiphany-ui.xml.in | 20 ++++++++++++-------- - embed/ephy-embed-popup.c | 21 +++++++++++++++++++++ - src/ephy-main.c | 8 ++++++-- - src/window-commands.c | 1 - - 7 files changed, 56 insertions(+), 13 deletions(-) - -commit 8103e076a47bcf1f9b9cab2d3c64f0e1f319cccc -Author: Marco Pesenti Gritti -Date: Thu Jan 9 13:31:32 2003 +0000 - - Reset link message when changing page. - - 2003-01-09 Marco Pesenti Gritti - - * src/ephy-tab.c: (ephy_tab_location_cb): - - Reset link message when changing page. - - ChangeLog | 6 ++++++ - src/ephy-tab.c | 1 + - 2 files changed, 7 insertions(+) - -commit 7d278d4b5910d1adc5e075882aa559e8da407c4a -Author: Marco Pesenti Gritti -Date: Thu Jan 9 13:03:55 2003 +0000 - - Extend ephy node to allow some reversed ids. Use it for base - - 2003-01-09 Marco Pesenti Gritti - - * TODO: - * embed/ephy-history.c: (ephy_history_init): - * embed/mozilla/FilePicker.cpp: - * lib/ephy-node.c: (ephy_node_new_with_id), - (ephy_node_system_init): - * lib/ephy-node.h: - * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): - - Extend ephy node to allow some reversed ids. - Use it for base bookmarks/history elements, should - fix bookmarks lossage. - Fix filepicker initialization. - - ChangeLog | 15 +++++++++++++++ - TODO | 1 + - embed/ephy-history.c | 12 +++++++++--- - embed/mozilla/FilePicker.cpp | 2 +- - lib/ephy-node.c | 22 ++++++++++++++++++++-- - lib/ephy-node.h | 2 ++ - src/bookmarks/ephy-bookmarks.c | 10 ++++++++-- - 7 files changed, 56 insertions(+), 8 deletions(-) - -commit 05dc477f8e2a3943fd5eea73ae137cbcd544ce31 -Author: Christian Rose -Date: Wed Jan 8 20:55:49 2003 +0000 - - Updated Swedish translation. - - 2003-01-08 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++ - po/sv.po | 121 ++++++++++++++++++++++++++++++++++++----------------------- - 2 files changed, 79 insertions(+), 46 deletions(-) - -commit fdb2e42a03453a26770928a56b8b22f3815d4369 -Author: Marco Pesenti Gritti -Date: Wed Jan 8 20:22:57 2003 +0000 - - *** empty log message *** - - data/starthere/.cvsignore | 1 + - 1 file changed, 1 insertion(+) - -commit 74f30634c4d7187f9c04b0b4e7dfad1253c5616c -Author: Marco Pesenti Gritti -Date: Wed Jan 8 19:12:33 2003 +0000 - - More start here page work, importing bookmarks from mozilla now should - - - 2003-01-08 Marco Pesenti Gritti - - * TODO: - * data/starthere/Makefile.am: - * data/starthere/index.xml.in: - * data/starthere/section.xsl: - * data/starthere/smartbookmarks.xml.in: - * embed/ephy-embed-shell.c: (ephy_embed_shell_class_init): - * embed/ephy-embed-shell.h: - * embed/mozilla/StartHereProtocolHandler.cpp: - * po/POTFILES.in: - * src/ephy-shell.c: (ephy_shell_command_cb), (ephy_shell_init): - - More start here page work, importing bookmarks from mozilla - now should work. - - ChangeLog | 16 ++++++++++++ - TODO | 2 ++ - data/starthere/Makefile.am | 2 +- - data/starthere/index.xml.in | 6 +++-- - data/starthere/section.xsl | 8 +++++- - data/starthere/smartbookmarks.xml.in | 28 +++++++++++++++++++++ - embed/ephy-embed-shell.c | 12 +++++++++ - embed/ephy-embed-shell.h | 4 +++ - embed/mozilla/StartHereProtocolHandler.cpp | 19 ++++++++++++++- - po/POTFILES.in | 3 +++ - src/ephy-shell.c | 39 ++++++++++++++++++++++++++++++ - 11 files changed, 134 insertions(+), 5 deletions(-) - -commit 5df83cc343c496873f84e939a6367b69ad9286bb -Author: Christian Rose -Date: Wed Jan 8 10:39:41 2003 +0000 - - Updated Swedish translation. - - 2003-01-08 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 ++++ - po/sv.po | 73 ++++++++++++++++++++++++++++++++++++++++-------------------- - 2 files changed, 53 insertions(+), 24 deletions(-) - -commit 771459e6bd23da25d887685472752b26b7e61e6a -Author: Christian Neumair -Date: Tue Jan 7 21:08:58 2003 +0000 - - Updated German translation, added POTFILES.skip. - - po/ChangeLog | 5 + - po/POTFILES.skip | 3 + - po/de.po | 1020 ++++++++++++++++++++++++++++-------------------------- - 3 files changed, 536 insertions(+), 492 deletions(-) - -commit cefb3398ca0012a9bca88f65e6c882b44f756a0b -Author: Marco Pesenti Gritti -Date: Tue Jan 7 20:37:51 2003 +0000 - - revert - - embed/mozilla/mozilla-embed-shell.cpp | 35 ----------------------------------- - 1 file changed, 35 deletions(-) - -commit 977e13469d48102bc3812140bdf3faf955e9f11a -Author: Marco Pesenti Gritti -Date: Tue Jan 7 20:34:09 2003 +0000 - - More work on the start here page. - - 2003-01-07 Marco Pesenti Gritti - - * data/starthere/Makefile.am: - * data/starthere/index.xml.in: - * data/starthere/section.css: - * data/starthere/section.xsl: - * embed/mozilla/StartHereProtocolHandler.cpp: - * embed/mozilla/mozilla-embed-shell.cpp: - * lib/ephy-file-helpers.c: (ephy_ensure_dir_exists), - (ephy_find_file_recursive), (ephy_file_find): - * lib/ephy-file-helpers.h: - * lib/ephy-start-here.c: (ephy_start_here_init), - (ephy_start_here_finalize), (is_my_lang), (mozilla_bookmarks), - (attach_content), (build_content), (ephy_start_here_get_page), - (ephy_start_here_get_base_uri): - * lib/ephy-start-here.h: - - More work on the start here page. - - ChangeLog | 19 ++++++ - data/starthere/Makefile.am | 7 ++- - data/starthere/index.xml.in | 19 +++++- - data/starthere/section.css | 29 +++++++++ - data/starthere/section.xsl | 45 +++++++++++++- - embed/mozilla/StartHereProtocolHandler.cpp | 22 ++++--- - embed/mozilla/mozilla-embed-shell.cpp | 35 +++++++++++ - lib/ephy-file-helpers.c | 41 +++++++++++++ - lib/ephy-file-helpers.h | 3 + - lib/ephy-start-here.c | 99 +++++++++++++++++++++++++----- - lib/ephy-start-here.h | 2 + - 11 files changed, 290 insertions(+), 31 deletions(-) - -commit c088c9ab24ffeafeef6b7b092facb6f3f57efc28 -Author: Christian Rose -Date: Tue Jan 7 20:22:44 2003 +0000 - - Updated Swedish translation. - - 2003-01-07 Christian Rose - - * sv.po: Updated Swedish translation. - - po/ChangeLog | 4 + - po/sv.po | 307 ++++++++++++++++++++++++++++++++--------------------------- - 2 files changed, 171 insertions(+), 140 deletions(-) - -commit c5a51657ad292684eb37190d8e4f484a9017d248 -Author: Marco Pesenti Gritti -Date: Tue Jan 7 13:29:57 2003 +0000 - - *** empty log message *** - - data/starthere/.cvsignore | 3 +++ - 1 file changed, 3 insertions(+) - -commit 1e5eb9acc64d1ba67aa6101087f1b0f94e1674d1 -Author: Marco Pesenti Gritti -Date: Tue Jan 7 13:29:05 2003 +0000 - - forgot these - - lib/ephy-start-here.c | 242 ++++++++++++++++++++++++++++++++++++++++++++++++++ - lib/ephy-start-here.h | 59 ++++++++++++ - 2 files changed, 301 insertions(+) - -commit 07e1bf23744ac4305406c416e1361582948a1d3e -Author: Marco Pesenti Gritti -Date: Tue Jan 7 13:28:22 2003 +0000 - - Architecture for translatable xml/xsl start page. - - 2003-01-07 Marco Pesenti Gritti - - * configure.in: - * data/Makefile.am: - * data/start_here.html: - * data/starthere/Makefile.am: - * data/starthere/index.xml.in: - * data/starthere/section.xsl: - * embed/mozilla/StartHereProtocolHandler.cpp: - * lib/Makefile.am: - * lib/widgets/ephy-autocompletion-window.c: - (hack_tree_view_move_selection): - * po/POTFILES.in: - - Architecture for translatable xml/xsl start page. - - ChangeLog | 21 ++++++++++++ - configure.in | 1 + - data/Makefile.am | 6 +--- - data/start_here.html | 23 ------------- - data/starthere/Makefile.am | 12 +++++++ - data/starthere/index.xml.in | 8 +++++ - data/starthere/section.xsl | 23 +++++++++++++ - embed/mozilla/StartHereProtocolHandler.cpp | 52 ++++++++++++++++++++++-------- - lib/Makefile.am | 2 ++ - lib/widgets/ephy-autocompletion-window.c | 2 +- - po/POTFILES.in | 1 + - 11 files changed, 108 insertions(+), 43 deletions(-) - -commit 5d3540a4c4e9606adef1575b92c0142f65f1ee86 -Author: Christian Neumair -Date: Mon Jan 6 20:10:55 2003 +0000 - - Updated German translation. - - po/ChangeLog | 8 +- - po/de.po | 258 +++++++++++++++++++++++++++++++---------------------------- - 2 files changed, 142 insertions(+), 124 deletions(-) - -commit b64094100a910ba2068d3cb64c1595dc02d795d2 -Author: Marco Pesenti Gritti -Date: Mon Jan 6 10:38:03 2003 +0000 - - Make sure event listener is ever attached. Never allow to override - - 2003-01-06 Marco Pesenti Gritti - - * TODO: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/mozilla-embed.cpp: - * src/ephy-tab.c: (ephy_tab_init), (ephy_tab_link_message_cb), - (ephy_tab_get_status_message): - - Make sure event listener is ever attached. - Never allow to override statusbar messages. - - ChangeLog | 12 ++++++++++++ - TODO | 1 + - embed/mozilla/EphyWrapper.cpp | 39 +++++++++++++++++---------------------- - embed/mozilla/EphyWrapper.h | 7 +++---- - embed/mozilla/mozilla-embed.cpp | 17 +++++++++-------- - src/ephy-tab.c | 32 ++++++-------------------------- - 6 files changed, 48 insertions(+), 60 deletions(-) - -commit ae767a6174e353acb3b1a850fdefdffebeec9817 -Author: Marco Pesenti Gritti -Date: Sun Jan 5 13:51:43 2003 +0000 - - Make GaleonShell inherit from GaleonEmbedShell. Ref the shell when using - - 2003-01-05 Marco Pesenti Gritti - - * data/art/Makefile.am: - * data/art/epiphany.png: - * data/epiphany.schemas.in: - * data/glade/epiphany.glade: - * embed/downloader-view.c: (downloader_view_init), - (downloader_view_finalize): - * embed/ephy-embed-favicon.c: (ephy_embed_favicon_set_property): - * embed/ephy-embed-shell.c: (ephy_embed_shell_get_impl), - (ephy_embed_shell_get_type), (ephy_embed_shell_new): - * embed/ephy-embed-shell.h: - * embed/ephy-embed-utils.c: - (ephy_embed_utils_build_charsets_submenu): - * embed/mozilla/mozilla-embed-persist.cpp: - * embed/mozilla/mozilla-embed.cpp: - * src/appearance-prefs.c: (setup_font_menu): - * src/bookmarks/ephy-bookmarks.c: (compute_lower_fav), - (ephy_setup_history_notifiers): - * src/ephy-main.c: (main): - * src/ephy-nautilus-view.c: (ephy_nautilus_view_instance_init): - * src/ephy-shell.c: (ephy_shell_get_type), (ephy_shell_init), - (ephy_shell_finalize), (build_homepage_url), - (ephy_shell_get_autocompletion): - * src/ephy-shell.h: - * src/ephy-tab.c: (ephy_tab_init), (ephy_tab_location_cb), - (ephy_tab_visibility_cb): - * src/ephy-window.c: (favicon_cache_changed_cb), - (ephy_window_init), (update_favicon_control): - * src/general-prefs.c: (create_default_charset_menu): - * src/history-dialog.c: (history_dialog_init): - * src/pdm-dialog.c: (pdm_dialog_cookie_remove), - (pdm_dialog_password_remove), (pdm_dialog_cookies_free), - (pdm_dialog_passwords_free), (pdm_dialog_init): - * src/prefs-dialog.c: (prefs_clear_memory_cache_button_clicked_cb), - (prefs_clear_disk_cache_button_clicked_cb): - * src/window-commands.c: (window_cmd_file_open): - - Make GaleonShell inherit from GaleonEmbedShell. - Ref the shell when using the downloader. - Use favicons for the window icon when possible. - This required to use jimmac icon as default, - we still dont have his permission, I'll remove it - later if necessary. - - ChangeLog | 45 ++++++++++++++++++++++++++++++++ - data/art/Makefile.am | 3 ++- - data/art/epiphany.png | Bin 0 -> 3539 bytes - data/epiphany.schemas.in | 11 ++++++++ - data/glade/epiphany.glade | 1 - - embed/downloader-view.c | 8 ++++-- - embed/ephy-embed-favicon.c | 12 --------- - embed/ephy-embed-shell.c | 27 ++++++------------- - embed/ephy-embed-shell.h | 13 ++++----- - embed/ephy-embed-utils.c | 1 + - embed/mozilla/mozilla-embed-persist.cpp | 3 ++- - embed/mozilla/mozilla-embed.cpp | 20 +++++++------- - src/appearance-prefs.c | 5 +--- - src/bookmarks/ephy-bookmarks.c | 4 +-- - src/ephy-main.c | 8 +++--- - src/ephy-nautilus-view.c | 4 +-- - src/ephy-shell.c | 42 +++++++---------------------- - src/ephy-shell.h | 6 ++--- - src/ephy-tab.c | 5 ++-- - src/ephy-window.c | 29 ++++++++++++++++++++ - src/general-prefs.c | 2 +- - src/history-dialog.c | 2 +- - src/pdm-dialog.c | 17 ++++++------ - src/prefs-dialog.c | 4 +-- - src/window-commands.c | 3 +-- - 25 files changed, 159 insertions(+), 116 deletions(-) - -commit a3f1d414e8ae27d380fe224bdf4f0a9e9740285c -Author: Marco Pesenti Gritti -Date: Sat Jan 4 20:28:47 2003 +0000 - - Really update favicon when switching tab. - - 2003-01-04 Marco Pesenti Gritti - - * embed/ephy-embed-favicon.c: (update_url), (location_changed_cb), - (ephy_embed_favicon_set_property): - * src/toolbar.c: (toolbar_update_favicon): - - Really update favicon when switching tab. - - ChangeLog | 8 ++++++++ - embed/ephy-embed-favicon.c | 21 ++++++++++++++++----- - src/toolbar.c | 2 +- - 3 files changed, 25 insertions(+), 6 deletions(-) - -commit ee75ead90dda40cfc066a52969ca2f91fe04ad95 -Author: Marco Pesenti Gritti -Date: Sat Jan 4 20:08:26 2003 +0000 - - Remove unnecessary markup from translations. - - 2003-01-04 Marco Pesenti Gritti - - * configure.in: - * embed/mozilla/PromptService.cpp: - * embed/mozilla/mozilla-embed-persist.cpp: - * lib/toolbar/ephy-tbi-zoom.c: (ephy_tbi_zoom_get_widget_impl): - * lib/widgets/ephy-notebook.c: (tab_build_label): - * src/bookmarks/ephy-bookmarks-editor.c: (build_editing_table), - (build_search_box): - * src/bookmarks/ephy-new-bookmark.c: (build_editing_table): - * src/ephy-window.c: (ephy_window_notebook_switch_page_cb): - * src/pdm-dialog.c: (show_cookies_properties): - * src/session.c: (crashed_resume_dialog): - - Remove unnecessary markup from translations. - - ChangeLog | 16 ++++++++++++++++ - configure.in | 4 +++- - embed/mozilla/PromptService.cpp | 4 +--- - embed/mozilla/mozilla-embed-persist.cpp | 2 +- - lib/toolbar/ephy-tbi-zoom.c | 2 +- - lib/widgets/ephy-notebook.c | 4 +++- - src/bookmarks/ephy-bookmarks-editor.c | 14 +++++++++++--- - src/bookmarks/ephy-new-bookmark.c | 9 +++++++-- - src/ephy-window.c | 3 +-- - src/pdm-dialog.c | 17 +++++++++++++---- - src/session.c | 10 ++++++---- - 11 files changed, 63 insertions(+), 22 deletions(-) - -commit 1858d9bed5777d9c1c432da46c26c9b89bdc988c -Author: Christian Neumair -Date: Fri Jan 3 13:31:23 2003 +0000 - - Added German translation. - - po/ChangeLog | 4 + - po/de.po | 4465 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 4469 insertions(+) - -commit 71219970c53e84d98edc9ac59ef22c8b07fdffa8 -Author: Marco Pesenti Gritti -Date: Thu Jan 2 20:24:53 2003 +0000 - - Use gtk icons for dnd. Basic implementation of bookmarks importing. Still - - 2003-01-02 Marco Pesenti Gritti - - * lib/ephy-string.c: (ephy_str_replace_substring): - * lib/ephy-string.h: - * lib/widgets/eggtreemultidnd.c: - (egg_tree_multi_drag_motion_event): - * src/bookmarks/Makefile.am: - - Use gtk icons for dnd. - Basic implementation of bookmarks importing. Still - not used but functional. - - ChangeLog | 12 +++++ - lib/ephy-string.c | 55 +++++++++++++++++++++ - lib/ephy-string.h | 5 ++ - lib/widgets/eggtreemultidnd.c | 10 ++++ - src/bookmarks/Makefile.am | 14 ++++-- - src/bookmarks/ephy-bookmarks-import.c | 93 +++++++++++++++++++++++++++++++++++ - src/bookmarks/ephy-bookmarks-import.h | 31 ++++++++++++ - 7 files changed, 215 insertions(+), 5 deletions(-) - -commit 2dd166055fa8702ad52df80d2927f8560b4f73f6 -Author: Christian Rose -Date: Thu Jan 2 18:28:38 2003 +0000 - - Added missing files. Updated Swedish translation. - - 2003-03-02 Christian Rose - - * POTFILES.in: Added missing files. - * sv.po: Updated Swedish translation. - - po/ChangeLog | 5 + - po/POTFILES.in | 2 + - po/sv.po | 452 +++++++++++++++++++++++++++++---------------------------- - 3 files changed, 234 insertions(+), 225 deletions(-) - -commit 59f282853ebd633957c6671bed5e6ddef4186cbe -Author: Marco Pesenti Gritti -Date: Wed Jan 1 20:28:21 2003 +0000 - - typo - - TODO | 2 ++ - lib/widgets/Makefile.am | 2 +- - 2 files changed, 3 insertions(+), 1 deletion(-) - -commit 1d8491a1dcd425eaeeb39739fec95e892ba641d5 -Author: Marco Pesenti Gritti -Date: Wed Jan 1 20:09:33 2003 +0000 - - *** empty log message *** - - lib/toolbar/Makefile.am | 29 ++++++++++---------- - lib/widgets/Makefile.am | 19 +++++++------ - src/Makefile.am | 58 +++++++++++++++++++-------------------- - src/bookmarks/ephy-new-bookmark.c | 2 ++ - src/ephy-nautilus-view.c | 5 ++-- - src/ephy-shell.c | 2 +- - src/ephy-tab.c | 2 +- - src/pdm-dialog.c | 2 +- - src/popup-commands.c | 4 +-- - 9 files changed, 63 insertions(+), 60 deletions(-) - -commit 2a830a379ab4c38b512ee521ccf10ba9cb28da53 -Author: Marco Pesenti Gritti -Date: Wed Jan 1 20:08:38 2003 +0000 - - Cleanup unused code. Reorder build. In new bookmark dialog enter activate - - 2003-01-01 Marco Pesenti Gritti - - * embed/Makefile.am: - * embed/ephy-embed-favicon.c: (location_changed_cb), (favicon_cb): - * embed/ephy-embed-popup.c: (embed_popup_copy_location_cmd), - (embed_popup_save_page_as_cmd), (embed_popup_open_frame_cmd): - * embed/ephy-embed-shell.c: (ephy_embed_shell_free_cookies): - * embed/ephy-embed-shell.h: - * embed/ephy-embed-utils.c: (ephy_embed_utils_save): - * embed/ephy-embed.c: (ephy_embed_get_location), - (ephy_embed_shistory_copy): - * embed/ephy-embed.h: - * embed/mozilla/EphyWrapper.cpp: - * embed/mozilla/EphyWrapper.h: - * embed/mozilla/Makefile.am: - * embed/mozilla/mozilla-embed-shell.cpp: - * embed/mozilla/mozilla-embed.cpp: - * lib/Makefile.am: - * lib/toolbar/Makefile.am: - * lib/widgets/Makefile.am: - * src/Makefile.am: - * src/bookmarks/ephy-new-bookmark.c: (build_editing_table): - * src/ephy-nautilus-view.c: (gnv_embed_location_cb), - (gnv_popup_cmd_frame_in_new_window): - * src/ephy-shell.c: (build_homepage_url): - * src/ephy-tab.c: (ephy_tab_location_cb): - * src/pdm-dialog.c: (pdm_dialog_cookie_add): - * src/popup-commands.c: (popup_cmd_frame_in_new_tab), - (popup_cmd_frame_in_new_window): - - Cleanup unused code. - Reorder build. - In new bookmark dialog enter activate ok. - - ChangeLog | 34 ++ - embed/Makefile.am | 35 +-- - embed/ephy-embed-favicon.c | 4 +- - embed/ephy-embed-popup.c | 7 +- - embed/ephy-embed-shell.c | 51 +-- - embed/ephy-embed-shell.h | 39 +-- - embed/ephy-embed-utils.c | 1 - - embed/ephy-embed.c | 35 +-- - embed/ephy-embed.h | 37 +-- - embed/mozilla/EphyWrapper.cpp | 574 ---------------------------------- - embed/mozilla/EphyWrapper.h | 18 -- - embed/mozilla/Makefile.am | 38 +-- - embed/mozilla/mozilla-embed-shell.cpp | 112 +------ - embed/mozilla/mozilla-embed.cpp | 93 +----- - lib/Makefile.am | 36 +-- - 15 files changed, 103 insertions(+), 1011 deletions(-) - -commit 66677ed1062c18fd63cb13ea9480343a01058c96 -Author: Marco Pesenti Gritti -Date: Wed Jan 1 13:55:35 2003 +0000 - - Rewrite ephy node multiple removals to actually work. - - 2003-01-01 Marco Pesenti Gritti - - * embed/ephy-history.c: (ephy_history_clear), - (ephy_history_remove): - * src/bookmarks/ephy-bookmarks.c: - (ephy_bookmarks_clean_empty_keywords): - * src/ephy-history-model.c: (get_one_level_path_real), - (get_path_real), (root_child_removed_cb): - - Rewrite ephy node multiple removals to actually - work. - - ChangeLog | 12 ++++++++++++ - embed/ephy-history.c | 20 ++++++++++++-------- - src/bookmarks/ephy-bookmarks.c | 17 +++++++++++++---- - src/ephy-history-model.c | 13 ++++++++++--- - 4 files changed, 47 insertions(+), 15 deletions(-) - -commit a4f9aed333d06c864f4ed719fa41eda82eff4713 -Author: Marco Pesenti Gritti -Date: Wed Jan 1 10:37:11 2003 +0000 - - *** empty log message *** - - ChangeLog | 17 +++++++ - TODO | 2 +- - data/glade/epiphany.glade | 2 +- - embed/ephy-history.c | 104 ++++++++++++++++++++++++++++++++++++++++- - embed/ephy-history.h | 3 ++ - lib/toolbar/ephy-tb-button.c | 33 ++++++++++++- - src/bookmarks/ephy-bookmarks.c | 1 + - src/history-dialog.c | 4 +- - 8 files changed, 159 insertions(+), 7 deletions(-) - -commit 90870f6628f09e7e46693c95c9237b602960f1ab -Author: Marco Pesenti Gritti -Date: Tue Dec 31 14:39:34 2002 +0000 - - Build .in data files from the makefile, not from configure.in. Add a - - 2002-12-31 Marco Pesenti Gritti - - * configure.in: - * data/.cvsignore: - * data/Makefile.am: - - Build .in data files from the makefile, - not from configure.in. - Add a desktop file. We badly need an icon ;) - - ChangeLog | 10 ++++++++++ - configure.in | 3 --- - data/.cvsignore | 1 + - data/Makefile.am | 16 ++++++++++++---- - data/epiphany.desktop.in | 9 +++++++++ - 5 files changed, 32 insertions(+), 7 deletions(-) - -commit 48f720de8614cb0463d5d1738a2e936337b58e46 -Author: Marco Pesenti Gritti -Date: Tue Dec 31 14:00:03 2002 +0000 - - Use normal widgets instead of bonobo controls. - - 2002-12-31 Marco Pesenti Gritti - - * lib/toolbar/ephy-tbi-favicon.c: - (ephy_tbi_favicon_add_to_bonobo_tb_impl): - * lib/toolbar/ephy-tbi-spinner.c: - (ephy_tbi_spinner_add_to_bonobo_tb_impl): - * lib/toolbar/ephy-tbi-zoom.c: - (ephy_tbi_zoom_add_to_bonobo_tb_impl): - - Use normal widgets instead of bonobo controls. - - ChangeLog | 11 +++++++++++ - lib/toolbar/ephy-tbi-favicon.c | 2 +- - lib/toolbar/ephy-tbi-spinner.c | 2 +- - lib/toolbar/ephy-tbi-zoom.c | 2 +- - 4 files changed, 14 insertions(+), 3 deletions(-) - -commit 6afec98b2cc4c33cd4128d045035a0ec7d43629c -Author: Marco Pesenti Gritti -Date: Tue Dec 31 13:52:44 2002 +0000 - - Resync with galeon. - - 2002-12-31 Marco Pesenti Gritti - - * embed/mozilla/FilePicker.cpp: - * embed/mozilla/FilePicker.h: - * embed/mozilla/mozilla-embed-shell.cpp: - - Resync with galeon. - - * data/epiphany.schemas.in: - * lib/ephy-bonobo-extensions.c: (ephy_bonobo_add_numbered_widget): - * lib/ephy-bonobo-extensions.h: - * lib/toolbar/Makefile.am: - * lib/toolbar/ephy-tbi-std-toolitem.c: - (ephy_tbi_std_toolitem_init), - (ephy_tbi_std_toolitem_get_icon_impl), - (ephy_tbi_std_toolitem_get_name_human_impl), - (ephy_tbi_std_toolitem_to_string_impl), - (ephy_tbi_std_toolitem_add_to_bonobo_tb_impl), - (ephy_tbi_std_toolitem_parse_properties_impl), - (ephy_tbi_std_toolitem_set_item): - * lib/toolbar/ephy-tbi-std-toolitem.h: - * lib/toolbar/ephy-toolbar-item-factory.c: - (ephy_tb_item_factory_init), - (ephy_toolbar_item_create_from_string), - (ephy_toolbar_item_register_type): - * lib/toolbar/ephy-toolbar-item-factory.h: - * src/Makefile.am: - * src/toolbar.c: (toolbar_class_init), (toolbar_set_property), - (toolbar_get_widgets), (toolbar_init), (toolbar_finalize), - (toolbar_navigation_button_set_sensitive), - (toolbar_button_set_sensitive): - * src/window-commands.c: - - Resync with galeon. Now we use a widget for navigation - buttons. - - ChangeLog | 36 ++ - data/epiphany.schemas.in | 2 +- - embed/mozilla/FilePicker.cpp | 67 +-- - embed/mozilla/FilePicker.h | 17 +- - embed/mozilla/mozilla-embed-shell.cpp | 8 +- - lib/ephy-bonobo-extensions.c | 16 + - lib/ephy-bonobo-extensions.h | 2 + - lib/toolbar/Makefile.am | 4 +- - lib/toolbar/ephy-tb-button.c | 746 ++++++++++++++++++++++++++++++++ - lib/toolbar/ephy-tb-button.h | 79 ++++ - lib/toolbar/ephy-tbi-std-toolitem.c | 112 ++--- - lib/toolbar/ephy-tbi-std-toolitem.h | 6 +- - lib/toolbar/ephy-toolbar-item-factory.c | 80 ++-- - lib/toolbar/ephy-toolbar-item-factory.h | 4 +- - src/Makefile.am | 6 +- - src/ephy-navigation-button.c | 614 ++++++++++++++++++++++++++ - src/ephy-navigation-button.h | 79 ++++ - src/ephy-tbi.c | 193 +++++++++ - src/ephy-tbi.h | 70 +++ - src/toolbar.c | 393 +++-------------- - src/window-commands.c | 15 +- - 21 files changed, 2037 insertions(+), 512 deletions(-) - -commit beec33b028bdeb5f0da6ed51305f32e3b8041f6e -Author: Marco Pesenti Gritti -Date: Tue Dec 31 11:11:13 2002 +0000 - - Remove hidden filtering page. - - 2002-12-31 Marco Pesenti Gritti - - * data/glade/prefs-dialog.glade: - - Remove hidden filtering page. - - * embed/ephy-history.c: - (ephy_history_autocompletion_source_foreach), (ephy_history_init), - (ephy_history_add_host), (ephy_history_visited), - (ephy_history_get_page_visits): - * lib/ephy-autocompletion.c: (ephy_autocompletion_refine_matches), - (ephy_autocompletion_update_matches_full_item): - * src/bookmarks/ephy-bookmarks.c: - (ephy_bookmarks_autocompletion_source_foreach): - - Fix memory corruption in bookmarks refine. - Implement history autocompletion score. - Smarter host matching code. - Add some sanity checks. - - ChangeLog | 20 ++ - TODO | 12 +- - data/glade/prefs-dialog.glade | 518 ----------------------------------------- - embed/ephy-history.c | 59 ++++- - lib/ephy-autocompletion.c | 5 +- - src/bookmarks/ephy-bookmarks.c | 6 +- - 6 files changed, 79 insertions(+), 541 deletions(-) - -commit 1e3579d624fa8b4c212017cbb6a8dd977dd7741d -Author: Christian Rose -Date: Tue Dec 31 10:08:21 2002 +0000 - - Added "sv" to ALL_LINGUAS. Added more entries. Removed non-existing - - 2002-12-31 Christian Rose - - * configure.in: Added "sv" to ALL_LINGUAS. - * po/.cvsignore: Added more entries. - * po/POTFILES.in: Removed non-existing entries and added missing. - * po/sv.po: Added Swedish translation. - - ChangeLog | 4 + - configure.in | 2 +- - po/.cvsignore | 10 +- - po/ChangeLog | 6 + - po/POTFILES.in | 8 +- - po/sv.po | 7825 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - 6 files changed, 7851 insertions(+), 4 deletions(-) - -commit 32e8849ee8a8c54e66234630978f19cad1b47009 -Author: Marco Pesenti Gritti -Date: Mon Dec 30 22:02:17 2002 +0000 - - update cvs ignores - - lib/.cvsignore | 2 ++ - src/.cvsignore | 4 ++++ - 2 files changed, 6 insertions(+) - -commit a6ed72bd85d316bb51f0eb591f27b54dfec13178 -Author: Marco Pesenti Gritti -Date: Mon Dec 30 19:29:24 2002 +0000 - - Initial import - -commit 6876ede98282c7db318089bfefb292aa59e55d48 -Author: Marco Pesenti Gritti -Date: Mon Dec 30 19:29:24 2002 +0000 - - Initial revision - - .cvsignore | 14 + - AUTHORS | 0 - COPYING | 340 +++ - ChangeLog | 875 ++++++++ - HACKING | 16 + - INSTALL | 182 ++ - Makefile.am | 8 + - NEWS | 0 - README | 121 + - TODO | 17 + - acconfig.h | 6 + - autogen.sh | 19 + - configure.in | 171 ++ - data/.cvsignore | 5 + - data/GNOME_Epiphany_Automation.server.in | 20 + - data/GNOME_Epiphany_NautilusView.server.in | 30 + - data/Makefile.am | 29 + - data/art/.cvsignore | 2 + - data/art/Makefile.am | 7 + - data/art/epiphany-secure.png | Bin 0 -> 332 bytes - data/art/epiphany-unsecure.png | Bin 0 -> 332 bytes - data/epiphany.schemas.in | 627 ++++++ - data/glade/.cvsignore | 3 + - data/glade/Makefile.am | 10 + - data/glade/epiphany.glade | 1582 +++++++++++++ - data/glade/prefs-dialog.glade | 3083 ++++++++++++++++++++++++++ - data/glade/print.glade | 1573 +++++++++++++ - data/glade/prompts.glade | 722 ++++++ - data/glade/toolbar-editor.glade | 418 ++++ - data/start_here.html | 23 + - data/ui/.cvsignore | 4 + - data/ui/Makefile.am | 11 + - data/ui/epiphany-ui.xml.in | 454 ++++ - data/ui/nautilus-epiphany-view.xml.in | 130 ++ - embed/.cvsignore | 6 + - embed/Makefile.am | 57 + - embed/downloader-view.c | 1100 +++++++++ - embed/downloader-view.h | 100 + - embed/ephy-embed-dialog.c | 194 ++ - embed/ephy-embed-dialog.h | 69 + - embed/ephy-embed-event.c | 179 ++ - embed/ephy-embed-event.h | 100 + - embed/ephy-embed-favicon.c | 252 +++ - embed/ephy-embed-favicon.h | 63 + - embed/ephy-embed-persist.c | 491 ++++ - embed/ephy-embed-persist.h | 129 ++ - embed/ephy-embed-popup-bw.c | 187 ++ - embed/ephy-embed-popup-bw.h | 58 + - embed/ephy-embed-popup-control.c | 188 ++ - embed/ephy-embed-popup-control.h | 61 + - embed/ephy-embed-popup.c | 623 ++++++ - embed/ephy-embed-popup.h | 73 + - embed/ephy-embed-prefs.h | 46 + - embed/ephy-embed-shell.c | 507 +++++ - embed/ephy-embed-shell.h | 307 +++ - embed/ephy-embed-types.h | 47 + - embed/ephy-embed-utils.c | 321 +++ - embed/ephy-embed-utils.h | 50 + - embed/ephy-embed.c | 608 +++++ - embed/ephy-embed.h | 443 ++++ - embed/ephy-favicon-cache.c | 367 +++ - embed/ephy-favicon-cache.h | 68 + - embed/ephy-favicon.c | 280 +++ - embed/ephy-favicon.h | 64 + - embed/ephy-history.c | 644 ++++++ - embed/ephy-history.h | 92 + - embed/find-dialog.c | 431 ++++ - embed/find-dialog.h | 74 + - embed/mozilla/.cvsignore | 6 + - embed/mozilla/BaseProtocolContentHandler.cpp | 104 + - embed/mozilla/BaseProtocolContentHandler.h | 43 + - embed/mozilla/BaseProtocolHandler.cpp | 106 + - embed/mozilla/BaseProtocolHandler.h | 39 + - embed/mozilla/ContentHandler.cpp | 671 ++++++ - embed/mozilla/ContentHandler.h | 102 + - embed/mozilla/EphyEventListener.cpp | 114 + - embed/mozilla/EphyEventListener.h | 46 + - embed/mozilla/EphyWrapper.cpp | 1384 ++++++++++++ - embed/mozilla/EphyWrapper.h | 147 ++ - embed/mozilla/EventContext.cpp | 669 ++++++ - embed/mozilla/EventContext.h | 65 + - embed/mozilla/ExternalProtocolService.cpp | 176 ++ - embed/mozilla/ExternalProtocolService.h | 50 + - embed/mozilla/FilePicker.cpp | 505 +++++ - embed/mozilla/FilePicker.h | 94 + - embed/mozilla/FtpProtocolHandler.cpp | 58 + - embed/mozilla/FtpProtocolHandler.h | 52 + - embed/mozilla/GlobalHistory.cpp | 169 ++ - embed/mozilla/GlobalHistory.h | 31 + - embed/mozilla/IRCProtocolHandler.cpp | 58 + - embed/mozilla/IRCProtocolHandler.h | 43 + - embed/mozilla/MailtoProtocolHandler.cpp | 64 + - embed/mozilla/MailtoProtocolHandler.h | 43 + - embed/mozilla/Makefile.am | 108 + - embed/mozilla/MozRegisterComponents.cpp | 226 ++ - embed/mozilla/MozRegisterComponents.h | 33 + - embed/mozilla/MozillaPrivate.cpp | 105 + - embed/mozilla/MozillaPrivate.h | 9 + - embed/mozilla/PrintProgressListener.cpp | 116 + - embed/mozilla/PrintProgressListener.h | 38 + - embed/mozilla/PrintingPromptService.cpp | 129 ++ - embed/mozilla/PrintingPromptService.h | 38 + - embed/mozilla/ProgressListener.cpp | 718 ++++++ - embed/mozilla/ProgressListener.h | 139 ++ - embed/mozilla/PromptService.cpp | 769 +++++++ - embed/mozilla/PromptService.h | 39 + - embed/mozilla/StartHereProtocolHandler.cpp | 162 ++ - embed/mozilla/StartHereProtocolHandler.h | 38 + - embed/mozilla/mozilla-embed-persist.cpp | 244 ++ - embed/mozilla/mozilla-embed-persist.h | 56 + - embed/mozilla/mozilla-embed-shell.cpp | 1106 +++++++++ - embed/mozilla/mozilla-embed-shell.h | 55 + - embed/mozilla/mozilla-embed.cpp | 1585 +++++++++++++ - embed/mozilla/mozilla-embed.h | 61 + - embed/mozilla/mozilla-i18n.c | 162 ++ - embed/mozilla/mozilla-i18n.h | 60 + - embed/mozilla/mozilla-notifiers.cpp | 710 ++++++ - embed/mozilla/mozilla-notifiers.h | 30 + - embed/mozilla/mozilla-prefs.cpp | 185 ++ - embed/mozilla/mozilla-prefs.h | 44 + - embed/mozilla/nsUnicharUtils.cpp | 344 +++ - embed/mozilla/nsUnicharUtils.h | 96 + - embed/print-dialog.c | 402 ++++ - embed/print-dialog.h | 73 + - idl/EphyAutomation.idl | 27 + - lib/.cvsignore | 6 + - lib/Makefile.am | 73 + - lib/eel-gconf-extensions.c | 556 +++++ - lib/eel-gconf-extensions.h | 87 + - lib/ephy-autocompletion-source.c | 85 + - lib/ephy-autocompletion-source.h | 80 + - lib/ephy-autocompletion.c | 664 ++++++ - lib/ephy-autocompletion.h | 107 + - lib/ephy-bonobo-extensions.c | 679 ++++++ - lib/ephy-bonobo-extensions.h | 121 + - lib/ephy-dialog.c | 943 ++++++++ - lib/ephy-dialog.h | 119 + - lib/ephy-dnd.c | 109 + - lib/ephy-dnd.h | 67 + - lib/ephy-file-helpers.c | 326 +++ - lib/ephy-file-helpers.h | 48 + - lib/ephy-filesystem-autocompletion.c | 343 +++ - lib/ephy-filesystem-autocompletion.h | 70 + - lib/ephy-glade.c | 134 ++ - lib/ephy-glade.h | 41 + - lib/ephy-gobject-misc.h | 77 + - lib/ephy-gui.c | 352 +++ - lib/ephy-gui.h | 79 + - lib/ephy-marshal.list | 16 + - lib/ephy-node-filter.c | 461 ++++ - lib/ephy-node-filter.h | 102 + - lib/ephy-node.c | 1439 ++++++++++++ - lib/ephy-node.h | 144 ++ - lib/ephy-prefs-utils.c | 285 +++ - lib/ephy-prefs-utils.h | 61 + - lib/ephy-prefs.h | 58 + - lib/ephy-state.c | 157 ++ - lib/ephy-state.h | 44 + - lib/ephy-stock-icons.c | 62 + - lib/ephy-stock-icons.h | 33 + - lib/ephy-string.c | 446 ++++ - lib/ephy-string.h | 63 + - lib/ephy-thread-helpers.c | 35 + - lib/ephy-thread-helpers.h | 34 + - lib/ephy-types.h | 35 + - lib/toolbar/.cvsignore | 6 + - lib/toolbar/Makefile.am | 41 + - lib/toolbar/ephy-tbi-favicon.c | 188 ++ - lib/toolbar/ephy-tbi-favicon.h | 66 + - lib/toolbar/ephy-tbi-location.c | 205 ++ - lib/toolbar/ephy-tbi-location.h | 66 + - lib/toolbar/ephy-tbi-navigation-history.c | 342 +++ - lib/toolbar/ephy-tbi-navigation-history.h | 81 + - lib/toolbar/ephy-tbi-separator.c | 179 ++ - lib/toolbar/ephy-tbi-separator.h | 68 + - lib/toolbar/ephy-tbi-spinner.c | 188 ++ - lib/toolbar/ephy-tbi-spinner.h | 66 + - lib/toolbar/ephy-tbi-std-toolitem.c | 467 ++++ - lib/toolbar/ephy-tbi-std-toolitem.h | 86 + - lib/toolbar/ephy-tbi-zoom.c | 304 +++ - lib/toolbar/ephy-tbi-zoom.h | 66 + - lib/toolbar/ephy-toolbar-bonobo-view.c | 193 ++ - lib/toolbar/ephy-toolbar-bonobo-view.h | 75 + - lib/toolbar/ephy-toolbar-editor.c | 634 ++++++ - lib/toolbar/ephy-toolbar-editor.h | 80 + - lib/toolbar/ephy-toolbar-item-factory.c | 158 ++ - lib/toolbar/ephy-toolbar-item-factory.h | 31 + - lib/toolbar/ephy-toolbar-item.c | 142 ++ - lib/toolbar/ephy-toolbar-item.h | 91 + - lib/toolbar/ephy-toolbar-tree-model.c | 784 +++++++ - lib/toolbar/ephy-toolbar-tree-model.h | 74 + - lib/toolbar/ephy-toolbar.c | 420 ++++ - lib/toolbar/ephy-toolbar.h | 80 + - lib/widgets/.cvsignore | 6 + - lib/widgets/Makefile.am | 30 + - lib/widgets/eggtreemodelfilter.c | 2560 +++++++++++++++++++++ - lib/widgets/eggtreemodelfilter.h | 123 + - lib/widgets/eggtreemultidnd.c | 415 ++++ - lib/widgets/eggtreemultidnd.h | 78 + - lib/widgets/ephy-autocompletion-window.c | 854 +++++++ - lib/widgets/ephy-autocompletion-window.h | 87 + - lib/widgets/ephy-ellipsizing-label.c | 774 +++++++ - lib/widgets/ephy-ellipsizing-label.h | 71 + - lib/widgets/ephy-location-entry.c | 700 ++++++ - lib/widgets/ephy-location-entry.h | 74 + - lib/widgets/ephy-notebook.c | 843 +++++++ - lib/widgets/ephy-notebook.h | 99 + - lib/widgets/ephy-spinner.c | 897 ++++++++ - lib/widgets/ephy-spinner.h | 78 + - lib/widgets/ephy-tree-model-sort.c | 240 ++ - lib/widgets/ephy-tree-model-sort.h | 59 + - po/.cvsignore | 6 + - po/ChangeLog | 0 - po/POTFILES.in | 45 + - src/.cvsignore | 6 + - src/Makefile.am | 101 + - src/appearance-prefs.c | 458 ++++ - src/appearance-prefs.h | 58 + - src/bookmarks/.cvsignore | 6 + - src/bookmarks/Makefile.am | 31 + - src/bookmarks/ephy-bookmarks-editor.c | 534 +++++ - src/bookmarks/ephy-bookmarks-editor.h | 59 + - src/bookmarks/ephy-bookmarks.c | 988 +++++++++ - src/bookmarks/ephy-bookmarks.h | 108 + - src/bookmarks/ephy-keywords-entry.c | 286 +++ - src/bookmarks/ephy-keywords-entry.h | 68 + - src/bookmarks/ephy-new-bookmark.c | 340 +++ - src/bookmarks/ephy-new-bookmark.h | 65 + - src/bookmarks/ephy-node-view.c | 531 +++++ - src/bookmarks/ephy-node-view.h | 82 + - src/bookmarks/ephy-tree-model-node.c | 702 ++++++ - src/bookmarks/ephy-tree-model-node.h | 81 + - src/ephy-automation.c | 217 ++ - src/ephy-automation.h | 52 + - src/ephy-favorites-menu.c | 275 +++ - src/ephy-favorites-menu.h | 66 + - src/ephy-history-model.c | 838 +++++++ - src/ephy-history-model.h | 84 + - src/ephy-main.c | 340 +++ - src/ephy-nautilus-view.c | 954 ++++++++ - src/ephy-nautilus-view.h | 84 + - src/ephy-shell.c | 525 +++++ - src/ephy-shell.h | 101 + - src/ephy-tab.c | 945 ++++++++ - src/ephy-tab.h | 105 + - src/ephy-window.c | 1428 ++++++++++++ - src/ephy-window.h | 140 ++ - src/general-prefs.c | 484 ++++ - src/general-prefs.h | 58 + - src/history-dialog.c | 478 ++++ - src/history-dialog.h | 63 + - src/language-editor.c | 388 ++++ - src/language-editor.h | 67 + - src/pdm-dialog.c | 669 ++++++ - src/pdm-dialog.h | 56 + - src/popup-commands.c | 222 ++ - src/popup-commands.h | 58 + - src/ppview-toolbar.c | 388 ++++ - src/ppview-toolbar.h | 63 + - src/prefs-dialog.c | 335 +++ - src/prefs-dialog.h | 63 + - src/session.c | 690 ++++++ - src/session.h | 84 + - src/statusbar.c | 321 +++ - src/statusbar.h | 70 + - src/toolbar.c | 982 ++++++++ - src/toolbar.h | 88 + - src/ui-prefs.c | 232 ++ - src/ui-prefs.h | 58 + - src/window-commands.c | 917 ++++++++ - src/window-commands.h | 196 ++ - 271 files changed, 71076 insertions(+) diff -Nru epiphany-browser-3.18.5/configure epiphany-browser-3.18.10/configure --- epiphany-browser-3.18.5/configure 2016-03-14 23:46:15.000000000 +0000 +++ epiphany-browser-3.18.10/configure 2016-12-28 00:40:40.000000000 +0000 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for GNOME Web Browser 3.18.5. +# Generated by GNU Autoconf 2.69 for GNOME Web Browser 3.18.10. # # Report bugs to . # @@ -591,8 +591,8 @@ # Identity of this package. PACKAGE_NAME='GNOME Web Browser' PACKAGE_TARNAME='epiphany' -PACKAGE_VERSION='3.18.5' -PACKAGE_STRING='GNOME Web Browser 3.18.5' +PACKAGE_VERSION='3.18.10' +PACKAGE_STRING='GNOME Web Browser 3.18.10' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany' PACKAGE_URL='' @@ -787,7 +787,10 @@ CC CODE_COVERAGE_RULES CODE_COVERAGE_LDFLAGS +CODE_COVERAGE_LIBS +CODE_COVERAGE_CXXFLAGS CODE_COVERAGE_CFLAGS +CODE_COVERAGE_CPPFLAGS GENHTML LCOV GCOV @@ -1422,7 +1425,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures GNOME Web Browser 3.18.5 to adapt to many kinds of systems. +\`configure' configures GNOME Web Browser 3.18.10 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1492,7 +1495,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GNOME Web Browser 3.18.5:";; + short | recursive ) echo "Configuration of GNOME Web Browser 3.18.10:";; esac cat <<\_ACEOF @@ -1640,7 +1643,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -GNOME Web Browser configure 3.18.5 +GNOME Web Browser configure 3.18.10 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2063,7 +2066,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by GNOME Web Browser $as_me 3.18.5, which was +It was created by GNOME Web Browser $as_me 3.18.10, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2419,7 +2422,7 @@ # $is_release = (.git directory does not exist) - if test -d .git; then : + if test -d ${top_srcdir}/.git; then : ax_is_release=no else ax_is_release=yes @@ -2770,9 +2773,6 @@ fi - # List of supported lcov versions. - lcov_version_list="1.6 1.7 1.8 1.9 1.10 1.11" - # Extract the first word of "lcov", so it can be a program name with args. set dummy lcov; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -2848,52 +2848,57 @@ - if test "$LCOV" ; then : - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lcov version" >&5 -$as_echo_n "checking for lcov version... " >&6; } -if ${ax_cv_lcov_version+:} false; then : - $as_echo_n "(cached) " >&6 -else + if test -z "$LCOV" ; then : - ax_cv_lcov_version=invalid - lcov_version=`$LCOV -v 2>/dev/null | $SED -e 's/^.* //'` - for lcov_check_version in $lcov_version_list; do - if test "$lcov_version" = "$lcov_check_version"; then - ax_cv_lcov_version="$lcov_check_version (ok)" - fi - done + as_fn_error $? "To enable code coverage reporting you must have lcov installed" "$LINENO" 5 fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_lcov_version" >&5 -$as_echo "$ax_cv_lcov_version" >&6; } -else + if test -z "$GENHTML" ; then : - lcov_msg="To enable code coverage reporting you must have one of the following lcov versions installed: $lcov_version_list" - as_fn_error $? "$lcov_msg" "$LINENO" 5 + as_fn_error $? "Could not find genhtml from the lcov package" "$LINENO" 5 fi - case $ax_cv_lcov_version in - ""|invalid) - lcov_msg="You must have one of the following versions of lcov: $lcov_version_list (found: $lcov_version)." - as_fn_error $? "$lcov_msg" "$LINENO" 5 - LCOV="exit 0;" - ;; - esac + CODE_COVERAGE_CPPFLAGS="-DNDEBUG" + CODE_COVERAGE_CFLAGS="-O0 -g -fprofile-arcs -ftest-coverage" + CODE_COVERAGE_CXXFLAGS="-O0 -g -fprofile-arcs -ftest-coverage" + CODE_COVERAGE_LIBS="-lgcov" + CODE_COVERAGE_LDFLAGS="$CODE_COVERAGE_LIBS" + + - if test -z "$GENHTML" ; then : - as_fn_error $? "Could not find genhtml from the lcov package" "$LINENO" 5 -fi - CODE_COVERAGE_CFLAGS="-O0 -g -fprofile-arcs -ftest-coverage" - CODE_COVERAGE_LDFLAGS="-lgcov" + CODE_COVERAGE_RULES_CHECK=' + -$(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) -k check + $(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) code-coverage-capture +' + CODE_COVERAGE_RULES_CAPTURE=' + $(code_coverage_v_lcov_cap)$(LCOV) $(code_coverage_quiet) $(addprefix --directory ,$(CODE_COVERAGE_DIRECTORY)) --capture --output-file "$(CODE_COVERAGE_OUTPUT_FILE).tmp" --test-name "$(call code_coverage_sanitize,$(PACKAGE_NAME)-$(PACKAGE_VERSION))" --no-checksum --compat-libtool $(CODE_COVERAGE_LCOV_SHOPTS) $(CODE_COVERAGE_LCOV_OPTIONS) + $(code_coverage_v_lcov_ign)$(LCOV) $(code_coverage_quiet) $(addprefix --directory ,$(CODE_COVERAGE_DIRECTORY)) --remove "$(CODE_COVERAGE_OUTPUT_FILE).tmp" "/tmp/*" $(CODE_COVERAGE_IGNORE_PATTERN) --output-file "$(CODE_COVERAGE_OUTPUT_FILE)" $(CODE_COVERAGE_LCOV_SHOPTS) $(CODE_COVERAGE_LCOV_RMOPTS) + -@rm -f $(CODE_COVERAGE_OUTPUT_FILE).tmp + $(code_coverage_v_genhtml)LANG=C $(GENHTML) $(code_coverage_quiet) $(addprefix --prefix ,$(CODE_COVERAGE_DIRECTORY)) --output-directory "$(CODE_COVERAGE_OUTPUT_DIRECTORY)" --title "$(PACKAGE_NAME)-$(PACKAGE_VERSION) Code Coverage" --legend --show-details "$(CODE_COVERAGE_OUTPUT_FILE)" $(CODE_COVERAGE_GENHTML_OPTIONS) + @echo "file://$(abs_builddir)/$(CODE_COVERAGE_OUTPUT_DIRECTORY)/index.html" +' + CODE_COVERAGE_RULES_CLEAN=' +clean: code-coverage-clean +distclean: code-coverage-clean +code-coverage-clean: + -$(LCOV) --directory $(top_builddir) -z + -rm -rf $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_FILE).tmp $(CODE_COVERAGE_OUTPUT_DIRECTORY) + -find . \( -name "*.gcda" -o -name "*.gcno" -o -name "*.gcov" \) -delete +' +else + CODE_COVERAGE_RULES_CHECK=' + @echo "Need to reconfigure with --enable-code-coverage" +' + CODE_COVERAGE_RULES_CAPTURE="$CODE_COVERAGE_RULES_CHECK" + CODE_COVERAGE_RULES_CLEAN='' fi @@ -2902,6 +2907,7 @@ # # Optional: # - CODE_COVERAGE_DIRECTORY: Top-level directory for code coverage reporting. +# Multiple directories may be specified, separated by whitespace. # (Default: $(top_builddir)) # - CODE_COVERAGE_OUTPUT_FILE: Filename and path for the .info file generated # by lcov for code coverage. (Default: @@ -2909,13 +2915,26 @@ # - CODE_COVERAGE_OUTPUT_DIRECTORY: Directory for generated code coverage # reports to be created. (Default: # $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage) +# - CODE_COVERAGE_BRANCH_COVERAGE: Set to 1 to enforce branch coverage, +# set to 0 to disable it and leave empty to stay with the default. +# (Default: empty) +# - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov +# instances. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE) +# - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov +# instances. (Default: $CODE_COVERAGE_LCOV_SHOPTS_DEFAULT) # - CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH: --gcov-tool pathtogcov -# - CODE_COVERAGE_LCOV_OPTIONS_DEFAULT: Extra options to pass to the lcov instance. -# (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) -# - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the lcov instance. -# (Default: $CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) +# - CODE_COVERAGE_LCOV_OPTIONS_DEFAULT: Extra options to pass to the +# collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) +# - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov +# instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) +# - CODE_COVERAGE_LCOV_RMOPTS_DEFAULT: Extra options to pass to the filtering +# lcov instance. (Default: empty) +# - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov +# instance. (Default: $CODE_COVERAGE_LCOV_RMOPTS_DEFAULT) +# - CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT: Extra options to pass to the +# genhtml instance. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE) # - CODE_COVERAGE_GENHTML_OPTIONS: Extra options to pass to the genhtml -# instance. (Default: empty) +# instance. (Default: $CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT) # - CODE_COVERAGE_IGNORE_PATTERN: Extra glob pattern of files to ignore # # The generated report will be titled using the $(PACKAGE_NAME) and @@ -2926,53 +2945,55 @@ CODE_COVERAGE_DIRECTORY ?= $(top_builddir) CODE_COVERAGE_OUTPUT_FILE ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage.info CODE_COVERAGE_OUTPUT_DIRECTORY ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage +CODE_COVERAGE_BRANCH_COVERAGE ?= +CODE_COVERAGE_LCOV_SHOPTS_DEFAULT ?= $(if $(CODE_COVERAGE_BRANCH_COVERAGE),\ +--rc lcov_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE)) +CODE_COVERAGE_LCOV_SHOPTS ?= $(CODE_COVERAGE_LCOV_SHOPTS_DEFAULT) CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH ?= --gcov-tool "$(GCOV)" CODE_COVERAGE_LCOV_OPTIONS_DEFAULT ?= $(CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) CODE_COVERAGE_LCOV_OPTIONS ?= $(CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) -CODE_COVERAGE_GENHTML_OPTIONS ?= +CODE_COVERAGE_LCOV_RMOPTS_DEFAULT ?= +CODE_COVERAGE_LCOV_RMOPTS ?= $(CODE_COVERAGE_LCOV_RMOPTS_DEFAULT) +CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT ?=\ +$(if $(CODE_COVERAGE_BRANCH_COVERAGE),\ +--rc genhtml_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE)) +CODE_COVERAGE_GENHTML_OPTIONS ?= $(CODE_COVERAGE_GENHTML_OPTIONS_DEFAULTS) CODE_COVERAGE_IGNORE_PATTERN ?= +code_coverage_v_lcov_cap = $(code_coverage_v_lcov_cap_$(V)) +code_coverage_v_lcov_cap_ = $(code_coverage_v_lcov_cap_$(AM_DEFAULT_VERBOSITY)) +code_coverage_v_lcov_cap_0 = @echo " LCOV --capture"\ + $(CODE_COVERAGE_OUTPUT_FILE); +code_coverage_v_lcov_ign = $(code_coverage_v_lcov_ign_$(V)) +code_coverage_v_lcov_ign_ = $(code_coverage_v_lcov_ign_$(AM_DEFAULT_VERBOSITY)) +code_coverage_v_lcov_ign_0 = @echo " LCOV --remove /tmp/*"\ + $(CODE_COVERAGE_IGNORE_PATTERN); +code_coverage_v_genhtml = $(code_coverage_v_genhtml_$(V)) +code_coverage_v_genhtml_ = $(code_coverage_v_genhtml_$(AM_DEFAULT_VERBOSITY)) +code_coverage_v_genhtml_0 = @echo " GEN " $(CODE_COVERAGE_OUTPUT_DIRECTORY); code_coverage_quiet = $(code_coverage_quiet_$(V)) code_coverage_quiet_ = $(code_coverage_quiet_$(AM_DEFAULT_VERBOSITY)) code_coverage_quiet_0 = --quiet +# sanitizes the test-name: replaces with underscores: dashes and dots +code_coverage_sanitize = $(subst -,_,$(subst .,_,$(1))) + # Use recursive makes in order to ignore errors during check -check-code-coverage: -ifeq ($(CODE_COVERAGE_ENABLED),yes) - -$(MAKE) $(AM_MAKEFLAGS) -k check - $(MAKE) $(AM_MAKEFLAGS) code-coverage-capture -else - @echo "Need to reconfigure with --enable-code-coverage" -endif +check-code-coverage:'"$CODE_COVERAGE_RULES_CHECK"' # Capture code coverage data -code-coverage-capture: code-coverage-capture-hook -ifeq ($(CODE_COVERAGE_ENABLED),yes) - $(LCOV) $(code_coverage_quiet) --directory $(CODE_COVERAGE_DIRECTORY) --capture --output-file "$(CODE_COVERAGE_OUTPUT_FILE).tmp" --test-name "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" --no-checksum --compat-libtool $(CODE_COVERAGE_LCOV_OPTIONS) - $(LCOV) $(code_coverage_quiet) --directory $(CODE_COVERAGE_DIRECTORY) --remove "$(CODE_COVERAGE_OUTPUT_FILE).tmp" "/tmp/*" $(CODE_COVERAGE_IGNORE_PATTERN) --output-file "$(CODE_COVERAGE_OUTPUT_FILE)" - -@rm -f $(CODE_COVERAGE_OUTPUT_FILE).tmp - LANG=C $(GENHTML) $(code_coverage_quiet) --prefix $(CODE_COVERAGE_DIRECTORY) --output-directory "$(CODE_COVERAGE_OUTPUT_DIRECTORY)" --title "$(PACKAGE_NAME)-$(PACKAGE_VERSION) Code Coverage" --legend --show-details "$(CODE_COVERAGE_OUTPUT_FILE)" $(CODE_COVERAGE_GENHTML_OPTIONS) - @echo "file://$(abs_builddir)/$(CODE_COVERAGE_OUTPUT_DIRECTORY)/index.html" -else - @echo "Need to reconfigure with --enable-code-coverage" -endif +code-coverage-capture: code-coverage-capture-hook'"$CODE_COVERAGE_RULES_CAPTURE"' # Hook rule executed before code-coverage-capture, overridable by the user code-coverage-capture-hook: -ifeq ($(CODE_COVERAGE_ENABLED),yes) -clean: code-coverage-clean -code-coverage-clean: - -$(LCOV) --directory $(top_builddir) -z - -rm -rf $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_FILE).tmp $(CODE_COVERAGE_OUTPUT_DIRECTORY) - -find . -name "*.gcda" -o -name "*.gcov" -delete -endif +'"$CODE_COVERAGE_RULES_CLEAN"' GITIGNOREFILES ?= GITIGNOREFILES += $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_DIRECTORY) -DISTCHECK_CONFIGURE_FLAGS ?= -DISTCHECK_CONFIGURE_FLAGS += --disable-code-coverage +A''M_DISTCHECK_CONFIGURE_FLAGS ?= +A''M_DISTCHECK_CONFIGURE_FLAGS += --disable-code-coverage .PHONY: check-code-coverage code-coverage-capture code-coverage-capture-hook code-coverage-clean ' @@ -4325,6 +4346,8 @@ + + # Variable names @@ -4373,12 +4396,133 @@ fi + # macOS linker does not have --as-needed + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,--no-as-needed" >&5 +$as_echo_n "checking whether the linker accepts -Wl,--no-as-needed... " >&6; } +if ${ax_cv_check_ldflags___Wl___no_as_needed+:} false; then : + $as_echo_n "(cached) " >&6 +else + + ax_check_save_flags=$LDFLAGS + LDFLAGS="$LDFLAGS -Wl,--no-as-needed" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ax_cv_check_ldflags___Wl___no_as_needed=yes +else + ax_cv_check_ldflags___Wl___no_as_needed=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$ax_check_save_flags +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl___no_as_needed" >&5 +$as_echo "$ax_cv_check_ldflags___Wl___no_as_needed" >&6; } +if test "x$ax_cv_check_ldflags___Wl___no_as_needed" = xyes; then : + + ax_compiler_flags_as_needed_option="-Wl,--no-as-needed" + +else + + ax_compiler_flags_as_needed_option="" + +fi + + + # macOS linker speaks with a different accent + ax_compiler_flags_fatal_warnings_option="" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,--fatal-warnings" >&5 +$as_echo_n "checking whether the linker accepts -Wl,--fatal-warnings... " >&6; } +if ${ax_cv_check_ldflags___Wl___fatal_warnings+:} false; then : + $as_echo_n "(cached) " >&6 +else + + ax_check_save_flags=$LDFLAGS + LDFLAGS="$LDFLAGS -Wl,--fatal-warnings" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ax_cv_check_ldflags___Wl___fatal_warnings=yes +else + ax_cv_check_ldflags___Wl___fatal_warnings=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$ax_check_save_flags +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl___fatal_warnings" >&5 +$as_echo "$ax_cv_check_ldflags___Wl___fatal_warnings" >&6; } +if test "x$ax_cv_check_ldflags___Wl___fatal_warnings" = xyes; then : + + ax_compiler_flags_fatal_warnings_option="-Wl,--fatal-warnings" + +else + : +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -Wl,-fatal_warnings" >&5 +$as_echo_n "checking whether the linker accepts -Wl,-fatal_warnings... " >&6; } +if ${ax_cv_check_ldflags___Wl__fatal_warnings+:} false; then : + $as_echo_n "(cached) " >&6 +else + + ax_check_save_flags=$LDFLAGS + LDFLAGS="$LDFLAGS -Wl,-fatal_warnings" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ax_cv_check_ldflags___Wl__fatal_warnings=yes +else + ax_cv_check_ldflags___Wl__fatal_warnings=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$ax_check_save_flags +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___Wl__fatal_warnings" >&5 +$as_echo "$ax_cv_check_ldflags___Wl__fatal_warnings" >&6; } +if test "x$ax_cv_check_ldflags___Wl__fatal_warnings" = xyes; then : + + ax_compiler_flags_fatal_warnings_option="-Wl,-fatal_warnings" + +else + : +fi + + # Base flags -for flag in -Wl,--no-as-needed ; do +for flag in $ax_compiler_flags_as_needed_option ; do as_CACHEVAR=`$as_echo "ax_cv_check_ldflags_$ax_compiler_flags_test_$flag" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts $flag" >&5 $as_echo_n "checking whether the linker accepts $flag... " >&6; } @@ -4543,7 +4687,7 @@ -for flag in -Wl,--fatal-warnings ; do +for flag in $ax_compiler_flags_fatal_warnings_option ; do as_CACHEVAR=`$as_echo "ax_cv_check_ldflags_$ax_compiler_flags_test_$flag" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts $flag" >&5 $as_echo_n "checking whether the linker accepts $flag... " >&6; } @@ -5968,7 +6112,7 @@ # Define the identity of the package. PACKAGE='epiphany' - VERSION='3.18.5' + VERSION='3.18.10' cat >>confdefs.h <<_ACEOF @@ -15085,7 +15229,7 @@ GTK_REQUIRED=3.13.0 LIBXML_REQUIRED=2.6.12 LIBXSLT_REQUIRED=1.1.7 -WEBKIT_GTK_REQUIRED=2.9.5 +WEBKIT_GTK_REQUIRED=2.13.2 LIBSOUP_REQUIRED=2.48.0 GNOME_DESKTOP_REQUIRED=2.91.2 LIBSECRET_REQUIRED=0.14 @@ -17420,7 +17564,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by GNOME Web Browser $as_me 3.18.5, which was +This file was extended by GNOME Web Browser $as_me 3.18.10, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -17486,7 +17630,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -GNOME Web Browser config.status 3.18.5 +GNOME Web Browser config.status 3.18.10 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -Nru epiphany-browser-3.18.5/configure.ac epiphany-browser-3.18.10/configure.ac --- epiphany-browser-3.18.5/configure.ac 2016-03-14 23:16:09.000000000 +0000 +++ epiphany-browser-3.18.10/configure.ac 2016-12-28 00:38:13.000000000 +0000 @@ -17,7 +17,7 @@ m4_define([epiphany_version_major],[3]) m4_define([epiphany_version_minor],[18]) -m4_define([epiphany_version_micro],[5]) +m4_define([epiphany_version_micro],[10]) m4_define([epiphany_version],[epiphany_version_major.epiphany_version_minor.epiphany_version_micro]) AC_INIT([GNOME Web Browser],[epiphany_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany],[epiphany]) @@ -77,7 +77,7 @@ GTK_REQUIRED=3.13.0 LIBXML_REQUIRED=2.6.12 LIBXSLT_REQUIRED=1.1.7 -WEBKIT_GTK_REQUIRED=2.9.5 +WEBKIT_GTK_REQUIRED=2.13.2 LIBSOUP_REQUIRED=2.48.0 GNOME_DESKTOP_REQUIRED=2.91.2 LIBSECRET_REQUIRED=0.14 diff -Nru epiphany-browser-3.18.5/data/epiphany.appdata.xml.in epiphany-browser-3.18.10/data/epiphany.appdata.xml.in --- epiphany-browser-3.18.5/data/epiphany.appdata.xml.in 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/data/epiphany.appdata.xml.in 2016-12-28 00:37:59.000000000 +0000 @@ -20,4 +20,5 @@ https://wiki.gnome.org/Apps/Web epiphany-list@gnome.org + epiphany diff -Nru epiphany-browser-3.18.5/data/Makefile.in epiphany-browser-3.18.10/data/Makefile.in --- epiphany-browser-3.18.5/data/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/data/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -249,8 +249,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/data/pages/Makefile.in epiphany-browser-3.18.10/data/pages/Makefile.in --- epiphany-browser-3.18.5/data/pages/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/data/pages/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -182,8 +182,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/debian/changelog epiphany-browser-3.18.10/debian/changelog --- epiphany-browser-3.18.5/debian/changelog 2017-01-10 14:36:10.000000000 +0000 +++ epiphany-browser-3.18.10/debian/changelog 2017-01-17 21:46:15.000000000 +0000 @@ -1,3 +1,10 @@ +epiphany-browser (3.18.10-0ubuntu1) xenial; urgency=medium + + * New upstream bugfix release (LP: #1657284) + * Drop debian/patches/new_webkit_abi.patch, applied in new release + + -- Jeremy Bicha Tue, 17 Jan 2017 16:46:15 -0500 + epiphany-browser (3.18.5-0ubuntu1.1) xenial-security; urgency=medium * debian/patches/new_webkit_abi.patch: fix compatibility with newer diff -Nru epiphany-browser-3.18.5/debian/control epiphany-browser-3.18.10/debian/control --- epiphany-browser-3.18.5/debian/control 2017-01-10 14:40:40.000000000 +0000 +++ epiphany-browser-3.18.10/debian/control 2017-01-17 21:46:15.000000000 +0000 @@ -7,7 +7,7 @@ Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian GNOME Maintainers -Uploaders: Debian GNOME Maintainers +Uploaders: Debian GNOME Maintainers , Jeremy Bicha , Michael Biebl Build-Depends: debhelper (>= 9), cdbs (>= 0.4.90), dh-autoreconf, diff -Nru epiphany-browser-3.18.5/debian/patches/00_epiphany-browser.patch epiphany-browser-3.18.10/debian/patches/00_epiphany-browser.patch --- epiphany-browser-3.18.5/debian/patches/00_epiphany-browser.patch 2016-03-15 21:07:19.000000000 +0000 +++ epiphany-browser-3.18.10/debian/patches/00_epiphany-browser.patch 2017-01-17 21:46:15.000000000 +0000 @@ -3,7 +3,7 @@ --- epiphany-browser-3.18.5.orig/configure.ac +++ epiphany-browser-3.18.5/configure.ac @@ -20,7 +20,7 @@ m4_define([epiphany_version_minor],[18]) - m4_define([epiphany_version_micro],[5]) + m4_define([epiphany_version_micro],[10]) m4_define([epiphany_version],[epiphany_version_major.epiphany_version_minor.epiphany_version_micro]) -AC_INIT([GNOME Web Browser],[epiphany_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany],[epiphany]) diff -Nru epiphany-browser-3.18.5/debian/patches/new_webkit_abi.patch epiphany-browser-3.18.10/debian/patches/new_webkit_abi.patch --- epiphany-browser-3.18.5/debian/patches/new_webkit_abi.patch 2017-01-10 14:35:04.000000000 +0000 +++ epiphany-browser-3.18.10/debian/patches/new_webkit_abi.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -Description: fix compatibility with newer WebKitGTK+. -Origin: upstream, https://git.gnome.org/browse/epiphany/commit/?h=gnome-3-18&id=8ea593d0a26679fcb1d94d25be9d0235a0a67668 -Origin: upstream, https://git.gnome.org/browse/epiphany/commit/?h=gnome-3-18&id=611ece6ac03caeaad7be1f6c5c1129f80aa2d7f4 - -Index: epiphany-browser-3.18.5/configure.ac -=================================================================== ---- epiphany-browser-3.18.5.orig/configure.ac 2017-01-09 08:14:11.000000000 -0500 -+++ epiphany-browser-3.18.5/configure.ac 2017-01-10 09:33:37.790858462 -0500 -@@ -77,7 +77,7 @@ - GTK_REQUIRED=3.13.0 - LIBXML_REQUIRED=2.6.12 - LIBXSLT_REQUIRED=1.1.7 --WEBKIT_GTK_REQUIRED=2.9.5 -+WEBKIT_GTK_REQUIRED=2.13.2 - LIBSOUP_REQUIRED=2.48.0 - GNOME_DESKTOP_REQUIRED=2.91.2 - LIBSECRET_REQUIRED=0.14 -Index: epiphany-browser-3.18.5/embed/web-extension/ephy-web-overview.c -=================================================================== ---- epiphany-browser-3.18.5.orig/embed/web-extension/ephy-web-overview.c 2016-03-14 19:15:49.000000000 -0400 -+++ epiphany-browser-3.18.5/embed/web-extension/ephy-web-overview.c 2017-01-10 09:33:37.790858462 -0500 -@@ -144,8 +144,8 @@ - item->url = g_strdup (url->url); - - class_list = webkit_dom_element_get_class_list (webkit_dom_node_get_parent_element (WEBKIT_DOM_NODE (item->anchor))); -- if (class_list && webkit_dom_dom_token_list_contains (class_list, "overview-removed", NULL)) -- webkit_dom_dom_token_list_remove (class_list, "overview-removed", NULL); -+ if (class_list && webkit_dom_dom_token_list_contains (class_list, "overview-removed")) -+ webkit_dom_dom_token_list_remove (class_list, NULL, "overview-removed", NULL); - - webkit_dom_element_set_attribute (item->anchor, "href", url->url, NULL); - webkit_dom_element_set_attribute (item->anchor, "title", url->title, NULL); diff -Nru epiphany-browser-3.18.5/debian/patches/series epiphany-browser-3.18.10/debian/patches/series --- epiphany-browser-3.18.5/debian/patches/series 2017-01-10 14:33:21.000000000 +0000 +++ epiphany-browser-3.18.10/debian/patches/series 2017-01-17 21:46:15.000000000 +0000 @@ -3,4 +3,3 @@ 12_safetypes.patch 81_ubuntu_force_update_bookmarks_menu.patch ubuntu_titlebars.patch -new_webkit_abi.patch diff -Nru epiphany-browser-3.18.5/doc/Makefile.in epiphany-browser-3.18.10/doc/Makefile.in --- epiphany-browser-3.18.5/doc/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/doc/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -183,8 +183,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/embed/ephy-embed-shell.c epiphany-browser-3.18.10/embed/ephy-embed-shell.c --- epiphany-browser-3.18.5/embed/ephy-embed-shell.c 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/embed/ephy-embed-shell.c 2016-12-28 00:37:59.000000000 +0000 @@ -395,10 +395,6 @@ { GList *l; - ephy_history_service_set_url_thumbnail_time (shell->priv->global_history_service, - url, mtime, - NULL, NULL, NULL); - for (l = shell->priv->web_extensions; l; l = g_list_next (l)) { EphyWebExtensionProxy *web_extension = (EphyWebExtensionProxy *)l->data; @@ -445,6 +441,17 @@ return G_OBJECT (shell->priv->global_history_service); } +static void +snapshot_saved_cb (EphySnapshotService *service, + const char *url, + gint64 mtime, + EphyEmbedShell *shell) +{ + ephy_history_service_set_url_thumbnail_time (EPHY_HISTORY_SERVICE (ephy_embed_shell_get_global_history_service (shell)), + url, mtime, + NULL, NULL, NULL); +} + /** * ephy_embed_shell_get_encodings: * @shell: the #EphyEmbedShell @@ -760,6 +767,10 @@ ephy_embed_shell_create_web_context (embed_shell); embed_shell->priv->user_content = webkit_user_content_manager_new (); } + + g_signal_connect_object (ephy_snapshot_service_get_default (), + "snapshot-saved", G_CALLBACK (snapshot_saved_cb), + embed_shell, 0); } static void diff -Nru epiphany-browser-3.18.5/embed/ephy-web-view.c epiphany-browser-3.18.10/embed/ephy-web-view.c --- epiphany-browser-3.18.5/embed/ephy-web-view.c 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/embed/ephy-web-view.c 2016-12-28 00:37:59.000000000 +0000 @@ -95,6 +95,8 @@ GSList *hidden_popups; GSList *shown_popups; + GtkWidget *geolocation_info_bar; + GtkWidget *notification_info_bar; GtkWidget *password_info_bar; EphyHistoryService *history_service; @@ -478,6 +480,26 @@ return GTK_WIDGET_CLASS (ephy_web_view_parent_class)->button_press_event (widget, event); } +static void +ephy_web_view_track_info_bar (GtkWidget *new_info_bar, + GtkWidget **tracked_info_bar) +{ + g_assert (GTK_IS_INFO_BAR (new_info_bar)); + g_assert (tracked_info_bar); + g_assert (!*tracked_info_bar || GTK_IS_INFO_BAR (*tracked_info_bar)); + + /* We track info bars so we only ever show one of a kind. */ + if (*tracked_info_bar) { + g_object_remove_weak_pointer (G_OBJECT (*tracked_info_bar), + (gpointer *)tracked_info_bar); + gtk_widget_destroy (*tracked_info_bar); + } + + *tracked_info_bar = new_info_bar; + g_object_add_weak_pointer (G_OBJECT (new_info_bar), + (gpointer *)tracked_info_bar); +} + static GtkWidget * ephy_web_view_create_form_auth_save_confirmation_info_bar (EphyWebView *web_view, const char *hostname, @@ -513,17 +535,11 @@ gtk_container_add (GTK_CONTAINER (content_area), label); gtk_widget_show (label); + ephy_web_view_track_info_bar (info_bar, &web_view->priv->password_info_bar); + ephy_embed_add_top_widget (EPHY_GET_EMBED_FROM_EPHY_WEB_VIEW (web_view), info_bar, FALSE); - /* We track the info_bar, so we only ever show one */ - if (web_view->priv->password_info_bar) - gtk_widget_destroy (web_view->priv->password_info_bar); - - web_view->priv->password_info_bar = info_bar; - g_object_add_weak_pointer (G_OBJECT (info_bar), - (gpointer *)&web_view->priv->password_info_bar); - return info_bar; } @@ -609,9 +625,6 @@ view->priv->snapshot_timeout_id = 0; - if (ephy_snapshot_service_lookup_snapshot_path (service, url)) - return FALSE; - data = g_new (GetSnapshotPathAsyncData, 1); data->url = g_strdup (url); data->mtime = time (NULL); @@ -751,11 +764,20 @@ priv->web_extension = NULL; } - if (priv->password_info_bar) - { - g_object_remove_weak_pointer (G_OBJECT (priv->password_info_bar), (gpointer *)&priv->password_info_bar); - priv->password_info_bar = NULL; - } + if (priv->geolocation_info_bar) { + g_object_remove_weak_pointer (G_OBJECT (priv->geolocation_info_bar), (gpointer *)&priv->geolocation_info_bar); + priv->geolocation_info_bar = NULL; + } + + if (priv->notification_info_bar) { + g_object_remove_weak_pointer (G_OBJECT (priv->notification_info_bar), (gpointer *)&priv->notification_info_bar); + priv->notification_info_bar = NULL; + } + + if (priv->password_info_bar) { + g_object_remove_weak_pointer (G_OBJECT (priv->password_info_bar), (gpointer *)&priv->password_info_bar); + priv->password_info_bar = NULL; + } g_signal_handlers_disconnect_by_func (priv->history_service, ephy_web_view_history_cleared_cb, @@ -1472,6 +1494,11 @@ G_CALLBACK (decide_on_permission_request), g_object_ref (decision)); + if (WEBKIT_IS_GEOLOCATION_PERMISSION_REQUEST (decision)) + ephy_web_view_track_info_bar (info_bar, &EPHY_WEB_VIEW (web_view)->priv->geolocation_info_bar); + else + ephy_web_view_track_info_bar (info_bar, &EPHY_WEB_VIEW (web_view)->priv->notification_info_bar); + ephy_embed_add_top_widget (EPHY_GET_EMBED_FROM_EPHY_WEB_VIEW (web_view), info_bar, TRUE); @@ -1685,15 +1712,13 @@ if (!ephy_web_view_is_history_frozen (view) && ephy_embed_shell_get_mode (ephy_embed_shell_get_default ()) != EPHY_EMBED_SHELL_MODE_INCOGNITO) { - if (!ephy_snapshot_service_lookup_snapshot_path (ephy_snapshot_service_get_default (), webkit_web_view_get_uri (web_view))) { - /* FIXME: The 1s delay is a workaround to allow time to render the page and get a favicon. - * https://bugzilla.gnome.org/show_bug.cgi?id=761065 - */ - if (priv->snapshot_timeout_id == 0) { - priv->snapshot_timeout_id = g_timeout_add_seconds_full (G_PRIORITY_LOW, 1, - (GSourceFunc)web_view_check_snapshot, - web_view, NULL); - } + /* FIXME: The 1s delay is a workaround to allow time to render the page and get a favicon. + * https://bugzilla.gnome.org/show_bug.cgi?id=761065 + */ + if (priv->snapshot_timeout_id == 0) { + priv->snapshot_timeout_id = g_timeout_add_seconds_full (G_PRIORITY_LOW, 1, + (GSourceFunc)web_view_check_snapshot, + web_view, NULL); } } @@ -1994,16 +2019,13 @@ priv->load_failed = TRUE; ephy_web_view_set_link_message (view, NULL); - if (error->domain == SOUP_HTTP_ERROR || - error->domain == G_TLS_ERROR) { + if (error->domain != WEBKIT_NETWORK_ERROR && + error->domain != WEBKIT_POLICY_ERROR && + error->domain != WEBKIT_PLUGIN_ERROR) { ephy_web_view_load_error_page (view, uri, EPHY_WEB_VIEW_ERROR_PAGE_NETWORK_ERROR, error); return TRUE; } - g_return_val_if_fail ((error->domain == WEBKIT_NETWORK_ERROR) || - (error->domain == WEBKIT_POLICY_ERROR) || - (error->domain == WEBKIT_PLUGIN_ERROR), FALSE); - switch (error->code) { case WEBKIT_NETWORK_ERROR_FAILED: case WEBKIT_NETWORK_ERROR_TRANSPORT: @@ -2225,8 +2247,11 @@ GtkWidget * ephy_web_view_new_with_related_view (WebKitWebView *related_view) { + EphyEmbedShell *shell = ephy_embed_shell_get_default (); + return g_object_new (EPHY_TYPE_WEB_VIEW, "related-view", related_view, + "user-content-manager", ephy_embed_shell_get_user_content_manager (shell), "settings", ephy_embed_prefs_get_settings (), NULL); } diff -Nru epiphany-browser-3.18.5/embed/Makefile.in epiphany-browser-3.18.10/embed/Makefile.in --- epiphany-browser-3.18.5/embed/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/embed/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -266,8 +266,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/embed/web-extension/ephy-web-extension.c epiphany-browser-3.18.10/embed/web-extension/ephy-web-extension.c --- epiphany-browser-3.18.5/embed/web-extension/ephy-web-extension.c 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/embed/web-extension/ephy-web-extension.c 2016-12-28 00:37:59.000000000 +0000 @@ -111,11 +111,13 @@ WebKitURIResponse *redirected_response, EphyWebExtension *extension) { + const char *original_request_uri; const char *request_uri; const char *page_uri; gboolean ret; request_uri = webkit_uri_request_get_uri (request); + original_request_uri = request_uri; if (g_settings_get_boolean (EPHY_SETTINGS_WEB, EPHY_PREFS_WEB_DO_NOT_TRACK)) { SoupMessageHeaders *headers; @@ -143,7 +145,7 @@ page_uri = webkit_web_page_get_uri (web_page); /* Always load the main resource. */ - if (g_strcmp0 (request_uri, page_uri) == 0) + if (g_strcmp0 (original_request_uri, page_uri) == 0) return FALSE; /* Always load data requests, as uri_tester won't do any good here. */ diff -Nru epiphany-browser-3.18.5/embed/web-extension/ephy-web-overview.c epiphany-browser-3.18.10/embed/web-extension/ephy-web-overview.c --- epiphany-browser-3.18.5/embed/web-extension/ephy-web-overview.c 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/embed/web-extension/ephy-web-overview.c 2016-12-28 00:37:59.000000000 +0000 @@ -144,8 +144,8 @@ item->url = g_strdup (url->url); class_list = webkit_dom_element_get_class_list (webkit_dom_node_get_parent_element (WEBKIT_DOM_NODE (item->anchor))); - if (class_list && webkit_dom_dom_token_list_contains (class_list, "overview-removed", NULL)) - webkit_dom_dom_token_list_remove (class_list, "overview-removed", NULL); + if (class_list && webkit_dom_dom_token_list_contains (class_list, "overview-removed")) + webkit_dom_dom_token_list_remove (class_list, NULL, "overview-removed", NULL); webkit_dom_element_set_attribute (item->anchor, "href", url->url, NULL); webkit_dom_element_set_attribute (item->anchor, "title", url->title, NULL); diff -Nru epiphany-browser-3.18.5/embed/web-extension/Makefile.in epiphany-browser-3.18.10/embed/web-extension/Makefile.in --- epiphany-browser-3.18.5/embed/web-extension/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/embed/web-extension/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -242,8 +242,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/embed/web-extension/uri-tester.c epiphany-browser-3.18.10/embed/web-extension/uri-tester.c --- epiphany-browser-3.18.5/embed/web-extension/uri-tester.c 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/embed/web-extension/uri-tester.c 2016-12-28 00:37:59.000000000 +0000 @@ -113,35 +113,12 @@ return uri; } -typedef struct { - UriTester *tester; - char *dest_uri; -} RetrieveFilterAsyncData; - -static void -uri_tester_retrieve_filter_finished (GFile *src, - GAsyncResult *result, - RetrieveFilterAsyncData *data) -{ - GError *error = NULL; - - if (!g_file_copy_finish (src, result, &error)) { - LOG ("Error retrieving filter: %s\n", error->message); - g_error_free (error); - } else - uri_tester_parse_file_at_uri (data->tester, data->dest_uri); - - g_object_unref (data->tester); - g_free (data->dest_uri); - g_slice_free (RetrieveFilterAsyncData, data); -} - static void uri_tester_retrieve_filter (UriTester *tester, const char *url, const char *fileuri) { GFile *src; GFile *dest; - RetrieveFilterAsyncData *data; + GError *error = NULL; g_return_if_fail (IS_URI_TESTER (tester)); g_return_if_fail (url != NULL); @@ -150,16 +127,17 @@ src = g_file_new_for_uri (url); dest = g_file_new_for_uri (fileuri); - data = g_slice_new (RetrieveFilterAsyncData); - data->tester = g_object_ref (tester); - data->dest_uri = g_file_get_uri (dest); - - g_file_copy_async (src, dest, - G_FILE_COPY_OVERWRITE, - G_PRIORITY_DEFAULT, - NULL, NULL, NULL, - (GAsyncReadyCallback)uri_tester_retrieve_filter_finished, - data); + g_file_copy (src, dest, + G_FILE_COPY_OVERWRITE, + NULL, NULL, NULL, + &error); + + if (error != NULL) { + g_warning ("Error retrieving adblock filter: %s\n", error->message); + g_error_free (error); + } else { + uri_tester_parse_file_at_uri (tester, fileuri); + } g_object_unref (src); g_object_unref (dest); @@ -259,7 +237,7 @@ if (error) { - LOG ("Error loading filters from %s: %s", filepath, error->message); + g_warning ("Error loading filters from %s: %s", filepath, error->message); g_error_free (error); } @@ -767,64 +745,43 @@ } static void -file_parse_cb (GDataInputStream *stream, GAsyncResult *result, UriTester *tester) +uri_tester_parse_file_at_uri (UriTester *tester, const char *fileuri) { + GFile *file; + GFileInputStream *stream; + GDataInputStream *data_stream = NULL; char *line; GError *error = NULL; - line = g_data_input_stream_read_line_finish (stream, result, NULL, &error); - if (!line) { - if (error) { - LOG ("Error parsing file: %s\n", error->message); - g_error_free (error); - } - - return; - } - - uri_tester_parse_line (tester, line, FALSE); - g_free (line); - - g_data_input_stream_read_line_async (stream, G_PRIORITY_DEFAULT_IDLE, NULL, - (GAsyncReadyCallback)file_parse_cb, tester); -} - -static void -file_read_cb (GFile *file, GAsyncResult *result, UriTester *tester) -{ - GFileInputStream *stream; - GDataInputStream *data_stream; - GError *error = NULL; + file = g_file_new_for_uri (fileuri); + stream = g_file_read (file, NULL, &error); + g_object_unref (file); - stream = g_file_read_finish (file, result, &error); if (!stream) { - char *path; - - path = g_file_get_path (file); - LOG ("Error opening file %s for parsing: %s\n", path, error->message); - g_free (path); + g_warning ("Error opening %s for parsing: %s\n", fileuri, error->message); g_error_free (error); - return; } data_stream = g_data_input_stream_new (G_INPUT_STREAM (stream)); g_object_unref (stream); - g_data_input_stream_read_line_async (data_stream, G_PRIORITY_DEFAULT_IDLE, NULL, - (GAsyncReadyCallback)file_parse_cb, tester); - g_object_unref (data_stream); -} + for (;;) { + line = g_data_input_stream_read_line (data_stream, NULL, NULL, &error); + if (!line) { + if (error) { + g_warning ("Error parsing file: %s\n", error->message); + g_error_free (error); + } -static void -uri_tester_parse_file_at_uri (UriTester *tester, const char *fileuri) -{ - GFile *file; - GFileInputStream *stream; + break; + } - file = g_file_new_for_uri (fileuri); - g_file_read_async (file, G_PRIORITY_DEFAULT_IDLE, NULL, (GAsyncReadyCallback)file_read_cb, tester); - g_object_unref (file); + uri_tester_parse_line (tester, line, FALSE); + g_free (line); + } + + g_object_unref (data_stream); } static void diff -Nru epiphany-browser-3.18.5/help/Makefile.in epiphany-browser-3.18.10/help/Makefile.in --- epiphany-browser-3.18.5/help/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/help/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -152,8 +152,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/lib/egg/Makefile.in epiphany-browser-3.18.10/lib/egg/Makefile.in --- epiphany-browser-3.18.5/lib/egg/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/lib/egg/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -211,8 +211,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/lib/ephy-snapshot-service.c epiphany-browser-3.18.10/lib/ephy-snapshot-service.c --- epiphany-browser-3.18.5/lib/ephy-snapshot-service.c 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/lib/ephy-snapshot-service.c 2016-12-28 00:37:59.000000000 +0000 @@ -31,25 +31,65 @@ #define EPHY_SNAPSHOT_SERVICE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), EPHY_TYPE_SNAPSHOT_SERVICE, EphySnapshotServicePrivate)) -/* Update snapshots after one week. */ -#define SNAPSHOT_UPDATE_THRESHOLD (60 * 60 * 24 * 7) - struct _EphySnapshotServicePrivate { + /* Disk cache */ GnomeDesktopThumbnailFactory *factory; + + /* Memory cache */ GHashTable *cache; }; G_DEFINE_TYPE (EphySnapshotService, ephy_snapshot_service, G_TYPE_OBJECT) -/* GObject boilerplate methods. */ +enum { + SNAPSHOT_SAVED, + LAST_SIGNAL +}; + +static guint signals[LAST_SIGNAL]; + +typedef enum { + SNAPSHOT_STALE, + SNAPSHOT_FRESH +} EphySnapshotFreshness; + +typedef struct { + char *path; + EphySnapshotFreshness freshness; +} SnapshotPathCachedData; + +static void +snapshot_path_cached_data_free (SnapshotPathCachedData *data) +{ + g_free (data->path); + g_free (data); +} static void ephy_snapshot_service_class_init (EphySnapshotServiceClass *klass) { + GObjectClass *object_class = G_OBJECT_CLASS (klass); + g_type_class_add_private (klass, sizeof (EphySnapshotServicePrivate)); -} + /** + * EphySnapshotService::snapshot-saved: + * @url: the URL the snapshot was saved for + * @mtime: the mtime embedded in the snapshot, needed to retrieve it + * + * The ::snapshot-saved signal is emitted when a new snapshot is saved. + **/ + signals[SNAPSHOT_SAVED] = g_signal_new ("snapshot-saved", + G_OBJECT_CLASS_TYPE (object_class), + G_SIGNAL_RUN_LAST, + 0, + NULL, NULL, NULL, + G_TYPE_NONE, + 2, + G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, + G_TYPE_INT64); +} static void ephy_snapshot_service_init (EphySnapshotService *self) @@ -58,7 +98,7 @@ self->priv->factory = gnome_desktop_thumbnail_factory_new (GNOME_DESKTOP_THUMBNAIL_SIZE_LARGE); self->priv->cache = g_hash_table_new_full (g_str_hash, g_str_equal, (GDestroyNotify)g_free, - (GDestroyNotify)g_free); + (GDestroyNotify)snapshot_path_cached_data_free); } static GdkPixbuf * @@ -352,6 +392,30 @@ return service; } +const char * +ephy_snapshot_service_lookup_snapshot_path (EphySnapshotService *service, + const char *url) +{ + SnapshotPathCachedData *data; + + g_return_val_if_fail (EPHY_IS_SNAPSHOT_SERVICE (service), NULL); + + data = g_hash_table_lookup (service->priv->cache, url); + + return data == NULL ? NULL : data->path; +} + +static EphySnapshotFreshness +ephy_snapshot_service_lookup_snapshot_freshness (EphySnapshotService *service, + const char *url) +{ + SnapshotPathCachedData *data; + + data = g_hash_table_lookup (service->priv->cache, url); + + return data == NULL ? SNAPSHOT_STALE : data->freshness; +} + typedef struct { char *url; time_t mtime; @@ -384,14 +448,14 @@ typedef struct { GHashTable *cache; char *url; - char *path; + SnapshotPathCachedData *data; } CacheData; static gboolean idle_cache_snapshot_path (gpointer user_data) { - CacheData* data = (CacheData*)user_data; - g_hash_table_insert (data->cache, data->url, data->path); + CacheData *data = (CacheData *)user_data; + g_hash_table_insert (data->cache, data->url, data->data); g_hash_table_unref (data->cache); g_free (data); @@ -399,6 +463,22 @@ } static void +cache_snapshot_data_in_idle (EphySnapshotService *service, + const char *url, + const char *path, + EphySnapshotFreshness freshness) +{ + CacheData *data; + data = g_new (CacheData, 1); + data->cache = g_hash_table_ref (service->priv->cache); + data->url = g_strdup (url); + data->data = g_new (SnapshotPathCachedData, 1); + data->data->path = g_strdup (path); + data->data->freshness = freshness; + g_idle_add (idle_cache_snapshot_path, data); +} + +static void get_snapshot_for_url_thread (GTask *task, EphySnapshotService *service, SnapshotForURLAsyncData *data, @@ -406,7 +486,6 @@ { GdkPixbuf *snapshot; GError *error = NULL; - CacheData *cache_data; data->path = gnome_desktop_thumbnail_factory_lookup (service->priv->factory, data->url, data->mtime); if (data->path == NULL) { @@ -417,11 +496,7 @@ return; } - cache_data = g_new (CacheData, 1); - cache_data->cache = g_hash_table_ref (service->priv->cache); - cache_data->url = g_strdup (data->url); - cache_data->path = g_strdup (data->path); - g_idle_add (idle_cache_snapshot_path, cache_data); + cache_snapshot_data_in_idle (service, data->url, data->path, SNAPSHOT_STALE); snapshot = gdk_pixbuf_new_from_file (data->path, &error); if (snapshot == NULL) { @@ -527,6 +602,28 @@ ephy_snapshot_service_take_from_webview (task); } +/* We want to return an existing snapshot immediately, even if it is stale, + * because snapshot creation is best-effort and often fails (e.g. if the user + * navigates away from the page too soon), and we must be sure to return an old + * result if a new one does not yet exist. + */ +static void +ensure_snapshot_freshness_for_web_view (EphySnapshotService *service, + WebKitWebView *web_view) +{ + GTask *task; + const char *uri; + + uri = webkit_web_view_get_uri (web_view); + if (ephy_snapshot_service_lookup_snapshot_freshness (service, uri) != SNAPSHOT_FRESH) { + task = g_task_new (service, NULL, NULL, NULL); + g_task_set_task_data (task, + snapshot_async_data_new (web_view, time (NULL)), + (GDestroyNotify)snapshot_async_data_free); + g_idle_add ((GSourceFunc)ephy_snapshot_service_take_from_webview, task); + } +} + /** * ephy_snapshot_service_get_snapshot_async: * @service: a #EphySnapshotService @@ -550,7 +647,6 @@ { GTask *task; const char *uri; - time_t current_time = time (NULL); g_return_if_fail (EPHY_IS_SNAPSHOT_SERVICE (service)); g_return_if_fail (WEBKIT_IS_WEB_VIEW (web_view)); @@ -560,15 +656,19 @@ snapshot_async_data_new_for_snapshot (web_view, mtime), (GDestroyNotify)snapshot_async_data_free); - /* Try to get the snapshot from the cache first if we have a URL */ + /* Try to get the snapshot from the cache first if we have a URL, but only if + * the snapshot path is in memory cache; this is an indication that the + * snapshot is fresh. */ uri = webkit_web_view_get_uri (web_view); - if (uri && current_time - mtime <= SNAPSHOT_UPDATE_THRESHOLD) + if (uri) { ephy_snapshot_service_get_snapshot_for_url_async (service, uri, mtime, cancellable, (GAsyncReadyCallback)got_snapshot_for_url, task); - else - g_idle_add (ephy_snapshot_service_take_from_webview, task); + ensure_snapshot_freshness_for_web_view (service, web_view); + } else { + g_idle_add ((GSourceFunc)ephy_snapshot_service_take_from_webview, task); + } } /** @@ -610,33 +710,58 @@ } typedef struct { + EphySnapshotService *service; GdkPixbuf *snapshot; char *url; time_t mtime; + gint refcount; } SaveSnapshotAsyncData; static SaveSnapshotAsyncData * -save_snapshot_async_data_new (GdkPixbuf *snapshot, - const char *url, - time_t mtime) +save_snapshot_async_data_new (EphySnapshotService *service, + GdkPixbuf *snapshot, + const char *url, + time_t mtime) { SaveSnapshotAsyncData *data; data = g_slice_new0 (SaveSnapshotAsyncData); + data->service = g_object_ref (service); data->snapshot = g_object_ref (snapshot); data->url = g_strdup (url); data->mtime = mtime; + data->refcount = 1; return data; } +static SaveSnapshotAsyncData * +save_snapshot_async_data_ref (SaveSnapshotAsyncData *data) +{ + g_atomic_int_add (&data->refcount, 1); + return data; +} + static void -save_snapshot_async_data_free (SaveSnapshotAsyncData *data) +save_snapshot_async_data_unref (SaveSnapshotAsyncData *data) { - g_object_unref (data->snapshot); - g_free (data->url); + if (g_atomic_int_dec_and_test (&data->refcount)) { + g_object_unref (data->service); + g_object_unref (data->snapshot); + g_free (data->url); + g_slice_free (SaveSnapshotAsyncData, data); + } +} + +static gboolean +idle_emit_snapshot_saved (gpointer user_data) +{ + SaveSnapshotAsyncData *data = (SaveSnapshotAsyncData *)user_data; - g_slice_free (SaveSnapshotAsyncData, data); + g_signal_emit (data->service, signals[SNAPSHOT_SAVED], 0, data->url, data->mtime); + + save_snapshot_async_data_unref (data); + return G_SOURCE_REMOVE; } static void @@ -646,20 +771,15 @@ GCancellable *cancellable) { char *path; - CacheData *cache_data; gnome_desktop_thumbnail_factory_save_thumbnail (service->priv->factory, data->snapshot, data->url, data->mtime); + g_idle_add (idle_emit_snapshot_saved, save_snapshot_async_data_ref (data)); path = gnome_desktop_thumbnail_path_for_uri (data->url, GNOME_DESKTOP_THUMBNAIL_SIZE_LARGE); - - cache_data = g_new (CacheData, 1); - cache_data->cache = g_hash_table_ref (service->priv->cache); - cache_data->url = g_strdup (data->url); - cache_data->path = g_strdup (path); - g_idle_add (idle_cache_snapshot_path, cache_data); + cache_snapshot_data_in_idle (service, data->url, path, SNAPSHOT_FRESH); g_task_return_pointer (task, path, g_free); } @@ -682,8 +802,8 @@ task = g_task_new (service, cancellable, callback, user_data); g_task_set_priority (task, G_PRIORITY_LOW); g_task_set_task_data (task, - save_snapshot_async_data_new (snapshot, url, mtime), - (GDestroyNotify)save_snapshot_async_data_free); + save_snapshot_async_data_new (service, snapshot, url, mtime), + (GDestroyNotify)save_snapshot_async_data_unref); g_task_run_in_thread (task, (GTaskThreadFunc)save_snapshot_thread); g_object_unref (task); } @@ -698,15 +818,6 @@ return g_task_propagate_pointer (G_TASK (result), error); } -const char * -ephy_snapshot_service_lookup_snapshot_path (EphySnapshotService *service, - const char *url) -{ - g_return_val_if_fail (EPHY_IS_SNAPSHOT_SERVICE (service), NULL); - - return g_hash_table_lookup (service->priv->cache, url); -} - static void get_snapshot_path_for_url_thread (GTask *task, EphySnapshotService *service, @@ -714,7 +825,6 @@ GCancellable *cancellable) { char *path; - CacheData *cache_data; path = gnome_desktop_thumbnail_factory_lookup (service->priv->factory, data->url, data->mtime); if (!path) { @@ -725,11 +835,7 @@ return; } - cache_data = g_new (CacheData, 1); - cache_data->cache = g_hash_table_ref (service->priv->cache); - cache_data->url = g_strdup (data->url); - cache_data->path = g_strdup (path); - g_idle_add (idle_cache_snapshot_path, cache_data); + cache_snapshot_data_in_idle (service, data->url, path, SNAPSHOT_STALE); g_task_return_pointer (task, path, g_free); } @@ -750,7 +856,8 @@ task = g_task_new (service, cancellable, callback, user_data); - path = g_hash_table_lookup (service->priv->cache, url); + path = ephy_snapshot_service_lookup_snapshot_path (service, url); + if (path) { g_task_return_pointer (task, g_strdup (path), g_free); g_object_unref (task); @@ -801,7 +908,6 @@ { GTask *task; const char *uri; - time_t current_time = time (NULL); g_return_if_fail (EPHY_IS_SNAPSHOT_SERVICE (service)); g_return_if_fail (WEBKIT_IS_WEB_VIEW (web_view)); @@ -809,9 +915,8 @@ task = g_task_new (service, cancellable, callback, user_data); uri = webkit_web_view_get_uri (web_view); - if (uri && current_time - mtime <= SNAPSHOT_UPDATE_THRESHOLD) { - const char *path = g_hash_table_lookup (service->priv->cache, uri); - + if (uri) { + const char *path = ephy_snapshot_service_lookup_snapshot_path (service, uri); if (path) { g_task_return_pointer (task, g_strdup (path), g_free); g_object_unref (task); @@ -824,6 +929,8 @@ (GAsyncReadyCallback)got_snapshot_path_for_url, task); } + + ensure_snapshot_freshness_for_web_view (service, web_view); } else { g_task_set_task_data (task, snapshot_async_data_new (web_view, mtime), diff -Nru epiphany-browser-3.18.5/lib/history/Makefile.in epiphany-browser-3.18.10/lib/history/Makefile.in --- epiphany-browser-3.18.5/lib/history/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/lib/history/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -215,8 +215,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/lib/Makefile.in epiphany-browser-3.18.10/lib/Makefile.in --- epiphany-browser-3.18.5/lib/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/lib/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -304,8 +304,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/lib/widgets/Makefile.in epiphany-browser-3.18.10/lib/widgets/Makefile.in --- epiphany-browser-3.18.5/lib/widgets/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/lib/widgets/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -220,8 +220,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/m4/appstream-xml.m4 epiphany-browser-3.18.10/m4/appstream-xml.m4 --- epiphany-browser-3.18.5/m4/appstream-xml.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/appstream-xml.m4 2016-12-28 00:40:30.000000000 +0000 @@ -10,7 +10,7 @@ dnl .appdata.xml files to appstream_XML in Makefile.am and they will be validated dnl at make check time, if appstream-util is installed, as well as installed dnl to the correct location automatically. Add --enable-appstream-util to -dnl DISTCHECK_CONFIGURE_FLAGS in Makefile.am to require valid AppData XML when +dnl AM_DISTCHECK_CONFIGURE_FLAGS in Makefile.am to require valid AppData XML when dnl doing a distcheck. dnl dnl Adding files to appstream_XML does not distribute them automatically. diff -Nru epiphany-browser-3.18.5/m4/ax_append_compile_flags.m4 epiphany-browser-3.18.10/m4/ax_append_compile_flags.m4 --- epiphany-browser-3.18.5/m4/ax_append_compile_flags.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/ax_append_compile_flags.m4 2016-12-28 00:40:30.000000000 +0000 @@ -4,7 +4,7 @@ # # SYNOPSIS # -# AX_APPEND_COMPILE_FLAGS([FLAG1 FLAG2 ...], [FLAGS-VARIABLE], [EXTRA-FLAGS]) +# AX_APPEND_COMPILE_FLAGS([FLAG1 FLAG2 ...], [FLAGS-VARIABLE], [EXTRA-FLAGS], [INPUT]) # # DESCRIPTION # @@ -20,6 +20,8 @@ # the flags: "CFLAGS EXTRA-FLAGS FLAG". This can for example be used to # force the compiler to issue an error when a bad flag is given. # +# INPUT gives an alternative input source to AC_COMPILE_IFELSE. +# # NOTE: This macro depends on the AX_APPEND_FLAG and # AX_CHECK_COMPILE_FLAG. Please keep this macro in sync with # AX_APPEND_LINK_FLAGS. @@ -54,12 +56,12 @@ # modified version of the Autoconf Macro, you may extend this special # exception to the GPL to apply to your modified version as well. -#serial 4 +#serial 5 AC_DEFUN([AX_APPEND_COMPILE_FLAGS], [AX_REQUIRE_DEFINED([AX_CHECK_COMPILE_FLAG]) AX_REQUIRE_DEFINED([AX_APPEND_FLAG]) for flag in $1; do - AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [$2])], [], [$3]) + AX_CHECK_COMPILE_FLAG([$flag], [AX_APPEND_FLAG([$flag], [$2])], [], [$3], [$4]) done ])dnl AX_APPEND_COMPILE_FLAGS diff -Nru epiphany-browser-3.18.5/m4/ax_append_link_flags.m4 epiphany-browser-3.18.10/m4/ax_append_link_flags.m4 --- epiphany-browser-3.18.5/m4/ax_append_link_flags.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/ax_append_link_flags.m4 2016-12-28 00:40:30.000000000 +0000 @@ -4,7 +4,7 @@ # # SYNOPSIS # -# AX_APPEND_LINK_FLAGS([FLAG1 FLAG2 ...], [FLAGS-VARIABLE], [EXTRA-FLAGS]) +# AX_APPEND_LINK_FLAGS([FLAG1 FLAG2 ...], [FLAGS-VARIABLE], [EXTRA-FLAGS], [INPUT]) # # DESCRIPTION # @@ -19,6 +19,8 @@ # EXTRA-FLAGS FLAG". This can for example be used to force the linker to # issue an error when a bad flag is given. # +# INPUT gives an alternative input source to AC_COMPILE_IFELSE. +# # NOTE: This macro depends on the AX_APPEND_FLAG and AX_CHECK_LINK_FLAG. # Please keep this macro in sync with AX_APPEND_COMPILE_FLAGS. # @@ -52,12 +54,12 @@ # modified version of the Autoconf Macro, you may extend this special # exception to the GPL to apply to your modified version as well. -#serial 4 +#serial 5 AC_DEFUN([AX_APPEND_LINK_FLAGS], [AX_REQUIRE_DEFINED([AX_CHECK_LINK_FLAG]) AX_REQUIRE_DEFINED([AX_APPEND_FLAG]) for flag in $1; do - AX_CHECK_LINK_FLAG([$flag], [AX_APPEND_FLAG([$flag], [m4_default([$2], [LDFLAGS])])], [], [$3]) + AX_CHECK_LINK_FLAG([$flag], [AX_APPEND_FLAG([$flag], [m4_default([$2], [LDFLAGS])])], [], [$3], [$4]) done ])dnl AX_APPEND_LINK_FLAGS diff -Nru epiphany-browser-3.18.5/m4/ax_code_coverage.m4 epiphany-browser-3.18.10/m4/ax_code_coverage.m4 --- epiphany-browser-3.18.5/m4/ax_code_coverage.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/ax_code_coverage.m4 2016-12-28 00:40:30.000000000 +0000 @@ -8,14 +8,15 @@ # # DESCRIPTION # -# Defines CODE_COVERAGE_CFLAGS and CODE_COVERAGE_LDFLAGS which should be -# included in the CFLAGS and LIBS/LDFLAGS variables of every build target -# (program or library) which should be built with code coverage support. -# Also defines CODE_COVERAGE_RULES which should be substituted in your -# Makefile; and $enable_code_coverage which can be used in subsequent -# configure output. CODE_COVERAGE_ENABLED is defined and substituted, and -# corresponds to the value of the --enable-code-coverage option, which -# defaults to being disabled. +# Defines CODE_COVERAGE_CPPFLAGS, CODE_COVERAGE_CFLAGS, +# CODE_COVERAGE_CXXFLAGS and CODE_COVERAGE_LIBS which should be included +# in the CPPFLAGS, CFLAGS CXXFLAGS and LIBS/LIBADD variables of every +# build target (program or library) which should be built with code +# coverage support. Also defines CODE_COVERAGE_RULES which should be +# substituted in your Makefile; and $enable_code_coverage which can be +# used in subsequent configure output. CODE_COVERAGE_ENABLED is defined +# and substituted, and corresponds to the value of the +# --enable-code-coverage option, which defaults to being disabled. # # Test also for gcov program and create GCOV variable that could be # substituted. @@ -32,8 +33,10 @@ # Makefile.am: # # @CODE_COVERAGE_RULES@ -# my_program_LIBS = ... $(CODE_COVERAGE_LDFLAGS) ... +# my_program_LIBS = ... $(CODE_COVERAGE_LIBS) ... +# my_program_CPPFLAGS = ... $(CODE_COVERAGE_CPPFLAGS) ... # my_program_CFLAGS = ... $(CODE_COVERAGE_CFLAGS) ... +# my_program_CXXFLAGS = ... $(CODE_COVERAGE_CXXFLAGS) ... # # This results in a "check-code-coverage" rule being added to any # Makefile.am which includes "@CODE_COVERAGE_RULES@" (assuming the module @@ -42,12 +45,17 @@ # (`make check`) and build a code coverage report detailing the code which # was touched, then print the URI for the report. # +# In earlier versions of this macro, CODE_COVERAGE_LDFLAGS was defined +# instead of CODE_COVERAGE_LIBS. They are both still defined, but use of +# CODE_COVERAGE_LIBS is preferred for clarity; CODE_COVERAGE_LDFLAGS is +# deprecated. They have the same value. +# # This code was derived from Makefile.decl in GLib, originally licenced # under LGPLv2.1+. # # LICENSE # -# Copyright (c) 2012 Philip Withnall +# Copyright (c) 2012, 2016 Philip Withnall # Copyright (c) 2012 Xan Lopez # Copyright (c) 2012 Christian Persch # Copyright (c) 2012 Paolo Borelli @@ -67,7 +75,7 @@ # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . -#serial 5 +#serial 20 AC_DEFUN([AX_CODE_COVERAGE],[ dnl Check for --enable-code-coverage @@ -103,52 +111,64 @@ AC_MSG_ERROR([not compiling with gcc, which is required for gcov code coverage]) ]) - # List of supported lcov versions. - lcov_version_list="1.6 1.7 1.8 1.9 1.10 1.11" - AC_CHECK_PROG([LCOV], [lcov], [lcov]) AC_CHECK_PROG([GENHTML], [genhtml], [genhtml]) - AS_IF([ test "$LCOV" ], [ - AC_CACHE_CHECK([for lcov version], ax_cv_lcov_version, [ - ax_cv_lcov_version=invalid - lcov_version=`$LCOV -v 2>/dev/null | $SED -e 's/^.* //'` - for lcov_check_version in $lcov_version_list; do - if test "$lcov_version" = "$lcov_check_version"; then - ax_cv_lcov_version="$lcov_check_version (ok)" - fi - done - ]) - ], [ - lcov_msg="To enable code coverage reporting you must have one of the following lcov versions installed: $lcov_version_list" - AC_MSG_ERROR([$lcov_msg]) + AS_IF([ test -z "$LCOV" ], [ + AC_MSG_ERROR([To enable code coverage reporting you must have lcov installed]) ]) - case $ax_cv_lcov_version in - ""|invalid[)] - lcov_msg="You must have one of the following versions of lcov: $lcov_version_list (found: $lcov_version)." - AC_MSG_ERROR([$lcov_msg]) - LCOV="exit 0;" - ;; - esac - AS_IF([ test -z "$GENHTML" ], [ AC_MSG_ERROR([Could not find genhtml from the lcov package]) ]) dnl Build the code coverage flags + dnl Define CODE_COVERAGE_LDFLAGS for backwards compatibility + CODE_COVERAGE_CPPFLAGS="-DNDEBUG" CODE_COVERAGE_CFLAGS="-O0 -g -fprofile-arcs -ftest-coverage" - CODE_COVERAGE_LDFLAGS="-lgcov" + CODE_COVERAGE_CXXFLAGS="-O0 -g -fprofile-arcs -ftest-coverage" + CODE_COVERAGE_LIBS="-lgcov" + CODE_COVERAGE_LDFLAGS="$CODE_COVERAGE_LIBS" + AC_SUBST([CODE_COVERAGE_CPPFLAGS]) AC_SUBST([CODE_COVERAGE_CFLAGS]) + AC_SUBST([CODE_COVERAGE_CXXFLAGS]) + AC_SUBST([CODE_COVERAGE_LIBS]) AC_SUBST([CODE_COVERAGE_LDFLAGS]) + + [CODE_COVERAGE_RULES_CHECK=' + -$(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) -k check + $(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) code-coverage-capture +'] + [CODE_COVERAGE_RULES_CAPTURE=' + $(code_coverage_v_lcov_cap)$(LCOV) $(code_coverage_quiet) $(addprefix --directory ,$(CODE_COVERAGE_DIRECTORY)) --capture --output-file "$(CODE_COVERAGE_OUTPUT_FILE).tmp" --test-name "$(call code_coverage_sanitize,$(PACKAGE_NAME)-$(PACKAGE_VERSION))" --no-checksum --compat-libtool $(CODE_COVERAGE_LCOV_SHOPTS) $(CODE_COVERAGE_LCOV_OPTIONS) + $(code_coverage_v_lcov_ign)$(LCOV) $(code_coverage_quiet) $(addprefix --directory ,$(CODE_COVERAGE_DIRECTORY)) --remove "$(CODE_COVERAGE_OUTPUT_FILE).tmp" "/tmp/*" $(CODE_COVERAGE_IGNORE_PATTERN) --output-file "$(CODE_COVERAGE_OUTPUT_FILE)" $(CODE_COVERAGE_LCOV_SHOPTS) $(CODE_COVERAGE_LCOV_RMOPTS) + -@rm -f $(CODE_COVERAGE_OUTPUT_FILE).tmp + $(code_coverage_v_genhtml)LANG=C $(GENHTML) $(code_coverage_quiet) $(addprefix --prefix ,$(CODE_COVERAGE_DIRECTORY)) --output-directory "$(CODE_COVERAGE_OUTPUT_DIRECTORY)" --title "$(PACKAGE_NAME)-$(PACKAGE_VERSION) Code Coverage" --legend --show-details "$(CODE_COVERAGE_OUTPUT_FILE)" $(CODE_COVERAGE_GENHTML_OPTIONS) + @echo "file://$(abs_builddir)/$(CODE_COVERAGE_OUTPUT_DIRECTORY)/index.html" +'] + [CODE_COVERAGE_RULES_CLEAN=' +clean: code-coverage-clean +distclean: code-coverage-clean +code-coverage-clean: + -$(LCOV) --directory $(top_builddir) -z + -rm -rf $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_FILE).tmp $(CODE_COVERAGE_OUTPUT_DIRECTORY) + -find . \( -name "*.gcda" -o -name "*.gcno" -o -name "*.gcov" \) -delete +'] + ], [ + [CODE_COVERAGE_RULES_CHECK=' + @echo "Need to reconfigure with --enable-code-coverage" +'] + CODE_COVERAGE_RULES_CAPTURE="$CODE_COVERAGE_RULES_CHECK" + CODE_COVERAGE_RULES_CLEAN='' ]) -CODE_COVERAGE_RULES=' +[CODE_COVERAGE_RULES=' # Code coverage # # Optional: # - CODE_COVERAGE_DIRECTORY: Top-level directory for code coverage reporting. +# Multiple directories may be specified, separated by whitespace. # (Default: $(top_builddir)) # - CODE_COVERAGE_OUTPUT_FILE: Filename and path for the .info file generated # by lcov for code coverage. (Default: @@ -156,13 +176,26 @@ # - CODE_COVERAGE_OUTPUT_DIRECTORY: Directory for generated code coverage # reports to be created. (Default: # $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage) +# - CODE_COVERAGE_BRANCH_COVERAGE: Set to 1 to enforce branch coverage, +# set to 0 to disable it and leave empty to stay with the default. +# (Default: empty) +# - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov +# instances. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE) +# - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov +# instances. (Default: $CODE_COVERAGE_LCOV_SHOPTS_DEFAULT) # - CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH: --gcov-tool pathtogcov -# - CODE_COVERAGE_LCOV_OPTIONS_DEFAULT: Extra options to pass to the lcov instance. -# (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) -# - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the lcov instance. -# (Default: $CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) +# - CODE_COVERAGE_LCOV_OPTIONS_DEFAULT: Extra options to pass to the +# collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) +# - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov +# instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) +# - CODE_COVERAGE_LCOV_RMOPTS_DEFAULT: Extra options to pass to the filtering +# lcov instance. (Default: empty) +# - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov +# instance. (Default: $CODE_COVERAGE_LCOV_RMOPTS_DEFAULT) +# - CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT: Extra options to pass to the +# genhtml instance. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE) # - CODE_COVERAGE_GENHTML_OPTIONS: Extra options to pass to the genhtml -# instance. (Default: empty) +# instance. (Default: $CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT) # - CODE_COVERAGE_IGNORE_PATTERN: Extra glob pattern of files to ignore # # The generated report will be titled using the $(PACKAGE_NAME) and @@ -173,56 +206,58 @@ CODE_COVERAGE_DIRECTORY ?= $(top_builddir) CODE_COVERAGE_OUTPUT_FILE ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage.info CODE_COVERAGE_OUTPUT_DIRECTORY ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage +CODE_COVERAGE_BRANCH_COVERAGE ?= +CODE_COVERAGE_LCOV_SHOPTS_DEFAULT ?= $(if $(CODE_COVERAGE_BRANCH_COVERAGE),\ +--rc lcov_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE)) +CODE_COVERAGE_LCOV_SHOPTS ?= $(CODE_COVERAGE_LCOV_SHOPTS_DEFAULT) CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH ?= --gcov-tool "$(GCOV)" CODE_COVERAGE_LCOV_OPTIONS_DEFAULT ?= $(CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) CODE_COVERAGE_LCOV_OPTIONS ?= $(CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) -CODE_COVERAGE_GENHTML_OPTIONS ?= +CODE_COVERAGE_LCOV_RMOPTS_DEFAULT ?= +CODE_COVERAGE_LCOV_RMOPTS ?= $(CODE_COVERAGE_LCOV_RMOPTS_DEFAULT) +CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT ?=\ +$(if $(CODE_COVERAGE_BRANCH_COVERAGE),\ +--rc genhtml_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE)) +CODE_COVERAGE_GENHTML_OPTIONS ?= $(CODE_COVERAGE_GENHTML_OPTIONS_DEFAULTS) CODE_COVERAGE_IGNORE_PATTERN ?= +code_coverage_v_lcov_cap = $(code_coverage_v_lcov_cap_$(V)) +code_coverage_v_lcov_cap_ = $(code_coverage_v_lcov_cap_$(AM_DEFAULT_VERBOSITY)) +code_coverage_v_lcov_cap_0 = @echo " LCOV --capture"\ + $(CODE_COVERAGE_OUTPUT_FILE); +code_coverage_v_lcov_ign = $(code_coverage_v_lcov_ign_$(V)) +code_coverage_v_lcov_ign_ = $(code_coverage_v_lcov_ign_$(AM_DEFAULT_VERBOSITY)) +code_coverage_v_lcov_ign_0 = @echo " LCOV --remove /tmp/*"\ + $(CODE_COVERAGE_IGNORE_PATTERN); +code_coverage_v_genhtml = $(code_coverage_v_genhtml_$(V)) +code_coverage_v_genhtml_ = $(code_coverage_v_genhtml_$(AM_DEFAULT_VERBOSITY)) +code_coverage_v_genhtml_0 = @echo " GEN " $(CODE_COVERAGE_OUTPUT_DIRECTORY); code_coverage_quiet = $(code_coverage_quiet_$(V)) code_coverage_quiet_ = $(code_coverage_quiet_$(AM_DEFAULT_VERBOSITY)) code_coverage_quiet_0 = --quiet +# sanitizes the test-name: replaces with underscores: dashes and dots +code_coverage_sanitize = $(subst -,_,$(subst .,_,$(1))) + # Use recursive makes in order to ignore errors during check -check-code-coverage: -ifeq ($(CODE_COVERAGE_ENABLED),yes) - -$(MAKE) $(AM_MAKEFLAGS) -k check - $(MAKE) $(AM_MAKEFLAGS) code-coverage-capture -else - @echo "Need to reconfigure with --enable-code-coverage" -endif +check-code-coverage:'"$CODE_COVERAGE_RULES_CHECK"' # Capture code coverage data -code-coverage-capture: code-coverage-capture-hook -ifeq ($(CODE_COVERAGE_ENABLED),yes) - $(LCOV) $(code_coverage_quiet) --directory $(CODE_COVERAGE_DIRECTORY) --capture --output-file "$(CODE_COVERAGE_OUTPUT_FILE).tmp" --test-name "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" --no-checksum --compat-libtool $(CODE_COVERAGE_LCOV_OPTIONS) - $(LCOV) $(code_coverage_quiet) --directory $(CODE_COVERAGE_DIRECTORY) --remove "$(CODE_COVERAGE_OUTPUT_FILE).tmp" "/tmp/*" $(CODE_COVERAGE_IGNORE_PATTERN) --output-file "$(CODE_COVERAGE_OUTPUT_FILE)" - -@rm -f $(CODE_COVERAGE_OUTPUT_FILE).tmp - LANG=C $(GENHTML) $(code_coverage_quiet) --prefix $(CODE_COVERAGE_DIRECTORY) --output-directory "$(CODE_COVERAGE_OUTPUT_DIRECTORY)" --title "$(PACKAGE_NAME)-$(PACKAGE_VERSION) Code Coverage" --legend --show-details "$(CODE_COVERAGE_OUTPUT_FILE)" $(CODE_COVERAGE_GENHTML_OPTIONS) - @echo "file://$(abs_builddir)/$(CODE_COVERAGE_OUTPUT_DIRECTORY)/index.html" -else - @echo "Need to reconfigure with --enable-code-coverage" -endif +code-coverage-capture: code-coverage-capture-hook'"$CODE_COVERAGE_RULES_CAPTURE"' # Hook rule executed before code-coverage-capture, overridable by the user code-coverage-capture-hook: -ifeq ($(CODE_COVERAGE_ENABLED),yes) -clean: code-coverage-clean -code-coverage-clean: - -$(LCOV) --directory $(top_builddir) -z - -rm -rf $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_FILE).tmp $(CODE_COVERAGE_OUTPUT_DIRECTORY) - -find . -name "*.gcda" -o -name "*.gcov" -delete -endif +'"$CODE_COVERAGE_RULES_CLEAN"' GITIGNOREFILES ?= GITIGNOREFILES += $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_DIRECTORY) -DISTCHECK_CONFIGURE_FLAGS ?= -DISTCHECK_CONFIGURE_FLAGS += --disable-code-coverage +A''M_DISTCHECK_CONFIGURE_FLAGS ?= +A''M_DISTCHECK_CONFIGURE_FLAGS += --disable-code-coverage .PHONY: check-code-coverage code-coverage-capture code-coverage-capture-hook code-coverage-clean -' +'] AC_SUBST([CODE_COVERAGE_RULES]) m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([CODE_COVERAGE_RULES])]) diff -Nru epiphany-browser-3.18.5/m4/ax_compiler_flags_cflags.m4 epiphany-browser-3.18.10/m4/ax_compiler_flags_cflags.m4 --- epiphany-browser-3.18.5/m4/ax_compiler_flags_cflags.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/ax_compiler_flags_cflags.m4 2016-12-28 00:40:30.000000000 +0000 @@ -25,7 +25,7 @@ # and this notice are preserved. This file is offered as-is, without any # warranty. -#serial 11 +#serial 12 AC_DEFUN([AX_COMPILER_FLAGS_CFLAGS],[ AC_REQUIRE([AC_PROG_SED]) @@ -34,7 +34,7 @@ AX_REQUIRE_DEFINED([AX_CHECK_COMPILE_FLAG]) # Variable names - m4_define(ax_warn_cflags_variable, + m4_define([ax_warn_cflags_variable], [m4_normalize(ifelse([$1],,[WARN_CFLAGS],[$1]))]) AC_LANG_PUSH([C]) diff -Nru epiphany-browser-3.18.5/m4/ax_compiler_flags_gir.m4 epiphany-browser-3.18.10/m4/ax_compiler_flags_gir.m4 --- epiphany-browser-3.18.5/m4/ax_compiler_flags_gir.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/ax_compiler_flags_gir.m4 2016-12-28 00:40:30.000000000 +0000 @@ -26,13 +26,13 @@ # and this notice are preserved. This file is offered as-is, without any # warranty. -#serial 4 +#serial 5 AC_DEFUN([AX_COMPILER_FLAGS_GIR],[ AX_REQUIRE_DEFINED([AX_APPEND_FLAG]) # Variable names - m4_define(ax_warn_scannerflags_variable, + m4_define([ax_warn_scannerflags_variable], [m4_normalize(ifelse([$1],,[WARN_SCANNERFLAGS],[$1]))]) # Base flags diff -Nru epiphany-browser-3.18.5/m4/ax_compiler_flags_ldflags.m4 epiphany-browser-3.18.10/m4/ax_compiler_flags_ldflags.m4 --- epiphany-browser-3.18.5/m4/ax_compiler_flags_ldflags.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/ax_compiler_flags_ldflags.m4 2016-12-28 00:40:30.000000000 +0000 @@ -25,15 +25,16 @@ # and this notice are preserved. This file is offered as-is, without any # warranty. -#serial 5 +#serial 7 AC_DEFUN([AX_COMPILER_FLAGS_LDFLAGS],[ AX_REQUIRE_DEFINED([AX_APPEND_LINK_FLAGS]) AX_REQUIRE_DEFINED([AX_APPEND_FLAG]) AX_REQUIRE_DEFINED([AX_CHECK_COMPILE_FLAG]) + AX_REQUIRE_DEFINED([AX_CHECK_LINK_FLAG]) # Variable names - m4_define(ax_warn_ldflags_variable, + m4_define([ax_warn_ldflags_variable], [m4_normalize(ifelse([$1],,[WARN_LDFLAGS],[$1]))]) # Always pass -Werror=unknown-warning-option to get Clang to fail on bad @@ -47,9 +48,25 @@ ax_compiler_flags_test="" ]) + # macOS linker does not have --as-needed + AX_CHECK_LINK_FLAG([-Wl,--no-as-needed], [ + ax_compiler_flags_as_needed_option="-Wl,--no-as-needed" + ], [ + ax_compiler_flags_as_needed_option="" + ]) + + # macOS linker speaks with a different accent + ax_compiler_flags_fatal_warnings_option="" + AX_CHECK_LINK_FLAG([-Wl,--fatal-warnings], [ + ax_compiler_flags_fatal_warnings_option="-Wl,--fatal-warnings" + ]) + AX_CHECK_LINK_FLAG([-Wl,-fatal_warnings], [ + ax_compiler_flags_fatal_warnings_option="-Wl,-fatal_warnings" + ]) + # Base flags AX_APPEND_LINK_FLAGS([ dnl - -Wl,--no-as-needed dnl + $ax_compiler_flags_as_needed_option dnl $3 dnl ],ax_warn_ldflags_variable,[$ax_compiler_flags_test]) @@ -66,7 +83,7 @@ # suggest-attribute=format is disabled because it gives too many false # positives AX_APPEND_LINK_FLAGS([ dnl - -Wl,--fatal-warnings dnl + $ax_compiler_flags_fatal_warnings_option dnl ],ax_warn_ldflags_variable,[$ax_compiler_flags_test]) ]) diff -Nru epiphany-browser-3.18.5/m4/ax_is_release.m4 epiphany-browser-3.18.10/m4/ax_is_release.m4 --- epiphany-browser-3.18.5/m4/ax_is_release.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/ax_is_release.m4 2016-12-28 00:40:30.000000000 +0000 @@ -26,6 +26,10 @@ # * micro-version: ax_is_release will be 'no' if the micro version number # in $PACKAGE_VERSION is odd; this assumes # $PACKAGE_VERSION follows the 'major.minor.micro' scheme +# * dash-version: ax_is_release will be 'no' if there is a dash '-' +# in $PACKAGE_VERSION, for example 1.2-pre3, 1.2.42-a8b9 +# or 2.0-dirty (in particular this is suitable for use +# with git-version-gen) # * always: ax_is_release will always be 'yes' # * never: ax_is_release will always be 'no' # @@ -34,12 +38,13 @@ # LICENSE # # Copyright (c) 2015 Philip Withnall +# Copyright (c) 2016 Collabora Ltd. # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. -#serial 3 +#serial 5 AC_DEFUN([AX_IS_RELEASE],[ AC_BEFORE([AC_INIT],[$0]) @@ -47,7 +52,7 @@ m4_case([$1], [git-directory],[ # $is_release = (.git directory does not exist) - AS_IF([test -d .git],[ax_is_release=no],[ax_is_release=yes]) + AS_IF([test -d ${top_srcdir}/.git],[ax_is_release=no],[ax_is_release=yes]) ], [minor-version],[ # $is_release = ($minor_version is even) @@ -61,9 +66,15 @@ AS_IF([test "$(( $micro_version % 2 ))" -ne 0], [ax_is_release=no],[ax_is_release=yes]) ], + [dash-version],[ + # $is_release = ($PACKAGE_VERSION has a dash) + AS_CASE([$PACKAGE_VERSION], + [*-*], [ax_is_release=no], + [*], [ax_is_release=yes]) + ], [always],[ax_is_release=yes], [never],[ax_is_release=no], [ - AC_MSG_ERROR([Invalid policy. Valid policies: git-directory, minor-version.]) + AC_MSG_ERROR([Invalid policy. Valid policies: git-directory, minor-version, micro-version, dash-version, always, never.]) ]) ]) diff -Nru epiphany-browser-3.18.5/m4/nls.m4 epiphany-browser-3.18.10/m4/nls.m4 --- epiphany-browser-3.18.5/m4/nls.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/nls.m4 2016-12-28 00:40:30.000000000 +0000 @@ -1,6 +1,6 @@ # nls.m4 serial 5 (gettext-0.18) -dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014 Free Software Foundation, -dnl Inc. +dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software +dnl Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. diff -Nru epiphany-browser-3.18.5/m4/pkg.m4 epiphany-browser-3.18.10/m4/pkg.m4 --- epiphany-browser-3.18.5/m4/pkg.m4 2016-03-14 23:46:05.000000000 +0000 +++ epiphany-browser-3.18.10/m4/pkg.m4 2016-12-28 00:40:30.000000000 +0000 @@ -1,29 +1,60 @@ -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# serial 1 (pkg-config-0.24) -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- +dnl pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +dnl serial 11 (pkg-config-0.29.1) +dnl +dnl Copyright © 2004 Scott James Remnant . +dnl Copyright © 2012-2015 Dan Nicholson +dnl +dnl This program is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU General Public License as published by +dnl the Free Software Foundation; either version 2 of the License, or +dnl (at your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +dnl General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program; if not, write to the Free Software +dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +dnl 02111-1307, USA. +dnl +dnl As a special exception to the GNU General Public License, if you +dnl distribute this file as part of a program that contains a +dnl configuration script generated by Autoconf, you may include it under +dnl the same distribution terms that you use for the rest of that +dnl program. + +dnl PKG_PREREQ(MIN-VERSION) +dnl ----------------------- +dnl Since: 0.29 +dnl +dnl Verify that the version of the pkg-config macros are at least +dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's +dnl installed version of pkg-config, this checks the developer's version +dnl of pkg.m4 when generating configure. +dnl +dnl To ensure that this macro is defined, also add: +dnl m4_ifndef([PKG_PREREQ], +dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) +dnl +dnl See the "Since" comment for each macro you use to see what version +dnl of the macros you require. +m4_defun([PKG_PREREQ], +[m4_define([PKG_MACROS_VERSION], [0.29.1]) +m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, + [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) +])dnl PKG_PREREQ + +dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) +dnl ---------------------------------- +dnl Since: 0.16 +dnl +dnl Search for the pkg-config tool and set the PKG_CONFIG variable to +dnl first found in the path. Checks that the version of pkg-config found +dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is +dnl used since that's the first version where most current features of +dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) @@ -45,18 +76,19 @@ PKG_CONFIG="" fi fi[]dnl -])# PKG_PROG_PKG_CONFIG +])dnl PKG_PROG_PKG_CONFIG -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -# only at the first occurence in configure.ac, so if the first place -# it's called might be skipped (such as if it is within an "if", you -# have to call PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- +dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------------------------------- +dnl Since: 0.18 +dnl +dnl Check to see whether a particular set of modules exists. Similar to +dnl PKG_CHECK_MODULES(), but does not set variables or print errors. +dnl +dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) +dnl only at the first occurence in configure.ac, so if the first place +dnl it's called might be skipped (such as if it is within an "if", you +dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ @@ -66,8 +98,10 @@ $3])dnl fi]) -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- +dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +dnl --------------------------------------------- +dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting +dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" @@ -79,10 +113,11 @@ else pkg_failed=untried fi[]dnl -])# _PKG_CONFIG +])dnl _PKG_CONFIG -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- +dnl _PKG_SHORT_ERRORS_SUPPORTED +dnl --------------------------- +dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then @@ -90,19 +125,17 @@ else _pkg_short_errors_supported=no fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED +])dnl _PKG_SHORT_ERRORS_SUPPORTED -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- +dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl -------------------------------------------------------------- +dnl Since: 0.4.0 +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES might not happen, you should be sure to include an +dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl @@ -156,16 +189,40 @@ AC_MSG_RESULT([yes]) $3 fi[]dnl -])# PKG_CHECK_MODULES +])dnl PKG_CHECK_MODULES -# PKG_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable pkgconfigdir as the location where a module -# should install pkg-config .pc files. By default the directory is -# $libdir/pkgconfig, but the default can be changed by passing -# DIRECTORY. The user can override through the --with-pkgconfigdir -# parameter. +dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +dnl [ACTION-IF-NOT-FOUND]) +dnl --------------------------------------------------------------------- +dnl Since: 0.29 +dnl +dnl Checks for existence of MODULES and gathers its build flags with +dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags +dnl and VARIABLE-PREFIX_LIBS from --libs. +dnl +dnl Note that if there is a possibility the first call to +dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to +dnl include an explicit call to PKG_PROG_PKG_CONFIG in your +dnl configure.ac. +AC_DEFUN([PKG_CHECK_MODULES_STATIC], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +_save_PKG_CONFIG=$PKG_CONFIG +PKG_CONFIG="$PKG_CONFIG --static" +PKG_CHECK_MODULES($@) +PKG_CONFIG=$_save_PKG_CONFIG[]dnl +])dnl PKG_CHECK_MODULES_STATIC + + +dnl PKG_INSTALLDIR([DIRECTORY]) +dnl ------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable pkgconfigdir as the location where a module +dnl should install pkg-config .pc files. By default the directory is +dnl $libdir/pkgconfig, but the default can be changed by passing +dnl DIRECTORY. The user can override through the --with-pkgconfigdir +dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], @@ -176,16 +233,18 @@ AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) -]) dnl PKG_INSTALLDIR +])dnl PKG_INSTALLDIR -# PKG_NOARCH_INSTALLDIR(DIRECTORY) -# ------------------------- -# Substitutes the variable noarch_pkgconfigdir as the location where a -# module should install arch-independent pkg-config .pc files. By -# default the directory is $datadir/pkgconfig, but the default can be -# changed by passing DIRECTORY. The user can override through the -# --with-noarch-pkgconfigdir parameter. +dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) +dnl -------------------------------- +dnl Since: 0.27 +dnl +dnl Substitutes the variable noarch_pkgconfigdir as the location where a +dnl module should install arch-independent pkg-config .pc files. By +dnl default the directory is $datadir/pkgconfig, but the default can be +dnl changed by passing DIRECTORY. The user can override through the +dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], @@ -196,13 +255,15 @@ AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) -]) dnl PKG_NOARCH_INSTALLDIR +])dnl PKG_NOARCH_INSTALLDIR -# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, -# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# ------------------------------------------- -# Retrieves the value of the pkg-config variable for the given module. +dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, +dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +dnl ------------------------------------------- +dnl Since: 0.28 +dnl +dnl Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl @@ -211,4 +272,4 @@ AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl -])# PKG_CHECK_VAR +])dnl PKG_CHECK_VAR diff -Nru epiphany-browser-3.18.5/Makefile.am epiphany-browser-3.18.10/Makefile.am --- epiphany-browser-3.18.5/Makefile.am 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/Makefile.am 2016-12-28 00:37:59.000000000 +0000 @@ -15,7 +15,9 @@ # Build ChangeLog from git history ChangeLog: @if test -f $(top_srcdir)/.git/HEAD; then \ - git log --no-decorate --stat > $@; \ + pushd $(top_srcdir); \ + git log --max-count=500 --no-decorate --stat > $(abs_top_builddir)/$@; \ + popd; \ fi dist: ChangeLog diff -Nru epiphany-browser-3.18.5/Makefile.in epiphany-browser-3.18.10/Makefile.in --- epiphany-browser-3.18.5/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -242,8 +242,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ @@ -639,7 +642,7 @@ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir @@ -664,7 +667,7 @@ @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir @@ -682,7 +685,7 @@ distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ @@ -692,7 +695,7 @@ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac @@ -894,7 +897,9 @@ # Build ChangeLog from git history ChangeLog: @if test -f $(top_srcdir)/.git/HEAD; then \ - git log --no-decorate --stat > $@; \ + pushd $(top_srcdir); \ + git log --max-count=500 --no-decorate --stat > $(abs_top_builddir)/$@; \ + popd; \ fi dist: ChangeLog diff -Nru epiphany-browser-3.18.5/NEWS epiphany-browser-3.18.10/NEWS --- epiphany-browser-3.18.5/NEWS 2016-03-14 23:20:37.000000000 +0000 +++ epiphany-browser-3.18.10/NEWS 2016-12-28 00:39:22.000000000 +0000 @@ -1,3 +1,45 @@ +================ +Epiphany 3.18.10 +================ + +- Fix Alt-Left/Right keyboard shortcuts broken in previous release (#772437) +- Fix adblocker sometimes not blocking ads in new tabs (#775736) + +=============== +Epiphany 3.18.9 +=============== + +- Fix accelerators for back/forward in RTL (#729726) +- Fix snapshots sometimes not appearing in overview (#763184) +- Rework key event handling to fix events received twice (#764653) +- Added session safety check to avoid saving corrupted sessions +- Fix adblocker sometimes blocking the main resource +- Updated translations + +=============== +Epiphany 3.18.8 +=============== + +- Only ever show one permission request info bar at a time (#764593) +- Fix respecting desktop's middle click in titlebar settings (#767585) +- Fix various features broken when multiple tabs share a web process (#769627) +- Fix some code handling tracking of password request info bar +- Remove an incorrect assertion +- Update for WebKitGTK+ 2.14 unstable DOM API change +- Updated translations + +=============== +Epiphany 3.18.7 +=============== + +- Permit stale overview snapshots to avoid occasional missing thumbnails (#763184) + +=============== +Epiphany 3.18.6 +=============== + +- Avoid stale overview snapshots (#763184) + =============== Epiphany 3.18.5 =============== diff -Nru epiphany-browser-3.18.5/po/oc.po epiphany-browser-3.18.10/po/oc.po --- epiphany-browser-3.18.5/po/oc.po 2016-03-14 23:34:00.000000000 +0000 +++ epiphany-browser-3.18.10/po/oc.po 2016-12-28 00:37:59.000000000 +0000 @@ -9,8 +9,8 @@ "Project-Id-Version: oc\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=epiphan" "y&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2016-02-14 17:56+0000\n" -"PO-Revision-Date: 2016-02-23 19:40+0200\n" +"POT-Creation-Date: 2016-05-24 07:20+0000\n" +"PO-Revision-Date: 2016-05-29 20:33+0200\n" "Last-Translator: Cédric Valmary (totenoc.eu) \n" "Language-Team: Tot En Òc\n" "Language: oc\n" @@ -19,48 +19,14 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Virtaal 0.7.1\n" +"X-Launchpad-Export-Date: 2016-04-19 17:00+0000\n" "X-Project-Style: gnome\n" -#: ../data/default-bookmarks.rdf.in.h:1 -msgid "Search the web" -msgstr "" - -#. Translators: you can use the regions listed in -#. https://duckduckgo.com/params to boost a particular region -#. associated with your language. For instance, for translators -#. to Finnish, it might make sense to add kl=fi-fi to the search -#. URL in order to boost results from Finland. Additionally, the -#. 'kad' parameter can be used to specify the locale in which -#. duckduckgo must be translated. So, for a Finnish localized -#. version of duckduckgo that will render results tailored for -#. Finland, the string would be: -#. https://duckduckgo.com/?t=epiphany&kl=fi-fi&kad=fi_FI -#. -#: ../data/default-bookmarks.rdf.in.h:13 -msgid "https://duckduckgo.com/?t=epiphany" -msgstr "" - -#. Translators: you can use the regions listed in -#. https://duckduckgo.com/params to boost a particular region -#. associated with your language. For instance, for translators -#. to Finnish, it might make sense to add kl=fi-fi to the search -#. URL in order to boost results from Finland. Additionally, the -#. 'kad' parameter can be used to specify the locale in which -#. duckduckgo must be translated. For such case, the search url -#. would be -#. https://duckduckgo.com/?q=%s&t=epiphany&kl=fi-fi&kad=fi_FI -#: ../data/default-bookmarks.rdf.in.h:24 ../embed/ephy-embed-utils.c:239 -#: ../src/ephy-search-provider.c:286 -#, no-c-format -msgid "https://duckduckgo.com/?q=%s&t=epiphany" -msgstr "" - #: ../data/epiphany.appdata.xml.in.h:1 msgid "GNOME Web" -msgstr "" +msgstr "Web GNOME" #: ../data/epiphany.appdata.xml.in.h:2 -#| msgid "Web Browser" msgid "Web browser for GNOME" msgstr "Navigador web per GNOME" @@ -71,24 +37,28 @@ "pages. If you’re looking for a simple, clean, beautiful view of the web, " "this is the browser for you." msgstr "" +"Lo navigador Web de GNOME, que profeita d'una integracion abotida amb lo " +"burèu e d'una interfàcia utilizaire simpla e intuitiva que vos permet de vos " +"concentrar sus las paginas Web. Se cercatz una vista del Web que siá simpla, " +"neta e bèla, es lo navigador que vos cal." #: ../data/epiphany.appdata.xml.in.h:4 msgid "GNOME Web is often referred to by its code name, Epiphany." -msgstr "" +msgstr "GNOME Web es sovent apelat per son nom de còdi, Epiphany." #: ../data/epiphany.appdata.xml.in.h:5 msgid "The GNOME web site displayed in GNOME Web" -msgstr "" +msgstr "Lo site de GNOME afichat dins GNOME Web" #: ../data/epiphany.appdata.xml.in.h:6 msgid "The GNOME Project" -msgstr "" +msgstr "Lo projècte GNOME" -#: ../data/epiphany.desktop.in.h:1 ../embed/ephy-about-handler.c:290 -#: ../embed/ephy-about-handler.c:321 ../src/ephy-main.c:65 -#: ../src/ephy-main.c:311 ../src/ephy-main.c:463 ../src/window-commands.c:1513 +#: ../data/epiphany.desktop.in.h:1 ../embed/ephy-about-handler.c:289 +#: ../embed/ephy-about-handler.c:320 ../src/ephy-main.c:65 +#: ../src/ephy-main.c:311 ../src/ephy-main.c:463 ../src/window-commands.c:1450 msgid "Web" -msgstr "" +msgstr "Web" #: ../data/epiphany.desktop.in.h:2 msgid "Web Browser" @@ -96,24 +66,23 @@ #: ../data/epiphany.desktop.in.h:3 msgid "Epiphany Web Browser" -msgstr "Navigador Epiphany" +msgstr "Navigador Web Epiphany" #: ../data/epiphany.desktop.in.h:4 msgid "Browse the web" -msgstr "" +msgstr "Navigar sul Web" #: ../data/epiphany.desktop.in.h:5 msgid "web;browser;internet;" -msgstr "" +msgstr "web;navigador;internet;" #: ../data/epiphany.desktop.in.h:6 -#| msgid "_New Window" msgid "New Incognito Window" -msgstr "" +msgstr "Fenèstra Incognito _novèla" #: ../data/org.gnome.epiphany.gschema.xml.h:1 msgid "Browse with caret" -msgstr "" +msgstr "Navigar amb lo cursor" #. DuckDuckGo is the default search engine. Must exactly match the URL used #. in the preferences dialog, except this string is surrounded by single quotes @@ -125,70 +94,80 @@ #: ../data/org.gnome.epiphany.gschema.xml.h:10 #, no-c-format msgid "'https://duckduckgo.com/?q=%s&t=epiphany'" -msgstr "" +msgstr "'https://duckduckgo.com/?q=%s&t=epiphany&kl=fr-fr'" #: ../data/org.gnome.epiphany.gschema.xml.h:11 -#| msgid "_Search:" msgid "URL Search" -msgstr "" +msgstr "Recèrca d'URL" #: ../data/org.gnome.epiphany.gschema.xml.h:12 msgid "Search string for keywords entered in the URL bar." msgstr "" +"Recercar de mots-claus dins la cadena de caractèrs sasida dins la barra " +"d'adreça." #: ../data/org.gnome.epiphany.gschema.xml.h:13 -#| msgid "User Name" msgid "User agent" -msgstr "" +msgstr "Agent utilizaire" #: ../data/org.gnome.epiphany.gschema.xml.h:14 msgid "" "String that will be used as user agent, to identify the browser to the web " "servers." msgstr "" +"Cadena de caractèrs utilizada coma agent utilizaire per fin d'identificar lo " +"navigador Web alprèp dels servidors Web." #: ../data/org.gnome.epiphany.gschema.xml.h:15 msgid "Automatic downloads" -msgstr "" +msgstr "Telecargaments automatics" #: ../data/org.gnome.epiphany.gschema.xml.h:16 msgid "" "When files cannot be opened by the browser they are automatically downloaded " "to the download folder and opened with the appropriate application." msgstr "" +"Quand de fichièrs pòdon pas èsser dobèrts dins lo navigador, son " +"automaticament telecargats dins lo dorsièr dels telecargaments puèi dobèrts " +"amb l'aplicacion apropriada." #: ../data/org.gnome.epiphany.gschema.xml.h:17 msgid "Force new windows to be opened in tabs" -msgstr "" +msgstr "Impausar la dobertura de las novèlas fenèstras dins un novèl onglet." #: ../data/org.gnome.epiphany.gschema.xml.h:18 msgid "" "Force new window requests to be opened in tabs instead of using a new window." msgstr "" +"Impausar l'dobèrture de las novèlas fenèstras dins un novèl onglet al luòc " +"d'utilizar una novèla fenèstra." #: ../data/org.gnome.epiphany.gschema.xml.h:19 msgid "Remember passwords" -msgstr "" +msgstr "Se remembrar dels senhals" #: ../data/org.gnome.epiphany.gschema.xml.h:20 msgid "Whether to store and prefill passwords in websites." msgstr "" +"Indica se cal enregistrar e pré-remplir les senhals dins les sites Web." #: ../data/org.gnome.epiphany.gschema.xml.h:21 msgid "Automatically manage offline status with NetworkManager" -msgstr "" +msgstr "Gerir automaticament l'estat de connexion amb NetworkManager" #: ../data/org.gnome.epiphany.gschema.xml.h:22 msgid "Enable smooth scrolling" -msgstr "" +msgstr "Activar lo desfilament doç" #: ../data/org.gnome.epiphany.gschema.xml.h:23 msgid "Don't use an external application to view page source." msgstr "" +"Ne pas utilizar de programa extèrne per visualizar lo còdi font de las " +"paginas." #: ../data/org.gnome.epiphany.gschema.xml.h:24 msgid "Whether to automatically restore the last session" -msgstr "" +msgstr "Indica se cal restablir automaticament la darrièra session" #: ../data/org.gnome.epiphany.gschema.xml.h:25 msgid "" @@ -197,22 +176,31 @@ "'crashed' (the session is only restored if the application crashes) and " "'never' (the homepage is always shown)." msgstr "" +"Definit comment una session deu èsser restablida a l'aviada. Las valors " +"autorizadas son « always » (lo darrièr estat es totjorn restablit), « " +"crashed » (la session es restablida solament se una error s'es produita ), « " +"never » (la pagina d'acuèlh es totjorn afichada)." #: ../data/org.gnome.epiphany.gschema.xml.h:26 msgid "" "Whether to delay loading of tabs that are not immediately visible on session " "restore" msgstr "" +"Definís se cal retardar lo cargament dels onglets que son pas immediatament " +"visibles al restabliment de la session" #: ../data/org.gnome.epiphany.gschema.xml.h:27 msgid "" "When this option is set to true, tabs will not start loading until the user " "switches to them, upon session restore." msgstr "" +"Al restabliment de la session e se aquesta opcion es definida a true " +"(verai), los onglets van pas començar a se cargar tant que l'utilizaire ne " +"les ouvre pas." #: ../data/org.gnome.epiphany.gschema.xml.h:28 msgid "Process model" -msgstr "" +msgstr "Lo modèl de processus" #: ../data/org.gnome.epiphany.gschema.xml.h:29 msgid "" @@ -220,12 +208,18 @@ "process' to use a single web process shared by all the tabs and 'one-" "secondary-process-per-web-view' to use a different web process for each tab." msgstr "" +"Aquesta opcion permet de definir lo modèl de processus a utilizar : « shared-" +"secondary-process » utiliza pas qu'un sol processus Web partejat per totes " +"los onglets e « one-secondary-process-per-web-view » utiliza un processus " +"diferent per cada onglet." #: ../data/org.gnome.epiphany.gschema.xml.h:30 msgid "" "Maximum number of web processes created at the same time when using 'one-" "secondary-process-per-web-view' model" msgstr "" +"Nombre maximum de processus web creats al meteis moment al moment de " +"l'utilizacion del modèl « un-processus-secondaire-par-vue-web »" #: ../data/org.gnome.epiphany.gschema.xml.h:31 msgid "" @@ -233,333 +227,405 @@ "the same time for the 'one-secondary-process-per-web-view' model. The " "default value is '0' and means no limit." msgstr "" +"Aquesta opcion indica lo limit del nombre de processus web que seràn " +"utilizats en meteis temps al moment de l'utilizacion del modèl « un-" +"processus-secondaire-par-vue-web ». La valor per defaut es « 0 », ce que " +"significa una abséncia de limit." #: ../data/org.gnome.epiphany.gschema.xml.h:32 msgid "[Deprecated]" -msgstr "" +msgstr "[Obsolèt]" #: ../data/org.gnome.epiphany.gschema.xml.h:33 msgid "" "[Deprecated] This setting is deprecated, use 'tabs-bar-visibility-policy' " "instead." msgstr "" +"[Obsolèt] Ce paramètre es obsolèt, utilizar « tabs-bar-visibility-policy » a " +"la place." #: ../data/org.gnome.epiphany.gschema.xml.h:34 msgid "Visibility of the downloads window" -msgstr "" +msgstr "Visibilitat de la fenèstra dels telecargaments" #: ../data/org.gnome.epiphany.gschema.xml.h:35 msgid "" "Hide or show the downloads window. When hidden, a notification will be shown " "when new downloads are started." msgstr "" +"Afichar o amagar la fenèstra dels telecargaments. Quand es amagada, una " +"notificacion es afichada al moment de l'aviada de telecargaments novèls." #: ../data/org.gnome.epiphany.gschema.xml.h:36 -msgid "The visibility policy for the tabs bar." +msgid "Expand tabs size to fill the available space on the tabs bar." msgstr "" #: ../data/org.gnome.epiphany.gschema.xml.h:37 msgid "" +"If enabled the tabs will expand to use the entire available space in the " +"tabs bar." +msgstr "" + +#: ../data/org.gnome.epiphany.gschema.xml.h:38 +msgid "The position of the tabs bar." +msgstr "La politica de visibilitat de la barra dels onglets." + +#: ../data/org.gnome.epiphany.gschema.xml.h:39 +msgid "" +"Controls where the tabs bar is shown. Possible values are 'top' (the " +"default), 'bottom', 'left' (vertical tabs with bar on the left) and " +"'right' (vertical tabs with bar on the right)." +msgstr "" +"Contrôle se la barra dels onglets es afichada. Las valors autorizadas son « " +"always » (la barra es totjorn afichada), « more-than-one » (la barra es " +"afichada unicament se i a dos onglets o mai), « never » (la barra es pas " +"jamai afichada)." + +#: ../data/org.gnome.epiphany.gschema.xml.h:40 +msgid "The visibility policy for the tabs bar." +msgstr "La politica de visibilitat de la barra dels onglets." + +#: ../data/org.gnome.epiphany.gschema.xml.h:41 +msgid "" "Controls when the tabs bar is shown. Possible values are 'always' (the tabs " "bar is always shown), 'more-than-one' (the tabs bar is only shown if there's " "two or more tabs) and 'never' (the tabs bar is never shown)." msgstr "" +"Contrôle se la barra dels onglets es afichada. Las valors autorizadas son « " +"always » (la barra es totjorn afichada), « more-than-one » (la barra es " +"afichada unicament se i a dos onglets o mai), « never » (la barra es pas " +"jamai afichada)." -#: ../data/org.gnome.epiphany.gschema.xml.h:38 +#: ../data/org.gnome.epiphany.gschema.xml.h:42 msgid "Minimum font size" -msgstr "" +msgstr "Talha minimala de la poliça" -#: ../data/org.gnome.epiphany.gschema.xml.h:39 +#: ../data/org.gnome.epiphany.gschema.xml.h:43 msgid "Use GNOME fonts" -msgstr "" +msgstr "Utilizar las poliças de GNOME" -#: ../data/org.gnome.epiphany.gschema.xml.h:40 +#: ../data/org.gnome.epiphany.gschema.xml.h:44 msgid "Use GNOME font settings." -msgstr "" +msgstr "Utiliza los paramètres de las poliças de GNOME." -#: ../data/org.gnome.epiphany.gschema.xml.h:41 +#: ../data/org.gnome.epiphany.gschema.xml.h:45 msgid "Custom sans-serif font" -msgstr "" +msgstr "Poliça sans serif personalizada" -#: ../data/org.gnome.epiphany.gschema.xml.h:42 +#: ../data/org.gnome.epiphany.gschema.xml.h:46 msgid "" "A value to be used to override sans-serif desktop font when use-gnome-fonts " "is set." msgstr "" +"Una valor a utilizar per remplaçar la poliça sans serif del burèu quand use-" +"gnome-fonts es activada." -#: ../data/org.gnome.epiphany.gschema.xml.h:43 +#: ../data/org.gnome.epiphany.gschema.xml.h:47 msgid "Custom serif font" -msgstr "" +msgstr "Poliça amb serif personalizada" -#: ../data/org.gnome.epiphany.gschema.xml.h:44 +#: ../data/org.gnome.epiphany.gschema.xml.h:48 msgid "" "A value to be used to override serif desktop font when use-gnome-fonts is " "set." msgstr "" +"Una valor a utilizar per remplaçar la poliça amb serif del burèu quand use-" +"gnome-fonts es activada." -#: ../data/org.gnome.epiphany.gschema.xml.h:45 +#: ../data/org.gnome.epiphany.gschema.xml.h:49 msgid "Custom monospace font" -msgstr "" +msgstr "Poliça a largor fixa personalizada" -#: ../data/org.gnome.epiphany.gschema.xml.h:46 +#: ../data/org.gnome.epiphany.gschema.xml.h:50 msgid "" "A value to be used to override monospace desktop font when use-gnome-fonts " "is set." msgstr "" +"Una valor a utilizar per remplaçar la poliça a largor fixa del burèu quand " +"use-gnome-fonts es activada." -#: ../data/org.gnome.epiphany.gschema.xml.h:47 +#: ../data/org.gnome.epiphany.gschema.xml.h:51 msgid "Use own colors" -msgstr "" +msgstr "Utilizar de colors personalizadas" -#: ../data/org.gnome.epiphany.gschema.xml.h:48 +#: ../data/org.gnome.epiphany.gschema.xml.h:52 msgid "Use your own colors instead of the colors the page requests." msgstr "" +"Utilizar vòstras pròprias colors al luòc de las colors impausadas per la " +"pagina." -#: ../data/org.gnome.epiphany.gschema.xml.h:49 +#: ../data/org.gnome.epiphany.gschema.xml.h:53 msgid "Use own fonts" -msgstr "" +msgstr "Utilizar de poliças personalizadas" -#: ../data/org.gnome.epiphany.gschema.xml.h:50 +#: ../data/org.gnome.epiphany.gschema.xml.h:54 msgid "Use your own fonts instead of the fonts the page requests." msgstr "" +"Utilizar vòstras pròprias poliças al luòc de las poliças impausadas per la " +"pagina." -#: ../data/org.gnome.epiphany.gschema.xml.h:51 +#: ../data/org.gnome.epiphany.gschema.xml.h:55 msgid "Use a custom CSS" -msgstr "" +msgstr "Utilizar un estil CSS personalizat" -#: ../data/org.gnome.epiphany.gschema.xml.h:52 +#: ../data/org.gnome.epiphany.gschema.xml.h:56 msgid "Use a custom CSS file to modify websites own CSS." msgstr "" +"Utilizar un estil CSS personalizat per modificar l'estil CSS pròpri dels " +"sites Web." -#: ../data/org.gnome.epiphany.gschema.xml.h:53 +#: ../data/org.gnome.epiphany.gschema.xml.h:57 msgid "Enable spell checking" -msgstr "" +msgstr "Activar la verificacion ortografica" -#: ../data/org.gnome.epiphany.gschema.xml.h:54 +#: ../data/org.gnome.epiphany.gschema.xml.h:58 msgid "Spell check any text typed in editable areas." -msgstr "" +msgstr "Verificar l'ortografia dels tèxtes sasits dins las zònas de sasida." -#: ../data/org.gnome.epiphany.gschema.xml.h:55 +#: ../data/org.gnome.epiphany.gschema.xml.h:59 msgid "Default encoding" -msgstr "" +msgstr "Encodatge per defaut" -#: ../data/org.gnome.epiphany.gschema.xml.h:56 +#: ../data/org.gnome.epiphany.gschema.xml.h:60 msgid "" "Default encoding. Accepted values are the ones WebKitGTK+ can understand." msgstr "" +"Encodatge per defaut. Las valors autorizadas son las que WebKitGTK+ comprend." -#: ../data/org.gnome.epiphany.gschema.xml.h:57 +#: ../data/org.gnome.epiphany.gschema.xml.h:61 #: ../src/resources/prefs-dialog.ui.h:39 msgid "Languages" msgstr "Lengas" -#: ../data/org.gnome.epiphany.gschema.xml.h:58 +#: ../data/org.gnome.epiphany.gschema.xml.h:62 msgid "Preferred languages, two letter codes." -msgstr "" +msgstr "Lengas preferidas (còdis de 2 letras)." -#: ../data/org.gnome.epiphany.gschema.xml.h:59 +#: ../data/org.gnome.epiphany.gschema.xml.h:63 msgid "Cookie accept" -msgstr "" +msgstr "Acceptar lo cookie" -#: ../data/org.gnome.epiphany.gschema.xml.h:60 +#: ../data/org.gnome.epiphany.gschema.xml.h:64 msgid "" "Where to accept cookies from. Possible values are \"always\", \"no-third-" "party\" and \"never\"." msgstr "" +"Acceptacion dels cookies. Las valors autorizadas son : « totjorn », « levat " +"los cookies tèrces » e « pas jamai »." -#: ../data/org.gnome.epiphany.gschema.xml.h:61 +#: ../data/org.gnome.epiphany.gschema.xml.h:65 msgid "Image animation mode" -msgstr "" +msgstr "Mòde d'animacion dels imatges" -#: ../data/org.gnome.epiphany.gschema.xml.h:62 +#: ../data/org.gnome.epiphany.gschema.xml.h:66 msgid "" "How to present animated images. Possible values are \"normal\", \"once\" and " "\"disabled\"." msgstr "" +"Metòde d'afichatge dels imatges animats. Las valors possiblas son " +"« normal » (normal), « once » (una sola lectura) e « disabled » (desactivat)." -#: ../data/org.gnome.epiphany.gschema.xml.h:63 +#: ../data/org.gnome.epiphany.gschema.xml.h:67 msgid "Allow popups" -msgstr "" +msgstr "Autorizar las fenèstras popup" -#: ../data/org.gnome.epiphany.gschema.xml.h:64 +#: ../data/org.gnome.epiphany.gschema.xml.h:68 msgid "" "Allow sites to open new windows using JavaScript (if JavaScript is enabled)." msgstr "" +"Autoriza los sites a dobrir de fenèstras novèlas en utilizant JavaScript (se " +"JavaScript es activat)." -#: ../data/org.gnome.epiphany.gschema.xml.h:65 +#: ../data/org.gnome.epiphany.gschema.xml.h:69 msgid "Enable Plugins" -msgstr "" +msgstr "Activar los empeutons" -#: ../data/org.gnome.epiphany.gschema.xml.h:66 +#: ../data/org.gnome.epiphany.gschema.xml.h:70 msgid "Enable JavaScript" msgstr "Activar Javascript" -#: ../data/org.gnome.epiphany.gschema.xml.h:67 -#| msgid "Enable Java" +#: ../data/org.gnome.epiphany.gschema.xml.h:71 msgid "Enable WebGL" msgstr "Activar WebGL" -#: ../data/org.gnome.epiphany.gschema.xml.h:68 +#: ../data/org.gnome.epiphany.gschema.xml.h:72 msgid "Whether to enable support for WebGL contexts." -msgstr "" +msgstr "Indica se la presa en carga dels contèxtes WebGL es activada." -#: ../data/org.gnome.epiphany.gschema.xml.h:69 +#: ../data/org.gnome.epiphany.gschema.xml.h:73 msgid "Enable WebAudio" -msgstr "" +msgstr "Activar WebAudio" -#: ../data/org.gnome.epiphany.gschema.xml.h:70 +#: ../data/org.gnome.epiphany.gschema.xml.h:74 msgid "Whether to enable support for WebAudio." -msgstr "" +msgstr "Indica se la presa en carga del WebAudio es activada." -#: ../data/org.gnome.epiphany.gschema.xml.h:71 +#: ../data/org.gnome.epiphany.gschema.xml.h:75 msgid "Do Not Track" -msgstr "" +msgstr "Seguir pas" -#: ../data/org.gnome.epiphany.gschema.xml.h:72 +#: ../data/org.gnome.epiphany.gschema.xml.h:76 msgid "" "Whether to tell websites that we do not wish to be tracked. Please note that " "web pages are not forced to follow this setting." msgstr "" +"Indica se cal dire als sites Web que volètz pas èsser seguit. Notatz que las " +"paginas Web son pas obligadas de respectar aqueste paramètre." -#: ../data/org.gnome.epiphany.gschema.xml.h:73 +#: ../data/org.gnome.epiphany.gschema.xml.h:77 msgid "Enable Adblock" -msgstr "" +msgstr "Activar Adblock" -#: ../data/org.gnome.epiphany.gschema.xml.h:74 +#: ../data/org.gnome.epiphany.gschema.xml.h:78 msgid "" "Whether to block the embedded advertisements that web pages might want to " "show." msgstr "" +"Indica se cal blocar las publicitats al dintre de certanas paginas Web." -#: ../data/org.gnome.epiphany.gschema.xml.h:75 +#: ../data/org.gnome.epiphany.gschema.xml.h:79 msgid "The downloads folder" -msgstr "" +msgstr "Lo dorsièr dels telecargaments" -#: ../data/org.gnome.epiphany.gschema.xml.h:76 +#: ../data/org.gnome.epiphany.gschema.xml.h:80 msgid "" "The path of the folder where to download files to; or \"Downloads\" to use " "the default downloads folder, or \"Desktop\" to use the desktop folder." msgstr "" +"Lo camin cap a lo dorsièr que contendrà los fichièrs telecargats o « " +"Telecargaments » per utilizar lo dorsièr de telecargament per defaut o « " +"Burèu » per utilizar lo dorsièr del burèu." -#: ../data/org.gnome.epiphany.gschema.xml.h:77 +#: ../data/org.gnome.epiphany.gschema.xml.h:81 msgid "Whether to show the title column in the bookmarks window." msgstr "" +"Indica se la colomna de títol es afichada dins la fenèstra dels marcapaginas." -#: ../data/org.gnome.epiphany.gschema.xml.h:78 +#: ../data/org.gnome.epiphany.gschema.xml.h:82 msgid "Whether to show the address column in the bookmarks window." msgstr "" +"Indica se la colomna d'adreça es afichada dins la fenèstra dels marcapaginas." -#: ../embed/ephy-about-handler.c:137 +#: ../embed/ephy-about-handler.c:136 msgid "Installed plugins" -msgstr "" +msgstr "Empeutons installats" -#: ../embed/ephy-about-handler.c:138 +#: ../embed/ephy-about-handler.c:137 msgid "Plugins" -msgstr "" +msgstr "Empeutons" -#: ../embed/ephy-about-handler.c:141 +#: ../embed/ephy-about-handler.c:140 msgid "Plugins are disabled in the preferences" -msgstr "" +msgstr "Los empeutons son desactivats dins las preferéncias" -#: ../embed/ephy-about-handler.c:154 -#| msgid "Enable Java" +#: ../embed/ephy-about-handler.c:153 msgid "Enabled" msgstr "Activat" #. webkit_plugin_get_enabled (plugin) && -#: ../embed/ephy-about-handler.c:154 +#: ../embed/ephy-about-handler.c:153 msgid "Yes" -msgstr "" +msgstr "Òc" -#: ../embed/ephy-about-handler.c:154 +#: ../embed/ephy-about-handler.c:153 msgid "No" -msgstr "" +msgstr "Non" -#: ../embed/ephy-about-handler.c:155 +#: ../embed/ephy-about-handler.c:154 msgid "MIME type" -msgstr "" +msgstr "Tipe MIME" -#: ../embed/ephy-about-handler.c:155 +#: ../embed/ephy-about-handler.c:154 msgid "Description" -msgstr "" +msgstr "Descripcion" -#: ../embed/ephy-about-handler.c:155 +#: ../embed/ephy-about-handler.c:154 msgid "Suffixes" -msgstr "" +msgstr "Sufixes" -#: ../embed/ephy-about-handler.c:218 ../embed/ephy-about-handler.c:220 +#: ../embed/ephy-about-handler.c:217 ../embed/ephy-about-handler.c:219 msgid "Memory usage" -msgstr "" +msgstr "Utilizacion de la memòria" -#: ../embed/ephy-about-handler.c:268 +#: ../embed/ephy-about-handler.c:267 #, c-format msgid "Version %s" -msgstr "" +msgstr "Version %s" -#: ../embed/ephy-about-handler.c:288 -#| msgid "_About" +#: ../embed/ephy-about-handler.c:287 msgid "About Web" -msgstr "" +msgstr "A prepaus del Web" -#: ../embed/ephy-about-handler.c:292 +#: ../embed/ephy-about-handler.c:291 msgid "A simple, clean, beautiful view of the web" -msgstr "" +msgstr "Una vista simpla, neta e bèla del Web." -#: ../embed/ephy-about-handler.c:350 ../embed/ephy-about-handler.c:351 -#| msgid "Options" +#: ../embed/ephy-about-handler.c:349 ../embed/ephy-about-handler.c:350 msgid "Applications" msgstr "Aplicacions" -#: ../embed/ephy-about-handler.c:352 +#: ../embed/ephy-about-handler.c:351 msgid "List of installed web applications" -msgstr "" +msgstr "Lista de las aplicacions Web installadas" -#: ../embed/ephy-about-handler.c:366 -#| msgid "_Delete" +#: ../embed/ephy-about-handler.c:365 msgid "Delete" msgstr "Suprimir" #. Note for translators: this refers to the installation date. -#: ../embed/ephy-about-handler.c:368 +#: ../embed/ephy-about-handler.c:367 msgid "Installed on:" -msgstr "" +msgstr "Installat lo :" -#: ../embed/ephy-about-handler.c:472 ../embed/ephy-embed-utils.c:310 -#| msgid "bookmarks|Most Visited" +#: ../embed/ephy-about-handler.c:475 ../embed/ephy-embed-utils.c:308 msgid "Most Visited" msgstr "Los mai visitats" -#: ../embed/ephy-about-handler.c:506 -msgid "Remove from overview" -msgstr "" - #. Displayed when opening the browser for the first time. -#: ../embed/ephy-about-handler.c:524 -msgid "Start browsing and your most-visited sites will appear here" -msgstr "" +#: ../embed/ephy-about-handler.c:494 +msgid "Welcome to Web" +msgstr "Benvenguda dins GNOME Web" + +#: ../embed/ephy-about-handler.c:494 +msgid "Start browsing and your most-visited sites will appear here." +msgstr "Començatz a navigar e los sites les plus visitats apparaîtront aicí." + +#: ../embed/ephy-about-handler.c:532 +msgid "Remove from overview" +msgstr "Suprimir de la vista d'ensemble" -#: ../embed/ephy-about-handler.c:590 ../embed/ephy-about-handler.c:591 +#: ../embed/ephy-about-handler.c:598 ../embed/ephy-about-handler.c:599 msgid "Private Browsing" -msgstr "" +msgstr "Navigacion privada" -#: ../embed/ephy-about-handler.c:592 +#: ../embed/ephy-about-handler.c:600 msgid "" "You are currently browsing incognito. Pages viewed in this mode " "will not show up in your browsing history and all stored information will be " "cleared when you close the window. Files you download will be kept." msgstr "" +"Sètz actualament a navigar incognito. Las paginas atal consultadas " +"apareisson pas dins vòstre istoric de navigacion e tota informacion en " +"memòria serà destruita a la tampadura de la fenèstra. Los fichièrs " +"telecargats seràn conservats." -#: ../embed/ephy-about-handler.c:596 +#: ../embed/ephy-about-handler.c:604 msgid "" "Incognito mode hides your activity only from people using this computer." msgstr "" +"Lo mòde incognito masque vòstra activitat solament als autres utilizaires " +"d'aqueste ordenador." -#: ../embed/ephy-about-handler.c:598 +#: ../embed/ephy-about-handler.c:606 msgid "" "It will not hide your activity from your employer if you are at work. Your " "internet service provider, your government, other governments, the websites " "that you visit, and advertisers on these websites may still be tracking you." msgstr "" +"Amaga pas vòstra activitat a vòstre emplegaire se sètz al trabalh. Vòstre " +"provesidor d'accès a Internet, vòstre govèrnament, d'autres govèrnaments, " +"los sites Web que visitatz e los publicitaris sus aquestes sites Web poiràn " +"totjorn vos pistar." #. characters #: ../embed/ephy-embed.c:47 @@ -567,313 +633,319 @@ msgstr "Pagina voida" #. Translators: 'ESC' and 'F11' are keyboard keys. -#: ../embed/ephy-embed.c:533 +#: ../embed/ephy-embed.c:531 #, c-format msgid "Press %s to exit fullscreen" -msgstr "" +msgstr "Quichatz sus %s per quitar lo mòde ecran complet" -#: ../embed/ephy-embed.c:533 +#: ../embed/ephy-embed.c:531 msgid "ESC" -msgstr "" +msgstr "Escap" -#: ../embed/ephy-embed.c:533 +#: ../embed/ephy-embed.c:531 msgid "F11" -msgstr "" +msgstr "F11" -#: ../embed/ephy-embed-utils.c:63 +#: ../embed/ephy-embed-utils.c:62 #, c-format msgid "Send an email message to “%s”" -msgstr "" +msgstr "Mandar un corrièr electronic a l'adreça « %s »" -#: ../embed/ephy-encodings.c:60 +# no-c-format +#: ../embed/ephy-embed-utils.c:238 ../src/ephy-search-provider.c:283 +#, c-format +msgid "https://duckduckgo.com/?q=%s&t=epiphany" +msgstr "https://duckduckgo.com/?q=%s&t=epiphany&kl=fr-fr" + +#: ../embed/ephy-encodings.c:57 msgid "Arabic (_IBM-864)" msgstr "Arabi (_IBM-864)" -#: ../embed/ephy-encodings.c:61 +#: ../embed/ephy-encodings.c:58 msgid "Arabic (ISO-_8859-6)" msgstr "Arabi (ISO-_8859-6)" -#: ../embed/ephy-encodings.c:62 +#: ../embed/ephy-encodings.c:59 msgid "Arabic (_MacArabic)" msgstr "Arabi (_MacArabic)" -#: ../embed/ephy-encodings.c:63 +#: ../embed/ephy-encodings.c:60 msgid "Arabic (_Windows-1256)" msgstr "Arabi (_Windows-1256)" -#: ../embed/ephy-encodings.c:64 +#: ../embed/ephy-encodings.c:61 msgid "Baltic (_ISO-8859-13)" msgstr "Baltic (_ISO-8859-13)" -#: ../embed/ephy-encodings.c:65 +#: ../embed/ephy-encodings.c:62 msgid "Baltic (I_SO-8859-4)" msgstr "Baltic (I_SO-8859-4)" -#: ../embed/ephy-encodings.c:66 +#: ../embed/ephy-encodings.c:63 msgid "Baltic (_Windows-1257)" msgstr "Baltic (_Windows-1257)" -#: ../embed/ephy-encodings.c:67 +#: ../embed/ephy-encodings.c:64 msgid "_Armenian (ARMSCII-8)" -msgstr "" +msgstr "_Armèni (ARMSCII-8)" -#: ../embed/ephy-encodings.c:68 +#: ../embed/ephy-encodings.c:65 msgid "_Georgian (GEOSTD8)" -msgstr "" +msgstr "_Georgian (GEOSTD8)" -#: ../embed/ephy-encodings.c:69 +#: ../embed/ephy-encodings.c:66 msgid "Central European (_IBM-852)" -msgstr "" +msgstr "Europèu Central (_IBM-852)" -#: ../embed/ephy-encodings.c:70 +#: ../embed/ephy-encodings.c:67 msgid "Central European (I_SO-8859-2)" -msgstr "" +msgstr "Europèu Central (I_SO-8859-2)" -#: ../embed/ephy-encodings.c:71 +#: ../embed/ephy-encodings.c:68 msgid "Central European (_MacCE)" -msgstr "" +msgstr "Europèu Central (_MacCE)" -#: ../embed/ephy-encodings.c:72 +#: ../embed/ephy-encodings.c:69 msgid "Central European (_Windows-1250)" -msgstr "" +msgstr "Europèu Central (_Windows-1250)" -#: ../embed/ephy-encodings.c:73 +#: ../embed/ephy-encodings.c:70 msgid "Chinese Simplified (_GB18030)" msgstr "Chinés simplificat (_GB18030)" -#: ../embed/ephy-encodings.c:74 +#: ../embed/ephy-encodings.c:71 msgid "Chinese Simplified (G_B2312)" msgstr "Chinés simplificat (G_B2312)" -#: ../embed/ephy-encodings.c:75 +#: ../embed/ephy-encodings.c:72 msgid "Chinese Simplified (GB_K)" msgstr "Chinés simplificat (GB_K)" -#: ../embed/ephy-encodings.c:76 +#: ../embed/ephy-encodings.c:73 msgid "Chinese Simplified (_HZ)" msgstr "Chinés simplificat (_HZ)" -#: ../embed/ephy-encodings.c:77 +#: ../embed/ephy-encodings.c:74 msgid "Chinese Simplified (_ISO-2022-CN)" msgstr "Chinés simplificat (_ISO-2022-CN)" -#: ../embed/ephy-encodings.c:78 +#: ../embed/ephy-encodings.c:75 msgid "Chinese Traditional (Big_5)" msgstr "Chinés tradicional (Big_5)" -#: ../embed/ephy-encodings.c:79 +#: ../embed/ephy-encodings.c:76 msgid "Chinese Traditional (Big5-HK_SCS)" msgstr "Chinés tradicional (Big5-HK_SCS)" -#: ../embed/ephy-encodings.c:80 +#: ../embed/ephy-encodings.c:77 msgid "Chinese Traditional (_EUC-TW)" msgstr "Chinés tradicional (_EUC-TW)" -#: ../embed/ephy-encodings.c:81 +#: ../embed/ephy-encodings.c:78 msgid "Cyrillic (_IBM-855)" msgstr "Cirillic (_IBM-855)" -#: ../embed/ephy-encodings.c:82 +#: ../embed/ephy-encodings.c:79 msgid "Cyrillic (I_SO-8859-5)" -msgstr "Cirillic (_IBM-855)" +msgstr "Cirillic (I_SO-8859-5)" -#: ../embed/ephy-encodings.c:83 +#: ../embed/ephy-encodings.c:80 msgid "Cyrillic (IS_O-IR-111)" msgstr "Cirillic (IS_O-IR-111)" -#: ../embed/ephy-encodings.c:84 +#: ../embed/ephy-encodings.c:81 msgid "Cyrillic (_KOI8-R)" msgstr "Cirillic (_KOI8-R)" -#: ../embed/ephy-encodings.c:85 +#: ../embed/ephy-encodings.c:82 msgid "Cyrillic (_MacCyrillic)" msgstr "Cirillic (_MacCyrillic)" -#: ../embed/ephy-encodings.c:86 +#: ../embed/ephy-encodings.c:83 msgid "Cyrillic (_Windows-1251)" msgstr "Cirillic (_Windows-1251)" -#: ../embed/ephy-encodings.c:87 +#: ../embed/ephy-encodings.c:84 msgid "Cyrillic/_Russian (IBM-866)" msgstr "Cirillic/_Rus (IBM-866)" -#: ../embed/ephy-encodings.c:88 +#: ../embed/ephy-encodings.c:85 msgid "Greek (_ISO-8859-7)" msgstr "Grèc (_ISO-8859-7)" -#: ../embed/ephy-encodings.c:89 +#: ../embed/ephy-encodings.c:86 msgid "Greek (_MacGreek)" msgstr "Grèc (_MacGreek)" -#: ../embed/ephy-encodings.c:90 +#: ../embed/ephy-encodings.c:87 msgid "Greek (_Windows-1253)" msgstr "Grèc (_Windows-1253)" -#: ../embed/ephy-encodings.c:91 +#: ../embed/ephy-encodings.c:88 msgid "Gujarati (_MacGujarati)" msgstr "Gujarati (_MacGujarati)" -#: ../embed/ephy-encodings.c:92 +#: ../embed/ephy-encodings.c:89 msgid "Gurmukhi (Mac_Gurmukhi)" msgstr "Gurmukhi (Mac_Gurmukhi)" -#: ../embed/ephy-encodings.c:93 +#: ../embed/ephy-encodings.c:90 msgid "Hindi (Mac_Devanagari)" msgstr "Indi (Mac_Devanagari)" -#: ../embed/ephy-encodings.c:94 +#: ../embed/ephy-encodings.c:91 msgid "Hebrew (_IBM-862)" msgstr "Ebrieu (_IBM-862)" -#: ../embed/ephy-encodings.c:95 +#: ../embed/ephy-encodings.c:92 msgid "Hebrew (IS_O-8859-8-I)" msgstr "Ebrieu (IS_O-8859-8-I)" -#: ../embed/ephy-encodings.c:96 +#: ../embed/ephy-encodings.c:93 msgid "Hebrew (_MacHebrew)" msgstr "Ebrieu (_MacHebrew)" -#: ../embed/ephy-encodings.c:97 +#: ../embed/ephy-encodings.c:94 msgid "Hebrew (_Windows-1255)" msgstr "Ebrieu (_Windows-1255)" -#: ../embed/ephy-encodings.c:98 +#: ../embed/ephy-encodings.c:95 msgid "_Visual Hebrew (ISO-8859-8)" msgstr "Ebrieu _Visual (ISO-8859-8)" -#: ../embed/ephy-encodings.c:99 +#: ../embed/ephy-encodings.c:96 msgid "Japanese (_EUC-JP)" msgstr "Japonés (_EUC-JP)" -#: ../embed/ephy-encodings.c:100 +#: ../embed/ephy-encodings.c:97 msgid "Japanese (_ISO-2022-JP)" msgstr "Japonés (_ISO-2022-JP)" -#: ../embed/ephy-encodings.c:101 +#: ../embed/ephy-encodings.c:98 msgid "Japanese (_Shift-JIS)" msgstr "Japonés (_Shift-JIS)" -#: ../embed/ephy-encodings.c:102 +#: ../embed/ephy-encodings.c:99 msgid "Korean (_EUC-KR)" msgstr "Corean (_EUC-KR)" -#: ../embed/ephy-encodings.c:103 +#: ../embed/ephy-encodings.c:100 msgid "Korean (_ISO-2022-KR)" msgstr "Corean (_ISO-2022-KR)" -#: ../embed/ephy-encodings.c:104 +#: ../embed/ephy-encodings.c:101 msgid "Korean (_JOHAB)" msgstr "Corean (_JOHAB)" -#: ../embed/ephy-encodings.c:105 +#: ../embed/ephy-encodings.c:102 msgid "Korean (_UHC)" msgstr "Corean (_UHC)" -#: ../embed/ephy-encodings.c:106 +#: ../embed/ephy-encodings.c:103 msgid "_Celtic (ISO-8859-14)" msgstr "_Celtic (ISO-8859-14)" -#: ../embed/ephy-encodings.c:107 +#: ../embed/ephy-encodings.c:104 msgid "_Icelandic (MacIcelandic)" msgstr "_Islandés (MacIcelandic)" -#: ../embed/ephy-encodings.c:108 +#: ../embed/ephy-encodings.c:105 msgid "_Nordic (ISO-8859-10)" -msgstr "" +msgstr "_Nordic (ISO-8859-10)" -#: ../embed/ephy-encodings.c:109 +#: ../embed/ephy-encodings.c:106 msgid "_Persian (MacFarsi)" msgstr "_Persan (MacFarsi)" -#: ../embed/ephy-encodings.c:110 +#: ../embed/ephy-encodings.c:107 msgid "Croatian (Mac_Croatian)" msgstr "Croat (Mac_Croatian)" -#: ../embed/ephy-encodings.c:111 +#: ../embed/ephy-encodings.c:108 msgid "_Romanian (MacRomanian)" msgstr "_Romanés (MacRomanian)" -#: ../embed/ephy-encodings.c:112 +#: ../embed/ephy-encodings.c:109 msgid "R_omanian (ISO-8859-16)" msgstr "R_omanés (ISO-8859-16)" -#: ../embed/ephy-encodings.c:113 +#: ../embed/ephy-encodings.c:110 msgid "South _European (ISO-8859-3)" -msgstr "Sud _Europèu (ISO-8859-3)" +msgstr "_Europèu del sud (ISO-8859-3)" -#: ../embed/ephy-encodings.c:114 +#: ../embed/ephy-encodings.c:111 msgid "Thai (TIS-_620)" msgstr "Tai (TIS-_620)" -#: ../embed/ephy-encodings.c:115 +#: ../embed/ephy-encodings.c:112 msgid "Thai (IS_O-8859-11)" msgstr "Tai (IS_O-8859-11)" -#: ../embed/ephy-encodings.c:116 +#: ../embed/ephy-encodings.c:113 msgid "_Thai (Windows-874)" msgstr "_Tai (Windows-874)" -#: ../embed/ephy-encodings.c:117 +#: ../embed/ephy-encodings.c:114 msgid "Turkish (_IBM-857)" msgstr "Turc (_IBM-857)" -#: ../embed/ephy-encodings.c:118 +#: ../embed/ephy-encodings.c:115 msgid "Turkish (I_SO-8859-9)" msgstr "Turc (I_SO-8859-9)" -#: ../embed/ephy-encodings.c:119 +#: ../embed/ephy-encodings.c:116 msgid "Turkish (_MacTurkish)" msgstr "Turc (_MacTurkish)" -#: ../embed/ephy-encodings.c:120 +#: ../embed/ephy-encodings.c:117 msgid "Turkish (_Windows-1254)" msgstr "Turc (_Windows-1254)" -#: ../embed/ephy-encodings.c:121 +#: ../embed/ephy-encodings.c:118 msgid "Unicode (UTF-_8)" msgstr "Unicode (UTF-_8)" -#: ../embed/ephy-encodings.c:122 +#: ../embed/ephy-encodings.c:119 msgid "Cyrillic/Ukrainian (_KOI8-U)" msgstr "Cirillic/Ucraïnian (_KOI8-U)" -#: ../embed/ephy-encodings.c:123 +#: ../embed/ephy-encodings.c:120 msgid "Cyrillic/Ukrainian (Mac_Ukrainian)" msgstr "Cirillic/Ucraïnian (Mac_Ukrainian)" -#: ../embed/ephy-encodings.c:124 +#: ../embed/ephy-encodings.c:121 msgid "Vietnamese (_TCVN)" msgstr "Vietnamian (_TCVN)" -#: ../embed/ephy-encodings.c:125 +#: ../embed/ephy-encodings.c:122 msgid "Vietnamese (_VISCII)" msgstr "Vietnamian (_VISCII)" -#: ../embed/ephy-encodings.c:126 +#: ../embed/ephy-encodings.c:123 msgid "Vietnamese (V_PS)" msgstr "Vietnamian (V_PS)" -#: ../embed/ephy-encodings.c:127 +#: ../embed/ephy-encodings.c:124 msgid "Vietnamese (_Windows-1258)" msgstr "Vietnamian (_Windows-1258)" -#: ../embed/ephy-encodings.c:128 +#: ../embed/ephy-encodings.c:125 msgid "Western (_IBM-850)" msgstr "Occidental (_IBM-850)" -#: ../embed/ephy-encodings.c:129 +#: ../embed/ephy-encodings.c:126 msgid "Western (_ISO-8859-1)" msgstr "Occidental (_ISO-8859-1)" -#: ../embed/ephy-encodings.c:130 +#: ../embed/ephy-encodings.c:127 msgid "Western (IS_O-8859-15)" msgstr "Occidental (IS_O-8859-15)" -#: ../embed/ephy-encodings.c:131 +#: ../embed/ephy-encodings.c:128 msgid "Western (_MacRoman)" msgstr "Occidental (_MacRoman)" -#: ../embed/ephy-encodings.c:132 +#: ../embed/ephy-encodings.c:129 msgid "Western (_Windows-1252)" msgstr "Occidental (_Windows-1252)" @@ -881,286 +953,308 @@ #. * pollute the "related" part of the encodings menu with them, so we #. * set the language group to 0 here. #. -#: ../embed/ephy-encodings.c:138 +#: ../embed/ephy-encodings.c:135 msgid "English (_US-ASCII)" msgstr "Anglés (_US-ASCII)" -#: ../embed/ephy-encodings.c:139 +#: ../embed/ephy-encodings.c:136 msgid "Unicode (UTF-_16 BE)" msgstr "Unicode (UTF-_16 BE)" -#: ../embed/ephy-encodings.c:140 +#: ../embed/ephy-encodings.c:137 msgid "Unicode (UTF-1_6 LE)" msgstr "Unicode (UTF-1_6 LE)" -#: ../embed/ephy-encodings.c:141 +#: ../embed/ephy-encodings.c:138 msgid "Unicode (UTF-_32 BE)" msgstr "Unicode (UTF-_32 BE)" -#: ../embed/ephy-encodings.c:142 +#: ../embed/ephy-encodings.c:139 msgid "Unicode (UTF-3_2 LE)" msgstr "Unicode (UTF-3_2 LE)" #. Translators: this is the title that an unknown encoding will #. * be displayed as. #. -#: ../embed/ephy-encodings.c:221 +#: ../embed/ephy-encodings.c:218 #, c-format msgid "Unknown (%s)" msgstr "Desconegut (%s)" -#: ../embed/ephy-find-toolbar.c:102 -#| msgid "Not found" +#: ../embed/ephy-find-toolbar.c:96 msgid "Text not found" msgstr "Tèxte pas trobat" -#: ../embed/ephy-find-toolbar.c:108 +#: ../embed/ephy-find-toolbar.c:102 msgid "Search wrapped back to the top" -msgstr "" +msgstr "La recèrca es tornada al començament" -#: ../embed/ephy-find-toolbar.c:427 +#: ../embed/ephy-find-toolbar.c:388 msgid "Type to search…" -msgstr "" +msgstr "Començatz la sasida per recercar…" -#: ../embed/ephy-find-toolbar.c:433 +#: ../embed/ephy-find-toolbar.c:394 msgid "Find previous occurrence of the search string" -msgstr "" +msgstr "Recèrca l'ocurréncia precedenta de la cadena" -#: ../embed/ephy-find-toolbar.c:441 +#: ../embed/ephy-find-toolbar.c:402 msgid "Find next occurrence of the search string" -msgstr "" +msgstr "Recèrca l'ocurréncia seguenta de la cadena" -#: ../embed/ephy-web-view.c:493 -#| msgid "Don't Save" +#: ../embed/ephy-web-view.c:495 msgid "_Don’t Save" msgstr "Enre_gistrar pas" -#: ../embed/ephy-web-view.c:494 ../lib/widgets/ephy-file-chooser.c:195 -#| msgid "Save" +#: ../embed/ephy-web-view.c:496 ../lib/widgets/ephy-file-chooser.c:188 msgid "_Save" msgstr "Enregi_strar" #. Translators: The %s the hostname where this is happening. #. * Example: mail.google.com. #. -#: ../embed/ephy-web-view.c:505 +#: ../embed/ephy-web-view.c:507 #, c-format msgid "Do you want to save your password for “%s”?" -msgstr "" +msgstr "Volètz enregistrar vòstre senhal per « %s » ?" -#: ../embed/ephy-web-view.c:1247 +#: ../embed/ephy-web-view.c:1254 msgid "Deny" -msgstr "" +msgstr "Interdire" -#: ../embed/ephy-web-view.c:1248 -#| msgid "_Allow" +#: ../embed/ephy-web-view.c:1255 msgid "Allow" msgstr "Autorizar" #. Translators: Geolocation policy for a specific site. -#: ../embed/ephy-web-view.c:1260 +#: ../embed/ephy-web-view.c:1267 #, c-format msgid "The page at %s wants to know your location." -msgstr "" +msgstr "La pagina a %s demanda vòstra localizacion." #. Translators: Notification policy for a specific site. -#: ../embed/ephy-web-view.c:1264 +#: ../embed/ephy-web-view.c:1271 #, c-format msgid "The page at %s wants to show desktop notifications." msgstr "" +"La pagina a l'adreça %s desira poder afichar de notificacions sus " +"vòstre burèu." #. translators: %s here is the address of the web page -#: ../embed/ephy-web-view.c:1350 +#: ../embed/ephy-web-view.c:1357 #, c-format msgid "Loading “%s”…" -msgstr "Cargament de “%s”…" +msgstr "Cargament de « %s »…" -#: ../embed/ephy-web-view.c:1352 +#: ../embed/ephy-web-view.c:1359 msgid "Loading…" -msgstr "Cargament..." +msgstr "Cargament…" #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1599 +#: ../embed/ephy-web-view.c:1607 msgid "" "This website presented identification that belongs to a different website." msgstr "" +"Aqueste site Web presenta de donadas d'identificacion qu'apartenon a un site " +"Web diferent." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1604 +#: ../embed/ephy-web-view.c:1612 msgid "" "This website’s identification is too old to trust. Check the date on your " "computer’s calendar." msgstr "" +"Las donadas d'identificacion d'aqueste site Web son tròp vièlhas per èsser " +"fisablas. Verificatz la data sus vòstre ordenador." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1609 +#: ../embed/ephy-web-view.c:1617 msgid "This website’s identification was not issued by a trusted organization." msgstr "" +"Las donadas d'identificacion d'aqueste site Web son pas estadas desliuradas " +"per una organizacion de fisança." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1614 +#: ../embed/ephy-web-view.c:1622 msgid "" "This website’s identification could not be processed. It may be corrupted." msgstr "" +"Las donadas d'identificacion d'aqueste site Web an pas pogut èsser " +"tractadas. Pòdon èsser corrompudas." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1619 +#: ../embed/ephy-web-view.c:1627 msgid "" "This website’s identification has been revoked by the trusted organization " "that issued it." msgstr "" +"Las donadas d'identificacion d'aqueste site Web son estadas revocadas per " +"l'organizacion de fisança que les a délivrées." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1624 +#: ../embed/ephy-web-view.c:1632 msgid "" "This website’s identification cannot be trusted because it uses very weak " "encryption." msgstr "" +"Las donadas d'identificacion d'aqueste site Web son pas fisablas perque " +"utilizan un chiframent feble." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1629 +#: ../embed/ephy-web-view.c:1637 msgid "" "This website’s identification is only valid for future dates. Check the date " "on your computer’s calendar." msgstr "" +"Las donadas d'identificacion d'aqueste site Web ne son pas valablas que per " +"un perióde futur. Verificatz la data sus vòstre ordenador." + +#: ../embed/ephy-web-view.c:1720 +msgid "None specified" +msgstr "Pas cap d'indicacion" -#. Message when a site's TLS certificate is invalid. %s is the site's hostname. -#: ../embed/ephy-web-view.c:1664 +#. Page title when a site cannot be loaded due to a network error. +#. Page title when a site cannot be loaded due to a page crash error. +#: ../embed/ephy-web-view.c:1734 ../embed/ephy-web-view.c:1759 #, c-format -msgid "This might not be the real %s." -msgstr "" +msgid "Problem Loading Page" +msgstr "Problèma de cargament de la pagina" -#. Message when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1669 -msgid "" -"When you try to connect securely, websites present identification to prove " -"that your connection has not been maliciously intercepted. There is " -"something wrong with this website’s identification:" -msgstr "" +#. Message title when a site cannot be loaded due to a network error. +#: ../embed/ephy-web-view.c:1737 +msgid "Oops! Unable to display this website" +msgstr "Ops ! Impossible d'afichar aqueste site Web" -#. Message when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1675 +#. Message body when a site cannot be loaded due to a network error. +#: ../embed/ephy-web-view.c:1740 +#, c-format msgid "" -"A third party may have hijacked your connection. You should continue only if " -"you know there is a good reason why this website does not use trusted " -"identification." +"

The site at %s seems to be unavailable.

It may be " +"temporarily inaccessible or moved to a new address. You may wish to verify " +"that your internet connection is working correctly.

" msgstr "" -#. Good advice from Firefox; displays when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1679 -msgid "" -"Legitimate banks, stores, and other public sites will not ask you to do this." +#. Message details when a site cannot be loaded due to a network error. +#: ../embed/ephy-web-view.c:1749 +#, c-format +msgid "

The precise error was: %s

" msgstr "" -#: ../embed/ephy-web-view.c:1728 -msgid "None specified" -msgstr "" +#. The button on the network error page. +#. The button on the page crash error page. +#. The button on the process crash error page. +#: ../embed/ephy-web-view.c:1753 ../embed/ephy-web-view.c:1774 +#: ../embed/ephy-web-view.c:1790 +msgid "Reload" +msgstr "_Recargar" -#. Page title when a site cannot be loaded. %s is the site's hostname. -#: ../embed/ephy-web-view.c:1741 ../embed/ephy-web-view.c:1758 -#: ../embed/ephy-web-view.c:1782 -#, c-format -#| msgid "Save link “%s”" -msgid "Problem loading “%s”" -msgstr "Problèma a l'enregistrament de \"%s\"" +#: ../embed/ephy-web-view.c:1755 ../embed/ephy-web-view.c:1776 +#: ../embed/ephy-web-view.c:1792 +msgctxt "reload-access-key" +msgid "R" +msgstr "R" -#: ../embed/ephy-web-view.c:1743 -msgid "Oops! Unable to display this website." -msgstr "" +#. Message title when a site cannot be loaded due to a page crash error. +#: ../embed/ephy-web-view.c:1762 +msgid "Oops! There may be a problem" +msgstr "Ops ! Es possible qu'i aja un problèma." -#: ../embed/ephy-web-view.c:1744 +#. Message body when a site cannot be loaded due to a page crash error. +#: ../embed/ephy-web-view.c:1765 #, c-format msgid "" -"

The site at “%s” seems to be unavailable. The precise error was:

%s

It may be temporarily unavailable or moved to a " -"new address. You may wish to verify that your internet connection is working " -"correctly.

" +"

The site at %s may have caused Web to close unexpectedly." +"

If this happens again, please report the problem to the %s developers.

" msgstr "" -#: ../embed/ephy-web-view.c:1752 -msgid "Try Again" +#. Page title when a site cannot be loaded due to a process crash error. +#: ../embed/ephy-web-view.c:1780 +#, c-format +msgid "Problem Displaying Page" msgstr "" -#. Access key for the "Try Again" button on the network error page. -#. Access key for the "Reload Anyway" button on the crash error page. -#. Access key for the "Load Anyway" button on the TLS error page. -#: ../embed/ephy-web-view.c:1755 ../embed/ephy-web-view.c:1769 -#: ../embed/ephy-web-view.c:1778 ../embed/ephy-web-view.c:1790 -msgid "A" -msgstr "" +#. Message title when a site cannot be loaded due to a process crash error. +#: ../embed/ephy-web-view.c:1783 +msgid "Oops!" +msgstr "Ops !" -#: ../embed/ephy-web-view.c:1760 -msgid "Oops! There may be a problem." +#. Message body when a site cannot be loaded due to a process crash error. +#: ../embed/ephy-web-view.c:1786 +msgid "" +"

Something went wrong while displaying this page.

Please reload or " +"visit a different page to continue.

" msgstr "" +"Quicòm s'es mal passat pendent l'afichatge d'aquesta pagina. Recargatz-la o " +"visitar una pagina diferenta per contunhar." -#: ../embed/ephy-web-view.c:1761 +#. Page title when a site is not loaded due to an invalid TLS certificate. +#: ../embed/ephy-web-view.c:1796 #, c-format -msgid "" -"

This site may have caused Web to close unexpectedly.

If this " -"happens again, please report the problem to the %s " -"developers.

" +msgid "Security Violation" msgstr "" -#: ../embed/ephy-web-view.c:1766 ../embed/ephy-web-view.c:1775 -#| msgid "_Reload" -msgid "Reload Anyway" -msgstr "Recargar malgrat tot" +#. Message title when a site is not loaded due to an invalid TLS certificate. +#: ../embed/ephy-web-view.c:1799 +msgid "This Connection is Not Secure" +msgstr "Vòstra connexion semble sûre." -#: ../embed/ephy-web-view.c:1772 +#. Message body when a site is not loaded due to an invalid TLS certificate. +#: ../embed/ephy-web-view.c:1802 #, c-format -#| msgid "Save link “%s”" -msgid "Problem displaying “%s”" +msgid "" +"

This does not look like the real %s. Attackers might be " +"trying to steal or alter information going to or from this site (for " +"example, private messages, credit card information, or passwords).

" msgstr "" -#: ../embed/ephy-web-view.c:1773 -msgid "Oops!" -msgstr "" +#. The button on the invalid TLS certificate error page. +#: ../embed/ephy-web-view.c:1812 +msgid "Go Back" +msgstr "Precedent" -#: ../embed/ephy-web-view.c:1774 -msgid "" -"Something went wrong while displaying this page. Please reload or visit a " -"different page to continue." -msgstr "" +#: ../embed/ephy-web-view.c:1814 +msgctxt "back-access-key" +msgid "B" +msgstr "Mio" -#. Title of error page when a website's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1784 -msgid "Look out!" -msgstr "" +#. The hidden button on the invalid TLS certificate error page. +#: ../embed/ephy-web-view.c:1817 +msgid "Accept Risk and Proceed" +msgstr "Acceptar la risca" -#. Button on error page when a website's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1787 -msgid "Load Anyway" -msgstr "" +#: ../embed/ephy-web-view.c:1820 +msgctxt "proceed-anyway-access-key" +msgid "P" +msgstr "P" -#: ../embed/ephy-web-view.c:2709 +#: ../embed/ephy-web-view.c:2742 msgid "_OK" -msgstr "" +msgstr "_D'acòrdi" #. If we don't have XDG user dirs info, return an educated guess. -#: ../lib/ephy-file-helpers.c:108 ../lib/widgets/ephy-downloads-popover.c:174 -#: ../src/resources/prefs-dialog.ui.h:2 +#: ../lib/ephy-file-helpers.c:106 ../src/resources/prefs-dialog.ui.h:2 msgid "Downloads" msgstr "Telecargaments" #. If we don't have XDG user dirs info, return an educated guess. -#: ../lib/ephy-file-helpers.c:161 +#: ../lib/ephy-file-helpers.c:159 msgid "Desktop" -msgstr "" +msgstr "Burèu" -#: ../lib/ephy-file-helpers.c:342 +#: ../lib/ephy-file-helpers.c:336 #, c-format msgid "Could not create a temporary directory in “%s”." -msgstr "" +msgstr "Impossible de crear lo repertòri temporari dins « %s »." -#: ../lib/ephy-file-helpers.c:471 +#: ../lib/ephy-file-helpers.c:457 #, c-format msgid "The file “%s” exists. Please move it out of the way." -msgstr "" +msgstr "Lo fichièr « %s » existís. Desplaçatz-lo." -#: ../lib/ephy-file-helpers.c:495 +#: ../lib/ephy-file-helpers.c:476 #, c-format msgid "Failed to create directory “%s”." -msgstr "" +msgstr "Impossible de crear lo repertòri « %s »." #. Translators: The first %s is the username and the second one is the #. * hostname where this is happening. Example: gnome@gmail.com and @@ -1169,7 +1263,7 @@ #: ../lib/ephy-form-auth-data.c:138 #, c-format msgid "Password for %s in a form in %s" -msgstr "" +msgstr "Lo senhal de %s dins un formulari dins %s" #. Translators: The first %s is the hostname where this is happening. #. * Example: mail.google.com. @@ -1177,107 +1271,99 @@ #: ../lib/ephy-form-auth-data.c:144 #, c-format msgid "Password in a form in %s" -msgstr "" +msgstr "Lo senhal dins un formulari dins %s" -#: ../lib/ephy-gui.c:204 +#: ../lib/ephy-gui.c:199 #, c-format msgid "Directory “%s” is not writable" -msgstr "" +msgstr "Lo repertòri « %s » es protegit en escritura" -#: ../lib/ephy-gui.c:208 +#: ../lib/ephy-gui.c:203 msgid "You do not have permission to create files in this directory." -msgstr "" +msgstr "Avètz pas la permission de crear un fichièr dins aqueste repertòri." -#: ../lib/ephy-gui.c:211 +#: ../lib/ephy-gui.c:206 msgid "Directory not Writable" -msgstr "" +msgstr "Repertòri protegit en escritura" -#: ../lib/ephy-gui.c:240 +#: ../lib/ephy-gui.c:233 #, c-format msgid "Cannot overwrite existing file “%s”" -msgstr "" +msgstr "Impossible d'espotir lo fichièr existent « %s »" -#: ../lib/ephy-gui.c:244 +#: ../lib/ephy-gui.c:237 msgid "" "A file with this name already exists and you don't have permission to " "overwrite it." msgstr "" +"Un fichièr amb aqueste nom existís ja e avètz pas la permission de l'espotir." -#: ../lib/ephy-gui.c:247 +#: ../lib/ephy-gui.c:240 msgid "Cannot Overwrite File" -msgstr "" +msgstr "Impossible d'espotir lo fichièr" -#: ../lib/ephy-gui.c:305 +#: ../lib/ephy-gui.c:296 #, c-format msgid "Could not display help: %s" msgstr "Impossible d'afichar l'ajuda : %s" -#: ../lib/ephy-nss-glue.c:60 -#| msgid "User Password" -msgid "Master password needed" -msgstr "Senhal mèstre demandat" - -#: ../lib/ephy-nss-glue.c:62 -msgid "" -"The passwords from the previous version are locked with a master password. " -"If you want to import them, please enter your master password below." -msgstr "" - -#: ../lib/ephy-profile-migrator.c:99 +#: ../lib/ephy-profile-migrator.c:96 msgid "Failed to copy cookies file from Mozilla." -msgstr "" +msgstr "Fracàs de la còpia del fichièr cookies de Mozilla." -#: ../lib/ephy-profile-migrator.c:649 +#: ../lib/ephy-profile-migrator.c:361 msgid "" "Web 3.6 deprecated this directory and tried migrating this configuration to " "~/.config/epiphany" msgstr "" +"Web 3.6 a abandonné aqueste repertòri e temptat de migrer aquesta " +"configuration vers ~/.config/epiphany" -#: ../lib/ephy-profile-migrator.c:1063 +#: ../lib/ephy-profile-migrator.c:783 msgid "Executes only the n-th migration step" -msgstr "" +msgstr "Executa solament la n-ième etapa de la migration" -#: ../lib/ephy-profile-migrator.c:1065 +#: ../lib/ephy-profile-migrator.c:785 msgid "Specifies the required version for the migrator" -msgstr "" +msgstr "Indica la version requesida per l'aisina de migracion" -#: ../lib/ephy-profile-migrator.c:1067 +#: ../lib/ephy-profile-migrator.c:787 msgid "Specifies the profile where the migrator should run" -msgstr "" +msgstr "Indica lo perfil a migrer" -#: ../lib/ephy-profile-migrator.c:1085 +#: ../lib/ephy-profile-migrator.c:805 msgid "Web profile migrator" -msgstr "" +msgstr "Migrador de perfil de Web" -#: ../lib/ephy-profile-migrator.c:1086 +#: ../lib/ephy-profile-migrator.c:806 msgid "Web profile migrator options" -msgstr "" +msgstr "Opcions de l'aisina de migracion de perfil de Web" #. Translators: "friendly time" string for the current day, strftime format. like "Today 12:34 am" #: ../lib/ephy-time-helpers.c:226 msgid "Today %I:%M %p" -msgstr "" +msgstr "Uèi %I:%M %p" #. Translators: "friendly time" string for the previous day, #. * strftime format. e.g. "Yesterday 12:34 am" #. #: ../lib/ephy-time-helpers.c:239 msgid "Yesterday %I:%M %p" -msgstr "" +msgstr "Ièr a %I:%M %p" #. Translators: "friendly time" string for a day in the current week, #. * strftime format. e.g. "Wed 12:34 am" #. #: ../lib/ephy-time-helpers.c:255 msgid "%a %I:%M %p" -msgstr "" +msgstr "%a %I:%M %p" #. Translators: "friendly time" string for a day in the current year, #. * strftime format. e.g. "Feb 12 12:34 am" #. #: ../lib/ephy-time-helpers.c:267 msgid "%b %d %I:%M %p" -msgstr "" +msgstr "%b %d %I:%M %p" #. Translators: "friendly time" string for a day in a different year, #. * strftime format. e.g. "Feb 12 1997" @@ -1333,150 +1419,150 @@ #: ../lib/history/ephy-history-service-hosts-table.c:360 msgid "Local files" -msgstr "" +msgstr "Fichièrs locals" -#: ../lib/widgets/ephy-certificate-dialog.c:101 +#: ../lib/widgets/ephy-certificate-dialog.c:99 msgid "The certificate does not match this website" -msgstr "" +msgstr "Lo certificat correspond pas a aqueste site Web" -#: ../lib/widgets/ephy-certificate-dialog.c:104 +#: ../lib/widgets/ephy-certificate-dialog.c:102 msgid "The certificate has expired" -msgstr "" +msgstr "Lo certificat a expirat" -#: ../lib/widgets/ephy-certificate-dialog.c:107 +#: ../lib/widgets/ephy-certificate-dialog.c:105 msgid "The signing certificate authority is not known" -msgstr "" +msgstr "L'autoritat que signa los certificats es desconeguda" -#: ../lib/widgets/ephy-certificate-dialog.c:110 +#: ../lib/widgets/ephy-certificate-dialog.c:108 msgid "The certificate contains errors" -msgstr "" +msgstr "Lo certificat conten d'errors" -#: ../lib/widgets/ephy-certificate-dialog.c:113 +#: ../lib/widgets/ephy-certificate-dialog.c:111 msgid "The certificate has been revoked" -msgstr "" +msgstr "Lo certificat es estat revocat" -#: ../lib/widgets/ephy-certificate-dialog.c:116 +#: ../lib/widgets/ephy-certificate-dialog.c:114 msgid "The certificate is signed using a weak signature algorithm" -msgstr "" +msgstr "Lo certificat es signat amb un algoritme de signatura feble" -#: ../lib/widgets/ephy-certificate-dialog.c:119 +#: ../lib/widgets/ephy-certificate-dialog.c:117 msgid "The certificate activation time is still in the future" -msgstr "" +msgstr "L'ora d'activacion del certificat es dins lo futur" -#: ../lib/widgets/ephy-certificate-dialog.c:161 +#: ../lib/widgets/ephy-certificate-dialog.c:159 msgid "The identity of this website has been verified." -msgstr "" +msgstr "L'identitat d'aqueste site Web es estada verificada." -#: ../lib/widgets/ephy-certificate-dialog.c:162 +#: ../lib/widgets/ephy-certificate-dialog.c:160 msgid "The identity of this website has not been verified." -msgstr "" +msgstr "L'identitat d'aqueste site Web es pas estada verificada." #. Message on certificte dialog ertificate dialog -#: ../lib/widgets/ephy-certificate-dialog.c:174 +#: ../lib/widgets/ephy-certificate-dialog.c:172 msgid "No problems have been detected with your connection." -msgstr "" +msgstr "Cap de problèma es pas estat detectat amb vòstra connexion." -#: ../lib/widgets/ephy-certificate-dialog.c:177 +#: ../lib/widgets/ephy-certificate-dialog.c:175 msgid "" "This certificate is valid. However, resources on this page were sent " "insecurely." msgstr "" +"Aqueste certificat es valid. Pasmens, certanas ressorsas d'aquesta pagina " +"son estadas mandadas de manièra pas securizada." -#: ../lib/widgets/ephy-downloads-popover.c:181 -msgid "Clear" -msgstr "Netejar" +#: ../lib/widgets/ephy-downloads-popover.c:222 +msgid "_Clear All" +msgstr "Netejar _tot" -#: ../lib/widgets/ephy-download-widget.c:84 +#: ../lib/widgets/ephy-download-widget.c:81 #, c-format msgid "%d second left" msgid_plural "%d seconds left" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "encara %d segonda" +msgstr[1] "encara %d segondas" -#: ../lib/widgets/ephy-download-widget.c:90 +#: ../lib/widgets/ephy-download-widget.c:85 #, c-format msgid "%d minute left" msgid_plural "%d minutes left" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "encara %d minuta" +msgstr[1] "encara %d minutas" -#: ../lib/widgets/ephy-download-widget.c:96 +#: ../lib/widgets/ephy-download-widget.c:89 #, c-format msgid "%d hour left" msgid_plural "%d hours left" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "encara %d ora" +msgstr[1] "encara %d oras" -#: ../lib/widgets/ephy-download-widget.c:102 +#: ../lib/widgets/ephy-download-widget.c:93 #, c-format msgid "%d day left" msgid_plural "%d days left" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "encara %d jorn" +msgstr[1] "encara %d jorns" -#: ../lib/widgets/ephy-download-widget.c:108 +#: ../lib/widgets/ephy-download-widget.c:97 #, c-format msgid "%d week left" msgid_plural "%d weeks left" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "encara %d setmana" +msgstr[1] "encara %d setmanas" -#: ../lib/widgets/ephy-download-widget.c:114 +#: ../lib/widgets/ephy-download-widget.c:101 #, c-format msgid "%d month left" msgid_plural "%d months left" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "encara %d mes" +msgstr[1] "encara %d meses" -#: ../lib/widgets/ephy-download-widget.c:229 -#: ../lib/widgets/ephy-download-widget.c:409 +#: ../lib/widgets/ephy-download-widget.c:224 +#: ../lib/widgets/ephy-download-widget.c:407 msgid "Finished" -msgstr "" +msgstr "Acabat" -#: ../lib/widgets/ephy-download-widget.c:246 -#: ../lib/widgets/ephy-download-widget.c:405 +#: ../lib/widgets/ephy-download-widget.c:241 +#: ../lib/widgets/ephy-download-widget.c:403 #, c-format msgid "Error downloading: %s" -msgstr "" +msgstr "Error de telecargament : %s" -#: ../lib/widgets/ephy-download-widget.c:273 +#: ../lib/widgets/ephy-download-widget.c:268 msgid "Cancelling…" -msgstr "" +msgstr "Anullacion..." -#: ../lib/widgets/ephy-download-widget.c:411 +#: ../lib/widgets/ephy-download-widget.c:409 msgid "Starting…" -msgstr "" +msgstr "Aviada…" -#: ../lib/widgets/ephy-file-chooser.c:185 -#: ../lib/widgets/ephy-file-chooser.c:194 -#: ../src/bookmarks/ephy-bookmark-properties.c:391 -#: ../src/bookmarks/ephy-bookmarks-editor.c:820 +#: ../lib/widgets/ephy-file-chooser.c:180 +#: ../lib/widgets/ephy-file-chooser.c:187 +#: ../src/bookmarks/ephy-bookmark-properties.c:375 +#: ../src/bookmarks/ephy-bookmarks-editor.c:766 #: ../src/resources/clear-data-dialog.ui.h:3 -#: ../src/resources/prefs-lang-dialog.ui.h:2 ../src/window-commands.c:806 -#| msgid "_Cancel Logout" +#: ../src/resources/prefs-lang-dialog.ui.h:2 ../src/window-commands.c:779 msgid "_Cancel" msgstr "_Anullar" -#: ../lib/widgets/ephy-file-chooser.c:186 +#: ../lib/widgets/ephy-file-chooser.c:181 #: ../src/resources/history-dialog.ui.h:1 -#| msgid "Open" msgid "_Open" msgstr "Do_brir" -#: ../lib/widgets/ephy-file-chooser.c:211 +#: ../lib/widgets/ephy-file-chooser.c:203 msgid "All supported types" -msgstr "" +msgstr "Tous les types pris en charge" -#: ../lib/widgets/ephy-file-chooser.c:225 +#: ../lib/widgets/ephy-file-chooser.c:218 msgid "Web pages" msgstr "Paginas web" -#: ../lib/widgets/ephy-file-chooser.c:236 +#: ../lib/widgets/ephy-file-chooser.c:229 msgid "Images" msgstr "Imatges" -#: ../lib/widgets/ephy-file-chooser.c:244 -#: ../src/bookmarks/ephy-bookmarks-editor.c:637 +#: ../lib/widgets/ephy-file-chooser.c:238 +#: ../src/bookmarks/ephy-bookmarks-editor.c:595 msgid "All files" msgstr "Totes los fichièrs" @@ -1484,454 +1570,466 @@ #. * standard items in the GtkEntry context menu (Cut, Copy, Paste, Delete, #. * Select All, Input Methods and Insert Unicode control character.) #. -#: ../lib/widgets/ephy-location-entry.c:620 ../src/ephy-history-window.c:261 +#: ../lib/widgets/ephy-location-entry.c:628 ../src/ephy-history-window.c:252 msgid "Cl_ear" msgstr "_Netejar" +#: ../lib/widgets/ephy-location-entry.c:647 +msgid "Paste and _Go" +msgstr "" + #. Edit actions. -#: ../lib/widgets/ephy-location-entry.c:639 ../src/ephy-window.c:115 +#: ../lib/widgets/ephy-location-entry.c:666 ../src/ephy-window.c:111 msgid "_Undo" msgstr "_Anullar" -#: ../lib/widgets/ephy-location-entry.c:646 +#: ../lib/widgets/ephy-location-entry.c:673 msgid "_Redo" -msgstr "" +msgstr "_Restablir" -#: ../lib/widgets/ephy-location-entry.c:927 +#: ../lib/widgets/ephy-location-entry.c:943 msgid "Drag and drop this icon to create a link to this page" msgstr "" +"Glissez e déposez aquesta icòna per crear un ligam cap a aquesta pagina" #. Label when clicking the lock icon on a secure page. %s is the website's hostname. -#: ../lib/widgets/ephy-security-popover.c:76 +#: ../lib/widgets/ephy-security-popover.c:74 #, c-format msgid "You are connected to %s" -msgstr "" +msgstr "Sètz connectat a %s" #. Label in certificate popover when site is untrusted. %s is a URL. -#: ../lib/widgets/ephy-security-popover.c:110 +#: ../lib/widgets/ephy-security-popover.c:108 #, c-format msgid "" "This web site’s digital identification is not trusted. You may have " "connected to an attacker pretending to be %s." msgstr "" +"L'identitat numerica d'aqueste site Web es pas fisabla. Benlèu que sètz " +"connectat a un atacant que se fa passar per %s." #. Label in certificate popover when site uses HTTP. %s is a URL. -#: ../lib/widgets/ephy-security-popover.c:118 +#: ../lib/widgets/ephy-security-popover.c:116 #, c-format msgid "" "%s has no security. An attacker could see any information you send, or " "control the content that you see." msgstr "" +"%s es pas securizat. Un atacant pòt veire totas las informations que " +"mandatz, o contrarotlar ce que vous consultez." #. Label in certificate popover when site sends mixed content. -#: ../lib/widgets/ephy-security-popover.c:127 +#: ../lib/widgets/ephy-security-popover.c:125 msgid "This web site did not properly secure your connection." -msgstr "" +msgstr "Aqueste site Web n'a pas convenablament securizat la connexion." #. Label in certificate popover on secure sites. -#: ../lib/widgets/ephy-security-popover.c:133 +#: ../lib/widgets/ephy-security-popover.c:131 msgid "Your connection seems to be secure." -msgstr "" +msgstr "Vòstra connexion semble sûre." -#: ../lib/widgets/ephy-security-popover.c:182 +#: ../lib/widgets/ephy-security-popover.c:180 msgid "_View Certificate…" -msgstr "" +msgstr "_Veire lo certificat…" #. Translators: This string is used when counting bookmarks that #. * are similar to each other -#: ../src/bookmarks/ephy-bookmark-properties.c:93 +#: ../src/bookmarks/ephy-bookmark-properties.c:91 #, c-format msgid "%d bookmark is similar" msgid_plural "%d bookmarks are similar" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d signet es identique" +msgstr[1] "%d signets son identiques" -#: ../src/bookmarks/ephy-bookmark-properties.c:237 -#| msgid "_Add Bookmark…" +#: ../src/bookmarks/ephy-bookmark-properties.c:229 msgid "Add Bookmark" msgstr "Apondre un favorit" -#: ../src/bookmarks/ephy-bookmark-properties.c:239 +#: ../src/bookmarks/ephy-bookmark-properties.c:231 #, c-format msgid "“%s” Properties" -msgstr "" +msgstr "Proprietats de « %s »" -#: ../src/bookmarks/ephy-bookmark-properties.c:392 +#: ../src/bookmarks/ephy-bookmark-properties.c:376 #: ../src/resources/prefs-dialog.ui.h:40 #: ../src/resources/prefs-lang-dialog.ui.h:3 -#| msgid "_Address" msgid "_Add" msgstr "_Apondre" -#: ../src/bookmarks/ephy-bookmarks.c:86 +#: ../src/bookmarks/ephy-bookmarks.c:85 msgid "Entertainment" -msgstr "" +msgstr "Divertiment" -#: ../src/bookmarks/ephy-bookmarks.c:87 +#: ../src/bookmarks/ephy-bookmarks.c:86 msgid "News" -msgstr "Novèlas" +msgstr "Nòvas" -#: ../src/bookmarks/ephy-bookmarks.c:88 +#: ../src/bookmarks/ephy-bookmarks.c:87 msgid "Shopping" msgstr "Crompas" -#: ../src/bookmarks/ephy-bookmarks.c:89 +#: ../src/bookmarks/ephy-bookmarks.c:88 msgid "Sports" msgstr "Espòrts" -#: ../src/bookmarks/ephy-bookmarks.c:90 +#: ../src/bookmarks/ephy-bookmarks.c:89 msgid "Travel" msgstr "Viatge" -#: ../src/bookmarks/ephy-bookmarks.c:91 +#: ../src/bookmarks/ephy-bookmarks.c:90 msgid "Work" msgstr "Trabalh" #. Translators: this topic contains all bookmarks -#: ../src/bookmarks/ephy-bookmarks.c:923 -#| msgid "All" +#: ../src/bookmarks/ephy-bookmarks.c:840 msgctxt "bookmarks" msgid "All" msgstr "Totes" #. Translators: this topic contains the not categorized #. bookmarks -#: ../src/bookmarks/ephy-bookmarks.c:927 +#: ../src/bookmarks/ephy-bookmarks.c:844 msgctxt "bookmarks" msgid "Not Categorized" msgstr "Pas categorizat" #. Translators: this is an automatic topic containing local #. * websites bookmarks autodiscovered with zeroconf. -#: ../src/bookmarks/ephy-bookmarks.c:931 +#: ../src/bookmarks/ephy-bookmarks.c:848 msgctxt "bookmarks" msgid "Nearby Sites" -msgstr "" +msgstr "Sites locals" -#: ../src/bookmarks/ephy-bookmarks.c:1146 -#: ../src/bookmarks/ephy-bookmarks-import.c:268 +#: ../src/bookmarks/ephy-bookmarks.c:1044 +#: ../src/bookmarks/ephy-bookmarks-import.c:210 msgid "Untitled" msgstr "Sens nom" -#: ../src/bookmarks/ephy-bookmarks-editor.c:74 +#: ../src/bookmarks/ephy-bookmarks-editor.c:73 msgid "Web (RDF)" -msgstr "" +msgstr "Web (RDF)" -#: ../src/bookmarks/ephy-bookmarks-editor.c:75 +#: ../src/bookmarks/ephy-bookmarks-editor.c:74 msgid "Mozilla (HTML)" msgstr "Mozilla (HTML)" -#: ../src/bookmarks/ephy-bookmarks-editor.c:121 +#: ../src/bookmarks/ephy-bookmarks-editor.c:118 msgid "Remove from this topic" -msgstr "" +msgstr "Levar d'aqueste subjècte" #. Toplevel -#: ../src/bookmarks/ephy-bookmarks-editor.c:151 +#: ../src/bookmarks/ephy-bookmarks-editor.c:148 msgid "_File" msgstr "_Fichièr" -#: ../src/bookmarks/ephy-bookmarks-editor.c:152 +#: ../src/bookmarks/ephy-bookmarks-editor.c:149 msgid "_Edit" msgstr "_Edicion" -#: ../src/bookmarks/ephy-bookmarks-editor.c:153 +#: ../src/bookmarks/ephy-bookmarks-editor.c:150 msgid "_View" msgstr "_Afichatge" #. Help. -#: ../src/bookmarks/ephy-bookmarks-editor.c:154 -#: ../src/resources/epiphany-application-menu.ui.h:7 ../src/ephy-window.c:186 +#: ../src/bookmarks/ephy-bookmarks-editor.c:151 +#: ../src/resources/epiphany-application-menu.ui.h:7 ../src/ephy-window.c:184 msgid "_Help" msgstr "_Ajuda" #. File Menu -#: ../src/bookmarks/ephy-bookmarks-editor.c:158 +#: ../src/bookmarks/ephy-bookmarks-editor.c:155 msgid "_New Topic" -msgstr "" +msgstr "_Novèl subjècte" -#: ../src/bookmarks/ephy-bookmarks-editor.c:159 +#: ../src/bookmarks/ephy-bookmarks-editor.c:156 msgid "Create a new topic" -msgstr "" +msgstr "Crear un novèl subjècte" -#: ../src/bookmarks/ephy-bookmarks-editor.c:161 -#: ../src/bookmarks/ephy-bookmarks-editor.c:1157 +#: ../src/bookmarks/ephy-bookmarks-editor.c:158 +#: ../src/bookmarks/ephy-bookmarks-editor.c:1084 msgid "Open in New _Window" msgid_plural "Open in New _Windows" msgstr[0] "Dobrir dins una fenèstra novèla" msgstr[1] "Dobrir dins de fenèstras novèlas" -#: ../src/bookmarks/ephy-bookmarks-editor.c:162 +#: ../src/bookmarks/ephy-bookmarks-editor.c:159 msgid "Open the selected bookmark in a new window" -msgstr "" +msgstr "Dobrís lo signet seleccionat dins una novèla fenèstra" -#: ../src/bookmarks/ephy-bookmarks-editor.c:164 -#: ../src/bookmarks/ephy-bookmarks-editor.c:1160 +#: ../src/bookmarks/ephy-bookmarks-editor.c:161 +#: ../src/bookmarks/ephy-bookmarks-editor.c:1087 msgid "Open in New _Tab" msgid_plural "Open in New _Tabs" msgstr[0] "Dobrir dins un _onglet novèl" msgstr[1] "Dobrir dins d'_onglets novèls" -#: ../src/bookmarks/ephy-bookmarks-editor.c:165 +#: ../src/bookmarks/ephy-bookmarks-editor.c:162 msgid "Open the selected bookmark in a new tab" -msgstr "" +msgstr "Dobrís lo signet seleccionat dins un novèl onglet" -#: ../src/bookmarks/ephy-bookmarks-editor.c:167 +#: ../src/bookmarks/ephy-bookmarks-editor.c:164 msgid "_Rename…" -msgstr "" +msgstr "_Renomenar…" -#: ../src/bookmarks/ephy-bookmarks-editor.c:168 +#: ../src/bookmarks/ephy-bookmarks-editor.c:165 msgid "Rename the selected bookmark or topic" -msgstr "" +msgstr "Renomena lo signet o lo subjècte seleccionat" -#: ../src/bookmarks/ephy-bookmarks-editor.c:169 +#: ../src/bookmarks/ephy-bookmarks-editor.c:166 msgid "_Properties" msgstr "_Proprietats" -#: ../src/bookmarks/ephy-bookmarks-editor.c:170 +#: ../src/bookmarks/ephy-bookmarks-editor.c:167 msgid "View or modify the properties of the selected bookmark" -msgstr "" +msgstr "Aficha o modifica las proprietats del signet seleccionat" -#: ../src/bookmarks/ephy-bookmarks-editor.c:172 +#: ../src/bookmarks/ephy-bookmarks-editor.c:169 msgid "_Import Bookmarks…" msgstr "_Importar de favorits..." -#: ../src/bookmarks/ephy-bookmarks-editor.c:173 +#: ../src/bookmarks/ephy-bookmarks-editor.c:170 msgid "Import bookmarks from another browser or a bookmarks file" msgstr "" +"Impòrta los signets d'un autre navigador o dempuèi un fichièr de signets" -#: ../src/bookmarks/ephy-bookmarks-editor.c:175 +#: ../src/bookmarks/ephy-bookmarks-editor.c:172 msgid "_Export Bookmarks…" -msgstr "" +msgstr "_Exportar de favorits..." -#: ../src/bookmarks/ephy-bookmarks-editor.c:176 +#: ../src/bookmarks/ephy-bookmarks-editor.c:173 msgid "Export bookmarks to a file" -msgstr "" +msgstr "Expòrta los signets dins un fichièr" -#: ../src/bookmarks/ephy-bookmarks-editor.c:178 ../src/ephy-window.c:108 +#: ../src/bookmarks/ephy-bookmarks-editor.c:175 ../src/ephy-window.c:104 msgid "_Close" msgstr "_Tampar" -#: ../src/bookmarks/ephy-bookmarks-editor.c:179 +#: ../src/bookmarks/ephy-bookmarks-editor.c:176 msgid "Close the bookmarks window" -msgstr "" +msgstr "Tampa la fenèstra dels signets" #. Edit Menu -#: ../src/bookmarks/ephy-bookmarks-editor.c:183 ../src/ephy-window.c:119 +#: ../src/bookmarks/ephy-bookmarks-editor.c:180 ../src/ephy-window.c:115 msgid "Cu_t" msgstr "_Talhar" -#: ../src/bookmarks/ephy-bookmarks-editor.c:184 +#: ../src/bookmarks/ephy-bookmarks-editor.c:181 msgid "Cut the selection" msgstr "Talhar la seleccion" -#: ../src/bookmarks/ephy-bookmarks-editor.c:186 -#: ../src/bookmarks/ephy-bookmarks-editor.c:1170 ../src/ephy-window.c:121 +#: ../src/bookmarks/ephy-bookmarks-editor.c:183 +#: ../src/bookmarks/ephy-bookmarks-editor.c:1094 ../src/ephy-window.c:117 msgid "_Copy" msgstr "_Copiar" -# Vérifier le contexte -#: ../src/bookmarks/ephy-bookmarks-editor.c:187 +# Verificar lo contexte +# Verificar lo contexte +#: ../src/bookmarks/ephy-bookmarks-editor.c:184 msgid "Copy the selection" msgstr "Copiar la seleccion" -#: ../src/bookmarks/ephy-bookmarks-editor.c:189 ../src/ephy-window.c:123 +#: ../src/bookmarks/ephy-bookmarks-editor.c:186 ../src/ephy-window.c:119 msgid "_Paste" msgstr "_Pegar" -#: ../src/bookmarks/ephy-bookmarks-editor.c:190 +#: ../src/bookmarks/ephy-bookmarks-editor.c:187 msgid "Paste the clipboard" -msgstr "" +msgstr "Pega lo contengut del quichapapièrs" -#: ../src/bookmarks/ephy-bookmarks-editor.c:192 +#: ../src/bookmarks/ephy-bookmarks-editor.c:189 #: ../src/resources/history-dialog.ui.h:4 msgid "_Delete" msgstr "_Suprimir" -#: ../src/bookmarks/ephy-bookmarks-editor.c:193 +#: ../src/bookmarks/ephy-bookmarks-editor.c:190 msgid "Delete the selected bookmark or topic" -msgstr "" +msgstr "Suprimís lo signet o lo subjècte seleccionat" -#: ../src/bookmarks/ephy-bookmarks-editor.c:195 ../src/ephy-window.c:127 +#: ../src/bookmarks/ephy-bookmarks-editor.c:192 ../src/ephy-window.c:123 msgid "Select _All" msgstr "Seleccionar un fichièr" -#: ../src/bookmarks/ephy-bookmarks-editor.c:196 +#: ../src/bookmarks/ephy-bookmarks-editor.c:193 msgid "Select all bookmarks or text" -msgstr "" +msgstr "Selecciona totes los signets o lo tèxte" #. Help Menu -#: ../src/bookmarks/ephy-bookmarks-editor.c:200 +#: ../src/bookmarks/ephy-bookmarks-editor.c:197 msgid "_Contents" msgstr "_Ensenhador" -#: ../src/bookmarks/ephy-bookmarks-editor.c:201 +#: ../src/bookmarks/ephy-bookmarks-editor.c:198 msgid "Display bookmarks help" -msgstr "" +msgstr "Aficha l'ajuda dels signets" -#: ../src/bookmarks/ephy-bookmarks-editor.c:203 -#: ../src/resources/epiphany-application-menu.ui.h:8 ../src/ephy-window.c:188 +#: ../src/bookmarks/ephy-bookmarks-editor.c:200 +#: ../src/resources/epiphany-application-menu.ui.h:8 ../src/ephy-window.c:186 msgid "_About" msgstr "_A prepaus" -#: ../src/bookmarks/ephy-bookmarks-editor.c:204 +#: ../src/bookmarks/ephy-bookmarks-editor.c:201 msgid "Display credits for the web browser creators" -msgstr "" +msgstr "Aficha los noms dels creators del navigador Web" #. View Menu -#: ../src/bookmarks/ephy-bookmarks-editor.c:210 +#: ../src/bookmarks/ephy-bookmarks-editor.c:207 msgid "_Title" msgstr "_Títol" -#: ../src/bookmarks/ephy-bookmarks-editor.c:211 +#: ../src/bookmarks/ephy-bookmarks-editor.c:208 msgid "Show the title column" -msgstr "" +msgstr "Aficha la colomna del títol" -#: ../src/bookmarks/ephy-bookmarks-editor.c:212 -#: ../src/bookmarks/ephy-bookmarks-editor.c:1645 +#: ../src/bookmarks/ephy-bookmarks-editor.c:209 +#: ../src/bookmarks/ephy-bookmarks-editor.c:1559 msgid "Address" msgstr "Adreça" -#: ../src/bookmarks/ephy-bookmarks-editor.c:213 +#: ../src/bookmarks/ephy-bookmarks-editor.c:210 msgid "Show the address column" -msgstr "" +msgstr "Aficha la colomna de l'adreça" -#: ../src/bookmarks/ephy-bookmarks-editor.c:255 +#: ../src/bookmarks/ephy-bookmarks-editor.c:252 msgid "Type a topic" -msgstr "" +msgstr "Sasissètz un subjècte" -#: ../src/bookmarks/ephy-bookmarks-editor.c:377 +#: ../src/bookmarks/ephy-bookmarks-editor.c:365 #, c-format msgid "Delete topic “%s”?" -msgstr "" +msgstr "Suprimir lo subjècte « %s » ?" -#: ../src/bookmarks/ephy-bookmarks-editor.c:380 +#: ../src/bookmarks/ephy-bookmarks-editor.c:368 msgid "Delete this topic?" -msgstr "" +msgstr "Supression del subjècte" -#: ../src/bookmarks/ephy-bookmarks-editor.c:382 +#: ../src/bookmarks/ephy-bookmarks-editor.c:370 msgid "" "Deleting this topic will cause all its bookmarks to become uncategorized, " "unless they also belong to other topics. The bookmarks will not be deleted." msgstr "" +"La supression d'aqueste subjècte aura per efièit de déclasser totes ses " +"signets, a mens qu'apartenon tanben a d'autres subjèctes. Los signets seràn " +"pas escafats." -#: ../src/bookmarks/ephy-bookmarks-editor.c:385 +#: ../src/bookmarks/ephy-bookmarks-editor.c:373 msgid "_Delete Topic" -msgstr "" +msgstr "_Suprimir lo subjècte" #. FIXME: proper i18n after freeze -#: ../src/bookmarks/ephy-bookmarks-editor.c:495 -#: ../src/bookmarks/ephy-bookmarks-editor.c:499 +#: ../src/bookmarks/ephy-bookmarks-editor.c:471 +#: ../src/bookmarks/ephy-bookmarks-editor.c:473 msgid "Firefox" msgstr "Firefox" -#: ../src/bookmarks/ephy-bookmarks-editor.c:504 -#: ../src/bookmarks/ephy-bookmarks-editor.c:508 +#: ../src/bookmarks/ephy-bookmarks-editor.c:476 +#: ../src/bookmarks/ephy-bookmarks-editor.c:478 msgid "Firebird" msgstr "Firebird" #. Translators: The %s is the name of a Mozilla profile. -#: ../src/bookmarks/ephy-bookmarks-editor.c:513 +#: ../src/bookmarks/ephy-bookmarks-editor.c:481 #, c-format msgid "Mozilla “%s” profile" -msgstr "" +msgstr "Perfil Mozilla « %s »" -#: ../src/bookmarks/ephy-bookmarks-editor.c:517 +#: ../src/bookmarks/ephy-bookmarks-editor.c:483 msgid "Galeon" msgstr "Galeon" -#: ../src/bookmarks/ephy-bookmarks-editor.c:521 +#: ../src/bookmarks/ephy-bookmarks-editor.c:485 msgid "Konqueror" msgstr "Konqueror" -#: ../src/bookmarks/ephy-bookmarks-editor.c:550 +#: ../src/bookmarks/ephy-bookmarks-editor.c:512 msgid "Import failed" msgstr "L'importacion a pas capitat" -#: ../src/bookmarks/ephy-bookmarks-editor.c:552 +#: ../src/bookmarks/ephy-bookmarks-editor.c:514 msgid "Import Failed" msgstr "L'importacion a pas capitat" -#: ../src/bookmarks/ephy-bookmarks-editor.c:555 +#: ../src/bookmarks/ephy-bookmarks-editor.c:517 #, c-format msgid "" "The bookmarks from “%s” could not be imported because the file is corrupted " "or of an unsupported type." msgstr "" +"Los signets de « %s » ne pourront pas èsser importés perque lo fichièr es " +"corrompu o d'un tipe non pris en charge." -#: ../src/bookmarks/ephy-bookmarks-editor.c:618 +#: ../src/bookmarks/ephy-bookmarks-editor.c:576 msgid "Import Bookmarks from File" -msgstr "" +msgstr "Importer los signets a partir d'un fichièr" -#: ../src/bookmarks/ephy-bookmarks-editor.c:625 +#: ../src/bookmarks/ephy-bookmarks-editor.c:583 msgid "Firefox/Mozilla bookmarks" -msgstr "" +msgstr "Signets de Firefox/Mozilla" -#: ../src/bookmarks/ephy-bookmarks-editor.c:629 +#: ../src/bookmarks/ephy-bookmarks-editor.c:587 msgid "Galeon/Konqueror bookmarks" -msgstr "" +msgstr "Signets de Galeon/Konqueror" -#: ../src/bookmarks/ephy-bookmarks-editor.c:633 -#| msgid "Web Bookmarks" +#: ../src/bookmarks/ephy-bookmarks-editor.c:591 msgid "Web bookmarks" msgstr "Favorits web" -#: ../src/bookmarks/ephy-bookmarks-editor.c:758 +#: ../src/bookmarks/ephy-bookmarks-editor.c:705 msgid "Export Bookmarks" -msgstr "" +msgstr "Exportar los signets" -#: ../src/bookmarks/ephy-bookmarks-editor.c:765 -#: ../src/bookmarks/ephy-bookmarks-editor.c:1508 -#: ../src/bookmarks/ephy-topic-action.c:218 +#: ../src/bookmarks/ephy-bookmarks-editor.c:712 +#: ../src/bookmarks/ephy-bookmarks-editor.c:1422 +#: ../src/bookmarks/ephy-topic-action.c:207 msgid "Bookmarks" msgstr "Favorits" #. Make a format selection combo & label -#: ../src/bookmarks/ephy-bookmarks-editor.c:771 +#: ../src/bookmarks/ephy-bookmarks-editor.c:718 msgid "File f_ormat:" -msgstr "" +msgstr "Format de _fichièr :" -#: ../src/bookmarks/ephy-bookmarks-editor.c:817 +#: ../src/bookmarks/ephy-bookmarks-editor.c:763 msgid "Import Bookmarks" msgstr "Importar de favorits" -#: ../src/bookmarks/ephy-bookmarks-editor.c:822 +#: ../src/bookmarks/ephy-bookmarks-editor.c:768 msgid "I_mport" msgstr "I_mportar" -#: ../src/bookmarks/ephy-bookmarks-editor.c:838 +#: ../src/bookmarks/ephy-bookmarks-editor.c:784 msgid "Import bookmarks from:" msgstr "Importar de favorits de :" -#: ../src/bookmarks/ephy-bookmarks-editor.c:858 +#: ../src/bookmarks/ephy-bookmarks-editor.c:804 msgid "File" msgstr "Fichièr" -#: ../src/bookmarks/ephy-bookmarks-editor.c:1166 +#: ../src/bookmarks/ephy-bookmarks-editor.c:1092 msgid "_Copy Address" msgstr "_Copiar l'adreça" -#: ../src/bookmarks/ephy-bookmarks-editor.c:1564 +#: ../src/bookmarks/ephy-bookmarks-editor.c:1478 #: ../src/resources/bookmark-properties.ui.h:5 msgid "Topics" msgstr "Tèmas" -#: ../src/bookmarks/ephy-bookmarks-editor.c:1634 +#: ../src/bookmarks/ephy-bookmarks-editor.c:1548 msgid "Title" msgstr "Títol" #. FIXME !!!! -#: ../src/bookmarks/ephy-open-tabs-action.c:72 +#: ../src/bookmarks/ephy-open-tabs-action.c:71 msgid "Open in New _Tabs" -msgstr "" +msgstr "Dobrir dins de novèls ongle_ts" -#: ../src/bookmarks/ephy-open-tabs-action.c:73 +#: ../src/bookmarks/ephy-open-tabs-action.c:72 msgid "Open the bookmarks in this topic in new tabs" -msgstr "" +msgstr "Dobrís los signets d'aqueste subjècte dins de novèls onglets" -#: ../src/bookmarks/ephy-topics-entry.c:324 +#: ../src/bookmarks/ephy-topics-entry.c:305 #, c-format msgid "Create topic “%s”" -msgstr "" +msgstr "Crear lo subjècte « %s »" #: ../src/resources/bookmark-properties.ui.h:1 msgid "_Title:" @@ -1943,153 +2041,145 @@ #: ../src/resources/bookmark-properties.ui.h:3 msgid "T_opics:" -msgstr "" +msgstr "_Subjèctes :" #: ../src/resources/bookmark-properties.ui.h:4 msgid "Sho_w all topics" -msgstr "" +msgstr "A_fichar totes los subjèctes" #: ../src/resources/clear-data-dialog.ui.h:1 -#| msgid "Personal Data" msgid "Clear Personal Data" -msgstr "" +msgstr "Escafar las donadas personalas" #: ../src/resources/clear-data-dialog.ui.h:2 -#| msgid "Clear" msgid "C_lear" msgstr "Nete_jar" #: ../src/resources/clear-data-dialog.ui.h:4 msgid "Select the personal data you wish to clear" -msgstr "" +msgstr "Seleccionatz las donadas personalas que volètz escafar" #: ../src/resources/clear-data-dialog.ui.h:5 msgid "" "You are about to clear personal data that is stored about the web pages you " "have visited. Check the types of information that you want to remove:" msgstr "" +"Sètz a mand d'escafar de donadas personalas relativas a las paginas Web " +"qu'avètz visitadas. Verificatz lo tipe d'informacions que volètz suprimir :" #: ../src/resources/clear-data-dialog.ui.h:6 msgid "Coo_kies" -msgstr "" +msgstr "Coo_kies" #: ../src/resources/clear-data-dialog.ui.h:7 msgid "Cache and _temporary files" -msgstr "" +msgstr "Cache e fichièrs _temporaires" #: ../src/resources/clear-data-dialog.ui.h:8 msgid "Browsing _history" -msgstr "" +msgstr "Percórrer l'_istoric" #: ../src/resources/clear-data-dialog.ui.h:9 msgid "Saved _passwords" -msgstr "" +msgstr "Sen_hals enregistrats" #: ../src/resources/clear-data-dialog.ui.h:10 msgid "" "You cannot undo this action. The data you are choosing to clear will be " "removed forever." msgstr "" +"Poiretz pas anullar aquesta action. Las donadas que causissètz d'escafar lo " +"seràn definitivament." #: ../src/resources/cookies-dialog.ui.h:1 ../src/resources/prefs-dialog.ui.h:23 msgid "Cookies" -msgstr "" +msgstr "Cookies" #: ../src/resources/cookies-dialog.ui.h:2 #: ../src/resources/history-dialog.ui.h:6 #: ../src/resources/passwords-dialog.ui.h:2 -#| msgid "Clear" msgid "C_lear All" msgstr "Netejar _tot" #: ../src/resources/cookies-dialog.ui.h:3 #: ../src/resources/passwords-dialog.ui.h:3 #: ../src/resources/prefs-dialog.ui.h:5 -#| msgid "_Search:" msgid "Search" msgstr "Recercar" #: ../src/resources/cookies-dialog.ui.h:4 msgid "Filter cookies" -msgstr "" +msgstr "Filtrar los cookies" #: ../src/resources/cookies-dialog.ui.h:5 msgid "Search cookies" -msgstr "" +msgstr "Recercar los cookies" #: ../src/resources/cookies-dialog.ui.h:6 #: ../src/resources/passwords-dialog.ui.h:6 msgid "Site" -msgstr "" +msgstr "Site" #: ../src/resources/cookies-dialog.ui.h:7 msgid "Delete the selected cookies" -msgstr "" - -#: ../src/resources/cookies-dialog.ui.h:8 -msgid "Remove" -msgstr "" +msgstr "Suprimir los cookies seleccionats" #: ../src/resources/encoding-dialog.ui.h:1 msgid "Text Encoding" -msgstr "" +msgstr "Encodatge del tèxte" #: ../src/resources/encoding-dialog.ui.h:2 msgid "Use the encoding specified by the document" -msgstr "" +msgstr "Utilizar l'encodatge indicat pel document" #: ../src/resources/encoding-dialog.ui.h:3 msgid "<b>Recent encodings</b>" -msgstr "" +msgstr "<b>Encodatges recents</b>" #: ../src/resources/encoding-dialog.ui.h:4 msgid "<b>Related encodings</b>" -msgstr "" +msgstr "<b>Encodatges aparentats</b>" #: ../src/resources/encoding-dialog.ui.h:5 msgid "Show all…" -msgstr "" +msgstr "Afichar tot…" #. File actions. -#: ../src/resources/epiphany-application-menu.ui.h:1 ../src/ephy-window.c:94 +#: ../src/resources/epiphany-application-menu.ui.h:1 ../src/ephy-window.c:90 msgid "_New Window" msgstr "Fenèstra _novèla" -#: ../src/resources/epiphany-application-menu.ui.h:2 ../src/ephy-window.c:96 -#| msgid "_New Window" +#: ../src/resources/epiphany-application-menu.ui.h:2 ../src/ephy-window.c:92 msgid "New _Incognito Window" -msgstr "" +msgstr "Fenèstra Incognito _novèla" #: ../src/resources/epiphany-application-menu.ui.h:3 msgid "Reopen Closed _Tab" -msgstr "" +msgstr "Tornar dobrir l'ongle_t tampat" #. Toplevel -#: ../src/resources/epiphany-application-menu.ui.h:4 ../src/ephy-window.c:87 +#: ../src/resources/epiphany-application-menu.ui.h:4 ../src/ephy-window.c:83 msgid "_Bookmarks" msgstr "_Favorits" -#: ../src/resources/epiphany-application-menu.ui.h:5 ../src/ephy-window.c:137 +#: ../src/resources/epiphany-application-menu.ui.h:5 ../src/ephy-window.c:133 msgid "_History" msgstr "_Istoric" -#: ../src/resources/epiphany-application-menu.ui.h:6 ../src/ephy-window.c:139 -#| msgid "Preferences" +#: ../src/resources/epiphany-application-menu.ui.h:6 ../src/ephy-window.c:135 msgid "Pr_eferences" msgstr "Pr_eferéncias" -#: ../src/resources/epiphany-application-menu.ui.h:9 ../src/ephy-window.c:110 +#: ../src/resources/epiphany-application-menu.ui.h:9 ../src/ephy-window.c:106 msgid "_Quit" -msgstr "" +msgstr "_Quitar" -# Vérifier le contexte +# Verificar lo contexte #: ../src/resources/history-dialog.ui.h:2 -#| msgid "Copy the selection" msgid "_Copy Location" -msgstr "" +msgstr "_Copiar l'emplaçament" #: ../src/resources/history-dialog.ui.h:3 -#| msgid "Add _Bookmark…" msgid "Add _Bookmark" msgstr "Apondre un _favorit" @@ -2098,7 +2188,6 @@ msgstr "Istoric" #: ../src/resources/history-dialog.ui.h:7 -#| msgid "Clear History" msgid "Search history" msgstr "Recercar l'istoric" @@ -2112,28 +2201,26 @@ #: ../src/resources/history-dialog.ui.h:10 msgid "Location" -msgstr "" +msgstr "Emplaçament" #: ../src/resources/history-dialog.ui.h:11 msgid "Remove the selected pages from history" -msgstr "" +msgstr "Suprimir las paginas seleccionadas dins l'istoric" #: ../src/resources/history-dialog.ui.h:12 msgid "Open the selected pages in new tabs" -msgstr "" +msgstr "Dobrir las paginas seleccionadas dins d'onglets novèls" #: ../src/resources/passwords-dialog.ui.h:1 #: ../src/resources/prefs-dialog.ui.h:32 msgid "Passwords" -msgstr "" +msgstr "Senhals" #: ../src/resources/passwords-dialog.ui.h:4 -#| msgid "User Password" msgid "Filter passwords" msgstr "Filtrar los senhals" #: ../src/resources/passwords-dialog.ui.h:5 -#| msgid "User Password" msgid "Search passwords" msgstr "Recèrca de senhals" @@ -2142,25 +2229,22 @@ msgstr "Nom d'utilizaire" #: ../src/resources/passwords-dialog.ui.h:8 -#| msgid "_Password:" msgid "Password" msgstr "Senhal" #: ../src/resources/passwords-dialog.ui.h:9 msgid "Forget the selected passwords" -msgstr "" +msgstr "Doblidar los senhals seleccionats" #: ../src/resources/passwords-dialog.ui.h:10 msgid "Reveal all the passwords" -msgstr "" +msgstr "Revelar totes los senhals" #: ../src/resources/passwords-dialog.ui.h:11 -#| msgid "_Password:" msgid "_Copy Password" msgstr "_Copiar lo senhal" #: ../src/resources/passwords-dialog.ui.h:12 -#| msgid "_Username:" msgid "C_opy Username" msgstr "C_opiar lo nom d'utilizaire" @@ -2170,40 +2254,39 @@ #: ../src/resources/prefs-dialog.ui.h:3 msgid "_Download folder:" -msgstr "" +msgstr "Dorsièr dels _telecargaments :" #: ../src/resources/prefs-dialog.ui.h:4 msgid "A_utomatically open downloaded files" -msgstr "" +msgstr "Dobrir a_utomaticament totes los fichièrs telecargats" #: ../src/resources/prefs-dialog.ui.h:6 msgid "_Engine:" -msgstr "" +msgstr "_Moteur :" #: ../src/resources/prefs-dialog.ui.h:7 msgid "Session" -msgstr "" +msgstr "Session" #: ../src/resources/prefs-dialog.ui.h:8 msgid "_Remember previous tabs on startup" -msgstr "" +msgstr "Se _remembrar dels onglets dobèrts a l'aviada" #: ../src/resources/prefs-dialog.ui.h:9 -#| msgid "_Contents" msgid "Web Content" -msgstr "" +msgstr "Contengut del site" #: ../src/resources/prefs-dialog.ui.h:10 msgid "Allow popup _windows" -msgstr "" +msgstr "Autorizar las fenèstras _popup" #: ../src/resources/prefs-dialog.ui.h:11 msgid "Allow _advertisements" -msgstr "" +msgstr "_Autorizar las publicitats" #: ../src/resources/prefs-dialog.ui.h:12 msgid "Enable _plugins" -msgstr "" +msgstr "Activar les _empeutons" #: ../src/resources/prefs-dialog.ui.h:13 msgid "General" @@ -2215,113 +2298,112 @@ #: ../src/resources/prefs-dialog.ui.h:15 msgid "_Use system fonts" -msgstr "" +msgstr "_Utilizar las poliças sistèma" #: ../src/resources/prefs-dialog.ui.h:16 msgid "Sans serif font:" -msgstr "" +msgstr "Poliça sans serif :" #: ../src/resources/prefs-dialog.ui.h:17 msgid "Serif font:" -msgstr "" +msgstr "Poliça serif :" #: ../src/resources/prefs-dialog.ui.h:18 msgid "Monospace font:" -msgstr "" +msgstr "Poliça a largor fixa :" #: ../src/resources/prefs-dialog.ui.h:19 msgid "Style" -msgstr "" +msgstr "Estil" #: ../src/resources/prefs-dialog.ui.h:20 msgid "Use custom _stylesheet" -msgstr "" +msgstr "Utilizar un fuèlh d'e_stil personalizada" #: ../src/resources/prefs-dialog.ui.h:21 msgid "_Edit Stylesheet…" -msgstr "" +msgstr "Mo_dificar lo fuèlh d'estil…" #: ../src/resources/prefs-dialog.ui.h:22 msgid "Fonts & Style" -msgstr "" +msgstr "Poliças e estils" #: ../src/resources/prefs-dialog.ui.h:24 msgid "Manage _Cookies…" -msgstr "" +msgstr "Gestion dels _Cookies..." #: ../src/resources/prefs-dialog.ui.h:25 msgid "_Always accept" -msgstr "" +msgstr "_Totjorn los acceptar" #: ../src/resources/prefs-dialog.ui.h:26 msgid "Only _from sites you visit" -msgstr "" +msgstr "_Unicament los dels sites que visitatz" #. Refers to "Only from sites you visit" option under Cookies. #: ../src/resources/prefs-dialog.ui.h:28 msgid "For example, not from advertisers on these sites" msgstr "" +"Per exemple, pas los de las publicitats sus aquestes sites" #: ../src/resources/prefs-dialog.ui.h:29 msgid "_Never accept" -msgstr "" +msgstr "Los acceptar pas _jamai" #: ../src/resources/prefs-dialog.ui.h:30 msgid "Tracking" -msgstr "" +msgstr "Pistatge" +# J'ai utilizat la même traduction que per Firefox. Les utilizaires comprendront alara qu'il s'agit de la même foncionalitat. #: ../src/resources/prefs-dialog.ui.h:31 msgid "_Tell websites I do not want to be tracked" -msgstr "" +msgstr "_Indicar als sites que vòli pas èsser pistat" #: ../src/resources/prefs-dialog.ui.h:33 -#| msgid "User Password" msgid "Manage _Passwords…" msgstr "Gestion dels senhals..." #: ../src/resources/prefs-dialog.ui.h:34 msgid "_Remember passwords" -msgstr "" +msgstr "_Se remembrar dels senhals" #: ../src/resources/prefs-dialog.ui.h:35 msgid "Stored Data" -msgstr "" +msgstr "Donadas enregistradas" #: ../src/resources/prefs-dialog.ui.h:36 msgid "You can clear stored personal data." -msgstr "" +msgstr "Podètz suprimir las donadas que vos concernisson." #: ../src/resources/prefs-dialog.ui.h:37 -#| msgid "Personal Data" msgid "Cl_ear Personal Data…" msgstr "_Escafar las donadas personalas..." #: ../src/resources/prefs-dialog.ui.h:38 msgid "Privacy" -msgstr "" +msgstr "Vida privada" #: ../src/resources/prefs-dialog.ui.h:41 msgid "_Remove" -msgstr "" +msgstr "_Suprimir" #: ../src/resources/prefs-dialog.ui.h:42 msgid "_Up" msgstr "_Amont" #: ../src/resources/prefs-dialog.ui.h:43 -#| msgid "_Download" msgid "_Down" msgstr "A_val" #: ../src/resources/prefs-dialog.ui.h:44 msgid "Spell checking" -msgstr "" +msgstr "Verificacion ortografica" #: ../src/resources/prefs-dialog.ui.h:45 msgid "_Enable spell checking" -msgstr "" +msgstr "_Activar la verificacion ortografica" -#: ../src/resources/prefs-dialog.ui.h:46 ../src/prefs-dialog.c:762 +#: ../src/resources/prefs-dialog.ui.h:46 ../src/prefs-dialog.c:730 msgid "Language" msgstr "Lenga" @@ -2333,44 +2415,45 @@ msgid "Choose a l_anguage:" msgstr "Causissètz una l_enga :" -#: ../src/ephy-combined-stop-reload-action.c:39 -#| msgid "_Stop" +#: ../src/ephy-combined-stop-reload-action.c:38 msgid "Stop" msgstr "Arrestar" -#: ../src/ephy-combined-stop-reload-action.c:40 +#: ../src/ephy-combined-stop-reload-action.c:39 msgid "Stop current data transfer" -msgstr "" +msgstr "Arrèsta lo transferiment de donadas en cors" -#: ../src/ephy-combined-stop-reload-action.c:42 ../src/ephy-window.c:148 +#: ../src/ephy-combined-stop-reload-action.c:41 ../src/ephy-window.c:144 msgid "_Reload" msgstr "_Recargar" -#: ../src/ephy-combined-stop-reload-action.c:43 +#: ../src/ephy-combined-stop-reload-action.c:42 msgid "Display the latest content of the current page" -msgstr "" +msgstr "Aficha lo contengut lo mai recent per la pagina en cors" -#: ../src/ephy-history-window.c:251 +#: ../src/ephy-history-window.c:242 msgid "Clear browsing history?" -msgstr "" +msgstr "Escafar l'istoric de navigacion ?" -#: ../src/ephy-history-window.c:255 +#: ../src/ephy-history-window.c:246 msgid "" "Clearing the browsing history will cause all history links to be permanently " "deleted." msgstr "" +"Escafar l'istoric de navigacion a per efièit de suprimir definitivament " +"totes los ligams d'istoric." #: ../src/ephy-main.c:74 msgid "Open a new tab in an existing browser window" -msgstr "" +msgstr "Dobrís un novèl onglet dins una fenèstra existenta" #: ../src/ephy-main.c:76 msgid "Open a new browser window" -msgstr "" +msgstr "Dobrís una novèla fenèstra" #: ../src/ephy-main.c:78 msgid "Import bookmarks from the given file" -msgstr "" +msgstr "Impòrta los signets dempuèi lo fichièr donat" #: ../src/ephy-main.c:78 ../src/ephy-main.c:80 msgid "FILE" @@ -2378,7 +2461,7 @@ #: ../src/ephy-main.c:80 msgid "Load the given session file" -msgstr "" +msgstr "Carga lo fichièr de session indicat" #: ../src/ephy-main.c:82 msgid "Add a bookmark" @@ -2390,36 +2473,35 @@ #: ../src/ephy-main.c:84 msgid "Start a private instance" -msgstr "" +msgstr "Avia una instància privada" #: ../src/ephy-main.c:86 msgid "Start an instance in incognito mode" -msgstr "" +msgstr "Aviar una instància en mòde incognito" #: ../src/ephy-main.c:88 msgid "Start an instance in netbank mode" -msgstr "" +msgstr "Avia una instància en mòde « banca en linha »" #: ../src/ephy-main.c:90 msgid "Start the browser in application mode" -msgstr "" +msgstr "Aviar lo navigador en mòde aplicacion" #: ../src/ephy-main.c:92 msgid "Profile directory to use in the private instance" -msgstr "" +msgstr "Dorsièr del perfil a utilizar dins l'instància privada" #: ../src/ephy-main.c:92 msgid "DIR" -msgstr "" +msgstr "REP" #: ../src/ephy-main.c:94 msgid "URL …" msgstr "URL…" #: ../src/ephy-main.c:199 -#| msgid "Could not display help: %s" msgid "Could not start Web" -msgstr "" +msgstr "Impossible d'aviar Web" #: ../src/ephy-main.c:202 #, c-format @@ -2427,332 +2509,313 @@ "Startup failed because of the following error:\n" "%s" msgstr "" +"L'aviada a fracassat en seguida de l'error seguenta :\n" +"%s" #: ../src/ephy-main.c:312 -#| msgid "Options" msgid "Web options" msgstr "Opcions web" -#: ../src/ephy-notebook.c:627 +#: ../src/ephy-notebook.c:660 msgid "Close tab" msgstr "Tampar l'onglet" -#: ../src/ephy-search-provider.c:198 +#: ../src/ephy-search-provider.c:195 #, c-format msgid "Search the Web for %s" -msgstr "" +msgstr "Recercar %s sul Web" -#: ../src/ephy-window.c:98 +#: ../src/ephy-window.c:94 msgid "_Open…" msgstr "_Dobrir..." -#: ../src/ephy-window.c:100 +#: ../src/ephy-window.c:96 msgid "Save _As…" msgstr "Enregistrar _jos..." -#: ../src/ephy-window.c:102 +#: ../src/ephy-window.c:98 msgid "Save As _Web Application…" -msgstr "" +msgstr "Enregistrar en tant qu'aplicacion _Web…" -#: ../src/ephy-window.c:104 +#: ../src/ephy-window.c:100 msgid "_Print…" msgstr "_Imprimir..." -#: ../src/ephy-window.c:106 +#: ../src/ephy-window.c:102 msgid "S_end Link by Email…" -msgstr "" +msgstr "_Mandar lo ligam per corrièr electronic…" -#: ../src/ephy-window.c:117 +#: ../src/ephy-window.c:113 msgid "Re_do" -msgstr "" +msgstr "Re_far" -#: ../src/ephy-window.c:129 +#: ../src/ephy-window.c:125 msgid "_Find…" msgstr "_Recercar..." -#: ../src/ephy-window.c:131 +#: ../src/ephy-window.c:127 msgid "Find Ne_xt" msgstr "Recercar lo seguent" -#: ../src/ephy-window.c:133 +#: ../src/ephy-window.c:129 msgid "Find Pre_vious" msgstr "Recercar lo _precedent" -#: ../src/ephy-window.c:135 -#| msgid "_Edit Bookmarks" +#: ../src/ephy-window.c:131 msgid "Edit _Bookmarks" msgstr "_Editar los favorits" #. View actions. -#: ../src/ephy-window.c:144 ../src/ephy-window.c:146 +#: ../src/ephy-window.c:140 ../src/ephy-window.c:142 msgid "_Stop" msgstr "_Arrestar" -#: ../src/ephy-window.c:150 -#| msgid "Zoom" +#: ../src/ephy-window.c:146 msgid "Zoom _In" msgstr "Zoom a_vant" -#: ../src/ephy-window.c:152 -#| msgid "Zoom" +#: ../src/ephy-window.c:148 msgid "Zoom O_ut" msgstr "_Zoom arrièr" -#: ../src/ephy-window.c:154 +#: ../src/ephy-window.c:150 msgid "_Normal Size" msgstr "Talha _normala" -#: ../src/ephy-window.c:156 +#: ../src/ephy-window.c:152 msgid "Text _Encoding" -msgstr "" +msgstr "_Encodatge del tèxte" -#: ../src/ephy-window.c:158 +#: ../src/ephy-window.c:154 msgid "_Page Source" -msgstr "" +msgstr "Font de la _pagina" #. Bookmarks actions. -#: ../src/ephy-window.c:163 +#: ../src/ephy-window.c:159 msgid "_Add Bookmark…" msgstr "_Apondre un favorit..." #. Go actions. -#: ../src/ephy-window.c:168 +#: ../src/ephy-window.c:164 msgid "_Location…" -msgstr "" +msgstr "_Emplaçament…" #. Tabs actions. -#: ../src/ephy-window.c:173 +#: ../src/ephy-window.c:169 msgid "_Previous Tab" msgstr "Onglet _precedent" -#: ../src/ephy-window.c:175 +#: ../src/ephy-window.c:171 msgid "_Next Tab" msgstr "Onglet _seguent" -#: ../src/ephy-window.c:177 +#: ../src/ephy-window.c:173 msgid "Move Tab _Left" -msgstr "" +msgstr "Desplaçar l'onglet cap a _esquèrra" -#: ../src/ephy-window.c:179 +#: ../src/ephy-window.c:175 msgid "Move Tab _Right" -msgstr "" +msgstr "Desplaçar l'onglet cap a _dreita" -# -#: ../src/ephy-window.c:181 +#: ../src/ephy-window.c:177 +msgid "Du_plicate" +msgstr "Du_plicar" + +#: ../src/ephy-window.c:179 msgid "_Detach Tab" -msgstr "" +msgstr "_Destacar l'onglet" #. View actions. -#: ../src/ephy-window.c:196 +#: ../src/ephy-window.c:194 msgid "_Fullscreen" msgstr "Ecran _complet" -#: ../src/ephy-window.c:198 +#: ../src/ephy-window.c:196 msgid "Popup _Windows" -msgstr "" +msgstr "Fenèstras _popups" -#: ../src/ephy-window.c:200 +#: ../src/ephy-window.c:198 msgid "Selection Caret" -msgstr "" +msgstr "Cursor de seleccion" #. Document. -#: ../src/ephy-window.c:207 +#: ../src/ephy-window.c:205 msgid "Add Boo_kmark…" -msgstr "" +msgstr "_Apondre un signet…" #. Links. -#: ../src/ephy-window.c:212 +#: ../src/ephy-window.c:210 msgid "Open Link in New _Window" msgstr "Dobrir lo ligam dins una _fenèstra novèla" -#: ../src/ephy-window.c:214 +#: ../src/ephy-window.c:212 msgid "Open Link in New _Tab" msgstr "Dobrir lo ligam dins un _onglet novèl" -#: ../src/ephy-window.c:216 -#| msgid "Open Link in New _Window" +#: ../src/ephy-window.c:214 msgid "Open Link in I_ncognito Window" -msgstr "" +msgstr "Dobrir lo ligam dins una fenèstra I_ncognito" -#: ../src/ephy-window.c:218 +#: ../src/ephy-window.c:216 msgid "_Save Link As…" msgstr "_Enregistrar lo ligam jos..." -#: ../src/ephy-window.c:220 +#: ../src/ephy-window.c:218 msgid "_Copy Link Address" msgstr "_Copiar l'adreça del ligam" -#: ../src/ephy-window.c:222 -#| msgid "_Copy Email Address" +#: ../src/ephy-window.c:220 msgid "_Copy E-mail Address" msgstr "_Copiar l'adreça electronica" #. Images. -#: ../src/ephy-window.c:227 -#| msgid "Open in New _Tab" -#| msgid_plural "Open in New _Tabs" +#: ../src/ephy-window.c:225 msgid "View _Image in New Tab" -msgstr "" +msgstr "Dobrir l'_Imatge dins un onglet novèl" -#: ../src/ephy-window.c:229 +#: ../src/ephy-window.c:227 msgid "Copy I_mage Address" msgstr "Copiar l'adreça de l'i_matge" -#: ../src/ephy-window.c:231 +#: ../src/ephy-window.c:229 msgid "_Save Image As…" msgstr "_Enregistrar l'imatge jos..." -#: ../src/ephy-window.c:233 +#: ../src/ephy-window.c:231 msgid "Set as _Wallpaper" -msgstr "" +msgstr "Definir coma p_apièr pintrat" #. Video. -#: ../src/ephy-window.c:238 -#| msgid "Open in New _Window" -#| msgid_plural "Open in New _Windows" +#: ../src/ephy-window.c:236 msgid "Open Video in New _Window" msgstr "Dobrir la vidèo dins una fenèstra novèla" -#: ../src/ephy-window.c:240 -#| msgid "Open in New _Tab" -#| msgid_plural "Open in New _Tabs" +#: ../src/ephy-window.c:238 msgid "Open Video in New _Tab" msgstr "Dobrir la vidèo dins un _onglet novèl" -#: ../src/ephy-window.c:242 -#| msgid "_Save Link As…" +#: ../src/ephy-window.c:240 msgid "_Save Video As…" msgstr "_Enregistrar lo ligam jos..." -#: ../src/ephy-window.c:244 -#| msgid "_Copy Address" +#: ../src/ephy-window.c:242 msgid "_Copy Video Address" msgstr "_Copiar l'adreça de la vidèo" #. Audio. -#: ../src/ephy-window.c:249 -#| msgid "Open in New _Window" -#| msgid_plural "Open in New _Windows" +#: ../src/ephy-window.c:247 msgid "Open Audio in New _Window" msgstr "Dobrir lo document àudio dins una fenèstra novèla" -#: ../src/ephy-window.c:251 -#| msgid "Open in New _Tab" -#| msgid_plural "Open in New _Tabs" +#: ../src/ephy-window.c:249 msgid "Open Audio in New _Tab" msgstr "Dobrir lo document àudio dins un _onglet novèl" -#: ../src/ephy-window.c:253 -#| msgid "_Save Link As…" +#: ../src/ephy-window.c:251 msgid "_Save Audio As…" msgstr "_Enregistrar lo document àudio jos..." -#: ../src/ephy-window.c:255 -#| msgid "_Copy Address" +#: ../src/ephy-window.c:253 msgid "_Copy Audio Address" msgstr "_Copiar l'adreça del document àudio" -#: ../src/ephy-window.c:470 +#: ../src/ephy-window.c:464 msgid "There are unsubmitted changes to form elements" msgstr "" +"Certanas modificacions dels elements del formulari son pas estadas mandadas" -#: ../src/ephy-window.c:471 +#: ../src/ephy-window.c:465 msgid "If you close the document anyway, you will lose that information." -msgstr "" +msgstr "Se tampatz malgrat tot lo document, perdretz aquestas informacions." -#: ../src/ephy-window.c:473 +#: ../src/ephy-window.c:467 msgid "Close _Document" msgstr "Tampar lo _document" -#: ../src/ephy-window.c:488 +#: ../src/ephy-window.c:482 msgid "There are ongoing downloads" -msgstr "" +msgstr "Des telecargaments son en cors" -#: ../src/ephy-window.c:489 +#: ../src/ephy-window.c:483 msgid "If you quit, the downloads will be cancelled" -msgstr "" +msgstr "Se quitatz, los telecargaments seràn anullats" -#: ../src/ephy-window.c:490 +#: ../src/ephy-window.c:484 msgid "Quit and cancel downloads" -msgstr "" +msgstr "Quitar e annular los telecargaments" -#: ../src/ephy-window.c:1141 ../src/window-commands.c:272 +#: ../src/ephy-window.c:1088 ../src/window-commands.c:258 msgid "Open" msgstr "Dobrir" -#: ../src/ephy-window.c:1143 +#: ../src/ephy-window.c:1090 msgid "Save As" msgstr "Enregistrar jos" -#: ../src/ephy-window.c:1145 +#: ../src/ephy-window.c:1092 msgid "Save As Application" -msgstr "" +msgstr "Enregistrar en tant qu'aplicacion" -#: ../src/ephy-window.c:1147 +#: ../src/ephy-window.c:1094 msgid "Print" msgstr "Imprimir" -#: ../src/ephy-window.c:1149 +#: ../src/ephy-window.c:1096 msgid "Bookmark" msgstr "Favorit" -#: ../src/ephy-window.c:1151 +#: ../src/ephy-window.c:1098 msgid "Find" msgstr "Recercar" -#: ../src/ephy-window.c:1157 -#| msgid "Encodings" +#: ../src/ephy-window.c:1104 msgid "Encodings…" msgstr "Encodatge..." #. Translators: This refers to text size -#: ../src/ephy-window.c:1160 +#: ../src/ephy-window.c:1107 msgid "Larger" -msgstr "" +msgstr "Mai grand" #. Translators: This refers to text size -#: ../src/ephy-window.c:1163 +#: ../src/ephy-window.c:1110 msgid "Smaller" -msgstr "" +msgstr "Fòrt pichon" -#: ../src/ephy-window.c:1185 -#| msgid "_Back" +#: ../src/ephy-window.c:1132 msgid "Back" msgstr "Retorn" -#: ../src/ephy-window.c:1197 -#| msgid "_Forward" +#: ../src/ephy-window.c:1144 msgid "Forward" msgstr "Seguent" -#: ../src/ephy-window.c:1209 +#: ../src/ephy-window.c:1156 msgid "Zoom" msgstr "Zoom" -#: ../src/ephy-window.c:1218 +#: ../src/ephy-window.c:1165 msgid "New _Tab" msgstr "_Onglet novèl" -#: ../src/ephy-window.c:1226 -#| msgid "bookmarks|Most Visited" +#: ../src/ephy-window.c:1173 msgid "Go to most visited" msgstr "Los mai visitats" -#: ../src/ephy-window.c:1755 +#: ../src/ephy-window.c:1663 #, c-format msgid "Search the Web for '%s'" -msgstr "" +msgstr "Cercar sul web per '%s'" -#: ../src/popup-commands.c:258 +#: ../src/popup-commands.c:252 msgid "Save Link As" msgstr "Enregistrar lo ligam jos" -#: ../src/popup-commands.c:265 +#: ../src/popup-commands.c:259 msgid "Save Image As" msgstr "Enregistrar l'imatge jos" -#: ../src/popup-commands.c:272 -#| msgid "Save Link As" +#: ../src/popup-commands.c:266 msgid "Save Media As" msgstr "Enregistrar lo mèdia jos" @@ -2760,9 +2823,8 @@ #. * second %s is the locale name. Example: #. * "French (France)" #. -#: ../src/prefs-dialog.c:475 ../src/prefs-dialog.c:481 +#: ../src/prefs-dialog.c:454 ../src/prefs-dialog.c:458 #, c-format -#| msgid "language|%s (%s)" msgctxt "language" msgid "%s (%s)" msgstr "%s (%s)" @@ -2770,126 +2832,129 @@ #. Translators: this refers to a user-define language code #. * (one which isn't in our built-in list). #. -#: ../src/prefs-dialog.c:490 +#: ../src/prefs-dialog.c:465 #, c-format msgctxt "language" msgid "User defined (%s)" -msgstr "" +msgstr "Definida per l'utilizaire (%s)" -#: ../src/prefs-dialog.c:512 +#: ../src/prefs-dialog.c:487 #, c-format msgid "System language (%s)" msgid_plural "System languages (%s)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Lenga del sistèma (%s)" +msgstr[1] "Lengas del sistèma (%s)" -#: ../src/prefs-dialog.c:845 +#: ../src/prefs-dialog.c:809 msgid "Select a Directory" -msgstr "" +msgstr "Seleccionatz un repertòri" #. Search engine option in the preferences dialog -#: ../src/prefs-dialog.c:939 +#: ../src/prefs-dialog.c:903 msgid "DuckDuckGo" -msgstr "" +msgstr "DuckDuckGo" #. For the preferences dialog. Must exactly match the URL #. * you chose in the gschema, but with & instead of & #. * If the match is not exact, there will be a spurious, ugly #. * entry in the preferences combo, so please test this. -#: ../src/prefs-dialog.c:945 +#: ../src/prefs-dialog.c:909 #, c-format msgid "https://duckduckgo.com/?q=%s&t=epiphany" -msgstr "" +msgstr "https://duckduckgo.com/?q=%s&t=epiphany&kl=fr-fr" #. Search engine option in the preferences dialog -#: ../src/prefs-dialog.c:947 +#: ../src/prefs-dialog.c:911 msgid "Google" -msgstr "" +msgstr "Google" #. For the preferences dialog. Consider a regional variant, like google.co.uk -#: ../src/prefs-dialog.c:950 +#: ../src/prefs-dialog.c:914 #, c-format -#| msgid "http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8" msgid "https://google.com/search?q=%s" msgstr "https://google.com/search?q=%s" #. Search engine option in the preferences dialog -#: ../src/prefs-dialog.c:952 +#: ../src/prefs-dialog.c:916 msgid "Bing" -msgstr "" +msgstr "Bing" #. For the preferences dialog. Consider a regional variant, like uk.bing.com -#: ../src/prefs-dialog.c:955 +#: ../src/prefs-dialog.c:919 #, c-format -#| msgid "http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8" msgid "https://www.bing.com/search?q=%s" msgstr "https://www.bing.com/search?q=%s" -#: ../src/window-commands.c:327 +# Titre de fenèstra +#: ../src/window-commands.c:309 msgid "Save" msgstr "Enregistrar" -#: ../src/window-commands.c:707 +#: ../src/window-commands.c:681 #, c-format msgid "A web application named '%s' already exists. Do you want to replace it?" msgstr "" +"Una application Web nommée « %s » es ja présente. Volètz la remplaçar ?" -#: ../src/window-commands.c:710 -#| msgid "_Cancel Logout" +#: ../src/window-commands.c:684 msgid "Cancel" msgstr "Anullar" -#: ../src/window-commands.c:712 +#: ../src/window-commands.c:686 msgid "Replace" -msgstr "" +msgstr "Remplaçar" -#: ../src/window-commands.c:716 +#: ../src/window-commands.c:690 msgid "" "An application with the same name already exists. Replacing it will " "overwrite it." msgstr "" +"Una application amb aqueste nom existís ja. Serà espotida per la que volètz " +"crear." -#: ../src/window-commands.c:752 +#: ../src/window-commands.c:725 #, c-format msgid "The application '%s' is ready to be used" -msgstr "" +msgstr "L'aplicacion « %s » es prèsta a èsser utilizada" -#: ../src/window-commands.c:755 +#: ../src/window-commands.c:728 #, c-format msgid "The application '%s' could not be created" -msgstr "" +msgstr "L'aplicacion « %s » a pas pogut èsser creada" -#: ../src/window-commands.c:763 +#: ../src/window-commands.c:736 msgid "Launch" -msgstr "" +msgstr "Aviar" #. Show dialog with icon, title. -#: ../src/window-commands.c:803 +#: ../src/window-commands.c:776 msgid "Create Web Application" -msgstr "" +msgstr "Crear una aplicacion web" -#: ../src/window-commands.c:808 +#: ../src/window-commands.c:781 msgid "C_reate" -msgstr "" +msgstr "C_rear" -#: ../src/window-commands.c:1474 ../src/window-commands.c:1497 +#: ../src/window-commands.c:1411 ../src/window-commands.c:1434 msgid "Contact us at:" -msgstr "" +msgstr "Contactatz-nos a :" -#: ../src/window-commands.c:1477 +#: ../src/window-commands.c:1414 msgid "Contributors:" -msgstr "" +msgstr "Contributors :" -#: ../src/window-commands.c:1480 +#: ../src/window-commands.c:1417 msgid "Past developers:" -msgstr "" +msgstr "Ancians desvolopaires :" -#: ../src/window-commands.c:1506 +#: ../src/window-commands.c:1443 #, c-format msgid "" "A simple, clean, beautiful view of the web.\n" "Powered by WebKit %d.%d.%d" msgstr "" +"Una vista simple, propre e belle del Web.\n" +"Propulsé per WebKit %d.%d.%d" #. Translators: This is a special message that shouldn't be translated #. * literally. It is used in the about box to give credits to @@ -2899,363 +2964,509 @@ #. * this translation; in that case, please write each of them on a separate #. * line seperated by newlines (\n). #. -#: ../src/window-commands.c:1529 +#: ../src/window-commands.c:1466 msgid "translator-credits" msgstr "" -"Yannig Marchegay (Kokoyaya)
Cédric Valmary " -"(totenoc.eu) " +"Launchpad Contributions:\n" +" Cédric VALMARY (Tot en òc) https://launchpad.net/~cvalmary\n" +" Vincent L. https://launchpad.net/~vincent-laporte\n" +" Yannig MARCHEGAY (Kokoyaya) https://launchpad.net/~yannick-marchegay" -#: ../src/window-commands.c:1532 -#| msgid "Web pages" +#: ../src/window-commands.c:1469 msgid "Web Website" -msgstr "" +msgstr "Paginas web" -#: ../src/window-commands.c:1671 +#: ../src/window-commands.c:1630 msgid "Enable caret browsing mode?" -msgstr "" +msgstr "Activar lo mòde de navigacion amb lo cursor ?" -#: ../src/window-commands.c:1674 +#: ../src/window-commands.c:1633 msgid "" "Pressing F7 turns caret browsing on or off. This feature places a moveable " "cursor in web pages, allowing you to move around with your keyboard. Do you " "want to enable caret browsing?" msgstr "" +"Una quichada sus la tòca F7 activa o desactiva la navigacion amb lo cursor. " +"Aquesta foncionalitat plaça un cursor desplaçable dins las paginas Web, que " +"vos permet de vos desplaçar amb vòstre clavièr. Volètz activar lo mòde de " +"navigacion al cursor ?" -#: ../src/window-commands.c:1677 -#| msgid "Enable Java" +#: ../src/window-commands.c:1636 msgid "_Enable" msgstr "A_ctivar" -#~ msgid "Disable history" -#~ msgstr "Desactivar l'istoric" +#~ msgid "Master password needed" +#~ msgstr "Senhal mèstre demandat" -#~ msgid "Home page" -#~ msgstr "Pagina personala" +#~ msgid "" +#~ "The passwords from the previous version are locked with a master " +#~ "password. If you want to import them, please enter your master password " +#~ "below." +#~ msgstr "" +#~ "Les senhals de la version precedenta son verrolhats per un senhal mèstre. " +#~ "Se volètz les importer, sasissètz vòstre senhal mèstre ci-dejós." -#~ msgid "ISO-8859-1" -#~ msgstr "ISO-8859-1" +#~ msgid "Browse and organize your bookmarks" +#~ msgstr "Percórrer e organizar vòstres marcapaginas" -#~ msgid "x-western" -#~ msgstr "x-western" +#~ msgid "Epiphany Web Bookmarks" +#~ msgstr "Marcapaginas Web d'Epiphany" -#~ msgid "Validity" -#~ msgstr "Validitat" +#~ msgid "Web Bookmarks" +#~ msgstr "Marcapaginas Web" -#~ msgid "Details" -#~ msgstr "Detalhs" +#~ msgid "" +#~ "A list of protocols to be considered safe in addition to the default, " +#~ "when disable_unsafe_protocols is enabled." +#~ msgstr "" +#~ "Una lista dels protocòls de considerar coma securizats en mai de los per " +#~ "defaut, quand disable_unsafe_protocols es activat." -#~ msgid "_Automatic" -#~ msgstr "_Automatic" +#~ msgid "Additional safe protocols" +#~ msgstr "Protocòls securizats adicionals" -#~ msgid "Downloads" -#~ msgstr "Descargas" +#~ msgid "Disable JavaScript chrome control" +#~ msgstr "Desactivar los contraròtles JavaScript chrome" -#~ msgid "Home page" -#~ msgstr "Pagina principala" +#~ msgid "Disable JavaScript's control over window chrome." +#~ msgstr "Desactiva los contraròtles JavaScript sus una fenèstra chrome." -#~ msgid "Languages" -#~ msgstr "Lengas" +#~ msgid "" +#~ "Disable all historical information by disabling back and forward " +#~ "navigacion, not allowing the history dialog and hiding the most used " +#~ "bookmarks list." +#~ msgstr "" +#~ "Desactiva totas las informacions d'istoric en desactivant los botons " +#~ "« precedent » e « seguent », en interdisent la fenèstra d'istoric e en " +#~ "amagant la lista dels marcapaginas mai utilizats." -#~ msgid "Passwords" -#~ msgstr "Senhals" +#~ msgid "Disable arbitrary URLs" +#~ msgstr "Desactivar las URL arbitràrias" -#~ msgid "Temporary Files" -#~ msgstr "Fichièrs temporaris" +#~ msgid "Disable bookmark editing" +#~ msgstr "Desactivar la modificacion dels marcapaginas" -#~ msgid "Enable Java_Script" -#~ msgstr "Activar Java_script" +#~ msgid "Disable history" +#~ msgstr "Desactivar l'istoric" -#~ msgid "Enable _Java" -#~ msgstr "Activar _Java" +#~ msgid "Disable the user's ability to add or edit bookmarks." +#~ msgstr "" +#~ "Desactiva l'apondon o la modificacion dels marcapaginas per l'utilizaire." -#~ msgid "MB" -#~ msgstr "Mo" +#~ msgid "Disable the user's ability to edit toolbars." +#~ msgstr "Desactiva la modificacion de las barras d'aisinas per l'utilizaire." -#~ msgid "_Address:" -#~ msgstr "_Adreça :" +#~ msgid "Disable the user's ability to type in a URL to Epiphany." +#~ msgstr "Desactiva la picada d'una URL dins Epiphany per l'utilizaire." -#~ msgid "_Disk space:" -#~ msgstr "Espaci _disc :" +#~ msgid "Disable toolbar editing" +#~ msgstr "Desactivar la modificacion de las barras d'aisinas" -#~ msgid "Background" -#~ msgstr "Fons" +#~ msgid "Disable unsafe protocols" +#~ msgstr "Desactivar los protocòls pas securizats" -#~ msgid "Headers" -#~ msgstr "Encaps" +#~ msgid "" +#~ "Disables loading of content from unsafe protocols. Safe protocols are " +#~ "http and https." +#~ msgstr "" +#~ "Desactiva lo cargament de las donadas que provenon de protocòls pas " +#~ "securizats. Los protocòls securizats son http e https." -#~ msgid "_Date" -#~ msgstr "_Data" +#~ msgid "Epiphany cannot quit" +#~ msgstr "Epiphany pòt pas èsser tampat" -#~ msgid "%u:%02u.%02u" -#~ msgstr "%u:%02u.%02u" +#~ msgid "Hide menubar by default" +#~ msgstr "Amagar la barra de menuts per defaut" -#~ msgid "%02u.%02u" -#~ msgstr "%02u.%02u" +#~ msgid "Hide the menubar by default." +#~ msgstr "Amaga la barra de menuts per defaut." -#~ msgid "_Pause" -#~ msgstr "_Pausa" +#~ msgid "Lock in fullscreen mode" +#~ msgstr "Blocar en mòde ecran complet" -#~ msgid "_Resume" -#~ msgstr "_Contunhar" +#~ msgid "Locks Epiphany in fullscreen mode." +#~ msgstr "Blòca Epiphany en mòde ecran complet." -#~ msgid "" -#~ "%s\n" -#~ "%s of %s" -#~ msgstr "" -#~ "%s\n" -#~ "%s sus %s" +#~ msgid "User is not allowed to close Epiphany" +#~ msgstr "L'utilizaire es pas autorizat a tampar Epiphany" -#~ msgid "%" -#~ msgstr "%" +#~ msgid "Active extensions" +#~ msgstr "Extensions activas" + +#~ msgid "Address of the user's home page." +#~ msgstr "Adreça de la pagina d'aviada de l'utilizaire." + +#~ msgid "Always show the tab bar" +#~ msgstr "Afichar totjorn la barra d'onglets" #~ msgid "" -#~ "GConf error:\n" -#~ " %s" +#~ "Default encoding. Accepted values are: \"armscii-8\", \"Big5\", \"Big5-" +#~ "HKSCS\", \"EUC-JP\", \"EUC-KR\", \"gb18030\", \"GB2312\", \"geostd8\", " +#~ "\"HZ-GB-2312\", \"IBM850\", \"IBM852\", \"IBM855\", \"IBM857\", " +#~ "\"IBM862\", \"IBM864\", \"IBM866\", \"ISO-2022-CN\", \"ISO-2022-JP\", " +#~ "\"ISO-2022-KR\", \"ISO-8859-1\", \"ISO-8859-2\", \"ISO-8859-3\", " +#~ "\"ISO-8859-4\", \"ISO-8859-5\", \"ISO-8859-6\", \"ISO-8859-7\", " +#~ "\"ISO-8859-8\", \"ISO-8859-8-I\", \"ISO-8859-9\", \"ISO-8859-10\", " +#~ "\"ISO-8859-11\", \"ISO-8859-13\", \"ISO-8859-14\", \"ISO-8859-15\", " +#~ "\"ISO-8859-16\", \"ISO-IR-111\", \"KOI8-R\", \"KOI8-U\", \"Shift_JIS\", " +#~ "\"TIS-620\", \"UTF-7\", \"UTF-8\", \"VISCII\", \"windows-874\", " +#~ "\"windows-1250\", \"windows-1251\", \"windows-1252\", \"windows-1253\", " +#~ "\"windows-1254\", \"windows-1255\", \"windows-1256\", \"windows-1257\", " +#~ "\"windows-1258\", \"x-euc-tw\", \"x-gbk\", \"x-johab\", \"x-mac-arabic\", " +#~ "\"x-mac-ce\", \"x-mac-croatian\", \"x-mac-cyrillic\", \"x-mac-devanagari" +#~ "\", \"x-mac-farsi\", \"x-mac-greek\", \"x-mac-gujarati\", \"x-mac-gurmukhi" +#~ "\", \"x-mac-hebrew\", \"x-mac-icelandic\", \"x-mac-roman\", \"x-mac-" +#~ "romanian\", \"x-mac-turkish\", \"x-mac-ukrainian\", \"x-user-defined\", " +#~ "\"x-viet-tcvn5712\", \"x-viet-vps\" and \"x-windows-949\"." #~ msgstr "" -#~ "Error GConf :\n" -#~ " %s" +#~ "Enodatge per defaut. Las valors possiblas son : « armscii-8 », « Big5 », " +#~ "« Big5-HKSCS », « EUC-JP », « EUC-KR », « gb18030 », « GB2312 », " +#~ "« geostd8 », « HZ-GB-2312 », « IBM850 », « IBM852 », « IBM855 », " +#~ "« IBM857 », « IBM862 », « IBM864 », « IBM866 », « ISO-2022-CN », " +#~ "« ISO-2022-JP », « ISO-2022-KR », « ISO-8859-1 », « ISO-8859-2 », " +#~ "« ISO-8859-3 », « ISO-8859-4 », « ISO-8859-5 », « ISO-8859-6 », " +#~ "« ISO-8859-7 », « ISO-8859-8 », « ISO-8859-8-I », « ISO-8859-9 », " +#~ "« ISO-8859-10 », « ISO-8859-11 », « ISO-8859-13 », « ISO-8859-14 », " +#~ "« ISO-8859-15 », « ISO-8859-16 », « ISO-IR-111 », « KOI8-R », « KOI8-U », " +#~ "« Shift_JIS », « TIS-620 », « UTF-7 », « UTF-8 », « VISCII », " +#~ "« windows-874 », « windows-1250 », « windows-1251 », « windows-1252 », " +#~ "« windows-1253 », « windows-1254 », « windows-1255 », « windows-1256 », " +#~ "« windows-1257 », « windows-1258 », « x-euc-tw », « x-gbk », « x-johab », " +#~ "« x-mac-arabic », « x-mac-ce », « x-mac-croatian », « x-mac-cyrillic », " +#~ "« x-mac-devanagari », « x-mac-farsi », « x-mac-greek », « x-mac-" +#~ "gujarati », « x-mac-gurmukhi », « x-mac-hebrew », « x-mac-icelandic », " +#~ "« x-mac-roman », « x-mac-romanian », « x-mac-turkish », « x-mac-" +#~ "ukrainian », « x-user-defined », « x-viet-tcvn5712 », « x-viet-vps » e " +#~ "« x-windows-949 »." -#~ msgid "Show “_%s”" -#~ msgstr "Afichar “_%s”" +#~ msgid "Default font type" +#~ msgstr "Tipe de la poliça per defaut" -#~ msgid "_Delete Toolbar" -#~ msgstr "_Suprimir la barra d'aisinas" +#~ msgid "Default font type. Possible values are \"serif\" and \"sans-serif\"." +#~ msgstr "" +#~ "Tipe de poliça per defaut. Las valors possiblas son : « serif » o « sans-" +#~ "serif »." -#~ msgid "Separator" -#~ msgstr "Separador" +#~ msgid "Enable Java" +#~ msgstr "Activar Java" -#~ msgid "_Domain:" -#~ msgstr "_Domeni :" +#~ msgid "History pages time range" +#~ msgstr "Interval temporal de las paginas d'istoric" -#~ msgid "_New password:" -#~ msgstr "Senhal _novèl :" +#~ msgid "Home page" +#~ msgstr "Pagina d'acuèlh" -#~ msgid "Con_firm password:" -#~ msgstr "Con_firmatz lo mot de pas :" - -#~ msgid "Password quality:" -#~ msgstr "Qualitat del mot de pas :" - -#~ msgid "Address Entry" -#~ msgstr "Adreça" +#~ msgid "How to print frames" +#~ msgstr "Metòde d'impression dels quadres" -#~ msgid "%s:" -#~ msgstr "%s :" +#~ msgid "" +#~ "How to print pages containing frames. Allowed values are \"normal\", " +#~ "\"separately\" and \"selected\"." +#~ msgstr "" +#~ "Metòde d'impression dels quadres. Las valors possiblas son " +#~ "« normal » (normal), « separately » (separadament) e " +#~ "« selected » (seleccionat)." -#~ msgid "Show “%s”" -#~ msgstr "Afichar “%s”" +#~ msgid "ISO-8859-1" +#~ msgstr "ISO-8859-1" -#~ msgid "_Don't Update" -#~ msgstr "Metre _pas a jorn" +#~ msgid "Lists the active extensions." +#~ msgstr "Fa la lista de las extensions activas." -#~ msgid "_Update" -#~ msgstr "_Metre a jorn" +#~ msgid "" +#~ "Middle click to open the web page pointed to by the currently selected " +#~ "text" +#~ msgstr "" +#~ "Clicar amb lo boton del mitan per dobrir la pagina Web puntada pel tèxte " +#~ "seleccionat actualament." -#~ msgid "bookmarks|All" -#~ msgstr "Totes" +#~ msgid "" +#~ "Middle clicking on the main view pane will open the web page pointed to " +#~ "by the currently selected text." +#~ msgstr "" +#~ "Clicar amb lo boton del mitan dins la fenèstra principala dobrirà la " +#~ "pagina Web puntada pel tèxte seleccionat actualament." -#~ msgid "Epiphany (RDF)" -#~ msgstr "Epiphany (RDF)" +#~ msgid "Show bookmarks bar by default" +#~ msgstr "Afichar la barra de marcapaginas per defaut" -#~ msgid "_Other…" -#~ msgstr "_Autre..." +#~ msgid "Show statusbar by default" +#~ msgstr "Afichar la barra d'estat per defaut" -#~ msgid "_Automatic" -#~ msgstr "_Automatic" +#~ msgid "" +#~ "Show the history pages visited \"ever\", \"last_two_days\", " +#~ "\"last_three_days\", \"today\"." +#~ msgstr "" +#~ "Afichar l'istoric de las paginas visitadas : « ever » (totas), " +#~ "« last_two_days » (los dos darrièrs jorns), « last_three_days » (los tres " +#~ "darrièrs jorns), « today » (uèi)." -#~ msgid "Find:" -#~ msgstr "Recercar :" +#~ msgid "Show the tab bar also when there is only one tab open." +#~ msgstr "" +#~ "Afichar totjorn la barra dels onglets quitament se n'i a pas qu'un sol de " +#~ "dobèrt." -#~ msgid "Find Previous" -#~ msgstr "Recercar lo precedent" +#~ msgid "Show toolbars by default" +#~ msgstr "Afichar las barras d'aisinas per defaut" -#~ msgid "Find Next" -#~ msgstr "Recercar lo seguent" +#~ msgid "Size of disk cache" +#~ msgstr "Talha del cache de disc" -#~ msgid "Go" -#~ msgstr "Anar" +#~ msgid "Size of disk cache, in MB." +#~ msgstr "Talha del cache de disc en Mio." -#~ msgid "Clear _History" -#~ msgstr "Voidar l'_istoric" +#~ msgid "The bookmark information shown in the editor view" +#~ msgstr "" +#~ "Las informacions dels marcapaginas afichats dins la vista de l'editor" -#~ msgid "_Date and Time" -#~ msgstr "_Data e ora" +#~ msgid "" +#~ "The bookmark information shown in the editor view. Valid values in the " +#~ "list are \"address\" and \"title\"." +#~ msgstr "" +#~ "Las informacions dels marcapaginas afichadas dins la vista de l'editor. " +#~ "Las valors possiblas dins la lista son : « address » (adreça) e " +#~ "« title » (títol)." -#~ msgid "Today" -#~ msgstr "Uèi" +#~ msgid "The currently selected fonts language" +#~ msgstr "La lenga de las poliças seleccionada actualament" -#~ msgid "_Abort Downloads" -#~ msgstr "_Anullar las descargas" +#~ msgid "" +#~ "The currently selected fonts language. Valid values are \"ar\" (arabic), " +#~ "\"x-baltic\" (baltic languages), \"x-central-euro\" (central european " +#~ "languages), \"x-cyrillic\" (languages written with cyrillic alphabet), " +#~ "\"el\" (greek), \"he\" (hebrew), \"ja\" (japanese), \"ko\" (korean), \"zh-" +#~ "CN\" (simplified chinese), \"th\" (thai), \"zh-TW\" (traditional " +#~ "chinese), \"tr\" (turkish), \"x-unicode\" (other languages), \"x-western" +#~ "\" (languages written in latin script), \"x-tamil\" (tamil) and \"x-" +#~ "devanagari\" (devanagari)." +#~ msgstr "" +#~ "La lenga de las poliças seleccionadas actualament. Las valors possiblas " +#~ "son « ar » (arabi), « x-baltic » (lengas baltas), « x-central-" +#~ "euro » (lengas d'euròpa centrala), « x-cyrillic » (lengas escritas amb un " +#~ "alfabet cirillic), « el » (grèc), « he » (ebrieu), « ja » (japonés), " +#~ "« ko » (corean), « zh-CN » (chinés simplificat), « th » (tai), « zh-" +#~ "TW » (chinés tradicional), « tr » (turc), « x-unicode » (autras lengas), " +#~ "« x-western » (lengas latinas, Euròpa de l'Oèst e Estats Units), « x-" +#~ "tamil » (tamol) e « x-devanagari » (devanâgarî)." -#~ msgid "_Home" -#~ msgstr "_Repertòri personal" +#~ msgid "The encoding autodetector. Empty string means autodetect is off" +#~ msgstr "" +#~ "L'autodeteccion de l'encodatge dels caractèrs. Una cadena voida significa " +#~ "que l'autodeteccion es desactivada" -#~ msgid "Open a new window" -#~ msgstr "Dobrir una novèla fenèstra" +#~ msgid "Toolbar style" +#~ msgstr "Estil de la barra d'aisinas" -#~ msgid "Text below icons" -#~ msgstr "Tèxt jos las icònas" +#~ msgid "x-western" +#~ msgstr "x-western" -#~ msgid "Icons only" -#~ msgstr "Sonque icònas" +#~ msgid "Fingerprints" +#~ msgstr "Emprentas digitalas" -#~ msgid "Text only" -#~ msgstr "Sonque tèxt" +#~ msgid "Issued By" +#~ msgstr "Emés per" -#~ msgid "Toolbar Editor" -#~ msgstr "_Barra d'aisinas" +#~ msgid "Issued To" +#~ msgstr "Emés per" -#~ msgid "_Add a New Toolbar" -#~ msgstr "_Apondre una barra d'aisinas novèla" +#~ msgid "Validity" +#~ msgstr "Validitat" -#~ msgid "_Go" -#~ msgstr "_Anar" +#~ msgid "Details" +#~ msgstr "Detalhs" -#~ msgid "T_ools" -#~ msgstr "_Esplech" +#~ msgid "MD5 Fingerprint:" +#~ msgstr "Emprentas digitalas MD5 :" -#~ msgid "_Tabs" -#~ msgstr "_Onglets" +#~ msgid "Organization:" +#~ msgstr "Organizacion :" -#~ msgid "_Toolbars" -#~ msgstr "Barras d'_aisinas" +#~ msgid "SHA1 Fingerprint:" +#~ msgstr "Emprentas digitalas SHA1 :" -#~ msgid "Open a file" -#~ msgstr "Dobrir un fichièr" +#~ msgid "Serial Number:" +#~ msgstr "Numèro de seria :" -#~ msgid "Print preview" -#~ msgstr "Previsualizacion de l'imprimitge" +#~ msgid "_Automatic" +#~ msgstr "_Automatic" -#~ msgid "Close this tab" -#~ msgstr "Tampar l'onglet" +#~ msgid "Personal Data" +#~ msgstr "Donadas personalas" -# Vérifier le contexte -#~ msgid "Undo the last action" -#~ msgstr "Anullar la darrièra accion" +#~ msgid "_Password:" +#~ msgstr "Sen_hal :" -#~ msgid "Paste clipboard" -#~ msgstr "Pegar lo pòrtapapièr" +#~ msgid "Downloads" +#~ msgstr "Telecargaments" -#~ msgid "Delete text" -#~ msgstr "Suprimir de tèxt" +#~ msgid "Encodings" +#~ msgstr "Encodatges" -#~ msgid "P_references" -#~ msgstr "P_referéncias" +#~ msgid "Home page" +#~ msgstr "Pagina principala" -#~ msgid "_Customize Toolbars…" -#~ msgstr "_Personalizar las barras d'aisinas..." +#~ msgid "Languages" +#~ msgstr "Lengas" -#~ msgid "Customize toolbars" -#~ msgstr "Personalizar las barras d'aisinas" +#~ msgid "Passwords" +#~ msgstr "Senhals" -#~ msgid "Hi_story" -#~ msgstr "I_storic" +#~ msgid "Temporary Files" +#~ msgstr "Fichièrs temporaris" -#~ msgid "_Work Offline" -#~ msgstr "_Trabalhar desconnectat" +#~ msgid "De_fault:" +#~ msgstr "De_faut :" -#~ msgid "St_atusbar" -#~ msgstr "B_arra d'estat" +#~ msgid "Enable Java_Script" +#~ msgstr "Activar Java_script" -#~ msgid "_Open Link" -#~ msgstr "_Dobrir lo ligam" +#~ msgid "Enable _Java" +#~ msgstr "Activar _Java" -#~ msgid "Open link in this window" -#~ msgstr "Dobrir lo ligam dins aquesta fenèstra" +#~ msgid "For l_anguage:" +#~ msgstr "Per la l_enga :" -#~ msgid "Open link in a new window" -#~ msgstr "Dobrir lo ligam dins una fenèstra novèla" +#~ msgid "MB" +#~ msgstr "Mo" -#~ msgid "Open link in a new tab" -#~ msgstr "Dobrir lo ligam dins un onglet novèl" +#~ msgid "_Address:" +#~ msgstr "_Adreça :" -#~ msgid "_Download Link" -#~ msgstr "Descargar lo ligam" +#~ msgid "_Disk space:" +#~ msgstr "Espaci de _disc :" -#~ msgid "Open _Image" -#~ msgstr "Dobrir un _imatge" +#~ msgid "_Fixed width:" +#~ msgstr "Largor _fixa :" -#~ msgid "Broken" -#~ msgstr "Copat" +#~ msgid "_Variable width:" +#~ msgstr "Largor _variabla :" -#~ msgid "High" -#~ msgstr "Nautor :" +#~ msgid "Background" +#~ msgstr "Rèireplan" -#~ msgid "Open image “%s”" -#~ msgstr "Dobrir l'imatge \"%s\"" +#~ msgid "Headers" +#~ msgstr "Entèstas" -#~ msgid "Save image “%s”" -#~ msgstr "Enregistrar l'imatge \"%s\"" +#~ msgid "_Date" +#~ msgstr "_Data" -#~ msgid "Copy image address “%s”" -#~ msgstr "Copiar l'adreça de l'imatge \"%s\"" +#~ msgid "%u:%02u.%02u" +#~ msgstr "%u:%02u.%02u" -#~ msgid "Copy email address “%s”" -#~ msgstr "Copiar l'adreça electronica \"%s\"" +#~ msgid "%02u.%02u" +#~ msgstr "%02u.%02u" -#~ msgid "Copy link's address “%s”" -#~ msgstr "Copiar l'adreça del ligam \"%s\"" +#~ msgid "_Pause" +#~ msgstr "_Pausa" -#~ msgid "Path:" -#~ msgstr "Camin:" +#~ msgid "_Resume" +#~ msgstr "_Contunhar" -#~ msgid "Domain" -#~ msgstr "Domeni" +#~ msgid "The file “%s” has been downloaded." +#~ msgstr "Lo fichièr « %s » es estat telecargat." -#~ msgid "Host" -#~ msgstr "Òste" +#~ msgid "Download finished" +#~ msgstr "Telecargament acabat" -#~ msgid "Download Link" -#~ msgstr "Descargar lo ligam" +#~ msgid "" +#~ "%s\n" +#~ "%s of %s" +#~ msgstr "" +#~ "%s\n" +#~ "%s sus %s" -#~ msgid "First" -#~ msgstr "Primièr" +#~ msgid "%d download" +#~ msgid_plural "%d downloads" +#~ msgstr[0] "%d telecargament" +#~ msgstr[1] "%d telecargaments" -#~ msgid "Last" -#~ msgstr "Darrièr" +#~ msgid "Download started" +#~ msgstr "Telecargament aviat" -#~ msgid "Previous" -#~ msgstr "Precedent" +#~ msgid "download status|Unknown" +#~ msgstr "Desconegut" -#~ msgid "Next" -#~ msgstr "Seguent" +#~ msgid "download status|Failed" +#~ msgstr "Fracàs" -#~ msgid "Go to next page" -#~ msgstr "Anar a la pagina seguenta" +#~ msgid "%" +#~ msgstr "%" -#~ msgid "Close" -#~ msgstr "Tampar" +#~ msgid "Remaining" +#~ msgstr "Demòra" -#~ msgid "For l_anguage:" -#~ msgstr "Per la l_enga :" +#~ msgid "autodetectors|Off" +#~ msgstr "autodetectors|Off" -#~ msgid "_Variable width:" -#~ msgstr "Largor _variabla :" +#~ msgid "All" +#~ msgstr "Totes" #~ msgid "Open this file?" #~ msgstr "Dobrir lo fichièr ?" +#~ msgid "Download this file?" +#~ msgstr "Telecargar aqueste fichièr ?" + #~ msgid "_Save As..." #~ msgstr "_Enregistrar coma..." +#~ msgid "“%s” is not Responding" +#~ msgstr "« %s » respond pas" + +#~ msgid "“%s” is not responding." +#~ msgstr "« %s » respond pas." + +#~ msgid "Invalid Address" +#~ msgstr "Adreça invalida" + +#~ msgid "Invalid address." +#~ msgstr "Adreça invalida." + #~ msgid "_Abort Script" #~ msgstr "_Arrestar l'escript" +#~ msgid "Don't Save" +#~ msgstr "Enregistrar pas" + +#~ msgid "_Username:" +#~ msgstr "_Nom d'utilizaire :" + #~ msgid "Text files" -#~ msgstr "Fichièrs tèxt" +#~ msgstr "Fichièrs tèxte" #~ msgid "XML files" #~ msgstr "Totes los fichièrs" +#~ msgid "XUL files" +#~ msgstr "Fichièrs XUL" + +#~ msgid "_Reject" +#~ msgstr "_Regetar" + #~ msgid "_Accept" #~ msgstr "_Acceptar" +#~ msgid "Options" +#~ msgstr "Opcions" + +#~ msgid "Print this page?" +#~ msgstr "Imprimir aquesta pagina ?" + #~ msgid "Preparing to print" -#~ msgstr "Preparacion a l'imprimitge" +#~ msgstr "Preparacion a l'impression" #~ msgid "Page %d of %d" #~ msgstr "Pagina %d sus %d" +#~ msgid "Print error" +#~ msgstr "Error d'impression" + +#~ msgid "Printing “%s”" +#~ msgstr "Impression de « %s »" + +#~ msgid "_View Certificate" +#~ msgstr "_Veire lo certificat" + #~ msgid "Co_nnect" #~ msgstr "_Con_nectar" @@ -3268,11 +3479,3891 @@ #~ msgid "_Select" #~ msgstr "_Seleccionar" +#~ msgid "_Allow" +#~ msgstr "_Permetre" + #~ msgid "_Send" -#~ msgstr "_Enviar" +#~ msgstr "_Mandar" #~ msgid "http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=" #~ msgstr "http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=" -#~ msgid "Default" -#~ msgstr "Defaut" +#~ msgid "" +#~ "GConf error:\n" +#~ " %s" +#~ msgstr "" +#~ "Error GConf :\n" +#~ " %s" + +#~ msgid "Opening %s" +#~ msgstr "Dobertura de %s" + +#~ msgid "Opening %d Item" +#~ msgid_plural "Opening %d Items" +#~ msgstr[0] "Dobertura de %d element" +#~ msgstr[1] "Dobertura de %d elements" + +#~ msgid "Show “_%s”" +#~ msgstr "Afichar “_%s”" + +#~ msgid "_Move on Toolbar" +#~ msgstr "_Desplaçar sus la barra d'aisinas" + +#~ msgid "_Delete Toolbar" +#~ msgstr "_Suprimir la barra d'aisinas" + +#~ msgid "Separator" +#~ msgstr "Separador" + +#~ msgid "select fonts for|Arabic" +#~ msgstr "seleccionar las poliças per|Arabi" + +#~ msgid "select fonts for|Baltic" +#~ msgstr "seleccionar las poliças per|Balt" + +#~ msgid "select fonts for|Central European" +#~ msgstr "seleccionar las poliças per|Europèu central" + +#~ msgid "select fonts for|Cyrillic" +#~ msgstr "seleccionar las poliças per|Cirillic" + +#~ msgid "select fonts for|Devanagari" +#~ msgstr "seleccionar las poliças per|Devanagari" + +#~ msgid "select fonts for|Greek" +#~ msgstr "seleccionar las poliças per|Grèc" + +#~ msgid "select fonts for|Hebrew" +#~ msgstr "seleccionar las poliças per|Ebrieu" + +#~ msgid "select fonts for|Japanese" +#~ msgstr "seleccionar las poliças per|Japonés" + +#~ msgid "select fonts for|Korean" +#~ msgstr "seleccionar las poliças per|Corean" + +#~ msgid "select fonts for|Simplified Chinese" +#~ msgstr "seleccionar las poliças per|Chinés simplificat" + +#~ msgid "select fonts for|Tamil" +#~ msgstr "seleccionar las poliças per|Tamol" + +#~ msgid "select fonts for|Thai" +#~ msgstr "seleccionar las poliças per|Tai" + +#~ msgid "select fonts for|Traditional Chinese" +#~ msgstr "seleccionar las poliças per|Chinés tradicional" + +#~ msgid "select fonts for|Traditional Chinese (Hong Kong)" +#~ msgstr "seleccionar las poliças per|Chinés tradicional (Hong Kong)" + +#~ msgid "select fonts for|Turkish" +#~ msgstr "seleccionar las poliças per|Turc" + +#~ msgid "select fonts for|Armenian" +#~ msgstr "seleccionar las poliças per|Armèni" + +#~ msgid "select fonts for|Bengali" +#~ msgstr "seleccionar las poliças per|Bengali" + +#~ msgid "select fonts for|Ethiopic" +#~ msgstr "seleccionar las poliças per|Etiopian" + +#~ msgid "select fonts for|Georgian" +#~ msgstr "seleccionar las poliças per|Georgian" + +#~ msgid "select fonts for|Gujarati" +#~ msgstr "seleccionar las poliças per|Gujarati" + +#~ msgid "select fonts for|Gurmukhi" +#~ msgstr "seleccionar las poliças per|Gurmukhi" + +#~ msgid "select fonts for|Khmer" +#~ msgstr "seleccionar las poliças per|Cmèr" + +#~ msgid "select fonts for|Malayalam" +#~ msgstr "seleccionar las poliças per|Malayalam" + +#~ msgid "select fonts for|Western" +#~ msgstr "seleccionar las poliças per|Occidental" + +#~ msgid "select fonts for|Other Scripts" +#~ msgstr "seleccionar las poliças per|Autres escripts" + +#~ msgid "_Domain:" +#~ msgstr "_Domeni :" + +#~ msgid "_New password:" +#~ msgstr "Senhal _novèl :" + +#~ msgid "Con_firm password:" +#~ msgstr "Con_firmatz lo senhal :" + +#~ msgid "Password quality:" +#~ msgstr "Qualitat del senhal :" + +#~ msgid "Save password in _keyring" +#~ msgstr "Enregistrar lo senhal dins lo _trossèl de claus" + +#~ msgid "Address Entry" +#~ msgstr "Adreça" + +#~ msgid "_Download" +#~ msgstr "_Telecargar" + +#~ msgid "%s:" +#~ msgstr "%s :" + +#~ msgid "Show “%s”" +#~ msgstr "Afichar “%s”" + +#~ msgid "Debian" +#~ msgstr "Debian" + +#~ msgid "http://www.debian.org/" +#~ msgstr "http://www.debian.org/" + +#~ msgid "http://www.gnome.org/" +#~ msgstr "http://www.gnome.org/" + +#~ msgid "Ubuntu" +#~ msgstr "Ubuntu" + +#~ msgid "http://www.ubuntu.com/" +#~ msgstr "http://www.ubuntu-fr.org/" + +#~ msgid "Planet Ubuntu" +#~ msgstr "Planeta Ubuntu" + +#~ msgid "https://wiki.ubuntu.com/" +#~ msgstr "http://doc.ubuntu-fr.org/" + +#~ msgid "http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8" +#~ msgstr "http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8" + +#~ msgid "_Don't Update" +#~ msgstr "Metre _pas a jorn" + +#~ msgid "_Update" +#~ msgstr "_Metre a jorn" + +#~ msgid "bookmarks|All" +#~ msgstr "Totes" + +#~ msgid "bookmarks|Most Visited" +#~ msgstr "marcapaginas|Los mai visitats" + +#~ msgid "bookmarks|Not Categorized" +#~ msgstr "marcapaginas|Pas categorizats" + +#~ msgid "Epiphany (RDF)" +#~ msgstr "Epiphany (RDF)" + +#~ msgid "Clear" +#~ msgstr "Netejar" + +#~ msgid "_Search:" +#~ msgstr "_Recercar :" + +#~ msgid "Related" +#~ msgstr "De la meteissa familha" + +#~ msgid "Topic" +#~ msgstr "Subjècte" + +#~ msgid "Encodings" +#~ msgstr "Encodatges" + +#~ msgid "_Other…" +#~ msgstr "_Autre..." + +#~ msgid "Other encodings" +#~ msgstr "Autres encodatges" + +#~ msgid "_Automatic" +#~ msgstr "_Automatic" + +#~ msgid "Not found" +#~ msgstr "Pas trobat" + +#~ msgid "Wrapped" +#~ msgstr "Bas de fichièr atent" + +#~ msgid "Find:" +#~ msgstr "Recercar :" + +#~ msgid "_Case sensitive" +#~ msgstr "Sensible a la _cassa" + +#~ msgid "Find Previous" +#~ msgstr "Recercar lo precedent" + +#~ msgid "Find Next" +#~ msgstr "Recercar lo seguent" + +#~ msgid "Leave Fullscreen" +#~ msgstr "Quitar lo mòde ecran complet" + +#~ msgid "Go" +#~ msgstr "Anar" + +#~ msgid "Add _Bookmark…" +#~ msgstr "Apondre un _favorit..." + +#~ msgid "Clear _History" +#~ msgstr "Voidar l'_istoric" + +#~ msgid "_Address" +#~ msgstr "_Adreça" + +#~ msgid "_Date and Time" +#~ msgstr "_Data e ora" + +#~ msgid "Clear History" +#~ msgstr "Voidar l'istoric" + +#~ msgid "Today" +#~ msgstr "Uèi" + +#~ msgid "_Cancel Logout" +#~ msgstr "_Anullar la desconnexion" + +#~ msgid "_Abort Downloads" +#~ msgstr "_Anullar las descargas" + +#~ msgid "_Don't Recover" +#~ msgstr "Recuperar _pas" + +#~ msgid "_Recover" +#~ msgstr "_Recuperar" + +#~ msgid "Crash Recovery" +#~ msgstr "Recuperacion aprèp un arrèst brutal" + +#~ msgid "Caret" +#~ msgstr "Cursor" + +#~ msgid "Switch to this tab" +#~ msgstr "Activar aqueste onglet" + +#~ msgid "_Back" +#~ msgstr "_Tornar" + +#~ msgid "Back history" +#~ msgstr "Tornar dins l'istoric" + +#~ msgid "_Forward" +#~ msgstr "_Seguent" + +#~ msgid "Go up one level" +#~ msgstr "Montar d'un nivèl" + +#~ msgid "_Home" +#~ msgstr "_Dorsièr personal" + +#~ msgid "Open a new tab" +#~ msgstr "Dobrir un onglet novèl" + +#~ msgid "Open a new window" +#~ msgstr "Dobrir una novèla fenèstra" + +#~ msgid "Text below icons" +#~ msgstr "Tèxte jos las icònas" + +#~ msgid "Text beside icons" +#~ msgstr "Tèxte al costat de las icònas" + +#~ msgid "Icons only" +#~ msgstr "Sonque icònas" + +#~ msgid "Text only" +#~ msgstr "Sonque tèxt" + +#~ msgid "Toolbar Editor" +#~ msgstr "_Barra d'aisinas" + +#~ msgid "Toolbar _button labels:" +#~ msgstr "E_tiquetas dels botons de la barra d'aisinas :" + +#~ msgid "_Add a New Toolbar" +#~ msgstr "_Apondre una barra d'aisinas novèla" + +#~ msgid "_Go" +#~ msgstr "_Anar" + +#~ msgid "T_ools" +#~ msgstr "_Aisina" + +#~ msgid "_Tabs" +#~ msgstr "_Onglets" + +#~ msgid "_Toolbars" +#~ msgstr "Barras d'_aisinas" + +#~ msgid "Open a file" +#~ msgstr "Dobrir un fichièr" + +#~ msgid "Page Set_up" +#~ msgstr "P_arametratge de la pagina..." + +#~ msgid "Setup the page settings for printing" +#~ msgstr "Configura los paramètres de la pagina per l'impression" + +#~ msgid "Print Pre_view" +#~ msgstr "_Apercebut abans impression" + +#~ msgid "Print preview" +#~ msgstr "Previsualizacion de l'impression" + +#~ msgid "Print the current page" +#~ msgstr "Imprimís la pagina actuala" + +#~ msgid "Close this tab" +#~ msgstr "Tampar l'onglet" + +# Verificar lo contexte +#~ msgid "Undo the last action" +#~ msgstr "Anullar la darrièra accion" + +#~ msgid "Redo the last undone action" +#~ msgstr "Restablís la darrièra accion anullada" + +#~ msgid "Paste clipboard" +#~ msgstr "Pegar lo pòrtapapièr" + +#~ msgid "Delete text" +#~ msgstr "Suprimir de tèxt" + +#~ msgid "Find next occurrence of the word or phrase" +#~ msgstr "Recèrca l'ocurréncia venenta d'aqueste mot o d'aquesta expression" + +#~ msgid "Find previous occurrence of the word or phrase" +#~ msgstr "" +#~ "Recèrca l'ocurréncia precedenta d'aqueste mot o d'aquesta expression" + +#~ msgid "P_references" +#~ msgstr "P_referéncias" + +#~ msgid "_Customize Toolbars…" +#~ msgstr "_Personalizar las barras d'aisinas..." + +#~ msgid "Customize toolbars" +#~ msgstr "Personalizar las barras d'aisinas" + +#~ msgid "_Larger Text" +#~ msgstr "A_grandir lo tèxte" + +#~ msgid "Increase the text size" +#~ msgstr "Aumenta la talha del tèxte" + +#~ msgid "S_maller Text" +#~ msgstr "_Reduire lo tèxte" + +#~ msgid "Decrease the text size" +#~ msgstr "Demesís la talha del tèxte" + +#~ msgid "Use the normal text size" +#~ msgstr "Utiliza la talha estandarda pel tèxte" + +#~ msgid "Change the text encoding" +#~ msgstr "Cambiar l'encodatge del tèxte" + +#~ msgid "Add a bookmark for the current page" +#~ msgstr "Apondre un marcapagina per la pagina actuala" + +#~ msgid "_Edit Bookmarks" +#~ msgstr "_Editar los favorits" + +#~ msgid "Hi_story" +#~ msgstr "I_storic" + +#~ msgid "Activate previous tab" +#~ msgstr "Activar l'onglet precedent" + +#~ msgid "Activate next tab" +#~ msgstr "Activar l'onglet seguent" + +#~ msgid "Move current tab to left" +#~ msgstr "Desplaçar l'onglet actual cap a esquèrra" + +#~ msgid "Move current tab to right" +#~ msgstr "Desplaçar l'onglet actual cap a dreita" + +#~ msgid "_Work Offline" +#~ msgstr "_Trabalhar desconnectat" + +#~ msgid "St_atusbar" +#~ msgstr "B_arra d'estat" + +#~ msgid "Show or hide statusbar" +#~ msgstr "Aficha o amaga la barra d'estat" + +#~ msgid "_Open Link" +#~ msgstr "_Dobrir lo ligam" + +#~ msgid "Open link in this window" +#~ msgstr "Dobrir lo ligam dins aquesta fenèstra" + +#~ msgid "Open link in a new window" +#~ msgstr "Dobrir lo ligam dins una fenèstra novèla" + +#~ msgid "Open link in a new tab" +#~ msgstr "Dobrir lo ligam dins un onglet novèl" + +#~ msgid "_Download Link" +#~ msgstr "Telecargar lo ligam" + +#~ msgid "_Copy Email Address" +#~ msgstr "_Copiar l'adreça electronica" + +#~ msgid "Open _Image" +#~ msgstr "Dobrir un _imatge" + +#~ msgid "Insecure" +#~ msgstr "Pas securizat" + +#~ msgid "Broken" +#~ msgstr "Copat" + +#~ msgid "Low" +#~ msgstr "Minimal" + +#~ msgid "High" +#~ msgstr "Nautor :" + +#~ msgid "Open image “%s”" +#~ msgstr "Dobrir l'imatge \"%s\"" + +#~ msgid "Save image “%s”" +#~ msgstr "Enregistrar l'imatge \"%s\"" + +#~ msgid "Copy image address “%s”" +#~ msgstr "Copiar l'adreça de l'imatge \"%s\"" + +#~ msgid "Copy email address “%s”" +#~ msgstr "Copiar l'adreça electronica \"%s\"" + +#~ msgid "Save link “%s”" +#~ msgstr "Enregistrar lo ligam \"%s\"" + +#~ msgid "Copy link's address “%s”" +#~ msgstr "Copiar l'adreça del ligam \"%s\"" + +#~ msgid "Path:" +#~ msgstr "Camin:" + +#~ msgid "Expires:" +#~ msgstr "Expira lo :" + +#~ msgid "Domain" +#~ msgstr "Domeni" + +#~ msgid "Host" +#~ msgstr "Òste" + +#~ msgid "User Password" +#~ msgstr "Senhal de l'utilizaire" + +#~ msgid "Download Link" +#~ msgstr "Telecargar lo ligam" + +#~ msgid "First" +#~ msgstr "Primièr" + +#~ msgid "Go to the first page" +#~ msgstr "Anar a la primièra pagina" + +#~ msgid "Last" +#~ msgstr "Darrièr" + +#~ msgid "Go to the last page" +#~ msgstr "Anar a la darrièra pagina" + +#~ msgid "Previous" +#~ msgstr "Precedent" + +#~ msgid "Go to the previous page" +#~ msgstr "Anar a la pagina precedenta" + +#~ msgid "Next" +#~ msgstr "Seguent" + +#~ msgid "Go to next page" +#~ msgstr "Anar a la pagina seguenta" + +#~ msgid "Close" +#~ msgstr "Tampar" + +#~ msgid "Close print preview" +#~ msgstr "Tampar l'apercebut abans impression" + +#~ msgid "Default" +#~ msgstr "Defaut" + +#~ msgid "language|%s (%s)" +#~ msgstr "lenga|%s (%s)" + +#~| msgid "_Reload" +#~ msgid "Reload Anyway" +#~ msgstr "Recargar malgrat tot" + +#~ msgid "Search the web" +#~ msgstr "Recercar sul Web" + +#~ msgid "https://duckduckgo.com/?t=epiphany" +#~ msgstr "https://duckduckgo.com/?t=epiphany&kl=fr-fr" + +#~ msgid "This might not be the real %s." +#~ msgstr "Il se poiriá que ce ne siá pas lo verai %s." + +#~ msgid "" +#~ "When you try to connect securely, websites present identification to " +#~ "prove that your connection has not been maliciously intercepted. There is " +#~ "something wrong with this website’s identification:" +#~ msgstr "" +#~ "Quand ensajatz de vous connecter de manière securizada, los sites Web " +#~ "présentent des donadas d'identificacion per prouver que votre connexion " +#~ "n'a pas été interceptée per des personnes malintentionnées. I a quicòm " +#~ "qui ne va pas dins las donadas d'identificacion de ce site :" + +#~ msgid "" +#~ "A third party may have hijacked your connection. You should continue only " +#~ "if you know there is a good reason why this website does not use trusted " +#~ "identification." +#~ msgstr "" +#~ "Un tiers poiriá avoir détourné vòstra connexion. Vous ne devriez " +#~ "continuer que se i a una bona rason per qu'aqueste site utiliza pas una " +#~ "identificacion fisabla." + +#~ msgid "" +#~ "Legitimate banks, stores, and other public sites will not ask you to do " +#~ "this." +#~ msgstr "" +#~ "Las bancas o comèrcis legitims e autres sites publics vos demandaràn pas " +#~ "de far aquò." + +#~ msgid "Look out!" +#~ msgstr "Atencion !" + +#~ msgctxt "accept-risk-access-key" +#~ msgid "R" +#~ msgstr "R" + +#~ msgid "Try Again" +#~ msgstr "Ensajar tornamai" + +#~ msgid "A" +#~ msgstr "A" + +#~ msgid "Load Anyway" +#~ msgstr "Cargar malgrat tot" + +#~ msgid "Remove" +#~ msgstr "Levar" + +#~ msgid "Part of this page is insecure." +#~ msgstr "Una partida d'aquesta pagina es pas securizada." + +#~ msgid "Show in folder" +#~ msgstr "Montrer dins son dorsièr" + +#~ msgid "_Use a different encoding:" +#~ msgstr "_Utilizar un encodatge diferent :" + +#~ msgid "_Downloads Bar" +#~ msgstr "Barra dels _telecargaments" + +#~ msgid "Epiphany" +#~ msgstr "Epiphany" + +#~ msgid "" +#~ "Toolbar style. Allowed values are \"\" (use GNOME default style), \"both" +#~ "\" (text and icons), \"both-horiz\" (text besides icons), \"icons\", and " +#~ "\"text\"." +#~ msgstr "" +#~ "Estil de la barra d'aisinas. Las valors autorizadas son « » (utiliza lo " +#~ "tèma per defaut de GNOME), « both » (tèxtes e icònas), « both-" +#~ "horiz» (tèxtes en dejós de s icònas), « icons » e « text ».horiz» (tèxtes " +#~ "en dejós de las icònas), « icons » e « text »." + +#~ msgid "Temporary Files" +#~ msgstr "Fichièrs temporaris" + +#~ msgid "Empathy" +#~ msgstr "Empathy" + +#~ msgid "IM Client" +#~ msgstr "Client de messagerie instantanée" + +#~ msgid "Empathy Internet Messaging" +#~ msgstr "Messagerie Internet Empathy" + +#~ msgid "Chat on Google Talk, Facebook, MSN and many other chat services" +#~ msgstr "" +#~ "Discuter sus Google Talk, Facebook, MSN e beaucoup d'autres services" + +#~ msgid "chat;talk;im;message;irc;voip;gtalk;facebook;jabber;" +#~ msgstr "" +#~ "discussion;messagerie instantanée;irc;voip;téléphonie;gtalk;facebook;" +#~ "jabber;" + +#~ msgid "" +#~ "Empathy is the official instant messaging application of the GNOME " +#~ "desktop environment. Empathy can connect to AIM, MSN, Jabber (including " +#~ "Facebook and Google Talk), IRC, and many other messaging networks. You " +#~ "can chat with text, make audio and video calls, or even transfer files, " +#~ "depending on what your contact’s chat application allows." +#~ msgstr "" +#~ "Empathy es l'aplicacion de messagerie instantanée officielle de " +#~ "l'environnement de bureau GNOME. Empathy peut se connecter aux rets " +#~ "AIM, MSN, Jabber (y compris Facebook e Google Talk), IRC e beaucoup " +#~ "d'autres. Vous pouvez discuter per textes, faire des appels audio e " +#~ "vidéo e même transférer des fichiers, selon ce que l'aplicacion de " +#~ "discussion de votre correspondant autorise." + +#~ msgid "" +#~ "Empathy provides integrated messaging for the GNOME desktop, so you’ll " +#~ "never miss a message. You can respond to your contacts without even " +#~ "having to open Empathy!" +#~ msgstr "" +#~ "Empathy provesís una intégration de la messagerie dins lo bureau GNOME, " +#~ "ainsi vous ne raterez jamais un message. Vous pouvez répondre a vos " +#~ "contacts sans même avoir a ouvrir Empathy !" + +#~ msgid "Connection managers should be used" +#~ msgstr "Les gestionnaires de connexion doivent être utilisés" + +#~ msgid "" +#~ "Whether connectivity managers should be used to automatically disconnect/" +#~ "reconnect." +#~ msgstr "" +#~ "Indica se les gestionnaires de connectivité doivent être utilisés per " +#~ "se déconnecter o se reconnecter automatiquement." + +#~ msgid "Empathy should auto-connect on startup" +#~ msgstr "Empathy doit se connecter automatiquement au démarrage" + +#~ msgid "" +#~ "Whether Empathy should automatically log into your accounts on startup." +#~ msgstr "" +#~ "Indica se Empathy doit se connecter automatiquement a vos comptes au " +#~ "démarrage." + +#~ msgid "Empathy should auto-away when idle" +#~ msgstr "" +#~ "Empathy doit se metre automatiquement en mode absent en cas d'inactivité" + +#~ msgid "" +#~ "Whether Empathy should go into away mode automatically if the user is " +#~ "idle." +#~ msgstr "" +#~ "Indica se Empathy doit se metre automatiquement en mode absent se " +#~ "l'utilisateur es inactif." + +#~ msgid "Empathy default download folder" +#~ msgstr "Dossier de téléchargement per défaut de Empathy" + +#~ msgid "The default folder to save file transfers in." +#~ msgstr "Lo dossier per défaut per enregistrer les transferts de fichiers." + +#~ msgid "Magic number used to check if sanity cleaning tasks should be run" +#~ msgstr "" +#~ "Nombre magique utilisé per vérifier se les tâches de nettoyage de sanity " +#~ "doivent être lancées" + +#~ msgid "" +#~ "empathy-sanity-cleaning.c uses this number to check if the cleaning tasks " +#~ "should be executed or not. Users should not change this key manually." +#~ msgstr "" +#~ "empathy-sanity-cleaning.c utilise ce nombre per vérifier se les tâches " +#~ "de nettoyage doivent être executadas o pas. Les utilisateurs ne devraient " +#~ "pas modifier aquesta clau manuellement." + +#~ msgid "Show offline contacts" +#~ msgstr "Afichar les contacts déconnectés" + +#~ msgid "Whether to show contacts that are offline in the contact list." +#~ msgstr "" +#~ "Indica se cal afichar les contacts que son déconnectés dins la " +#~ "lista des contacts." + +#~ msgid "Show Balance in contact list" +#~ msgstr "Afichar lo solde dins la liste des contacts" + +#~ msgid "Whether to show account balances in the contact list." +#~ msgstr "" +#~ "Indica se cal afichar les soldes de compte dins la liste des " +#~ "contacts." + +#~ msgid "Hide main window" +#~ msgstr "Masquer la fenèstra principale" + +#~ msgid "Hide the main window." +#~ msgstr "Masque la fenèstra principale." + +#~ msgid "Default directory to select an avatar image from" +#~ msgstr "Répertoire per défaut où choisir un avatar" + +#~ msgid "The last directory that an avatar image was chosen from." +#~ msgstr "Dernier répertoire où un avatar a été choisi." + +#~ msgid "Open new chats in separate windows" +#~ msgstr "Ouvrir les nouvelles discussions dins des fenèstras separadas" + +#~ msgid "Always open a separate chat window for new chats." +#~ msgstr "" +#~ "Toujours ouvrir una fenèstra de discussion separada per les nouvelles " +#~ "discussions." + +#~ msgid "Display incoming events in the status area" +#~ msgstr "Afichar les eveniments entrants dins la zone d'état" + +#~ msgid "" +#~ "Display incoming events in the status area. If false, present them to the " +#~ "user immediately." +#~ msgstr "" +#~ "Afichar les eveniments entrants dins la zone d'état. Se défini a faux, " +#~ "les eveniments son immédiatement présentés a l'utilisateur." + +#~ msgid "The position for the chat window side pane" +#~ msgstr "La position del volet latéral de la fenèstra de discussion" + +#~ msgid "The stored position (in pixels) of the chat window side pane." +#~ msgstr "" +#~ "La position enregistrée (en pixels) del volet latéral de la fenèstra de " +#~ "discussion." + +#~ msgid "Show contact groups" +#~ msgstr "Afichar les groupes de contacts" + +#~ msgid "Whether to show groups in the contact list." +#~ msgstr "Indica se cal afichar les groupes dins la liste des contacts." + +#~ msgid "Use notification sounds" +#~ msgstr "Utiliser des sons de notification" + +#~ msgid "Whether to play a sound to notify of events." +#~ msgstr "Indica se cal emetre un son per signaler des eveniments." + +#~ msgid "Disable sounds when away" +#~ msgstr "Désactiver les sons en mode absent" + +#~ msgid "Whether to play sound notifications when away or busy." +#~ msgstr "" +#~ "Indica se cal emetre des sons en cas d'absence o d'indisponibilité." + +#~ msgid "Play a sound for incoming messages" +#~ msgstr "Emetre un son lors de la réception des messages" + +#~ msgid "Whether to play a sound to notify of incoming messages." +#~ msgstr "" +#~ "Indica se cal emetre un son per avertir de l'arrivée de messages." + +#~ msgid "Play a sound for outgoing messages" +#~ msgstr "Emetre un son lors de l'envoi des messages" + +#~ msgid "Whether to play a sound to notify of outgoing messages." +#~ msgstr "" +#~ "Indica se cal emetre un son per signaler qu'un message es envoyé." + +#~ msgid "Play a sound for new conversations" +#~ msgstr "Emetre un son lors de nouvelles discussions" + +#~ msgid "Whether to play a sound to notify of new conversations." +#~ msgstr "" +#~ "Indica se cal emetre un son per signaler de nouvelles conversations." + +#~ msgid "Play a sound when a contact logs in" +#~ msgstr "Emetre un son lorsqu'un contact se connecte" + +#~ msgid "" +#~ "Whether to play a sound to notify of contacts logging into the network." +#~ msgstr "" +#~ "Indica se cal emetre un son per avertir lorsque des contacts se " +#~ "connectent au ret." + +#~ msgid "Play a sound when a contact logs out" +#~ msgstr "Emetre un son lorsqu'un contact se déconnecte" + +#~ msgid "" +#~ "Whether to play a sound to notify of contacts logging out of the network." +#~ msgstr "" +#~ "Indica se cal emetre un son per avertir lorsque des contacts se " +#~ "déconnectent del ret." + +#~ msgid "Play a sound when we log in" +#~ msgstr "Emetre un son lors de la connexion" + +#~ msgid "Whether to play a sound when logging into a network." +#~ msgstr "Indica se cal emetre un son lors de la connexion a un ret." + +#~ msgid "Play a sound when we log out" +#~ msgstr "Emetre un son lors de la déconnexion" + +#~ msgid "Whether to play a sound when logging out of a network." +#~ msgstr "" +#~ "Indica se cal emetre un son lors de la déconnexion d'un ret." + +#~ msgid "Enable popup notifications for new messages" +#~ msgstr "Activer les bulles de notification per les nouveaux messages" + +#~ msgid "Whether to show a popup notification when receiving a new message." +#~ msgstr "" +#~ "Indica se cal afichar una bulle de notification lorsqu'un message " +#~ "est reçu." + +#~ msgid "Disable popup notifications when away" +#~ msgstr "Désactiver les bulles de notification en mode absent" + +#~ msgid "Whether to show popup notifications when away or busy." +#~ msgstr "" +#~ "Indica se cal afichar des notifications en cas d'absence o " +#~ "d'indisponibilité." + +#~ msgid "Pop up notifications if the chat isn't focused" +#~ msgstr "Bulles de notification se la discussion n'est pas au premier plan" + +#~ msgid "" +#~ "Whether to show a popup notification when receiving a new message even if " +#~ "the chat is already opened, but not focused." +#~ msgstr "" +#~ "Indica se cal afichar una bulle de notification lorsqu'un message " +#~ "est reçu, même se la discussion es ouverte, mais sans être au premier " +#~ "plan." + +#~ msgid "Pop up notifications when a contact logs in" +#~ msgstr "Bulles de notification lorsqu'un contact se connecte" + +#~ msgid "Whether to show a popup notification when a contact goes online." +#~ msgstr "" +#~ "Indica se cal afichar una bulle de notification lorsqu'un contact se " +#~ "connecte." + +#~ msgid "Pop up notifications when a contact logs out" +#~ msgstr "Bulles de notification lorsqu'un contact se déconnecte" + +#~ msgid "Whether to show a popup notification when a contact goes offline." +#~ msgstr "" +#~ "Indica se cal afichar una bulle de notification lorsqu'un contact se " +#~ "déconnecte." + +#~ msgid "Use graphical smileys" +#~ msgstr "Utiliser des frimousses graphiques" + +#~ msgid "Whether to convert smileys into graphical images in conversations." +#~ msgstr "" +#~ "Indica se cal cambiar les frimousses en images graphiques dins les " +#~ "conversations." + +#~ msgid "Show contact list in rooms" +#~ msgstr "Afichar la liste des contacts dins les salons" + +#~ msgid "Whether to show the contact list in chat rooms." +#~ msgstr "" +#~ "Indica se cal afichar la liste des contacts dins les salons de " +#~ "discussion." + +#~ msgid "Chat window theme" +#~ msgstr "Thème de la fenèstra de discussion" + +#~ msgid "The theme that is used to display the conversation in chat windows." +#~ msgstr "Lo thème utilisé per l'afichatge dins les fenèstras de discussion." + +#~ msgid "Chat window theme variant" +#~ msgstr "Variante del thème de la fenèstra de discussion" + +#~ msgid "" +#~ "The theme variant that is used to display the conversation in chat " +#~ "windows." +#~ msgstr "" +#~ "La variante de thème utilisée per l'afichatge des conversations dins les " +#~ "fenèstras de discussion." + +#~ msgid "Path of the Adium theme to use" +#~ msgstr "Chemin a utiliser vers lo thème Adium" + +#~ msgid "" +#~ "Path of the Adium theme to use if the theme used for chat is Adium. " +#~ "Deprecated." +#~ msgstr "" +#~ "Chemin a utiliser vers lo thème Adium se un thème Adium es choisi per " +#~ "les discussions." + +#~ msgid "Enable WebKit Developer Tools" +#~ msgstr "Activer les outils de développement WebKit" + +#~ msgid "" +#~ "Whether WebKit developer tools, such as the Web Inspector, should be " +#~ "enabled." +#~ msgstr "" +#~ "Indica se les outils de développement WebKit, tels que Web Inspector, " +#~ "doivent être activés." + +#~ msgid "Inform other users when you are typing to them" +#~ msgstr "" +#~ "Informer les autres utilisateurs lorsque vous êtes en train de leur écrire" + +#~ msgid "" +#~ "Whether to send the 'composing' or 'paused' chat states. Does not " +#~ "currently affect the 'gone' state." +#~ msgstr "" +#~ "Indica se cal envoyer les statuts de discussion « en train d'écrire » " +#~ "ou « en pause ». N'affecte pas actualament lo statut « Parti »." + +#~ msgid "Use theme for chat rooms" +#~ msgstr "Utiliser des thèmes per les salons de discussion" + +#~ msgid "Whether to use the theme for chat rooms." +#~ msgstr "" +#~ "Indica se cal utiliser les thèmes per les salons de discussion." + +#~ msgid "Spell checking languages" +#~ msgstr "Langues de la correction orthographique" + +#~ msgid "" +#~ "Comma-separated list of spell checker languages to use (e.g. \"en, fr, nl" +#~ "\")." +#~ msgstr "" +#~ "Liste separada per des virgules des langues a utiliser per la correction " +#~ "orthographique (par ex. : en, fr, nl)." + +#~ msgid "Enable spell checker" +#~ msgstr "Activer lo correcteur orthographique" + +#~ msgid "" +#~ "Whether to check words typed against the languages you want to check with." +#~ msgstr "" +#~ "Indica se cal vérifier l'orthographe des mots saisis selon les " +#~ "langues choisies." + +#~ msgid "Nick completed character" +#~ msgstr "Caractère d'auto-complétion del pseudonyme" + +#~ msgid "" +#~ "Character to add after nickname when using nick completion (tab) in group " +#~ "chat." +#~ msgstr "" +#~ "Caractère a ajouter a la suite del pseudonyme lors de l'utilisation de " +#~ "l'auto-complétion del pseudonyme (tabulation) dins un groupe de discussion." + +#~ msgid "Empathy should use the avatar of the contact as the chat window icon" +#~ msgstr "" +#~ "Empathy doit utiliser l'avatar del contact comme icône de fenèstra de " +#~ "discussion" + +#~ msgid "" +#~ "Whether Empathy should use the avatar of the contact as the chat window " +#~ "icon." +#~ msgstr "" +#~ "Indica se Empathy doit utiliser l'avatar des contacts comme icône de " +#~ "fenèstra de discussion." + +#~ msgid "Last account selected in Join Room dialog" +#~ msgstr "" +#~ "Dernier compte sélectionné dins la boîte de dialogue Joindre lo salon" + +#~ msgid "D-Bus object path of the last account selected to join a room." +#~ msgstr "" +#~ "Chemin vers l'objet D-Bus del dernier compte sélectionné per rejoindre " +#~ "une salon." + +#~ msgid "Camera device" +#~ msgstr "Périphérique caméra" + +#~ msgid "Default camera device to use in video calls, e.g. /dev/video0." +#~ msgstr "" +#~ "Périphérique caméra utilisé per défaut lors des appels vidéos, per ex. /" +#~ "dev/video0." + +#~ msgid "Camera position" +#~ msgstr "Position de la caméra" + +#~ msgid "Position the camera preview should be during a call." +#~ msgstr "Position de la prévisualisation de la caméra pendant un appel." + +#~ msgid "Echo cancellation support" +#~ msgstr "Prise en charge de l'annulation d'écho" + +#~ msgid "Whether to enable Pulseaudio's echo cancellation filter." +#~ msgstr "" +#~ "Indica se cal utiliser Pulseaudio per utiliser lo filtre anti-écho." + +#~ msgid "Show hint about closing the main window" +#~ msgstr "Afichar una astuce sus la fermeture de la fenèstra principale" + +#~ msgid "" +#~ "Whether to show the message dialog about closing the main window with the " +#~ "'x' button in the title bar." +#~ msgstr "" +#~ "Indica se cal afichar la boîte de dialogue au sujet de la fermeture " +#~ "de la fenèstra principale avec lo boton « x » dins la barra de títol." + +#~ msgid "Empathy can publish the user's location" +#~ msgstr "Empathy peut publier la position de l'utilisateur" + +#~ msgid "Whether Empathy can publish the user's location to their contacts." +#~ msgstr "" +#~ "Indica se Empathy peut publier la position de l'utilisateur a ses " +#~ "contacts." + +#~ msgid "Empathy should reduce the location's accuracy" +#~ msgstr "Empathy doit reduire la precision de la position" + +#~ msgid "" +#~ "Whether Empathy should reduce the location's accuracy for privacy reasons." +#~ msgstr "" +#~ "Indica se Empathy doit reduire la precision de la position per des " +#~ "raisons de confidentialité." + +#~ msgid "No reason was specified" +#~ msgstr "Aucune raison n'a été indicada" + +#~ msgid "The change in state was requested" +#~ msgstr "Lo changement d'état a été demandé" + +#~ msgid "You canceled the file transfer" +#~ msgstr "Vous avez annulé lo transfert de fichier" + +#~ msgid "The other participant canceled the file transfer" +#~ msgstr "Lo correspondant a annulé lo transfert de fichier" + +#~ msgid "Error while trying to transfer the file" +#~ msgstr "Erreur lors del téléchargement del fichier" + +#~ msgid "The other participant is unable to transfer the file" +#~ msgstr "Lo correspondant n'est pas capable de transférer lo fichier" + +#~ msgid "Unknown reason" +#~ msgstr "Raison inconnue" + +#~ msgid "File transfer completed, but the file was corrupted" +#~ msgstr "Transfert de fichier terminé, mais lo fichier était corrompu" + +#~ msgid "File transfer not supported by remote contact" +#~ msgstr "" +#~ "Lo transfert de fichiers n'est pas pris en charge per lo contact distant" + +#~ msgid "The selected file is not a regular file" +#~ msgstr "Lo fichier sélectionné n'est pas un fichier conventionnel" + +#~ msgid "The selected file is empty" +#~ msgstr "Lo fichier sélectionné es vide" + +#~ msgid "Missed call from %s" +#~ msgstr "Appel manqué de %s" + +#~ msgid "Called %s" +#~ msgstr "Conversation avec %s" + +#~ msgid "Call from %s" +#~ msgstr "Appel de %s" + +#~ msgid "Available" +#~ msgstr "Disponible" + +#~ msgid "Busy" +#~ msgstr "Occupé" + +#~ msgid "Away" +#~ msgstr "Absent" + +#~ msgid "Invisible" +#~ msgstr "Invisible" + +#~ msgid "Offline" +#~ msgstr "Déconnecté" + +#~ msgid "No reason specified" +#~ msgstr "Aucune raison n'a été indicada" + +#~ msgid "Status is set to offline" +#~ msgstr "L'état es « déconnecté »" + +#~ msgid "Network error" +#~ msgstr "Erreur ret" + +#~ msgid "Authentication failed" +#~ msgstr "L'authentification a échoué" + +#~ msgid "Encryption error" +#~ msgstr "Erreur de chiffrement" + +#~ msgid "Name in use" +#~ msgstr "Nom déjà utilisé" + +#~ msgid "Certificate not provided" +#~ msgstr "Certificat non fourni" + +#~ msgid "Certificate untrusted" +#~ msgstr "Certificat non validé" + +#~ msgid "Certificate expired" +#~ msgstr "Lo certificat a expiré" + +#~ msgid "Certificate not activated" +#~ msgstr "Certificat non activé" + +#~ msgid "Certificate hostname mismatch" +#~ msgstr "Lo nom de l'hôte del certificat ne correspond pas" + +#~ msgid "Certificate fingerprint mismatch" +#~ msgstr "L'empreinte del certificat ne correspond pas" + +#~ msgid "Certificate self-signed" +#~ msgstr "Certificat auto-signé" + +#~ msgid "Certificate error" +#~ msgstr "Erreur de certificat" + +#~ msgid "Encryption is not available" +#~ msgstr "Chiffrement non disponible" + +#~ msgid "Certificate is invalid" +#~ msgstr "Lo certificat n'est pas valide" + +#~ msgid "Connection has been refused" +#~ msgstr "La connexion a été refusée" + +#~ msgid "Connection can't be established" +#~ msgstr "La connexion ne peut pas être établie" + +#~ msgid "Connection has been lost" +#~ msgstr "La connexion a été perdue" + +#~ msgid "This account is already connected to the server" +#~ msgstr "Ce compte es déjà connecté au serveur" + +#~ msgid "" +#~ "Connection has been replaced by a new connection using the same resource" +#~ msgstr "" +#~ "La connexion a été remplacée per una nouvelle connexion utilisant la même " +#~ "ressorsa" + +#~ msgid "The account already exists on the server" +#~ msgstr "Ce compte existe déjà sus lo serveur" + +#~ msgid "Server is currently too busy to handle the connection" +#~ msgstr "Lo serveur es actualament trop chargé per traiter la connexion" + +#~ msgid "Certificate has been revoked" +#~ msgstr "Lo certificat a été révoqué" + +#~ msgid "" +#~ "Certificate uses an insecure cipher algorithm or is cryptographically weak" +#~ msgstr "" +#~ "Lo certificat utilise un algorithme de chiffrement douteux o es " +#~ "cryptographiquement faible" + +#~ msgid "" +#~ "The length of the server certificate, or the depth of the server " +#~ "certificate chain, exceed the limits imposed by the cryptography library" +#~ msgstr "" +#~ "La longaur del certificat del serveur o la profondeur de la chaîne del " +#~ "certificat del serveur dépasse les limites imposées per la bibliothèque de " +#~ "cryptographie" + +#~ msgid "Your software is too old" +#~ msgstr "Votre version de logiciel es trop vieille" + +#~ msgid "Internal error" +#~ msgstr "Erreur interne" + +#~ msgid "All accounts" +#~ msgstr "Tous les comptes" + +#~ msgid "Click to enlarge" +#~ msgstr "Clicar per agrandir" + +#~ msgid "Authentication failed for account %s" +#~ msgstr "L'authentification a échoué per lo compte %s" + +#~ msgid "Retry" +#~ msgstr "Réessayer" + +#~ msgid "" +#~ "Enter your password for account\n" +#~ "%s" +#~ msgstr "" +#~ "Saisissez lo mot de passe del compte\n" +#~ "%s" + +#~ msgid "Remember password" +#~ msgstr "Se souvenir del mot de passe" + +#~ msgid "There was an error starting the call" +#~ msgstr "Una erreur es survenue au démarrage de l'appel" + +#~ msgid "The specified contact doesn't support calls" +#~ msgstr "Lo contact spécifié ne prend pas en charge les appels" + +#~ msgid "The specified contact is offline" +#~ msgstr "Lo contact spécifié es hors ligne." + +#~ msgid "The specified contact is not valid" +#~ msgstr "Lo contact spécifié n'est pas valable" + +#~ msgid "Emergency calls are not supported on this protocol" +#~ msgstr "" +#~ "L'utilisation des appels d'urgence n'est pas pris en charge per ce " +#~ "protocole" + +#~ msgid "You don't have enough credit in order to place this call" +#~ msgstr "Vous n'avez pas assez de crédit per passer cet appel" + +#~ msgid "Failed to open private chat" +#~ msgstr "Impossible d'ouvrir una discussion privée" + +#~ msgid "Topic not supported on this conversation" +#~ msgstr "" +#~ "L'utilisation d'un sujet n'est pas pris en charge per aquesta conversation" + +#~ msgid "You are not allowed to change the topic" +#~ msgstr "Vous n'êtes pas autorisé a modifier lo sujet" + +#~ msgid "Invalid contact ID" +#~ msgstr "Identifiant de contact non valide" + +#~ msgid "/clear: clear all messages from the current conversation" +#~ msgstr "/clear : efface tous les messages de la conversation actuala" + +#~ msgid "/topic : set the topic of the current conversation" +#~ msgstr "/topic : définit lo sujet de la conversation actuala" + +#~ msgid "/join : join a new chat room" +#~ msgstr "/join : rejoint un nouveau salon de discussion" + +#~ msgid "/j : join a new chat room" +#~ msgstr "/j : rejoint un nouveau salon de discussion" + +#~ msgid "" +#~ "/part [] []: leave the chat room, by default the " +#~ "current one" +#~ msgstr "" +#~ "/part [] [] : quitte lo salon de discussion ; per " +#~ "défaut, lo salon actuel" + +#~ msgid "/query []: open a private chat" +#~ msgstr "/query [] : ouvre una discussion privée" + +#~ msgid "/msg : open a private chat" +#~ msgstr "/msg : ouvre una discussion privée" + +#~ msgid "/nick : change your nickname on the current server" +#~ msgstr "/nick : modifie votre pseudonyme sus lo serveur actuel" + +#~ msgid "/me : send an ACTION message to the current conversation" +#~ msgstr "" +#~ "/me : envoie un message d'action dins la conversation actuala" + +#~ msgid "" +#~ "/say : send to the current conversation. This is used " +#~ "to send a message starting with a '/'. For example: \"/say /join is used " +#~ "to join a new chat room\"" +#~ msgstr "" +#~ "/say : envoie lo dins la conversation actuala. " +#~ "Utilisé per envoyer un message commençant per un « / ». Par exemple : « /" +#~ "say /join es utilisé per rejoindre un nouveau salon de discussion »" + +#~ msgid "/whois : display information about a contact" +#~ msgstr "" +#~ "/whois : affiche las informacions a propos de ce contact" + +#~ msgid "" +#~ "/help []: show all supported commands. If is defined, " +#~ "show its usage." +#~ msgstr "" +#~ "/help [] : affiche totas las commandes prises en charge. Se " +#~ " es definida, affiche son utilisation." + +#~ msgid "Usage: %s" +#~ msgstr "Utilisation : %s" + +#~ msgid "Unknown command" +#~ msgstr "Commande inconnue" + +#~ msgid "Unknown command; see /help for the available commands" +#~ msgstr "" +#~ "Commande inconnue ; utilisez /help per obtenir les commandes disponibles" + +#~ msgid "insufficient balance to send message" +#~ msgstr "solde insuffisant per envoyer un message" + +#~ msgid "Error sending message '%s': %s" +#~ msgstr "Erreur a l'envoi del message « %s » : %s" + +#~ msgid "Error sending message: %s" +#~ msgstr "Erreur a l'envoi del message : %s" + +#~ msgid "insufficient balance to send message.
Top up." +#~ msgstr "" +#~ "solde insuffisant per envoyer un message. Créditer." + +#~ msgid "not capable" +#~ msgstr "non capable" + +#~ msgid "offline" +#~ msgstr "déconnecté" + +#~ msgid "invalid contact" +#~ msgstr "contact non valide" + +#~ msgid "permission denied" +#~ msgstr "permission refusée" + +#~ msgid "too long message" +#~ msgstr "message trop long" + +#~ msgid "not implemented" +#~ msgstr "non implémenté" + +#~ msgid "unknown" +#~ msgstr "inconnu" + +#~ msgid "Topic:" +#~ msgstr "Sujet :" + +#~ msgid "Topic set to: %s" +#~ msgstr "Sujet défini : %s" + +#~ msgid "Topic set by %s to: %s" +#~ msgstr "Sujet défini per %s a : %s" + +#~ msgid "No topic defined" +#~ msgstr "Pas de sujet défini" + +#~ msgid "(No Suggestions)" +#~ msgstr "(aucune suggestion)" + +#~ msgid "Add '%s' to Dictionary" +#~ msgstr "Ajouter « %s » au dictionnaire" + +#~ msgid "Add '%s' to %s Dictionary" +#~ msgstr "Ajouter « %s » au dictionnaire %s" + +#~ msgid "Insert Smiley" +#~ msgstr "Insérer la frimousse" + +#~ msgid "_Spelling Suggestions" +#~ msgstr "_Suggestions orthographiques" + +#~ msgid "Failed to retrieve recent logs" +#~ msgstr "Impossible de retrouver les journaux récents" + +#~ msgid "%s has disconnected" +#~ msgstr "%s s'est déconnecté" + +#~ msgid "%1$s was kicked by %2$s" +#~ msgstr "%1$s a été expulsé per %2$s" + +#~ msgid "%s was kicked" +#~ msgstr "%s a été expulsé" + +#~ msgid "%1$s was banned by %2$s" +#~ msgstr "%1$s a été banni per %2$s" + +#~ msgid "%s was banned" +#~ msgstr "%s a été banni" + +#~ msgid "%s has left the room" +#~ msgstr "%s a quitté lo salon" + +#~ msgid " (%s)" +#~ msgstr " (%s)" + +#~ msgid "%s has joined the room" +#~ msgstr "%s a rejoint lo salon" + +#~ msgid "%s is now known as %s" +#~ msgstr "%s es maintenant connu sous lo nom de %s" + +#~ msgid "Disconnected" +#~ msgstr "Déconnecté" + +#~ msgid "Would you like to store this password?" +#~ msgstr "Souhaitez-vous enregistrer ce mot de passe ?" + +#~ msgid "Remember" +#~ msgstr "Conserver" + +#~ msgid "Not now" +#~ msgstr "Pas maintenant" + +#~ msgid "Wrong password; please try again:" +#~ msgstr "Mot de passe incorrect ; essayez de nouveau :" + +#~ msgid "This room is protected by a password:" +#~ msgstr "Ce salon es protégé per un mot de passe :" + +#~ msgid "Join" +#~ msgstr "Rejoindre" + +#~ msgid "Connected" +#~ msgstr "Connecté" + +#~ msgid "Conversation" +#~ msgstr "Conversation" + +#~ msgid "%s (SMS)" +#~ msgstr "%s (SMS)" + +#~ msgid "Unknown or invalid identifier" +#~ msgstr "Identifiant inconnu o non valide" + +#~ msgid "Contact blocking temporarily unavailable" +#~ msgstr "Blocage de contacts temporairement non disponible" + +#~ msgid "Contact blocking unavailable" +#~ msgstr "Blocage de contacts non disponible" + +#~ msgid "Permission Denied" +#~ msgstr "permission refusée" + +#~ msgid "Could not block contact" +#~ msgstr "Impossible de bloquer lo contact" + +#~ msgid "Edit Blocked Contacts" +#~ msgstr "Modifier les contacts bloqués" + +#~ msgid "Account:" +#~ msgstr "Compte :" + +#~ msgid "Blocked Contacts" +#~ msgstr "Contacts bloqués" + +#~ msgid "Search contacts" +#~ msgstr "Recherche de contacts" + +#~ msgid "Search: " +#~ msgstr "Rechercher : " + +#~ msgid "_Add Contact" +#~ msgstr "A_jouter lo contact" + +#~ msgid "No contacts found" +#~ msgstr "Aucun contact trouvé" + +#~ msgid "Contact search is not supported on this account" +#~ msgstr "La recherche de contacts n'est pas prise en charge sus ce compte" + +#~ msgid "Your message introducing yourself:" +#~ msgstr "Lo message vous présentant :" + +#~ msgid "Please let me see when you're online. Thanks!" +#~ msgstr "Merci de m'autoriser a voir quand vous êtes connecté !" + +#~ msgid "Save Avatar" +#~ msgstr "Enregistrer l'avatar" + +#~ msgid "Unable to save avatar" +#~ msgstr "Impossible d'enregistrer l'avatar" + +#~ msgid "Account" +#~ msgstr "Compte" + +#~ msgid "Identifier" +#~ msgstr "Identifiant" + +#~ msgid "Alias" +#~ msgstr "Alias" + +#~ msgid "Contact Details" +#~ msgstr "Détails sus lo contact" + +#~ msgid "Information requested…" +#~ msgstr "Demande d'informations en cours…" + +#~ msgid "Location at (date)\t" +#~ msgstr "Position lo (date)\t" + +#~ msgid "Client Information" +#~ msgstr "Informations del client" + +#~ msgid "OS" +#~ msgstr "OS" + +#~ msgid "Version" +#~ msgstr "Version" + +#~ msgid "Client" +#~ msgstr "Client" + +#~ msgid "Groups" +#~ msgstr "Groupes" + +#~ msgid "" +#~ "Select the groups you want this contact to appear in. Note that you can " +#~ "select more than one group or no groups." +#~ msgstr "" +#~ "Sélectionnez les groupes auxquels ce contact appartiendra ; vous pouvez " +#~ "sélectionner plus d'un groupe o aucun groupe." + +#~ msgid "_Add Group" +#~ msgstr "_Ajouter un groupe" + +#~ msgctxt "verb in a column header displaying group names" +#~ msgid "Select" +#~ msgstr "Sélectionner" + +#~ msgid "Group" +#~ msgstr "Groupe" + +#~ msgid "New Contact" +#~ msgstr "Nouveau contact" + +#~ msgid "Block %s?" +#~ msgstr "Bloquer %s ?" + +#~ msgid "Are you sure you want to block '%s' from contacting you again?" +#~ msgstr "Voulez-vous vraiment empêcher « %s » de vous contacter a nouveau ?" + +#~ msgid "The following identity will be blocked:" +#~ msgid_plural "The following identities will be blocked:" +#~ msgstr[0] "La personne suivante va être bloquée :" +#~ msgstr[1] "Les personnes suivantes vont être bloquées :" + +#~ msgid "The following identity can not be blocked:" +#~ msgid_plural "The following identities can not be blocked:" +#~ msgstr[0] "La personne suivante ne peut pas être bloquée :" +#~ msgstr[1] "Les personnes suivantes ne peuvent pas être bloquées :" + +#~ msgid "_Block" +#~ msgstr "_Bloquer" + +#~ msgid "_Report this contact as abusive" +#~ msgid_plural "_Report these contacts as abusive" +#~ msgstr[0] "_Signaler ce contact comme abusif" +#~ msgstr[1] "_Signaler ces contacts comme abusifs" + +#~ msgid "Edit Contact Information" +#~ msgstr "Modifier las informacions del contact" + +#~ msgid "Linked Contacts" +#~ msgstr "Contacts liés" + +#~ msgid "gnome-contacts not installed" +#~ msgstr "gnome-contacts n'est pas installé" + +#~ msgid "Please install gnome-contacts to access contacts details." +#~ msgstr "Installez gnome-contacts per accéder aux détails des contacts." + +#~ msgid "%s (%s)" +#~ msgstr "%s (%s)" + +#~ msgid "Select account to use to place the call" +#~ msgstr "Sélectionner lo compte a utiliser per passer l'appel" + +#~ msgid "Call" +#~ msgstr "Appel" + +#~ msgid "Mobile" +#~ msgstr "Mobile" + +#~ msgid "HOME" +#~ msgstr "Maison" + +#~ msgid "Call %s (%s)" +#~ msgstr "Apelar %s (%s)" + +#~ msgid "Call %s" +#~ msgstr "Apelar %s" + +#~ msgid "_Block Contact" +#~ msgstr "_Bloquer lo contact" + +#~ msgid "Remove from _Group '%s'" +#~ msgstr "Retirer del _groupe « %s »" + +#~ msgid "Delete and _Block" +#~ msgstr "Supprimer e _bloquer" + +#~ msgid "Do you really want to remove the contact '%s'?" +#~ msgstr "Voulez-vous vraiment supprimer lo contact « %s » ?" + +#~ msgid "" +#~ "Do you really want to remove the linked contact '%s'? Note that this will " +#~ "remove all the contacts which make up this linked contact." +#~ msgstr "" +#~ "Voulez-vous vraiment supprimer lo contact lié « %s » ? Sachez que cela " +#~ "supprimera tous les contacts que composent ce contact lié." + +#~ msgid "Removing contact" +#~ msgstr "Suppression del contact" + +#~ msgid "_Chat" +#~ msgstr "Dis_cussion" + +#~ msgid "_SMS" +#~ msgstr "_SMS" + +#~ msgctxt "menu item" +#~ msgid "_Audio Call" +#~ msgstr "Appel _audio" + +#~ msgctxt "menu item" +#~ msgid "_Video Call" +#~ msgstr "Appel _vidéo" + +#~ msgid "_Previous Conversations" +#~ msgstr "Conversations _précédentes" + +#~ msgid "Send File" +#~ msgstr "Envoyer un fichier" + +#~ msgid "Share My Desktop" +#~ msgstr "Partager mon bureau" + +#~ msgid "Favorite" +#~ msgstr "Favori" + +#~ msgid "Infor_mation" +#~ msgstr "Infor_mations" + +#~ msgid "Inviting you to this room" +#~ msgstr "Vous invite a ce salon" + +#~ msgid "_Invite to Chat Room" +#~ msgstr "_Inviter a un salon de discussion" + +#~ msgid "_Add Contact…" +#~ msgstr "A_jouter un contact…" + +#~ msgid "Do you really want to remove the group '%s'?" +#~ msgstr "Voulez-vous vraiment supprimer lo groupe « %s » ?" + +#~ msgid "Removing group" +#~ msgstr "Suppression del groupe" + +#~ msgid "Re_name" +#~ msgstr "Re_nommer" + +#~ msgid "Channels:" +#~ msgstr "Canaux :" + +#~ msgid "Country ISO Code:" +#~ msgstr "Code ISO del pays :" + +#~ msgid "Country:" +#~ msgstr "Pays :" + +#~ msgid "State:" +#~ msgstr "État :" + +#~ msgid "City:" +#~ msgstr "Ville :" + +#~ msgid "Area:" +#~ msgstr "Région :" + +#~ msgid "Postal Code:" +#~ msgstr "Code postal :" + +#~ msgid "Street:" +#~ msgstr "Rue :" + +#~ msgid "Building:" +#~ msgstr "Bâtiment :" + +#~ msgid "Floor:" +#~ msgstr "Étage :" + +#~ msgid "Room:" +#~ msgstr "Salon :" + +#~ msgid "Text:" +#~ msgstr "Texte :" + +#~ msgid "Description:" +#~ msgstr "Description :" + +#~ msgid "URI:" +#~ msgstr "URI :" + +#~ msgid "Accuracy Level:" +#~ msgstr "Niveau de precision :" + +#~ msgid "Error:" +#~ msgstr "Erreur :" + +#~ msgid "Vertical Error (meters):" +#~ msgstr "Erreur verticala (mètres) :" + +#~ msgid "Horizontal Error (meters):" +#~ msgstr "Erreur orizontala (mètres) :" + +#~ msgid "Speed:" +#~ msgstr "Velocitat :" + +# http://fr.wikipedia.org/wiki/Rel%C3%A8vement +#~ msgid "Bearing:" +#~ msgstr "Relèvement :" + +#~ msgid "Climb Speed:" +#~ msgstr "Velocitat ascensionnelle :" + +#~ msgid "Last Updated on:" +#~ msgstr "Dernière mesa a jour lo :" + +#~ msgid "Longitude:" +#~ msgstr "Longitude :" + +#~ msgid "Latitude:" +#~ msgstr "Latitude :" + +#~ msgid "Altitude:" +#~ msgstr "Altitude :" + +#~ msgid "%s, %s" +#~ msgstr "%s, %s" + +#~ msgid "%B %e, %Y at %R UTC" +#~ msgstr "%e %B %Y a %R UTC" + +#~ msgid "Alias:" +#~ msgstr "Alias :" + +#~ msgid "Identifier:" +#~ msgstr "Identifiant :" + +#~ msgid "Linked contact containing %u contact" +#~ msgid_plural "Linked contacts containing %u contacts" +#~ msgstr[0] "Contact lié contenant %u contact" +#~ msgstr[1] "Contacts liés contenant %u contacts" + +#~ msgid "Location at (date)" +#~ msgstr "Position lo (date)" + +#~ msgid "Online from a phone or mobile device" +#~ msgstr "En ligne a partir d'un téléphone o d'un appareil portable" + +#~ msgid "" +#~ "Empathy can automatically discover and chat with the people connected on " +#~ "the same network as you. If you want to use this feature, please check " +#~ "that the details below are correct." +#~ msgstr "" +#~ "Empathy peut automatiquement trouver e discuter avec les personnes que " +#~ "sont connectées sus lo même ret que vous. Se vous voulez utiliser " +#~ "cette fonctionnalité, vérifiez que les détails ci-dessous son corrects." + +#~ msgid "People nearby" +#~ msgstr "Personnes a proximité" + +#~ msgid "" +#~ "You can change these details later or disable this feature by choosing " +#~ "Edit → Accounts in the Contact List." +#~ msgstr "" +#~ "Vous pouvez facilement modifier ces détails plus tard o désactiver aquesta " +#~ "fonctionnalité en choisissant Édition → Comptes dins la liste des contacts." + +#~ msgid "Show" +#~ msgstr "Afichar" + +#~ msgid "Chat in %s" +#~ msgstr "Discussion per %s" + +#~ msgid "Chat with %s" +#~ msgstr "Discussion avec %s" + +#~ msgctxt "A date with the time" +#~ msgid "%A, %e %B %Y %X" +#~ msgstr "%A %e %B %Y %X" + +#~ msgid "* %s %s" +#~ msgstr "* %s %s" + +#~ msgid "%s: %s" +#~ msgstr "%s : %s" + +#~ msgid "%s second" +#~ msgid_plural "%s seconds" +#~ msgstr[0] "%s seconde" +#~ msgstr[1] "%s secondes" + +#~ msgid "%s minute" +#~ msgid_plural "%s minutes" +#~ msgstr[0] "%s minute" +#~ msgstr[1] "%s minutes" + +#~ msgid "Call took %s, ended at %s" +#~ msgstr "L'appel a duré %s, s'est terminé a %s" + +#~ msgid "Yesterday" +#~ msgstr "Hier" + +#~ msgid "%e %B %Y" +#~ msgstr "%e %B %Y" + +#~ msgid "Anytime" +#~ msgstr "N'importe quand" + +#~ msgid "Anyone" +#~ msgstr "N'importe qui" + +#~ msgid "Who" +#~ msgstr "Qui" + +#~ msgid "When" +#~ msgstr "Quand" + +#~ msgid "Anything" +#~ msgstr "N'importe quoi" + +#~ msgid "Text chats" +#~ msgstr "Textes de discussion" + +#~ msgid "Calls" +#~ msgstr "Appels" + +#~ msgid "Incoming calls" +#~ msgstr "Appels entrants" + +#~ msgid "Outgoing calls" +#~ msgstr "Appels sortants" + +#~ msgid "Missed calls" +#~ msgstr "Appels manqués" + +#~ msgid "What" +#~ msgstr "Quoi" + +#~ msgid "Are you sure you want to delete all logs of previous conversations?" +#~ msgstr "" +#~ "Vouez-vous vraiment effacer tot l'historique des conversations " +#~ "précédentes ?" + +#~ msgid "Clear All" +#~ msgstr "Tout effacer" + +#~ msgid "Delete from:" +#~ msgstr "Effacer a partir de :" + +#~ msgid "Delete All History…" +#~ msgstr "Effacer tot l'historique…" + +#~ msgid "Profile" +#~ msgstr "Profil" + +#~ msgid "Chat" +#~ msgstr "Discuter" + +#~ msgid "Video" +#~ msgstr "Vidéo" + +#~ msgid "page 2" +#~ msgstr "page 2" + +#~ msgid "Loading…" +#~ msgstr "Chargement…" + +#~ msgid "What kind of chat account do you have?" +#~ msgstr "Quel type de compte de discussion possédez-vous ?" + +#~ msgid "Add new account" +#~ msgstr "Ajouter un nouveau compte" + +#~ msgid "Enter a contact identifier or phone number:" +#~ msgstr "Saisissez un identifiant de contact o un numéro de téléphone :" + +#~ msgid "_Video Call" +#~ msgstr "Appel _vidéo" + +#~ msgid "_Audio Call" +#~ msgstr "Appel _audio" + +#~ msgid "New Call" +#~ msgstr "Nouvel appel" + +#~ msgid "The contact is offline" +#~ msgstr "Lo contact es hors ligne." + +#~ msgid "The specified contact is either invalid or unknown" +#~ msgstr "Lo contact spécifié n'est pas valable o inconnu" + +#~ msgid "The contact does not support this kind of conversation" +#~ msgstr "Lo contact ne prend pas en charge ce type de conversation" + +#~ msgid "The requested functionality is not implemented for this protocol" +#~ msgstr "La fonctionnalité requise n'est pas implémentée per ce protocole" + +#~ msgid "Could not start a conversation with the given contact" +#~ msgstr "Impossible de démarrer una conversation avec lo contact spécifié" + +#~ msgid "You are banned from this channel" +#~ msgstr "Vous êtes banni de ce canal" + +#~ msgid "This channel is full" +#~ msgstr "Ce canal es plein" + +#~ msgid "You must be invited to join this channel" +#~ msgstr "Vous devez être invité per rejoindre ce canal" + +#~ msgid "Can't proceed while disconnected" +#~ msgstr "Impossible de poursuivre en étant déconnecté" + +#~ msgid "Permission denied" +#~ msgstr "Permission refusée" + +#~ msgid "There was an error starting the conversation" +#~ msgstr "Una erreur es survenue au démarrage de la conversation" + +#~ msgid "New Conversation" +#~ msgstr "Nouvelle conversation" + +#~ msgid "Password Required" +#~ msgstr "Mot de passe nécessaire" + +#~ msgid "Custom Message…" +#~ msgstr "Message personnalisé…" + +#~ msgid "Edit Custom Messages…" +#~ msgstr "Édition des messages personnalisés…" + +#~ msgid "Click to remove this status as a favorite" +#~ msgstr "Cliquez per supprimer cet état des favoris" + +#~ msgid "Click to make this status a favorite" +#~ msgstr "Cliquez per ajouter cet état aux favoris" + +#~ msgid "" +#~ "Current message: %s\n" +#~ "Press Enter to set the new message or Esc to cancel." +#~ msgstr "" +#~ "Message actuel : %s\n" +#~ "Appuyez sus Entrée per définir lo nouveau message o sus " +#~ "Échap. per annuler." + +#~ msgid "Set status" +#~ msgstr "Cambiar l'état" + +#~ msgid "Custom messages…" +#~ msgstr "Messages personnalisés…" + +#~ msgid "_Match case" +#~ msgstr "_Respecter la casse" + +#~ msgid "_Previous" +#~ msgstr "_Précédent" + +#~ msgid "_Next" +#~ msgstr "_Suivant" + +#~ msgid "Mat_ch case" +#~ msgstr "Respe_cter la casse" + +#~ msgid "Phrase not found" +#~ msgstr "Phrase introuvable" + +#~ msgid "Received an instant message" +#~ msgstr "Réception d'un message instantané" + +#~ msgid "Sent an instant message" +#~ msgstr "Envoi d'un message instantané" + +#~ msgid "Incoming chat request" +#~ msgstr "Réception d'una demande de discussion" + +#~ msgid "Contact connected" +#~ msgstr "Contact connecté" + +#~ msgid "Contact disconnected" +#~ msgstr "Contact déconnecté" + +#~ msgid "Connected to server" +#~ msgstr "Connecté au serveur" + +#~ msgid "Disconnected from server" +#~ msgstr "Déconnecté del serveur" + +#~ msgid "Incoming voice call" +#~ msgstr "Appel vocal entrant" + +#~ msgid "Outgoing voice call" +#~ msgstr "Appel vocal sortant" + +#~ msgid "Voice call ended" +#~ msgstr "Appel vocal terminé" + +#~ msgid "Edit Custom Messages" +#~ msgstr "Édition des messages personnalisés" + +#~ msgid "Subscription Request" +#~ msgstr "Requête d'abonnement" + +#~ msgid "%s would like permission to see when you are online" +#~ msgstr "%s aimerait être autorisé a savoir se vous êtes en ligne" + +#~ msgid "_Decline" +#~ msgstr "_Refuser" + +#~ msgid "Message edited at %s" +#~ msgstr "Message modifié a %s" + +#~ msgid "Normal" +#~ msgstr "Normal" + +#~ msgid "The identity provided by the chat server cannot be verified." +#~ msgstr "" +#~ "L'identité provesida per lo serveur de discussion ne peut pas être vérifiée." + +#~ msgid "The certificate is not signed by a Certification Authority." +#~ msgstr "Lo certificat n'a pas été signé per una autorité de certification." + +#~ msgid "The certificate has expired." +#~ msgstr "Lo certificat a expiré." + +#~ msgid "The certificate hasn't yet been activated." +#~ msgstr "Lo certificat n'a pas encore été activé." + +#~ msgid "The certificate does not have the expected fingerprint." +#~ msgstr "Lo certificat n'a pas l'empreinte attendue." + +#~ msgid "" +#~ "The hostname verified by the certificate doesn't match the server name." +#~ msgstr "Lo nom d'hôte del certificat ne correspond pas au nom del serveur." + +#~ msgid "The certificate is self-signed." +#~ msgstr "Lo certificat es auto-signé." + +#~ msgid "" +#~ "The certificate has been revoked by the issuing Certification Authority." +#~ msgstr "" +#~ "Lo certificat a été révoqué per l'autorité de certification d'origine." + +#~ msgid "The certificate is cryptographically weak." +#~ msgstr "Lo certificat es cryptographiquement faible." + +#~ msgid "The certificate length exceeds verifiable limits." +#~ msgstr "La taille del certificat dépasse les limites vérifiables." + +#~ msgid "The certificate is malformed." +#~ msgstr "Lo certificat n'est pas correct." + +#~ msgid "Expected hostname: %s" +#~ msgstr "Nom d'hôte attendu : %s" + +#~ msgid "Certificate hostname: %s" +#~ msgstr "Nom d'hôte del certificat : %s" + +#~ msgid "C_ontinue" +#~ msgstr "C_ontinuer" + +#~ msgid "Untrusted connection" +#~ msgstr "Connexion non sécurisée" + +#~ msgid "This connection is untrusted. Would you like to continue anyway?" +#~ msgstr "" +#~ "La connexion n'est pas sécurisée, voulez-vous tot de même continuer ?" + +#~ msgid "Remember this choice for future connections" +#~ msgstr "Se souvenir de ce choix per les prochaines connexions" + +#~ msgid "Certificate Details" +#~ msgstr "Détails del certificat" + +#~ msgid "Unable to open URI" +#~ msgstr "Impossible d'ouvrir l'URI" + +#~ msgid "Select a file" +#~ msgstr "Sélectionner un fichier" + +#~ msgid "Insufficient free space to save file" +#~ msgstr "Espace disque insuffisant per enregistrer lo fichier" + +#~ msgid "" +#~ "%s of free space are required to save this file, but only %s is " +#~ "available. Please choose another location." +#~ msgstr "" +#~ "Un espace libre de %s es nécessaire per enregistrer ce fichier mais " +#~ "seulement %s son disponibles. Veuillez choisir un autre emplacement." + +#~ msgid "Incoming file from %s" +#~ msgstr "Fichier entrant de %s" + +#~ msgid "Inspect HTML" +#~ msgstr "Inspecter lo HTML" + +#~ msgid "Top Contacts" +#~ msgstr "Fréquents e favoris" + +#~ msgid "People Nearby" +#~ msgstr "Personnes a proximité" + +#~ msgid "Ungrouped" +#~ msgstr "Non groupés" + +#~ msgid "Server cannot find contact: %s" +#~ msgstr "Lo serveur ne peut pas trouver lo contact : %s" + +#~ msgid "An Instant Messaging client for GNOME" +#~ msgstr "Un client de messagerie instantanée per GNOME" + +#~ msgid "Don't display any dialogs; do any work (eg, importing) and exit" +#~ msgstr "" +#~ "N'affiche aucune boîte de dialogue ; effectue la tâche (par ex. " +#~ "importation) e quitte" + +#~ msgid "" +#~ "Don't display any dialogs unless there are only \"People Nearby\" accounts" +#~ msgstr "" +#~ "N'affiche aucune boîte de dialogue a moins qu'il n'y ait que des comptes " +#~ "« Personnes a proximité »" + +#~ msgid "" +#~ "Initially select given account (eg, gabble/jabber/foo_40example_2eorg0)" +#~ msgstr "" +#~ "Sélectionne au départ lo compte indicat (par ex. gabble/jabber/" +#~ "foo_40example_2eorg0)" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "- Empathy Accounts" +#~ msgstr "- comptes Empathy" + +#~ msgid "Empathy Accounts" +#~ msgstr "Comptes Empathy" + +#~ msgid "There are unsaved modifications to your %.50s account." +#~ msgstr "Votre compte %.50s comporte des modifications non enregistrées." + +#~ msgid "Your new account has not been saved yet." +#~ msgstr "Votre nouveau compte n'est pas encore enregistré." + +#~ msgid "Connecting…" +#~ msgstr "Connexion en cours…" + +#~ msgid "Offline — %s" +#~ msgstr "Hors ligne — %s" + +#~ msgid "Disconnected — %s" +#~ msgstr "Déconnecté — %s" + +#~ msgid "Offline — No Network Connection" +#~ msgstr "Hors ligne — Pas de connexion ret" + +#~ msgid "Unknown Status" +#~ msgstr "Statut inconnu" + +#~ msgid "" +#~ "This account has been disabled because it relies on an old, unsupported " +#~ "backend. Please install telepathy-haze and restart your session to " +#~ "migrate the account." +#~ msgstr "" +#~ "Ce compte a été désactivé car il repose sus un ancien moteur non pris en " +#~ "charge. Installez telepathy-haze e redémarrez votre session per migrer " +#~ "le compte." + +#~ msgid "Offline — Account Disabled" +#~ msgstr "Hors ligne — Compte désactivé" + +#~ msgid "Edit Connection Parameters" +#~ msgstr "Modifier les paramètres de la connexion" + +#~ msgid "_Edit Connection Parameters…" +#~ msgstr "_Modifier les paramètres de la connexion…" + +#~ msgid "Do you want to remove %.50s from your computer?" +#~ msgstr "Voulez-vous supprimer %.50s de votre ordinateur ?" + +#~ msgid "This will not remove your account on the server." +#~ msgstr "Cela ne supprimera pas votre compte sus lo serveur." + +#~ msgid "" +#~ "You are about to select another account, which will discard\n" +#~ "your changes. Are you sure you want to proceed?" +#~ msgstr "" +#~ "Vous êtes sus lo point de sélectionner un autre compte, ce qui\n" +#~ "annulera vos modifications. Voulez-vous vraiment continuer ?" + +#~ msgid "_Enabled" +#~ msgstr "_Activé" + +#~ msgid "Rename" +#~ msgstr "Renommer" + +#~ msgid "_Skip" +#~ msgstr "_Ignorer" + +#~ msgid "_Connect" +#~ msgstr "Se _connecter" + +#~ msgid "" +#~ "You are about to close the window, which will discard\n" +#~ "your changes. Are you sure you want to proceed?" +#~ msgstr "" +#~ "Vous êtes sus lo point de fermer la fenèstra, ce que annulera\n" +#~ "vos modifications. Voulez-vous vraiment continuer ?" + +#~ msgid "Messaging and VoIP Accounts" +#~ msgstr "Comptes de messagerie e VoIP" + +#~ msgid "Add…" +#~ msgstr "Ajouter…" + +#~ msgid "_Import…" +#~ msgstr "_Importer…" + +#~ msgid "Loading account information" +#~ msgstr "Chargement des informations de compte" + +#~ msgid "" +#~ "To add a new account, you first have to install a backend for each " +#~ "protocol you want to use." +#~ msgstr "" +#~ "Pour ajouter un nouveau compte, vous devez d'abord installer lo moteur " +#~ "correspondant a chaque protocole que vous voulez utiliser." + +#~ msgid "No protocol backends installed" +#~ msgstr "Aucun moteur de protocole installé" + +#~ msgid " - Empathy authentication client" +#~ msgstr "- Client d'authentification de Empathy" + +#~ msgid "Empathy authentication client" +#~ msgstr "Client d'authentification de Empathy" + +#~ msgid "Don't connect on startup" +#~ msgstr "Ne pas se connecter au démarrage" + +#~ msgid "Don't display the contact list or any other dialogs on startup" +#~ msgstr "" +#~ "Ne pas afichar la liste des contacts o d'autres boîtes de dialogue au " +#~ "démarrage" + +#~ msgid "- Empathy IM Client" +#~ msgstr "- Client de messagerie instantanée Empathy" + +#~ msgid "Error contacting the Account Manager" +#~ msgstr "Erreur de connexion au gestionnaire de compte" + +#~ msgid "" +#~ "There was an error while trying to connect to the Telepathy Account " +#~ "Manager. The error was:\n" +#~ "\n" +#~ "%s" +#~ msgstr "" +#~ "Una erreur es survenue au cours de la tentative de connexion au " +#~ "gestionnaire de compte Telepathy. L'erreur es :\n" +#~ "\n" +#~ "%s" + +#~ msgid "In a call" +#~ msgstr "Appel en cours" + +#~ msgid "- Empathy Audio/Video Client" +#~ msgstr "- Client audio/vidéo de Empathy" + +#~ msgid "Empathy Audio/Video Client" +#~ msgstr "Client audio/vidéo de Empathy" + +#~ msgid "%s just tried to call you, but you were in another call." +#~ msgstr "%s vient d'essayer de vous apelar mais vous étiez déjà en ligne." + +#~ msgid "Incoming call" +#~ msgstr "Appel entrant" + +#~ msgid "Incoming video call from %s" +#~ msgstr "Appel vidéo entrant de %s" + +#~ msgid "Incoming call from %s" +#~ msgstr "Appel entrant de %s" + +#~ msgid "Reject" +#~ msgstr "Rejeter" + +#~ msgid "Answer" +#~ msgstr "Répondre" + +#~ msgid "Call with %s" +#~ msgstr "Conversation avec %s" + +#~ msgid "The IP address as seen by the machine" +#~ msgstr "L'adresse IP vue per la machine" + +#~ msgid "The IP address as seen by a server on the Internet" +#~ msgstr "L'adresse IP vue per un serveur sus Internet" + +#~ msgid "The IP address of the peer as seen by the other side" +#~ msgstr "L'adresse IP del client vue de l'autre côté" + +#~ msgid "The IP address of a relay server" +#~ msgstr "L'adresse IP d'un serveur relais" + +#~ msgid "The IP address of the multicast group" +#~ msgstr "L'adresse IP del groupe multidiffusion" + +#~ msgid "On hold" +#~ msgstr "En attente" + +#~ msgid "Mute" +#~ msgstr "Muet" + +#~ msgid "Duration" +#~ msgstr "Durée" + +#~ msgid "%s — %d:%02dm" +#~ msgstr "%s — %d:%02dm" + +#~ msgid "Technical Details" +#~ msgstr "Détails techniques" + +#~ msgid "" +#~ "%s's software does not understand any of the audio formats supported by " +#~ "your computer" +#~ msgstr "" +#~ "Lo logiciel de %s ne comprend aucun des formats audio pris en charge per " +#~ "votre ordinateur" + +#~ msgid "" +#~ "%s's software does not understand any of the video formats supported by " +#~ "your computer" +#~ msgstr "" +#~ "Lo logiciel de %s ne comprend aucun des formats vidéo pris en charge per " +#~ "votre ordinateur" + +#~ msgid "" +#~ "Can't establish a connection to %s. One of you might be on a network that " +#~ "does not allow direct connections." +#~ msgstr "" +#~ "Impossible d'établir una connexion avec %s. L'un d'entre vous utilise " +#~ "peut-être un ret que n'autorise pas les connexions directes." + +#~ msgid "There was a failure on the network" +#~ msgstr "I a eu una panne sus lo ret" + +#~ msgid "" +#~ "The audio formats necessary for this call are not installed on your " +#~ "computer" +#~ msgstr "" +#~ "Les formats audio nécessaires per cet appel ne son pas installés sus " +#~ "votre ordinateur" + +#~ msgid "" +#~ "The video formats necessary for this call are not installed on your " +#~ "computer" +#~ msgstr "" +#~ "Les formats vidéo nécessaires per cet appel ne son pas installés sus " +#~ "votre ordinateur" + +#~ msgid "" +#~ "Something unexpected happened in a Telepathy component. Please report this bug and attach logs gathered from the 'Debug' " +#~ "window in the Help menu." +#~ msgstr "" +#~ "Una erreur inattendue es survenue dins un composant de Telepathy. Signalez aquesta anomalie e joignez les journaux récupérés " +#~ "à l'aide de la fenèstra « débogage » dins lo menu d'aide." + +#~ msgid "There was a failure in the call engine" +#~ msgstr "Erreur dins lo moteur d'appel" + +#~ msgid "The end of the stream was reached" +#~ msgstr "La fin del flux a été atteinte" + +#~ msgid "Can't establish audio stream" +#~ msgstr "Impossible d'établir lo flux audio" + +#~ msgid "Can't establish video stream" +#~ msgstr "Impossible d'établir lo flux vidéo" + +#~ msgid "Your current balance is %s." +#~ msgstr "Votre crédit actuel es %s." + +#~ msgid "Sorry, you don’t have enough credit for that call." +#~ msgstr "Désolé, vous n'avez pas assez de crédit per cet appel." + +#~ msgid "Top Up" +#~ msgstr "Créditer" + +#~ msgid "_Call" +#~ msgstr "_Apelar" + +#~ msgid "_Microphone" +#~ msgstr "_Microphone" + +#~ msgid "_Camera" +#~ msgstr "_Caméra" + +#~ msgid "_Settings" +#~ msgstr "_Paramètres" + +#~ msgid "_Debug" +#~ msgstr "_Débogage" + +#~ msgid "_GStreamer" +#~ msgstr "_GStreamer" + +#~ msgid "_Telepathy" +#~ msgstr "_Telepathy" + +#~ msgid "Swap camera" +#~ msgstr "Cambiar de caméra" + +#~ msgid "Minimise me" +#~ msgstr "Minimiser" + +#~ msgid "Maximise me" +#~ msgstr "Maximiser" + +#~ msgid "Disable camera" +#~ msgstr "Désactiver la caméra" + +#~ msgid "Hang up" +#~ msgstr "Raccrocher" + +#~ msgid "Hang up current call" +#~ msgstr "Raccrocher l'appel en cours" + +#~ msgid "Video call" +#~ msgstr "Appel vidéo" + +#~ msgid "Start a video call" +#~ msgstr "Démarrer una conversation vidéo" + +#~ msgid "Start an audio call" +#~ msgstr "Démarrer una conversation audio" + +#~ msgid "Show dialpad" +#~ msgstr "Afichar lo clavièr" + +#~ msgid "Display the dialpad" +#~ msgstr "Afichar lo clavièr numérique" + +#~ msgid "Toggle video transmission" +#~ msgstr "Basculer la transmission vidéo" + +#~ msgid "Toggle audio transmission" +#~ msgstr "Basculer la transmission audio" + +#~ msgid "Encoding Codec:" +#~ msgstr "Compression :" + +#~ msgid "Decoding Codec:" +#~ msgstr "Décompression :" + +#~ msgid "Remote Candidate:" +#~ msgstr "Candidat externe :" + +#~ msgid "Local Candidate:" +#~ msgstr "Candidat local :" + +#~ msgid "Audio" +#~ msgstr "Audio" + +#~ msgid "- Empathy Chat Client" +#~ msgstr "- Client de discussion Empathy" + +#~ msgid "Room" +#~ msgstr "Salon" + +#~ msgid "Auto-Connect" +#~ msgstr "Connexion automatique" + +#~ msgid "Manage Favorite Rooms" +#~ msgstr "Gérer les salons favoris" + +#~ msgid "Close this window?" +#~ msgstr "Voulez-vous fermer aquesta fenèstra ?" + +#~ msgid "" +#~ "Closing this window will leave %s. You will not receive any further " +#~ "messages until you rejoin it." +#~ msgstr "" +#~ "La fermeture de aquesta fenèstra quittera %s. Vous ne recevrez plus aucun " +#~ "message tant que vous ne lo rejoignez pas." + +#~ msgid "" +#~ "Closing this window will leave a chat room. You will not receive any " +#~ "further messages until you rejoin it." +#~ msgid_plural "" +#~ "Closing this window will leave %u chat rooms. You will not receive any " +#~ "further messages until you rejoin them." +#~ msgstr[0] "" +#~ "La fermeture de aquesta fenèstra quittera un salon de discussion. Vous ne " +#~ "recevrez plus aucun message tant que vous ne lo rejoignez pas." +#~ msgstr[1] "" +#~ "La fermeture de aquesta fenèstra quittera %u salons de discussion. Vous ne " +#~ "recevrez plus aucun message tant que vous ne les rejoignez pas." + +#~ msgid "Leave %s?" +#~ msgstr "Quitter %s ?" + +#~ msgid "" +#~ "You will not receive any further messages from this chat room until you " +#~ "rejoin it." +#~ msgstr "" +#~ "Vous ne recevrez plus aucun message tant que vous ne lo rejoignez pas." + +#~ msgid "Close window" +#~ msgstr "Fermer la fenèstra" + +#~ msgid "Leave room" +#~ msgstr "Quitter lo salon" + +#~ msgid "%s (%d unread)" +#~ msgid_plural "%s (%d unread)" +#~ msgstr[0] "%s (%d non lu)" +#~ msgstr[1] "%s (%d non lus)" + +#~ msgid "%s (and %u other)" +#~ msgid_plural "%s (and %u others)" +#~ msgstr[0] "%s (et %u autre)" +#~ msgstr[1] "%s (et %u autres)" + +#~ msgid "%s (%d unread from others)" +#~ msgid_plural "%s (%d unread from others)" +#~ msgstr[0] "%s (%d non lu des autres)" +#~ msgstr[1] "%s (%d non lus des autres)" + +#~ msgid "%s (%d unread from all)" +#~ msgid_plural "%s (%d unread from all)" +#~ msgstr[0] "%s (%d non lu de tous)" +#~ msgstr[1] "%s (%d non lus de tous)" + +#~ msgid "SMS:" +#~ msgstr "SMS :" + +#~ msgid "Sending %d message" +#~ msgid_plural "Sending %d messages" +#~ msgstr[0] "Envoi de %d message" +#~ msgstr[1] "Envoi de %d messages" + +#~ msgid "Typing a message." +#~ msgstr "Saisie d'un message." + +#~ msgid "_Conversation" +#~ msgstr "_Conversation" + +#~ msgid "Insert _Smiley" +#~ msgstr "Insérer una _frimousse" + +#~ msgid "_Favorite Chat Room" +#~ msgstr "Salon de discussion _favori" + +#~ msgid "Notify for All Messages" +#~ msgstr "Avertir per tous les messages" + +#~ msgid "_Show Contact List" +#~ msgstr "_Afichar la liste des contacts" + +#~ msgid "Invite _Participant…" +#~ msgstr "Inviter un _participant…" + +#~ msgid "_Join Chat" +#~ msgstr "Re_joindre una discussion" + +#~ msgid "Le_ave Chat" +#~ msgstr "Q_uitter la discussion" + +#~ msgid "C_ontact" +#~ msgstr "C_ontact" + +#~ msgid "_Undo Close Tab" +#~ msgstr "_Rouvrir l'onglet fermé" + +#~ msgid "Show a particular service" +#~ msgstr "Afichar un service particulier" + +#~ msgid "- Empathy Debugger" +#~ msgstr "- Débogueur de Empathy" + +#~ msgid "Empathy Debugger" +#~ msgstr "Débogueur de Empathy" + +#~ msgid "Pastebin link" +#~ msgstr "Lien Pastebin" + +#~ msgid "Pastebin response" +#~ msgstr "Réponse Pastebin" + +#~ msgid "Data too large for a single paste. Please save logs to file." +#~ msgstr "" +#~ "Trop de données per un collage simple. Enregistrez les journaux dins des " +#~ "fichiers." + +#~ msgid "Debug Window" +#~ msgstr "Fenèstra de débogage" + +#~ msgid "Send to pastebin" +#~ msgstr "Envoyer vers Pastebin" + +#~ msgid "Pause" +#~ msgstr "Pause" + +#~ msgid "Level " +#~ msgstr "Niveau " + +#~ msgid "Debug" +#~ msgstr "Débogage" + +#~ msgid "Info" +#~ msgstr "Informations" + +#~ msgid "Message" +#~ msgstr "Message" + +#~ msgid "Warning" +#~ msgstr "Avertissement" + +#~ msgid "Critical" +#~ msgstr "Critique" + +#~ msgid "Error" +#~ msgstr "Erreur" + +#~ msgid "" +#~ "Even if they don't display passwords, logs can contain sensitive " +#~ "information such as your list of contacts or the messages you recently " +#~ "sent or received.\n" +#~ "If you don't want to see such information available in a public bug " +#~ "report, you can choose to limit the visibility of your bug to Empathy " +#~ "developers when reporting it by displaying the advanced fields in the bug " +#~ "report." +#~ msgstr "" +#~ "Même s'ils n'affichent pas les mots de passe, les journaux peuvent " +#~ "contenir des informations sensibles telles que votre liste de contacts o " +#~ "les messages que vous avez récemment envoyés o reçus.\n" +#~ "Se vous ne voulez pas rendre publiques ces informations, vous pouvez " +#~ "choisir de limiter la visibilité de votre rapport d'anomalie aux " +#~ "développeurs d'Empathy lorsque vous lo remplissez en affichant les champs " +#~ "avancés del rapport." + +#~ msgid "Time" +#~ msgstr "Heure" + +#~ msgid "Category" +#~ msgstr "Catégorie" + +#~ msgid "Level" +#~ msgstr "Niveau" + +#~ msgid "" +#~ "The selected connection manager does not support the remote debugging " +#~ "extension." +#~ msgstr "" +#~ "Lo gestionnaire de connexions sélectionné ne prend pas en charge " +#~ "l'extension de débogage distant." + +#~ msgid "Incoming video call" +#~ msgstr "Appel vidéo entrant" + +#~ msgid "%s is video calling you. Do you want to answer?" +#~ msgstr "%s vous appelle en vidéo. Souhaitez-vous répondre ?" + +#~ msgid "%s is calling you. Do you want to answer?" +#~ msgstr "%s vous appelle. Souhaitez-vous répondre ?" + +#~ msgid "_Answer" +#~ msgstr "_Répondre" + +#~ msgid "_Answer with video" +#~ msgstr "_Répondre avec la vidéo" + +#~ msgid "Room invitation" +#~ msgstr "Invitation dins un salon" + +#~ msgid "Invitation to join %s" +#~ msgstr "Invitation a rejoindre %s" + +#~ msgid "%s is inviting you to join %s" +#~ msgstr "%s vous invite a rejoindre %s" + +#~ msgid "_Join" +#~ msgstr "Re_joindre" + +#~ msgid "%s invited you to join %s" +#~ msgstr "%s vous a invité a rejoindre %s" + +#~ msgid "You have been invited to join %s" +#~ msgstr "Vous avez été invité a rejoindre %s" + +#~ msgid "Incoming file transfer from %s" +#~ msgstr "Transfert de fichiers entrant de %s" + +#~ msgid "Password required" +#~ msgstr "Mot de passe nécessaire" + +#~ msgid "" +#~ "\n" +#~ "Message: %s" +#~ msgstr "" +#~ "\n" +#~ "Message : %s" + +#~ msgctxt "file transfer percent" +#~ msgid "Unknown" +#~ msgstr "Inconnu" + +#~ msgid "%s of %s at %s/s" +#~ msgstr "%s sus %s a %s/s" + +#~ msgid "%s of %s" +#~ msgstr "%s sus %s" + +#~ msgid "Receiving \"%s\" from %s" +#~ msgstr "Réception de « %s » de la part de %s" + +#~ msgid "Sending \"%s\" to %s" +#~ msgstr "Envoi de « %s » a %s" + +#~ msgid "Error receiving \"%s\" from %s" +#~ msgstr "Erreur lors de la réception de « %s » de la part de %s" + +#~ msgid "Error receiving a file" +#~ msgstr "Erreur de réception del fichier" + +#~ msgid "Error sending \"%s\" to %s" +#~ msgstr "Erreur lors de l'envoi de « %s » a %s" + +#~ msgid "Error sending a file" +#~ msgstr "Erreur d'envoi del fichier" + +#~ msgid "\"%s\" received from %s" +#~ msgstr "« %s » reçu de %s" + +#~ msgid "\"%s\" sent to %s" +#~ msgstr "« %s » envoyé a %s" + +#~ msgid "File transfer completed" +#~ msgstr "Transfert de fichier terminé" + +#~ msgid "Waiting for the other participant's response" +#~ msgstr "Attente de la réponse del correspondant" + +#~ msgid "Checking integrity of \"%s\"" +#~ msgstr "Vérification de l'intégrité de « %s »" + +#~ msgid "Hashing \"%s\"" +#~ msgstr "Création de la somme de contrôle per « %s »" + +#~ msgid "File Transfers" +#~ msgstr "Transferts de fichiers" + +#~ msgid "Remove completed, canceled and failed file transfers from the list" +#~ msgstr "Effacer les transferts terminés, annulés e non réussis de la liste" + +#~ msgid "_Import" +#~ msgstr "_Importer" + +#~ msgid "" +#~ "No accounts to import could be found. Empathy currently only supports " +#~ "importing accounts from Pidgin." +#~ msgstr "" +#~ "Aucun compte a importer n'a été trouvé. Empathy ne peut actualament " +#~ "importer que des comptes en provenance de Pidgin." + +#~ msgid "Import Accounts" +#~ msgstr "Importer des comptes" + +#~ msgid "Import" +#~ msgstr "Importer" + +#~ msgid "Protocol" +#~ msgstr "Protocole" + +#~ msgid "Source" +#~ msgstr "Source" + +#~ msgid "Invite Participant" +#~ msgstr "Inviter un participant" + +#~ msgid "Choose a contact to invite into the conversation:" +#~ msgstr "Choisissez un contact a inviter dins la conversation :" + +#~ msgid "Invite" +#~ msgstr "Inviter" + +#~ msgid "Chat Room" +#~ msgstr "Salon de discussion" + +#~ msgid "Members" +#~ msgstr "Membres" + +#~ msgid "Failed to list rooms" +#~ msgstr "Impossible de faire la liste les salons" + +#~ msgid "" +#~ "%s\n" +#~ "Invite required: %s\n" +#~ "Password required: %s\n" +#~ "Members: %s" +#~ msgstr "" +#~ "%s\n" +#~ "Invitation nécessaire : %s\n" +#~ "Mot de passe nécessaire : %s\n" +#~ "Membres : %s" + +#~ msgid "Join Room" +#~ msgstr "Rejoindre lo salon" + +#~ msgid "" +#~ "Enter the room name to join here or click on one or more rooms in the " +#~ "list." +#~ msgstr "" +#~ "Saisissez lo nom del salon a rejoindre o cliquez sus un o plusieurs " +#~ "salons dins la liste." + +#~ msgid "_Room:" +#~ msgstr "Sal_on :" + +#~ msgid "" +#~ "Enter the server which hosts the room, or leave it empty if the room is " +#~ "on the current account's server" +#~ msgstr "" +#~ "Saisissez lo nom del serveur que héberge lo salon, o laissez lo champ " +#~ "vide se lo salon es sus lo même serveur que lo compte actuel" + +#~ msgid "" +#~ "Enter the server which hosts the room, or leave it empty if the room is " +#~ "on the current account's server" +#~ msgstr "" +#~ "Saisissez lo nom del serveur que héberge lo salon, o laissez lo champ " +#~ "vide se lo salon es sus lo même serveur que lo compte actuel" + +#~ msgid "_Server:" +#~ msgstr "_Serveur :" + +#~ msgid "Couldn't load room list" +#~ msgstr "Lo chargement de la liste des salons de discussion a échoué" + +#~ msgid "Room List" +#~ msgstr "Lista des salons" + +#~ msgid "Respond" +#~ msgstr "Répondre" + +#~ msgid "Answer with video" +#~ msgstr "Répondre avec la vidéo" + +#~ msgid "Decline" +#~ msgstr "Refuser" + +#~ msgid "Accept" +#~ msgstr "Accepter" + +#~ msgid "Provide" +#~ msgstr "Fournir" + +#~ msgid "Message received" +#~ msgstr "Message reçu" + +#~ msgid "Message sent" +#~ msgstr "Message envoyé" + +#~ msgid "New conversation" +#~ msgstr "Nouvelle conversation" + +#~ msgid "Contact comes online" +#~ msgstr "Lo contact es en ligne" + +#~ msgid "Contact goes offline" +#~ msgstr "Lo contact es hors ligne" + +#~ msgid "Account connected" +#~ msgstr "Compte connecté" + +#~ msgid "Account disconnected" +#~ msgstr "Compte déconnecté" + +#~ msgid "Juliet" +#~ msgstr "Juliette" + +#~ msgid "Romeo" +#~ msgstr "Roméo" + +#~ msgid "O Romeo, Romeo, wherefore art thou Romeo?" +#~ msgstr "Ô Roméo ! Roméo ! Pourquoi es-tu Roméo ?" + +#~ msgid "Deny thy father and refuse thy name;" +#~ msgstr "Renie ton père e abdique ton nom ;" + +#~ msgid "Or if thou wilt not, be but sworn my love" +#~ msgstr "Ou se tu ne lo veux pas, jure de m'aimer" + +#~ msgid "And I'll no longer be a Capulet." +#~ msgstr "Et je ne serais plus una Capulet." + +#~ msgid "Shall I hear more, or shall I speak at this?" +#~ msgstr "Dois-je l'écouter encore o lui répondre ?" + +#~ msgid "Juliet has disconnected" +#~ msgstr "Juliette s'est déconnectée" + +#~ msgid "Show groups" +#~ msgstr "Afichar les groupes" + +#~ msgid "Show account balances" +#~ msgstr "Afichar lo crédit actuel" + +#~ msgid "Contact List" +#~ msgstr "Lista des contacts" + +#~ msgid "Start chats in:" +#~ msgstr "Démarrer una discussion dins :" + +#~ msgid "new ta_bs" +#~ msgstr "nouveaux ongle_ts" + +#~ msgid "new _windows" +#~ msgstr "nouvelles _fenèstras" + +#~ msgid "Show _smileys as images" +#~ msgstr "Convertir les frimousses en _images" + +#~ msgid "Show contact _list in rooms" +#~ msgstr "Afichar la _liste des contacts dins les salons" + +#~ msgid "Log conversations" +#~ msgstr "Journaliser les conversations" + +#~ msgid "Display incoming events in the notification area" +#~ msgstr "Afichar les eveniments entrants dins la zone de notification" + +#~ msgid "_Automatically connect on startup" +#~ msgstr "Se _connecter automatiquement au démarrage" + +#~ msgid "Behavior" +#~ msgstr "Comportement" + +#~ msgid "_Enable bubble notifications" +#~ msgstr "_Activer les bulles de notification" + +#~ msgid "Disable notifications when _away or busy" +#~ msgstr "Désactiver les notifications lorsque vous êtes _absent o occupé" + +#~ msgid "Enable notifications when the _chat is not focused" +#~ msgstr "" +#~ "Afichar des notifications quand la _discussion n'est pas au premier plan" + +#~ msgid "Enable notifications when a contact comes online" +#~ msgstr "Afichar des notifications quand un contact se connecte" + +#~ msgid "Enable notifications when a contact goes offline" +#~ msgstr "Afichar des notifications quand un contact se déconnecte" + +#~ msgid "Notifications" +#~ msgstr "Notifications" + +#~ msgid "_Enable sound notifications" +#~ msgstr "_Activer les notifications sonores" + +#~ msgid "Disable sounds when _away or busy" +#~ msgstr "Désactiver les sons lorsque vous êtes _absent o occupé" + +#~ msgid "Play sound for events" +#~ msgstr "Emetre un son lors des eveniments" + +#~ msgid "Sounds" +#~ msgstr "Sons" + +#~ msgid "Use _echo cancellation to improve call quality" +#~ msgstr "Utiliser l'a_nnulation d'écho per améliorer la qualité de l'appel" + +#~ msgid "" +#~ "Echo cancellation helps to make your voice sound clearer to the other " +#~ "person, but may cause problems on some computers. If you or the other " +#~ "person hear strange noises or glitches during calls, try turning echo " +#~ "cancellation off and restarting the call." +#~ msgstr "" +#~ "L'annulation d'écho améliore la clarté de votre voix per votre " +#~ "interlocuteur, mais peut aussi causer des problèmes sus certains " +#~ "ordinateurs. Se vous o l'un de vos contacts entendez certaines " +#~ "perturbations au niveau del son, essayez de relancer l'appel sans " +#~ "l'annulation d'écho." + +#~ msgid "_Publish location to my contacts" +#~ msgstr "_Publier ma position per mes contacts" + +#~ msgid "" +#~ "Reduced location accuracy means that nothing more precise than your city, " +#~ "state and country will be published. GPS coordinates will be accurate to " +#~ "1 decimal place." +#~ msgstr "" +#~ "Lorsque la precision de la position es réduite, las informacions de " +#~ "géolocalisation publiées se limitent au pays, a la région e a la vila. " +#~ "La precision des coordenadas GPS es limitée a un seul nombre après la " +#~ "virgule." + +#~ msgid "_Reduce location accuracy" +#~ msgstr "_Reduire la precision de la position" + +#~ msgid "" +#~ "The list of languages reflects only the languages for which you have a " +#~ "dictionary installed." +#~ msgstr "" +#~ "La liste de langues ne contient que les langues per lesquelles vous avez " +#~ "un dictionnaire installé." + +#~ msgid "Enable spell checking for languages:" +#~ msgstr "Activer la correction orthographique per les langues :" + +#~ msgid "Spell Checking" +#~ msgstr "Correction orthographique" + +#~ msgid "Chat Th_eme:" +#~ msgstr "_Thème de la fenèstra de discussion :" + +# http://fr.wikipedia.org/wiki/Rel%C3%A8vement +#~ msgid "Variant:" +#~ msgstr "Variante :" + +#~ msgid "Themes" +#~ msgstr "Thèmes" + +#~ msgid "Provide Password" +#~ msgstr "Fournir un mot de passe" + +#~ msgid "Disconnect" +#~ msgstr "Déconnecter" + +#~ msgid "You need to set up an account to see contacts here." +#~ msgstr "Vous devez configurer un compte per voir des contacts ici." + +#~ msgid "Sorry, %s accounts can’t be used until your %s software is updated." +#~ msgstr "" +#~ "Désolé, les comptes %s ne peuvent pas être utilisés tant que votre " +#~ "logiciel %s n'est pas mis a jour." + +#~ msgid "Windows Live" +#~ msgstr "Windows Live" + +#~ msgid "Google Talk" +#~ msgstr "Google Talk" + +#~ msgid "Facebook" +#~ msgstr "Facebook" + +#~ msgid "%s account requires authorisation" +#~ msgstr "Lo compte %s nécessite una autorisation" + +#~ msgid "Online Accounts" +#~ msgstr "Comptes en ligne" + +#~ msgid "Update software…" +#~ msgstr "Mettre a jour lo logiciel…" + +#~ msgid "Reconnect" +#~ msgstr "Reconnecter" + +#~ msgid "Edit Account" +#~ msgstr "Modifier lo compte" + +#~ msgid "Top up account" +#~ msgstr "Solde del compte" + +#~ msgid "You need to enable one of your accounts to see contacts here." +#~ msgstr "Vous devez activer un de vos comptes per voir des contacts ici." + +#~ msgid "You need to enable %s to see contacts here." +#~ msgstr "Vous devez activer %s per voir des contacts ici." + +#~ msgid "Change your presence to see contacts here" +#~ msgstr "Cambiar votre présence per voir des contacts ici." + +#~ msgid "No match found" +#~ msgstr "Aucun résultat trouvé" + +#~ msgid "You haven't added any contacts yet" +#~ msgstr "Vous n'avez pas encore ajouté de contacts" + +#~ msgid "No online contacts" +#~ msgstr "Pas de contacts connectés" + +#~ msgid "_New Conversation…" +#~ msgstr "_Nouvelle conversation…" + +#~ msgid "New _Call…" +#~ msgstr "Nouvel _appel…" + +#~ msgid "Contacts" +#~ msgstr "Contacts" + +#~ msgid "_Add Contacts…" +#~ msgstr "A_jouter des contacts…" + +#~ msgid "_Search for Contacts…" +#~ msgstr "_Rechercher des contacts…" + +#~ msgid "_Blocked Contacts" +#~ msgstr "Contacts _bloqués" + +#~ msgid "_Rooms" +#~ msgstr "_Salons" + +#~ msgid "_Join…" +#~ msgstr "Re_joindre…" + +#~ msgid "Join _Favorites" +#~ msgstr "Rejoindre les _favoris" + +#~ msgid "_Manage Favorites" +#~ msgstr "_Gérer les favoris" + +#~ msgid "_File Transfers" +#~ msgstr "Transferts de _fichiers" + +#~ msgid "_Accounts" +#~ msgstr "_Comptes" + +#~ msgid "Help" +#~ msgstr "Aide" + +#~ msgid "About" +#~ msgstr "À propos" + +#~ msgid "Account settings" +#~ msgstr "Paramètres del compte" + +#~ msgid "Go _Online" +#~ msgstr "Passer en _ligne" + +#~ msgid "Show _Offline Contacts" +#~ msgstr "Afichar les c_ontacts déconnectés" + +#~ msgid "Status" +#~ msgstr "État" + +#~ msgid "Done" +#~ msgstr "Terminé" + +#~ msgid "Please enter your account details" +#~ msgstr "Veuillez entrer les détails de votre compte" + +#~ msgid "Edit %s account options" +#~ msgstr "Modifier les options del compte %s" + +#~ msgid "Integrate your IM accounts" +#~ msgstr "Intégrez vos comptes de messagerie instantanée" + +#~ msgid "No error message" +#~ msgstr "Pas de message d'erreur" + +#~ msgid "Instant Message (Empathy)" +#~ msgstr "Message instantané (Empathy)" + +#~ msgid "" +#~ "Empathy is free software; you can redistribute it and/or modify it under " +#~ "the terms of the GNU General Public License as published by the Free " +#~ "Software Foundation; either version 2 of the License, or (at your option) " +#~ "any later version." +#~ msgstr "" +#~ "Empathy es un logiciel libre ; vous pouvez lo redistribuer et/ou lo " +#~ "modifier selon les termes de la Licence Publique Générale GNU, telle que " +#~ "publiée per la Free Software Foundation ; version 2 de la licence o (à " +#~ "votre discrétion) toute version ultérieure." + +#~ msgid "" +#~ "Empathy is distributed in the hope that it will be useful, but WITHOUT " +#~ "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " +#~ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " +#~ "more details." +#~ msgstr "" +#~ "Empathy es distribué dins l'espoir qu'il serà utile, mais SANS AUCUNE " +#~ "GARANTIE ; sans même la garantie implicite de VALEUR MARCHANDE o " +#~ "D'ADÉQUATION À UN BESOIN PARTICULIER. Pour plus de détails, voir la " +#~ "Licence Publique Générale GNU." + +#~ msgid "" +#~ "You should have received a copy of the GNU General Public License along " +#~ "with Empathy; if not, write to the Free Software Foundation, Inc., 51 " +#~ "Franklin Street, Fifth Floor, Boston, MA 02110-130159 USA" +#~ msgstr "" +#~ "Un exemplaire de la Licence Publique Générale GNU doit être provesit avec " +#~ "Empathy ; se ce n'est pas lo cas, écrivez a la Free Software Foundation, " +#~ "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-130159 USA" + +#~ msgid "About Empathy" +#~ msgstr "À propos d'Empathy" + +#~ msgid "Empathy can use the network to guess the location" +#~ msgstr "Empathy peut utiliser lo ret per découvrir la position" + +#~ msgid "Whether Empathy can use the network to guess the location." +#~ msgstr "" +#~ "Indica se Empathy peut utiliser lo ret per découvrir la position." + +#~ msgid "Empathy can use the cellular network to guess the location" +#~ msgstr "" +#~ "Empathy peut utiliser lo ret cellulaire per découvrir la position" + +#~ msgid "Whether Empathy can use the cellular network to guess the location." +#~ msgstr "" +#~ "Indica se Empathy peut utiliser lo ret cellulaire per découvrir la " +#~ "position." + +#~ msgid "Empathy can use the GPS to guess the location" +#~ msgstr "Empathy peut utiliser lo GPS per découvrir la position" + +#~ msgid "Whether Empathy can use the GPS to guess the location." +#~ msgstr "Indica se Empathy peut utiliser lo GPS per découvrir la position." + +#~ msgid "Password not found" +#~ msgstr "Mot de passe introuvable" + +#~ msgid "IM account password for %s (%s)" +#~ msgstr "Mot de passe del compte de messagerie instantanée per %s (%s)" + +#~ msgid "Password for chatroom '%s' on account %s (%s)" +#~ msgstr "" +#~ "Mot de passe per lo salon de discussion « %s » sus lo compte %s (%s)" + +#~ msgid "%d second ago" +#~ msgid_plural "%d seconds ago" +#~ msgstr[0] "il y a %d seconde" +#~ msgstr[1] "il y a %d secondes" + +#~ msgid "%d minute ago" +#~ msgid_plural "%d minutes ago" +#~ msgstr[0] "il y a %d minute" +#~ msgstr[1] "il y a %d minutes" + +#~ msgid "%d hour ago" +#~ msgid_plural "%d hours ago" +#~ msgstr[0] "il y a %d heure" +#~ msgstr[1] "il y a %d heures" + +#~ msgid "%d day ago" +#~ msgid_plural "%d days ago" +#~ msgstr[0] "il y a %d jour" +#~ msgstr[1] "il y a %d jours" + +#~ msgid "%d week ago" +#~ msgid_plural "%d weeks ago" +#~ msgstr[0] "il y a %d semaine" +#~ msgstr[1] "il y a %d semaines" + +#~ msgid "%d month ago" +#~ msgid_plural "%d months ago" +#~ msgstr[0] "il y a %d mois" +#~ msgstr[1] "il y a %d mois" + +#~ msgid "in the future" +#~ msgstr "dans lo futur" + +#~ msgid "Yahoo! Japan" +#~ msgstr "Yahoo! Japon" + +#~ msgid "Facebook Chat" +#~ msgstr "Discussion Facebook" + +#~ msgid "Pass_word" +#~ msgstr "_Mot de passe" + +#~ msgid "Screen _Name" +#~ msgstr "_Nom a l'écran" + +#~ msgid "Example: MyScreenName" +#~ msgstr "Exemple : MonNomEcran" + +#~ msgid "_Port" +#~ msgstr "_Port" + +#~ msgid "_Server" +#~ msgstr "_Serveur" + +#~ msgid "Advanced" +#~ msgstr "Avancé" + +#~ msgid "What is your AIM screen name?" +#~ msgstr "Quel es votre nom a l'écran AIM ?" + +#~ msgid "What is your AIM password?" +#~ msgstr "Quel es votre mot de passe AIM ?" + +#~ msgid "Remember Password" +#~ msgstr "Se souvenir del mot de passe" + +#~ msgid "Server" +#~ msgstr "Serveur" + +#~ msgid "Port" +#~ msgstr "Port" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "Username:" +#~ msgstr "Nom d'utilisateur :" + +#~ msgid "A_pply" +#~ msgstr "A_ppliquer" + +#~ msgid "L_og in" +#~ msgstr "Se _connecter" + +#~ msgid "This account already exists on the server" +#~ msgstr "Ce compte existe déjà sus lo serveur" + +#~ msgid "Create a new account on the server" +#~ msgstr "Créer un nouveau compte sus lo serveur" + +#~ msgid "%1$s on %2$s" +#~ msgstr "%1$s sus %2$s" + +#~ msgid "%s Account" +#~ msgstr "Compte %s" + +#~ msgid "New account" +#~ msgstr "Nouveau compte" + +#~ msgid "Login I_D" +#~ msgstr "I_dentifiant de connexion" + +#~ msgid "Example: username" +#~ msgstr "Exemple : nom_utilisateur" + +#~ msgid "What is your GroupWise User ID?" +#~ msgstr "Quel es votre identifiant utilisateur GroupWise ?" + +#~ msgid "What is your GroupWise password?" +#~ msgstr "Quel es votre mot de passe GroupWise ?" + +#~ msgid "ICQ _UIN" +#~ msgstr "_UIN ICQ" + +#~ msgid "Example: 123456789" +#~ msgstr "Exemple : 123456789" + +#~ msgid "Ch_aracter set" +#~ msgstr "Jeu de c_aractères" + +#~ msgid "What is your ICQ UIN?" +#~ msgstr "Quel es votre UIN ICQ ?" + +#~ msgid "What is your ICQ password?" +#~ msgstr "Quel es votre mot de passe ICQ ?" + +#~ msgid "Network" +#~ msgstr "Ret" + +#~ msgid "Character set" +#~ msgstr "Jeu de caractères" + +#~ msgid "Up" +#~ msgstr "En haut" + +#~ msgid "Down" +#~ msgstr "En bas" + +#~ msgid "Servers" +#~ msgstr "Serveurs" + +#~ msgid "" +#~ "Most IRC servers don't need a password, so if you're not sure, don't " +#~ "enter a password." +#~ msgstr "" +#~ "La plupart des serveurs IRC ne nécessitent pas de mot de passe. Se vous " +#~ "n'êtes pas sûr, n'en saisissez pas." + +#~ msgid "Nickname" +#~ msgstr "Pseudonyme" + +#~ msgid "Quit message" +#~ msgstr "Message de départ" + +#~ msgid "Real name" +#~ msgstr "Nom réel" + +#~ msgid "Username" +#~ msgstr "Nom d'utilisateur" + +#~ msgid "Which IRC network?" +#~ msgstr "Quel ret IRC ?" + +#~ msgid "What is your IRC nickname?" +#~ msgstr "Quel es votre pseudonyme IRC ?" + +#~ msgid "What is your Facebook username?" +#~ msgstr "Quel es votre nom d'utilisateur Facebook ?" + +# 'blaireau' has been judged an offensive name in French +#~ msgid "" +#~ "This is your username, not your normal Facebook login.\n" +#~ "If you are facebook.com/badger, enter badger.\n" +#~ "Use this page to choose " +#~ "a Facebook username if you don't have one." +#~ msgstr "" +#~ "C'est votre nom d'utilisateur, pas votre identifiant Facebook.\n" +#~ "Se vous êtes facebook.com/castor, saisissez castor.\n" +#~ "Utilisez cette page " +#~ "pour choisir un nom d'utilisateur Facebook se vous n'en avez pas un." + +#~ msgid "What is your Facebook password?" +#~ msgstr "Quel es votre mot de passe Facebook ?" + +#~ msgid "What is your Google ID?" +#~ msgstr "Quel es votre identifiant Google ?" + +#~ msgid "Example: user@gmail.com" +#~ msgstr "Exemple : utilisateur@gmail.com" + +#~ msgid "What is your Google password?" +#~ msgstr "Quel es votre mot de passe Google ?" + +#~ msgid "Example: user@jabber.org" +#~ msgstr "Exemple : nom@jabber.org" + +#~ msgid "I_gnore SSL certificate errors" +#~ msgstr "_Ignorer les erreurs de certificat SSL" + +#~ msgid "Priori_ty" +#~ msgstr "Pri_orité" + +#~ msgid "Reso_urce" +#~ msgstr "Resso_urce" + +#~ msgid "Encr_yption required (TLS/SSL)" +#~ msgstr "Chiffr_ement requis (TLS/SSL)" + +#~ msgid "Override server settings" +#~ msgstr "Outrepasser les paramètres del serveur" + +#~ msgid "Use old SS_L" +#~ msgstr "Utiliser l'ancien SS_L" + +#~ msgid "What is your Jabber ID?" +#~ msgstr "Quel es votre identifiant Jabber ?" + +#~ msgid "What is your desired Jabber ID?" +#~ msgstr "Que souhaitez-vous comme identifiant Jabber ?" + +#~ msgid "What is your Jabber password?" +#~ msgstr "Quel es votre mot de passe Jabber ?" + +#~ msgid "What is your desired Jabber password?" +#~ msgstr "Que souhaitez-vous comme mot de passe Jabber ?" + +#~ msgid "Nic_kname" +#~ msgstr "P_seudonyme" + +#~ msgid "_Last Name" +#~ msgstr "_Nom" + +#~ msgid "_First Name" +#~ msgstr "_Prénom" + +#~ msgid "_Published Name" +#~ msgstr "Nom p_ublié" + +#~ msgid "_Jabber ID" +#~ msgstr "_Identifiant Jabber" + +#~ msgid "E-_mail address" +#~ msgstr "A_dresse électronique" + +#~ msgid "Example: user@hotmail.com" +#~ msgstr "Exemple : nom@hotmail.com" + +#~ msgid "What is your Windows Live ID?" +#~ msgstr "Quel es votre identifiant Windows Live ?" + +#~ msgid "What is your Windows Live password?" +#~ msgstr "Quel es votre mot de passe Windows Live ?" + +#~ msgid "Auto" +#~ msgstr "Auto" + +#~ msgid "UDP" +#~ msgstr "UDP" + +#~ msgid "TCP" +#~ msgstr "TCP" + +#~ msgid "TLS" +#~ msgstr "TLS" + +#~ msgid "Register" +#~ msgstr "Enregistrer" + +#~ msgid "None" +#~ msgstr "Aucun" + +#~ msgid "_Username" +#~ msgstr "_Nom d'utilisateur" + +#~ msgid "Example: user@my.sip.server" +#~ msgstr "Exemple : nom@mon.serveur.sip" + +#~ msgid "Use this account to call _landlines and mobile phones" +#~ msgstr "" +#~ "Utiliser ce compte per apelar des _lignes fixes o des téléphones " +#~ "mobiles" + +#~ msgid "NAT Traversal Options" +#~ msgstr "Options de parcours NAT" + +#~ msgid "Proxy Options" +#~ msgstr "Options de serveur mandataire" + +#~ msgid "Miscellaneous Options" +#~ msgstr "Options diverses" + +#~ msgid "STUN Server" +#~ msgstr "Serveur STUN" + +#~ msgid "Discover the STUN server automatically" +#~ msgstr "Découvrir automatiquement lo serveur STUN" + +#~ msgid "Discover Binding" +#~ msgstr "Découvrir la liaison" + +#~ msgid "Keep-Alive Options" +#~ msgstr "Options de connexions persistantes" + +#~ msgid "Mechanism" +#~ msgstr "Mécanisme" + +#~ msgid "Interval (seconds)" +#~ msgstr "Intervalle (secondes)" + +#~ msgid "Authentication username" +#~ msgstr "Nom d'utilisateur per l'authentification" + +#~ msgid "Transport" +#~ msgstr "Transport" + +# Je ne trouve pas de traduction donc j'ai laissé en anglais e mis lo terme approximatif entre parenthèses +#~ msgid "Loose Routing" +#~ msgstr "Loose Routing (routage non strict)" + +#~ msgid "Ignore TLS Errors" +#~ msgstr "Ignorer les erreurs TLS" + +#~ msgid "Local IP Address" +#~ msgstr "Adresse IP locale" + +#~ msgid "What is your SIP login ID?" +#~ msgstr "Quel es votre identifiant de connexion SIP ?" + +#~ msgid "What is your SIP account password?" +#~ msgstr "Quel es votre mot de passe de compte SIP ?" + +#~ msgid "Pass_word:" +#~ msgstr "_Mot de passe :" + +#~ msgid "Yahoo! I_D:" +#~ msgstr "I_dentifiant Yahoo! :" + +#~ msgid "I_gnore conference and chat room invitations" +#~ msgstr "" +#~ "_Ignorer les invitations a des conférences o a des salons de discussion" + +#~ msgid "_Room List locale:" +#~ msgstr "Codage de la liste des _salons :" + +#~ msgid "Ch_aracter set:" +#~ msgstr "Jeu de c_aractères :" + +#~ msgid "_Port:" +#~ msgstr "_Port :" + +#~ msgid "What is your Yahoo! ID?" +#~ msgstr "Quel es votre identifiant Yahoo! ?" + +#~ msgid "What is your Yahoo! password?" +#~ msgstr "Quel es votre mot de passe Yahoo! ?" + +#~ msgid "Couldn't convert image" +#~ msgstr "Impossible de convertir l'image" + +#~ msgid "None of the accepted image formats are supported on your system" +#~ msgstr "" +#~ "Aucun des formats d'image acceptés n'est pris en charge per votre sistèma" + +#~ msgid "Couldn't save picture to file" +#~ msgstr "Impossible d'enregistrer l'image dins lo fichier" + +#~ msgid "Select Your Avatar Image" +#~ msgstr "Sélection de l'image d'avatar" + +#~ msgid "Take a picture..." +#~ msgstr "Prendre una photo..." + +#~ msgid "No Image" +#~ msgstr "Aucune image" + +#~ msgid "All Files" +#~ msgstr "Tous les fichiers" + +#~ msgid "Select..." +#~ msgstr "Sélectionner..." + +#~ msgid "Full name" +#~ msgstr "Nom complet" + +#~ msgid "Phone number" +#~ msgstr "Numéro de téléphone" + +#~ msgid "E-mail address" +#~ msgstr "Adresse électronique" + +#~ msgid "Website" +#~ msgstr "Site Web" + +#~ msgid "Birthday" +#~ msgstr "Anniversaire" + +#~ msgid "Last seen:" +#~ msgstr "Dernière consultation :" + +#~ msgid "Server:" +#~ msgstr "Serveur :" + +#~ msgid "Connected from:" +#~ msgstr "Connecté de :" + +#~ msgid "Away message:" +#~ msgstr "Message d'absence :" + +#~ msgid "work" +#~ msgstr "travail" + +#~ msgid "home" +#~ msgstr "maison" + +#~ msgid "mobile" +#~ msgstr "mobile" + +#~ msgid "voice" +#~ msgstr "voix" + +#~ msgid "preferred" +#~ msgstr "préféré" + +#~ msgid "postal" +#~ msgstr "postal" + +#~ msgid "parcel" +#~ msgstr "paquet" + +#~ msgid "New Network" +#~ msgstr "Nouveau ret" + +#~ msgid "Choose an IRC network" +#~ msgstr "Choisir un ret IRC" + +#~ msgid "Reset _Networks List" +#~ msgstr "Réi_nitialiser la liste des rets" + +#~ msgctxt "verb displayed on a button to select an IRC network" +#~ msgid "Select" +#~ msgstr "Sélectionner" + +#~ msgid "new server" +#~ msgstr "nouveau serveur" + +#~ msgid "SSL" +#~ msgstr "SSL" + +#~ msgid "New %s account" +#~ msgstr "Nouveau compte %s" + +#~ msgid "Go online to edit your personal information." +#~ msgstr "Mettez-vous en ligne per modifier vos informations personnelles." + +#~ msgid "Personal Details" +#~ msgstr "Détails personnels" + +#~ msgid "Current Locale" +#~ msgstr "Locale actuala" + +#~ msgid "Arabic" +#~ msgstr "Arabe" + +#~ msgid "Armenian" +#~ msgstr "Arménien" + +#~ msgid "Baltic" +#~ msgstr "Balte" + +#~ msgid "Celtic" +#~ msgstr "Celtique" + +#~ msgid "Central European" +#~ msgstr "Européen central" + +#~ msgid "Chinese Simplified" +#~ msgstr "Chinois simplifié" + +#~ msgid "Chinese Traditional" +#~ msgstr "Chinois traditionnel" + +#~ msgid "Croatian" +#~ msgstr "Croate" + +#~ msgid "Cyrillic" +#~ msgstr "Cyrillique" + +#~ msgid "Cyrillic/Russian" +#~ msgstr "Cyrillique/Russe" + +#~ msgid "Cyrillic/Ukrainian" +#~ msgstr "Cyrillique/Ukrainien" + +#~ msgid "Georgian" +#~ msgstr "Géorgien" + +#~ msgid "Greek" +#~ msgstr "Grec" + +#~ msgid "Gujarati" +#~ msgstr "Gujarâtî" + +#~ msgid "Gurmukhi" +#~ msgstr "Gurmukhī" + +#~ msgid "Hebrew" +#~ msgstr "Hébreu" + +#~ msgid "Hebrew Visual" +#~ msgstr "Hébreu visual" + +#~ msgid "Hindi" +#~ msgstr "Hindi" + +#~ msgid "Icelandic" +#~ msgstr "Islandais" + +#~ msgid "Japanese" +#~ msgstr "Japonais" + +#~ msgid "Korean" +#~ msgstr "Coréen" + +#~ msgid "Nordic" +#~ msgstr "Nordique" + +#~ msgid "Persian" +#~ msgstr "Perse" + +#~ msgid "Romanian" +#~ msgstr "Roumain" + +#~ msgid "South European" +#~ msgstr "Européen méridional" + +#~ msgid "Thai" +#~ msgstr "Thaï" + +#~ msgid "Turkish" +#~ msgstr "Turc" + +#~ msgid "Unicode" +#~ msgstr "Unicode" + +#~ msgid "Western" +#~ msgstr "Occidental" + +#~ msgid "Vietnamese" +#~ msgstr "Vietnamien" + +#~ msgid "_Edit Connection Parameters..." +#~ msgstr "_Modifier les paramètres de la connexion..." + +#~ msgid "_GPS" +#~ msgstr "_GPS" + +#~ msgid "_Cellphone" +#~ msgstr "Téléphone _mobile" + +#~ msgid "_Network (IP, Wi-Fi)" +#~ msgstr "_Ret (IP, Wi-Fi)" + +#~ msgid "Location sources:" +#~ msgstr "Sources de positionnement :" + +#~ msgid "_New Conversation..." +#~ msgstr "_Nouvelle conversation..." + +#~ msgid "New _Call..." +#~ msgstr "Nouvel _appel..." + +#~ msgid "_Add Contacts..." +#~ msgstr "A_jouter des contacts..." + +#~ msgid "_Join..." +#~ msgstr "Re_joindre..." + +#~ msgid "_Add Contact..." +#~ msgstr "A_jouter un contact..." + +#~ msgid "i" +#~ msgstr "i" + +#~ msgid "Manage Messaging and VoIP accounts" +#~ msgstr "Gestion des comptes de messagerie e VoIP" + +#~ msgid "%A %B %d %Y" +#~ msgstr "%A %d %B %Y" + +#~ msgid "_Block User" +#~ msgstr "_Bloquer l'utilisateur" + +#~ msgid "Decide _Later" +#~ msgstr "Décider plus _tard" + +#~ msgid "Classic" +#~ msgstr "Classique" + +#~ msgid "Simple" +#~ msgstr "Simple" + +#~ msgid "Clean" +#~ msgstr "Propre" + +#~ msgid "Blue" +#~ msgstr "Bleu" + +#~ msgid "Failed to retrieve your personal information from the server." +#~ msgstr "" +#~ "Échec de la récupération de vos informations personnelles a partir del " +#~ "serveur." + +#~ msgid "Show avatars" +#~ msgstr "Afichar les avatars" + +#~ msgid "" +#~ "Whether to show avatars for contacts in the contact list and chat windows." +#~ msgstr "" +#~ "Indica se cal afichar les avatars des contacts dins la liste des " +#~ "contacts e les fenèstras de discussion." + +#~ msgid "Show protocols" +#~ msgstr "Afichar les protocoles" + +#~ msgid "Whether to show protocols for contacts in the contact list." +#~ msgstr "" +#~ "Indica se cal afichar les protocoles des contacts dins la liste des " +#~ "contacts." + +#~ msgid "Compact contact list" +#~ msgstr "Liste compacte des contacts" + +#~ msgid "Whether to show the contact list in compact mode." +#~ msgstr "Indica se cal afichar la liste des contacts en mode compact." + +#~ msgid "Contact list sort criterion" +#~ msgstr "Critère de tri per la liste des contacts" + +#~ msgid "" +#~ "Which criterion to use when sorting the contact list. Default is to sort " +#~ "by the contact's state with the value \"state\". A value of \"name\" will " +#~ "sort the contact list by name." +#~ msgstr "" +#~ "Quel critère utiliser per lo tri de la liste des contacts. Lo " +#~ "comportement per défaut es de trier selon l'état del contact (valeur : « " +#~ "state »). Una valeur « name » triera la liste des contacts selon leur nom." + +#~ msgid "Show protocol in avatar" +#~ msgstr "Afichar lo protocole dins l'avatar" + +#~ msgid "Sort contacts by:" +#~ msgstr "Trier les contacts per :" + +#~ msgid "status" +#~ msgstr "état" + +#~ msgid "name" +#~ msgstr "nom" diff -Nru epiphany-browser-3.18.5/po/sr@latin.po epiphany-browser-3.18.10/po/sr@latin.po --- epiphany-browser-3.18.5/po/sr@latin.po 2016-03-14 23:34:00.000000000 +0000 +++ epiphany-browser-3.18.10/po/sr@latin.po 2016-12-28 00:37:59.000000000 +0000 @@ -1,27 +1,25 @@ # Serbian translation of epiphany -# Courtesy of Prevod.org team (http://prevod.org/) -- 2003—2015. +# Courtesy of Prevod.org team (http://prevod.org/) -- 2003—2016. # This file is distributed under the same license as the epiphany package. # Danilo Šegan 2005. -# Miroslav Nikolić , 2011—2015. -# Miloš Popović , 2010—20, 2015. -# +# Miroslav Nikolić , 2011—2016. +# Miloš Popović , 2010—2015. msgid "" msgstr "" "Project-Id-Version: epiphany\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=epiphany&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2015-09-21 15:49+0000\n" -"PO-Revision-Date: 2015-09-21 23:40+0200\n" -"Last-Translator: Miloš Popović \n" -"Language-Team: srpski \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=epiphan" +"y&keywords=I18N+L10N&component=I18N\n" +"POT-Creation-Date: 2016-10-29 14:21+0000\n" +"PO-Revision-Date: 2016-11-18 09:35+0200\n" +"Last-Translator: Miroslav Nikolić \n" +"Language-Team: srpski \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : n" -"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : " +"n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Project-Style: gnome\n" -"X-Generator: Gtranslator 2.91.7\n" #: ../data/default-bookmarks.rdf.in.h:1 msgid "Search the web" @@ -66,10 +64,6 @@ msgstr "Veb preglednik za Gnom" #: ../data/epiphany.appdata.xml.in.h:3 -#| msgid "" -#| "The web browser for GNOME, featuring tight integration with the desktop " -#| "and a simple and intuitive user interface that allows you to focus on " -#| "your web pages." msgid "" "The web browser for GNOME, featuring tight integration with the desktop and " "a simple and intuitive user interface that allows you to focus on your web " @@ -558,6 +552,11 @@ msgid "List of installed web applications" msgstr "Spisak instaliranih veb programa" +#: ../embed/ephy-about-handler.c:368 +#| msgid "_Delete" +msgid "Delete" +msgstr "Obriši" + #. Note for translators: this refers to the installation date. #: ../embed/ephy-about-handler.c:370 msgid "Installed on:" @@ -571,11 +570,11 @@ msgid "Remove from overview" msgstr "Ukloni iz pregleda" -#: ../embed/ephy-about-handler.c:573 ../embed/ephy-about-handler.c:574 +#: ../embed/ephy-about-handler.c:574 ../embed/ephy-about-handler.c:575 msgid "Private Browsing" msgstr "Privatno pregledanje" -#: ../embed/ephy-about-handler.c:575 +#: ../embed/ephy-about-handler.c:576 msgid "" "You are currently browsing incognito. Pages viewed in this mode " "will not show up in your browsing history and all stored information will be " @@ -585,13 +584,13 @@ "prikazane u vašem istorijatu pregledanja a svi pričuvani podaci će biti " "očišćeni kada zatvorite prozor. Datoteke koje ste preuzeli biće zadržane." -#: ../embed/ephy-about-handler.c:579 +#: ../embed/ephy-about-handler.c:580 msgid "" "Incognito mode hides your activity only from people using this computer." msgstr "" "Tajni režim skriva vašu aktivnost samo od ljudi koji koriste ovaj računar." -#: ../embed/ephy-about-handler.c:581 +#: ../embed/ephy-about-handler.c:582 msgid "" "It will not hide your activity from your employer if you are at work. Your " "internet service provider, your government, other governments, the websites " @@ -606,17 +605,17 @@ msgid "Blank page" msgstr "Prazna stranica" -#: ../embed/ephy-embed.c:548 +#: ../embed/ephy-embed.c:549 #, c-format msgid "Press %s to exit fullscreen" msgstr "Pritisnite „%s“ da napustite ceo ekran" #. Translators: 'ESC' and 'F11' are keyboard keys. -#: ../embed/ephy-embed.c:551 +#: ../embed/ephy-embed.c:552 msgid "ESC" msgstr "ESC" -#: ../embed/ephy-embed.c:551 +#: ../embed/ephy-embed.c:552 msgid "F11" msgstr "F11" @@ -969,60 +968,60 @@ msgid "Find next occurrence of the search string" msgstr "Pronađite sledeći izraz u nizu za pretraživanje" -#: ../embed/ephy-web-view.c:494 +#: ../embed/ephy-web-view.c:516 msgid "_Don’t Save" msgstr "_Ne čuvaj" -#: ../embed/ephy-web-view.c:495 ../lib/ephy-file-chooser.c:194 +#: ../embed/ephy-web-view.c:517 ../lib/ephy-file-chooser.c:194 msgid "_Save" msgstr "_Sačuvaj" #. Translators: The %s the hostname where this is happening. #. * Example: mail.google.com. #. -#: ../embed/ephy-web-view.c:506 +#: ../embed/ephy-web-view.c:528 #, c-format msgid "Do you want to save your password for “%s”?" msgstr "Da li želite da sačuvate vašu lozinku za „%s“?" -#: ../embed/ephy-web-view.c:1434 +#: ../embed/ephy-web-view.c:1461 msgid "Deny" msgstr "Zabrani" -#: ../embed/ephy-web-view.c:1435 +#: ../embed/ephy-web-view.c:1462 msgid "Allow" msgstr "Prihvati" #. Translators: Geolocation policy for a specific site. -#: ../embed/ephy-web-view.c:1447 +#: ../embed/ephy-web-view.c:1474 #, c-format msgid "The page at %s wants to know your location." msgstr "Stranica na %s želi da sazna vašu lokaciju." #. Translators: Notification policy for a specific site. -#: ../embed/ephy-web-view.c:1451 +#: ../embed/ephy-web-view.c:1478 #, c-format msgid "The page at %s wants to show desktop notifications." msgstr "Stranica na %s želi da prikaže obaveštenja radne površi." #. translators: %s here is the address of the web page -#: ../embed/ephy-web-view.c:1539 +#: ../embed/ephy-web-view.c:1571 #, c-format msgid "Loading “%s”…" msgstr "Učitavam „%s“…" -#: ../embed/ephy-web-view.c:1541 +#: ../embed/ephy-web-view.c:1573 msgid "Loading…" msgstr "Učitavam…" #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1764 +#: ../embed/ephy-web-view.c:1796 msgid "" "This website presented identification that belongs to a different website." msgstr "Ovaj veb sajt je predstavio raspoznaju koja pripada drugom veb sajtu." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1769 +#: ../embed/ephy-web-view.c:1801 msgid "" "This website’s identification is too old to trust. Check the date on your " "computer’s calendar." @@ -1031,18 +1030,18 @@ "datum na kalendaru vašeg računara." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1774 +#: ../embed/ephy-web-view.c:1806 msgid "This website’s identification was not issued by a trusted organization." msgstr "Raspoznaju ovog veb sajta nije izdala poverljiva organizacija." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1779 +#: ../embed/ephy-web-view.c:1811 msgid "" "This website’s identification could not be processed. It may be corrupted." msgstr "Raspoznaja ovog veb sajta ne može biti obrađena. Možda je oštećena." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1784 +#: ../embed/ephy-web-view.c:1816 msgid "" "This website’s identification has been revoked by the trusted organization " "that issued it." @@ -1051,7 +1050,7 @@ "izdala." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1789 +#: ../embed/ephy-web-view.c:1821 msgid "" "This website’s identification cannot be trusted because it uses very weak " "encryption." @@ -1060,7 +1059,7 @@ "šifrovanje." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1794 +#: ../embed/ephy-web-view.c:1826 msgid "" "This website’s identification is only valid for future dates. Check the date " "on your computer’s calendar." @@ -1069,13 +1068,13 @@ "na kalendaru vašeg računara." #. Message when a site's TLS certificate is invalid. %s is the site's hostname. -#: ../embed/ephy-web-view.c:1830 +#: ../embed/ephy-web-view.c:1862 #, c-format msgid "This might not be the real %s." msgstr "Ovo možda nije stvarni „%s“." #. Message when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1835 +#: ../embed/ephy-web-view.c:1867 msgid "" "When you try to connect securely, websites present identification to prove " "that your connection has not been maliciously intercepted. There is " @@ -1086,7 +1085,7 @@ "raspoznajom ovog veb sajta:" #. Message when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1841 +#: ../embed/ephy-web-view.c:1873 msgid "" "A third party may have hijacked your connection. You should continue only if " "you know there is a good reason why this website does not use trusted " @@ -1097,29 +1096,29 @@ "raspoznaju." #. Good advice from Firefox; displays when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1845 +#: ../embed/ephy-web-view.c:1877 msgid "" "Legitimate banks, stores, and other public sites will not ask you to do this." msgstr "" "Zakonite banke, prodavnice, i drugi javni sajtovi neće tražiti da uradite " "ovo." -#: ../embed/ephy-web-view.c:1886 +#: ../embed/ephy-web-view.c:1918 msgid "None specified" msgstr "Ništa nije određeno" #. Page title when a site cannot be loaded. %s is the site's hostname. -#: ../embed/ephy-web-view.c:1899 ../embed/ephy-web-view.c:1914 -#: ../embed/ephy-web-view.c:1934 +#: ../embed/ephy-web-view.c:1931 ../embed/ephy-web-view.c:1946 +#: ../embed/ephy-web-view.c:1966 #, c-format msgid "Problem loading “%s”" msgstr "Problem učitavanja „%s“" -#: ../embed/ephy-web-view.c:1901 +#: ../embed/ephy-web-view.c:1933 msgid "Oops! Unable to display this website." msgstr "Ups! Ne mogu da prikažem ovu veb stranicu." -#: ../embed/ephy-web-view.c:1902 +#: ../embed/ephy-web-view.c:1934 #, c-format msgid "" "

The site at “%s” seems to be unavailable. The precise error was:" -#: ../embed/ephy-web-view.c:1910 +#: ../embed/ephy-web-view.c:1942 msgid "Try again" msgstr "Pokušaj ponovo" -#: ../embed/ephy-web-view.c:1916 +#: ../embed/ephy-web-view.c:1948 msgid "Oops! There may be a problem." msgstr "Ups! Neprilike na vidiku." -#: ../embed/ephy-web-view.c:1917 +#: ../embed/ephy-web-view.c:1949 #, c-format msgid "" "

This site may have caused Web to close unexpectedly.

If this " @@ -1150,20 +1149,20 @@ "

Ova stranica je možda dovela do neočekivanog zatvaranja Veba.

Ako se " "ovo desi ponovo, obavestite programere %s-a.

" -#: ../embed/ephy-web-view.c:1922 ../embed/ephy-web-view.c:1929 +#: ../embed/ephy-web-view.c:1954 ../embed/ephy-web-view.c:1961 msgid "Reload Anyway" msgstr "Ipak ponovo učitaj" -#: ../embed/ephy-web-view.c:1926 +#: ../embed/ephy-web-view.c:1958 #, c-format msgid "Problem displaying “%s”" msgstr "Problem prikazivanja „%s“" -#: ../embed/ephy-web-view.c:1927 +#: ../embed/ephy-web-view.c:1959 msgid "Oops!" msgstr "Ups!" -#: ../embed/ephy-web-view.c:1928 +#: ../embed/ephy-web-view.c:1960 msgid "" "Something went wrong while displaying this page. Please reload or visit a " "different page to continue." @@ -1172,16 +1171,16 @@ "ili posetite neku drugu stranicu da nastavite." #. Title of error page when a website's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1936 +#: ../embed/ephy-web-view.c:1968 msgid "Look out!" msgstr "Pazite!" #. Button on error page when a website's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1939 +#: ../embed/ephy-web-view.c:1971 msgid "Load Anyway" msgstr "Ipak učitaj" -#: ../embed/ephy-web-view.c:2867 +#: ../embed/ephy-web-view.c:2899 msgid "_OK" msgstr "U _redu" @@ -1197,19 +1196,19 @@ msgid "_Open" msgstr "_Otvori" -#: ../lib/ephy-file-chooser.c:209 +#: ../lib/ephy-file-chooser.c:210 msgid "All supported types" msgstr "Sve podržane vrste" -#: ../lib/ephy-file-chooser.c:223 +#: ../lib/ephy-file-chooser.c:224 msgid "Web pages" msgstr "Veb strane" -#: ../lib/ephy-file-chooser.c:234 +#: ../lib/ephy-file-chooser.c:235 msgid "Images" msgstr "Slike" -#: ../lib/ephy-file-chooser.c:242 ../src/bookmarks/ephy-bookmarks-editor.c:638 +#: ../lib/ephy-file-chooser.c:243 ../src/bookmarks/ephy-bookmarks-editor.c:638 msgid "All files" msgstr "Sve datoteke" @@ -1548,7 +1547,7 @@ msgid "Cancel" msgstr "Otkaži" -#: ../lib/widgets/ephy-download-widget.c:384 ../src/ephy-window.c:1130 +#: ../lib/widgets/ephy-download-widget.c:384 ../src/ephy-window.c:1138 #: ../src/window-commands.c:275 msgid "Open" msgstr "Otvori" @@ -1565,20 +1564,20 @@ #. * standard items in the GtkEntry context menu (Cut, Copy, Paste, Delete, #. * Select All, Input Methods and Insert Unicode control character.) #. -#: ../lib/widgets/ephy-location-entry.c:605 ../src/ephy-history-window.c:265 +#: ../lib/widgets/ephy-location-entry.c:647 ../src/ephy-history-window.c:265 msgid "Cl_ear" msgstr "_Očisti" #. Edit actions. -#: ../lib/widgets/ephy-location-entry.c:624 ../src/ephy-window.c:119 +#: ../lib/widgets/ephy-location-entry.c:666 ../src/ephy-window.c:119 msgid "_Undo" msgstr "_Opozovi" -#: ../lib/widgets/ephy-location-entry.c:631 +#: ../lib/widgets/ephy-location-entry.c:673 msgid "_Redo" msgstr "_Ponovi" -#: ../lib/widgets/ephy-location-entry.c:911 +#: ../lib/widgets/ephy-location-entry.c:953 msgid "Drag and drop this icon to create a link to this page" msgstr "Prevucite i pustite ovu ikonu kako bi napravili vezu ka ovoj strani" @@ -2600,7 +2599,6 @@ msgstr "Otvori vezu u novom _jezičku" #: ../src/ephy-window.c:222 -#| msgid "Open Link in New _Window" msgid "Open Link in I_ncognito Window" msgstr "Otvori vezu u _tajnom prozoru" @@ -2693,59 +2691,58 @@ msgid "Close window and cancel downloads" msgstr "Zatvori prozor i zaustavi preuzimanje" -#: ../src/ephy-window.c:1132 +#: ../src/ephy-window.c:1140 msgid "Save As" msgstr "Sačuvaj kao" -#: ../src/ephy-window.c:1134 +#: ../src/ephy-window.c:1142 msgid "Save As Application" msgstr "Sačuvaj kao program" -#: ../src/ephy-window.c:1136 +#: ../src/ephy-window.c:1144 msgid "Print" msgstr "Štampaj" -#: ../src/ephy-window.c:1138 +#: ../src/ephy-window.c:1146 msgid "Bookmark" msgstr "Obeleživač" -#: ../src/ephy-window.c:1140 +#: ../src/ephy-window.c:1148 msgid "Find" msgstr "Pronađi" #. Translators: This refers to text size -#: ../src/ephy-window.c:1149 +#: ../src/ephy-window.c:1157 msgid "Larger" msgstr "Uvećano" #. Translators: This refers to text size -#: ../src/ephy-window.c:1152 +#: ../src/ephy-window.c:1160 msgid "Smaller" msgstr "Umanjeno" -#: ../src/ephy-window.c:1174 +#: ../src/ephy-window.c:1182 msgid "Back" msgstr "Nazad" -#: ../src/ephy-window.c:1186 +#: ../src/ephy-window.c:1194 msgid "Forward" msgstr "Napred" -#: ../src/ephy-window.c:1198 +#: ../src/ephy-window.c:1206 msgid "Zoom" msgstr "Uvećaj" -#: ../src/ephy-window.c:1207 +#: ../src/ephy-window.c:1215 msgid "New _Tab" msgstr "Novi _jezičak" -#: ../src/ephy-window.c:1215 +#: ../src/ephy-window.c:1223 msgid "Go to most visited" msgstr "Idi na najposećenije" -#: ../src/ephy-window.c:1744 +#: ../src/ephy-window.c:1752 #, c-format -#| msgid "Search the Web for %s" msgid "Search the Web for '%s'" msgstr "Potraži „%s“ na vebu" diff -Nru epiphany-browser-3.18.5/po/sr.po epiphany-browser-3.18.10/po/sr.po --- epiphany-browser-3.18.5/po/sr.po 2016-03-14 23:34:00.000000000 +0000 +++ epiphany-browser-3.18.10/po/sr.po 2016-12-28 00:37:59.000000000 +0000 @@ -1,27 +1,25 @@ # Serbian translation of epiphany -# Courtesy of Prevod.org team (http://prevod.org/) -- 2003—2015. +# Courtesy of Prevod.org team (http://prevod.org/) -- 2003—2016. # This file is distributed under the same license as the epiphany package. # Данило Шеган 2005. -# Мирослав Николић , 2011—2015. -# Милош Поповић , 2010—20, 2015. -# +# Мирослав Николић , 2011—2016. +# Милош Поповић , 2010—2015. msgid "" msgstr "" "Project-Id-Version: epiphany\n" -"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" -"product=epiphany&keywords=I18N+L10N&component=general\n" -"POT-Creation-Date: 2015-09-21 15:49+0000\n" -"PO-Revision-Date: 2015-09-21 23:40+0200\n" -"Last-Translator: Милош Поповић \n" -"Language-Team: српски \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=epiphan" +"y&keywords=I18N+L10N&component=I18N\n" +"POT-Creation-Date: 2016-10-29 14:21+0000\n" +"PO-Revision-Date: 2016-11-18 09:35+0200\n" +"Last-Translator: Мирослав Николић \n" +"Language-Team: српски \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : n" -"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : " +"n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Project-Style: gnome\n" -"X-Generator: Gtranslator 2.91.7\n" #: ../data/default-bookmarks.rdf.in.h:1 msgid "Search the web" @@ -66,10 +64,6 @@ msgstr "Веб прегледник за Гном" #: ../data/epiphany.appdata.xml.in.h:3 -#| msgid "" -#| "The web browser for GNOME, featuring tight integration with the desktop " -#| "and a simple and intuitive user interface that allows you to focus on " -#| "your web pages." msgid "" "The web browser for GNOME, featuring tight integration with the desktop and " "a simple and intuitive user interface that allows you to focus on your web " @@ -558,6 +552,11 @@ msgid "List of installed web applications" msgstr "Списак инсталираних веб програма" +#: ../embed/ephy-about-handler.c:368 +#| msgid "_Delete" +msgid "Delete" +msgstr "Обриши" + #. Note for translators: this refers to the installation date. #: ../embed/ephy-about-handler.c:370 msgid "Installed on:" @@ -571,11 +570,11 @@ msgid "Remove from overview" msgstr "Уклони из прегледа" -#: ../embed/ephy-about-handler.c:573 ../embed/ephy-about-handler.c:574 +#: ../embed/ephy-about-handler.c:574 ../embed/ephy-about-handler.c:575 msgid "Private Browsing" msgstr "Приватно прегледање" -#: ../embed/ephy-about-handler.c:575 +#: ../embed/ephy-about-handler.c:576 msgid "" "You are currently browsing incognito. Pages viewed in this mode " "will not show up in your browsing history and all stored information will be " @@ -585,13 +584,13 @@ "приказане у вашем историјату прегледања а сви причувани подаци ће бити " "очишћени када затворите прозор. Датотеке које сте преузели биће задржане." -#: ../embed/ephy-about-handler.c:579 +#: ../embed/ephy-about-handler.c:580 msgid "" "Incognito mode hides your activity only from people using this computer." msgstr "" "Тајни режим скрива вашу активност само од људи који користе овај рачунар." -#: ../embed/ephy-about-handler.c:581 +#: ../embed/ephy-about-handler.c:582 msgid "" "It will not hide your activity from your employer if you are at work. Your " "internet service provider, your government, other governments, the websites " @@ -606,17 +605,17 @@ msgid "Blank page" msgstr "Празна страница" -#: ../embed/ephy-embed.c:548 +#: ../embed/ephy-embed.c:549 #, c-format msgid "Press %s to exit fullscreen" msgstr "Притисните „%s“ да напустите цео екран" #. Translators: 'ESC' and 'F11' are keyboard keys. -#: ../embed/ephy-embed.c:551 +#: ../embed/ephy-embed.c:552 msgid "ESC" msgstr "ЕСЦ" -#: ../embed/ephy-embed.c:551 +#: ../embed/ephy-embed.c:552 msgid "F11" msgstr "Ф11" @@ -969,60 +968,60 @@ msgid "Find next occurrence of the search string" msgstr "Пронађите следећи израз у низу за претраживање" -#: ../embed/ephy-web-view.c:494 +#: ../embed/ephy-web-view.c:516 msgid "_Don’t Save" msgstr "_Не чувај" -#: ../embed/ephy-web-view.c:495 ../lib/ephy-file-chooser.c:194 +#: ../embed/ephy-web-view.c:517 ../lib/ephy-file-chooser.c:194 msgid "_Save" msgstr "_Сачувај" #. Translators: The %s the hostname where this is happening. #. * Example: mail.google.com. #. -#: ../embed/ephy-web-view.c:506 +#: ../embed/ephy-web-view.c:528 #, c-format msgid "Do you want to save your password for “%s”?" msgstr "Да ли желите да сачувате вашу лозинку за „%s“?" -#: ../embed/ephy-web-view.c:1434 +#: ../embed/ephy-web-view.c:1461 msgid "Deny" msgstr "Забрани" -#: ../embed/ephy-web-view.c:1435 +#: ../embed/ephy-web-view.c:1462 msgid "Allow" msgstr "Прихвати" #. Translators: Geolocation policy for a specific site. -#: ../embed/ephy-web-view.c:1447 +#: ../embed/ephy-web-view.c:1474 #, c-format msgid "The page at %s wants to know your location." msgstr "Страница на %s жели да сазна вашу локацију." #. Translators: Notification policy for a specific site. -#: ../embed/ephy-web-view.c:1451 +#: ../embed/ephy-web-view.c:1478 #, c-format msgid "The page at %s wants to show desktop notifications." msgstr "Страница на %s жели да прикаже обавештења радне површи." #. translators: %s here is the address of the web page -#: ../embed/ephy-web-view.c:1539 +#: ../embed/ephy-web-view.c:1571 #, c-format msgid "Loading “%s”…" msgstr "Учитавам „%s“…" -#: ../embed/ephy-web-view.c:1541 +#: ../embed/ephy-web-view.c:1573 msgid "Loading…" msgstr "Учитавам…" #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1764 +#: ../embed/ephy-web-view.c:1796 msgid "" "This website presented identification that belongs to a different website." msgstr "Овај веб сајт је представио распознају која припада другом веб сајту." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1769 +#: ../embed/ephy-web-view.c:1801 msgid "" "This website’s identification is too old to trust. Check the date on your " "computer’s calendar." @@ -1031,18 +1030,18 @@ "датум на календару вашег рачунара." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1774 +#: ../embed/ephy-web-view.c:1806 msgid "This website’s identification was not issued by a trusted organization." msgstr "Распознају овог веб сајта није издала поверљива организација." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1779 +#: ../embed/ephy-web-view.c:1811 msgid "" "This website’s identification could not be processed. It may be corrupted." msgstr "Распознаја овог веб сајта не може бити обрађена. Можда је оштећена." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1784 +#: ../embed/ephy-web-view.c:1816 msgid "" "This website’s identification has been revoked by the trusted organization " "that issued it." @@ -1051,7 +1050,7 @@ "издала." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1789 +#: ../embed/ephy-web-view.c:1821 msgid "" "This website’s identification cannot be trusted because it uses very weak " "encryption." @@ -1060,7 +1059,7 @@ "шифровање." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1794 +#: ../embed/ephy-web-view.c:1826 msgid "" "This website’s identification is only valid for future dates. Check the date " "on your computer’s calendar." @@ -1069,13 +1068,13 @@ "на календару вашег рачунара." #. Message when a site's TLS certificate is invalid. %s is the site's hostname. -#: ../embed/ephy-web-view.c:1830 +#: ../embed/ephy-web-view.c:1862 #, c-format msgid "This might not be the real %s." msgstr "Ово можда није стварни „%s“." #. Message when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1835 +#: ../embed/ephy-web-view.c:1867 msgid "" "When you try to connect securely, websites present identification to prove " "that your connection has not been maliciously intercepted. There is " @@ -1086,7 +1085,7 @@ "распознајом овог веб сајта:" #. Message when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1841 +#: ../embed/ephy-web-view.c:1873 msgid "" "A third party may have hijacked your connection. You should continue only if " "you know there is a good reason why this website does not use trusted " @@ -1097,29 +1096,29 @@ "распознају." #. Good advice from Firefox; displays when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1845 +#: ../embed/ephy-web-view.c:1877 msgid "" "Legitimate banks, stores, and other public sites will not ask you to do this." msgstr "" "Законите банке, продавнице, и други јавни сајтови неће тражити да урадите " "ово." -#: ../embed/ephy-web-view.c:1886 +#: ../embed/ephy-web-view.c:1918 msgid "None specified" msgstr "Ништа није одређено" #. Page title when a site cannot be loaded. %s is the site's hostname. -#: ../embed/ephy-web-view.c:1899 ../embed/ephy-web-view.c:1914 -#: ../embed/ephy-web-view.c:1934 +#: ../embed/ephy-web-view.c:1931 ../embed/ephy-web-view.c:1946 +#: ../embed/ephy-web-view.c:1966 #, c-format msgid "Problem loading “%s”" msgstr "Проблем учитавања „%s“" -#: ../embed/ephy-web-view.c:1901 +#: ../embed/ephy-web-view.c:1933 msgid "Oops! Unable to display this website." msgstr "Упс! Не могу да прикажем ову веб страницу." -#: ../embed/ephy-web-view.c:1902 +#: ../embed/ephy-web-view.c:1934 #, c-format msgid "" "

The site at “%s” seems to be unavailable. The precise error was:" -#: ../embed/ephy-web-view.c:1910 +#: ../embed/ephy-web-view.c:1942 msgid "Try again" msgstr "Покушај поново" -#: ../embed/ephy-web-view.c:1916 +#: ../embed/ephy-web-view.c:1948 msgid "Oops! There may be a problem." msgstr "Упс! Неприлике на видику." -#: ../embed/ephy-web-view.c:1917 +#: ../embed/ephy-web-view.c:1949 #, c-format msgid "" "

This site may have caused Web to close unexpectedly.

If this " @@ -1150,20 +1149,20 @@ "

Ова страница је можда довела до неочекиваног затварања Веба.

Ако се " "ово деси поново, обавестите програмере %s-а.

" -#: ../embed/ephy-web-view.c:1922 ../embed/ephy-web-view.c:1929 +#: ../embed/ephy-web-view.c:1954 ../embed/ephy-web-view.c:1961 msgid "Reload Anyway" msgstr "Ипак поново учитај" -#: ../embed/ephy-web-view.c:1926 +#: ../embed/ephy-web-view.c:1958 #, c-format msgid "Problem displaying “%s”" msgstr "Проблем приказивања „%s“" -#: ../embed/ephy-web-view.c:1927 +#: ../embed/ephy-web-view.c:1959 msgid "Oops!" msgstr "Упс!" -#: ../embed/ephy-web-view.c:1928 +#: ../embed/ephy-web-view.c:1960 msgid "" "Something went wrong while displaying this page. Please reload or visit a " "different page to continue." @@ -1172,16 +1171,16 @@ "или посетите неку другу страницу да наставите." #. Title of error page when a website's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1936 +#: ../embed/ephy-web-view.c:1968 msgid "Look out!" msgstr "Пазите!" #. Button on error page when a website's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1939 +#: ../embed/ephy-web-view.c:1971 msgid "Load Anyway" msgstr "Ипак учитај" -#: ../embed/ephy-web-view.c:2867 +#: ../embed/ephy-web-view.c:2899 msgid "_OK" msgstr "У _реду" @@ -1197,19 +1196,19 @@ msgid "_Open" msgstr "_Отвори" -#: ../lib/ephy-file-chooser.c:209 +#: ../lib/ephy-file-chooser.c:210 msgid "All supported types" msgstr "Све подржане врсте" -#: ../lib/ephy-file-chooser.c:223 +#: ../lib/ephy-file-chooser.c:224 msgid "Web pages" msgstr "Веб стране" -#: ../lib/ephy-file-chooser.c:234 +#: ../lib/ephy-file-chooser.c:235 msgid "Images" msgstr "Слике" -#: ../lib/ephy-file-chooser.c:242 ../src/bookmarks/ephy-bookmarks-editor.c:638 +#: ../lib/ephy-file-chooser.c:243 ../src/bookmarks/ephy-bookmarks-editor.c:638 msgid "All files" msgstr "Све датотеке" @@ -1548,7 +1547,7 @@ msgid "Cancel" msgstr "Откажи" -#: ../lib/widgets/ephy-download-widget.c:384 ../src/ephy-window.c:1130 +#: ../lib/widgets/ephy-download-widget.c:384 ../src/ephy-window.c:1138 #: ../src/window-commands.c:275 msgid "Open" msgstr "Отвори" @@ -1565,20 +1564,20 @@ #. * standard items in the GtkEntry context menu (Cut, Copy, Paste, Delete, #. * Select All, Input Methods and Insert Unicode control character.) #. -#: ../lib/widgets/ephy-location-entry.c:605 ../src/ephy-history-window.c:265 +#: ../lib/widgets/ephy-location-entry.c:647 ../src/ephy-history-window.c:265 msgid "Cl_ear" msgstr "_Очисти" #. Edit actions. -#: ../lib/widgets/ephy-location-entry.c:624 ../src/ephy-window.c:119 +#: ../lib/widgets/ephy-location-entry.c:666 ../src/ephy-window.c:119 msgid "_Undo" msgstr "_Опозови" -#: ../lib/widgets/ephy-location-entry.c:631 +#: ../lib/widgets/ephy-location-entry.c:673 msgid "_Redo" msgstr "_Понови" -#: ../lib/widgets/ephy-location-entry.c:911 +#: ../lib/widgets/ephy-location-entry.c:953 msgid "Drag and drop this icon to create a link to this page" msgstr "Превуците и пустите ову икону како би направили везу ка овој страни" @@ -2600,7 +2599,6 @@ msgstr "Отвори везу у новом _језичку" #: ../src/ephy-window.c:222 -#| msgid "Open Link in New _Window" msgid "Open Link in I_ncognito Window" msgstr "Отвори везу у _тајном прозору" @@ -2693,59 +2691,58 @@ msgid "Close window and cancel downloads" msgstr "Затвори прозор и заустави преузимање" -#: ../src/ephy-window.c:1132 +#: ../src/ephy-window.c:1140 msgid "Save As" msgstr "Сачувај као" -#: ../src/ephy-window.c:1134 +#: ../src/ephy-window.c:1142 msgid "Save As Application" msgstr "Сачувај као програм" -#: ../src/ephy-window.c:1136 +#: ../src/ephy-window.c:1144 msgid "Print" msgstr "Штампај" -#: ../src/ephy-window.c:1138 +#: ../src/ephy-window.c:1146 msgid "Bookmark" msgstr "Обележивач" -#: ../src/ephy-window.c:1140 +#: ../src/ephy-window.c:1148 msgid "Find" msgstr "Пронађи" #. Translators: This refers to text size -#: ../src/ephy-window.c:1149 +#: ../src/ephy-window.c:1157 msgid "Larger" msgstr "Увећано" #. Translators: This refers to text size -#: ../src/ephy-window.c:1152 +#: ../src/ephy-window.c:1160 msgid "Smaller" msgstr "Умањено" -#: ../src/ephy-window.c:1174 +#: ../src/ephy-window.c:1182 msgid "Back" msgstr "Назад" -#: ../src/ephy-window.c:1186 +#: ../src/ephy-window.c:1194 msgid "Forward" msgstr "Напред" -#: ../src/ephy-window.c:1198 +#: ../src/ephy-window.c:1206 msgid "Zoom" msgstr "Увећај" -#: ../src/ephy-window.c:1207 +#: ../src/ephy-window.c:1215 msgid "New _Tab" msgstr "Нови _језичак" -#: ../src/ephy-window.c:1215 +#: ../src/ephy-window.c:1223 msgid "Go to most visited" msgstr "Иди на најпосећеније" -#: ../src/ephy-window.c:1744 +#: ../src/ephy-window.c:1752 #, c-format -#| msgid "Search the Web for %s" msgid "Search the Web for '%s'" msgstr "Потражи „%s“ на вебу" diff -Nru epiphany-browser-3.18.5/po/zh_CN.po epiphany-browser-3.18.10/po/zh_CN.po --- epiphany-browser-3.18.5/po/zh_CN.po 2016-03-14 23:34:00.000000000 +0000 +++ epiphany-browser-3.18.10/po/zh_CN.po 2016-12-28 00:37:59.000000000 +0000 @@ -18,17 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: epiphany master\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-23 13:15+0800\n" -"PO-Revision-Date: 2015-12-23 13:15+0800\n" -"Last-Translator: YunQiang Su \n" +"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?" +"product=epiphany&keywords=I18N+L10N&component=I18N\n" +"POT-Creation-Date: 2016-09-10 21:50+0000\n" +"PO-Revision-Date: 2016-02-03 11:36-0500\n" +"Last-Translator: Mingye Wang (Arthur2e5) \n" "Language-Team: 汉语 \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.7\n" +"X-Generator: Poedit 1.8.6\n" #: ../data/default-bookmarks.rdf.in.h:1 msgid "Search the web" @@ -547,11 +548,11 @@ msgid "Remove from overview" msgstr "从概览中删除" -#: ../embed/ephy-about-handler.c:573 ../embed/ephy-about-handler.c:574 +#: ../embed/ephy-about-handler.c:574 ../embed/ephy-about-handler.c:575 msgid "Private Browsing" msgstr "隐私浏览" -#: ../embed/ephy-about-handler.c:575 +#: ../embed/ephy-about-handler.c:576 msgid "" "You are currently browsing incognito. Pages viewed in this mode " "will not show up in your browsing history and all stored information will be " @@ -560,12 +561,12 @@ "您正在无痕浏览网页。在该模式下,访问过的页面不会显示在浏览历史中且储" "存的全部信息也将在该窗口关闭后清除。下载的文件将会保留。" -#: ../embed/ephy-about-handler.c:579 +#: ../embed/ephy-about-handler.c:580 msgid "" "Incognito mode hides your activity only from people using this computer." msgstr "无痕模式只能让使用此计算机的用户看不到您的活动。" -#: ../embed/ephy-about-handler.c:581 +#: ../embed/ephy-about-handler.c:582 msgid "" "It will not hide your activity from your employer if you are at work. Your " "internet service provider, your government, other governments, the websites " @@ -579,17 +580,17 @@ msgid "Blank page" msgstr "空白页" -#: ../embed/ephy-embed.c:548 +#: ../embed/ephy-embed.c:549 #, c-format msgid "Press %s to exit fullscreen" msgstr "按下 %s 退出全屏模式" #. Translators: 'ESC' and 'F11' are keyboard keys. -#: ../embed/ephy-embed.c:551 +#: ../embed/ephy-embed.c:552 msgid "ESC" msgstr "ESC" -#: ../embed/ephy-embed.c:551 +#: ../embed/ephy-embed.c:552 msgid "F11" msgstr "F11" @@ -942,105 +943,105 @@ msgid "Find next occurrence of the search string" msgstr "查找搜索字符串下次出现之处" -#: ../embed/ephy-web-view.c:494 +#: ../embed/ephy-web-view.c:516 msgid "_Don’t Save" msgstr "不保存(_D)" -#: ../embed/ephy-web-view.c:495 ../lib/ephy-file-chooser.c:194 +#: ../embed/ephy-web-view.c:517 ../lib/ephy-file-chooser.c:194 msgid "_Save" msgstr "保存(_S)" #. Translators: The %s the hostname where this is happening. #. * Example: mail.google.com. #. -#: ../embed/ephy-web-view.c:506 +#: ../embed/ephy-web-view.c:528 #, c-format msgid "Do you want to save your password for “%s”?" msgstr "您想保存 “%s” 的密码?" -#: ../embed/ephy-web-view.c:1441 +#: ../embed/ephy-web-view.c:1461 msgid "Deny" msgstr "拒绝" -#: ../embed/ephy-web-view.c:1442 +#: ../embed/ephy-web-view.c:1462 msgid "Allow" msgstr "允许" #. Translators: Geolocation policy for a specific site. -#: ../embed/ephy-web-view.c:1454 +#: ../embed/ephy-web-view.c:1474 #, c-format msgid "The page at %s wants to know your location." msgstr "位于 %s 的页面想要了解您的地理位置。" #. Translators: Notification policy for a specific site. -#: ../embed/ephy-web-view.c:1458 +#: ../embed/ephy-web-view.c:1478 #, c-format msgid "The page at %s wants to show desktop notifications." msgstr "位于 %s 的页面想要显示桌面通知。" #. translators: %s here is the address of the web page -#: ../embed/ephy-web-view.c:1546 +#: ../embed/ephy-web-view.c:1571 #, c-format msgid "Loading “%s”…" msgstr "正在加载“%s”..." -#: ../embed/ephy-web-view.c:1548 +#: ../embed/ephy-web-view.c:1573 msgid "Loading…" msgstr "正在载入...." #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1771 +#: ../embed/ephy-web-view.c:1796 msgid "" "This website presented identification that belongs to a different website." msgstr "此站点给出了一个其他站点的证书。" #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1776 +#: ../embed/ephy-web-view.c:1801 msgid "" "This website’s identification is too old to trust. Check the date on your " "computer’s calendar." msgstr "此站点的证书因太老而无法信任。请检查计算机的时间是否正确。" #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1781 +#: ../embed/ephy-web-view.c:1806 msgid "This website’s identification was not issued by a trusted organization." msgstr "此站点的证书不是由可信的组织签发。" #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1786 +#: ../embed/ephy-web-view.c:1811 msgid "" "This website’s identification could not be processed. It may be corrupted." msgstr "此站点的证书无法处理。可能已经损坏。" #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1791 +#: ../embed/ephy-web-view.c:1816 msgid "" "This website’s identification has been revoked by the trusted organization " "that issued it." msgstr "此站点的证书已经被发布它的可信组织吊销。" #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1796 +#: ../embed/ephy-web-view.c:1821 msgid "" "This website’s identification cannot be trusted because it uses very weak " "encryption." msgstr "此站点的证书不受信任,因为使用了非常弱的加密。" #. Possible error message when a site presents a bad certificate. -#: ../embed/ephy-web-view.c:1801 +#: ../embed/ephy-web-view.c:1826 msgid "" "This website’s identification is only valid for future dates. Check the date " "on your computer’s calendar." msgstr "此站点的证书尚未到生效时间。检查计算机的时间是不是正确。" #. Message when a site's TLS certificate is invalid. %s is the site's hostname. -#: ../embed/ephy-web-view.c:1837 +#: ../embed/ephy-web-view.c:1862 #, c-format msgid "This might not be the real %s." msgstr "这可能不是真的 %s。" #. Message when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1842 +#: ../embed/ephy-web-view.c:1867 msgid "" "When you try to connect securely, websites present identification to prove " "that your connection has not been maliciously intercepted. There is " @@ -1050,7 +1051,7 @@ "下问题:" #. Message when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1848 +#: ../embed/ephy-web-view.c:1873 msgid "" "A third party may have hijacked your connection. You should continue only if " "you know there is a good reason why this website does not use trusted " @@ -1060,27 +1061,27 @@ "续。" #. Good advice from Firefox; displays when a site's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1852 +#: ../embed/ephy-web-view.c:1877 msgid "" "Legitimate banks, stores, and other public sites will not ask you to do this." msgstr "正规的银行、商店和其他站点不会要求这么做。" -#: ../embed/ephy-web-view.c:1893 +#: ../embed/ephy-web-view.c:1918 msgid "None specified" msgstr "未指定" #. Page title when a site cannot be loaded. %s is the site's hostname. -#: ../embed/ephy-web-view.c:1906 ../embed/ephy-web-view.c:1921 -#: ../embed/ephy-web-view.c:1941 +#: ../embed/ephy-web-view.c:1931 ../embed/ephy-web-view.c:1946 +#: ../embed/ephy-web-view.c:1966 #, c-format msgid "Problem loading “%s”" msgstr "载入“%s”出现问题" -#: ../embed/ephy-web-view.c:1908 +#: ../embed/ephy-web-view.c:1933 msgid "Oops! Unable to display this website." msgstr "糟糕!无法显示此网站。" -#: ../embed/ephy-web-view.c:1909 +#: ../embed/ephy-web-view.c:1934 #, c-format msgid "" "

The site at “%s” seems to be unavailable. The precise error was:" -#: ../embed/ephy-web-view.c:1917 +#: ../embed/ephy-web-view.c:1942 msgid "Try again" msgstr "重试" -#: ../embed/ephy-web-view.c:1923 +#: ../embed/ephy-web-view.c:1948 msgid "Oops! There may be a problem." msgstr "糟糕!好像出问题了。" -#: ../embed/ephy-web-view.c:1924 +#: ../embed/ephy-web-view.c:1949 #, c-format msgid "" "

This site may have caused Web to close unexpectedly.

If this " @@ -1110,36 +1111,36 @@ "

加载此网站时 Web 浏览器意外关闭。

如果您再次遇到此问题,请向 " "%s 开发者报告。

" -#: ../embed/ephy-web-view.c:1929 ../embed/ephy-web-view.c:1936 +#: ../embed/ephy-web-view.c:1954 ../embed/ephy-web-view.c:1961 msgid "Reload Anyway" msgstr "仍然重新载入" -#: ../embed/ephy-web-view.c:1933 +#: ../embed/ephy-web-view.c:1958 #, c-format msgid "Problem displaying “%s”" msgstr "显示“%s”时遇到问题" -#: ../embed/ephy-web-view.c:1934 +#: ../embed/ephy-web-view.c:1959 msgid "Oops!" msgstr "哎唷!" -#: ../embed/ephy-web-view.c:1935 +#: ../embed/ephy-web-view.c:1960 msgid "" "Something went wrong while displaying this page. Please reload or visit a " "different page to continue." msgstr "显示该页面时出现了错误。要继续浏览,请重新载入或转到其他网页。" #. Title of error page when a website's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1943 +#: ../embed/ephy-web-view.c:1968 msgid "Look out!" msgstr "当心!" #. Button on error page when a website's TLS certificate is invalid. -#: ../embed/ephy-web-view.c:1946 +#: ../embed/ephy-web-view.c:1971 msgid "Load Anyway" msgstr "仍然载入" -#: ../embed/ephy-web-view.c:2874 +#: ../embed/ephy-web-view.c:2899 msgid "_OK" msgstr "确定(_O)" @@ -1500,20 +1501,20 @@ #. * standard items in the GtkEntry context menu (Cut, Copy, Paste, Delete, #. * Select All, Input Methods and Insert Unicode control character.) #. -#: ../lib/widgets/ephy-location-entry.c:605 ../src/ephy-history-window.c:265 +#: ../lib/widgets/ephy-location-entry.c:647 ../src/ephy-history-window.c:265 msgid "Cl_ear" msgstr "清除(_E)" #. Edit actions. -#: ../lib/widgets/ephy-location-entry.c:624 ../src/ephy-window.c:119 +#: ../lib/widgets/ephy-location-entry.c:666 ../src/ephy-window.c:119 msgid "_Undo" msgstr "撤消(_U)" -#: ../lib/widgets/ephy-location-entry.c:631 +#: ../lib/widgets/ephy-location-entry.c:673 msgid "_Redo" msgstr "重做(_R)" -#: ../lib/widgets/ephy-location-entry.c:911 +#: ../lib/widgets/ephy-location-entry.c:953 msgid "Drag and drop this icon to create a link to this page" msgstr "拖曳此图标可创建到此页面的链接" @@ -1962,8 +1963,7 @@ "removed forever." msgstr "您不能撤消该操作。您选择清除的数据将被永久删除。" -#: ../src/resources/cookies-dialog.ui.h:1 -#: ../src/resources/prefs-dialog.ui.h:21 +#: ../src/resources/cookies-dialog.ui.h:1 ../src/resources/prefs-dialog.ui.h:21 msgid "Cookies" msgstr "Cookies" @@ -2798,7 +2798,7 @@ "Powered by WebKit %d.%d.%d" msgstr "" "简单、干净、精美的网络视图。\n" -"由 WebKit 强力驱动 %d.%d.%d" +"由 WebKit %d.%d.%d 强力驱动" #. Translators: This is a special message that shouldn't be translated #. * literally. It is used in the about box to give credits to diff -Nru epiphany-browser-3.18.5/src/bookmarks/Makefile.in epiphany-browser-3.18.10/src/bookmarks/Makefile.in --- epiphany-browser-3.18.5/src/bookmarks/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/src/bookmarks/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -228,8 +228,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/src/ephy-session.c epiphany-browser-3.18.10/src/ephy-session.c --- epiphany-browser-3.18.5/src/ephy-session.c 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/src/ephy-session.c 2016-12-28 00:37:59.000000000 +0000 @@ -795,6 +795,33 @@ g_application_release (G_APPLICATION (ephy_shell_get_default ())); } +static gboolean +session_seems_sane (GList *windows) +{ + GList *w; + GList *t; + + for (w = windows; w != NULL; w = w->next) + { + for (t = ((SessionWindow *)w->data)->tabs; t != NULL; t = t->next) + { + const char *url = ((SessionTab *)t->data)->url; + SoupURI *uri = soup_uri_new (url); + if (uri) + { + soup_uri_free (uri); + } + else + { + g_critical ("Refusing to save session due to invalid URL %s", url); + return FALSE; + } + } + } + + return TRUE; +} + static void save_session_sync (GTask *task, gpointer source_object, @@ -807,6 +834,14 @@ GList *w; int ret = -1; + /* If any web view has an insane URL, then something has probably gone wrong + * inside WebKit. For instance, if the web process is nonfunctional, the UI + * process could have an invalid URI property. Yes, this would be a WebKit + * bug, but Epiphany should be robust to such issues. Do not clobber an + * existing good session file with our new bogus state. Bug #768250. */ + if (!session_seems_sane (data->windows)) + return; + buffer = xmlBufferCreate (); writer = xmlNewTextWriterMemory (buffer, 0); if (writer == NULL) goto out; diff -Nru epiphany-browser-3.18.5/src/ephy-shell-search-provider-generated.c epiphany-browser-3.18.10/src/ephy-shell-search-provider-generated.c --- epiphany-browser-3.18.5/src/ephy-shell-search-provider-generated.c 2016-03-14 23:46:31.000000000 +0000 +++ epiphany-browser-3.18.10/src/ephy-shell-search-provider-generated.c 2016-12-28 00:41:02.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.47.5. DO NOT EDIT. + * Generated by gdbus-codegen 2.51.0. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ diff -Nru epiphany-browser-3.18.5/src/ephy-shell-search-provider-generated.h epiphany-browser-3.18.10/src/ephy-shell-search-provider-generated.h --- epiphany-browser-3.18.5/src/ephy-shell-search-provider-generated.h 2016-03-14 23:46:31.000000000 +0000 +++ epiphany-browser-3.18.10/src/ephy-shell-search-provider-generated.h 2016-12-28 00:41:02.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Generated by gdbus-codegen 2.47.5. DO NOT EDIT. + * Generated by gdbus-codegen 2.51.0. DO NOT EDIT. * * The license of this code is the same as for the source it was derived from. */ @@ -225,6 +225,10 @@ GType ephy_shell_search_provider2_proxy_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (EphyShellSearchProvider2Proxy, g_object_unref) +#endif + void ephy_shell_search_provider2_proxy_new ( GDBusConnection *connection, GDBusProxyFlags flags, @@ -291,6 +295,10 @@ GType ephy_shell_search_provider2_skeleton_get_type (void) G_GNUC_CONST; +#if GLIB_CHECK_VERSION(2, 44, 0) +G_DEFINE_AUTOPTR_CLEANUP_FUNC (EphyShellSearchProvider2Skeleton, g_object_unref) +#endif + EphyShellSearchProvider2 *ephy_shell_search_provider2_skeleton_new (void); diff -Nru epiphany-browser-3.18.5/src/ephy-title-box.c epiphany-browser-3.18.10/src/ephy-title-box.c --- epiphany-browser-3.18.5/src/ephy-title-box.c 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/src/ephy-title-box.c 2016-12-28 00:37:59.000000000 +0000 @@ -332,12 +332,10 @@ EphyTitleBoxPrivate *priv = ephy_title_box_get_instance_private (title_box); GtkAllocation lock_allocation; - if (priv->mode != EPHY_TITLE_BOX_MODE_TITLE) + if (priv->mode != EPHY_TITLE_BOX_MODE_TITLE + || event->button != GDK_BUTTON_PRIMARY) return GDK_EVENT_PROPAGATE; - if (event->button != GDK_BUTTON_PRIMARY) - return GDK_EVENT_STOP; - LOG ("button-press-event title-box %p event %p", title_box, event); gtk_widget_get_allocation (priv->lock_image, &lock_allocation); @@ -354,7 +352,7 @@ ephy_title_box_cancel_switch_to_entry_after_double_click_time (title_box); } - return GDK_EVENT_STOP; + return GDK_EVENT_PROPAGATE; } static void diff -Nru epiphany-browser-3.18.5/src/ephy-window.c epiphany-browser-3.18.10/src/ephy-window.c --- epiphany-browser-3.18.5/src/ephy-window.c 2016-03-14 23:15:49.000000000 +0000 +++ epiphany-browser-3.18.10/src/ephy-window.c 2016-12-28 00:37:59.000000000 +0000 @@ -317,11 +317,7 @@ * when NumLock is on they are KP_9/3 and with NumLock and Control+Shift * They're KP_PageUp/Down again! */ - { GDK_KEY_Left, GDK_MOD1_MASK /*Alt*/, "NavigationBack", TRUE }, - { GDK_KEY_KP_Left, GDK_MOD1_MASK /*Alt*/, "NavigationBack", TRUE }, { GDK_KEY_KP_4, GDK_MOD1_MASK /*Alt*/, "NavigationBack", TRUE }, - { GDK_KEY_Right, GDK_MOD1_MASK /*Alt*/, "NavigationForward", TRUE }, - { GDK_KEY_KP_Right, GDK_MOD1_MASK /*Alt*/, "NavigationForward", TRUE }, { GDK_KEY_KP_6, GDK_MOD1_MASK /*Alt*/, "NavigationForward", TRUE }, { GDK_KEY_KP_Page_Up, GDK_CONTROL_MASK, "TabsPrevious", FALSE }, { GDK_KEY_KP_9, GDK_CONTROL_MASK, "TabsPrevious", FALSE }, @@ -346,7 +342,17 @@ { XF86XK_ZoomOut, 0, "ViewZoomOut", FALSE } /* FIXME: what about ScrollUp, ScrollDown, Menu*, Option, LogOff, Save,.. any others? */ #endif /* HAVE_X11_XF86KEYSYM_H */ -}; +}, navigation_keybindings_ltr [] = { + { GDK_KEY_Left, GDK_MOD1_MASK /*Alt*/, "NavigationBack", TRUE }, + { GDK_KEY_KP_Left, GDK_MOD1_MASK /*Alt*/, "NavigationBack", TRUE }, + { GDK_KEY_Right, GDK_MOD1_MASK /*Alt*/, "NavigationForward", TRUE }, + { GDK_KEY_KP_Right, GDK_MOD1_MASK /*Alt*/, "NavigationForward", TRUE } +}, navigation_keybindings_rtl [] = { + { GDK_KEY_Left, GDK_MOD1_MASK /*Alt*/, "NavigationForward", TRUE }, + { GDK_KEY_KP_Left, GDK_MOD1_MASK /*Alt*/, "NavigationForward", TRUE }, + { GDK_KEY_Right, GDK_MOD1_MASK /*Alt*/, "NavigationBack", TRUE }, + { GDK_KEY_KP_Right, GDK_MOD1_MASK /*Alt*/, "NavigationBack", TRUE } +}, *navigation_keybindings_rtl_ltr; #define SETTINGS_CONNECTION_DATA_KEY "EphyWindowSettings" @@ -776,76 +782,18 @@ ephy_embed_leaving_fullscreen (window->priv->active_embed); } -static gboolean -ephy_window_key_press_event (GtkWidget *widget, - GdkEventKey *event) +static gboolean +ephy_window_bound_accels (GtkWidget *widget, + GdkEventKey *event) { EphyWindow *window = EPHY_WINDOW (widget); EphyWindowPrivate *priv = window->priv; - GtkWidget *focus_widget; - gboolean shortcircuit = FALSE, force_chain = FALSE, handled = FALSE; guint modifier = event->state & gtk_accelerator_get_default_mod_mask (); guint i; - /* In an attempt to get the mozembed playing nice with things like emacs keybindings - * we are passing important events to the focused child widget before letting the window's - * base handler see them. This is *completely against* stated gtk2 policy but the - * 'correct' behaviour is exceptionally useless. We need to keep an eye out for - * unexpected consequences of this decision. IME's should be a high concern, but - * considering that the IME folks complained about the upside-down event propagation - * rules, we might be doing them a favour. - * - * We achieve this by first evaluating the event to see if it's important, and if - * so, we get the focus widget and attempt to get the widget to handle that event. - * If the widget does handle it, we're done (unless force_chain is true, in which - * case the event is handled as normal in addition to being sent to the focus - * widget), otherwise the event follows the normal handling path. - */ + navigation_keybindings_rtl_ltr = gtk_widget_get_default_direction () == GTK_TEXT_DIR_RTL ? + navigation_keybindings_rtl : navigation_keybindings_ltr; - if ((event->state & GDK_CONTROL_MASK || - event->state & GDK_MOD1_MASK || - event->state & GDK_SHIFT_MASK) && - event->length > 0) - { - /* Pass (CTRL|ALT|SHIFT)+letter characters to the widget */ - shortcircuit = TRUE; - } - else if (event->keyval == GDK_KEY_Escape && modifier == 0) - { - /* Always pass Escape to both the widget, and the parent */ - shortcircuit = TRUE; - force_chain = TRUE; - } - else if (priv->key_theme_is_emacs && - (modifier == GDK_CONTROL_MASK) && - event->length > 0 && - /* But don't pass Ctrl+Enter twice */ - event->keyval != GDK_KEY_Return && - event->keyval != GDK_KEY_KP_Enter && - event->keyval != GDK_KEY_ISO_Enter) - { - /* Pass CTRL+letter characters to the widget */ - shortcircuit = TRUE; - } - - if (shortcircuit) - { - focus_widget = gtk_window_get_focus (GTK_WINDOW (window)); - - if (GTK_IS_WIDGET (focus_widget)) - { - handled = gtk_widget_event (focus_widget, - (GdkEvent*) event); - } - - if (handled && !force_chain) - { - return handled; - } - } - - /* Handle accelerators that we want bound, but aren't associated with - * an action */ for (i = 0; i < G_N_ELEMENTS (extra_keybindings); i++) { if (event->keyval == extra_keybindings[i].keyval && @@ -865,7 +813,102 @@ } } - return GTK_WIDGET_CLASS (ephy_window_parent_class)->key_press_event (widget, event); + for (i = 0; i < G_N_ELEMENTS (navigation_keybindings_rtl); i++) + { + if (event->keyval == navigation_keybindings_rtl_ltr[i].keyval && + modifier == navigation_keybindings_rtl_ltr[i].modifier) + { + GtkAction * action = gtk_action_group_get_action + (navigation_keybindings_rtl_ltr[i].fromToolbar ? + priv->toolbar_action_group : + priv->action_group, + navigation_keybindings_rtl_ltr[i].action); + if (gtk_action_is_sensitive (action)) + { + gtk_action_activate (action); + return TRUE; + } + break; + } + } + + return FALSE; +} + +static gboolean +ephy_window_should_view_receive_key_press_event (EphyWindow *window, + GdkEventKey *event) +{ + GdkDisplay *display; + GdkKeymap *keymap; + guint keyval; + GdkModifierType consumed; + GdkModifierType state_mask = GDK_CONTROL_MASK | GDK_SHIFT_MASK | GDK_MOD1_MASK; + + display = gtk_widget_get_display (GTK_WIDGET (window)); + keymap = gdk_keymap_get_for_display (display); + + gdk_keymap_translate_keyboard_state (keymap, + event->hardware_keycode, + event->state, + event->group, + &keyval, + NULL, + NULL, + &consumed); + state_mask &= ~consumed; + + /* Websites are allowed to override most Epiphany accelerators, but not + * window or tab management accelerators. */ + if ((event->state & state_mask) == GDK_CONTROL_MASK) + return keyval != GDK_KEY_n && /* New Window */ + keyval != GDK_KEY_q && /* Quit */ + keyval != GDK_KEY_T && /* Reopen Closed Tab */ + keyval != GDK_KEY_t && /* New Tab */ + keyval != GDK_KEY_w && /* Close Tab */ + keyval != GDK_KEY_Page_Up && /* Previous Tab */ + keyval != GDK_KEY_KP_9 && /* Previous Tab */ + keyval != GDK_KEY_Page_Down && /* Next Tab */ + keyval != GDK_KEY_KP_3; /* Next Tab */ + + if ((event->state & state_mask) == (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) + return keyval != GDK_KEY_Page_Up && /* Move Tab Left */ + keyval != GDK_KEY_KP_9 && /* Move Tab Left */ + keyval != GDK_KEY_Page_Down && /* Move Tab Right */ + keyval != GDK_KEY_KP_3; /* Move Tab Right */ + + if ((event->state & state_mask) == GDK_MOD1_MASK) + return keyval != GDK_KEY_Left && /* Back */ + keyval != GDK_KEY_Right; /* Forward */ +} + +static gboolean +ephy_window_key_press_event (GtkWidget *widget, + GdkEventKey *event) +{ + EphyWebView *view; + + view = ephy_embed_get_web_view (EPHY_WINDOW (widget)->priv->active_embed); + if (gtk_window_get_focus (GTK_WINDOW (widget)) != GTK_WIDGET (view)) { + if (ephy_window_bound_accels (widget, event)) + return GDK_EVENT_STOP; + return GTK_WIDGET_CLASS (ephy_window_parent_class)->key_press_event (widget, event); + } + + /* GtkWindow's key press handler first calls gtk_window_activate_key, + * then gtk_window_propagate_key_event. We want to do the opposite, + * because we want to give webpages the chance to override most + * Epiphany shortcuts. For example, Ctrl+I in Google Docs should + * italicize your text and not open a new incognito window. So: + * first propagate the event to the web view. Next, try + * accelerators only if the web view did not handle the event. + */ + if (!ephy_window_should_view_receive_key_press_event (EPHY_WINDOW (widget), event) || + !gtk_window_propagate_key_event (GTK_WINDOW (widget), event)) { + if (!gtk_window_activate_key (GTK_WINDOW (widget), event)) + ephy_window_bound_accels (widget, event); + } + return GDK_EVENT_STOP; } static gboolean diff -Nru epiphany-browser-3.18.5/src/Makefile.in epiphany-browser-3.18.10/src/Makefile.in --- epiphany-browser-3.18.5/src/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/src/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -315,8 +315,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/tests/data/Makefile.in epiphany-browser-3.18.10/tests/data/Makefile.in --- epiphany-browser-3.18.5/tests/data/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/tests/data/Makefile.in 2016-12-28 00:40:42.000000000 +0000 @@ -152,8 +152,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ diff -Nru epiphany-browser-3.18.5/tests/Makefile.in epiphany-browser-3.18.10/tests/Makefile.in --- epiphany-browser-3.18.5/tests/Makefile.in 2016-03-14 23:46:16.000000000 +0000 +++ epiphany-browser-3.18.10/tests/Makefile.in 2016-12-28 00:40:41.000000000 +0000 @@ -469,8 +469,11 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CODE_COVERAGE_CFLAGS = @CODE_COVERAGE_CFLAGS@ +CODE_COVERAGE_CPPFLAGS = @CODE_COVERAGE_CPPFLAGS@ +CODE_COVERAGE_CXXFLAGS = @CODE_COVERAGE_CXXFLAGS@ CODE_COVERAGE_ENABLED = @CODE_COVERAGE_ENABLED@ CODE_COVERAGE_LDFLAGS = @CODE_COVERAGE_LDFLAGS@ +CODE_COVERAGE_LIBS = @CODE_COVERAGE_LIBS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@