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/06/29 22:09:56 UTC

svn commit: r552018 - in /beehive/trunk/netui/test/webapps/jsf/web/WEB-INF: web.xml.jsf-ri web.xml.myfaces

Author: crogers
Date: Fri Jun 29 13:09:55 2007
New Revision: 552018

URL: http://svn.apache.org/viewvc?view=rev&rev=552018
Log:
Cleaned up the web,xml files for the NetUI JSF test web app to fix the ordering/sequence of elements in the <context-param> elements.

Tests: NetUI JSF test web app for both MyFaces and RI.


Modified:
    beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.jsf-ri
    beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.myfaces

Modified: beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.jsf-ri
URL: http://svn.apache.org/viewvc/beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.jsf-ri?view=diff&rev=552018&r1=552017&r2=552018
==============================================================================
--- beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.jsf-ri (original)
+++ beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.jsf-ri Fri Jun 29 13:09:55 2007
@@ -13,19 +13,17 @@
 -->
 
     <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
@@ -33,6 +31,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>
 
   <!-- Test Recorder Filter -->

Modified: beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.myfaces
URL: http://svn.apache.org/viewvc/beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.myfaces?view=diff&rev=552018&r1=552017&r2=552018
==============================================================================
--- beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.myfaces (original)
+++ beehive/trunk/netui/test/webapps/jsf/web/WEB-INF/web.xml.myfaces Fri Jun 29 13:09:55 2007
@@ -6,17 +6,15 @@
     version="2.4">
 
     <context-param>
-        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
-        <param-value>server</param-value>
         <description>
             State saving method: "client" or "server" (= default)
             See JSF Specification 2.5.2
         </description>
+        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
+        <param-value>server</param-value>
     </context-param>
 
     <context-param>
-        <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
-        <param-value>true</param-value>
         <description>
             This parameter tells MyFaces if javascript code should be allowed in the
             rendered HTML output.
@@ -26,17 +24,19 @@
             will be added as url parameters.
             Default: "true"
         </description>
+        <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
+        <param-value>true</param-value>
     </context-param>
     
     <context-param>
-        <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
-        <param-value>true</param-value>
         <description>
             If true, rendered HTML code will be formatted, so that it is "human readable".
             i.e. additional line separators and whitespace will be written, that do not
             influence the HTML code.
             Default: "true"
         </description>
+        <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
+        <param-value>true</param-value>
     </context-param>
     
     <!-- Test Recorder Filter -->