温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:科信客户关系管理系统源码
当前文件路径:KeXinCrm/fckeditor/fcktemplates.xml

1<?xml version="1.0" encoding="utf-8" ?> 2
<!-- 3
* FCKeditor - The text editor for Internet - http://www.fckeditor.net 4
* Copyright (C) 2003-2007 Frederico Caldeira Knabben 5
* 6
* == BEGIN LICENSE == 7
* 8
* Licensed under the terms of any of the following licenses at your 9
* choice: 10
* 11
* - GNU General Public License Version 2 or later (the "GPL") 12
* http://www.gnu.org/licenses/gpl.html 13
* 14
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 15
* http://www.gnu.org/licenses/lgpl.html 16
* 17
* - Mozilla Public License Version 1.1 or later (the "MPL") 18
* http://www.mozilla.org/MPL/MPL-1.1.html 19
* 20
* == END LICENSE == 21
* 22
* File Name: fcktemplates.xml 23
* This is the sample templates definitions file. It makes the "templates" 24
* command completely customizable. 25
* See FCKConfig.TemplatesXmlPath in the configuration file. 26
* 27
* File Authors: 28
* Frederico Caldeira Knabben (www.fckeditor.net) 29
--> 30
<Templates imagesBasePath="fck_template/images/"> 31
<Template title="Image and Title" image="template1.gif"> 32
<Description>One main image with a title and text that surround the image.</Description> 33
<Html> 34
<![CDATA[ 35
<img style="MARGIN-RIGHT: 10px" height="100" alt="" width="100" align="left"/> 36
<h3>Type the title here</h3> 37
Type the text here 38
]]> 39
</Html> 40
</Template> 41
<Template title="Strange Template" image="template2.gif"> 42
<Description>A template that defines two colums, each one with a title, and some text.</Description> 43
<Html> 44
<![CDATA[ 45
<table cellspacing="0" cellpadding="0" width="100%" border="0"> 46
<tbody> 47
<tr> 48
<td width="50%"> 49
<h3>Title 1</h3> 50
</td> 51
<td> </td> 52
<td width="50%"> 53
<h3>Title 2</h3> 54
</td> 55
</tr> 56
<tr> 57
<td>Text 1</td> 58
<td> </td> 59
<td>Text 2</td> 60
</tr> 61
</tbody> 62
</table> 63
More text goes here. 64
]]> 65
</Html> 66
</Template> 67
<Template title="Text and Table" image="template3.gif"> 68
<Description>A title with some text and a table.</Description> 69
<Html> 70
<![CDATA[ 71
<table align="left" width="80%" border="0" cellspacing="0" cellpadding="0"><tr><td> 72
<h3>Title goes here</h3> 73
<p> 74
<table style="FLOAT: right" cellspacing="0" cellpadding="0" width="150" border="1"> 75
<tbody> 76
<tr> 77
<td align="center" colspan="3"><strong>Table title</strong></td> 78
</tr> 79
<tr> 80
<td> </td> 81
<td> </td> 82
<td> </td> 83
</tr> 84
<tr> 85
<td> </td> 86
<td> </td> 87
<td> </td> 88
</tr> 89
<tr> 90
<td> </td> 91
<td> </td> 92
<td> </td> 93
</tr> 94
<tr> 95
<td> </td> 96
<td> </td> 97
<td> </td> 98
</tr> 99
</tbody> 100
</table> 101
Type the text here</p> 102
</td></tr></table> 103
]]> 104
</Html> 105
</Template> 106
</Templates> 107


