Author: toad
Date: 2008-02-09 13:42:04 +0000 (Sat, 09 Feb 2008)
New Revision: 17747

Modified:
   trunk/freenet/src/freenet/clients/http/filter/PNGFilter.java
Log:
Support APNG, explain why we don't support MNG.

Modified: trunk/freenet/src/freenet/clients/http/filter/PNGFilter.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/filter/PNGFilter.java        
2008-02-09 13:20:35 UTC (rev 17746)
+++ trunk/freenet/src/freenet/clients/http/filter/PNGFilter.java        
2008-02-09 13:42:04 UTC (rev 17747)
@@ -54,7 +54,14 @@
                "bKGD",
                "hIST",
                "pHYs",
-               "sPLT"
+               "sPLT",
+               // APNG chunks (Firefox 3 will support APNG)
+               "acTL",
+               "fcTL",
+               "fDAT"
+               // MNG isn't supported by Firefox and IE because of lack of 
market demand. Big surprise
+               // given nobody supports it! It is supported by Konqueror 
though. Complex standard,
+               // not worth it for the time being.
        };

        PNGFilter(boolean deleteText, boolean deleteTimestamp, boolean 
checkCRCs) {


Reply via email to