summaryrefslogtreecommitdiff
path: root/monkey
Commit message (Collapse)AuthorAgeFilesLines
* Use standard macros for monkey frontend mandantory pkg-config based librariesVincent Sanders2015-05-031-17/+17
|
* Update posix source version on monkey frontend to reflect oyr usage of scandirVincent Sanders2015-05-031-1/+1
|
* Update monkey to use bitmap render APIVincent Sanders2015-04-243-33/+11
|
* Remove webp image handlingVincent Sanders2015-04-211-4/+0
| | | | | | | | | | | | | | | | The bitmap and image handling interfaces have changed within NetSurf and the webp image handling has not been fixed up appropriately to cope. After discussion with the other developers it has been decided that the webp support is not worth the necessary development effort to rewrite and maintain. The webp format is not in wide usage and Mozilla, Microsoft and Apple have not adopted it. This means the removal will not adversely impact NetSurf. Resolves:2310
* move the mandantory library config for libcss and libdom to core makefileVincent Sanders2015-04-171-2/+2
|
* Update monkey frontend to use bitmap operation table.Vincent Sanders2015-04-154-12/+63
|
* define _DEFAULT_SOURCE as well as _BSD_SOURCE to supress warnings in glibc 2.12Vincent Sanders2015-03-281-0/+1
|
* Remove url from content thumbnailers APIVincent Sanders2015-03-151-3/+2
| | | | | | | | | | | | | | | | The content thumbnailers for each frontend were being provided the contents url. This was only ever used to call the urldb thumbnail setting API. This changes it so the single callsite that passed a valid url adds the bitmap to that url itself in desktop_history.c instead of forcing every frontend to require the urldb API. Additionally the old API could pass the url as NULL which was causing asserts where this was not an expected parameter value. Because of this this fixes bug #2286 which was also present in the monkey frontend as both called nsurl_access() on the url without the NULL check and caused an assertion.
* Monkey: fix double-free on exitJohn-Mark Bell2015-02-251-2/+0
|
* revert unecessary librt linkage as it not comes from libnsfb pkg-config ↵Vincent Sanders2014-11-271-1/+1
| | | | correctly
* add rt library to linkVincent Sanders2014-11-271-1/+1
|
* replace save_link operation table entry usage of textural url with nsurlVincent Sanders2014-11-031-4/+4
|
* change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-021-2/+2
|
* remove unecessary utils/types.hVincent Sanders2014-11-021-0/+1
| | | | | | This cleans up this header and moves the functionality into more useful places while reducing the include complexity but only pulling in whats required.
* Update url setting API to return nserror code instead of calling warn_userVincent Sanders2014-10-291-1/+2
|
* remove the die API from the core.Vincent Sanders2014-10-264-11/+30
| | | | | | | | The die() API for abnormal termination does not belong within the core of netsurf and instead errors are propogated back to the callers. This is the final part of this change and the API is now only used within some parts of the frontends
* reduce uncesessary inclusion of browser.h and browser_private.hVincent Sanders2014-10-176-8/+15
|
* Update monkey frontend to cope with split operations table headersVincent Sanders2014-10-167-12/+36
|
* Don't include browser_private.Michael Drake2014-10-151-1/+0
|
* Use API to get window extents.Michael Drake2014-10-151-4/+4
|
* Don't need content to window conversion.Michael Drake2014-10-151-15/+0
|
* There's no reason to connect thumbnails with windows.Michael Drake2014-10-151-6/+1
|
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-131-1/+0
| | | | | | | | | The netsurf.h header should *only* contain the registration, core initialisation and finalisation methods. Version information is best placed in its own header. Also remove any unneeded inclusion of this header limiting it to solely the places the relevant API is required.
* Put the font operations table alongside all the other core APIVincent Sanders2014-10-131-2/+1
| | | | | | | | | | | | The netsurf core is driven from numerous operation tables most of which are now set through a common netsurf_register() interface. The font and plotting interfaces are currently separate and unlike all the other operation tables are modified for differing contexts. This change moves the font operations alongside all the other operations table and remove unnecessary interaction with the renderers font internals. Further this also removes the need for css internals to be visible in frontends.
* remove unecessary css includeVincent Sanders2014-10-131-1/+0
|
* remove use of deprecated netsurf_quit variable in monkeyVincent Sanders2014-10-123-6/+10
| | | | | | The core no longer needs to run the event polling loop as fetches are now scheduler driven. This is part of a series which will ultimately remove netsurf_poll callback altogether.
* set defaults for cookie and url databaseVincent Sanders2014-10-122-3/+7
|
* Pull warning flags out into variables that can be overriden seperately for C ↵Vincent Sanders2014-09-051-18/+13
| | | | and C++
* change reformat to be driven from the scheduler like redrawVincent Sanders2014-07-012-17/+7
|
* convert all frontends to scheduled fetch operationVincent Sanders2014-06-261-48/+34
|
* make launch_url core operation use nsurlVincent Sanders2014-05-271-3/+3
|
* rework path to url mapping functions to convert from and to nsurlVincent Sanders2014-05-261-54/+2
|
* reduce uncessary include usageVincent Sanders2014-05-181-2/+2
|
* add backing store storage path to browser initialisationVincent Sanders2014-05-131-1/+1
|
* ensure operations tables are registered as early as possible.Vincent Sanders2014-05-101-2/+7
|
* remove unecessary utils/url.h includesVincent Sanders2014-05-092-3/+1
|
* refactor url utility functions to use standard nserror codes and have ↵Vincent Sanders2014-05-081-3/+3
| | | | appropriate documentation.
* add file operations table and make all frontends use it.Vincent Sanders2014-05-071-41/+0
| | | | | | | | | | | | | This rationalises the path construction and basename file operations. The default implementation is POSIX which works for all frontends except windows, riscos and amiga which have differeing path separators and rules. These implementations are significantly more robust than the previous nine implementations and also do not use unsafe strncpy or buffers with arbitrary length limits. These implementations also carry full documentation comments.
* Fix checking memory allocation return, fixes coverity 1164969Vincent Sanders2014-05-071-3/+17
|
* check return from stat() fixes coverity 1164069Vincent Sanders2014-05-071-3/+20
|
* monkey should not force external iconvVincent Sanders2014-04-301-1/+0
|
* fix formatting of defaults makefilesVincent Sanders2014-03-201-9/+10
|
* move scheduleing into browser operation tableVincent Sanders2014-03-093-17/+27
|
* Make browser_window_navigate (un)verifiable flag match browser_window_create.Michael Drake2014-02-101-2/+1
|
* Allow tab creation without history clone. Changes browser_window_create and ↵Michael Drake2014-02-101-4/+3
| | | | browser_window_navigate flags.
* Clean up gui_window creation API.Michael Drake2014-02-091-4/+5
|
* stop monkey pulling in headers from gtkVincent Sanders2014-02-031-1/+2
|
* move utf8 local conversion operations to tableVincent Sanders2014-02-011-18/+0
|
* remove further extraneous includesVincent Sanders2014-02-011-1/+2
|
* clean up desktop/gui.h include usageVincent Sanders2014-01-291-3/+5
|