summaryrefslogtreecommitdiff
path: root/frontends/monkey
Commit message (Collapse)AuthorAgeFilesLines
* Support DEBUG log level in console_logDaniel Silverstone2019-05-061-0/+3
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Monkey: Support console_logDaniel Silverstone2019-05-061-0/+51
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Monkey: Support WINDOW EXEC WIN n cmd...Daniel Silverstone2019-05-051-0/+35
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* monkey: Add bmp and ico to mime_hash.Michael Drake2019-02-161-0/+2
|
* Fix text plotter in monkeyDaniel Silverstone2019-02-161-1/+1
|
* add certificate window handlingVincent Sanders2018-11-043-14/+113
|
* Final tweaks, support LOGIN in monkeyfarmerDaniel Silverstone2018-11-041-1/+2
|
* Update monkey 401login a little to be easier to work withDaniel Silverstone2018-11-041-2/+4
|
* add 401 login handling to monkey frontendVincent Sanders2018-11-033-27/+201
|
* Monkey: Buildsystem: Set messages directory.Michael Drake2018-11-031-0/+11
|
* More monkey stuffDaniel Silverstone2018-11-031-385/+0
|
* Remove redundant redraw methodDaniel Silverstone2018-11-031-7/+0
|
* Update farmer a little ready for laterDaniel Silverstone2018-11-031-6/+27
|
* Correct wrong MOUT_ERROR to MOUT_WINDOWDaniel Silverstone2018-11-031-1/+1
|
* centralise monkey output generationVincent Sanders2018-11-0310-122/+214
|
* Upgrade monkey farmer to python 3 (badly)Daniel Silverstone2018-11-031-16/+24
|
* correctly setup feature flagsVincent Sanders2018-09-061-7/+14
|
* _XOPEN_SOURCE needs defining to avoid warnings on BSDVincent Sanders2018-09-061-0/+1
|
* stop defining _XOPEN_SOURCEVincent Sanders2018-09-061-1/+0
| | | | | This is necessary with some libc as it overrides _POSIX_C_SOURCE and removes definitions of scandir etc.
* Monkey: Update for new HTTP auth API.Michael Drake2018-08-152-7/+16
|
* Plotters: Remove width param from path plotter.Michael Drake2018-05-231-4/+2
| | | | We now use the stroke_width in the plot_style.
* Plotters: Add plot_style_fixed type, and use for font size.Michael Drake2018-05-231-5/+5
|
* ensure stdint is included where requiredVincent Sanders2018-04-221-0/+1
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-101-0/+3
|
* fix time_t loggingVincent Sanders2017-09-081-1/+1
|
* Update scheduler logging to use catagoryVincent Sanders2017-09-071-10/+4
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-065-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* Initial monkey farmer example, needs to be genericisedDaniel Silverstone2017-06-101-0/+363
|
* Add ability to set options in monkeyDaniel Silverstone2017-06-101-1/+11
|
* SET_SCROLL only wants x/y not x0y0x1y1Daniel Silverstone2017-06-101-2/+2
|
* Look for resources in useful folder nameDaniel Silverstone2017-06-101-1/+1
|
* Fix commentsDaniel Silverstone2017-06-101-2/+2
|
* Reflow monkey code, it was annoying me too muchDaniel Silverstone2017-06-1012-874/+866
|
* Include time in GENERIC POLL TIMEDDaniel Silverstone2017-06-101-1/+1
|
* Update monkey frontend for set_scroll API changeVincent Sanders2017-04-261-14/+21
|
* update monkey frontend to remove reformat APIVincent Sanders2017-04-261-11/+12
|
* Update monkey frontend to use invalidate window area APIVincent Sanders2017-04-231-14/+22
|
* clean up incorrect documentation comments from plotter API reworkVincent Sanders2017-02-141-5/+5
|
* update monkey plotters to new APIVincent Sanders2017-02-111-45/+213
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-131-1/+1
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* make monkey frontend mime type processing use explicit ascii processingVincent Sanders2016-09-071-20/+38
|
* Allow certificate verification user prompt creation to return errorsVincent Sanders2016-07-312-4/+5
|
* Move fetcher_fdset to fetch.h (and rename to fetch_fdset). Maybe not ideal ↵Daniel Silverstone2016-06-271-2/+2
| | | | but better
* msplit public url database API out for frontendsVincent Sanders2016-06-131-1/+2
|
* reduce usage of content headers by monkey frontendVincent Sanders2016-06-065-9/+10
|
* move plotters header into public APIVincent Sanders2016-05-302-2/+2
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-301-1/+1
|
* move netsurf header into public APIVincent Sanders2016-05-301-1/+1
|
* move layout header into public APIVincent Sanders2016-05-301-1/+1
|