Subversion Repositories Sigmater

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 Andrea 1
<#--
2
/*
3
 * $Id: pom.xml 560558 2007-07-28 15:47:10Z apetrelli $
4
 *
5
 * Licensed to the Apache Software Foundation (ASF) under one
6
 * or more contributor license agreements.  See the NOTICE file
7
 * distributed with this work for additional information
8
 * regarding copyright ownership.  The ASF licenses this file
9
 * to you under the Apache License, Version 2.0 (the
10
 * "License"); you may not use this file except in compliance
11
 * with the License.  You may obtain a copy of the License at
12
 *
13
 *  http://www.apache.org/licenses/LICENSE-2.0
14
 *
15
 * Unless required by applicable law or agreed to in writing,
16
 * software distributed under the License is distributed on an
17
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18
 * KIND, either express or implied.  See the License for the
19
 * specific language governing permissions and limitations
20
 * under the License.
21
 */
22
-->
23
<tr>
24
    <td colspan="2"><div <#rt/>
25
<#if parameters.align?exists>
26
    align="${parameters.align?html}"<#t/>
27
</#if>
28
><#t/>
29
<#if parameters.type?exists && parameters.type=="button">
30
  <input type="button" dojoType="struts:Bind" event="onclick"<#rt/>
31
  <#include "/${parameters.templateDir}/ajax/ajax-common.ftl"/>
32
  <#include "/${parameters.templateDir}/simple/scripting-events.ftl"/>
33
  <#include "/${parameters.templateDir}/simple/common-attributes.ftl" />
34
  <#if parameters.label?if_exists != "">
35
     value="${parameters.label?html}"<#rt/>
36
  </#if>
37
 />
38
<#else>
39
  <#if parameters.type?exists && parameters.type=="image">
40
    <input type="image" dojoType="struts:Bind" event="onclick"<#rt/>
41
    <#if parameters.label?if_exists != "">
42
     alt="${parameters.label?html}"<#rt/>
43
    </#if>
44
    <#if parameters.src?if_exists != "">
45
     src="${parameters.src?html}"<#rt/>
46
    </#if>
47
  <#else>
48
    <input type="submit" dojoType="struts:Bind" event="onclick"<#rt/>
49
  </#if>
50
    <#if parameters.nameValue?if_exists != "">
51
     value="${parameters.nameValue?html}"<#rt/>
52
    </#if>
53
    <#if parameters.value?if_exists != "">
54
     value="${parameters.value?html}"<#rt/>
55
    </#if>
56
    <#include "/${parameters.templateDir}/ajax/ajax-common.ftl"/>
57
    <#include "/${parameters.templateDir}/simple/scripting-events.ftl" />
58
    <#include "/${parameters.templateDir}/simple/common-attributes.ftl" />
59
  />
60
</#if>
61
 
62
</div><#t/>
63
<#include "/${parameters.templateDir}/xhtml/controlfooter.ftl" />