Added: incubator/cayenne/main/branches/STABLE-1-1/cayene-regression-profiler-1.1/src/main/webapp/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/incubator/cayenne/main/branches/STABLE-1-1/cayene-regression-profiler-1.1/src/main/webapp/WEB-INF/web.xml?rev=408116&view=auto ============================================================================== --- incubator/cayenne/main/branches/STABLE-1-1/cayene-regression-profiler-1.1/src/main/webapp/WEB-INF/web.xml (added) +++ incubator/cayenne/main/branches/STABLE-1-1/cayene-regression-profiler-1.1/src/main/webapp/WEB-INF/web.xml Sat May 20 18:19:45 2006 @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> +<web-app> + <display-name>Cayenne Regression Profiler</display-name> + + <filter> + <filter-name>CayenneFilter</filter-name> + <description>A filter that sets up Cayenne and intercepts requests that require a web session</description> + <filter-class>org.apache.cayenne.profile.servlet.ProfileFilter</filter-class> + </filter> + <filter-mapping> + <filter-name>CayenneFilter</filter-name> + <url-pattern>/profile/session/*</url-pattern> + </filter-mapping> + + <!-- listener is used for debugging the profile engine and should normally be turned off --> + <!-- + <listener> + <listener-class>org.apache.cayenne.profile.servlet.SessionTracker</listener-class> + </listener> + --> + + <servlet> + <servlet-name>ProfileServlet</servlet-name> + <description>Main profiler servlet that dispatches request to individual tests.</description> + <servlet-class>org.apache.cayenne.profile.servlet.ProfileServlet</servlet-class> + <load-on-startup>1</load-on-startup> + </servlet> + <servlet-mapping> + <servlet-name>ProfileServlet</servlet-name> + <url-pattern>/profile/*</url-pattern> + </servlet-mapping> +</web-app>
Added: incubator/cayenne/main/branches/STABLE-1-1/cayene-regression-profiler-1.1/src/main/webapp/index.htm URL: http://svn.apache.org/viewvc/incubator/cayenne/main/branches/STABLE-1-1/cayene-regression-profiler-1.1/src/main/webapp/index.htm?rev=408116&view=auto ============================================================================== --- incubator/cayenne/main/branches/STABLE-1-1/cayene-regression-profiler-1.1/src/main/webapp/index.htm (added) +++ incubator/cayenne/main/branches/STABLE-1-1/cayene-regression-profiler-1.1/src/main/webapp/index.htm Sat May 20 18:19:45 2006 @@ -0,0 +1,5 @@ +<html> +<body> +<h2>Nothing to see here</h2> +</body> +</html>
