You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by cr...@apache.org on 2007/03/02 20:22:12 UTC

svn commit: r513897 - /beehive/trunk/samples/netui-jsf/web/WEB-INF/web.xml.jsf-ri

Author: crogers
Date: Fri Mar  2 11:22:11 2007
New Revision: 513897

URL: http://svn.apache.org/viewvc?view=rev&rev=513897
Log:
Fixed the sequence order of the elements in the <context-param> of the JSF RI version of the web.xml (BEEHIVE-1180).


Modified:
    beehive/trunk/samples/netui-jsf/web/WEB-INF/web.xml.jsf-ri

Modified: beehive/trunk/samples/netui-jsf/web/WEB-INF/web.xml.jsf-ri
URL: http://svn.apache.org/viewvc/beehive/trunk/samples/netui-jsf/web/WEB-INF/web.xml.jsf-ri?view=diff&rev=513897&r1=513896&r2=513897
==============================================================================
--- beehive/trunk/samples/netui-jsf/web/WEB-INF/web.xml.jsf-ri (original)
+++ beehive/trunk/samples/netui-jsf/web/WEB-INF/web.xml.jsf-ri Fri Mar  2 11:22:11 2007
@@ -27,19 +27,17 @@
     <display-name>Beehive NetUI JSF Samples Web Application</display-name>
 
     <context-param>
-        <param-name>com.sun.faces.validateXml</param-name>
-        <param-value>true</param-value>
         <description>
             Set this flag to true if you want the JavaServer Faces
             Reference Implementation to validate the XML in your
             faces-config.xml resources against the DTD.  Default
             value is false.
         </description>
+        <param-name>com.sun.faces.validateXml</param-name>
+        <param-value>true</param-value>
     </context-param>
 
     <context-param>
-        <param-name>com.sun.faces.verifyObjects</param-name>
-        <param-value>true</param-value>
         <description>
             Set this flag to true if you want the JavaServer Faces
             Reference Implementation to verify that all of the application
@@ -47,6 +45,8 @@
             renderers, and validators) can be successfully created.
             Default value is false.
         </description>
+        <param-name>com.sun.faces.verifyObjects</param-name>
+        <param-value>true</param-value>
     </context-param>
 
     <!-- Filter to perform Page Flow operations when JSPs are hit directly. -->