summaryrefslogtreecommitdiff
path: root/content
Commit message (Collapse)AuthorAgeFilesLines
...
* html: Don't both building a bitmap if we're not rendering itDaniel Silverstone2020-05-221-0/+7
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* html: Handle canvas in redrawDaniel Silverstone2020-05-221-1/+29
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* html: set up canvas box properlyDaniel Silverstone2020-05-221-0/+7
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* html: Add canvas node handling in dom_eventDaniel Silverstone2020-05-221-0/+133
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* css: Support canvas width/height presentational hintsDaniel Silverstone2020-05-221-0/+65
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* fetchers/curl: Move report_certs function outside WITH_OPENSSLDaniel Silverstone2020-05-221-21/+22
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* query/ssl: Include link to view certificate detailsDaniel Silverstone2020-05-221-1/+9
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Squash warning: "_GNU_SOURCE" redefined.Michael Drake2020-05-221-2/+0
| | | | The utils/config.h header handles this.
* pass the browser window to selection click handlerVincent Sanders2020-05-205-42/+2
| | | | | | this means the content handlers do not have to provide a separate method to extract their browser window and it can simply be passed in.
* cleanup selection code formatting and documentationVincent Sanders2020-05-201-4/+3
| | | | | | removes forward declarations cleans up documentation comments in header removes unecessarily exported functions
* do not export texplain interfaces unnecessarilyVincent Sanders2020-05-192-189/+173
|
* about: Rework freeing the san_names structureDaniel Silverstone2020-05-191-1/+11
| | | | | | | | | AmiSSL's approach to replacing 90% of OpenSSL calls with assembly means that the official way to pop_free a stack type won't work. As such, we open-code it here. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* add subject alternative names to certificate viewerVincent Sanders2020-05-181-0/+103
|
* Page info: Improve certificate fault display style.Michael Drake2020-05-181-6/+9
|
* Display errors properly in certificate windowVincent Sanders2020-05-181-5/+19
|
* Improve certificate page styling.Michael Drake2020-05-171-7/+35
|
* add fingerprints to the certificate viewerVincent Sanders2020-05-171-0/+115
|
* split out public key table formatted outputVincent Sanders2020-05-171-55/+68
|
* use entity for colon in certificate hex values to allow netsurf to break ↵Vincent Sanders2020-05-171-2/+10
| | | | properly
* get the sign right on the certificate openssl compatability interfaceVincent Sanders2020-05-171-2/+2
|
* fix typo in certificate openssl compatabilityVincent Sanders2020-05-171-1/+1
|
* add openssl compatability to certificate decodeVincent Sanders2020-05-171-12/+91
|
* make about handler ssenddataf cope with longer dataVincent Sanders2020-05-161-2/+24
|
* improve certificate viewerVincent Sanders2020-05-161-77/+593
|
* implement content opacity check through the function tableVincent Sanders2020-05-1312-16/+112
|
* use content messages to inform frontend of text search changesVincent Sanders2020-05-132-230/+386
|
* make free text search content handler agnosticVincent Sanders2020-05-125-267/+377
|
* consolodate the textsearch code into a single moduleVincent Sanders2020-05-123-107/+100
|
* hoist common text search out of content handlersVincent Sanders2020-05-128-201/+109
|
* move free text search general interface to content.Vincent Sanders2020-05-109-233/+302
| | | | | needs additional cleanup to call content through handler table to perform searches.
* remove unecessary includesVincent Sanders2020-05-102-13/+6
|
* add missing header includes from previous changeVincent Sanders2020-05-083-0/+3
|
* improve content header usageVincent Sanders2020-05-0720-164/+153
|
* clean up content headers and documentation commentsVincent Sanders2020-05-0611-444/+661
| | | | pure formatting and documentation changes, no code difference
* remove junk content_add_error apiVincent Sanders2020-05-065-14/+0
|
* remove unused junk error values from content structVincent Sanders2020-05-062-8/+0
| | | | saves over half a kilobyte for every content
* split dom event handling into separate moduleVincent Sanders2020-05-054-727/+837
|
* Clean up html content dom element insertion processingVincent Sanders2020-05-052-89/+159
|
* curl: Pass cert chain on even if we get no headersDaniel Silverstone2020-05-041-0/+4
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* llcache: Actually pass on certificate chain properlyDaniel Silverstone2020-05-041-5/+10
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* remove the forward references in html form internal handlingVincent Sanders2020-05-032-549/+615
|
* remove forward delcarations and clean up formatting in html table layout ↵Vincent Sanders2020-05-032-581/+561
| | | | processing
* Improve hsndling of html content objects with no associated boxVincent Sanders2020-05-031-12/+39
|
* remove unecessary includeVincent Sanders2020-05-031-1/+0
|
* improve html content handler private headersVincent Sanders2020-05-0224-123/+277
|
* add missing includeVincent Sanders2020-05-011-1/+2
|
* put html content handler object interface into its own headerVincent Sanders2020-05-015-23/+98
|
* remove unused available width and height parameters from html_fecth_object()Vincent Sanders2020-04-305-34/+37
|
* remove unecessary filename prefixes in the html content handlerVincent Sanders2020-04-308-10/+10
|
* split html box processing codeVincent Sanders2020-04-2920-2674/+2958
| | | | | | | reduce the module size of the html box handling code by splitting into smaller sections. No functional code change.