Blame view

mobile/source/ext/ckeditor/fckpackager.xml 8.55 KB
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
  <?xml version="1.0" encoding="utf-8" ?>
  <Package>
  	<!--
  		Header: (Optional) Defines a text header to the added at the top of the
  		compressed file. It usually contails license or copyright information.
  		
  		All files defined in this file will have the same header.
  	-->
  	<Header><![CDATA[/*
   * FCKeditor - The text editor for internet
   * Copyright (C) 2003-2006 Frederico Caldeira Knabben
   *
   * Licensed under the terms of the GNU Lesser General Public License:
   * 		http://www.opensource.org/licenses/lgpl-license.php
   */
  ]]></Header>
  
  	<!--
  		Constants: holds a list of constants (variable names) that will be
  		translated in the code to their values.
  		
  		Attributes:
  			- removeDeclaration: (true/false) (optional=true) all constant
  			  variable declarations will be removed from the code.
  	-->
  	<Constants removeDeclaration="false">
  		<Constant name="FCK_STATUS_NOTLOADED" value="0" />
  		<Constant name="FCK_STATUS_ACTIVE" value="1" />
  		<Constant name="FCK_STATUS_COMPLETE" value="2" />
  		<Constant name="FCK_TRISTATE_OFF" value="0" />
  		<Constant name="FCK_TRISTATE_ON" value="1" />
  		<Constant name="FCK_TRISTATE_DISABLED" value="-1" />
  		<Constant name="FCK_UNKNOWN" value="-9" />
  		<Constant name="FCK_TOOLBARITEM_ONLYICON" value="0" />
  		<Constant name="FCK_TOOLBARITEM_ONLYTEXT" value="1" />
  		<Constant name="FCK_TOOLBARITEM_ICONTEXT" value="2" />
  		<Constant name="FCK_EDITMODE_WYSIWYG" value="0" />
  		<Constant name="FCK_EDITMODE_SOURCE" value="1" />
  	</Constants>
  
  	<!--
  		PackageFile: One or many PackageFile elements can be defined. Each one
  		will generate a compressed JavaScript file.
  		
  		Attributes:
  			- path: (string) the path of the file to be generated.
  			- compactJavascript: (true/false) (optional=true) indicates that the
  			  files must be compressed.
  			- renameGlobals: (optional=false) indicates that all variables
  			  declared in the global scope (public variables) will also be renamed.
  	-->
  	<PackageFile path="ckeditor_basic.js" compactJavascript="true" renameGlobals="false">
  		<!--
  			The PackageFile element accepts one or many File elements, each one
  			pointing to the original JavaScript file to be loaded and
  			added to the target file.
  		-->
  		<File path="_source/core/ckeditor_base.js" />
  		<File path="_source/core/event.js" />
  		<File path="_source/core/editor_basic.js" />
  		<File path="_source/core/env.js" />
  		<File path="_source/core/ckeditor_basic.js" />
  
  	</PackageFile>
  
  	<PackageFile path="ckeditor.js">
  		<File path="_source/core/ckeditor_base.js" />
  					<File path="_source/core/event.js" />
  					<File path="_source/core/editor_basic.js" />
  					<File path="_source/core/env.js" />
  					<File path="_source/core/ckeditor_basic.js" />
  					<File path="_source/core/dom.js" />
  					<File path="_source/core/tools.js" />
  					<File path="_source/core/dtd.js" />
  					<File path="_source/core/dom/event.js" />
  					<File path="_source/core/dom/domobject.js" />
  					<File path="_source/core/dom/window.js" />
  					<File path="_source/core/dom/document.js" />
  					<File path="_source/core/dom/node.js" />
  					<File path="_source/core/dom/nodelist.js" />
  					<File path="_source/core/dom/element.js" />
  					<File path="_source/core/command.js" />
  					<File path="_source/core/config.js" />
  					<File path="_source/core/focusmanager.js" />
  					<File path="_source/core/lang.js" />
  					<File path="_source/core/scriptloader.js" />
  					<File path="_source/core/resourcemanager.js" />
  					<File path="_source/core/plugins.js" />
  					<File path="_source/core/skins.js" />
  					<File path="_source/core/themes.js" />
  					<File path="_source/core/ui.js" />
  					<File path="_source/core/editor.js" />
  					<File path="_source/core/htmlparser.js" />
  					<File path="_source/core/htmlparser/comment.js" />
  					<File path="_source/core/htmlparser/text.js" />
  					<File path="_source/core/htmlparser/cdata.js" />
  					<File path="_source/core/htmlparser/fragment.js" />
  					<File path="_source/core/htmlparser/element.js" />
  					<File path="_source/core/htmlparser/filter.js" />
  					<File path="_source/core/htmlparser/basicwriter.js" />
  					<File path="_source/core/ckeditor.js" />
  					<File path="_source/core/dom/comment.js" />
  					<File path="_source/core/dom/elementpath.js" />
  					<File path="_source/core/dom/text.js" />
  					<File path="_source/core/dom/documentfragment.js" />
  					<File path="_source/core/dom/walker.js" />
  					<File path="_source/core/dom/range.js" />
  					<File path="_source/core/dom/rangelist.js" />
  					<File path="_source/core/_bootstrap.js" />
  					<File path="_source/skins/kama/skin.js" />
  					<File path="_source/lang/en.js" />
  					<File path="_source/plugins/about/plugin.js" />
  					<File path="_source/plugins/a11yhelp/plugin.js" />
  					<File path="_source/plugins/basicstyles/plugin.js" />
  					<File path="_source/plugins/bidi/plugin.js" />
  					<File path="_source/plugins/blockquote/plugin.js" />
  					<File path="_source/plugins/button/plugin.js" />
  					<File path="_source/plugins/clipboard/plugin.js" />
  					<File path="_source/plugins/colorbutton/plugin.js" />
  					<File path="_source/plugins/colordialog/plugin.js" />
  					<File path="_source/plugins/contextmenu/plugin.js" />
  					<File path="_source/plugins/dialogadvtab/plugin.js" />
  					<File path="_source/plugins/div/plugin.js" />
  					<File path="_source/plugins/elementspath/plugin.js" />
  					<File path="_source/plugins/enterkey/plugin.js" />
  					<File path="_source/plugins/entities/plugin.js" />
  					<File path="_source/plugins/filebrowser/plugin.js" />
  					<File path="_source/plugins/find/plugin.js" />
  					<File path="_source/plugins/flash/plugin.js" />
  					<File path="_source/plugins/font/plugin.js" />
  					<File path="_source/plugins/format/plugin.js" />
  					<File path="_source/plugins/forms/plugin.js" />
  					<File path="_source/plugins/horizontalrule/plugin.js" />
  					<File path="_source/plugins/htmldataprocessor/plugin.js" />
  					<File path="_source/plugins/iframe/plugin.js" />
  					<File path="_source/plugins/image/plugin.js" />
  					<File path="_source/plugins/indent/plugin.js" />
  					<File path="_source/plugins/justify/plugin.js" />
  					<File path="_source/plugins/keystrokes/plugin.js" />
  					<File path="_source/plugins/link/plugin.js" />
  					<File path="_source/plugins/list/plugin.js" />
  					<File path="_source/plugins/liststyle/plugin.js" />
  					<File path="_source/plugins/maximize/plugin.js" />
  					<File path="_source/plugins/newpage/plugin.js" />
  					<File path="_source/plugins/pagebreak/plugin.js" />
  					<File path="_source/plugins/pastefromword/plugin.js" />
  					<File path="_source/plugins/pastetext/plugin.js" />
  					<File path="_source/plugins/popup/plugin.js" />
  					<File path="_source/plugins/preview/plugin.js" />
  					<File path="_source/plugins/print/plugin.js" />
  					<File path="_source/plugins/removeformat/plugin.js" />
  					<File path="_source/plugins/resize/plugin.js" />
  					<File path="_source/plugins/save/plugin.js" />
  					<File path="_source/plugins/scayt/plugin.js" />
  					<File path="_source/plugins/smiley/plugin.js" />
  					<File path="_source/plugins/showblocks/plugin.js" />
  					<File path="_source/plugins/showborders/plugin.js" />
  					<File path="_source/plugins/sourcearea/plugin.js" />
  					<File path="_source/plugins/stylescombo/plugin.js" />
  					<File path="_source/plugins/table/plugin.js" />
  					<File path="_source/plugins/tabletools/plugin.js" />
  					<File path="_source/plugins/specialchar/plugin.js" />
  					<File path="_source/plugins/tab/plugin.js" />
  					<File path="_source/plugins/templates/plugin.js" />
  					<File path="_source/plugins/toolbar/plugin.js" />
  					<File path="_source/plugins/undo/plugin.js" />
  					<File path="_source/plugins/wysiwygarea/plugin.js" />
  					<File path="_source/plugins/wsc/plugin.js" />
  					<File path="_source/plugins/dialog/plugin.js" />
  					<File path="_source/plugins/styles/plugin.js" />
  					<File path="_source/plugins/domiterator/plugin.js" />
  					<File path="_source/plugins/panelbutton/plugin.js" />
  					<File path="_source/plugins/floatpanel/plugin.js" />
  					<File path="_source/plugins/menu/plugin.js" />
  					<File path="_source/plugins/editingblock/plugin.js" />
  					<File path="_source/plugins/selection/plugin.js" />
  					<File path="_source/plugins/fakeobjects/plugin.js" />
  					<File path="_source/plugins/richcombo/plugin.js" />
  					<File path="_source/plugins/htmlwriter/plugin.js" />
  					<File path="_source/plugins/menubutton/plugin.js" />
  					<File path="_source/plugins/dialogui/plugin.js" />
  					<File path="_source/plugins/panel/plugin.js" />
  					<File path="_source/plugins/listblock/plugin.js" />
  					<File path="_source/themes/default/theme.js" />
  </PackageFile>
  
  </Package>