You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2015/04/28 08:38:42 UTC

wicket git commit: WICKET-5894 Support *.woff2 webfonts in SecurePackageResourceGuard as well

Repository: wicket
Updated Branches:
  refs/heads/wicket-6.x 945d9600a -> e85b389a1


WICKET-5894 Support *.woff2 webfonts in SecurePackageResourceGuard as well


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/e85b389a
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/e85b389a
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/e85b389a

Branch: refs/heads/wicket-6.x
Commit: e85b389a16a6fd803d29c04e2f18b0e20ec3e746
Parents: 945d960
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Tue Apr 28 09:38:05 2015 +0300
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Tue Apr 28 09:38:32 2015 +0300

----------------------------------------------------------------------
 .../org/apache/wicket/markup/html/SecurePackageResourceGuard.java   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/e85b389a/wicket-core/src/main/java/org/apache/wicket/markup/html/SecurePackageResourceGuard.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/SecurePackageResourceGuard.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/SecurePackageResourceGuard.java
index 03cf606..11469c3 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/SecurePackageResourceGuard.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/SecurePackageResourceGuard.java
@@ -126,6 +126,7 @@ public class SecurePackageResourceGuard extends PackageResourceGuard
 		addPattern("+*.eot");
 		addPattern("+*.ttf");
 		addPattern("+*.woff");
+		addPattern("+*.woff2");
 
 	}