Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4601 - 4700 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#4858 Resizing flash objects doesn't work properly Garry Yao Bug Normal CKEditor 3.1 General
Description

Steps to reproduce

  • start with the following source:
    <p><object width="660" height="525"><param name="movie"
     value="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1"></param><param
     name="allowFullScreen" value="true"></param><param
     name="allowscriptaccess" value="always"></param><embed
     src="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1"
     type="application/x-shockwave-flash" allowscriptaccess="always"
     allowfullscreen="true" width="660" height="525"></embed></object></p>
    
  • switch to wysiwyg mode
  • resize fake object with your mouse
  • result:
    <p><object height="525" width="660"><param name="movie" 
    value="http://www.youtube.com/v/HwNXvQ2OK_k&amp;hl=pl_PL&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;border=1" /></object><param 
    name="allowFullScreen" value="true" /><param 
    name="allowscriptaccess" value="always" /><embed 
    allowfullscreen="true" allowscriptaccess="always" height="217" 
    src="http://www.youtube.com/v/HwNXvQ2OK_k&amp;hl=pl_PL&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;border=1" 
    type="application/x-shockwave-flash" width="273"></embed></p>
    
    <embed> is resized properly, but <object> has still old attributes
#4859 Flash object elements are broken in FF Garry Yao Bug Normal CKEditor 3.1 General
Description

Confirmed on FF 3.5.5 @ WinXP/SP3.

Steps to reproduce

  • start with
    <p><object width="660" height="525">
    <param name="movie" value="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1"></param>
    <param name="allowFullScreen" value="true"></param>
    <param name="allowscriptaccess" value="always"></param>
    <embed src="http://www.youtube.com/v/HwNXvQ2OK_k&hl=pl_PL&fs=1&color1=0x234900&color2=0x4e9e00&border=1"
     type="application/x-shockwave-flash" allowscriptaccess="always"
     allowfullscreen="true" width="660" height="525"></embed>
    </object></p>
    
  • switch to source mode
  • result:
    <p><object height="525" width="660">
    <param name="movie" value="http://www.youtube.com/v/HwNXvQ2OK_k&amp;hl=pl_PL&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;border=1" />
    </object>
    <param name="allowFullScreen" value="true" />
    <param name="allowscriptaccess" value="always" />
    <embed allowfullscreen="true" allowscriptaccess="always" height="525" src="http://www.youtube.com/v/HwNXvQ2OK_k&amp;hl=pl_PL&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00&amp;border=1" 
    type="application/x-shockwave-flash" width="660">
    </embed></p>
    
    (<embed> and some <param> elements are outside <object> element)
#4860 SpellChecker options not documented Task Normal UI : Spell Checker
Description

There are some "hidden" config features that are not documented in the code, and thus not visible in the documentation: http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html

In scayt plugin:

CKEDITOR.config.scayt_maxSuggestions
CKEDITOR.config.scayt_autoStartup

In wsc plugin:

CKEDITOR.config.wsc_customerId
CKEDITOR.config.wsc_customLoaderScript
#4861 unclosed tag on docs page Bug Normal General
Description

on page http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.dom.element.html#breakParent in breakParent section is unclosed tag which change formating on text after it

#4862 locale name 'en-uk' should be 'en_GB' Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 UI : Language
Description

The file ./lang/en-uk.js should be called en_GB (or en-gb by the looks of how you do it here). It's pretty much never referred to as 'uk' but 'gb' in locales.

#4863 Kama skin: IFrame created in iframedialog plugin doesn't stretch to 100% height in FF3.5 Minh Nguyen Bug Normal CKEditor 3.3 UI : Dialogs
Description

When creating a new plugin that utilizes the iframedialog plugin, you have to pass a Pixel width and height:

