Update of /cvsroot/mocklib/gwtmocklib/input/webroot/WEB-INF
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv23230/input/webroot/WEB-INF
Added Files:
README.txt web.xml
Log Message:
first commit of gwtmocklib module.
--- NEW FILE: web.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" 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_4.xsd">
<servlet>
<servlet-name>SchoolCalendarService</servlet-name>
<servlet-class>com.google.gwt.sample.dynatable.server.SchoolCalendarServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>SchoolCalendarService</servlet-name>
<url-pattern>/calendar</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsf</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
--- NEW FILE: README.txt ---
This directory is for the web.xml file, and/or faces-config.xml file, etc. etc. ie. all the
files that belong in WEB-INF belong here.
|