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
<#include "/${parameters.templateDir}/${parameters.theme}/controlheader.ftl" />
24
 
25
<textarea<#rt/>
26
 dojoType="Editor2"
27
<#if parameters.editorControls?exists>
28
 items="${parameters.editorControls?html}"<#rt/>
29
<#else>
30
 items="linkGroup;|;textGroup;|;justifyGroup;|;listGroup;|;indentGroup;|;colorGroup"
31
</#if>
32
 name="${parameters.name?default("")?html}"<#rt/>
33
 cols="${parameters.cols?default("")?html}"<#rt/>
34
 rows="${parameters.rows?default("")?html}"<#rt/>
35
<#if parameters.wrap?exists>
36
 wrap="${parameters.wrap?html}"<#rt/>
37
</#if>
38
<#if parameters.disabled?default(false)>
39
 disabled="disabled"<#rt/>
40
</#if>
41
<#if parameters.readonly?default(false)>
42
 readonly="readonly"<#rt/>
43
</#if>
44
<#if parameters.tabindex?exists>
45
 tabindex="${parameters.tabindex?html}"<#rt/>
46
</#if>
47
<#if parameters.id?exists>
48
 id="${parameters.id?html}"<#rt/>
49
</#if>
50
<#if parameters.cssClass?exists>
51
 class="${parameters.cssClass?html}"<#rt/>
52
</#if>
53
<#if parameters.cssStyle?exists>
54
 style="${parameters.cssStyle?html}"<#rt/>
55
</#if>
56
<#if parameters.title?exists>
57
 title="${parameters.title?html}"<#rt/>
58
</#if>
59
<#include "/${parameters.templateDir}/simple/scripting-events.ftl" />
60
><#rt/>
61
<#if parameters.nameValue?exists>
62
<@s.property value="parameters.nameValue"/><#t/>
63
</#if>
64
</textarea>
65
 
66
<#--include "/${parameters.templateDir}/xhtml/controlfooter.ftl" /-->
67
<#include "/${parameters.templateDir}/${themeProperties.parent}/controlfooter.ftl" />