summaryrefslogtreecommitdiff
path: root/monkey
Commit message (Collapse)AuthorAgeFilesLines
* completely remove use of depricated warn_user API in monkeyVincent Sanders2016-04-291-1/+1
|
* stop monkey frontend using depricated warn_user APIVincent Sanders2016-04-293-26/+33
|
* use the miscellaneous table warning entryVincent Sanders2016-04-253-31/+9
| | | | | | | 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.
* update monkey frontend to use layout tableVincent Sanders2016-04-244-13/+50
|
* Split utils header into string functions and everything elseVincent Sanders2016-04-211-0/+1
| | | | | split out the string handling API from the rest of the utils header and fix up all the fallout.
* stop content header dragging in so many other headersVincent Sanders2016-04-192-0/+2
|
* move sys/time.h support functionality out of generic headerVincent Sanders2016-04-192-2/+2
| | | | | | | The utils header is a large collection of functionality for several system headers and API. This splits out the ones from sys/time.h into a separate header reducing the need for many unconnected source files to include the system header unecessarily.
* complete the rename of the gui browser tableVincent Sanders2016-04-161-2/+2
| | | | | | 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.
* fix strcasecmp implicit declaration warnings on freebsdVincent Sanders2016-02-121-0/+1
|
* fix debug print format type.Vincent Sanders2016-02-121-3/+3
| | | | | openbsd timeval structure defines the seconds part as time_t and not int so we need to use a time_t format suitable everywhere.
* remove reliance on GLib from monkey frontendVincent Sanders2016-02-126-283/+281
| | | | | This changes the monkey implemntation to use a simple scheduler list and select instead of glib events.
* ensure limits is included for PATH_MAXVincent Sanders2016-02-071-0/+1
|
* remove need for glib in monkey frontend mainVincent Sanders2016-02-071-4/+111
|
* Complete hash table tests and clean up ineterface.Vincent Sanders2015-07-121-26/+0
|
* fixup missing lincludes from messages API updateVincent Sanders2015-06-221-0/+1
|
* This moves message loading out of netsurf_init into each frontendVincent Sanders2015-06-211-2/+7
| | | | | | | | | | The translated message loading is dependant on configuration of resource location in each frontend, additionally they should have the ability to deal with errors in this loading in a implementation specific manner. This also extends the message loading API to be capable of loading from an inline memory buffer instead of from a file.
* Change LOG() macro to be varadicVincent Sanders2015-05-285-17/+16
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* 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
|