You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2014/09/03 23:14:23 UTC

[3/6] git commit: Ensure that the UTF8ForTextAssets interceptor operates on the output of the CSSURLRewrite interceptor

Ensure that the UTF8ForTextAssets interceptor operates on the output of the CSSURLRewrite interceptor


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

Branch: refs/heads/master
Commit: fc5fe93073d752badad8e57031592937d99f0028
Parents: 6aebeea
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Wed Sep 3 14:04:19 2014 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Wed Sep 3 14:04:19 2014 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/tapestry5/modules/AssetsModule.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/fc5fe930/tapestry-core/src/main/java/org/apache/tapestry5/modules/AssetsModule.java
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/modules/AssetsModule.java b/tapestry-core/src/main/java/org/apache/tapestry5/modules/AssetsModule.java
index b070ff8..b41e36e 100644
--- a/tapestry-core/src/main/java/org/apache/tapestry5/modules/AssetsModule.java
+++ b/tapestry-core/src/main/java/org/apache/tapestry5/modules/AssetsModule.java
@@ -166,7 +166,7 @@ public class AssetsModule
      * @since 5.4
      */
     @Decorate(id = "TextUTF8", serviceInterface = StreamableResourceSource.class)
-    @Order("after:CSSURLRewrite")
+    @Order("before:CSSURLRewrite")
     public StreamableResourceSource setupTextAssetsAsUTF8(StreamableResourceSource delegate)
     {
         return new UTF8ForTextAssets(delegate);