Changeset 782

Show
Ignore:
Timestamp:
2007-09-05 23:57:51 (3 years ago)
Author:
fredck
Message:

Fixed #1184 : Home and End keys are working properly on numeric fields. Fixed also the Delete key on Safari.

Location:
FCKeditor/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/dialog/common/fck_dialog_common.js

    r762 r782  
    6262var KeyIdentifierMap =  
    6363{ 
     64        End             : 35, 
     65        Home    : 36, 
    6466        Left    : 37, 
    65         Right   : 39 
     67        Right   : 39, 
     68        'U+00007F' : 46         // Delete 
    6669}  
    6770 
     
    7982        return ( 
    8083                        ( iCode >= 48 && iCode <= 57 )          // Numbers 
    81                         || (iCode >= 37 && iCode <= 40)         // Arrows 
     84                        || (iCode >= 35 && iCode <= 40)         // Arrows, Home, End 
    8285                        || iCode == 8                                           // Backspace 
    8386                        || iCode == 46                                          // Delete 
  • FCKeditor/trunk/_whatsnew.html

    r694 r782  
    3535                New Features and Improvements:</p> 
    3636        <ul> 
    37                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/915">#915</a>] The undo/redo system has been 
    38                         revamped to work the same across Internet Explorer and Gecko-based browsers (e.g. Firefox). A number 
    39                         of critical bugs in the undo/redo system are also fixed.</li> 
     37                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/915">#915</a>] The undo/redo 
     38                        system has been revamped to work the same across Internet Explorer and Gecko-based 
     39                        browsers (e.g. Firefox). A number of critical bugs in the undo/redo system are also 
     40                        fixed.</li> 
    4041                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/194">#194</a>] The editor 
    4142                        now uses the <strong>Data Processor</strong> technology, which makes it possible 
     
    4546                        file has been renamed to ".htaccess" as it doesn't bring security concerns, being 
    4647                        active out of the box.</li> 
    47                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/454">#454</a>] The file browser and upload 
    48                         connectors have been unified so they can reuse the same configuration settings.<br> 
    49                         [<a target="_blank" href="http://dev.fckeditor.net/ticket/865">#865</a>] The asp and php connectors have been improved so it's easy to select the location of the destination  
    50                         folder for each  file type, and it's no longer necessary to use the "file", "image", "flash" subfolders<br> 
    51                         <span style="color: #ff0000">Attention:</span> The location of all the connectors have been changed in  
    52                         the fckconfig.js file. Please check your settings to match the current ones. Also review carefully the  
    53                         config file for your server language. 
    54                         </li> 
    55                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/688">#688</a>] Now the Perl quick upload is  
    56                         available.</li> 
    57                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/575">#575</a>] The Python connector has been  
    58                         rewritten as a WSGI app to be fully compatible with the latest python frameworks and servers. The  
    59                         QuickUpload feature has been added as well as all the features available in the PHP connector.  
    60                         Thanks to Mariano Reingart.</li> 
    61                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/561">#561</a>] The asp connector provides an 
    62                         AbsolutePath setting so it's possible to set the url to a full domain or a relative path and specify that 
    63                         way the physical folder where the files are stored..</li> 
    64                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/333">#333</a>] The quick upload now can use  
    65                         the same ServerPath parameter as the full connector.</li> 
    66                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/199">#199</a>] The AllowedCommands configuration  
    67                         setting is available in the asp and php connectors so it's possible to disallow the upload of files  
    68                         (although the "select file" button will still be available in the file browser).</li> 
    69                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/100">#100</a>] A new configuration directive 
    70                         "FCKConfig.EditorAreaStyles" has been implemented to allow setting editing area styles from JavaScript. 
    71                         </li> 
    72                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/102">#102</a>] HTML code generated by the "Paste 
    73                         As Plain Text" feature now obeys the EnterMode setting.</li> 
    74                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/163">#163</a>]  
    75                         <span style="color: #ff0000">Attention:</span> The default connector in fckconfig.js has been changed from 
    76                         ASP to PHP. If you are using Asp remember to change the _FileBrowserLanguage and _QuickUploadLanguage settings 
    77                         in your fckconfig.js. 
    78                         </li>    
    79                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/125">#125</a>] The size of individual table columns 
    80                         can now be changed by dragging on table cell borders, with the "dragresizetable" plugin. 
    81                         </li> 
     48                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/454">#454</a>] The file 
     49                        browser and upload connectors have been unified so they can reuse the same configuration 
     50                        settings.<br> 
     51                        [<a target="_blank" href="http://dev.fckeditor.net/ticket/865">#865</a>] The asp 
     52                        and php connectors have been improved so it's easy to select the location of the 
     53                        destination folder for each file type, and it's no longer necessary to use the "file", 
     54                        "image", "flash" subfolders<br> 
     55                        <span style="color: #ff0000">Attention:</span> The location of all the connectors 
     56                        have been changed in the fckconfig.js file. Please check your settings to match 
     57                        the current ones. Also review carefully the config file for your server language. 
     58                </li> 
     59                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/688">#688</a>] Now the 
     60                        Perl quick upload is available.</li> 
     61                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/575">#575</a>] The Python 
     62                        connector has been rewritten as a WSGI app to be fully compatible with the latest 
     63                        python frameworks and servers. The QuickUpload feature has been added as well as 
     64                        all the features available in the PHP connector. Thanks to Mariano Reingart.</li> 
     65                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/561">#561</a>] The asp 
     66                        connector provides an AbsolutePath setting so it's possible to set the url to a 
     67                        full domain or a relative path and specify that way the physical folder where the 
     68                        files are stored..</li> 
     69                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/333">#333</a>] The quick 
     70                        upload now can use the same ServerPath parameter as the full connector.</li> 
     71                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/199">#199</a>] The AllowedCommands 
     72                        configuration setting is available in the asp and php connectors so it's possible 
     73                        to disallow the upload of files (although the "select file" button will still be 
     74                        available in the file browser).</li> 
     75                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/100">#100</a>] A new configuration 
     76                        directive "FCKConfig.EditorAreaStyles" has been implemented to allow setting editing 
     77                        area styles from JavaScript. </li> 
     78                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/102">#102</a>] HTML code 
     79                        generated by the "Paste As Plain Text" feature now obeys the EnterMode setting.</li> 
     80                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/163">#163</a>] <span 
     81                        style="color: #ff0000">Attention:</span> The default connector in fckconfig.js has 
     82                        been changed from ASP to PHP. If you are using Asp remember to change the _FileBrowserLanguage 
     83                        and _QuickUploadLanguage settings in your fckconfig.js. </li> 
     84                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/125">#125</a>] The size 
     85                        of individual table columns can now be changed by dragging on table cell borders, 
     86                        with the "dragresizetable" plugin. </li> 
    8287                <li>The EditorAreaCSS config option can now also be set to a string of paths separated 
    8388                        by commas.</li> 
     
    9095                        The editor now takes care to not create invalid nested block elements, like creating 
    9196                        &lt;form&gt; or &lt;hr&gt; inside &lt;p&gt;. &nbsp;</li> 
    92                 <li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1511298&group_id=75348&atid=543655">SF  
     97                <li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1511298&group_id=75348&atid=543655">SF 
    9398                        Patch 1511298</a>] The CF Component failed on CFMX 6.0</li> 
    94                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/639">#639</a>] If the  
     99                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/639">#639</a>] If the 
    95100                        FCKConfig.DefaultLinkTarget setting was missing in fckconfig.js the links has target="undefined".</li> 
    96101                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/497">#497</a>] Fixed EMBED 
    97102                        attributes handling in IE.</li> 
    98                 <li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1315722&group_id=75348&atid=543655">SF  
    99                         Patch 1315722</a>] Avoid getting a cached version of the folder contents after uploading a file</li> 
    100                 <li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1386086&group_id=75348&atid=543655">SF  
    101                         Patch 1386086</a>] The php connector has been protected so mkdir doesn't fail if there are double slashes.</li> 
    102                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/943">#943</a>] The PHP connector now specifies  
    103                         that the included files are relative to the current path.</li> 
    104                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/560">#560</a>] The PHP connector will work better if the 
    105                         connector or the userfiles folder is a symlink.</li> 
    106                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/784">#784</a>] Fixed an uninitialized $php_errormsg  
    107                         in the PHP connector.</li> 
    108                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/802">#802</a>] The replace dialog will now advance its searching 
    109                         position correctly and is able to search for strings spanning across multiple inline tags.</li> 
    110                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/944">#944</a>] The _samples didn't work directly from 
    111                         the Mac filesystem.</li> 
    112                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/946">#946</a>] Toolbar images didn't show in non-IE 
    113                         browsers if the path contained a space.</li> 
    114                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/291">#291</a>]  
    115                 [<a target="_blank" href="http://dev.fckeditor.net/ticket/395">#395</a>]  
    116                 [<a target="_blank" href="http://dev.fckeditor.net/ticket/932">#932</a>] Clicking outside the editor it was possible 
    117                         to paste or apply formating to the rest of the page in IE.</li> 
    118                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/137">#137</a>] Fixed FCKConfig.TabSpaces being ignored, 
    119                         and weired behaviors when pressing tab in edit source mode.</li> 
    120                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/268">#268</a>] Fixed special XHTML characters present  
    121                         in event attribute values being converted inappropriately when switching to source view.</li> 
    122                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/272">#272</a>] The toolbar was cut sometimes in IE to 
    123                         just one row if there are multiple instances of the editor.</li> 
    124                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/515">#515</a>] Tables in Firefox didn't inherint font 
    125                         styles properly in Standards mode.</li> 
    126                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/321">#321</a>] If FCKeditor is initially hidden in Firefox 
    127                         it will no longer be necessary to call the oEditor.MakeEditable() function.</li> 
    128                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/299">#299</a>] The 'Browse Server' button in the Image 
    129                         and Flash dialogs was a little too high.</li> 
    130                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/931">#931</a>] The BodyId and BodyClass configuration  
    131                         settings weren't applied in the preview window.</li> 
    132                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/583">#583</a>] The "noWrap" attribute for table cells  
    133                         was getting an empty value in Firefox. Thanks to geirhelge.</li> 
    134                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/141">#141</a>] Fixed incorrect startup focus in Internet 
    135                         Explorer after page reloads. </li> 
    136                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/143">#143</a>] Fixed browser lockup when the user writes 
    137                         &lt;!--{PS..x}&gt; into the editor in source mode. </li> 
    138                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/174">#174</a>] Fixed incorrect positioning of FCKeditor 
    139                         in full screen mode. </li> 
     103                <li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1315722&group_id=75348&atid=543655">SF 
     104                        Patch 1315722</a>] Avoid getting a cached version of the folder contents after uploading 
     105                        a file</li> 
     106                <li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1386086&group_id=75348&atid=543655">SF 
     107                        Patch 1386086</a>] The php connector has been protected so mkdir doesn't fail if 
     108                        there are double slashes.</li> 
     109                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/943">#943</a>] The PHP 
     110                        connector now specifies that the included files are relative to the current path.</li> 
     111                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/560">#560</a>] The PHP 
     112                        connector will work better if the connector or the userfiles folder is a symlink.</li> 
     113                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/784">#784</a>] Fixed an 
     114                        uninitialized $php_errormsg in the PHP connector.</li> 
     115                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/802">#802</a>] The replace 
     116                        dialog will now advance its searching position correctly and is able to search for 
     117                        strings spanning across multiple inline tags.</li> 
     118                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/944">#944</a>] The _samples 
     119                        didn't work directly from the Mac filesystem.</li> 
     120                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/946">#946</a>] Toolbar 
     121                        images didn't show in non-IE browsers if the path contained a space.</li> 
     122                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/291">#291</a>] [<a 
     123                        target="_blank" href="http://dev.fckeditor.net/ticket/395">#395</a>] [<a target="_blank" 
     124                                href="http://dev.fckeditor.net/ticket/932">#932</a>] Clicking outside the editor 
     125                        it was possible to paste or apply formating to the rest of the page in IE.</li> 
     126                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/137">#137</a>] Fixed FCKConfig.TabSpaces 
     127                        being ignored, and weired behaviors when pressing tab in edit source mode.</li> 
     128                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/268">#268</a>] Fixed special 
     129                        XHTML characters present in event attribute values being converted inappropriately 
     130                        when switching to source view.</li> 
     131                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/272">#272</a>] The toolbar 
     132                        was cut sometimes in IE to just one row if there are multiple instances of the editor.</li> 
     133                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/515">#515</a>] Tables 
     134                        in Firefox didn't inherint font styles properly in Standards mode.</li> 
     135                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/321">#321</a>] If FCKeditor 
     136                        is initially hidden in Firefox it will no longer be necessary to call the oEditor.MakeEditable() 
     137                        function.</li> 
     138                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/299">#299</a>] The 'Browse 
     139                        Server' button in the Image and Flash dialogs was a little too high.</li> 
     140                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/931">#931</a>] The BodyId 
     141                        and BodyClass configuration settings weren't applied in the preview window.</li> 
     142                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/583">#583</a>] The "noWrap" 
     143                        attribute for table cells was getting an empty value in Firefox. Thanks to geirhelge.</li> 
     144                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/141">#141</a>] Fixed incorrect 
     145                        startup focus in Internet Explorer after page reloads. </li> 
     146                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/143">#143</a>] Fixed browser 
     147                        lockup when the user writes &lt;!--{PS..x}&gt; into the editor in source mode. </li> 
     148                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/174">#174</a>] Fixed incorrect 
     149                        positioning of FCKeditor in full screen mode. </li> 
    140150                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/978">#978</a>] Fixed a 
    141151                        SpellerPages error with ColdFusion when no suggestions where available for a word.</li> 
    142                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/977">#977</a>] The "shape" attribute of &lt;area&gt; had its 
    143                         value changed to uppercase in IE.</li> 
     152                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/977">#977</a>] The "shape" 
     153                        attribute of &lt;area&gt; had its value changed to uppercase in IE.</li> 
    144154                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/996">#996</a>] "OnPaste" 
    145155                        event listeners will now get executed only once.</li> 
    146                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/289">#289</a>] Removed debugging popups from page load regarding 
    147                         JavaScript and CSS loading errors.</li> 
    148                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/328">#328</a>]  
    149                         [<a target="_blank" href="http://dev.fckeditor.net/ticket/346">#346</a>]  
    150                         [<a target="_blank" href="http://dev.fckeditor.net/ticket/404">#404</a>]  
    151                         Fixed a number of problems regarding &lt;pre&gt; blocks: 
     156                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/289">#289</a>] Removed 
     157                        debugging popups from page load regarding JavaScript and CSS loading errors.</li> 
     158                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/328">#328</a>] [<a 
     159                        target="_blank" href="http://dev.fckeditor.net/ticket/346">#346</a>] [<a target="_blank" 
     160                                href="http://dev.fckeditor.net/ticket/404">#404</a>] Fixed a number of problems 
     161                        regarding &lt;pre&gt; blocks: 
    152162                        <ol> 
    153                                 <li>Leading whitespaces and line breaks in &lt;pre&gt; blocks are trimmed when the user switches 
    154                                 between editor mode and source mode;</li> 
    155                                 <li>Pressing Enter inside a &lt;pre&gt; block would split the block into two, but the expected  
    156                                 behavior is simply inserting a line break;</li> 
    157                                 <li>Simple line breaks inside &lt;pre&gt; blocks entered in source mode are being turned into  
    158                                 &lt;br&gt; tags when the user switches to editor mode and back.</li> 
     163                                <li>Leading whitespaces and line breaks in &lt;pre&gt; blocks are trimmed when the user 
     164                                        switches between editor mode and source mode;</li> 
     165                                <li>Pressing Enter inside a &lt;pre&gt; block would split the block into two, but the 
     166                                        expected behavior is simply inserting a line break;</li> 
     167                                <li>Simple line breaks inside &lt;pre&gt; blocks entered in source mode are being turned 
     168                                        into &lt;br&gt; tags when the user switches to editor mode and back.</li> 
    159169                        </ol> 
    160170                </li> 
    161                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/581">#581</a>] Fixed the issue where the  
    162                         "Maximize the editor size" toolbar button stops working if any of the following occurs: 
     171                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/581">#581</a>] Fixed the 
     172                        issue where the "Maximize the editor size" toolbar button stops working if any of 
     173                        the following occurs: 
    163174                        <ol> 
    164175                                <li>There exists a form input whose name or id is "style" in FCKeditor's host form;</li> 
    165176                                <li>There exists a form input whose name or id is "className" in FCKeditor's host form;</li> 
    166                                 <li>There exists a form and a form input whose name of id is "style" in the editing frame.</li> 
     177                                <li>There exists a form and a form input whose name of id is "style" in the editing 
     178                                        frame.</li> 
    167179                        </ol> 
    168                         </li> 
    169                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/183">#183</a>] Fixed the issue when FCKeditor is being 
    170                         executed in a custom application with the WebBrowser ActiveX control, hiding the WebBrowser control would  
    171                         incorrectly invoke FCKeditor's cleanup routines, causing FCKeditor to stop working.</li> 
    172                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/539">#539</a>] Fixed the issue where right clicking on 
    173                         a table inside the editing frame in Firefox would cause the editor the scroll to the top of the document.</li> 
    174                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/523">#523</a>] Fixed the issue where, under certain 
    175                         circumstances, FCKeditor would obtain focus at startup even though FCKConfig.StartupFocus is set to false. </li> 
    176                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/393">#393</a>] Fixed the issue where if an inline tag 
    177                         is at the end of the document, the user would have no way of escaping from the inline tag if he continues 
    178                         typing at the end of the document. FCKeditor's behaviors regarding inline tags has been made to be more like 
     180                </li> 
     181                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/183">#183</a>] Fixed the 
     182                        issue when FCKeditor is being executed in a custom application with the WebBrowser 
     183                        ActiveX control, hiding the WebBrowser control would incorrectly invoke FCKeditor's 
     184                        cleanup routines, causing FCKeditor to stop working.</li> 
     185                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/539">#539</a>] Fixed the 
     186                        issue where right clicking on a table inside the editing frame in Firefox would 
     187                        cause the editor the scroll to the top of the document.</li> 
     188                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/523">#523</a>] Fixed the 
     189                        issue where, under certain circumstances, FCKeditor would obtain focus at startup 
     190                        even though FCKConfig.StartupFocus is set to false. </li> 
     191                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/393">#393</a>] Fixed the 
     192                        issue where if an inline tag is at the end of the document, the user would have 
     193                        no way of escaping from the inline tag if he continues typing at the end of the 
     194                        document. FCKeditor's behaviors regarding inline tags has been made to be more like 
    179195                        MS Word's: 
    180196                        <ol> 
    181                                 <li>If the caret is moved to the end of a hyperlink by the keyboard, then hyperlink mode is disabled.  
    182                                 </li> 
    183                                 <li>If the caret is moved to the end of other styled inline tags by any key other than the End key  
    184                                 (like bold text or italic text), the original bold/italic/... modes would continue to be effective.  
    185                                 </li> 
    186                                 <li>If the caret is moved to the end of other styled inline tags by the End key, all style tag modes  
    187                                 (e.g. bold, italic, underline, etc.) would be canceled. This is not consistent with MS Word, but  
    188                                 provides a convenient way for the user to escape the inline tag at the end of a line.</li> 
     197                                <li>If the caret is moved to the end of a hyperlink by the keyboard, then hyperlink 
     198                                        mode is disabled. </li> 
     199                                <li>If the caret is moved to the end of other styled inline tags by any key other than 
     200                                        the End key (like bold text or italic text), the original bold/italic/... modes 
     201                                        would continue to be effective. </li> 
     202                                <li>If the caret is moved to the end of other styled inline tags by the End key, all 
     203                                        style tag modes (e.g. bold, italic, underline, etc.) would be canceled. This is 
     204                                        not consistent with MS Word, but provides a convenient way for the user to escape 
     205                                        the inline tag at the end of a line.</li> 
    189206                        </ol> 
    190                         </li> 
    191                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/338">#338</a>] Fixed the issue where the configuration 
    192                         directive FCKConfig.ForcePasteAsPlainText is ignored when new contents are pasted into the editor via  
    193                         drag-and drop from outside of the editor. 
    194                         </li> 
    195                 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1026">#1026</a>] Fixed the issue where the cursor or 
    196                         selection positions are not restored with undo/redo commands correctly in IE, under some circumstances. 
    197                         </li> 
     207                </li> 
     208                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/338">#338</a>] Fixed the 
     209                        issue where the configuration directive FCKConfig.ForcePasteAsPlainText is ignored 
     210                        when new contents are pasted into the editor via drag-and drop from outside of the 
     211                        editor. </li> 
     212                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1026">#1026</a>] Fixed 
     213                        the issue where the cursor or selection positions are not restored with undo/redo 
     214                        commands correctly in IE, under some circumstances. </li> 
     215                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1184">#1184</a>] Home 
     216                        and End keys are working properly for numeric fields in dialogs. </li> 
    198217        </ul> 
    199218        <h3>