summaryrefslogtreecommitdiff
path: root/atari
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-15110-24506/+0
|
* Fix several doxygen errorsVincent Sanders2016-05-051-1/+1
|
* update atari frontend to remove usage of depricated warn_user APIVincent Sanders2016-04-3012-35/+25
|
* use the miscellaneous table warning entryVincent Sanders2016-04-253-2/+16
| | | | | | | 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 atari to use font layout tableVincent Sanders2016-04-243-48/+112
|
* Split utils header into string functions and everything elseVincent Sanders2016-04-212-0/+2
| | | | | split out the string handling API from the rest of the utils header and fix up all the fallout.
* cleanup unneeded includes in utils.h after API simplificationVincent Sanders2016-04-205-1/+7
|
* more atari header cleanupVincent Sanders2016-04-203-85/+29
|
* atari header cleanup and warning squashVincent Sanders2016-04-2016-175/+142
| | | | | | This rationalises atari platform user of headers and squashes a lot of warnings. Should not be viewed as real maintenance, more that it was getting in the way of fixing real core header issues.
* add missing explicit dirent includesVincent Sanders2016-04-191-0/+1
|
* Reduce unecessary use of directory entry headersVincent Sanders2016-04-191-1/+1
| | | | | | | The config header was causing many source files to unecessarily include the dirent headers causing extra dependancies. This has been fixed by providing a utility dirent header that provides a common API across all platforms while removing the unecessary dirent header usage.
* move sys/time.h support functionality out of generic headerVincent Sanders2016-04-191-1/+1
| | | | | | | 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.
* fixup some empty logging calls in atari hotlist codeVincent Sanders2016-01-251-3/+3
|
* This moves message loading out of netsurf_init into each frontendVincent Sanders2015-06-211-1/+3
| | | | | | | | | | 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.
* fixup logging macros that incorrectly override the LOG() macro nameVincent Sanders2015-05-281-1/+1
|
* fixup all the remaining logging macro callsitesVincent Sanders2015-05-282-27/+27
| | | | | The semantic patch tool appears to have missed some difficult to reason about callsites which have now been manually cleaned up
* Change LOG() macro to be varadicVincent Sanders2015-05-2824-171/+154
| | | | | | | | | | | | 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.
* Clean up atari source linendings, whitespace damage and executable statusVincent Sanders2015-05-2861-4858/+4862
|
* Convert atari to bitmap render interfaceVincent Sanders2015-04-244-26/+7
|
* 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
* rationalise atari plotters header usage.Vincent Sanders2015-04-1911-98/+95
|
* move the mandantory library config for libcss and libdom to core makefileVincent Sanders2015-04-171-2/+1
|
* Convert atari frontend to use bitmap operation tableVincent Sanders2015-04-166-224/+247
|
* To avoid namespace conflicts with ncurses add NetSurf key prefix.Witold Filipczyk2015-03-276-48/+48
| | | | Adds a NetSurf key code prefix of NS_ to all key codes.
* Fixup atari thumbnail creation function parametersVincent Sanders2015-03-151-3/+1
| | | | Missed this frontend in previous commit.
* Move FILE_SCHEME_PREFIX to corestrings.Michael Drake2015-02-261-1/+1
|
* remove atari need to use browser internal data structuresVincent Sanders2014-11-212-16/+10
|
* doxygen cleanups in utilsVincent Sanders2014-11-121-2/+3
|
* fix up some warnings in atari buildVincent Sanders2014-11-102-13/+1
|
* remove unecessary include of render header from atariVincent Sanders2014-11-101-1/+0
|
* Doxygen warning fixesVincent Sanders2014-11-103-6/+6
|
* Continue doxygen error cleanup.Vincent Sanders2014-11-082-6/+7
|
* fix up more doxygen errorsVincent Sanders2014-11-081-2/+2
|
* Improve Doxygen documentationVincent Sanders2014-11-082-9/+9
|
* Fix several doxygen issuesVincent Sanders2014-11-082-5/+6
|
* fix errors in change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-021-0/+1
|
* change url setting api to take an nsurl instead of a text stringVincent Sanders2014-11-021-6/+6
|
* remove unecessary utils/types.hVincent Sanders2014-11-025-7/+5
| | | | | | This cleans up this header and moves the functionality into more useful places while reducing the include complexity but only pulling in whats required.
* Change contextual content retrieval to browser features.Vincent Sanders2014-11-021-36/+25
| | | | | | | | | | | | | Update the API which allows frontends to acquire the page features (images, link urls or form elements) present at the given coordinates within a browser window. By making this an explicit browser_window API and using the browser.h header for the associated data structure with a more appropriate API naming the usage is much more obvious and contained. Additionally the link url is now passed around as a nsurl stopping it being converted from nsurl to text and back again several times.
* Update url setting API to return nserror code instead of calling warn_userVincent Sanders2014-10-291-2/+4
|
* remove the die API from the core.Vincent Sanders2014-10-262-0/+10
| | | | | | | | 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
* Try doxygen todo format.Michael Drake2014-10-251-3/+3
|
* Shouldn't need bw internals now.Michael Drake2014-10-251-1/+1
|
* Attempt to avoid using bw internals.Michael Drake2014-10-251-7/+7
| | | | | There are so many levels of windows here, that this could well be broken, as its rather confusing.
* Shouldn't need bw internals now.Michael Drake2014-10-251-1/+1
|
* Don't access bw internals.Michael Drake2014-10-251-6/+7
|
* Reduce usage of bw internals. Add some TODOs for m0n0 to look at.Michael Drake2014-10-251-3/+9
|
* Doesn't look like browser window internals are used here.Michael Drake2014-10-251-1/+0
|
* Use API to test for bw content.Michael Drake2014-10-251-1/+1
|