Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Updated Dutch translation. | Reinout van Schouwen | 2010-03-22 | 1 | -536/+593 |
| | |||||
* | Updated asturian language | Xandru Armesto Fernandez | 2010-03-21 | 1 | -1227/+1311 |
| | |||||
* | Updated Bulgarian translation | Alexander Shopov | 2010-03-21 | 1 | -101/+101 |
| | |||||
* | Updated LowGerman translation | Nils-Christoph Fiedler | 2010-03-19 | 1 | -274/+277 |
| | |||||
* | Estonian translation updated | Ivar Smolin | 2010-03-16 | 1 | -90/+307 |
| | |||||
* | migration: be more strict with checks when storing | Diego Escalante Urrelo | 2010-03-16 | 1 | -2/+7 |
| | | | | | | | 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. | ||||
* | downloader-view: stay alive until notifications are gone | Diego Escalante Urrelo | 2010-03-16 | 1 | -65/+69 |
| | | | | | | | | | | | | 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 | ||||
* | downloader-view: change lifetime logic | Diego Escalante Urrelo | 2010-03-16 | 1 | -5/+11 |
| | | | | | | | | | | | 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 | ||||
* | downloader-view: use update_download_row correctly on add | Diego Escalante Urrelo | 2010-03-16 | 1 | -2/+8 |
| | | | | | | | | | | 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). | ||||
* | downloader-view: hide the view when last download finishes | Diego Escalante Urrelo | 2010-03-16 | 1 | -0/+11 |
| | | | | | | | | 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 | ||||
* | downloader-view: use g_object_get not get_property | Diego Escalante Urrelo | 2010-03-16 | 1 | -6/+3 |
| | | | | | | A minor simplification. Bug #611779 | ||||
* | downloader-view: properly disconnect signals | Diego Escalante Urrelo | 2010-03-16 | 1 | -4/+21 |
| | | | | | | The previous code wasn't disconnecting signals at all. Bug #611779 | ||||
* | downloader-view: fix controls sensitivity | Diego Escalante Urrelo | 2010-03-16 | 1 | -1/+2 |
| | | | | | | | When there are no downloads left, the Pause/Cancel buttons should not be sensitive. Bug #611779 | ||||
* | downloader-view: make status icon visible on show | Diego Escalante Urrelo | 2010-03-16 | 1 | -0/+2 |
| | | | | Bug #611779 | ||||
* | Updated Italian translation | Francesco Marletta | 2010-03-16 | 1 | -527/+553 |
| | |||||
* | Updated Finnish translation | Tommi Vainikainen | 2010-03-15 | 1 | -687/+738 |
| | |||||
* | Updated Korean translation | Changwoo Ryu | 2010-03-14 | 1 | -511/+580 |
| | |||||
* | Updated Swedish translation | Daniel Nylander | 2010-03-11 | 1 | -46/+54 |
| | |||||
* | Updated Catalan translation | Gil Forcada | 2010-03-10 | 1 | -579/+628 |
| | |||||
* | migration: fix leading * in password field name | Diego Escalante Urrelo | 2010-03-10 | 1 | -2/+3 |
| | | | | | | | | 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 | ||||
* | ephy-profile-migration: remove useless return value | Diego Escalante Urrelo | 2010-03-10 | 2 | -10/+8 |
| | | | | _ephy_profile_query_form_auth_data is async, doesn't return anything. | ||||
* | migration: don't store a trailing ) in realm | Diego Escalante Urrelo | 2010-03-10 | 1 | -1/+1 |
| | | | | | | Realms where exported as "realm)" because of a missing -1. Bug #608687 | ||||
* | Handle EPHY_EMBED_PERSIST_NO_VIEW flag | Diego Escalante Urrelo | 2010-03-09 | 2 | -0/+20 |
| | | | | | | | This flag determines if a download should not appear in the DownloaderView window. The default is to appear, like in gecko times. Bug #611635 | ||||
* | Remove download only after showing its notification | Diego Escalante Urrelo | 2010-03-09 | 1 | -1/+1 |
| | | | | | | | 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 | ||||
* | downloader-view: handle DOWNLOAD_ACTION_DOWNLOAD action | Diego Escalante Urrelo | 2010-03-09 | 1 | -0/+2 |
| | | | | | | Otherwise we will hit an assert. Bug #611635 | ||||
* | Inspect type property when hooking to login forms | Diego Escalante Urrelo | 2010-03-09 | 1 | -1/+2 |
| | | | | | | | | | | 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 | ||||
* | ephy-web-view: add js_get_element_property | Diego Escalante Urrelo | 2010-03-09 | 1 | -0/+15 |
| | | | | | | | This retrieves a property from a JS object, just like "element.property" in plain javascript. Bug #608740 | ||||
* | Add screenshots | Marek Černocký | 2010-03-09 | 4 | -0/+0 |
| | |||||
* | 2.29.922.29.92 | Xan Lopez | 2010-03-09 | 1 | -0/+9 |
| | |||||
* | Updated Bulgarian translation | Alexander Shopov | 2010-03-07 | 1 | -29/+39 |
| | |||||
* | Updated Traditional Chinese translation(Hong Kong and Taiwan) | Kevin_Wei_2 | 2010-03-06 | 2 | -58/+86 |
| | |||||
* | Updated Galician translation | Fran Diéguez | 2010-03-06 | 1 | -8/+9 |
| | |||||
* | Updated French translation | Claude Paroz | 2010-03-06 | 1 | -514/+537 |
| | |||||
* | Updated Hungarian translation | Gabor Kelemen | 2010-03-05 | 1 | -517/+538 |
| | |||||
* | Updated British English translation | Philip Withnall | 2010-03-05 | 1 | -17/+25 |
| | |||||
* | Update Galician translation | Fran Diéguez | 2010-03-05 | 1 | -64/+42 |
| | |||||
* | Updated Basque language | Inaki Larranaga Murgoitio | 2010-03-05 | 1 | -6/+105 |
| | |||||
* | Updated Brazilian Portuguese translation | Gilfran Ribeiro | 2010-03-05 | 1 | -134/+117 |
| | |||||
* | Updated Arabic translation | Khaled Hosny | 2010-03-04 | 1 | -29/+39 |
| | |||||
* | updated Russian translation by Den V. Kaftaev | Leonid Kanter | 2010-03-04 | 1 | -15/+23 |
| | |||||
* | updated Tamil translation | vasudeven | 2010-03-04 | 1 | -29/+39 |
| | |||||
* | Updated Norwegian bokmål translation | Kjartan Maraas | 2010-03-03 | 1 | -27/+37 |
| | |||||
* | Updated Basque language | Inaki Larranaga Murgoitio | 2010-03-03 | 1 | -608/+529 |
| | |||||
* | Updated Portuguese translation | Duarte Loreto | 2010-03-02 | 1 | -3/+2 |
| | |||||
* | Updated Portuguese translation | Duarte Loreto | 2010-03-02 | 1 | -522/+577 |
| | |||||
* | Update Czech translation by Lucas Lommer & Petr Kovar | Petr Kovar | 2010-03-02 | 1 | -515/+533 |
| | |||||
* | Updated Polish translation | Piotr Drąg | 2010-03-02 | 1 | -2/+2 |
| | |||||
* | Updated Polish translation | Piotr Drąg | 2010-03-02 | 1 | -30/+41 |
| | |||||
* | Updated German translation | Mario Blättermann | 2010-03-01 | 1 | -29/+39 |
| | |||||
* | Updated Serbian translations | Miloš Popović | 2010-03-01 | 2 | -994/+1178 |
| | |||||
* | Updated Spanish translation | Jorge González | 2010-03-01 | 1 | -29/+39 |
| | |||||
* | Updated Slovenian translation | Matej Urbančič | 2010-03-01 | 1 | -28/+36 |
| | |||||
* | POTFILES.in: add missing file | Xan Lopez | 2010-03-01 | 1 | -0/+1 |
| | |||||
* | configure.ac: bump version to 2.29.92 | Xan Lopez | 2010-02-27 | 1 | -1/+1 |
| | | | | | Somehow the commit bumping version to 2.29.91 was lost... so 2.29.91 was released as 2.29.90. | ||||
* | tests: add test for EphyEmbedPersist | Diego Escalante Urrelo | 2010-02-26 | 2 | -0/+318 |
| | | | | Bug #600987 | ||||
* | ephy-window: fix button-press callback return value | Diego Escalante Urrelo | 2010-02-26 | 1 | -8/+4 |
| | | | | | | | | 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 | ||||
* | Correctly handle shit+click only in ephy-window | Diego Escalante Urrelo | 2010-02-26 | 2 | -4/+9 |
| | | | | | | | | | | | 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 | ||||
* | Added LowGerman translation | Nils-Christoph Fiedler | 2010-02-26 | 1 | -0/+3345 |
| | |||||
* | Added LowGerman translation | Nils-Christoph Fiedler | 2010-02-26 | 1 | -0/+1 |
| | |||||
* | Update Russian translation by Yuri Kozlov <yuray@komyakino.ru> | Leonid Kanter | 2010-02-25 | 1 | -9/+11 |
| | |||||
* | Updated British English translation | Bruce Cowan | 2010-02-25 | 1 | -522/+570 |
| | |||||
* | Always use i18n'd Desktop and Downloads dir names | Diego Escalante Urrelo | 2010-02-24 | 2 | -3/+7 |
| | | | | | | | | | | 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 | ||||
* | Update Russian translation by Yuri Kozlov <yuray@komyakino.ru> | Leonid Kanter | 2010-02-23 | 1 | -1700/+934 |
| | |||||
* | Estonian translation updated | Priit Laes | 2010-02-23 | 1 | -50/+33 |
| | |||||
* | Fix last patch to account for changes in soup API, and bump required version2.29.91 | Gustavo Noronha Silva | 2010-02-23 | 2 | -2/+2 |
| | |||||
* | NEWS: update for release | Xan Lopez | 2010-02-23 | 1 | -0/+16 |
| | |||||
* | Report broken certs through the padlock icon | Gustavo Noronha Silva | 2010-02-23 | 3 | -9/+71 |
| | | | | | | | | 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 | ||||
* | Updated Slovenian translation | Matej Urbančič | 2010-02-22 | 1 | -31/+36 |
| | |||||
* | updated Tamil translation | vasudeven | 2010-02-22 | 1 | -18/+24 |
| | |||||
* | Updated Romanian translation | Dumitru Mișu Moldovan | 2010-02-22 | 1 | -2460/+1271 |
| | |||||
* | Updated Bulgarian translation | Ivaylo Valkov | 2010-02-22 | 1 | -30/+30 |
| | |||||
* | Updated Swedish translation | Daniel Nylander | 2010-02-22 | 1 | -427/+578 |
| | |||||
* | Updated Polish translation | Piotr Drąg | 2010-02-21 | 1 | -555/+564 |
| | |||||
* | Updated German translation | Mario Blättermann | 2010-02-20 | 1 | -256/+233 |
| | |||||
* | Updated Arabic translation | Khaled Hosny | 2010-02-20 | 1 | -31/+37 |
| | |||||
* | Updated Spanish translation | Jorge González | 2010-02-20 | 1 | -239/+233 |
| | |||||
* | Change 'Enable Java' setting to 'Enable Plugins' | Xan Lopez | 2010-02-20 | 5 | -8/+11 |
| | | | | | There's really no way to completely disable Java support alone, and I think enabling/disabling plugins in general is much more useful. | ||||
* | Updated Brazilian Portuguese translation. | Djavan Fagundes | 2010-02-20 | 1 | -1352/+634 |
| | |||||
* | ephy-tabs-menu: show favicons instead of radiobuttons in the tabs menu. | Olivier Tilloy | 2010-02-19 | 1 | -46/+29 |
| | | | | | | Bug #405505 Signed-off-by: Xan Lopez <xan@gnome.org> | ||||
* | Make sure the strings are initialized to NULL | Gustavo Noronha Silva | 2010-02-19 | 1 | -4/+4 |
| | | | | | | | 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. | ||||
* | ephy-embed: don't use g_signal_connect_object | Diego Escalante Urrelo | 2010-02-18 | 1 | -14/+24 |
| | | | | | | | | 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 | ||||
* | updated Tamil translation | vasudeven | 2010-02-18 | 1 | -475/+554 |
| | |||||
* | Open links in new windows with control+shift+click | Diego Escalante Urrelo | 2010-02-17 | 1 | -6/+24 |
| | | | | | | This should restore the old behaviour of modifiers completely. Bug #604950 | ||||
* | ephy-web-view: be precise in what modifiers to catch | Diego Escalante Urrelo | 2010-02-17 | 1 | -4/+8 |
| | | | | | | | | 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 | ||||
* | Random formatting fixes | Diego Escalante Urrelo | 2010-02-17 | 3 | -20/+22 |
| | | | | Too wide comments, some indentation. | ||||
* | Enable window auto resize/move. | Xan Lopez | 2010-02-16 | 2 | -1/+2 |
| | | | | Bug #604991 | ||||
* | Estonian translation updated | Rene Pärts | 2010-02-16 | 1 | -10/+10 |
| | |||||
* | Updated Galician Translation | Fran Diéguez | 2010-02-15 | 1 | -126/+89 |
| | |||||
* | Remove legacy ALLOW_FIXUP flags | Diego Escalante Urrelo | 2010-02-15 | 6 | -14/+8 |
| | | | | | | This were used by the gecko backend and nowadays are not used at all. Bug #608749 | ||||
* | Updated Traditional Chinese translation(Hong Kong and Taiwan) | Chao-Hsiung Liao | 2010-02-15 | 2 | -1201/+1836 |
| | |||||
* | Use correct UTF8 length when converting JSStrings | Diego Escalante Urrelo | 2010-02-15 | 1 | -1/+1 |
| | | | | | | | | | 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 | ||||
* | Updated Bulgarian translation | Ivaylo Valkov | 2010-02-12 | 1 | -244/+533 |
| | |||||
* | downloader-view: current-size is guint64 not gint64 | Diego Escalante Urrelo | 2010-02-12 | 1 | -1/+1 |
| | |||||
* | Updated Galician Translation | Fran Diéguez | 2010-02-12 | 1 | -450/+843 |
| | |||||
* | Use accessor functions instead direct access | Javier Jardón | 2010-02-11 | 5 | -6/+6 |
| | | | | | | | 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 | ||||
* | Updated Slovenian translation | Matej Urbančič | 2010-02-11 | 1 | -271/+545 |
| | |||||
* | shift+control+click is not shift+click | Diego Escalante Urrelo | 2010-02-11 | 1 | -13/+18 |
| | | | | Bug #604950 | ||||
* | Updated Norwegian bokmål translation | Kjartan Maraas | 2010-02-11 | 1 | -259/+546 |
| | |||||
* | Use SoupURI to get host name in ephy-string | Diego Escalante Urrelo | 2010-02-11 | 1 | -38/+10 |
| | | | | Bug #582035 | ||||
* | Estonian translation updated | Rene Pärts | 2010-02-11 | 1 | -398/+132 |
| | |||||
* | ephy-web-view: fix password storage | Xan Lopez | 2010-02-10 | 1 | -4/+4 |
| | | | | | | 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. | ||||
* | Updated Arabic translation | Khaled Hosny | 2010-02-10 | 1 | -220/+210 |
| | |||||
* | Estonian translation updated | Ivar Smolin | 2010-02-09 | 1 | -48/+338 |
| | |||||
* | ephy-embed-prefs: reenable page cache by default | Xan Lopez | 2010-02-09 | 1 | -1/+1 |
| | |||||
* | 2.29.902.29.90 | Xan Lopez | 2010-02-09 | 1 | -2/+2 |
| | |||||
* | NEWS: update for release | Xan Lopez | 2010-02-09 | 1 | -0/+13 |
| | |||||
* | Implemented print preview | Jose Millan Soto | 2010-02-09 | 11 | -616/+49 |
| | | | | | | | | | | | | | | 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 | ||||
* | ephy-embed-prefs: disable the cache page for now | Xan Lopez | 2010-02-09 | 1 | -1/+1 |
| | | | | | There's a couple of issues with it we need to figure out, so disable it for the release. | ||||
* | Updated Spanish translation | Jorge González | 2010-02-08 | 1 | -3/+3 |
| | |||||
* | Check for null/empty username and password before saving to gnome-keyring | Estêvão Samuel Procópio | 2010-02-07 | 1 | -12/+17 |
| | | | | Bug #608517 | ||||
* | Using webkit_web_view_get_uri instead of js_get_domain_and_path | Estêvão Samuel Procópio | 2010-02-07 | 1 | -88/+24 |
| | |||||
* | Updated Thai translation. | Theppitak Karoonboonyanan | 2010-02-07 | 1 | -632/+745 |
| | |||||
* | Default to one toolbar with less buttons | Gustavo Noronha Silva | 2010-02-06 | 1 | -9/+1 |
| | | | | | | | | | | | | | | This change follows from the GNOME decision to default to "Text besides icons", which makes the first toolbar smaller horizontally. With the woohoo bar the need for history and bookmark buttons is also diminished, given that you can easily search them using the location bar itself. Zoom buttons are kept, but moved to the other side of the toolbar, after the location bar, to clearly distinguish them from navigation operations. Bug #412385 | ||||
* | Updated German translation | Mario Blättermann | 2010-02-05 | 1 | -214/+413 |
| | |||||
* | Updated Spanish translation | Jorge González | 2010-02-05 | 1 | -264/+352 |
| | |||||
* | Updated Arabic translation | Khaled Hosny | 2010-02-05 | 1 | -306/+392 |
| | |||||
* | Add missing file | Khaled Hosny | 2010-02-05 | 1 | -0/+1 |
| | |||||
* | Explicitely set type for .ui files | Khaled Hosny | 2010-02-05 | 1 | -5/+5 |
| | | | | | Otherwise intltool-update will fail to extract any strings from .ui files. | ||||
* | Updated Arabic translation | Khaled Hosny | 2010-02-05 | 1 | -33/+37 |
| | |||||
* | Make SoupCookieJarAcceptPolicy match our cookie policies | Xan Lopez | 2010-02-05 | 5 | -6/+71 |
| | | | | Bug #607484 | ||||
* | Updated Spanish translation | Jorge González | 2010-02-04 | 1 | -49/+51 |
| | |||||
* | Clean uneeded EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED | Diego Escalante Urrelo | 2010-02-02 | 4 | -6/+9 |
| | | | | | | | We now have ephy_embed_get_web_view, EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED plus EPHY_WEB_VIEW casts are useless. Bug #608749 | ||||
* | ephy-embed: comment typo | Diego Escalante Urrelo | 2010-02-02 | 1 | -1/+1 |
| | | | | Bug #608749 | ||||
* | ephy-file-helpers: some cleanup | Diego Escalante Urrelo | 2010-02-02 | 2 | -25/+31 |
| | | | | | | Sort variable names a bit in ephy_file_switch_temp_file. Bug #608749 | ||||
* | ephy-file-helpers: use localized folder names | Diego Escalante Urrelo | 2010-02-02 | 1 | -2/+2 |
| | | | | Bug #608749 | ||||
* | Updated German translation | Mario Blättermann | 2010-02-01 | 1 | -1090/+601 |
| | |||||
* | Implement EphyEmbedPersist using WebKitDownload | Diego Escalante Urrelo | 2010-01-30 | 1 | -4/+188 |
| | | | | | | | | 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 | ||||
* | popup-commands: missing unref | Diego Escalante Urrelo | 2010-01-30 | 1 | -0/+1 |
| | | | | Bug #600987 | ||||
* | Updating Estonian translation | Ivar Smolin | 2010-01-28 | 1 | -217/+17 |
| | |||||
* | ephy-bookmarks-import: check for possible NULL deref | Xan Lopez | 2010-01-28 | 1 | -1/+1 |
| | | | | Spotted by Holger Freyther. | ||||
* | Updated Bengali translation | Jamil Ahmed | 2010-01-27 | 1 | -2373/+2362 |
| | |||||
* | Updated Serbian translations | Miloš Popović | 2010-01-27 | 2 | -1422/+1350 |
| | |||||
* | Updated Slovenian translation | Matej Urbančič | 2010-01-27 | 1 | -62/+72 |
| | |||||
* | ephy-dialog: check if we get a valid EphyDialog | Diego Escalante Urrelo | 2010-01-26 | 1 | -2/+27 |
| | | | | | | | This API is public but we are not really good checking we get valid EphyDialog objects when called, add some checks. Bug #607802 | ||||
* | extensions-manager: remove legacy XML format support | Diego Escalante Urrelo | 2010-01-26 | 3 | -187/+3 |
| | | | | | | | 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 | ||||
* | extensions-manager: use GDir instead of dirent | Diego Escalante Urrelo | 2010-01-26 | 1 | -9/+16 |
| | | | | Bug #607881 | ||||
* | ephy-web-view.c: allow all windows to be closed by JSactual-2.29.6 | Xan Lopez | 2010-01-26 | 1 | -1/+8 |
| | | | | Since we are not marking windows as popups for now. | ||||
* | 2.29.62.29.6 | Xan Lopez | 2010-01-26 | 2 | -1/+13 |
| | |||||
* | ephy-location-entry: disable favicons in entry for release | Xan Lopez | 2010-01-25 | 1 | -0/+5 |
| | |||||
* | ephy-window: assume windows are not popups by default | Xan Lopez | 2010-01-25 | 1 | -1/+1 |
| | | | | | We need to refine our code to identify popups, meanwhile it's better to err on the benevolent side. | ||||
* | Updated Bulgarian translation | Alexander Shopov | 2010-01-25 | 1 | -722/+445 |
| | |||||
* | Suggest Filename based on the mimetype and URI of the WebKitWebResource | Jorge Kalmbach | 2010-01-23 | 1 | -1/+30 |
| | | | | Bug #605479 | ||||
* | tests: simplify Makefile.am | Diego Escalante Urrelo | 2010-01-22 | 1 | -15/+25 |
| | | | | Don't cherry pick internal libraries for tests. | ||||
* | tests: apply style fixes suggested by Xan | Diego Escalante Urrelo | 2010-01-22 | 3 | -39/+26 |
| | |||||
* | docs: ephy-file-helpers | Diego Escalante Urrelo | 2010-01-22 | 6 | -15/+231 |
| | |||||
* | docs: delete deprecated templates | Diego Escalante Urrelo | 2010-01-22 | 22 | -2738/+53 |
| | |||||
* | Enable page cache for real, now. | Gustavo Noronha Silva | 2010-01-22 | 1 | -0/+1 |
| | | | | | All critical bugs have been fixed, we already depend on a new enough version of WebKit, and this feature needs testing. | ||||
* | window-commands: remove an empty line from f007602 | Diego Escalante Urrelo | 2010-01-21 | 1 | -1/+1 |
| | | | | Just a nitpick in Jorge's patch. | ||||
* | Escape the name of resources before saving them | Diego Escalante Urrelo | 2010-01-21 | 1 | -4/+6 |
| | | | | | | | | | | 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 | ||||
* | Rename a variable to make its relation obvious | Diego Escalante Urrelo | 2010-01-21 | 1 | -15/+15 |
| | | | | | | | | | | 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 | ||||
* | ephy-web-view: plug leaks in ephy_web_view_save | Diego Escalante Urrelo | 2010-01-21 | 1 | -8/+11 |
| | | | | Bug #606876 | ||||
* | Ask for confirmation when replacing files, in save as | Jorge Kalmbach | 2010-01-21 | 2 | -4/+8 |
| | | | | Bug #605480 | ||||
* | updated Tamil translation | vasudeven | 2010-01-20 | 1 | -351/+382 |
| | |||||
* | Updated Arabic translation | Khaled Hosny | 2010-01-16 | 1 | -63/+71 |
| | |||||
* | Updated Swedish translation | Daniel Nylander | 2010-01-16 | 1 | -38/+46 |
| | |||||
* | Disable page cache - I committed it by mistake | Gustavo Noronha Silva | 2010-01-16 | 1 | -1/+0 |
| | |||||
* | Make text search faster by delaying the actual search | Gustavo Noronha Silva | 2010-01-16 | 1 | -4/+31 |
| | | | | | | | 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 | ||||
* | Remove error handling work-arounds | Gustavo Noronha Silva | 2010-01-16 | 3 | -32/+23 |
| | | | | | | | WebKit will stop emitting load signals when it loads the error page, which makes life easier for us. Bug #377012 | ||||
* | Show again favicon column in URL completion dropdown | Xan Lopez | 2010-01-15 | 1 | -2/+0 |
| | |||||
* | Make EphyLocationEntry store a copy of the lock-stock-id | Xan Lopez | 2010-01-15 | 1 | -1/+2 |
| | | | | | | | Otherwise we rely on the ordering of the property notifications to get a proper id instead of garbage (!). Bug #606995 | ||||
* | Fix docs build with gtk-doc 1.13 | Sebastian Dröge | 2010-01-15 | 1 | -1/+1 |
| | | | | gtkdoc-fixxref now needs the module to work correctly. | ||||
* | Use g_mkdir_with_parents instead of just mkdir | Diego Escalante Urrelo | 2010-01-14 | 1 | -1/+1 |
| | | | | | | | This ensures that if .gnome2/ doesn't exist, we don't fail instead of just creating the dir. Bug #605860 | ||||
* | Updated Norwegian bokmål translation | Kjartan Maraas | 2010-01-14 | 1 | -21/+32 |
| | |||||
* | Remove legacy fields in EphyEmbedPersist | Diego Escalante Urrelo | 2010-01-14 | 1 | -7/+0 |
| | |||||
* | Use © symbol and include glib.h in tests. | Diego Escalante Urrelo | 2010-01-14 | 3 | -3/+6 |
| | |||||
* | Fix syntax error in the GConf schema | Sebastian Dröge | 2010-01-13 | 1 | -1/+1 |
| | |||||
* | Updated Spanish translation | Jorge González | 2010-01-13 | 1 | -106/+115 |
| | |||||
* | 2.29.52.29.5 | Xan Lopez | 2010-01-12 | 1 | -1/+1 |
| | |||||
* | Update NEWS for release | Xan Lopez | 2010-01-12 | 1 | -0/+28 |
| | |||||
* | Improve infobar text a bit | Diego Escalante Urrelo | 2010-01-12 | 1 | -3/+12 |
| | | | | | | Include a mention to the username being saved and the domain where the form is. Bug #605022 | ||||
* | Miscellaneous nitpick fixes | Diego Escalante Urrelo | 2010-01-12 | 3 | -22/+21 |
| | |||||
* | Avoid blank items in back/forward menus | Diego Escalante Urrelo | 2010-01-12 | 1 | -3/+10 |
| | | | | | | Use the url of the page as its menu label if there's no title set. Bug #604491 | ||||
* | Update Ukrainian translation | Maxim V. Dziumanenko | 2010-01-10 | 1 | -640/+792 |
| | |||||
* | Updated Swedish translation | Daniel Nylander | 2010-01-09 | 1 | -719/+590 |
| | |||||
* | Remove uneeded default handlers for about dialog | Diego Escalante Urrelo | 2010-01-09 | 1 | -39/+0 |
| | | | | | | | Since 2.18 url and email hooks are not necessary, GTK+ includes default handlers. Bug #509207 | ||||
* | Rename EphyWebView::ge-new-window to EphyWebView::new-window | Xan Lopez | 2010-01-09 | 2 | -9/+9 |
| | |||||
* | Emit again EphyWebView::ge-new-window when required | Xan Lopez | 2010-01-09 | 1 | -8/+8 |
| | |||||
* | Updated Norwegian bokmål translation. | Kjartan Maraas | 2010-01-06 | 1 | -277/+297 |
| | |||||
* | Do not dist .gir files | Xan Lopez | 2010-01-06 | 2 | -2/+0 |
| | | | | | | 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. | ||||
* | Update Ukrainian translation | Maxim V. Dziumanenko | 2010-01-05 | 1 | -715/+665 |
| | |||||
* | NSS is not relevant as a feature for extensions | Xan Lopez | 2010-01-02 | 1 | -1/+0 |
| | |||||
* | No need to AC_SUBST EPIPHANY_FEATURES several times | Xan Lopez | 2010-01-02 | 1 | -4/+1 |
| | |||||
* | Updated Slovenian translation | Matej Urbančič | 2010-01-01 | 1 | -302/+320 |
| | |||||
* | Remove ChangeLog generation from SVN | Xan Lopez | 2009-12-31 | 3 | -310/+1 |
| | | | | It's not useful anymore, only leave the git bits. | ||||
* | Disable introspection for distcheck | Xan Lopez | 2009-12-31 | 1 | -0/+1 |
| | | | | | | | | | | | | 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. | ||||
* | Enable threads for gtk-doc scanner | Xan Lopez | 2009-12-31 | 1 | -0/+3 |
| | |||||
* | Revert "docs: remove generated templates" | Xan Lopez | 2009-12-31 | 23 | -13/+3346 |
| | | | | | | This reverts commit 3deb6e06fd3cccaf26bca8c81bf1f83ef7993dd6. This broke distcheck. | ||||
* | Don't omit notifications for downloads | Diego Escalante Urrelo | 2009-12-30 | 1 | -24/+11 |
| | | | | | | | | | | 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 | ||||
* | Implement replace action for downloads | Diego Escalante Urrelo | 2009-12-30 | 2 | -20/+81 |
| | | | | | | | Always download to a temporary location, only move the file to the final destination after it has been downloaded completely. Bug #594192 | ||||
* | downloader-view: fix wrong return type | Diego Escalante Urrelo | 2009-12-30 | 1 | -1/+3 |
| | | | | Bug #594192 | ||||
* | Minor style fixes in downloads code. | Diego Escalante Urrelo | 2009-12-30 | 2 | -5/+7 |
| | | | | Bug #594192 | ||||
* | ephy-embed: fix download button action | Diego Escalante Urrelo | 2009-12-30 | 1 | -0/+8 |
| | | | | | | | | | 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 | ||||
* | ephy-embed: minor style fix | Diego Escalante Urrelo | 2009-12-29 | 1 | -2/+1 |
| | | | | Bug #605091 | ||||
* | Enable mime type safety check in downloads | Diego Escalante Urrelo | 2009-12-29 | 1 | -0/+1 |
| | | | | | | Honour our database of safe and unsafe mime types. Bug #605026 | ||||
* | Update the installation directory for .gir and .typelib files | Iain Nicol | 2009-12-28 | 1 | -2/+2 |
| | | | | Bug #605574 | ||||
* | Updated Arabic translation | Khaled Hosny | 2009-12-27 | 1 | -260/+276 |
| | |||||
* | Updating Estonian translation | Ivar Smolin | 2009-12-27 | 1 | -2/+10 |
| | |||||
* | Use introspection.m4 file to detect introspection support | Xan Lopez | 2009-12-26 | 3 | -40/+108 |
| | |||||
* | Reimplement window.close | Xan Lopez | 2009-12-26 | 3 | -13/+30 |
| | | | | | | | | 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 | ||||
* | Replace unsupported %k with %-H in Italian translation | Luca Ferretti | 2009-12-22 | 1 | -5/+5 |
| | |||||
* | Copy WebKitWebHistoryItem objects | Gustavo Noronha Silva | 2009-12-21 | 1 | -1/+2 |
| | | | | | This is so that changes to the item objects do not affect other WebViews. | ||||
* | ephy-embed-prefs: enable quirks mode by default | Xan Lopez | 2009-12-21 | 1 | -0/+1 |
| | | | | Makes WebKit apply a series of workarounds for known broken sites. | ||||
* | Restrict number of password infobars to one | Gustavo Noronha Silva | 2009-12-20 | 1 | -0/+13 |
| | |||||
* | Add sanity checks for places where we create SoupURIs | Gustavo Noronha Silva | 2009-12-20 | 1 | -0/+8 |
| | | | | | SoupURI creation may fail for invalid URIs, and we would crash trying to work with the NULL pointers. | ||||
* | Finish porting the favicon cache to WebKitDownload | Gustavo Noronha Silva | 2009-12-20 | 1 | -5/+5 |
| | |||||
* | ephy-bookmarks-editor: wrong cast | Diego Escalante Urrelo | 2009-12-20 | 1 | -1/+1 |
| | |||||
* | Raise API version | Gustavo Noronha Silva | 2009-12-20 | 1 | -1/+1 |
| | |||||
* | Updated Spanish translation | Jorge González | 2009-12-19 | 1 | -269/+298 |
| | |||||
* | ephy_gui_help: use gtk_show_uri to open help | Diego Escalante Urrelo | 2009-12-19 | 10 | -76/+38 |
| | | | | | | | We were doing some ugly path searching for this. The correct method is to use gtk_show_uri. Bug #604024 | ||||
* | Add custom user-agent support | Vincent Untz | 2009-12-19 | 3 | -1/+99 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | We default to the WebKitGTK+ user agent with Epiphany and the version appended to it. This can be overriden/modified in two ways: - The gconf key /apps/epiphany/general/user_agent has the maximum priority, and if it's set it will be always used. - If the gconf key is not set, vendors can still customize the UA by placing a branding.conf file in the share data directory. One example would be: [User Agent] Vendor=SUSE VendorSub=11.2 VendorComment=2.29.94-1 And the result would be: Mozilla/5.0 (X11; U; Linux i686; fr-fr) AppleWebKit/531.2+ (KHTML, like Gecko) Safari/531.2+ SUSE/11.2 (2.29.94-1) Epiphany/2.29.94 Bug #580903 Signed-off-by: Xan Lopez <xan@gnome.org> | ||||
* | Properly manage the list of languages for the "Accept-Language" header | Mario Sanchez Prada | 2009-12-19 | 2 | -2/+57 |
| | | | | | | | | 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 | ||||
* | Make form code safe against unnamed password/username elements | Benjamin Otte | 2009-12-18 | 1 | -2/+7 |
| | |||||
* | Restore download on shift-click functionality | Gustavo Noronha Silva | 2009-12-18 | 4 | -27/+43 |
| | |||||
* | Make Ctrl-rightclick always display the browser keyboard | Gustavo Noronha Silva | 2009-12-18 | 1 | -0/+11 |
| | |||||
* | docs: ephy-web-view | Diego Escalante Urrelo | 2009-12-18 | 6 | -31/+244 |
| | |||||
* | docs: ephy-dialog | Diego Escalante Urrelo | 2009-12-18 | 6 | -18/+215 |
| | |||||
* | docs: ephy-debug | Diego Escalante Urrelo | 2009-12-18 | 4 | -1/+40 |
| | |||||
* | docs: include NSS libs when appropiate | Diego Escalante Urrelo | 2009-12-18 | 1 | -0/+5 |
| | | | | | | This fixes the build when docs are enabled. Bug #604637 | ||||
* | ephy-web-view: add missing include | Diego Escalante Urrelo | 2009-12-18 | 1 | -0/+1 |
| | |||||
* | ephy-web-view.c: use NULL-safe str compare function | Xan Lopez | 2009-12-18 | 1 | -1/+1 |
| | | | | Fixes crasher in pages with no rel elements. | ||||
* | Updating Estonian translation | Ivar Smolin | 2009-12-17 | 1 | -33/+28 |
| | |||||
* | Use the new top-widget infrastructure to ask whether to store passwords | Gustavo Noronha Silva | 2009-12-17 | 2 | -20/+191 |
| | |||||
* | Make it possible to add arbitrary widgets above the WebView | Gustavo Noronha Silva | 2009-12-17 | 2 | -3/+93 |
| | |||||
* | Make EphyEmbed inherit from GtkVBox instead of GtkScrolledWindow | Gustavo Noronha Silva | 2009-12-17 | 18 | -73/+82 |
| | |||||
* | Allow dialog buttons be the default | Benjamin Otte | 2009-12-17 | 1 | -0/+1 |
| | | | | | Fixes crashers when we actually make them the default shortly afterwards. | ||||
* | Updated Arabic translation | Khaled Hosny | 2009-12-17 | 1 | -710/+644 |
| | |||||
* | Updated Slovenian translation | Matej Urbančič | 2009-12-17 | 1 | -364/+371 |
| | |||||
* | ephy-statusbar: fix GTK+ version check, it was reversed | Xan Lopez | 2009-12-16 | 1 | -2/+2 |
| | |||||
* | ephy-web-view: do not auto-fill passwords when using a private profile | Xan Lopez | 2009-12-16 | 1 | -3/+3 |
| | |||||
* | Emitting ge-feed-link signal for rss extension | Estêvão Samuel Procópio | 2009-12-16 | 1 | -0/+93 |
| | | | | Signed-off-by: Xan Lopez <xan@gnome.org> | ||||
* | Fix file placement | Kjartan Maraas | 2009-12-16 | 1 | -2/+2 |
| | |||||
* | Updated Norwegian bokmål translation. | Kjartan Maraas | 2009-12-16 | 1 | -77/+83 |
| | |||||
* | Implement the actual form authentication saving and pre-filling | Gustavo Noronha Silva | 2009-12-16 | 2 | -0/+517 |
| | | | | | | | | | 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 | ||||
* | Add a new utility function to query the keyring for the form password | Gustavo Noronha Silva | 2009-12-15 | 2 | -33/+97 |
| | | | | | This is used to make all policy regarding what and how we save data be in one place. | ||||
* | ephy-embed-single: add a function to update the form auth cache with a new entry | Xan Lopez | 2009-12-15 | 2 | -12/+47 |
| | |||||
* | ephy-embed-single: add a function to get the form auth data for a URI | Xan Lopez | 2009-12-15 | 2 | -13/+45 |
| | |||||
* | ephy-embed-single: cache form auth data | Xan Lopez | 2009-12-15 | 3 | -3/+156 |
| | | | | | Otherwise we need to query keyring all the time to figure out if we have to prefill forms. | ||||
* | ephy-profile-migration: migrate form auth data from (copied) gecko profile | Xan Lopez | 2009-12-15 | 2 | -7/+125 |
| | | | | | We store the login/password pairs used in forms in the keyring, like the HTTP auth data. | ||||
* | Move profile migration tools from src/ to lib/ | Xan Lopez | 2009-12-15 | 6 | -15/+15 |
| | | | | | We'll use them from embed/ for form password saving, and embed/ can't use code from src/ | ||||
* | Let web pages handle mouse clicks before doing our own handling | Gustavo Noronha Silva | 2009-12-14 | 2 | -2/+10 |
| | | | | | | | This allows applications to provide their own context menus, and perform their own handling for right-click events. Bug #603326 | ||||
* | ephy-web-view: url-decode javascript URIs before executing them | Xan Lopez | 2009-12-14 | 1 | -3/+7 |
| | | | | | | Fixes Amazon Add to Wishlist bookmark. Bug #604489 | ||||
* | ephy-web-view: do not set favicon when we have no address | Nguyen Thai Ngoc Duy | 2009-12-12 | 1 | -1/+1 |
| | | | | | | | | | This shouldn't happen in theory, but the double check fixes a crasher opening URLs from gmail. Bug #604375 Signed-off-by: Xan Lopez <xan@gnome.org> | ||||
* | ephy-web-view: get rid of 'icon-address' property | Xan Lopez | 2009-12-11 | 2 | -85/+48 |
| | | | | Also redundant since we have the same thing in WebKitWebView now. | ||||
* | ephy-web-view.h: remove old signal from class struct | Xan Lopez | 2009-12-11 | 1 | -2/+0 |
| | |||||
* | Remove the 'favicon' signal from EphyWebView | Xan Lopez | 2009-12-11 | 3 | -29/+1 |
| | | | | We already have WebKitWebView::icon-loaded, so it's redundant now. | ||||
* | Make the favicon cache work on top of new WebKit API, and WebKitDownload | Gustavo Noronha Silva | 2009-12-10 | 3 | -57/+54 |
| | | | | | | | | 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 | ||||
* | ephy-navigation-action: reverse forward history list | Carl van Toder | 2009-12-09 | 1 | -2/+2 |
| | | | | | | | | Was reversed wrt epiphany/gecko Bug #601744 Signed-off-by: Xan Lopez <xan@gnome.org> | ||||
* | Updating Estonian translation | Ivar Smolin | 2009-12-09 | 1 | -25/+9 |
| | |||||
* | ephy-prefs: remove obsolete preference | Xan Lopez | 2009-12-09 | 1 | -3/+0 |
| | |||||
* | Add gconf key to control the search engine used in auto-search | Carl van Tonder | 2009-12-09 | 3 | -2/+26 |
| | | | | | | | | Defaults to Google, like it used to. Bug #604087 Signed-off-by: Xan Lopez <xan@gnome.org> |