Go to file
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
!NetSurf Layout: Implement CSS3 box-sizing property. 2017-04-27 16:47:38 +01:00
content Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
desktop Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
docs clean up whitespace and indentation 2017-08-30 23:10:07 +01:00
frontends Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
include/netsurf update RISC OS frontend to use core window for local history 2017-05-28 22:07:33 +01:00
render Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
resources Updated Italian translation from Samir 2017-06-28 23:44:01 +01:00
test Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
utils Use coccinelle to change logging macro calls in c files 2017-09-06 18:45:27 +01:00
.gitattributes add attributes file to stop .gitignore being exported 2013-04-19 21:27:45 +01:00
.gitignore rename default build output directory target 2017-01-05 23:02:03 +00:00
COPYING Clarify licensing arrangements 2007-08-09 15:32:39 +00:00
Makefile use nslog library for logging if available. 2017-09-03 23:40:32 +01:00
Makefile.config.example remove junk references to old javascript implementations 2016-09-19 22:02:51 +01:00
Makefile.defaults use nslog library for logging if available. 2017-09-03 23:40:32 +01:00
README Fix to point at current build documentaion. 2014-07-22 15:36:36 +01:00

README

--------------------------------------------------------------------------------
  NetSurf README
--------------------------------------------------------------------------------

  This document should help point you at various useful bits of information.


  Building NetSurf
==================
  
  Read the QUICK-START document in the Docs/ directory for instructions.


  Creating a new port
=====================

  Look at the existing front ends for example implementations.  The framebuffer
  front end is simplest and most self-contained.  Also, you can contact the
  developers for help:

      http://www.netsurf-browser.org/contact/

  Check out the developer documentation sources listed below too.


  Further documentation
=======================

  The Developer section of the web site has loads of info to get you started:

      http://www.netsurf-browser.org/developers/

  General documentation on how NetSurf's code works can be found on the
  development wiki:

      http://wiki.netsurf-browser.org/Documentation/

  The code style guide is here:

      http://www.netsurf-browser.org/developers/StyleGuide.pdf