summaryrefslogtreecommitdiff
path: root/content
Commit message (Collapse)AuthorAgeFilesLines
* Remove from poll on abort. Fix loglevelsashmew2/nskolibriosAshish Gupta2017-10-291-56/+35
|
* Debugging : Squash / undo this commit later.Ashish Gupta2017-10-291-8/+59
|
* Fix infinite fetching processing in http fetcherAshish Gupta2017-10-261-18/+22
|
* Use libnslog.Ashish Gupta2017-10-252-53/+39
| | | | Get rid of LOG() macro calls and replace with calls to NSLOG.
* Fix polling of http connections when going through linked list.Ashish Gupta2017-10-251-14/+17
|
* Remove bloat x3Ashish Gupta2017-10-251-19/+0
|
* Add HOME and END key handling in framebufferAshish Gupta2017-10-251-0/+1
|
* Fix debug. When rebasing, do not preserveAshish Gupta2017-10-251-2/+2
|
* Free the fetch (and http.obj handle) when errored out or finished or abortedAshish Gupta2017-10-251-4/+7
|
* Stop printing POST data on debug board (fixes passwords showing up)Ashish Gupta2017-10-251-18/+17
|
* POST Multipart worksAshish Gupta2017-10-251-13/+108
| | | | Private message can be sent on board.kolibrios.org
* Drop int3 in multipart fetch with log and return NULLAshish Gupta2017-10-251-1/+2
|
* Revert "Revert file.c to master"Ashish Gupta2017-10-251-0/+25
| | | | This reverts commit 1843934b37c6731fbb60665cd78bcd3f2c82d80d.
* Revert file.c to masterAshish Gupta2017-10-251-25/+0
|
* Support urlencoded POSTAshish Gupta2017-10-251-3/+14
|
* Disable int3Ashish Gupta2017-10-251-1/+1
|
* Move sys_uptime() inside kolibrios dirAshish Gupta2017-10-251-14/+0
|
* Release nightly for KolibriOS.Ashish Gupta2017-10-252-1/+40
| | | | Check board.kolibrios.org forum thread for Netsurf for more details.
* Clean up debug board logging and other crapAshish Gupta2017-10-252-18/+2
|
* Do multiple FETCH_DATA callbacks from http fetcher instead of just one large ↵Ashish Gupta2017-10-251-8/+27
| | | | callback
* Tidy up some things.Ashish Gupta2017-10-251-13/+16
|
* Fix description for FETCH_HEADERAshish Gupta2017-10-252-22/+6
| | | | Remove redundant FETCH_XXX description from the curl fetcher.
* Add http kolibrios fetcherAshish Gupta2017-10-252-0/+350
|
* Properly initialize heap to avoid malloc failuresAshish Gupta2017-10-251-2/+0
|
* Get logging working.Ashish Gupta2017-10-252-1/+7
|
* Move port for kolibrios ahead.Ashish Gupta2017-10-252-4/+21
| | | | Look at diff from master and reconcile.
* Step 2 : Abuse _TARGET_IS_KOLIBRIOS and build with make TARGET=kolibriosAshish Gupta2017-10-252-0/+10
|
* Squash remaining GCC7 -Wimplicit-fallthrough warnings.Michael Drake2017-10-231-3/+1
|
* Duktape: Make declarations match definitions for inline functions.Michael Drake2017-10-211-4/+4
|
* Duktape: Make declarations match definitions for fastint-enabled functions.Michael Drake2017-10-211-2/+2
| | | | Restore ff20edbfbe35ce2be631456ffbe8ae6ca9fd05f5 for 2.2.0 import.
* Duktape: Make declaration match definition for duk_refzero_check_fast()Michael Drake2017-10-211-1/+1
| | | | Restore 9a8577feadd13d0634f773953096a0ec3e7cb1eb for 2.2.0 import.
* Duktape: Make declarations match definitions for duk_raw_read_xxx_beMichael Drake2017-10-211-6/+6
| | | | Restore 6d63f7959af64a45b0643d0610fcbdb0c07bfbc4 for 2.2.0 import.
* Duktape: Prevent clang static analysis.Michael Drake2017-10-211-0/+3
| | | | Restore 336326af3aab93f31474fa6de28782457ae4a1c0 for 2.2.0 import.
* Duktape: Update to 2.2.0 release.Michael Drake2017-10-213-12439/+14327
|
* CSS: Wrappers for computed style getters that return unsupported values.Michael Drake2017-10-202-3/+73
| | | | We don't yet handle the Flexbox-related values for certain properties.
* CSS hints: Ensure length and unit are initialised for vertical-align.Michael Drake2017-10-131-0/+2
|
* fix image cache format specifiers signednessVincent Sanders2017-09-111-6/+9
|
* rationalise history icon bitmap handling to ensure correct lifetimeVincent Sanders2017-09-102-57/+0
|
* fix time_t loggingVincent Sanders2017-09-081-1/+1
|
* Hopefully quash warning about time_t formatting on openbsdDaniel Silverstone2017-09-081-1/+1
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-072-7/+7
|
* update fetch debug logging to use catagoryVincent Sanders2017-09-061-40/+40
|
* add low level cache category and use itVincent Sanders2017-09-061-76/+69
|
* update bindings with logging changesVincent Sanders2017-09-066-18/+23
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-0619-336/+483
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* use nslog library for logging if available.Vincent Sanders2017-09-031-1/+3
|
* Errorcodes: Add SPRITE_ERROR and use it in sprite content handler.Michael Drake2017-08-301-1/+1
|
* Sprite content handler: Ensure we broadcast error on librosprite error.Michael Drake2017-08-291-0/+1
|
* Sprite content handler: Fix leaked rosprite_mem_context on rosprite_load error.Michael Drake2017-08-291-4/+11
|
* RSVG content handler: Remove unused assignement.Michael Drake2017-08-281-1/+0
|