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 | <script type="text/javascript"> |
||
24 | dojo.require("dojo.widget.DatePicker"); |
||
25 | </script> |
||
26 | <div |
||
27 | <#if parameters.type?if_exists == "date"> |
||
28 | dojoType="dropdowndatepicker"<#rt/> |
||
29 | <#else> |
||
30 | dojoType="struts:StrutsTimePicker"<#rt/> |
||
31 | </#if> |
||
32 | <#if parameters.id?if_exists != ""> |
||
33 | id="${parameters.id?html}"<#rt/> |
||
34 | </#if> |
||
35 | <#if parameters.nameValue?if_exists != ""> |
||
36 | value="${parameters.nameValue?html}"<#rt/> |
||
37 | </#if> |
||
38 | <#if parameters.language?if_exists != ""> |
||
39 | lang="${parameters.language?html}"<#rt/> |
||
40 | </#if> |
||
41 | <#if parameters.name?if_exists != ""> |
||
42 | name="dojo.${parameters.name?html}"<#rt/> |
||
43 | inputName="${parameters.name?html}"<#rt/> |
||
44 | </#if> |
||
45 | <#if parameters.displayWeeks?if_exists != ""> |
||
46 | displayWeeks="${parameters.displayWeeks?html}"<#rt/> |
||
47 | </#if> |
||
48 | <#if parameters.adjustWeeks?exists> |
||
49 | adjustWeeks="${parameters.adjustWeeks?string?html}"<#rt/> |
||
50 | </#if> |
||
51 | <#if parameters.startDate?if_exists != ""> |
||
52 | startDate="${parameters.startDate?html}"<#rt/> |
||
53 | </#if> |
||
54 | <#if parameters.endDate?if_exists != ""> |
||
55 | endDate="${parameters.endDate?html}"<#rt/> |
||
56 | </#if> |
||
57 | <#if parameters.weekStartsOn?if_exists != ""> |
||
58 | weekStartsOn="${parameters.weekStartsOn?html}"<#rt/> |
||
59 | </#if> |
||
60 | <#if parameters.staticDisplay?exists> |
||
61 | staticDisplay="${parameters.staticDisplay?string?html}"<#rt/> |
||
62 | </#if> |
||
63 | <#if parameters.dayWidth?if_exists != ""> |
||
64 | dayWidth="${parameters.dayWidth?html}"<#rt/> |
||
65 | </#if> |
||
66 | <#if parameters.tabindex?if_exists != ""> |
||
67 | tabindex="${parameters.tabindex?html}"<#rt/> |
||
68 | </#if> |
||
69 | <#if parameters.cssClass?if_exists != ""> |
||
70 | class="${parameters.cssClass?html}"<#rt/> |
||
71 | </#if> |
||
72 | <#if parameters.cssStyle?if_exists != ""> |
||
73 | style="${parameters.cssStyle?html}"<#rt/> |
||
74 | </#if> |
||
75 | <#if parameters.iconPath?if_exists != ""> |
||
76 | iconURL="<@s.url value='${parameters.iconPath}' encode="false" includeParams='none'/>"<#rt/> |
||
77 | </#if> |
||
78 | <#if parameters.formatLength?if_exists != ""> |
||
79 | formatLength="${parameters.formatLength?html}"<#rt/> |
||
80 | </#if> |
||
81 | <#if parameters.displayFormat?if_exists != ""> |
||
82 | displayFormat="${parameters.displayFormat?html}"<#rt/> |
||
83 | </#if> |
||
84 | <#if parameters.toggleType?if_exists != ""> |
||
85 | containerToggle="${parameters.toggleType?html}"<#rt/> |
||
86 | </#if> |
||
87 | <#if parameters.toggleDuration?exists> |
||
88 | containerToggleDuration="${parameters.toggleDuration?string?html}"<#rt/> |
||
89 | </#if> |
||
90 | <#if parameters.templateCssPath?exists> |
||
91 | templateCssPath="<@s.url value='${parameters.templateCssPath}' encode="false" includeParams='none'/>" |
||
92 | </#if> |
||
93 | saveFormat="rfc"<#rt/> |
||
94 | <#include "/${parameters.templateDir}/simple/scripting-events.ftl" /> |
||
95 | ></div> |