summaryrefslogtreecommitdiff
path: root/frontends/amiga/sslcert.c
Commit message (Collapse)AuthorAgeFilesLines
* chore: Perform sslcert_viewer-ectomyDaniel Silverstone2020-05-221-374/+0
| | | | | | | | | | | This removes the sslcert_viewer entirely from the code. Where possible I've also trimmed out of frontends any code I think should not be present. Frontends should check and remove any further references that I have failed to catch. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* missed a certificate change on amiga frontendVincent Sanders2020-02-231-4/+3
|
* fix frontends to cope with certificate chain updateVincent Sanders2020-02-231-3/+2
|
* Hide the message port which is shared amongst all Amiga NetSurf windowsChris Young2019-05-101-1/+1
|
* Make screen pointer accesible through an accessor function onlyChris Young2019-05-101-0/+1
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* clean up some of the doxygen generation warningsVincent Sanders2017-02-191-1/+1
|
* clean up incorrect documentation comments from plotter API reworkVincent Sanders2017-02-141-0/+2
|
* Support SimpleRefresh corewindowsChris Young2017-01-081-3/+11
| | | | These queue redraws unlike the main browser window, which seems to work a bit better than redrawing immediately.
* Process in-window scrollbars using IDCMPUPDATE tooChris Young2017-01-081-0/+3
|
* Basic conversion of cookie manager to core windowChris Young2017-01-031-1/+1
| | | | slightly broken; blank window until resized; scroll bar wrong; no menu
* Fix sslcert redrawChris Young2017-01-021-2/+2
|
* show/hide scrollbars as requiredChris Young2017-01-021-9/+21
| | | | move the sslcert scrollbars into the window as per the style guide
* make the window title text commonChris Young2017-01-021-8/+6
|
* ssl cert window should not have a close gadgetChris Young2017-01-021-1/+1
|
* move mousemove back to the event loop and ensure the window is created clearedChris Young2017-01-021-5/+2
|
* migrate sslcert to use corewindowChris Young2017-01-021-21/+322
| | | | predictably blank
* Allow certificate verification user prompt creation to return errorsVincent Sanders2016-07-311-2/+6
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-301-1/+1
|
* move window header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+50