Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/7f8e453a18a75f3a4f129d4e743c5b861fbe77c5
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/7f8e453a18a75f3a4f129d4e743c5b861fbe77c5
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/7f8e453a18a75f3a4f129d4e743c5b861fbe77c5

The branch, master has been updated
       via  7f8e453a18a75f3a4f129d4e743c5b861fbe77c5 (commit)
       via  5074190c0172678b77039534b17eb765700774a1 (commit)
       via  cf73e369efbb0c8b7f715e5c0a77e00e4c6fc570 (commit)
      from  0c53ad0e67b7e643df676d03721ca5d0691f711e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=7f8e453a18a75f3a4f129d4e743c5b861fbe77c5
commit 7f8e453a18a75f3a4f129d4e743c5b861fbe77c5
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    fixup cocoa image handler for content API changes

diff --git a/frontends/cocoa/apple_image.m b/frontends/cocoa/apple_image.m
index 5c82a2b..0bbaabd 100644
--- a/frontends/cocoa/apple_image.m
+++ b/frontends/cocoa/apple_image.m
@@ -21,10 +21,12 @@
 #import "cocoa/apple_image.h"
 
 #include "utils/config.h"
-#include "content/content_protected.h"
+#include "utils/utils.h"
 #include "netsurf/bitmap.h"
 #include "netsurf/plotters.h"
-#include "utils/utils.h"
+#include "netsurf/content.h"
+#include "content/llcache.h"
+#include "content/content_protected.h"
 
 #import "cocoa/schedule.h"
 #import "cocoa/bitmap.h"
diff --git a/frontends/cocoa/bitmap.m b/frontends/cocoa/bitmap.m
index 3e37cdf..4a87e23 100644
--- a/frontends/cocoa/bitmap.m
+++ b/frontends/cocoa/bitmap.m
@@ -26,8 +26,8 @@
 #import "netsurf/browser_window.h"
 #import "netsurf/plotters.h"
 #import "netsurf/bitmap.h"
-#import "content/urldb.h"
 #import "netsurf/content.h"
+#import "content/urldb.h"
 
 #import "cocoa/plotter.h"
 #import "cocoa/bitmap.h"


commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=5074190c0172678b77039534b17eb765700774a1
commit 5074190c0172678b77039534b17eb765700774a1
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    haiku gcc does not support forward enum declarations

diff --git a/frontends/beos/bitmap.cpp b/frontends/beos/bitmap.cpp
index 1b73967..9d16d44 100644
--- a/frontends/beos/bitmap.cpp
+++ b/frontends/beos/bitmap.cpp
@@ -39,6 +39,7 @@
 extern "C" {
 #include "utils/log.h"
 #include "netsurf/plotters.h"
+#include "netsurf/content_type.h"
 #include "netsurf/browser_window.h"
 #include "netsurf/bitmap.h"
 #include "netsurf/content.h"


commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=cf73e369efbb0c8b7f715e5c0a77e00e4c6fc570
commit cf73e369efbb0c8b7f715e5c0a77e00e4c6fc570
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    fixup rsvg image handler for content API changes

diff --git a/content/handlers/image/rsvg.c b/content/handlers/image/rsvg.c
index 9842d45..ad8e3fa 100644
--- a/content/handlers/image/rsvg.c
+++ b/content/handlers/image/rsvg.c
@@ -41,10 +41,12 @@
 #include "utils/log.h"
 #include "utils/utils.h"
 #include "utils/messages.h"
-#include "content/content_protected.h"
 #include "netsurf/plotters.h"
-#include "desktop/gui_internal.h"
 #include "netsurf/bitmap.h"
+#include "netsurf/content.h"
+#include "content/llcache.h"
+#include "content/content_protected.h"
+#include "desktop/gui_internal.h"
 
 #include "rsvg.h"
 


-----------------------------------------------------------------------

Summary of changes:
 content/handlers/image/rsvg.c |    6 ++++--
 frontends/beos/bitmap.cpp     |    1 +
 frontends/cocoa/apple_image.m |    6 ++++--
 frontends/cocoa/bitmap.m      |    2 +-
 4 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/content/handlers/image/rsvg.c b/content/handlers/image/rsvg.c
index 9842d45..ad8e3fa 100644
--- a/content/handlers/image/rsvg.c
+++ b/content/handlers/image/rsvg.c
@@ -41,10 +41,12 @@
 #include "utils/log.h"
 #include "utils/utils.h"
 #include "utils/messages.h"
-#include "content/content_protected.h"
 #include "netsurf/plotters.h"
-#include "desktop/gui_internal.h"
 #include "netsurf/bitmap.h"
+#include "netsurf/content.h"
+#include "content/llcache.h"
+#include "content/content_protected.h"
+#include "desktop/gui_internal.h"
 
 #include "rsvg.h"
 
diff --git a/frontends/beos/bitmap.cpp b/frontends/beos/bitmap.cpp
index 1b73967..9d16d44 100644
--- a/frontends/beos/bitmap.cpp
+++ b/frontends/beos/bitmap.cpp
@@ -39,6 +39,7 @@
 extern "C" {
 #include "utils/log.h"
 #include "netsurf/plotters.h"
+#include "netsurf/content_type.h"
 #include "netsurf/browser_window.h"
 #include "netsurf/bitmap.h"
 #include "netsurf/content.h"
diff --git a/frontends/cocoa/apple_image.m b/frontends/cocoa/apple_image.m
index 5c82a2b..0bbaabd 100644
--- a/frontends/cocoa/apple_image.m
+++ b/frontends/cocoa/apple_image.m
@@ -21,10 +21,12 @@
 #import "cocoa/apple_image.h"
 
 #include "utils/config.h"
-#include "content/content_protected.h"
+#include "utils/utils.h"
 #include "netsurf/bitmap.h"
 #include "netsurf/plotters.h"
-#include "utils/utils.h"
+#include "netsurf/content.h"
+#include "content/llcache.h"
+#include "content/content_protected.h"
 
 #import "cocoa/schedule.h"
 #import "cocoa/bitmap.h"
diff --git a/frontends/cocoa/bitmap.m b/frontends/cocoa/bitmap.m
index 3e37cdf..4a87e23 100644
--- a/frontends/cocoa/bitmap.m
+++ b/frontends/cocoa/bitmap.m
@@ -26,8 +26,8 @@
 #import "netsurf/browser_window.h"
 #import "netsurf/plotters.h"
 #import "netsurf/bitmap.h"
-#import "content/urldb.h"
 #import "netsurf/content.h"
+#import "content/urldb.h"
 
 #import "cocoa/plotter.h"
 #import "cocoa/bitmap.h"


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to