src/cm/media/js/ckeditor/ckeditor.pack
author gibus
Mon, 01 Oct 2012 10:14:08 +0200
changeset 467 47f54d0c46dd
parent 256 adccf7c023ef
permissions -rw-r--r--
Stupid IE counts extra element in array when ending by a comma.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
256
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
     1
/*
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
     2
 * CKPackager - Sample Package file
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
     3
 */
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
     4
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
     5
header :
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
     6
	'/*'																			+ '\n' +
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
     7
	'Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.'	+ '\n' +
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
     8
	'For licensing, see LICENSE.html or http://ckeditor.com/license'				+ '\n' +
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
     9
	'*/'																			+ '\n' +
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    10
	'\n',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    11
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    12
noCheck : false,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    13
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    14
constants :
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    15
	{
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    16
		'CKEDITOR.ELEMENT_MODE_NONE' : 0,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    17
		'CKEDITOR.ELEMENT_MODE_REPLACE' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    18
		'CKEDITOR.ELEMENT_MODE_APPENDTO' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    19
		'CKEDITOR.CTRL' : 1000,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    20
		'CKEDITOR.SHIFT' : 2000,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    21
		'CKEDITOR.ALT' : 4000,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    22
		'CKEDITOR.NODE_ELEMENT' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    23
		'CKEDITOR.NODE_DOCUMENT' : 9,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    24
		'CKEDITOR.NODE_TEXT' : 3,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    25
		'CKEDITOR.NODE_COMMENT' : 8,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    26
		'CKEDITOR.NODE_DOCUMENT_FRAGMENT' : 11,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    27
		'CKEDITOR.POSITION_IDENTICAL' : 0,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    28
		'CKEDITOR.POSITION_DISCONNECTED' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    29
		'CKEDITOR.POSITION_FOLLOWING' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    30
		'CKEDITOR.POSITION_PRECEDING' : 4,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    31
		'CKEDITOR.POSITION_IS_CONTAINED' : 8,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    32
		'CKEDITOR.POSITION_CONTAINS' : 16,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    33
		'CKEDITOR.ENTER_P' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    34
		'CKEDITOR.ENTER_BR' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    35
		'CKEDITOR.ENTER_DIV' : 3,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    36
		'CKEDITOR.TRISTATE_ON' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    37
		'CKEDITOR.TRISTATE_OFF' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    38
		'CKEDITOR.TRISTATE_DISABLED' : 0,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    39
		'CKEDITOR.POSITION_AFTER_START' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    40
		'CKEDITOR.POSITION_BEFORE_END' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    41
		'CKEDITOR.POSITION_BEFORE_START' : 3,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    42
		'CKEDITOR.POSITION_AFTER_END' : 4,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    43
		'CKEDITOR.ENLARGE_ELEMENT' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    44
		'CKEDITOR.ENLARGE_BLOCK_CONTENTS' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    45
		'CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS' : 3,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    46
		'CKEDITOR.START' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    47
		'CKEDITOR.END' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    48
		'CKEDITOR.STARTEND' : 3,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    49
		'CKEDITOR.UI_BUTTON' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    50
		'CKEDITOR.DIALOG_RESIZE_NONE' : 0,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    51
		'CKEDITOR.DIALOG_RESIZE_WIDTH' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    52
		'CKEDITOR.DIALOG_RESIZE_HEIGHT' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    53
		'CKEDITOR.DIALOG_RESIZE_BOTH' : 3,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    54
		'CKEDITOR.VALIDATE_OR' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    55
		'CKEDITOR.VALIDATE_AND' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    56
		'CKEDITOR.STYLE_BLOCK' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    57
		'CKEDITOR.STYLE_INLINE' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    58
		'CKEDITOR.STYLE_OBJECT' : 3,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    59
		'CKEDITOR.UI_PANELBUTTON' : 4,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    60
		'CKEDITOR.SELECTION_NONE' : 1,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    61
		'CKEDITOR.SELECTION_TEXT' : 2,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    62
		'CKEDITOR.SELECTION_ELEMENT' : 3,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    63
		'CKEDITOR.UI_RICHCOMBO' : 3,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    64
		'CKEDITOR.UI_MENUBUTTON' : 5,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    65
		'CKEDITOR.UI_PANEL' : 2
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    66
	},
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    67
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    68
packages :
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    69
	[
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    70
		{
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    71
			output : 'ckeditor_basic.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    72
			wrap : true,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    73
			files :
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    74
				[
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    75
					'_source/core/ckeditor_base.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    76
					'_source/core/event.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    77
					'_source/core/editor_basic.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    78
					'_source/core/env.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    79
					'_source/core/ckeditor_basic.js'
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    80
				]
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    81
		},
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    82
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    83
		{
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    84
			output : 'ckeditor.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    85
			wrap : true,
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    86
			files :
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    87
				[
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    88
					'_source/core/ckeditor_base.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    89
					'_source/core/event.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    90
					'_source/core/editor_basic.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    91
					'_source/core/env.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    92
					'_source/core/ckeditor_basic.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    93
					'_source/core/dom.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    94
					'_source/core/tools.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    95
					'_source/core/dtd.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    96
					'_source/core/dom/event.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    97
					'_source/core/dom/domobject.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    98
					'_source/core/dom/window.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
    99
					'_source/core/dom/document.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   100
					'_source/core/dom/node.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   101
					'_source/core/dom/nodelist.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   102
					'_source/core/dom/element.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   103
					'_source/core/command.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   104
					'_source/core/config.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   105
					'_source/core/focusmanager.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   106
					'_source/core/lang.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   107
					'_source/core/scriptloader.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   108
					'_source/core/resourcemanager.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   109
					'_source/core/plugins.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   110
					'_source/core/imagecacher.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   111
					'_source/core/skins.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   112
					'_source/core/themes.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   113
					'_source/core/ui.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   114
					'_source/core/editor.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   115
					'_source/core/htmlparser.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   116
					'_source/core/htmlparser/comment.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   117
					'_source/core/htmlparser/text.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   118
					'_source/core/htmlparser/cdata.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   119
					'_source/core/htmlparser/fragment.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   120
					'_source/core/htmlparser/element.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   121
					'_source/core/htmlparser/filter.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   122
					'_source/core/htmlparser/basicwriter.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   123
					'_source/core/ckeditor.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   124
					'_source/core/dom/comment.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   125
					'_source/core/dom/elementpath.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   126
					'_source/core/dom/text.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   127
					'_source/core/dom/documentfragment.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   128
					'_source/core/dom/walker.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   129
					'_source/core/dom/range.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   130
					'_source/core/_bootstrap.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   131
					'_source/skins/kama/skin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   132
//					'_source/lang/en.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   133
					'_source/plugins/about/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   134
					'_source/plugins/a11yhelp/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   135
					'_source/plugins/basicstyles/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   136
					'_source/plugins/blockquote/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   137
					'_source/plugins/button/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   138
					'_source/plugins/clipboard/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   139
					'_source/plugins/colorbutton/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   140
					'_source/plugins/colordialog/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   141
					'_source/plugins/contextmenu/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   142
					'_source/plugins/div/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   143
					'_source/plugins/elementspath/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   144
					'_source/plugins/enterkey/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   145
					'_source/plugins/entities/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   146
					'_source/plugins/filebrowser/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   147
					'_source/plugins/find/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   148
					'_source/plugins/flash/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   149
					'_source/plugins/font/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   150
					'_source/plugins/format/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   151
					'_source/plugins/forms/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   152
					'_source/plugins/horizontalrule/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   153
					'_source/plugins/htmldataprocessor/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   154
					'_source/plugins/image/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   155
					'_source/plugins/indent/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   156
					'_source/plugins/justify/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   157
					'_source/plugins/keystrokes/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   158
					'_source/plugins/link/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   159
					'_source/plugins/list/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   160
					'_source/plugins/maximize/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   161
					'_source/plugins/newpage/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   162
					'_source/plugins/pagebreak/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   163
					'_source/plugins/pastefromword/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   164
					'_source/plugins/pastetext/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   165
					'_source/plugins/popup/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   166
					'_source/plugins/preview/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   167
					'_source/plugins/print/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   168
					'_source/plugins/removeformat/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   169
					'_source/plugins/resize/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   170
					'_source/plugins/save/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   171
					'_source/plugins/scayt/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   172
					'_source/plugins/smiley/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   173
					'_source/plugins/showblocks/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   174
					'_source/plugins/showborders/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   175
					'_source/plugins/sourcearea/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   176
					'_source/plugins/stylescombo/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   177
					'_source/plugins/table/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   178
					'_source/plugins/tabletools/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   179
					'_source/plugins/specialchar/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   180
					'_source/plugins/tab/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   181
					'_source/plugins/templates/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   182
					'_source/plugins/toolbar/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   183
					'_source/plugins/undo/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   184
					'_source/plugins/wysiwygarea/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   185
					'_source/plugins/wsc/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   186
					'_source/plugins/dialog/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   187
					'_source/plugins/styles/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   188
					'_source/plugins/domiterator/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   189
					'_source/plugins/panelbutton/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   190
					'_source/plugins/floatpanel/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   191
					'_source/plugins/menu/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   192
					'_source/plugins/editingblock/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   193
					'_source/plugins/selection/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   194
					'_source/plugins/fakeobjects/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   195
					'_source/plugins/richcombo/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   196
					'_source/plugins/htmlwriter/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   197
					'_source/plugins/menubutton/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   198
					'_source/plugins/dialogui/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   199
					'_source/plugins/panel/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   200
					'_source/plugins/listblock/plugin.js',
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   201
					'_source/themes/default/theme.js'
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   202
				]
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   203
		}
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   204
adccf7c023ef add fck editor for html texts
raph
parents:
diff changeset
   205
	]