Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webactivity.py
Commit message (Collapse)AuthorAgeFilesLines
* Display security as a lock icon for secured pages - SL #4245Manuel Quiñones2012-11-291-0/+2
| | | | | | | | | | | | | For pages using the https protocol, display a) a lock icon if there were no errors in the certification, or b) a broken lock icon if the certification failed. Use the same logic as Epiphany: http://git.gnome.org/browse/epiphany/tree/embed/ephy-web-view.c#n2321 Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Manuel Kaufmann <humitos@gmail.com>
* Avoid close the PDFTab when Esc is pressed SL #4246Manuel Kaufmann2012-11-221-2/+6
| | | | | | | | Do not call "stop_loading" if the WebKit is not in 'loading' state when 'Esc' is pressed. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Hanlde focus properly on each tab SL #4200Manuel Kaufmann2012-11-191-0/+2
| | | | | | | | | | | The focus is grabbed after loading the 'Home page' and when the session is restored. This patch allow us to show the OSK when it's needed and to be able to start typing with the hardware keyboard. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Simon Schampijer <simon@laptop.org>
* Remove temporary downloaded (cancelled) files SL #3973Manuel Kaufmann2012-11-161-0/+38
| | | | | | | | | | | | | | | | | When a download is cancelled for any reason WebKit leaves a temporary file called ".goutputstream-*" in the "instance" directory. This is because of a bug in GLib: * https://bugzilla.gnome.org/show_bug.cgi?id=629301 This patch is a workaround to that behaviour. Every time that Browse is started it looks for all the ".goutputstream" files in the "instance" directory and checks its mtime. If it greater than 1 day or it was created before we booted, Browse removes the old temporary file. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org>
* New escape behavior when in fullscreen mode, SL #1434Simon Schampijer2012-10-251-26/+0
| | | | | | | | | | This is a followup of SL #1434. The behavior is now that pressing escape in fullscreen mode will exit the fullscreen mode. Pressing a second time escape will stop loading the page. Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Revert "Touch: Get out of activity fullscreen mode SL #4013"Manuel Quiñones2012-10-231-18/+0
| | | | | | This is in toolkit now, commit 20ef2975 . This reverts commit c9975a7c356b6c7d81473560cd7d5d611c82bfcb.
* Touch: Get out of activity fullscreen mode SL #4013Manuel Kaufmann2012-10-201-0/+18
| | | | | | | | Show the Unfullscreen button (with a timeout to hide it) when the user clicks over the canvas. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Revert "Remove GObject threads - SL #3670"Gonzalo Odiard2012-10-121-0/+3
| | | | | | | | | | | | This reverts commit d42f58a18bb26337dcbc59b1c7b49623fa724d4f. The removed commit break Wikipedia activities and the fix needed upstream [1] is already included. [1] https://bugzilla.gnome.org/show_bug.cgi?id=678046 Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Restore the Bookmarks tray handling using a toggle button - SL #3868Manuel Quiñones2012-09-281-3/+2
| | | | | | | | | | | | | | | | Instead of changing the tooltip and icon of the tool button based on the visibility of the tray, with the map and unmap callbacks that this patch removes, do the inverse: when a bookmark is made, the toggle button is activated, and it shows the tray in the toggled callback. Also when the only pending bookmark is removed, the toggle button is deactivated, and it hides the tray in the toggled callback. The switch to a toggle button allows us to do the tray and button interaction in a more standard way, and the bugs that the unconventional interaction raised are now fixed. Signed-off-by: Manuel Quiñones <manuq@laptop.org> Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
* Busy indication SL #851Manuel Kaufmann2012-09-251-0/+13
| | | | | | | | | | | Show WATCH Cursor when the page is loading and LEFT_PTR when the load finishes. This changes take in consideration the tab that the user is watching, so the cursor refers to the state of the current browser / tab. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Escape key stops page loading SL #3373Manuel Kaufmann2012-09-251-0/+30
| | | | | | | | | Allow Esc key to stop page loading. If the activity is on fullscreen mode, the first time that Esc key is pressed the page loading will stop and the second time it will call unfullscreen mode. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Revert zoom with the original value SL #3540Manuel Kaufmann2012-09-101-0/+4
| | | | | | | | | | New functionality to go back to the original zoom value. Added an icon next to zoom properties in View Toolbar. This function can be used with the hotkey "Control + 0" as well. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
* Remove GObject threads - SL #3670Manuel Quiñones2012-06-211-3/+0
| | | | | | | | | | | | Having GObject threads is provoking segmentation faults. They were added previous to the GTK3 port to solve this bug: http://dev.laptop.org/ticket/5639 which I can't reproduce anymore having threads removed. Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
*