You are viewing a plain text version of this content. The canonical link for it is here.
Posted to tdk-dev@turbine.apache.org by jv...@apache.org on 2001/05/28 00:42:41 UTC

cvs commit: jakarta-turbine-tdk/src/share/sample web.xml

jvanzyl     01/05/27 15:42:41

  Added:       src/share web.xml
  Removed:     src/share/sample web.xml
  Log:
  - moving the web.xml out of the sample app directory because this
    will be shared by the sample application and external applications.
  
  Revision  Changes    Path
  1.1                  jakarta-turbine-tdk/src/share/web.xml
  
  Index: web.xml
  ===================================================================
  <?xml version="1.0" encoding="ISO-8859-1"?>
  
  <!DOCTYPE web-app
      PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
      "http://java.sun.com/j2ee/dtds/web-app_2.3.dtd">
  
  <web-app>
      <servlet>
          <servlet-name>
             @PROJECT@
          </servlet-name>
          <servlet-class>
              org.apache.turbine.Turbine
          </servlet-class>
  
          <init-param>
              <param-name>properties</param-name>
              <!-- This is relative to the docBase -->
              <param-value>
                  /WEB-INF/conf/TurbineResources.properties
              </param-value>
          </init-param>
      </servlet>
      <security-constraint>
          <web-resource-collection>
              <web-resource-name>templates</web-resource-name>
              <url-pattern>/templates/*</url-pattern>
          </web-resource-collection>
          <web-resource-collection>
              <web-resource-name>logs</web-resource-name>
              <url-pattern>/logs/*</url-pattern>
          </web-resource-collection>
          <auth-constraint>
              <role-name>admin</role-name>
          </auth-constraint>
      </security-constraint>
      <login-config>
          <auth-method>BASIC</auth-method>
          <realm-name>Templates</realm-name>
      </login-config>
  </web-app>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-tdk-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-tdk-dev-help@jakarta.apache.org