WebSurf/content/handlers/image
Vincent Sanders 75018632a9 Use coccinelle to change logging macro calls in c files
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);
2017-09-06 18:45:27 +01:00
..
Makefile move the CSS content handler 2016-05-26 11:18:41 +01:00
bmp.c BMP content handler: Convert to using content_broadcast_errorcode(). 2017-08-27 13:28:21 +01:00
bmp.h move image content handlers to accomodate core build changes 2016-05-23 23:32:16 +01:00
gif.c GIF content handler: Convert to using content_broadcast_errorcode(). 2017-08-27 13:28:21 +01:00
gif.h move image content handlers to accomodate core build changes 2016-05-23 23:32:16 +01:00
ico.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
ico.h move image content handlers to accomodate core build changes 2016-05-23 23:32:16 +01:00
image.c Update all core use of plotters to new API 2017-02-11 13:55:41 +00:00
image.h Update content to split public and internal API 2016-06-06 09:01:38 +01:00
image_cache.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
image_cache.h Update content to split public and internal API 2016-06-06 09:01:38 +01:00
jpeg.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
jpeg.h move image content handlers to accomodate core build changes 2016-05-23 23:32:16 +01:00
nssprite.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
nssprite.h move image content handlers to accomodate core build changes 2016-05-23 23:32:16 +01:00
png.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
png.h move image content handlers to accomodate core build changes 2016-05-23 23:32:16 +01:00
rsvg.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
rsvg.h move image content handlers to accomodate core build changes 2016-05-23 23:32:16 +01:00
svg.c SVG content handler: Convert to using content_broadcast_errorcode(). 2017-08-28 10:24:04 +01:00
svg.h move image content handlers to accomodate core build changes 2016-05-23 23:32:16 +01:00
video.c Allow include directories to be added by sub makefiles 2016-06-06 14:47:27 +01:00
video.h move image content handlers to accomodate core build changes 2016-05-23 23:32:16 +01:00