You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2013/02/28 14:11:23 UTC

svn commit: r1451190 - in /syncope/trunk: console/src/main/webapp/WEB-INF/web.xml core/src/main/webapp/WEB-INF/web.xml

Author: ilgrosso
Date: Thu Feb 28 13:11:22 2013
New Revision: 1451190

URL: http://svn.apache.org/r1451190
Log:
Minor formatting in web.xml's

Modified:
    syncope/trunk/console/src/main/webapp/WEB-INF/web.xml
    syncope/trunk/core/src/main/webapp/WEB-INF/web.xml

Modified: syncope/trunk/console/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/console/src/main/webapp/WEB-INF/web.xml?rev=1451190&r1=1451189&r2=1451190&view=diff
==============================================================================
--- syncope/trunk/console/src/main/webapp/WEB-INF/web.xml (original)
+++ syncope/trunk/console/src/main/webapp/WEB-INF/web.xml Thu Feb 28 13:11:22 2013
@@ -23,7 +23,7 @@ under the License.
                              http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
          version="2.5">
             
-  <display-name>Syncope console</display-name>
+  <display-name>Apache Syncope console</display-name>
   
   <context-param>
     <param-name>contextConfigLocation</param-name>

Modified: syncope/trunk/core/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/core/src/main/webapp/WEB-INF/web.xml?rev=1451190&r1=1451189&r2=1451190&view=diff
==============================================================================
--- syncope/trunk/core/src/main/webapp/WEB-INF/web.xml (original)
+++ syncope/trunk/core/src/main/webapp/WEB-INF/web.xml Thu Feb 28 13:11:22 2013
@@ -24,7 +24,7 @@ under the License.
                              http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
          version="2.5">
 
-  <display-name>Syncope</display-name>
+  <display-name>Apache Syncope core</display-name>
 
   <context-param>
     <param-name>contextConfigLocation</param-name>
@@ -34,19 +34,16 @@ under the License.
   <listener>
     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
   </listener>
+  
   <servlet>
     <servlet-name>CXFServlet</servlet-name>
-    <servlet-class>
-       org.apache.cxf.transport.servlet.CXFServlet
-    </servlet-class>
+    <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
     <load-on-startup>1</load-on-startup> 
   </servlet>
-
   <servlet-mapping>
     <servlet-name>CXFServlet</servlet-name>
     <url-pattern>/cxf/*</url-pattern>
   </servlet-mapping>
-  
 
   <servlet>
     <servlet-name>syncope-core-rest</servlet-name>
@@ -55,10 +52,8 @@ under the License.
       <param-name>contextConfigLocation</param-name>
       <param-value></param-value>
     </init-param>
-
     <load-on-startup>1</load-on-startup>
   </servlet>
-
   <servlet-mapping>
     <servlet-name>syncope-core-rest</servlet-name>
     <url-pattern>/rest/*</url-pattern>