2012-10-11 23:44:40 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-10-12 04:39:49 +08:00
|
|
|
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
|
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
|
|
|
id="WebApp_ID" version="2.5">
|
|
|
|
|
|
|
|
<display-name>BigBlueButton Polls</display-name>
|
|
|
|
<description>
|
|
|
|
This is version 1.0 of the web-polling BigBlueButton application.
|
|
|
|
It was written by Chad Pilkey (capilkey@gmail.com) in association
|
|
|
|
with the Seneca Center for Development of Open Technology (Seneca CDOT).
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<filter-name>UrlRewriteFilter</filter-name>
|
|
|
|
<filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>
|
|
|
|
</filter>
|
|
|
|
<filter-mapping>
|
|
|
|
<filter-name>UrlRewriteFilter</filter-name>
|
|
|
|
<url-pattern>/*</url-pattern>
|
|
|
|
<dispatcher>REQUEST</dispatcher>
|
|
|
|
<dispatcher>FORWARD</dispatcher>
|
|
|
|
</filter-mapping>
|
|
|
|
|
|
|
|
<welcome-file-list>
|
|
|
|
<welcome-file>polls.jsp</welcome-file>
|
|
|
|
</welcome-file-list>
|
|
|
|
</web-app>
|