summaryrefslogtreecommitdiff
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
* fix hotlist keypress consumption returnVincent Sanders2016-08-062-4/+4
|
* fix global history keypress consumption returnVincent Sanders2016-08-042-3/+3
|
* fix certificate viewer keypress consumption returnVincent Sanders2016-07-312-5/+3
|
* Allow certificate verification user prompt creation to return errorsVincent Sanders2016-07-312-4/+8
|
* Fix cookie manager keypress consumption returnVincent Sanders2016-07-312-3/+3
|
* URL escape: Simplify to avoid unnecessary allocation.Michael Drake2016-07-251-1/+1
| | | | | | | | This removes the toskip parameter, which was only used by the RISC OS front end. The toskip param was used to skip 8 characters which did not need to be escaped from the start of the URL. The RISC OS front end now orders the steps of its URL construction to avoid the need for this.
* move key press enums and operations to their own headerVincent Sanders2016-07-014-63/+14
|
* remove unecessary textinput header use from treeview headerVincent Sanders2016-06-303-9/+13
|
* remove unecessary textinput header use from global history headerVincent Sanders2016-06-302-5/+5
|
* remove unecessary textinput header use from hotlist headerVincent Sanders2016-06-301-4/+3
|
* remove unecessary textinput header useVincent Sanders2016-06-301-4/+3
|
* reduce curl usage to fetcher, url unescaping and time parsingVincent Sanders2016-06-291-1/+0
|
* move the public form APIVincent Sanders2016-06-142-2/+2
|
* msplit public url database API out for frontendsVincent Sanders2016-06-132-0/+3
|
* remove unecessary content API usage from atari frontendVincent Sanders2016-06-081-0/+1
|
* Allow include directories to be added by sub makefilesVincent Sanders2016-06-066-8/+8
|
* Update content to split public and internal APIVincent Sanders2016-06-069-121/+135
|
* fix missing includes from header API changesVincent Sanders2016-05-301-1/+1
|
* move plotters header into public APIVincent Sanders2016-05-3012-171/+11
|
* move desktop window header into public APIVincent Sanders2016-05-3013-752/+44
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-3010-126/+9
|
* move netsurf header into public APIVincent Sanders2016-05-303-57/+4
|
* move layout header into public APIVincent Sanders2016-05-305-95/+4
|
* move fetch header into public APIVincent Sanders2016-05-302-105/+1
|
* move misc header into public APIVincent Sanders2016-05-307-114/+6
|
* move utf8 header into public APIVincent Sanders2016-05-303-55/+2
|
* move download header into public APIVincent Sanders2016-05-303-46/+2
|
* move clipboard header into public APIVincent Sanders2016-05-305-66/+4
|
* move window header into public APIVincent Sanders2016-05-305-295/+4
|
* move search header into public APIVincent Sanders2016-05-302-76/+1
|
* move bitmap API header to core include directoryVincent Sanders2016-05-265-5/+5
|
* move the CSS content handlerVincent Sanders2016-05-2612-20/+15
|
* move image content handlers to accomodate core build changesVincent Sanders2016-05-236-7/+7
|
* cleanup printer API usage of plotter headersVincent Sanders2016-05-042-5/+7
|
* remove all core usage of warn_user APIVincent Sanders2016-04-265-34/+42
|
* update scrollbar_create error handling to return nserrorVincent Sanders2016-04-263-17/+19
|
* improve error returns from pdf save APIVincent Sanders2016-04-262-10/+10
|
* fix error reporting from frameset creationVincent Sanders2016-04-263-17/+29
|
* use the miscellaneous table warning entryVincent Sanders2016-04-252-5/+15
| | | | | | | change all the frontends to provide the warning callback in the miscelaneous table instead of using the warn_user function. Changing all the warn_user callsites still requires completion.
* split out the layout glyph sizing and splitting APIVincent Sanders2016-04-239-81/+146
| | | | | This refactors the core "font" sizing API to be handled through gui function tables similar to every other core/frontend calling API.
* make framebuffer use nsutils library monotonic timesVincent Sanders2016-04-211-0/+1
|
* replace wallclock API usage with nsutils monitonic timeVincent Sanders2016-04-212-9/+15
|
* move regex helper to be with teh single remaining call siteVincent Sanders2016-04-201-0/+19
|
* stop content header dragging in so many other headersVincent Sanders2016-04-192-0/+2
|
* reduce content header interdependancyVincent Sanders2016-04-183-0/+5
|
* create date and time to seconds since epoch processing utility functionVincent Sanders2016-04-161-2/+2
| | | | | | | currently NetSurf uses curl_getdate to convert textural date and time strings into seconds since epoch. It is betetr to move this functionality to a utility function so curl_getdate can easily be replaced if required.
* complete the rename of the gui browser tableVincent Sanders2016-04-166-30/+30
| | | | | | When the operations tables were created the browser table was renamed to miscellaneous except the actual rename patch was never applied, this fixes that situation.
* update version info for next development cycleVincent Sanders2016-04-061-2/+2
|
* Update font interface documentation to include parameter directionVincent Sanders2016-03-222-12/+12
|
* Fix size_t printf formattingVincent Sanders2016-03-171-1/+2
| | | | | | | The printf formatting for size_t is set in c99 as %zu but in windows it is %Iu this is solved by adding and inttypes style PRI macro for size_t This also uses this macro everywhere size_t is formatted.