clockwerk-guacamole – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 eva 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Guacamole - Clientless Remote Desktop
4 Copyright (C) 2010 Michael Jumper
5  
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU Affero General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10  
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU Affero General Public License for more details.
15  
16 You should have received a copy of the GNU Affero General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 -->
19 <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
20  
21 <!-- Basic config -->
22 <welcome-file-list>
23 <welcome-file>index.xhtml</welcome-file>
24 </welcome-file-list>
25 <session-config>
26 <session-timeout>
27 30
28 </session-timeout>
29 </session-config>
30  
31 <!-- Automatically detect and load WebSocket support -->
32 <listener>
33 <listener-class>net.sourceforge.guacamole.net.basic.WebSocketSupportLoader</listener-class>
34 </listener>
35  
36 <!-- Basic Login Servlet -->
37 <servlet>
38 <description>Login servlet.</description>
39 <servlet-name>Login</servlet-name>
40 <servlet-class>net.sourceforge.guacamole.net.basic.BasicLogin</servlet-class>
41 </servlet>
42 <servlet-mapping>
43 <servlet-name>Login</servlet-name>
44 <url-pattern>/login</url-pattern>
45 </servlet-mapping>
46  
47 <!-- Basic Logout Servlet -->
48 <servlet>
49 <description>Logout servlet.</description>
50 <servlet-name>Logout</servlet-name>
51 <servlet-class>net.sourceforge.guacamole.net.basic.BasicLogout</servlet-class>
52 </servlet>
53 <servlet-mapping>
54 <servlet-name>Logout</servlet-name>
55 <url-pattern>/logout</url-pattern>
56 </servlet-mapping>
57  
58 <!-- Configuration List Servlet -->
59 <servlet>
60 <description>Configuration list servlet.</description>
61 <servlet-name>Configs</servlet-name>
62 <servlet-class>net.sourceforge.guacamole.net.basic.ConfigurationList</servlet-class>
63 </servlet>
64 <servlet-mapping>
65 <servlet-name>Configs</servlet-name>
66 <url-pattern>/configs</url-pattern>
67 </servlet-mapping>
68  
69 <!-- Guacamole Tunnel Servlet -->
70 <servlet>
71 <description>Tunnel servlet.</description>
72 <servlet-name>Tunnel</servlet-name>
73 <servlet-class>net.sourceforge.guacamole.net.basic.BasicGuacamoleTunnelServlet</servlet-class>
74 </servlet>
75 <servlet-mapping>
76 <servlet-name>Tunnel</servlet-name>
77 <url-pattern>/tunnel</url-pattern>
78 </servlet-mapping>
79  
80 </web-app>