summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* implement more toolbar item handlers and make menus call themVincent Sanders2019-09-216-358/+428
|
* allow menu activation to use the toolbar button implementationsVincent Sanders2019-09-2114-106/+317
|
* clean up some more handler code and remove button pushVincent Sanders2019-09-212-83/+117
|
* make menu sensitivity workVincent Sanders2019-09-213-168/+102
| | | | what remains is interfaces to make the toolbar appropriately sensative
* make menus work againVincent Sanders2019-09-212-35/+38
|
* make web search box workVincent Sanders2019-09-213-150/+148
|
* add home button clicked handlerVincent Sanders2019-09-212-71/+155
|
* implement several more button press handlersVincent Sanders2019-09-213-30/+140
|
* connect button clicked events for local history and stop buttonsVincent Sanders2019-09-213-206/+254
|
* fix url enttry completionVincent Sanders2019-09-213-23/+59
|
* cleanup toolbar warningsVincent Sanders2019-09-212-5/+4
|
* make url entry repond to navigate and update signalsVincent Sanders2019-09-214-13/+113
|
* make toolbar url entry display urlVincent Sanders2019-09-215-32/+179
|
* working throbberVincent Sanders2019-09-215-76/+161
|
* move toolbar to be in tab contentsVincent Sanders2019-09-214-24/+149
|
* get the code to at least compile again. toolbar is completely brokenVincent Sanders2019-09-213-685/+742
|
* moved most of init to toolbar.cVincent Sanders2019-09-218-696/+1049
|
* netsurf_exit(): Finalise DOM namespace stringsDaniel Silverstone2019-09-071-0/+4
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Monkey: Clean up various leaked blocksDaniel Silverstone2019-09-073-1/+23
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* hlcache_fini(): Deschedule cleanups on finalisationDaniel Silverstone2019-09-071-0/+3
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* netsurf_exit(): Release user-agent string on exitDaniel Silverstone2019-09-071-0/+3
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* useragent: Add a free_user_agent_string() functionDaniel Silverstone2019-09-072-0/+17
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* monkey_driver: Make window-close take timeout=5Daniel Silverstone2019-09-071-1/+2
| | | | | | | | | | In the parallel test we run, it can sometimes take more than a second for the JS compartment of a window to close down. Since that's part of the shutdown of a window, the driver can end up timing out. Default the timeout to 5s for window-close but make it possible to specify in the yaml too. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Box Conversion: Cancel conversion during html_destroyDaniel Silverstone2019-08-234-3/+38
| | | | | | | | If dom_to_box is still in progress when we destroy an HTML content, we need to cancel the conversion otherwise we will end up with a scheduled callback into infinity. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* browser_window: use about:blank if current_parameters is emptyDaniel Silverstone2019-08-231-0/+5
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Window: set{Timeout,Interval}() default delay 10msDaniel Silverstone2019-08-211-12/+8
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Browser: Do a better job of not leaking query URIs to the frontendDaniel Silverstone2019-08-211-4/+14
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* browser: Turn internal nav URLs into corestring_nsurlsDaniel Silverstone2019-08-212-14/+5
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* browser_window: Ensure that back works like 'back to safety'Daniel Silverstone2019-08-213-18/+59
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* fix spelling mistakes from miscellaneous event commitVincent Sanders2019-08-203-7/+7
|
* add miscellaneous event to browser window callback tableVincent Sanders2019-08-2013-163/+410
| | | | | | | | | | | | extend the browser window callback table with a miscallaneous event entry. This is used to replace all browser window callbacks which take no parameters. This reduces the API surface from seven separate calls to a single call with an enumeration which may be readily extended. The initial implementation in the frontends simply calls the original implementations to reduce scope for errors.
* access gtk throbber frames through an interfaceVincent Sanders2019-08-184-39/+92
| | | | | | This changes the gtk throbber frames to be accessed through an API This removes teh nsgtk_throbber global and hides the implementation details from the rest of the code.
* Move favicon from url entry widget to notebook tab labelVincent Sanders2019-08-157-82/+133
|
* SSL Error: Enable OpenSSL hostname verificationDaniel Silverstone2019-08-144-20/+23
| | | | | | | | Since OpenSSL 1.0.2 there has been hostname verification support which cURL doesn't turn on for some reason. Turn it on so that we get better hostname verification handling. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* browser_window: handle 'back to safety' cleanlyDaniel Silverstone2019-08-141-1/+5
| | | | | | | | | | In order to ensure we actually go back to safety, clear the curent loading parameters, and transfer the load parameters for where we're going into them to be closer to a real navigate, otherwise we end up copying the wrong loading parameters over the top when we complete the back-to-safety navigation. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Clean up message translationsVincent Sanders2019-08-141-1682/+1688
| | | | | | reorder sections to be a bit more logical change numerous messages to be frontend specific move several tokens to the "Unused" secion and comment them all
* fix atari removal of login windowVincent Sanders2019-08-142-30/+0
|
* remove login window from atari frontendVincent Sanders2019-08-143-99/+0
|
* remove login window from amiga frontendVincent Sanders2019-08-144-330/+1
|
* remove login from riscos frontendVincent Sanders2019-08-148-727/+1
|
* remove login window from windows frontendVincent Sanders2019-08-144-338/+1
|
* remove login window from gtk front endVincent Sanders2019-08-138-652/+1
|
* make internal url navigation check safeVincent Sanders2019-08-121-14/+38
|
* Amiga: DebugPrintF is OS4-onlyChris Young2019-08-101-0/+2
|
* Amiga: OS3 doesn't know FOREGROUNDPEN, so use TEXTPEN insteadChris Young2019-08-101-1/+1
|
* Amiga: Implement a simple listbrowser log in the GUIChris Young2019-08-104-8/+282
| | | | Can be revealed/hidden with F12 and is currently undocumented.
* Amiga: Allow running JS from ARexxChris Young2019-08-102-1/+32
| | | | | | Option arexx_allow_exec enables the EXEC command. It is disabled by default and currently undocumented. Theoretically this could be used by a form filler application.
* Remove scale from Amiga frontendChris Young2019-08-101-47/+26
| | | | | | Remove shadow scale variable Redraw when scale is changed This also fixes a long-standing bug where the window would not redraw correctly when scrolling if not at 100% scale
* add English message text for ssl errorsVincent Sanders2019-08-102-1/+12
|
* add common name ssl certificate errorVincent Sanders2019-08-103-3/+22
| | | | | This adds an ssl faliure code and explanation why curl fetcher does not currently set it.