You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2005/03/24 11:47:13 UTC

cvs commit: incubator-myfaces/webapps/wap/web/WEB-INF/classes .cvsignore

matzew      2005/03/24 02:47:13

  Added:       webapps/wap/WEB-INF web.xml
               webapps/wap/web/WEB-INF/classes .cvsignore
  Log:
  web apps
  
  Revision  Changes    Path
  1.1                  incubator-myfaces/webapps/wap/WEB-INF/web.xml
  
  Index: web.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <!--
   * Copyright 2004 The Apache Software Foundation.
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *      http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
  -->
  
  <!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>
  
  
      <context-param>
          <param-name>javax.faces.CONFIG_FILES</param-name>
          <param-value>
              /WEB-INF/wap-faces-config.xml
          </param-value>
          <description>
              Comma separated list of URIs of (additional) faces config files.
              (e.g. /WEB-INF/my-config.xml)
              See JSF 1.0 PRD2, 10.3.2
          </description>
      </context-param>
  
      <context-param>
          <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
          <param-value>server</param-value>
          <description>
              State saving method: "client" or "server" (= default)
              See JSF Specification 2.5.2
          </description>
      </context-param>
      <!-- Listener, that does all the startup work (configuration, init). -->
      <listener>
          <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
      </listener>
  
  
      <!-- Faces Servlet -->
      <servlet>
          <servlet-name>Faces Servlet</servlet-name>
          <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
          <load-on-startup>1</load-on-startup>
      </servlet>
  
  
      <!-- Faces Servlet Mapping -->
  
      <servlet-mapping>
          <servlet-name>Faces Servlet</servlet-name>
          <url-pattern>*.jsf</url-pattern>
      </servlet-mapping>
  
  
  
  </web-app>
  
  
  
  1.1                  incubator-myfaces/webapps/wap/web/WEB-INF/classes/.cvsignore
  
  Index: .cvsignore
  ===================================================================
  *.class