~ubuntu-branches/ubuntu/lucid/libstruts1.2-java/lucid

« back to all changes in this revision

Viewing changes to contrib/struts-faces/example2-webapp/src/web/loggedoff.jsp

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-04-24 12:14:23 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060424121423-naev53qigqgks0sa
Tags: 1.2.9-1
New upstream  release Fixes  three security  problems: CVE-2006-1546,
CVE-2006-1547,  CVE-2006-1548  (closes:  #360551),  thanks  to  Moritz
Muehlenhoff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
 
2
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
 
3
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
 
4
<%@ taglib prefix="s" uri="http://struts.apache.org/tags-faces" %>
 
5
<%@ taglib prefix="t" uri="/WEB-INF/struts-tiles.tld" %>
 
6
 
 
7
 
 
8
<!--
 
9
 
 
10
 Copyright 2002,2004 The Apache Software Foundation.
 
11
 
 
12
 Licensed under the Apache License, Version 2.0 (the "License");
 
13
 you may not use this file except in compliance with the License.
 
14
 You may obtain a copy of the License at
 
15
 
 
16
      http://www.apache.org/licenses/LICENSE-2.0
 
17
 
 
18
 Unless required by applicable law or agreed to in writing, software
 
19
 distributed under the License is distributed on an "AS IS" BASIS,
 
20
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
21
 See the License for the specific language governing permissions and
 
22
 limitations under the License.
 
23
 
 
24
-->
 
25
 
 
26
 
 
27
<h:form                id="loggedoff">
 
28
  <h:panelGrid    columns="1">
 
29
    <h:commandLink     id="register"
 
30
                   action="#{loggedOff.register}"
 
31
                immediate="true">
 
32
      <s:message      key="loggedoff.register"/>
 
33
    </h:commandLink>
 
34
    <h:commandLink     id="logon"
 
35
                   action="#{loggedOff.logon}"
 
36
                immediate="true">
 
37
      <s:message      key="loggedoff.logon"/>
 
38
    </h:commandLink>
 
39
  </h:panelGrid>
 
40
</h:form>