~ubuntu-branches/ubuntu/quantal/ruby-vmc/quantal

« back to all changes in this revision

Viewing changes to debian/examples/springjava/hello_env/src/main/webapp/WEB-INF/web.xml

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2011-07-20 21:54:38 UTC
  • Revision ID: james.westby@ubuntu.com-20110720215438-45lgvjg7esj0ghcu
Tags: 0.3.10-0ubuntu9
* debian/bash_completion.d/vmc:
  - cherry pick bash completion script from upstream git
* debian/examples:
  - provide hello-world and a print of the environment variables examples
    in several framework/languages

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<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">
 
3
  <display-name>CFTestSpringJava</display-name>
 
4
  <welcome-file-list>
 
5
    <welcome-file>index.html</welcome-file>
 
6
    <welcome-file>index.htm</welcome-file>
 
7
    <welcome-file>index.jsp</welcome-file>
 
8
    <welcome-file>default.html</welcome-file>
 
9
    <welcome-file>default.htm</welcome-file>
 
10
    <welcome-file>default.jsp</welcome-file>
 
11
  </welcome-file-list>
 
12
  <servlet>
 
13
    <description>Cloud Foundry Spring Java Test</description>
 
14
    <display-name>CFTestSpringJava</display-name>
 
15
    <servlet-name>CFTestSpringJava</servlet-name>
 
16
    <servlet-class>com.ubuntu.cftest.CFTestSpringJava</servlet-class>
 
17
  </servlet>
 
18
  <servlet-mapping>
 
19
    <servlet-name>CFTestSpringJava</servlet-name>
 
20
    <url-pattern>/</url-pattern>
 
21
  </servlet-mapping>
 
22