CKEDITOR.plugins.add('dialog_name',{
    requires: ['iframedialog'],
    init:function(a){
        CKEDITOR.dialog.addIframe('dialog_name', 
                                  'Smiley',
                                  this.path+'lister.php',550,300,
                                  function(){/*oniframeload*/})
       // etc. etc.

iframedialog will assign those values to the dialog only and not to the iframe. The iframe gets assigned 100% width and height in the final source code.

In the kama skin, but not in the office2003 and v2 skins, this will lead to the iframe being only 160 Pixels tall in Firefox 3.5. It works as expected in Internet Explorer 8.

A fix that worked for me in Firefox 3.5 was to modify plugins/iframedialog/plugin.js and set a fixed width to the iframe:

CKEDITOR.dialog.addIframe = function( name, title, src, width, height, onContentLoad )
        {
            var element =
            {
                type : 'iframe',
                src : src,
                width : '100%',
                height : height  // CHANGED 
            };

The attached screen shot is using a customized template but checked with the original kama template as well.

Feel free to contact me on follow-up questions.

Thanks for providing this awesome product.

#4864 [IE] Improper caret position after inserting HR at the very end Bug Normal General
Description

Seems to be the same issue with #1213, but now it's with IE8. IE8's IE7 compatible mode works fine.

To Reproduce

  • Open CKEditor sample page with IE8
  • Move caret to the end of text
  • Click HR button from toolbar
  • Caret is now blinking above the first line
#4865 Typing in source area in IE stuck with long document Bug Normal CKEditor 3.3 General
Description

Environment

WinXP, IE.

Reproducing Procedures

  1. Open any sample page and load in 'Source' mode the codes in the attached file:
  2. Start typing anywhere in the source area.
  • Actual Result: A high latency is observed when typing, make the editing almost impossible.
#4866 [FF] Improper caret position after deleting horizontal line Bug Normal General
Description

Caret moves to the line before the HR, it should moves to the line after the deleted HR.

To Reproduce

  • Open CKEditor sample page with FF3.5
  • Insert HR between "... sample text." and "You are using..."
  • Carefully click the horizontal line
    • It is really hard to click the thin line, but it can be selected
  • Delete HR by 'DEL' key
  • Caret moves to improper position
#4867 Unable to delete horizontal line by BackSpace key Bug Normal General
Description

To Reproduce

  • Open CKEditor sample page with FF3.5
  • Insert HR at the very beginning
  • Press 'BackSpace' key, HR is not deleted
  • Press 'BackSpace' again, caret is moved to the end of text
#4868 Unnecessary div after pasting from OpenOffice Bug Normal Core : Pasting
Description

Unnecessary div after pasting from OpenOffice.

Reproduce

  1. Create list in OpenOffice Writer (one element is fine).
  2. Open Paste From Word dialog.
  3. Paste content and submit the dialog.

Result for each list element:

<div align="left" style="margin-bottom: 0in;">
			Foo</div>

Reproduced in FF 3.0, Chrome.

#4869 Cannot Create Folder & Uploaded File does not appear Bug Normal File Browser
Description

How to create and delete folder. I click on the icon. It does not work.

Also, I try to upload file. Once uploaded, I click folder "file", the uploaded file does not appear. Why?

Please assist me. Thanks.

Nazir

#4870 [Chrome] Paste From Word textarea broken in Standards mode Bug Normal UI : Dialogs
Description

In Chrome, Paste From Word dialog's textarea is broken in Standards mode. It's fine in Quirks. Please refer to attached screenshot.

#4871 Chrome: Paste from Word or Plain Text have no effect Bug Normal CKEditor 3.1 Core : Pasting
Description

With Chrome, the Paste from Word and Paste as Plain text paste nothing into the document.

Confirmed with Chrome 4.0. Works well with Safari 3.2.2.

#4872 FF: N is null after clearing browser cache Bug Normal General
Description

This issue happens when running locally the compiled version of CKEditor (in Firefox 3.5.5 @ Win XP / SP3), same problem existed on 3.0.1. I have this problem only locally, I can't reproduce it for example on http://ckeditor.com.demo.

When I clear browser's cache, open replacebycode.html, then I get this error:

N is null
anonymous(Window about:blank)ckeditor.js (line 72)
anonymous(Object name=load sender=Object data=Object)ckeditor.js (line 72)
anonymous(Object name=o, Object $=Event load, function(), function())ckeditor.js (line 6)
anonymous("load", Object $=Event load, Object name=j)ckeditor.js (line 6)
anonymous(load )ckeditor.js (line 10)
[Break on this error] var E=B.fixBlock(true,x.config.enterMode...}catch(T){}K=w.window=new d.window(K);\r\n

This issue disappears after clicking the refresh button (or F5) twice in the browser.

#4873 IE: Cannot edit content inside of a div with fixed width Bug Normal General
Description

Confirmed in IE8 @ XP/SP3.

Steps to reproduce

  • start with the following source:
    <div style="width: 200px">test</div>
    
  • switch to wysiwyg mode
  • try changing the content of a div
  • result: clicking on a div simply brings up the resize handles and typing inside of it is not possible.

Same problem exists in FCKeditor.

#4875 Line break v. paragraph New Feature Normal General
Description

in some instances a line break is more appropriate than a paragraph, yet there is no method other than to open 'source' and edit the html.

A possible solution would be to have the enter key by default create a line break with the first push, then a paragraph if hit twice.

#4876 Better support for pasting text with tabs New Feature Normal Core : Pasting
Description

Problem: when pasting text with a tab, tab is changed into one space in IE (or space surrounded by <span> in Safari).

Sometimes users are using tabs to indent text. After creating text in notepad (for example), they copy that text into the editor... and notice the problem that text is not anymore indented as they expected it to be (tab is not shown as 4 spaces or something like that).

Instead of changing tabs automatically into one space, we could change them into configurable number of spaces (in a similar way like it is possible to set editor.config.tabSpaces).

Steps to reproduce

  • create the following text in notepad:
    Test<tab>Test
    Test<space><space><space><space>Test
    
    (where <tab> is simply a tab)
  • copy and paste it in the editor
  • result in IE8:
    <p>
    	Test&nbsp;Test<br />
    	Test&nbsp;&nbsp;&nbsp; Test</p>
    
    result in Safari 4.0.4:
    <p>
    	Test<span class="Apple-tab-span" style="white-space:pre"> </span>Test</p>
    <p>
    	Test &nbsp; &nbsp;Test</p>
    

#4877 IE: in quirks mode, with office2003 skin, CKEditor displays source code in one long line Minh Nguyen Bug Normal CKEditor 3.3 General
Description

When office2003 skin is enabled, CKEditor has a problem in IE with source-view when in quirks mode.

The source is not indented correctly and instead it's written in one long line.

#4879 Dutch translation for CKFinder New Feature Normal UI : Language
Description

In the attathed file you will find the dutch translation for ckfinder Version 1.4.1.1.

#4880 CKEditor changes tag style inside html comment with cke_protected Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.5.3 Core : Output Data
Description

Paste the following content in source mode, switch to WYSIWYG and back to source.

<style type="text/css">
<!--
.bloco1_titulo { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; color:#FFFFFF; font-weight:bold; background-color:#333366; padding-left:10px; }
-->
</style>

Result:

<p>
	<style type="text/css">
<!--{cke_protected}%3C!%2D%2D%0A.bloco1_titulo%20%7B%20font-family%3AVerdana%2C%20Arial%2C%20Helvetica%2C%20sans-serif%3B%20font-size%3A10px%3B%20color%3A%23FFFFFF%3B%20font-weight%3Abold%3B%20background-color%3A%23333366%3B%20padding-left%3A10px%3B%20%7D%0A%2D%2D%3E-->
</style></p>

Expected result: No change

Each time you click on source button, the result grows!

#4881 IE: Error when cutting hr or table Garry Yao Bug Normal CKEditor 3.3 General
Description

With IE:

  1. Insert an horizontal rule or a table in the document.
  2. Select the inserted element.
  3. Right-click for the context menu.
  4. Select "Cut".

A js error is thrown.

#4882 Auto-detect paste from Word is not working on WebKit Garry Yao Bug Normal CKEditor 3.1 Core : Pasting
Description

The automatic cleanup on paste from Word is working well in all browsers, except WebKit. Tested with Safari 3.2.2 and Chrome 4.

#4883 IE: Word cleanup leaves margins Garry Yao Bug Normal CKEditor 3.1 Plugin : Paste from Word
Description
  1. Open the attached document on Word.
  2. Hit CTRL+A to select all.
  3. Hit CTRL+C to copy.
  4. Paste in the editor.

Actual results:

<p style="margin: 0cm 0cm 10pt">
	Testing Word Cleanup</p>
<p style="margin: 0cm 0cm 10pt">
	Testing Word Cleanup</p>
<p style="margin: 0cm 0cm 10pt">
	Testing Word Cleanup</p>

Expected results (ok in Firefox):

<p>
	Testing Word Cleanup</p>
<p>
	Testing Word Cleanup</p>
<p>
	Testing Word Cleanup</p>
#4884 Spell Check As You Type (SCAYT) causes IE to Scroll Bug Normal CKEditor 3.3 UI : Spell Checker
Description

The following issue happens when using Internet Explorer (tested IE6 and IE8), both CKEditor 3.0.1 and 3.0.2:

When text is typed in a CKEditor editor and I scroll to the top of the page, after about 2.5 seconds, the page will automatically scroll back down to the CKEditor editor. This has to do with the spell check as you type happening on a delay. When the spell check triggers, it shifts the page down to the editor. Any ideas on how to eliminate this problem (while keeping SCAYT turned on)? Can the delay be adjusted from the time text is entered to the time the spelling is checked? IE6 is the target browser.

Thank you, Jared

#4885 Multiple file import in CKFinder New Feature Normal General
Description

Hi,

My customers would like to be able to multiple import files in the CKFinder window. Since TinyMCE support it, please hurry to implement this usefull functionnalitie, else i'll consider change of plateform because my customers are crying on me :/

Aneta Jastrzebska (Business Manager of CKSource) said me to post here, i'm not sure if it's the right place, but let's try it.

#4886 Extra line break inside of created links Frederico Caldeira Knabben Bug Normal CKEditor 3.2 General
Description

When creating links, CKEditor adds <br /> inside of the <a> tag. Confirmed in FF, Safari and Opera.

Steps to reproduce

  • go to http://ckeditor.com/demo
  • press "Ctrl + A" and then "Del" to delete all contents
  • click on the "Link" button, type some url, like ckeditor.com
  • result:
    <p>
    	<a href="http://ckeditor.com">http://ckeditor.com<br />
    	</a></p>
    
#4887 Paste: Font face and sizes not recognised on pasted content from word Bug Normal Core : Pasting
Description

When copying formatted text (font face & font size set) from Word, the font face and/or size is not recognized by the editor. Paste config options used:

config.pasteFromWordRemoveFontStyles = false; 
config.pasteFromWordRemoveStyles = false;

In the case of the font size, the pasted content uses points whereas the editor uses pixels.

#4888 FF2: Horizontal line breaks caret movement Bug Normal General
Description

After inserting Horizontal Line, caret can't be move as supposed.

Reproduce

  1. Use following content
    <p>
    	foo</p>
    <p>
    	bar</p>
    <p>
    	baz</p>
    <hr />
    <p>
    	^bar</p>
    
  2. Press left arrow to focus HR in previous line.
  3. Try to use right / left arrow - no effect.
  4. Press up arrow - caret is moved to beginning of the document, instead of the "baz" paragraph.

Reproduced in Firefox2.

#4889 FF2: New Page creates 3 undos Garry Yao Bug Normal CKEditor 3.1 Core : Undo & Redo
Description

Reproduce

  1. Open editor with any content
  2. Use New Page button
  3. Try to undo step 2. After pressing Undo once - nothing happens.
  4. Press Undo 3 times in short time - previous content will be visible again.

Expected: Previous content is visible after one Undo.

Reproduced in Firefox2.

#4890 Add rel attribute to the Link dialog Sa'ar Zac Elias New Feature Normal CKEditor 3.5.3 General
Description

The rel attribute specifies the relationship between the current document and the linked document.

The "rel" attribute is usually used to tell search engines to not follow ("nofollow") some links.

#4892 [IE] Paste: Table alignment is being applied to table content Garry Yao Bug Normal CKEditor 3.1 Plugin : Paste from Word
Description

Tables with an explicit alignment set are pasted with a wrapping div to set that alignment. When the alignment is center or right, various problems are encountered after pasting.

  1. All content inside cells is aligned according to the wrapping div's align setting i.e. center or right.
  1. The option to set specific paragraph alignment in a cell to left is not enabled or not possible. Although, it is possible to set center, right and justify.

Reproduced in IE 6 & 7.

#4893 Editor should understand cell alignment styles Garry Yao Bug Normal CKEditor 3.2 UI : Dialogs
Description

The editor should be able to manipulate the alignment options of table cells that have been set using CSS instead of attributes. e.g. vertical-alignment instead of valign.

One place where this is required is working with tables that have been copied from Word, although other scenarios would warrant such a feature too.

#4894 Paste: problems with custom styles Bug Normal Plugin : Paste from Word
Description

When copying text with custom styles applied, all styles are ignored in all browsers except IE.

In IE, only paragraph alignment is lost, all other styles are preserved.

See attached test document.

#4895 Paste: Problem with simple nested lists when using measurment units: inches or picas Garry Yao Bug Normal CKEditor 3.1 Plugin : Paste from Word
Description

This problem occurs when copying any simple list that has sublists and the "Measurement Units" option is set to Inches or Picas in Word.

Sublists can collapse or be created incorrectly, depending on the combinations of font sizes in the list. Problems seem to occur when using font sizes other than 10, 11 and 12.

Small set of sample tests attached.

#4896 Paste: Outline Numbered lists do not copy correctly Garry Yao Bug Normal CKEditor 3.1 Core : Pasting
Description

Lists with more than 2 levels and that have the style "Outline Numbered" do not paste correctly. Levels beyond the 2nd level collapse.

This occurs when measurement units is set to: cm, mm or pt.

See attached tc.

#4897 [IE] Paste: Some lists with alpha numberings cause problems Bug Normal Core : Pasting
Description

In some cases, lists that use alphabetic characters for numbering lose their style for individual list positions while retaining the alphabetic numbering in the rest of the list.

See attached document for examples.

#4898 Paste: After pasting a table from word it is not possible to navigate outside the table Garry Yao Bug Normal CKEditor 3.3 General
Description

After inserting a table using the paste function, it is not possible to navigate out of the table and continue editing the document.

Reproduced in FF.

#4899 Can not undo 'formatted' paragraph format Garry Yao Bug Normal CKEditor 3.1 Core : Undo & Redo
Description

Steps to reproduce:

  1. Open nightly build
  2. Add some text
  3. Apply 'formatted' paragraph foramt
  4. Use undo

Result: The format action is not undone.

For other paragraph format options the undo action does undo the formatting.

#4900 [IE] Lock ratio padlock inconsistent between FF and IE Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

Reproduce in FF and IE:

  1. Open nightly build, ajax sample
  2. Insert an image
  3. Unlock ratio and specify custom values for width and height
  4. Remove the editor
  5. Create editor
  6. Edit the image

Result:
FF: the ratio padlock remains unlocked
IE: the ratio padlock is locked

#4901 Can not modify target window properties of a link Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

When the target option of a link is Popup Window, the values for the Popup Window Features and sizes can not be modified after the first edit of the properties.

To reproduce:

  1. Create a new link
  2. Edit the target as Popup Window
  3. Select some Popup Window Features
  4. Set a width and height
  5. Click OK
  6. Remove editor & create editor
  7. Edit the link
  8. Modify the original edits to target, including width and height
  9. Click OK
  10. Edit the link again to confirm options at step 8. are kept.

Result: The options are not modified in step 8. but remain as set in steps 3 & 4

#4904 Paste from dialog throws error Garry Yao Bug Normal CKEditor 3.1 Core : Pasting
Description

Environment

All IE versions

Reproducing Procedures

  1. Open any sample page, click on 'Paste' command and deny clipboard security dialog to force open paste dialog.
  2. Paste something into the dialog, and click 'Ok'.
  • Actual Result: JavaScript Error thrown.
#4905 Paste plain text from dialog result incorrect in IE Garry Yao Bug Normal CKEditor 3.1 Core : Pasting
Description

Environment

All IE versions

Reproducing Procedures

  1. Open any sample page, click on 'New Page' to clear out document;
  2. Click on 'Paste as Plain Text' command and deny clipboard security dialog to force open dialog.
  3. Paste the following contents into the dialog, and click 'Ok'.
    Line1
    
    Line2
    
  • Actual Result:
    <p>Line2Line1</p>
    
  • Expected Result:
    <p>Line1</p>
    <p>Line2</p>
    
#4906 Paste: No cleanup / Internal error TC Garry Yao Bug Normal CKEditor 3.1 Core : Pasting
Description

By pasting the attached document (Select All > Paste) in IE 8 Compatibility Mode, the cleanup error is thrown.

#4907 Shared status bar grip layout Bug Normal CKEditor 3.1 General
Description

Shared status bar grip layout is a bit broken in Chrome and FF3. Please refer to attached screenshot.

#4908 FF2: Shared toolbar sample broken Bug Normal General
Description

In Firefox2, shared toolbar sample is broken. Please refer to attached screenshot.

This includes both toolbar and status bar.

It works fine in FF3.

#4909 Editable area overflows editor space when status bar in shared space Bug Normal UI : Toolbar
Description

In Chrome, editable area overflows editor space when status bar is in shared space. It depends only on the status bar, not the toolbar.

Please refer to attached screenshot.

#4910 Paste command scrolls document in IE Garry Yao Bug Normal CKEditor 3.3 Core : Pasting
Description

There's an undesired document scroll-to-end effect when the IE security dialog is pending decision after click on 'Paste' command.
While it will vanish as soon as the decision is made.

#4911 shared space sample page layout problem in IE quirks Garry Yao Bug Normal CKEditor 3.1 UI : Toolbar
Description

The following layout problems are observed:

  1. The top shared space is not high enough to include all toolbar items, which make the 3rd row of toolbar items are overflowed.
  2. The editor spaces are also overflowing horizontally.
#4912 Spell Check Freeze Bug Normal General
Description

Please note, CKEditor is being used on a company intranet page.

Clicked spell checker, a Security Warning window displays that "The current Web page is trying to open a site on your intranet. Do you want to allow this?" Clicking Yes or No causes the browser to freeze- the window with the "Loading" page froze and browser crashed. Must click the [X] to End the Program because "This program is not responding."

Env. Info IE 6.0.3790.1830 Windows Server 2003 R2 64 bit Service Pack 2

#4913 Add word counter New Feature Normal General
Description

Add the function of counting word which like MS word ,this's very useful for the editor.

#4914 Fullpage is missing docType in output Bug Normal Core : Output Data
Description

The following behavior is inconsistent with v2, is it a bug?

Reproducing Procedures

  1. Open full page sample, switch to 'Source' mode;
  • Actual Result: The docType declaration specified by 'config.docType' is missing from output.
#4915 Adding document stylesheet in fullpage sample Task Normal General
Description

We should include the same stylesheet used by 'config.contentsCss' in fullpage source to avoid any confusion also to keep consistent with other samples.

#4916 Editors overflow in IE quirks Garry Yao Bug Normal CKEditor 3.1 UI : Toolbar
Description

All editors without explicit width config overflow horizontally in IE quirks in all sample pages.

#4918 FF: Switching to source view when editor maximized Garry Yao Bug Normal CKEditor 3.1 UI : Toolbar
Description

When switching to source view (back and forth) when editor is maximized, there is toolbar icons relocation for short period of time. They are displayed vertically on the left side of the editor.

Please refer to attached screenshot.

Reproduced in LTR quirks with FF2 (stronger effect) and FF3 using Office2003 and V2 skins. Kama skin is not affected.

#4919 Jquery adapter sample file is incorrect Tobiasz Cudnik Bug Normal CKEditor 3.1 General
Description

There is a very specific way of creating samples for CKEditor. A short description is available here: http://docs.cksource.com/FCKeditor_3.x/Design_and_Architecture/CKReleaser#Samples

In short, html samples are just templates and sample-specific content should be placed inside of elements with the following IDs:

  • headscript (optional): contains sample specific script to be loaded in the <head>.
  • styles (optional): contains sample specific styles.
  • html: contains the HTML data that effectively represents the sample.
  • code: contains the sample code, used to illustrate the API usage in the sample.

Another rule is that all sample files should be loading sample.js:

<script type="text/javascript" src="sample.js"></script>

In jqueryadapter.html the following files are loaded in the <head> section, which causes that sample processed by CKReleaser is not working:

Ideally, both files should be loaded in a script with id "headscript" and below there should be a jquery code $( function() ... } ); that is currently in a script that has no id attribute.

To test whether the template is correct, just launch _samples/sample.html?sample=jqueryadapter and see whether it works.

There is one more minor bug that can be corrected as well: http://www.fckeditor.net url shouldn't be used any more in the sample text.

#4922 Adapters are not available in released version of CKEditor Bug Normal CKEditor 3.1 General
Description

this is because adapters are ignored in ckreleaser.release.

#4923 Maximize layout is broken when main page scrolled Frederico Caldeira Knabben Bug Normal CKEditor 3.1 UI : Toolbar
Description

Environment

IE8 with both Strict and Quirks

Reproducing Procedures

  1. Open 'skins' page sample, scroll the page to bottom.
  2. Click on 'Maximize' button;
  • Actual Result: Part of the toolbar is out of viewport.
#4924 PHP integration is not using the timestamp in the ckeditor.js script Wiktor Walc Bug Normal CKEditor 3.1 Server : PHP
Description

According to the documentation, the server side scripts must append the timestamp to the ckeditor.js file, so it updates the cache on new releases. The PHP integration is not currently doing so.

#4925 Spell checker dialog - problem with lists and tables Bug Normal UI : Spell Checker
Description

The spell checker window where page content is visible is very small (100px high), because of that it is important to properly use that space.

Right now checking things like tables and lists is a problem.

With tables, you have to scroll down with your mouse a lot, to get to a table (I noticed in Firebug around 16 line breaks (<br>) added by spell checker before the table). With lists, you can see that additional line breaks are added before and after the item.

Confirmed in FF and IE, although the result is a bit different.

Steps to reproduce

  • start with the following source:
    <p>
    	Just click the <b>Image</b> or <b>Link</b> button, and then <b>&quot;Browse Server&quot;</b>.</p>
    <h5>
    	Header</h5>
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px">
    	<tbody>
    		<tr>
    			<td>
    				aa</td>
    			<td>
    				bb</td>
    		</tr>
    		<tr>
    			<td>
    				cc</td>
    			<td>
    				dd</td>
    		</tr>
    		<tr>
    			<td>
    				11</td>
    			<td>
    				22</td>
    		</tr>
    		<tr>
    			<td>
    				ee</td>
    			<td>
    				ff</td>
    		</tr>
    	</tbody>
    </table>
    <ul>
    	<li>
    		one</li>
    	<li>
    		two</li>
    	<li>
    		ggg</li>
    	<li>
    		four</li>
    </ul>
    
  • click on the "check spelling" button and scroll down the content
  • result (inspected in Firebug):
           <p>
               &nbsp;
               <br>
               &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Just click the <b>Image</b>
               or <b>Link</b>
               button, and then <b>"Browse Server"</b>.
           </p>&nbsp;
           <br>
           <h5>&nbsp;
               <br>
               &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Header
           </h5>
           &nbsp;
           <br>
           &nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
           <br>
           <table style="width: 200px;" border="1" cellpadding="1" cellspacing="1">
           ...
    
#4926 FF2: Resizing doesn't work Frederico Caldeira Knabben Bug Normal CKEditor 3.1 General
Description

In Firefox2, resizing of the editor doesn't work - editor is collapsed to minimal size and stays in this state.

Both quirks and strict. Work's well in Firefox3 and CKEditor 3.0.2.

#4928 Putting each textarea in its own form in the skins sample fails in Chrome for more than 2 editor instances Bug Normal General
Description

As noted in the forums:

http://cksource.com/forums/viewtopic.php?f=11&t=16140

http://cksource.com/forums/viewtopic.php?f=11&t=16776

http://cksource.com/forums/viewtopic.php?f=11&t=16950

CKEditor fails to render when there are more than two instances on a page and each <textarea> is in its own <form> element.

This bug occurs in Chrome, both Mac and PC versions, but doesn't seem to occur in any other browser (not even Safari, which, like Chrome, uses Webkit).

Chrome's JS console reports this error:

Uncaught TypeError: Cannot read property 'nodeName' of undefined

While I'm reporting this as an error for CKEditor 3.0.2 (revision 4760), it may be a problem in other versions/builds as well.

#4929 Opera: scrollbar in Text Color / Background Color window Bug Normal General
Description

Opera 10.10 @ XP/SP3

Steps to reproduce

  • open/reload page with CKEditor
  • click on the "Text Color" button
  • problem: cannot select colors on the right side because scrollbar is there

When clicking on the "Text Color" button a couple of times, the scrollbar is still there. However, after clicking on "Background Color" button, the problem magically disappears. This does not happen in FCKeditor.

#4931 Performance enhancement of getHtml Task Normal Core : Output Data
Description

We're execute now /<\?[^>]*>/g on CKEDITOR.dom.element::getHtml of IE to strip namespace declaration, while this being one of the hot methods in our editor, we should optimize it a bit.

#4932 Collapse toolbar button visible but not usable on simple toolbars Minh Nguyen Bug Normal CKEditor 3.3 UI : Toolbar
Description

When using simple toolbar, like in the uicolor sample, there is a "collapse toolbar" arrow on the right side of the toolbar. Clicking on it does nothing.

Apparently it works when there are at least two rows of buttons. I think it could be hidden automatically when there is only one row of buttons.

#4933 CKEditor leaving empty tags with line break Garry Yao Bug Normal CKEditor 3.2 General
Description

Might be a dup of #4886.

Confirmed in FF 3.5.5, Safari and Opera although the results are a bit different .

Steps to reproduce

  • start with empty content
  • type "aaa"
  • press Shift+Home to select text
  • press Ctrl+B, Ctrl+U, Ctrl+I
  • press Del
  • switch to source mode
  • result (in FF):
    <p>
    	<em><u><strong><br />
    	</strong></u></em></p>
    
#4934 Preview fails in Source View Frederico Caldeira Knabben Bug Normal CKEditor 3.1 General
Description

Preview fails in Source View.

Reproduce

  1. Open editor.
  2. Switch to source view.
  3. Click Preview button from toolbar.
  4. Result: JS error in plugin.js (line 32)

Stack trace

editor.document has no properties
exec()(Object _=Object elementMode=1 element=Object name=editor3)plugin.js (line 32)
exec()(undefined)command.js (line 18)
execCommand()("preview", undefined)editor.js (line 497)
(?)()(Object _=Object elementMode=1 element=Object name=editor3)plugin.js (line 38)
execute()()plugin.js (line 89)
(?)()()tools.js (line 617)
fn()(149)tools.js (line 640)
onclick(click clientX=0, clientY=0)
[Break on this error] body = editor.document.getBody();

Reproduced in FF2, FF3, Chrome.

#4935 editor not showing if web server is running on port other than the defaut port 80 Bug Normal General
Description

CKEditor vesion 3.0.2 Firefox 3.5.6

BUG: Editor won't show up if the web server is running on port other that the default port(80). For example,

http://192.168.1.101/ckeditor/_samples/api.html - works great http://192.168.1.101:3030/ckeditor/_samples/api.html - won't work

(gives L.Lang.About undefined error in JS errors window)

Workaround: run server on default port.

Probable cause: Path parsing function does not handle port numbers correctly.

#4936 Welsh Translation New Feature Normal CKEditor 3.2 UI : Language
Description

Here's the Welsh (Cymraeg; cy) translation of the language file for CKEditor (3.0.2).

#4937 Link to Niche Profit Classroom website Bug Normal General
Description

To see the Niche Profit Classroom website, click here.

#4938 Link to Niche Profit Classroom website New Feature Normal General
#4939 CKReleaser limits source and target directories too aggressively Wiktor Walc Bug Normal Project : CKReleaser
Description

CKReleaser prevents the source and target directories from being different because io.isChildPath has an incorrect logical test. The default build (as specified in release.bat) works because target is a child path of source and because the _dev directory is ignored during copy.

Default command (from latest version of release.bat):

java -jar ckreleaser/ckreleaser.jar ckreleaser.release ../.. release "3.1 SVN" ckeditor_3.1_svn --run-before-release=langtool.bat

release.bat is in the <root>/_dev/releaser directory of the source tree, which means the source dir is <root> and the target directory is <root>/_dev/releaser/release

For 3rd parties using different build systems and different directory structures (for instance, where the build output must live in a directory outside of the source tree) it would be preferable to specify a command like:

java -jar ckreleaser/ckreleaser.jar customckreleaser.release path/to/ckeditor build/ckeditor <versionid> <filename>

Executing this command throws the exception:

Target directory must be located outside source directory

which is thrown by this line of releaser.js

468 if ( CKRELEASER.io.isChildPath( targetDir.getCanonicalPath(), sourceDir.getCanonicalPath() ) )
469 throw "Target directory must be located outside source directory";

This is incorrect - the target directory and source directory are not located underneath each other, which examination of isChildPath shows is because the return statement is too aggressive.

403 isChildPath : function( childPath, parentPath )
404 {
405 if ( childPath.length > parentPath.length )
406 return false;
407
408 var i = 0, max = Math.min( childPath.length(), parentPath.length() );
409
410 while ( i < max && childPath.charAt( i ) == parentPath.charAt( i ) )
411 i++;
412
413 return i != max;
414 }

If the working directory is c:\test, the source dir is c:\test\path\to\ckeditor, and the target dir is c:\test\build\ckeditor, then isChildPath should return false (the two are not child paths of each other). However, "return i != max" returns true for this scenario because the two paths match only up until character 7 (i == 7, max == 22). It should be "return i==max".

If isChildPath is adjusted to correctly check path parentage then ckreleaser can be used in different directory structures

#4940 Setting config.customConfig = '' doesn't work Frederico Caldeira Knabben Bug Normal CKEditor 3.1 General
Description

According to the docs of customConfig that's the way to avoid an extra request for the config file if it isn't needed, but the code in core/editor.js uses it this way:

	var loadConfig = function( editor )
	{
		var customConfig = CKEDITOR.getUrl( editor.config.customConfig );

		// Check if there is a custom config to load.
		if ( !customConfig )
			return false;

and the call to CKEDITOR.getUrl() returns the base url of CKEditor, so the return false isn't executed.

For this specific problem the "if ( !customConfig )" can be moved before the getUrl call, but maybe it would be better to change that function so it doesn't alter empty strings.

#4941 stylesCombo_stylesSet broken in IE 8 Bug Normal Core : Styles
Description

I've defined custom styles in an external file, it works great in Firefox and Chrome but in IE 8 when I click the styles dropdown I get and error length is null or not an object ckeditor.js line 63 char 1059

I've tried both relative and full urls for the file and the error is the same in both cases.

#4942 Image dialog buttons don't work in IE6 Bug Normal UI : Dialogs
Description

Reported in http://cksource.com/forums/viewtopic.php?f=11&t=17081

Tested with IE6 and non-Kama skins.

3.0.2 fails, but trunk seems to be OK so I don't know if there's gonna be a 3.0.3 or the solution would be to use 3.1.0

This seems like a regression due to [4668]

#4943 can not change color of the text in a link Bug Normal General
Description

after making some text to a link, i cannot change the text color anymore. sorry for my poor english:)

#4944 Paste: Problem with multi-level lists Garry Yao Bug Normal CKEditor 3.1 Core : Pasting
Description

Some multi level bullet lists do not paste correctly.

Please refer to test document attached.

Reproduced in IE 6 & 7 and FF 2 & 3

#4945 Paste: Outline Numbered list do not copy correctly v2 Paweł Horzela Bug Normal Core : Pasting
Description

Lists with more than 2 levels and that have the style "Outline Numbered" do not paste correctly. Levels beyond the 2nd level collapse.

This is not dependant on the measurement units applied. Very similar #4896

See tc document attached:OutlineNumberedList2.doc

#4946 Paste: lists have spaces between bullet and content do not copy correctly Garry Yao Bug Normal CKEditor 3.1 Core : Pasting
Description

Reproducing Procedures

  1. Open any page sample, paste the attachment document's content into the editor.
  • Actual Result: The list structure is not repsected.
#4947 JavaScript errors when SCAYT is enabled and PRE tag is used Bug Normal UI : Spell Checker
Description

Tested and confirmed in FF 3.5, IE8, Safari 4.

Steps to reproduce

  • start with empty content
  • enable SCAYT
  • paste the following in source mode:
    <pre>something foo</pre>
    
  • switch to wysiwyg mode
  • move cursor to the end of line
  • press enter
  • result:
    node is null
    http://svc.spellchecker.net/spellcheck3/lf/scayt/_base.xd.js
    Line 3772
    
#4948 Safari: table properties dialog sometimes does not detect parent table Garry Yao Bug Normal CKEditor 3.3 General
Description

Confirmed on Safari 4.0.4/XP3.

Steps to reproduce

  • start with the following source:
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px; " summary="some summary">
    	<caption>
    		some title</caption>
    	<tbody>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    	</tbody>
    </table>
    
  • click on the last cell, make sure that the whole cell is selected (in the elements path there should be "body table tbody tr td br" - note that probably the last "br" element is a problem here)
  • click on the "Table properties" item in the context menu
  • result: values in dialog are not properly loaded, when "Ok" is pressed, a new table is inserted.
#4949 Inserting table column results in wrong colspan Bug Normal Core : Tables
Description

Inserting table column results in wrong colspan.

Reproduce

  1. Use following content:
    <table>
    	<tbody>
    		<tr>
    			<td colspan="2">
    				TD</td>
    		</tr>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    	</tbody>
    </table>
    
  2. Right click on first cell "TD" and choose "Column -> Add column after".
  3. Result
    <table>
    	<tbody>
    		<tr>
    			<td colspan="2">
    				TD</td>
    			<td colspan="2">
    				&nbsp;</td>
    		</tr>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    	</tbody>
    </table>
    
  4. Expected: New column should be added in first row without colspan="2".
#4950 Creating centered list is a bit troublesome Garry Yao Bug Normal CKEditor 3.3 Core : Lists
Description

Tested and confirmed in IE8, FF 3.5, Safari 4.

Steps to reproduce

  • start with the following source:
    <ul>
    	<li>
    		aaa</li>
    	<li>
    		bbb</li>
    	<li>
    		ccc</li>
    </ul>
    
  • press Ctrl + A and hit "Center Justify" button
  • click at the end of last element and hit enter twice to exit from the list
  • result: list is not centered anymore.

this bug does not occur in FCKeditor.

#4951 Replace dialog throwing JavaScript error Garry Yao Bug Normal CKEditor 3.2 General
Description

When replacing some text with empty value, javascript error is thrown:

K.matchRange is null
plugins/find/dialogs/find.js?t=A057
Line 7

Steps to reproduce

  • start with the following text: aaa bbb ccc
  • click on the "Replace" button
    • Find what: a
    • Replace With: (empty value)
  • result: all "a" letters are removed properly, but also javascript error occurs.
#4952 [IE] Editing table creates a new table Garry Yao Bug Normal CKEditor 3.1 General
Description

To reproduce:

  1. Open nightly demo
  2. Create default table
  3. Edit the table

Notice that a new table is created.

#4953 SCAYT: more suggestions partially hidden behind ad Bug Normal UI : Spell Checker
Description

When SCAYT i enabled, sometimes it is impossible to choose some of the suggested words.

See attachment to understand the problem.

#4954 IE6 : Ok and Cancel buttons are not working on v2 and office2003 skins Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description

With IE6 and the v2 and office2003 skins, the Ok and Cancel buttons are not working on the dialogs.

#4955 Pasting images from clipboard New Feature Normal Core : Pasting
Description

So , All of us had one time to copy and past a text with some images in it (like a Microsoft Office Word document). I Know that's possible to do because in JCE ( a WYSIWYG editor for the CMS called Joomla) have this feature enabled. I don't really know how it works but I sure that it's a feature included IN JCE.

#4957 LangTool injects old copyright Wiktor Walc Bug Normal General
Description

The copyright header introduced by the LangTool in the _translationstatus.txt file needs to be updated, otherwise it fires unnecessary and wrong changes to it.

Ideally the current year should be used on it, automatically.

#4960 Safari v4+ paste from keyboard broken in fckeditor 2.6.5 Bug Normal General
Description

Attempting to cut and paste into an fckeditor 2.6.5 pane fails.

Paste will appear for an extremely brief period time (milliseconds), and then be cleared. Other content within the fckeditor pane will remain unchanged.

Essentially a paste acts as a no-op.

This appears to be recent as I did not observe this behaviour on 2.6.4

<I am particularly familiar with the necessary categorization of this ticket, if someone could move it to a better place that would be appreciated. There have been complaints regarding this issue since November on the forum.>

#4961 ckeditor lost current selection under safari Bug Normal General
Description

ckeditor lost current selection under safari after click address bar or search bar. it works under chrome, firefox, but doesn't work under safari. Steps to reproduce using safari:

  1. open this test file
  2. click any position in the editor
  3. click safari address bar or search input box on the top (the current selection will not highlight now, but still highlight under firefox and chrome)
  4. click execute button
  5. it will insert the image at the beginning.
#4962 ARIA support in editor chrome and toolbar Garry Yao New Feature Normal CKEditor 3.2 Accessibility
Description

The editor's chrome and toolbox should be ARIA-enabled, it's a sub ticket of #4502.

#4963 Link dialog doesn't open properly for e-mail links Garry Yao Bug Normal CKEditor 3.2 General
Description
  1. Load the following HTML:
<p>Click <a href="mailto:me@example.com">here</a> to send me a message.</p>
  1. Open the dialog for the link.

The "Link Type" field will be "URL" instead of "E-mail".

#4964 BACKSPACE positioning is wrong Frederico Caldeira Knabben Bug Normal CKEditor 3.2 General
Description

At least with Firefox:

  1. Load an empty editor (or click New Page).
  2. With the focus in the editor, hit ENTER.
  3. Hit BACKSPACE to return to the first paragraph.
  4. Type "Test".

Note that the cursor moves one line to the bottom. The final output is:

<p>
	<br />
	Test</p>
#4965 Hidden input is being shown as a text input in IE Bug Normal General
Description

To reproduce:

  1. Open the online demo
  2. Insert an hidden input

In IE, you will see it as a regular text input.

#4966 Make the anchor image configurable New Feature Normal General
Description

As this is a WYSIWYG editor, the editor content should look just the same as the output. therefore, the anchor image should be a configurable option, so the developer will be able to choose whether it should be displayed or not.

#4967 htmlEncodeOutput = true and jqueryadapter problem Bug Normal Core : Output Data
Description

This combination encode text in editor.

  1. In samples config.js set config.htmlEncodeOutput = true
  2. Go to jQuery adapter example
  3. Click Submit
  4. Go back
  5. Editor display encoded html
#4968 Choosing lanuage should utilize direction from lang file Garry Yao New Feature Normal CKEditor 3.3 UI : Language
Description

Considering that all language files already have the language direction set. The process loading configured language should have the option of automatically picking the correct content direction for the editor.

E.g. if a RTL language is set then contentsLangDirection: "rtl" should be set automatically.

#4969 Quote char changed inside PRE tag Bug Normal General
Description

Quote char is changed inside PRE tag.

Reproduce

  1. Switch to source view
  2. Replace editor with following content
    <pre>'</pre>
    
  3. Switch to wysiwyg view and back to the source view
  4. Result:
    <pre>
    &#39;</pre>
    

Reproduced using r4896 on Chrome.

#4972 Pressing Shift+Enter at the end of <li> generates invalid HTML when shiftEnterMode != ENTER_BR Bug Normal UI : Enter Key
Description

To Reproduce

  • Add following settings to config.js.
    config.enterMode = CKEDITOR.ENTER_BR;
    config.shiftEnterMode = CKEDITOR.ENTER_P;
    
  • Open sample page.
  • Click "Numbered List" or "Bulleted List" button from toolbar.
  • Type some text.
  • Press Shift+Enter from keyboard.
  • <p> is inserted under <ul>
    • See breadclumb on attached screenshot
  • Switch to source-mode, <p> is moved before the <ul>
Note: See TracQuery for help on using queries.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy