[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:28:45 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0d67978aeea469deaffb67ea5491442e041e9373
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 1 20:09:01 2002 +0000

    	Tweaked WebCore cache settings. The WebCore cache will now grow
    	to 1 MB (was 512k). The maximum cacheable item is 16k instead of 40k.
    
            * khtml/misc/loader.cpp
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1717 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 55a9af8..25ed094 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-08-01  Ken Kocienda  <kocienda at apple.com>
+
+	Tweaked WebCore cache settings. The WebCore cache will now grow
+	to 1 MB (was 512k). The maximum cacheable item is 16k instead of 40k.
+
+        * khtml/misc/loader.cpp
+
 === Alexander-15 ===
 
 2002-08-01  Maciej Stachowiak  <mjs at apple.com>
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 55a9af8..25ed094 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-08-01  Ken Kocienda  <kocienda at apple.com>
+
+	Tweaked WebCore cache settings. The WebCore cache will now grow
+	to 1 MB (was 512k). The maximum cacheable item is 16k instead of 40k.
+
+        * khtml/misc/loader.cpp
+
 === Alexander-15 ===
 
 2002-08-01  Maciej Stachowiak  <mjs at apple.com>
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 55a9af8..25ed094 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-08-01  Ken Kocienda  <kocienda at apple.com>
+
+	Tweaked WebCore cache settings. The WebCore cache will now grow
+	to 1 MB (was 512k). The maximum cacheable item is 16k instead of 40k.
+
+        * khtml/misc/loader.cpp
+
 === Alexander-15 ===
 
 2002-08-01  Maciej Stachowiak  <mjs at apple.com>
diff --git a/WebCore/khtml/misc/loader.cpp b/WebCore/khtml/misc/loader.cpp
index 73b5304..7cc8d05 100644
--- a/WebCore/khtml/misc/loader.cpp
+++ b/WebCore/khtml/misc/loader.cpp
@@ -31,9 +31,9 @@
 #include "loader.h"
 
 // up to which size is a picture for sure cacheable
-#define MAXCACHEABLE 40*1024
+#define MAXCACHEABLE 16*1024
 // default cache size
-#define DEFCACHESIZE 512*1024
+#define DEFCACHESIZE 1024*1024
 
 #include <qasyncio.h>
 #include <qasyncimageio.h>

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list