summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* move sys/time.h support functionality out of generic headerVincent Sanders2016-04-1911-36/+61
| | | | | | | 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.
* fix missing struct on http parameter declaration due to header changeVincent Sanders2016-04-1811-18/+19
|
* reduce content header interdependancyVincent Sanders2016-04-1814-28/+65
|
* clean up header usage in content hnadling coreVincent Sanders2016-04-181-20/+10
|
* fix urldb test buildVincent Sanders2016-04-171-0/+1
|
* fix use of INT_MAX without including limits.hVincent Sanders2016-04-171-0/+1
|
* Reduce unecessary use of networking headersVincent Sanders2016-04-176-13/+69
| | | | | | | | The utility configuration header dragged in a number of bsd sockets and related API as a side effect of setting up the configuration. By splitting the header and API setup into a separate header only the small number of places that need the functionality explitly include it.
* urldb no longer uses curl directly but it does need correct network includesVincent Sanders2016-04-171-0/+1
| | | | | | The update to remove curl usage from urldb must pull in the utility config header instead to get inet_aton and such or compoles on some platforms fail.
* fix missing misc table fixup on beosVincent Sanders2016-04-171-1/+1
|
* create date and time to seconds since epoch processing utility functionVincent Sanders2016-04-165-60/+130
| | | | | | | currently NetSurf uses curl_getdate to convert textural date and time strings into seconds since epoch. It is betetr to move this functionality to a utility function so curl_getdate can easily be replaced if required.
* complete the rename of the gui browser tableVincent Sanders2016-04-1626-82/+82
| | | | | | 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.
* make check library probe faliure silentVincent Sanders2016-04-161-9/+42
|
* Ensure the ARexx-reported version number doesn't jump around between CI and ↵Chris Young2016-04-161-2/+3
| | | | | | release builds Update minor version for next release cycle
* update version info for next development cycleVincent Sanders2016-04-067-12/+11
|
* Merge branch 'heads/release/3.5'Vincent Sanders2016-04-060-0/+0
|\
| * Update version for 3.5 releaserelease/3.5Vincent Sanders2016-04-065-13/+6
|/
* Skip setting the pen in the RastPort if it is already set to that penChris Young2016-03-232-2/+8
| | | | This captures the scenario when the RGBA value has changed but graphics.library has picked the same pen.
* Avoid nsurl NULL accessChris Young2016-03-231-1/+1
|
* Ensure we are only accessing pixel data using amiga_bitmap_get_buffer()Chris Young2016-03-221-6/+7
|
* Ensure we don't access invalid pointersChris Young2016-03-222-5/+15
|
* Document new bitmap functionsChris Young2016-03-223-5/+75
|
* Make struct bitmap private to bitmap.cChris Young2016-03-229-39/+87
|
* Apparently setting pens is a strangely complex process, so avoid it.Chris Young2016-03-222-0/+16
|
* Update font interface documentation to include parameter directionVincent Sanders2016-03-222-12/+12
|
* fix broken windows frontend font handlingVincent Sanders2016-03-221-51/+109
|
* Fix obvious bug in nsfont_split.Michael Drake2016-03-211-3/+2
| | | | | Was using nsfont_position_in_string instead of nsfont_width, resulting in returning nonsense actual_x and char_offset values.
* Log nsfont_width failure.Michael Drake2016-03-211-0/+2
|
* Remove printf logging.Michael Drake2016-03-211-1/+0
|
* Add missing resources to windows frontendVincent Sanders2016-03-204-0/+12
|
* fix new creating new window assertVincent Sanders2016-03-201-6/+33
|
* add certificate authority bundle handling to windowsVincent Sanders2016-03-203-1/+30
| | | | | | | | | The curl certificate handling on windows does not have a compiled in default location so it is necessary to attempt to find a default bundle. This provides a bundle in the install and code to set it as the default bundle location.
* Fix size_t printf formattingVincent Sanders2016-03-1712-54/+88
| | | | | | | The printf formatting for size_t is set in c99 as %zu but in windows it is %Iu this is solved by adding and inttypes style PRI macro for size_t This also uses this macro everywhere size_t is formatted.
* Update CA bundleVincent Sanders2016-03-171-234/+139
|
* OS3 compatible language mappingsChris Young2016-03-161-0/+11
|
* frontends should not call the reformat API directlyVincent Sanders2016-03-161-1/+1
| | | | | | | The reformat API locking semantics are challenging to understand, efectiveky browser_window_reformat should never be called by frontend code directly except explicitly on the reformat callback. Otherwise the content may already be locked and the system winds up asserting.
* remove unecessary header inclusionVincent Sanders2016-03-161-7/+1
|
* Revert "Fix memory leak in error handling"Vincent Sanders2016-03-161-1/+0
| | | | | | This reverts commit c53be108924ed460aad35bb30c5c88a849bded20. Issue tracked in bug 2443
* Remove unused #includes.Michael Drake2016-03-151-5/+0
|
* Fix memory leak in error handlingVincent Sanders2016-03-141-0/+1
| | | | | error handling during form gadget construction could leak, this fixes the leak on error. Fixes coverity CID 1109875
* Fix RISC OS relocatable module checksDave Higton2016-03-141-16/+9
| | | | | | | | | | | | Several relocatable modules are distributed with the RISC OS version. The !Run file checks for their presence and version number. However, if the check fails, the user is referred to dead links. This fixes this to requested an update to the !System folder from the NS archive, using the Configure app. Closes: 2441
* Avoid null dereference in gtk resource handlingVincent Sanders2016-03-141-2/+8
| | | | | Ensure the error handling in gtk pixmap resource handling does not cause a null pointer dereference. Fixes coverity CID 1307743
* Fix possible dereference of NULLVincent Sanders2016-03-141-14/+30
| | | | | | | The return of calloc was not being checked and could have lead to a NULL pointer dereference. This fixes coverity CID 1316337 Additionally the functions documentation comments were cleaned up.
* Clean up gtk login windowVincent Sanders2016-03-141-66/+116
| | | | | | | | | | | This fixes coverity ID 1316338 by dealing with memory and window creation errors properly. Previously such errors could seg fault or leave the browser navigation logic "stuck" waiting for user input to a window that never existed. The code was also refactored to remove forward declarations and add documentation comments.
* fixup nsurl handling to avoid locale specific character type implementationVincent Sanders2016-03-141-110/+224
|
* Merge branch 'vince/themectomy'Vincent Sanders2016-03-1049-2202/+257
|\ | | | | | | Remove broken GTK theme code
| * completely remove remaining GTK theme codeVincent Sanders2016-03-096-293/+240
| | | | | | | | | | Removes the theme code from GTK by moving the small remaining parts to being implementation details within the toolbar implementation.
| * remove unused theme ui elements from preferances dialogVincent Sanders2016-03-092-22/+0
| |
| * remove unrequired path globalsVincent Sanders2016-03-091-6/+0
| |
| * remove theme optionVincent Sanders2016-03-083-6/+2
| |
| * add missing arrow down pixmap resourceVincent Sanders2016-03-083-150/+1
| |