From: <die...@us...> - 2012-03-19 10:15:48
|
Revision: 3826 http://openutils.svn.sourceforge.net/openutils/?rev=3826&view=rev Author: diego_schivo Date: 2012-03-19 10:15:38 +0000 (Mon, 19 Mar 2012) Log Message: ----------- web.xml: ActionResolver.Packages Modified Paths: -------------- magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml Modified: magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml =================================================================== --- magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml 2012-03-19 09:41:41 UTC (rev 3825) +++ magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml 2012-03-19 10:15:38 UTC (rev 3826) @@ -10,7 +10,7 @@ <filter-class>info.magnolia.cms.filters.MgnlMainFilter</filter-class> <init-param> <param-name>ActionResolver.Packages</param-name> - <param-value>net.sourceforge.openutils.mgnlstripes.samples</param-value> + <param-value>it.openutils.magnoliastripes.samples</param-value> </init-param> <init-param> <param-name>ActionResolver.Class</param-name> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <die...@us...> - 2012-03-20 16:14:06
|
Revision: 3845 http://openutils.svn.sourceforge.net/openutils/?rev=3845&view=rev Author: diego_schivo Date: 2012-03-20 16:14:00 +0000 (Tue, 20 Mar 2012) Log Message: ----------- web.xml: MgnlStrutsServlet Modified Paths: -------------- magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml Modified: magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml =================================================================== --- magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml 2012-03-20 16:13:42 UTC (rev 3844) +++ magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml 2012-03-20 16:14:00 UTC (rev 3845) @@ -38,6 +38,27 @@ <servlet-name>StripesDispatcher</servlet-name> <url-pattern>*.action</url-pattern> </servlet-mapping> + <servlet> + <servlet-name>action</servlet-name> + <servlet-class>it.openutils.mgnlstruts11.render.MgnlStrutsServlet</servlet-class> + <init-param> + <param-name>debug</param-name> + <param-value>4</param-value> + </init-param> + <init-param> + <param-name>config</param-name> + <param-value>/WEB-INF/struts-config.xml</param-value> + </init-param> + <init-param> + <param-name>detail</param-name> + <param-value>1</param-value> + </init-param> + <load-on-startup>2</load-on-startup> + </servlet> + <servlet-mapping> + <servlet-name>action</servlet-name> + <url-pattern>/do/*</url-pattern> + </servlet-mapping> <listener> <listener-class>info.magnolia.cms.servlets.MgnlServletContextListener</listener-class> </listener> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fg...@us...> - 2013-12-08 11:43:32
|
Revision: 4460 http://openutils.svn.sourceforge.net/openutils/?rev=4460&view=rev Author: fgiust Date: 2013-12-08 11:43:27 +0000 (Sun, 08 Dec 2013) Log Message: ----------- webapp 3.0 xsd + disable url rewriting Modified Paths: -------------- magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml Modified: magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml =================================================================== --- magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml 2013-12-08 08:27:42 UTC (rev 4459) +++ magnoliamodules/trunk/magnolia-test-webapp/src/main/webapp/WEB-INF/web.xml 2013-12-08 11:43:27 UTC (rev 4460) @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> -<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_5.xsd" version="2.5"> +<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/javaee + http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> <description>Magnolia</description> <display-name>magnolia</display-name> <distributable /> @@ -68,4 +69,7 @@ <page-encoding>UTF-8</page-encoding> </jsp-property-group> </jsp-config> + <session-config> + <tracking-mode>COOKIE</tracking-mode> + </session-config> </web-app> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |