WebSurf/content
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
..
fetchers Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
handlers Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
Makefile Move javascript content handler as appropriate for updated source format 2016-06-07 16:01:04 +01:00
backing_store.h fix spelling of retrived 2016-11-21 00:07:13 +00:00
content.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
content.h Content API: Avoid content message copy in content user callback. 2017-08-26 16:38:18 +01:00
content_debug.h reduce content header interdependancy 2016-04-18 23:04:16 +01:00
content_factory.c reduce hlcache handle api usage in mimesniff 2017-03-19 22:29:23 +00:00
content_factory.h Update content to split public and internal API 2016-06-06 09:01:38 +01:00
content_protected.h Content API: Avoid content message copy in content user callback. 2017-08-26 16:38:18 +01:00
dirlist.c rework path to url mapping functions to convert from and to nsurl 2014-05-26 23:52:36 +01:00
dirlist.h Remove include of nsurl from corestrings.h 2015-02-26 16:58:41 +00:00
fetch.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
fetch.h remove unused fetch acessor 2017-01-31 22:56:45 +00:00
fetchers.h Move fetcher_fdset to fetch.h (and rename to fetch_fdset). Maybe not ideal but better 2016-06-27 21:09:39 +01:00
fs_backing_store.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
hlcache.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
hlcache.h reduce unecessary usage of content headers 2016-06-06 16:10:47 +01:00
llcache.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
llcache.h reduce unecessary usage of content headers 2016-06-06 16:10:47 +01:00
mimesniff.c mimimal mime sniffing test 2017-03-20 00:48:11 +00:00
mimesniff.h reduce hlcache handle api usage in mimesniff 2017-03-19 22:29:23 +00:00
no_backing_store.c remove constness from backing stores store method 2014-11-23 01:37:24 +00:00
urldb.c Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
urldb.h fix doc comment spelling mistake 2017-03-28 11:45:24 +01:00