2006/unicorn/WebContent/WEB-INF web.xml,1.1.2.7,1.1.2.8

Update of /sources/public/2006/unicorn/WebContent/WEB-INF
In directory hutz:/tmp/cvs-serv22119/WebContent/WEB-INF

Modified Files:
      Tag: dev2
	web.xml 
Log Message:
All initialization actions moved to Framework.java

Index: web.xml
===================================================================
RCS file: /sources/public/2006/unicorn/WebContent/WEB-INF/Attic/web.xml,v
retrieving revision 1.1.2.7
retrieving revision 1.1.2.8
diff -u -d -r1.1.2.7 -r1.1.2.8
--- web.xml	11 Aug 2009 16:05:44 -0000	1.1.2.7
+++ web.xml	12 Aug 2009 13:15:20 -0000	1.1.2.8
@@ -10,39 +10,29 @@
     <welcome-file>default.jsp</welcome-file>
   </welcome-file-list>
   <servlet>
-    <description>Unicorn Controller</description>
-    <display-name>Controller</display-name>
-    <servlet-name>Controller</servlet-name>
-    <servlet-class>org.w3c.unicorn.Controller</servlet-class>
+    <servlet-name>Init</servlet-name>
+    <servlet-class>org.w3c.unicorn.action.InitAction</servlet-class>
     <load-on-startup>1</load-on-startup>
   </servlet>
   <servlet>
-    <servlet-name>IndexAction</servlet-name>
+    <servlet-name>Index</servlet-name>
     <servlet-class>org.w3c.unicorn.action.IndexAction</servlet-class>
   </servlet>
   <servlet>
-    <servlet-name>ObserveAction</servlet-name>
+    <servlet-name>Observe</servlet-name>
     <servlet-class>org.w3c.unicorn.action.ObserveAction</servlet-class>
   </servlet>
-  <!--<servlet>
-    <servlet-name>Error404Action</servlet-name>
-    <servlet-class>org.w3c.unicorn.action.Error404Action</servlet-class>
-  </servlet>
-  <servlet-mapping>
-    <servlet-name>default</servlet-name>
-    <url-pattern>/resources/*</url-pattern>
-  </servlet-mapping>
-   <servlet-mapping>
-    <servlet-name>Controller</servlet-name>
-    <url-pattern>/*</url-pattern>
-  </servlet-mapping>  -->
   <servlet-mapping>
-    <servlet-name>IndexAction</servlet-name>
+    <servlet-name>Index</servlet-name>
     <url-pattern>/index.html</url-pattern>
-  </servlet-mapping> 
+  </servlet-mapping>
   <servlet-mapping>
-    <servlet-name>ObserveAction</servlet-name>
+    <servlet-name>Observe</servlet-name>
     <url-pattern>/observe</url-pattern>
-  </servlet-mapping> 
-  
+  </servlet-mapping>
+
+  <servlet-mapping>
+    <servlet-name>Init</servlet-name>
+    <url-pattern>/init</url-pattern>
+  </servlet-mapping>
 </web-app>
\ No newline at end of file

Received on Wednesday, 12 August 2009 13:15:34 UTC