summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix format specifiers signedness in atari settingsVincent Sanders2017-09-111-14/+14
|
* fix image cache format specifiers signednessVincent Sanders2017-09-111-6/+9
|
* fix warning due to undefined bitmap structureVincent Sanders2017-09-111-0/+1
|
* annotate error case fall through in switch to supress warningsVincent Sanders2017-09-113-15/+26
|
* remove test for removed APIVincent Sanders2017-09-111-22/+0
|
* rationalise history icon bitmap handling to ensure correct lifetimeVincent Sanders2017-09-107-151/+147
|
* Treeview: Add support for rendering search filter matches as-you-type.Michael Drake2017-09-101-1/+230
|
* Treeview: Split tree-style treeview rendering out into helper.Michael Drake2017-09-101-122/+150
|
* Treeview: Add node matching to search text modification callback.Michael Drake2017-09-101-3/+131
|
* Treeview: API: Allow treeview fields to be flagged searchable.Michael Drake2017-09-101-5/+6
|
* Treeview: Improve some code wrapping.Michael Drake2017-09-101-10/+9
|
* Treeview: Ensure window extents take account of search bar presence.Michael Drake2017-09-101-2/+9
|
* Treeview: Add keypress handling to the search bar.Michael Drake2017-09-101-1/+18
|
* Treeview: Handle mouse clicks on search bar.Michael Drake2017-09-101-0/+17
|
* Treeview: Update treeview mouse handling to offset for search bar presence.Michael Drake2017-09-101-5/+10
|
* Treeview: Add search bar rendering to redraw function.Michael Drake2017-09-101-0/+34
|
* Treeview: Create and destroy a textarea for search.Michael Drake2017-09-101-43/+123
|
* Treeview: Add search drag type to enumeration.Michael Drake2017-09-101-1/+2
|
* Treeview: API: Add searchable flag for treeview creation.Michael Drake2017-09-101-1/+2
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-1010-1/+54
|
* move history bitmap thumbnail into the page information structureVincent Sanders2017-09-104-17/+24
|
* Treeview: Split out textarea construction helper.Michael Drake2017-09-091-22/+44
|
* GTK: Corewindow: Fix modifier keys on mouse click.Michael Drake2017-09-091-3/+7
| | | | Modifiers were getting unset for the click (release) events.
* Fix up tests with nslog changesDaniel Silverstone2017-09-093-0/+8
|
* add some basic logging documentationVincent Sanders2017-09-092-0/+95
|
* Fix atari INFO macro name collisionVincent Sanders2017-09-081-0/+1
|
* Revert "Hopefully quash INFO confusion on Atari MINT platform"Vincent Sanders2017-09-082-5/+1
| | | | This reverts commit 9c93ed1bca859e5b5cb3c018be327fb91213c558.
* Sort out the logging so that -v etc do the right thingDaniel Silverstone2017-09-086-16/+96
|
* fix time_t loggingVincent Sanders2017-09-082-2/+2
|
* Fix up log call parametersVincent Sanders2017-09-081-2/+11
|
* Hopefully quash INFO confusion on Atari MINT platformDaniel Silverstone2017-09-082-1/+5
|
* Hopefully quash LOG compile errors in WindowsDaniel Silverstone2017-09-082-2/+3
|
* Hopefully quash LOG compile errors in BeOSDaniel Silverstone2017-09-081-4/+3
|
* Hopefully quash warning about time_t formatting on openbsdDaniel Silverstone2017-09-081-1/+1
|
* fix size+t formatting in loggingVincent Sanders2017-09-072-7/+14
|
* do not attempt to log when output is not enabledVincent Sanders2017-09-071-12/+13
|
* fixup junk comment closeVincent Sanders2017-09-071-1/+1
|
* update layout logging to use a catagoryVincent Sanders2017-09-073-114/+110
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-0722-71/+120
|
* update framebuffer toolkit logging to use a ctagoryVincent Sanders2017-09-074-26/+24
|
* revert semantic patch change to framebuffer font toolVincent Sanders2017-09-071-106/+92
|
* Update scheduler logging to use catagoryVincent Sanders2017-09-079-71/+71
|
* update plotter logging to use a catagoryVincent Sanders2017-09-064-50/+30
|
* update fetch debug logging to use catagoryVincent Sanders2017-09-063-40/+42
|
* add low level cache category and use itVincent Sanders2017-09-063-85/+75
|
* update bindings with logging changesVincent Sanders2017-09-066-18/+23
|
* Use coccinelle to change logging macro calls in c++Vincent Sanders2017-09-068-48/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.cpp');do spatch --c++ --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 coccinelle to change logging macro calls in c filesVincent Sanders2017-09-06215-2170/+3497
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-036-100/+193
|
* slightly amend how user config is includedVincent Sanders2017-08-302-4/+5
|