You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ga...@apache.org on 2005/12/09 19:28:27 UTC

svn commit: r355563 - /incubator/roller/trunk/metadata/xdoclet/filter-mappings.xml

Author: gangolli
Date: Fri Dec  9 10:28:24 2005
New Revision: 355563

URL: http://svn.apache.org/viewcvs?rev=355563&view=rev
Log:
Order CharEncodingFilter before securityFilter

Modified:
    incubator/roller/trunk/metadata/xdoclet/filter-mappings.xml

Modified: incubator/roller/trunk/metadata/xdoclet/filter-mappings.xml
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/metadata/xdoclet/filter-mappings.xml?rev=355563&r1=355562&r2=355563&view=diff
==============================================================================
--- incubator/roller/trunk/metadata/xdoclet/filter-mappings.xml (original)
+++ incubator/roller/trunk/metadata/xdoclet/filter-mappings.xml Fri Dec  9 10:28:24 2005
@@ -17,18 +17,18 @@
 </filter-mapping>
 -->
 
-<!-- Acegi Security filters - controls secure access to different parts of Roller -->
+<!-- Ensures character encoding set to UTF-8 and JSTL and Struts locales are in sync.
+Note: Any filters preceding this one MUST not cause request parsing. -->
 <filter-mapping>
-    <filter-name>securityFilter</filter-name>
+    <filter-name>CharEncodingFilter</filter-name>
     <url-pattern>/*</url-pattern>
     <dispatcher>REQUEST</dispatcher>
     <dispatcher>FORWARD</dispatcher>
 </filter-mapping>
 
-<!-- Ensures character encoding set to UTF-8 and JSTL and Struts locales are in sync.
-     Note: Any filters preceding this one MUST not cause request parsing. -->
+<!-- Acegi Security filters - controls secure access to different parts of Roller -->
 <filter-mapping>
-    <filter-name>CharEncodingFilter</filter-name>
+    <filter-name>securityFilter</filter-name>
     <url-pattern>/*</url-pattern>
     <dispatcher>REQUEST</dispatcher>
     <dispatcher>FORWARD</dispatcher>