Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webtoolbar.py
Commit message (Collapse)AuthorAgeFilesLines
* Improve styling of the autocomplete list - SL #4049Manuel Quiñones2012-10-251-5/+44
| | | | | | | | | - add background to the entry to match the drop down list - make the list styleable - set the list minimun height to match four entries Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
* Remove gap between the web entry and the autocomplete listManuel Quiñones2012-10-251-1/+3
| | | | | | | | This is a regression from the gecko to webkit port, see commit d50001dc . Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
* Make the autocomplete list touch-friendly - SL #4049Manuel Quiñones2012-10-221-0/+3
| | | | | | | | | | | | - limit the number of matches so the list doesn't interfere with the OSK - enlarge the rows height to the size of an icon of standard size, so the rows are as touchable as Sugar icons - make the list of alternate colors to distinguish the clickable/touchable area Signed-off-by: Manuel Quiñones <manuq@laptop.org>
* Keep the typed URL after switching between tabs SL #3537Manuel Kaufmann2012-10-121-0/+4
| | | | | | | | | This patch allows the user to start typing an URL and switch to another tag. Then go back to the previous tab and keep typing the same URL. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Button to clear the url entry SL #3499Manuel Kaufmann2012-09-281-3/+28
| | | | | | | | | | Added an 'X' to clear the url entry easily. This button is shown when the url entry has focus and the user is not reading a .pdf webpage. When the focus is left the icon changes again to the correct one (reload, stop loading or none) Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Display only the URL in the URL entry SL #3553Manuel Kaufmann2012-09-271-48/+5
| | | | | | | | | The Title of the current page is no longer shown in the URL entry. Now, it's only shown in the tab and the current URL is visible all the time in the URL entry. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Use UNICODE string to search into places SL #2830Manuel Kaufmann2012-06-211-1/+2
| | | | | | | | | | | | Decode (using 'utf-8') the string inserted by the user in the URL address bar to search with SQLite into places' database. This is the proper thing to do in Python 2, as this wiki page states: http://python-gtk-3-tutorial.readthedocs.org/en/latest/unicode.html#unicode-in-gtk Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
* Restore journal file picker (#3411)Daniel Drake2012-06-141-4/+2
| | | | | | | | | | | | | | The run-file-chooser signal can be used to intercept a request for a file upload and display a custom file chooser. We want to do this to allow the user to upload files from the journal. By default, the standard GTK+ file chooser was being shown. run-file-chooser is present in WebKit2 and has been submitted for final review for inclusion in WebKit1. Signed-off-by: Daniel Drake <dsd@laptop.org> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Unset "loading..." message when the loading fails SL #3620Manuel Quiñones2012-05-301-1/+6
| | | | | | | | | | | | | Browse has to restore the previous title in the tab and in the URL entry when the loading finishes with WEBKIT_LOAD_FAILED status. This fixes bug #3620 in Sugarlabs trac. The WEBKIT_LOAD_FAILED status is reached in the current webview when the loading is manually handled in the mime-type-policy-decision-requested callback. Signed-off-by: Manuel Quiñones <manuq@laptop.org> Tested-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Simon Schampijer <simon@laptop.org>
* Fix for displaying "Untitled" when the page has no title #3619Manuel Quiñones2012-05-221-1/+1
| | | | | | | | This bug was introduced in commit 04a0de3de3b24ae22bf326de046fb256bdbfeccb . Signed-off-by: Manuel Quiñones <manuq@laptop.org> Reviewed-By: Manuel Kaufmann <humitos@gmail.com> Acked-by: Simon Schampijer <simon@laptop.org>
*