-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path_whatsnew.html
executable file
·2804 lines (2804 loc) · 217 KB
/
_whatsnew.html
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>FCKeditor - What's New?</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body { font-family: arial, verdana, sans-serif }
p { margin-left: 20px }
</style>
</head>
<body>
<h3>
Version 2.4.3</h3>
<p>
New Features and Improvements:</p>
<ul>
<li>It is now possible to set the default target when creating links, with the new "<strong>DefaultLinkTarget</strong>"
setting. </li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/436">#436</a>] The new
"<strong>FirefoxSpellChecker</strong>" setting is available, to enable/disable the
Firefox built-in spellchecker while typing. Even if word suggestions will not appear
in the FCKeditor context menu, this feature is useful to quickly identify misspelled
words.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/311">#311</a>] The new
"<strong>BrowserContextMenuOnCtrl</strong>" setting is being introduced, to enable/disable
the ability of displaying the default browser's context menu when right-clicking
with the CTRL key pressed.</li>
</ul>
<p>
Fixed Bugs:</p>
<ul>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/300">#300</a>] The fck_internal.css
file was not validating with the W3C CSS Validation Service.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/336">#336</a>] Ordered
list didn't keep the Type attribute properly (it was converted to lowercase when
the properties dialog was opened again).</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/318">#318</a>] Multiple
linked images are merged in a single link in IE.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/350">#350</a>] The <marquee>
element will no longer append unwanted <p>&nbsp;</p> to the code.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/351">#351</a>] The content
was being lost for images or comments only HTML inserted directly in the editor
source or loaded in the editor.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/388">#388</a>] Creating
links in lines separated by <br> in IE can lead to a merge of the links.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/325">#325</a>] Calling
the GetXHTML can distort visually the rendering in Firefox.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/391">#391</a>] When ToolbarLocation=Out,
a "Security Warning" alert was being shown in IE if under https. Thanks to reister.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/360">#360</a>] Form "name"
was being set to "[object]" if it contained an element with id="name".</li>
<li>Fixed a type that was breaking the ColdFusion SpellerPages integration file when
no spelling errors were found.</li>
<li>The ColdFusion SpellerPages integration was not working it Aspell was installed
in a directory with spaces in the name.</li>
<li>Added option to SpellerPages to ignore "alt" attributes.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/451">#451</a>] Classes
for images in IE didn't take effect immediately.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/430">#430</a>] Links with
a class did generate a span in Firefox when removing them.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/274">#274</a>] The PHP
quick upload still tried to use the uppercased types instead of the lowercased ones.
</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/416">#416</a>] The PHP
quick upload didn't check for the existence of the folder before saving.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/467">#467</a>] If InsertHtml
was called in IE with a comment (or any protected source at the beginning) it was
lost.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1518766&group_id=75348&atid=543653">SF
BUG-1518766</a>] Mozilla 1.7.13 wasn't recognized properly as an old Gecko engine.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/324">#324</a>] Improperly
nested tags could lead to a crash in IE.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/455">#455</a>] Files and
folders with non-ANSI names were returned with a double UTF-8 encoding in the PHP
File Manager.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/273">#273</a>] The extensions
"sh", "shtml", "shtm" and "phtm" have been added to the list of denied extensions
on upload.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/453">#453</a>] No more
errors when hitting del inside an empty table cell.</li>
<li>The perl connector cgi file has been changed to Unix line endings.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/202">#202</a>] Regression:
The HR tag will not anymore break the contents loaded in the editor. </li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/508">#508</a>] The HR
command had a typo.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/505">#505</a>] Regression:
IE crashed if a table caption was deleted.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/82">#82</a>] [<a target="_blank"
href="http://dev.fckeditor.net/ticket/359">#359</a>] <object> and <embed>
tags are not anymore lost in IE.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/493">#493</a>] If the
containing form had a button named "submit" the "Save" command didn't work in Firefox.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/414">#414</a>] If tracing
was globally enabled in Asp.Net 2.0 then the Asp.Net connector did fail.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/520">#520</a>] The "Select
Field" properties dialog was not correctly handling select options with &, <
and >.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/258">#258</a>] The Asp
integration didn't pass boolean values in English, using instead the locale of the
server and failing.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/487">#487</a>] If an image
with dimensions set as styles was opened with the image manager and then the dialog
was canceled the dimensions in the style were lost.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/220">#220</a>] The creation
of links or anchors in a selection that results on more than a single link created
will not anymore leave temporary links in the source. All links will be defined
as expected.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/220">#182</a>] [<a
target="_blank" href="http://dev.fckeditor.net/ticket/220">#261</a>] [<a target="_blank"
href="http://dev.fckeditor.net/ticket/220">#511</a>] Special characters, like
percent signs or accented chars, and spaces are now correctly returned by the File
Browser.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/281">#281</a>] Custom
toolbar buttons now render correctly in all skins.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/527">#527</a>] If the
configuration for a toolbar isn't fully valid, try to keep on parsing it.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/187">#187</a>] [<a
target="_blank" href="http://dev.fckeditor.net/ticket/435">#435</a>] [<a target="_blank"
href="https://sourceforge.net/tracker/?func=detail&aid=1612978&group_id=75348&atid=543653">SF
BUG-1612978</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1163511&group_id=75348&atid=543653">SF
BUG-1163511</a>] Updated the configuration options in the ColdFusion integration
files.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1726781&group_id=75348&atid=543655">SF
Patch-1726781</a>] Updated the upload class for asp to handle large files and other
data in the forms. Thanks to NetRube.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/225">#225</a>] With ColdFusion,
the target directory is now being automatically created if needed when "quick uploading".
Thanks to sirmeili.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/295">#295</a>] [<a
target="_blank" href="http://dev.fckeditor.net/ticket/510">#510</a>] Corrected some
path resolution issues with the File Browser connector for ColdFusion.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/239">#239</a>] The <xml>
tag will not anymore cause troubles.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1721787&group_id=75348&atid=543653">SF
BUG-1721787</a>] If the editor is run from a virtual dir, the PHP connector will
detect that and avoid generating a wrong folder.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/431">#431</a>] PHP: The
File Browser now displays an error message when it is not able to create the configured
target directory for files (instead of sending broken XML responses).</li>
</ul>
<h3>
Version 2.4.2</h3>
<p>
Fixed Bugs:</p>
<ul>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/279">#279</a>] The UTF-8
BOM was being included in the wrong files, affecting mainly PHP installations.</li>
</ul>
<h3>
Version 2.4.1</h3>
<p>
New Features and Improvements:</p>
<ul>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/118">#118</a>] The SelectAll
command now is available in Source Mode.</li>
<li>The new open source FCKpackager sub-project is now available. It replaces the FCKeditor.Packager
software to compact the editor source.</li>
<li>With Firefox, if a paste execution is blocked by the browser security settings,
the new "Paste" popup is shown to the user to complete the pasting operation. </li>
</ul>
<p>
Fixed Bugs:</p>
<ul>
<li>Various fixes to the ColdFusion File Browser connector.</li>
<li>We are now pointing the download of ieSpell to their pages, instead to a direct
file download from one of their mirrors. This disables the ability of "click and
go" (which can still be achieved by pointing the download to a file in your server),
but removes any troubles with mirrors link changes (and they change it frequently).</li>
<li>The Word cleanup has been changed to remove "display:none" tags that may come from
Word.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1659613&group_id=75348">SF
BUG-1659613</a>] The 2.4 version introduced a bug in the flash handling code that
generated out of memory errors in IE7.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1660456&group_id=75348">SF
BUG-1660456</a>] The icons in context menus were draggable.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1653009&group_id=75348">SF
BUG-1653009</a>] If the server is configured to process html files as asp then it
generated ASP error 0138.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1288609&group_id=75348">SF
BUG-1288609</a>] The content of iframes is now preserved.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1245504&group_id=75348">SF
BUG-1245504</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1652240&group_id=75348">SF
BUG-1652240</a>] Flash files without the .swf extension weren't recognized upon
reload.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1649753&group_id=75348&atid=543655">SF
PATCH-1649753</a>] Node selection for text didn't work in IE. Thanks to yurik dot
m.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1573191&group_id=75348&atid=543653">SF
BUG-1573191</a>] The Html code inserted with FCK.InsertHtml didn't have the same
protection for special tags.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/110">#110</a>] The OK
button in dialogs had its width set as an inline style.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/113">#113</a>] [<a
target="_blank" href="http://dev.fckeditor.net/ticket/94">#94</a>] [<a target="_blank"
href="https://sourceforge.net/tracker/?func=detail&aid=1659270&group_id=75348&atid=543653">SF
BUG-1659270</a>] ForcePasteAsPlainText didn't work in Firefox.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/114">#114</a>] The correct
entity is now used to fill empty blocks when ProcessHTMLEntities is disabled.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/90">#90</a>] The editor
was wrongly removing some <br> tags from the code.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/139">#139</a>] The CTRL+F
and CTRL+S keystroke default behaviors are now preserved.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/138">#138</a>] We are
not providing a CTRL + ALT combination in the default configuration file because
it may be incompatible with some keyboard layouts. So, the CTRL + ALT + S combination
has been changed to CTRL + SHIFT + S.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/129">#129</a>] In IE,
it was not possible to paste if "Allow paste operation via script" was disabled
in the browser security settings.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/112">#112</a>] The enter
key now behaves correctly on lists with Firefox, when the EnterMode is set to 'br'.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/152">#152</a>] Invalid
self-closing tags are now being fixed before loading. </li>
<li>A few tags were being ignored to the check for required contents (not getting stripped
out, as expected). Fixed.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/202">#202</a>] The HR
tag will not anymore break the contents loaded in the editor.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/211">#211</a>] Some invalid
inputs, like "<p>" where making the caret disappear in Firefox.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/99">#99</a>] The <div>
element is now considered a block container if EnterMode=p|br. It acts like a simple
block only if EnterMode=div.</li>
<li>Hidden fields will now show up as an icon in IE, instead of a normal text field.
They are also selectable and draggable, in all browsers.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/213">#213</a>] Styles
are now preserved when hitting enter at the end of a paragraph.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/77">#77</a>] If ShiftEnterMode
is set to a block tag (p or div), the desired block creation in now enforced, instead
of copying the current block (which is still the behavior of the simple enter).</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/209">#209</a>] Links and
images URLs will now be correctly preserved with Netscape 7.1.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/165">#165</a>] The enter
key now honors the EnterMode settings when outdenting a list item.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/190">#190</a>] Toolbars
may be wrongly positioned. Fixed.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/254">#254</a>] The IgnoreEmptyParagraphValue
setting is now correctly handled in Firefox.</li>
<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/254">#248</a>] The behavior
of the backspace key has been fixed on some very specific cases.</li>
</ul>
<h3>
Version 2.4</h3>
<p>
New Features and Improvements:</p>
<ul>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1329273&group_id=75348&atid=543656">SF
Feature-1329273</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1456005&group_id=75348&atid=543656">SF
Feature-1456005</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1315002&group_id=75348&atid=543653">SF
BUG-1315002</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1350180&group_id=75348&atid=543653">SF
BUG-1350180</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1450689&group_id=75348&atid=543653">SF
BUG-1450689</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1461033&group_id=75348&atid=543653">SF
BUG-1461033</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1510111&group_id=75348&atid=543653">SF
BUG-1510111</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1203560&group_id=75348&atid=543653">SF
BUG-1203560</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1564838&group_id=75348&atid=543653">SF
BUG-1564838</a>] The advance <strong>Enter Key Handler</strong>
is now being introduced. It gives you complete freedom to configure the editor to
generate <strong><p>, <div> or <br></strong> when the user uses
both the [Enter] and [Shift]+[Enter] keys. The new "EnterMode" and "ShiftEnterMode"
settings can be use to control its behavior. It also guarantees that all browsers
will generate the same output. </li>
<li>The new and powerful <strong>Keyboard Accelerator System</strong> is being introduced.
You can now precisely control the commands to execute when some key combinations
are activated by the user. It guarantees that all browsers will have the same behavior
regarding the shortcuts.<br />
It also makes it possible to remove buttons from the toolbar and still invoke their
features by using the keyboard instead.
<br />
It also blocks all default "CTRL based shortcuts" imposed by the browsers, so if
you don't want users to underline text, just remove the CTRL+U combination from
the keystrokes table. Take a look at the FCKConfig.Keystrokes setting in the fckconfig.js
file. </li>
<li>The new "<strong>ProtectedTags</strong>" configuration option is being introduced.
It will accept a list of tags (separated by a pipe "|"), which will have no effect
during editing, but will still be part of the document DOM. This can be used mainly
for non HTML standard, custom tags.</li>
<li>Dialog box commands can now open resizable dialogs (by setting oCommand.Resizable
= true).</li>
<li>Updated support for AFP. Thanks to Soenke Freitag.</li>
<li>New language file:<ul>
<li><strong>Afrikaans</strong> (by Willem Petrus Botha). </li>
</ul>
</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1456343&group_id=75348&atid=543655">SF
Patch-1456343</a>] New sample file showing how to dynamically exchange a textarea
and an instance of FCKeditor. Thanks to Finn Hakansson</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1496115&group_id=75348&atid=543655">SF
Patch-1496115</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1588578&group_id=75348&atid=543653">SF
BUG-1588578</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1376534&group_id=75348&atid=543653">SF
BUG-1376534</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1343506&group_id=75348&atid=543653">SF
BUG-1343506</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1211065&group_id=75348&atid=543656">SF
Feature-1211065</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=949144&group_id=75348&atid=543656">SF
Feature-949144</a>] The content of anchors are shown and preserved
on creation. * </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1587175&group_id=75348&atid=543656">SF
Feature-1587175</a>] Local links to an anchor are readjusted if the anchor changes.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1500040&group_id=75348&atid=543655">SF
Patch-1500040</a>] New configuration values to specify the Id and Class for the
body element.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1577202&group_id=75348&atid=543655">SF
Patch-1577202</a>] The links created with the popup option now are accessible even
if the user has JavaScript disabled.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1443472&group_id=75348&atid=543655">SF
Patch-1443472</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1576488&group_id=75348&atid=543653">SF
BUG-1576488</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1334305&group_id=75348&atid=543653">SF
BUG-1334305</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1578312&group_id=75348&atid=543653">SF
BUG-1578312</a>] The Paste from Word clean up function can be configured
with FCKConfig.CleanWordKeepsStructure to preserve the markup as much as possible.
Thanks Jean-Charles ROGEZ. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1472654&group_id=75348&atid=543655">SF
Patch-1472654</a>] The server side script location for SpellerPages can now be set
in the configuration file, by using the SpellerPagesServerScript setting.</li>
<li><span style="color: #ff0000">Attention:</span> All connectors are now pointing by
default to the "/userfiles/" folder instead of "/UserFiles/" (case change). Also,
the inner folders for each type (file, image, flash and media) are all lower-cased
too.</li>
<li><span style="color: #ff0000">Attention:</span> The UseBROnCarriageReturn configuration
is not anymore valid. The EnterMode setting can now be used to precisely set the
enter key behavior.</li>
</ul>
<p>
Fixed Bugs:</p>
<ul>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1444937&group_id=75348">SF
BUG-1444937</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1274364&group_id=75348">SF
BUG-1274364</a>] Shortcut keys are now undoable correctly.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1015230&group_id=75348">SF
BUG-1015230</a>] Toolbar buttons now update their state on shortcut keys activation.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1485621&group_id=75348">SF
BUG-1485621</a>] It is now possible to precisely control which shortcut keys can
be used.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1573714&group_id=75348">SF
BUG-1573714</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1593323&group_id=75348">SF
BUG-1593323</a>] Paste was not working in IE if both AutoDetectPasteFromWord
and ForcePasteAsPlainText settings were set to "false". </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1578306&group_id=75348">SF
BUG-1578306</a>] The context menu was wrongly positioned if the editing document
was set to render in strict mode. Thanks to Alfonso Martinez.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1567060&group_id=75348">SF
BUG-1567060</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1565902&group_id=75348">SF
BUG-1565902</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1440631&group_id=75348">SF
BUG-1440631</a>] IE was getting locked on some specific cases. Fixed.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1582859&group_id=75348">SF
BUG-1582859</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1579507&group_id=75348&atid=543655">SF
Patch-1579507</a>] Firefox' spellchecker is now disabled during editing mode.
Thanks to Alfonso Martinez.</li>
<li>Fixed Safari and Opera detection system (for development purposes only).</li>
<li>Paste from Notepad was including font information in IE. Fixed.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1584092&group_id=75348">SF
BUG-1584092</a>] When replacing text area, names with spaces are now accepted.</li>
<li>Depending on the implementation of toolbar combos (mainly for custom plugins) the
editor area was loosing the focus when clicking in the combo label. Fixed.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1596937&group_id=75348&atid=543653">SF
BUG-1596937</a>] InsertHtml() was inserting the HTML outside the editor area on
some very specific cases.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1585548&group_id=75348">SF
BUG-1585548</a>] On very specific, rare and strange cases, the XHTML processor was
not working properly in IE. Fixed.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1584951&group_id=75348">SF
BUG-1584951</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1380598&group_id=75348">SF
BUG-1380598</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1198139&group_id=75348">SF
BUG-1198139</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1437318&group_id=75348">SF
BUG-1437318</a>] In Firefox, the style selector will not anymore delete
the contents when removing styles on specific cases.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1515441&group_id=75348">SF
BUG-1515441</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1451071&group_id=75348">SF
BUG-1451071</a>] The "Insert/Edit Link" and "Select All" buttons are now working
properly when the editor is running on a IE Modal dialog.</li>
<li>On some very rare cases, IE was throwing a memory error when hiding the context
menus. Fixed.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1526154&group_id=75348">SF
BUG-1526154</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1509208&group_id=75348&atid=543653">SF
BUG-1509208</a>] With Firefox, <style> tags defined in the source are
now preserved.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1535946&group_id=75348">SF
BUG-1535946</a>] The IE dialog system has been changed to better work with custom
dialogs.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1599520&group_id=75348">SF
BUG-1599520</a>] The table dialog was producing empty tags when leaving some of
its fields empty.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1599545&group_id=75348">SF
BUG-1599545</a>] HTML entities are now processed on attribute values too.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1598517&group_id=75348">SF
BUG-1598517</a>] Meta tags are now protected from execution during editing (avoiding
the "redirect" meta to be activated).</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1415601&group_id=75348">SF
BUG-1415601</a>] Firefox internals: styleWithCSS is used instead of the deprecated
useCSS whenever possible.</li>
<li>All JavaScript Core extension function have been renamed to "PascalCase" (some were
in "camelCase"). This may have impact on plugins that use any of those functions.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1592311&group_id=75348">SF
BUG-1592311</a>] Operations in the caption of tables are now working correctly in
both browsers.</li>
<li>Small interface fixes to the about box.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1604576&group_id=75348&atid=543655">SF
PATCH-1604576</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1604301&group_id=75348">SF
BUG-1604301</a>] Link creation failed in Firefox 3 alpha. Thanks to Arpad Borsos</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1577247&group_id=75348&atid=543653">SF
BUG-1577247</a>] Unneeded call to captureEvents and releaseEvents.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1610790&group_id=75348">SF
BUG-1610790</a>] On some specific situations, the call to form.submit(), in form
were FCKeditor has been unloaded by code, was throwing the "Can't execute code from
a freed script" error.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1613167&group_id=75348&atid=543653">SF
BUG-1613167</a>] If the configuration was missing the FCKConfig.AdditionalNumericEntities
entry an error appeared.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1590848&group_id=75348&atid=543653">SF
BUG-1590848</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1626360&group_id=75348&atid=543653">SF
BUG-1626360</a>] Cleaning of JavaScript strict warnings in the source code.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1559466&group_id=75348&atid=543653">SF
BUG-1559466</a>] The ol/ul list property window always searched first for a UL element.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1516008&group_id=75348&atid=543653">SF
BUG-1516008</a>] Class attribute in IE wasn't loaded in the image dialog.</li>
<li>The "OnAfterSetHTML" event is now fired when being/switching to Source View.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1631807&group_id=75348&atid=543653">SF
BUG-1631807</a>] Elements' style properties are now forced to lowercase in IE.</li>
<li>The extensions "html", "htm" and "asis" have been added to the list of denied extensions
on upload.</li>
<li>Empty inline elements (like span and strong) will not be generated any more.</li>
<li>Some elements attributes (like hspace) where not being retrieved when set to "0".</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1508341&group_id=75348&atid=543653">SF
BUG-1508341</a>] Fix for the ColdFusion script file of SpellerPages.</li>
</ul>
<p>
* This version has been partially sponsored by <a href="http://www.imedi.org/">Medical
Media Lab</a>.</p>
<h3>
Version 2.3.3</h3>
<p>
New Features and Improvements:</p>
<ul>
<li>The project has been <strong>relicensed</strong> under the terms of the <strong>
GPL / LGPL / MPL</strong> licenses. This change will remove many licensing compatibility
issues with other open source licenses, making the editor even more "open" than
before. </li>
<li><font color="#ff0000">Attention:</font> The default directory in the distribution
package is now named "fckeditor" (in lowercase) instead of "FCKeditor". This
change may impact installations on case sensitive OSs, like Linux. </li>
<li><font color="#ff0000">Attention:</font> The "Universal Keyboard" has been removed
from the package. The license of those files was unclear so they can't be included
alongside the rest of FCKeditor.</li>
</ul>
<h3>
Version 2.3.2</h3>
<p>
New Features and Improvements:</p>
<ul>
<li>Users can now decide if the template dialog will replace the entire contents of
the editor or simply place the template in the cursor position. This feature can
be controlled by the "TemplateReplaceAll" and "TemplateReplaceCheckbox" configuration
options.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1237693&group_id=75348&atid=543655">SF
Patch-1237693</a>] A new configuration option (<strong>ProcessNumericEntities</strong>)
is now available to tell the editor to convert non ASCII chars to their relative
numeric entity references. It is disabled by default.</li>
<li>The new "<strong>AdditionalNumericEntities</strong>" setting makes it possible to
define a set of characters to be transformed to their relative numeric entities.
This is useful when you don't want the code to have simple quotes ('), for example.</li>
<li>The Norwegian language file (no.js) has been duplicated to include the Norwegian
Bokmal (nb.js) in the supported interface languages. Thanks to Martin Kronstad.
</li>
<li>Two new patterns have been added to the Universal Keyboard:
<ul>
<li>Persian. Thanks to Pooyan Mahdavi</li>
<li>Portuguese. Thanks to Bo Brandt.</li>
</ul>
</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1517322&group_id=75348&atid=543655">SF
Patch-1517322</a>] It is now possible to define the start number on numbered lists.
Thanks to Marcel Bennett.</li>
<li>The Font Format combo will now reflect the EditorAreaCSS styles.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1461539&group_id=75348&atid=543655">SF
Patch-1461539</a>] The File Browser connector can now optionally return a "url"
attribute for the files. Thanks to Pent.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1090851&group_id=75348">SF
BUG-1090851</a>] The new "ToolbarComboPreviewCSS" configuration option has been
created, so it is possible to point the Style and Format toolbar combos to a different
CSS, avoiding conflicts with the editor area CSS.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1421309&group_id=75348&atid=543656">SF
Feature-1421309</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1489402&group_id=75348">SF
BUG-1489402</a>] It is now possible to configure the Quick Uploder target path
to consider the file type (ex: Image or File) in the target path for uploads.</li>
<li>The JavaScript integration file has two new things:
<ul>
<li>The "CreateHtml()" function in the FCKeditor object, used to retrieve the HTML of
an editor instance, instead of writing it directly to the page (as done by "Create()").</li>
<li>The global "FCKeditor_IsCompatibleBrowser()" function, which tells if the executing
browser is compatible with FCKeditor. This makes it possible to do any necessary
processing depending on the compatibility, without having to create and editor instance.</li>
</ul>
</li>
</ul>
<p>
Fixed Bugs:</p>
<ul>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1525242&group_id=75348">SF
BUG-1525242</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1500050&group_id=75348">SF
BUG-1500050</a>] All event attributes (like onclick or onmouseover) are now
being protected before loading the editor. In this way, we avoid firing those events
during editing (IE issue) and they don't interfere in other specific processors
in the editor.</li>
<li>Small security fixes to the File Browser connectors. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1546226&group_id=75348">SF
BUG-1546226</a>] Small fix to the ColdFusion CFC integration file.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&atid=543655&aid=1547768&group_id=75348">SF
Patch-1407500</a>] The Word Cleanup function was breaking the HTML on pasting, on
very specific cases. Fixed, thanks to Frode E. Moe.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1551979&group_id=75348&atid=543655">SF
Patch-1551979</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1418066&group_id=75348">SF
BUG-1418066</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1439621&group_id=75348">SF
BUG-1439621</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1501698&group_id=75348&atid=543653">SF
BUG-1501698</a>] Make FCKeditor work with application/xhtml+xml. Thanks
to Arpad Borsos.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1547738&group_id=75348&atid=543655">SF
Patch-1547738</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1550595&group_id=75348&atid=543653">SF
BUG-1550595</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1540807&group_id=75348&atid=543653">SF
BUG-1540807</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1510685&group_id=75348&atid=543653">SF
BUG-1510685</a>] Fixed problem with panels wrongly positioned when the
editor is placed on absolute or relative positioned elements. Thanks to Filipe Martins.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1511294&group_id=75348&atid=543655">SF
Patch-1511294</a>] Small fix for the File Browser compatibility with IE 5.5.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1503178&group_id=75348&atid=543655">SF
Patch-1503178</a>] Small improvement to stop IE from loading smiley images when
one smiley is quickly selected from a huge list of smileys. Thanks to stuckhere.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1549112&group_id=75348&atid=543653">SF
BUG-1549112</a>] The Replace dialog window now escapes regular expression specific
characters in the find and replace fields.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1548788&group_id=75348&atid=543653">SF
BUG-1548788</a>] Updated the ieSpell download URL.</li>
<li>In FF, the editor was throwing an error when closing the window. Fixed.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1538509&group_id=75348&atid=543653">SF
BUG-1538509</a>] The "type" attribute for text fields will always be set now.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1551734&group_id=75348&atid=543653">SF
BUG-1551734</a>] The SetHTML function will now update the editing area height no
matter which editing mode is active.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1554141&group_id=75348&atid=543653">SF
BUG-1554141</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1565562&group_id=75348&atid=543653">SF
BUG-1565562</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1451056&group_id=75348&atid=543653">SF
BUG-1451056</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1478408&group_id=75348&atid=543653">SF
BUG-1478408</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1489322&group_id=75348&atid=543653">SF
BUG-1489322</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1513667&group_id=75348&atid=543653">SF
BUG-1513667</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1562134&group_id=75348&atid=543653">SF
BUG-1562134</a>] The protection of URLs has been enhanced
and now it will not break URLs on very specific cases.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1545732&group_id=75348&atid=543653">SF
BUG-1545732</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1490919&group_id=75348&atid=543653">SF
BUG-1490919</a>] No security errors will be thrown when loading FCKeditor in
page inside a FRAME defined in a different domain.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1512817&group_id=75348&atid=543653">SF
BUG-1512817</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1571345&group_id=75348&atid=543653">SF
BUG-1571345</a>] Fixed the "undefined" addition to the content when ShowBorders
= false and FullPage = true in Firefox. Thanks to Brett.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1512798&group_id=75348&atid=543653">SF
BUG-1512798</a>] BaseHref will now work well on FullPage, even if no <head>
is available.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1509923&group_id=75348&atid=543653">SF
BUG-1509923</a>] The DocumentProcessor is now called when using InserHtml().</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1505964&group_id=75348&atid=543653">SF
BUG-1505964</a>] The DOCTYPE declaration is now preserved when working in FullPage.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1553727&group_id=75348&atid=543653">SF
BUG-1553727</a>] The editor was throwing an error when inserting complex templates.
Fixed.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1564930&group_id=75348&atid=543655">SF
Patch-1564930</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1562828&group_id=75348">SF
BUG-1562828</a>] In IE, anchors where incorrectly copied when using the Paste
from Word button. Fixed, thanks to geirhelge.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1557709&group_id=75348&atid=543653">SF
BUG-1557709</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1421810&group_id=75348&atid=543653">SF
BUG-1421810</a>] The link dialog now validates Popup Window names.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1556878&group_id=75348&atid=543653">SF
BUG-1556878</a>] Firefox was creating empty tags when deleting the selection in
some special cases.</li>
<li>The context menu for links is now correctly shown when right-clicking on floating
divs.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1084404&group_id=75348&atid=543653">SF
BUG-1084404</a>] The XHTML processor now ignores empty span tags.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1221728&group_id=75348&atid=543653">SF
BUG-1221728</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1174503&group_id=75348&atid=543653">SF
BUG-1174503</a>] The <abbr> tag is not anymore getting broken by IE.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1182906&group_id=75348&atid=543653">SF
BUG-1182906</a>] IE is not anymore messing up mailto links.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1386094&group_id=75348&atid=543653">SF
BUG-1386094</a>] Fixed an issue when setting configuration options to empty ('')
by code.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1389435&group_id=75348&atid=543653">SF
BUG-1389435</a>] Fixed an issue in some dialog boxes when handling numeric inputs.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1398829&group_id=75348&atid=543653">SF
BUG-1398829</a>] Some links may got broken on very specific cases. Fixed.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1409969&group_id=75348&atid=543653">SF
BUG-1409969</a>] <noscript> tags now remain untouched by the editor.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1433457&group_id=75348&atid=543653">SF
BUG-1433457</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1513631&group_id=75348&atid=543653">SF
BUG-1513631</a>] Empty "href" attributes in <a> or empty "src" in <img>
will now be correctly preserved.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1435195&group_id=75348&atid=543653">SF
BUG-1435195</a>] Scrollbars are now visible in the File Browser (for custom implementations).</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1438296&group_id=75348&atid=543653">SF
BUG-1438296</a>] The "ForceSimpleAmpersand" setting is now being honored in all
tags.</li>
<li>If a popup blocker blocks context menu operations, the correct alert message is
displayed now, instead of a ugly JavaScript error.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1454116&group_id=75348&atid=543653">SF
BUG-1454116</a>] The GetXHTML() function will not change the IsDirty() value of
the editor.</li>
<li>The spell check may not work correctly when using SpellerPages with ColdFusion.
Fixed.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1481861&group_id=75348&atid=543653">SF
BUG-1481861</a>] HTML comments are now removed by the Word Cleanup System.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1489390&group_id=75348&atid=543653">SF
BUG-1489390</a>] A few missing hard coded combo options used in some dialogs are
now localizable.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1505448&group_id=75348&atid=543653">SF
BUG-1505448</a>] The Form dialog now retrieves the value of the "action" attribute
exactly as defined in the source.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1517322&group_id=75348&atid=543655">SF
Patch-1517322</a>] Solved an issue when the toolbar has buttons with simple icons
(usually used by plugins) mixed with icons coming from a strip (the default toolbar
buttons).</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1575261&group_id=75348&atid=543655">SF
Patch-1575261</a>] Some fields in the Table and Cell Properties dialogs were being
cut. Fixed.</li>
<li>Fixed a startup compatibility issue with Firefox 1.0.4.</li>
</ul>
<h3>
Version 2.3.1</h3>
<p>
Fixed Bugs:</p>
<ul>
<li>[<a target="_blank" href="https://sourceforge.net/support/tracker.php?aid=1506126">SF
BUG-1506126</a>] Fixed the Catalan language file, which had been published with
problems in accented letters. </li>
<li>More performance improvements in the default File Browser.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1506701&group_id=75348&atid=543653">SF
BUG-1506701</a>] Fixed compatibility issues with IE 5.5.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1509073&group_id=75348&atid=543653">SF
BUG-1509073</a>] Fixed the "Image Properties" dialog window, which was making invalid
calls to the "editor/dialog/" directory, generating error 400 entries in the web
server log.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1507294&group_id=75348&atid=543653">SF
BUG-1507294</a>] [<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1507953&group_id=75348&atid=543653">SF
BUG-1507953</a>] The editing area was getting a fixed size when using the "SetHTML"
API command or even when switching back from the source view. Fixed.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1507755&group_id=75348">SF
BUG-1507755</a>] Fixed a conflict between the "DisableObjectResizing" and "ShowBorders"
configuration options over IE.</li>
<li>Opera 9 tries to "mimic" Gecko in the browser detection system of FCKeditor. As
this browser is not "yet" supported, the editor was broken on it. It has been fixed,
and now a textarea is displayed, as in any other unsupported browser. Support for
Opera is still experimental and can be activated by setting the property "EnableOpera"
to true when creating an instance of the editor with the JavaScript integration
files.</li>
<li>With Opera 9, the toolbar was jumping on buttons rollover. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1509479&group_id=75348&atid=543656">SF
BUG-1509479</a>] The iframes used in Firefox for all editor panels (dropdown combos,
context menu, etc...) are now being placed right before the main iframe that holds
the editor. In this way, if the editor container element is removed from the DOM
(by DHTML) they are removed together with it.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1271070&group_id=75348&atid=543653">SF
BUG-1271070</a>] [<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1411430&group_id=75348&atid=543653">SF
BUG-1411430</a>] The editor API now works well on DHTML pages that create and
remove instances of FCKeditor dynamically. </li>
<li>A second call to a page with the editor was not working correctly with Firefox 1.0.x.
Fixed.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1511460&group_id=75348&atid=543653">SF
BUG-1511460</a>] Small correction to the <script> protected source regex.
Thanks to Randall Severy.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1521754&group_id=75348">SF
BUG-1521754</a>] Small fix to the paths of the internal CSS files used by FCKeditor.
Thanks to johnw_ceb.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1511442&group_id=75348&atid=543653">SF
BUG-1511442</a>] The <base> tag is now correctly handled in IE, no matter
its position in the source code.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1507773&group_id=75348&atid=543653">SF
BUG-1507773</a>] The "Lock" and "Reset" buttons in the Image Properties dialog window
are not anymore jumping with Firefox 1.5.</li>
</ul>
<h3>
Version 2.3</h3>
<p>
New Features and Improvements:</p>
<ul>
<li>The <strong>Toolbar Sharing</strong> system has been completed. See sample10.html
and sample11.html.*</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1407500&group_id=75348&atid=543655">SF
Patch-1407500</a>] Small enhancement to the Find and Replace dialog windows.</li>
</ul>
<p>
Fixed Bugs:</p>
<ul>
<li>Small security fixes.</li>
<li>The context menu system has been optimized. Nested menus now open "onmouseover".
</li>
<li>An error in the image preloader system was making the toolbar strip being downloaded
once for each button on slow connections. Some enhancements have also been made
so now the smaple05.html is loading fast for all skins.</li>
<li>Fixed many memory leak issues with IE.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1489768&group_id=75348&atid=543653">SF
BUG-1489768</a>] The panels (context menus, toolbar combos and color selectors),
where being displayed in the wrong position if the contents of the editor, or its
containing window were scrolled down. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1493176&group_id=75348">SF
BUG-1493176</a>] Using ASP, the connector was not working on servers with buffer
disable by default.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1491784&group_id=75348&atid=543653">SF
BUG-1491784</a>] Language files have been updated to not include html entities.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1490259&group_id=75348&atid=543653">SF
BUG-1490259</a>] No more security warning on IE over HTTPS.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1493173&group_id=75348&atid=543653">SF
BUG-1493173</a>] [<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1499708&group_id=75348">SF
BUG-1499708</a>] We now assume that, if a user is in source editing, he/she
wants to control the HTML, so the editor doesn't make changes to it when posting
the form being in source view or when calling the GetXHTML function in the API.
</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1490610&group_id=75348&atid=543653">SF
BUG-1490610</a>] The FitWindow is now working on elements set with relative position.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1493438&group_id=75348&atid=543653">SF
BUG-1493438</a>] The "Word Wrap" combo in the cell properties dialog now accepts
only Yes/No (no more <Not Set> value).</li>
<li>The context menu is now being hidden when a nested menu option is selected.</li>
<li>Table cell context menu operations are now working correctly.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1494549&group_id=75348&atid=543653">SF
BUG-1494549</a>] The code formatter was having problems with dollar signs inside
<pre> tags.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1459740&group_id=75348&atid=543655">SF
Patch-1459740</a>] The "src" element of images can now be set by styles definitions.
Thanks to joelwreed.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1437052&group_id=75348&atid=543655">SF
Patch-1437052</a>] [<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1436166&group_id=75348&atid=543655">SF
Patch-1436166</a>] [<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1352385&group_id=75348&atid=543655">SF
Patch-1352385</a>] Small fix to the FCK.InsertHtml, FCKTools.AppendStyleSheet
and FCKSelection.SelectNode functions over IE. Thanks to Alfonso Martinez.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1349765&group_id=75348&atid=543655">SF
Patch-1349765</a>] Small fix to the FCKSelection.GetType over Firefox. Thanks to
Alfonso Martinez.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543655&aid=1495422&group_id=75348">SF
Patch-1495422</a>] The editor now creates link based on the URL when no selection
is available. Thanks to Dominik Pesch.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543655&aid=1478859&group_id=75348">SF
Patch-1478859</a>] On some circumstances, the Yahoo popup blocker was blocking the
File Browser window, giving no feedback to the user. Now an alert message is displayed.</li>
<li>When using the editor in a RTL localized interface, like Arabic, the toolbar combos
were not showing completely in the first click. Fixed.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1500212&group_id=75348">SF
BUG-1500212</a>] All "_samples/html" samples are now working when loading directly
from the Windows Explorer. Thanks to Alfonso Martinez.</li>
<li>The "FitWindow" feature was breaking the editor under Firefox 1.0.x.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1500032&group_id=75348&atid=543655">SF
Patch-1500032</a>] In Firefox, the caret position now follows the user clicks when
clicking in the white area bellow the editor contents. Thanks to Alfonso Martinez.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1499522&group_id=75348">SF
BUG-1499522</a>] In Firefox, the link dialog window was loosing the focus (and quickly
reacquiring it) when opening. This behavior was blocking the dialog in some Linux
installations. </li>
<li>Drastically improved the loading performance of the file list in the default File
Browser.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1503059&group_id=75348">SF
BUG-1503059</a>] The default "BasePath" for FCKeditor in all integration files has
been now unified to "/fckeditor/" (lower-case). This is the usual casing system
in case sensitive OSs like Linux.</li>
<li>The "DisableFFTableHandles" setting is now honored when switching the full screen
mode with FitWindow.</li>
<li>Some fixes has been applied to the cell merging in Firefox.</li>
</ul>
<p>
* This version has been partially sponsored by <a href="http://www.footsteps.nl/">Footsteps</a>
and <a href="http://www.kentico.com/">Kentico</a>.</p>
<h3>
Version 2.3 Beta</h3>
<p>
New Features and Improvements:</p>
<ul>
<li><span><strong>Extremely Fast Loading!</strong> The editor now loads more than 3
times faster than before, with no impact on its advanced features.</span> </li>
<li><span><strong>New toolbar system</strong>:</span>
<ul>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1454850&group_id=75348&atid=543656">SF
Feature-1454850</a>] The toolbar will now <strong>load much faster</strong>. All
images have being merged in a single image file using a unique system available
only with FCKeditor. </li>
<li>The "Text Color" and "Background Color" commands buttons have
enhancements on the interface.</li>
<li><strong><span style="color: #ff0000">Attention</span></strong>: As a completely
new system has being developed. Skins created for versions prior this one will not
work. Skin styles definitions have being merged, added and removed. All skins have
been a little bit reviewed. </li>
<li>It is possible to <strong>detach the toolbar</strong> from an editor instance and
share it with other instances. In this way you may have only one toolbar (in the
top of the window, for example, that can be used by many editors (see <a href="_samples/html/sample10.html">
sample10.html</a>). This feature is still under development (issues with IE
focus still to be solved).* </li>
</ul>
</li>
<li><strong><span>New context menu system</span></strong>:
<ul>
<li>It uses the same (fast) loading system as the toolbar. </li>
<li>Sub-Menus are now available to group features (try the context menu over a table
cell). </li>
<li>It is now possible to create your own context menu entries by creating plugins.
</li>
</ul>
</li>
<li><strong>New "FitWindow" toolbar button</strong>, based on the <a href="https://sourceforge.net/tracker/index.php?func=detail&aid=1431638&group_id=75348&atid=737639">
plugin</a> published by Paul Moers. Thanks Paul!</li>
<li><strong>"Auto Grow" Plugin</strong>: automatically resizes the editor
until a maximum height, based on its contents size.** </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1444943&group_id=75348&atid=543656">SF
Feature-1444943</a>] <strong>Multiple CSS files</strong> can now be used in the
editing area. Just define FCKConfig.EditorAreaCSS as an array of strings (each one
is a path to a different css file). It works also as a simple string, as on prior
versions. </li>
<li>New language files:<ul>
<li><strong>Bengali / Bangla</strong> (by Richard Walledge).</li>
<li><strong>English (Canadian)</strong> (by Kevin Bennett). </li>
<li><strong>Khmer</strong> (by Sengtha Chay).</li>
</ul>
</li>
<li>The source view is now available in the editing area on Gecko browsers. Previously
a popup was used for it (due to a Firefox bug). </li>
<li><span>As some people may prefer the popup way for source editing, a new configuration
option (SourcePopup) has being introduced.</span> </li>
<li>The IEForceVScroll configuration option has been removed. The editor now automatically
shows the vertical scrollbar when needed (for XHTML doctypes). </li>
<li>The configuration file doesn't define a default DOCTYPE to be used now. </li>
<li>It is now possible to easily change the toolbar using the JavaScript API by just
calling <EditorInstance>.ToolbarSet.Load( '<ToolbarName>' ). See _testcases/010.html
for a sample. </li>
<li>The "OnBlur" and "OnFocus" JavaScript API events are now compatible
with all supported browsers. </li>
<li>Some few updates in the Lasso connector and uploader. </li>
<li>The GeckoUseSPAN setting is now set to "false" by default. In this way, the code
produced by the bold, italic and underline commands are the same on all browsers.</li>
</ul>
<p>
Fixed Bugs:</p>
<ul>
<li><strong>Important security fixes have been applied to the File Manager, Uploader
and Connectors. Upgrade is highly recommended.</strong> Thanks to Alberto Moro,
Baudouin Lamourere and James Bercegay.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1399966&group_id=75348&atid=543653">SF
BUG-1399966</a>] [<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1249853&group_id=75348&atid=543653">SF
BUG-1249853</a>] The "BaseHref" configuration is now working with
Firefox in both normal and full page modes.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1405263&group_id=75348&atid=543653">SF
BUG-1405263</a>] A typo in the configuration file was impacting the Quick Upload
feature. </li>
<li>Nested <ul> and <ol> tags are now generating valid html.</li>
<li>The "wmode" and "quality" attributes are now preserved for Flash
embed tags, in case they are entered manually in the source view. Also, empty attributes
are removed from that tag. </li>
<li>Tables where not being created correctly on Opera. </li>
<li>The XHTML processor will ignore invalid tags with names ending with ":",
like http:. </li>
<li><span>On Firefox, the scrollbar is not anymore displayed on toolbar dropdown commands
when not needed.</span> </li>
<li><span>Some small fixes have being done to the dropdown commands rendering for FF</span>.
</li>
<li>The table dialog window has been a little bit enlarged to avoid contents being cropped
on some languages, like Russian. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1465203&group_id=75348&atid=543653">SF
BUG-1465203</a>] The ieSpell download URL has been updated. The problem is that
they don't have a fixed URL for it, so let's hope the mirror will be up for it.
</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1456332&group_id=75348&atid=543653">SF
BUG-1456332</a>] Small fix in the Spanish language file. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1457078&group_id=75348&atid=543653">SF
BUG-1457078</a>] The File Manager was generating 404 calls in the server. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1459846&group_id=75348&atid=543653">SF
BUG-1459846</a>] Fixed a problem with the config file if PHP is set to parse .js
files. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1432120&group_id=75348&atid=543653">SF
BUG-1432120</a>] The "UserFilesAbsolutePath" setting is not correctly
used in the PHP uploader. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1432120&group_id=75348&atid=543653">SF
BUG-1408869</a>] The collapse handler is now rendering correctly in Firefox 1.5.
</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1410082&group_id=75348&atid=543653">SF
BUG-1410082</a>] [<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1424240&group_id=75348&atid=543653">SF
BUG-1424240</a>] The "moz-bindings.xml" file is now well formed. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1413980&group_id=75348&atid=543653">SF
BUG-1413980</a>] All frameborder "yes/no" values have been changes to
"1/0". </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1414101&group_id=75348&atid=543653">SF
BUG-1414101</a>] The fake table borders are now showing correctly when running under
the "file://" protocol. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1414155&group_id=75348&atid=543653">SF
BUG-1414155</a>] Small typo in the cell properties dialog window.</li>
<li>Fixed a problem in the File Manager. It was not working well with folder or file
names with apostrophes ('). Thanks to René de Jong.</li>
<li>Small "lenght" type corrected in the select dialog window. Thanks to Bernd Nussbaumer.</li>
<li>The about box is now showing correctly in Firefox 1.5.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1464020&group_id=75348&atid=543655">SF
Patch-1464020</a>] [<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1155793&group_id=75348&atid=543653">SF
BUG-1155793</a>] The "Unlink" command is now working correctly under Firefox
if you don't have a complete link selection. Thanks to Johnny Egeland.</li>
<li>In the File Manager, it was not possible to upload files to folders with ampersands
in the name. Thanks to Mike Pone.</li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1178359&group_id=75348&atid=543653">SF
BUG-1178359</a>] Elements from the toolbar are not anymore draggable in the editing
area.</li>
<li>[<a target="_blank" href="http://sourceforge.net/tracker/index.php?func=detail&aid=1487544&group_id=75348&atid=543653">SF
BUG-1487544</a>] Fixed a small issue in the code formatter for <br /> and
<hr /> tags.</li>
<li>The "Background Color" command now works correctly when the GeckoUseSPAN setting
is disabled (default).</li>
<li>Links are now rendered in blue with Firefox (they were black before). Actually,
an entry for it has been added to the editing area CSS, so you can customize with
the color you prefer. </li>
</ul>
<p>
* This version has been partially sponsored by <a href="http://www.footsteps.nl/">Footsteps</a>
and <a href="http://www.kentico.com/">Kentico</a>.
<br />
** This version has been partially sponsored by <a href="http://www.nextide.ca/">Nextide</a>.</p>
<h3>
Version 2.2</h3>
<p>
New Features and Improvements:</p>
<ul>
<li>Let's welcome Wim Lemmens (didgiman). He's our new responsible for the ColdFusion
integration. In this version we are introducing his new files with the following
changes:
<ul>
<li>The "<strong>Uploader</strong>", used for quick uploads, is now available
<strong>natively for ColdFusion</strong>. </li>
<li>Small bugs have been corrected in the <strong>File Browser connector</strong>. </li>
<li>The samples now work as is, even if you don't install the editor in the "/FCKeditor"
directory.</li>
</ul>
</li>
<li>And a big welcome also to "Andrew Liu", our responsible for the <strong>
Python</strong> integration. This version is bringing <strong>native support for Python</strong>
, including the File Browser connector and Quick Upload. </li>
<li>The "<strong>IsDirty()</strong>" and "<strong>ResetIsDirty()</strong>"
functions have been added to the JavaScript API to check if the editor
content has been changed.* </li>
<li>New language files:
<ul>
<li><strong>Hindi</strong> (by Utkarshraj Atmaram) </li>
<li><strong>Latvian </strong>(by Janis Klavinš)</li>
</ul>
</li>
<li>For the interface, now we have complete <strong>RTL support</strong> also for
the drop-down toolbar commands, color selectors and context menu. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1325113&group_id=75348&atid=543653">SF
BUG-1325113</a>] [<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1277661&group_id=75348&atid=543653">SF
BUG-1277661</a>] The new "Delete Table" command is available in the
Context Menu when right-clicking inside a table. </li>
<li>The "FCKConfig.DisableTableHandles" configuration option is now working
on Firefox 1.5. </li>
<li>The new "<strong>OnBlur</strong>" and "<strong>OnFocus</strong>"
events have been added to the JavaScript API (IE only). See "_samples/html/sample09.html" *
</li>
<li><strong><font color="#ff0000">Attention</font></strong>: The "<strong>GetHTML</strong>"
function has been deprecated. It now returns the same value as "<strong>GetXHTML</strong>".
The same is valid for the "EnableXHTML" and "EnableSourceXHTML"
that have no effects now. The editor now works with XHTML output only. </li>
<li><strong><font color="#ff0000">Attention</font></strong>: A new "<strong>PreserveSessionOnFileBrowser</strong>"
configuration option has been introduced. It makes it possible to set whenever is
needed to maintain the user session in the File Browser. It is disabled by default,
as it has very specific usage and may cause the File Browser to be blocked by popup
blockers. If you have custom File Browsers that depends on session information,
remember to activate it. </li>
<li><strong><font color="#ff0000">Attention</font></strong>: The "<strong>fun</strong>"
smileys set has been removed from the package. If you are using it, you must manually
copy it to newer installations and upgrades. </li>
<li><strong><font color="#ff0000">Attention</font></strong>: The "<strong>mcpuk</strong>"
file browser has been removed from the package. We have no ways to support it. There
were also some licensing issues with it. Its web site can still be found at <a href="http://mcpuk.net/fbxp/">
http://mcpuk.net/fbxp/</a>. </li>
<li>It is now possible to set different CSS styles for the chars in the Special Chars
dialog window by adding the "SpecialCharsOut" and "SpecialCharsOver"
in the "fck_dialog.css" skin file.* </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1268726&group_id=75348&atid=543655">SF
Patch-1268726</a>] Added table "summary" support in the table dialog.
Thanks to Sebastien-Mahe. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1284380&group_id=75348&atid=543655">SF
Patch-1284380</a>] It is now possible to define the icon of a FCKToolbarPanelButton
object without being tied to the skin path (just like FCKToolbarButton). Thanks
to Ian Sullivan. </li>
<li>[<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1338610&group_id=75348&atid=543655">SF
Patch-1338610</a>] [<a target="_blank" href="https://sourceforge.net/tracker/index.php?func=detail&aid=1263009&group_id=75348&atid=543656">SF