summaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Fix RISC OS not having a pread/pwrite implementation."Vincent Sanders2015-04-022-45/+0
| | | | | | | This reverts commit 82c7a7a4baf4a7a15381ee720799dc41c3d54909. Conflicts: content/fs_backing_store.c
* Fix RISC OS not having a pread/pwrite implementation.Vincent Sanders2015-03-312-3/+49
|
* Remove fragment from nsurl hash.Michael Drake2015-03-271-3/+0
|
* Move win32 window operations into their own moduleVincent Sanders2015-03-121-0/+2
| | | | | | This splits up a great deal of the win32 window code out from other gui code. It also remove large quantities of unused and junk variables and functions.
* Remove unused #include.Michael Drake2015-03-051-1/+0
|
* Remove include of nsurl from corestrings.hMichael Drake2015-02-262-2/+2
|
* Move FILE_SCHEME_PREFIX to corestrings.Michael Drake2015-02-262-7/+8
|
* add missing errno includeVincent Sanders2015-01-301-0/+1
|
* Updated time_t fallback reading to not fail if the value is 0Vincent Sanders2015-01-301-2/+5
| | | | | | | The non strptime fallback reading of time_t values would report faliure if the value it read was 0 which is a valid time. This fixes this path to only fail if there was an actual error processing the value.
* Cast timeval.usec calculations to int as AmigaOS3 has some conflicting ↵Chris Young2015-01-191-3/+3
| | | | | | headers which means it can be treated as an unsigned value. This ensures the log time is always correct.
* jenkins helper script quoting in shell wilidcard case was wrongVincent Sanders2014-12-211-6/+6
|
* add freebsd to jenkins build script for gtk, framebuffer and monkeyVincent Sanders2014-12-211-1/+26
|
* remove some warnings from freebsd buildVincent Sanders2014-12-212-0/+2
|
* Update the coverity build script for buildsystem HOST/BUILD changesVincent Sanders2014-12-191-3/+3
|
* fix BUILD/HOST usage to work with fixed buildsystemVincent Sanders2014-12-191-45/+45
|
* Improve message split generationVincent Sanders2014-12-021-35/+99
| | | | | | | | | | This changes the message splitting code to ensure that a translation is generated for every different key using a specified language as a fallback if no translation is available. This also allows for a messages to be generated when there is no fallback at all and when the translation is the same as the fallback language
* make coverity build script use updated environment variablesVincent Sanders2014-11-301-4/+2
|
* Fix my spelling of teh everywhereVincent Sanders2014-11-182-2/+2
|
* uipdate jenkins build script to confirm to new core buildsystemVincent Sanders2014-11-161-45/+45
|
* USe the externally built conveniance utf8proc libraryVincent Sanders2014-11-145-14374/+5
|
* doxygen cleanups in utilsVincent Sanders2014-11-129-13/+21
|
* Doxygen fixesVincent Sanders2014-11-091-6/+9
|
* Improve Doxygen documentationVincent Sanders2014-11-081-1/+1
|
* Fix several doxygen issuesVincent Sanders2014-11-083-7/+8
|
* fix dumb mistake in missing a close bracket.Vincent Sanders2014-11-041-1/+1
|
* change logic to check for false instead of not true to fix coverity 1250328Vincent Sanders2014-11-042-5/+5
|
* remove unecessary utils/types.hVincent Sanders2014-11-022-53/+6
| | | | | | 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-15/+0
| | | | | | | | | | | | | 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.
* Move host_is_ip_address into urldb, as that's the only thing that cares.Michael Drake2014-10-312-98/+0
|
* remove unused url_init functionVincent Sanders2014-10-312-37/+0
|
* use nsurl_nice and remove url_niceVincent Sanders2014-10-312-113/+0
| | | | | change all callers over to using new API for generating nice filenames from a url and remove the old API.
* Remove unused variable.Michael Drake2014-10-301-1/+0
|
* Add a nsurl_nice, which can replace url_nice.Michael Drake2014-10-302-0/+117
|
* Add a lwc corestring for "/".Michael Drake2014-10-302-0/+10
|
* update nsurl file header to contain references to the specifications it ↵Vincent Sanders2014-10-291-2/+8
| | | | implements
* Clean up saving as PDFVincent Sanders2014-10-261-1/+0
| | | | | | | | | | | | This removes the global PDF_Password interface that had completely bitrotted and moves it into the standard misc operation table with a sensible defualt implementation. This also cleans up and fixes the gtk frontend implementation of the pdf password callback so it compiles. Finally this moves the implementation to a sensible place alongside the other exporters reducing target makefile complexity futher.
* remove the die API from the core.Vincent Sanders2014-10-261-1/+0
| | | | | | | | 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
* Remove unused url_components stuff.Michael Drake2014-10-262-151/+0
|
* Remove unused url_path function.Michael Drake2014-10-262-33/+0
|
* Remove unused url_scheme function.Michael Drake2014-10-262-35/+0
|
* make regex wrapper return errors instead of just abortingVincent Sanders2014-10-254-8/+17
|
* fix doc commentsVincent Sanders2014-10-251-20/+20
|
* Improve the message loading API to return error codes.Vincent Sanders2014-10-252-84/+85
| | | | | | | Returning an error instead of simply calling die allows more robust error handling. Secondly initialisation may continue even if the messages have not been loaded which is more friendly than simply dropping dead with no communication to the user.
* Update the core to use the split operations table headersVincent Sanders2014-10-162-4/+5
| | | | Second in the series to decouple the core API usage from the frontends.
* split version info into its own header and remove unnecessary nesurf.h includesVincent Sanders2014-10-131-1/+1
| | | | | | | | | 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.
* Trivial sepelling, documentation and whitespace cleanupsVincent Sanders2014-10-101-1/+1
|
* Stop the Amiga build complaining about redefined strndupChris Young2014-09-201-1/+1
|
* Fix test rig leak. (cppcheck)Michael Drake2014-09-061-1/+2
|
* Handle realloc failure.Michael Drake2014-09-051-1/+7
|
* we build for haiku not beosVincent Sanders2014-09-051-1/+1
|