Custom Query
Results (5101 - 5200 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component |
---|---|---|---|---|---|---|
#5426 | CKEditor 3.1.1 won't load in Opera when inserting dynamicly | Bug | Normal | General | ||
Description |
When trying to load the CKEditor (version 3.1.1), in Opera (10.51) via Ajax insertion or on the fly DIV replacement, it will try to load, but gets stuck (Elements: 10/10). The editor appears fully loaded, but the entire page in unresponsive (keeps loading, links are not clickable) This does not only apply to my own application, but also for most of the advanced samples in the CKEditor source, for example:
I can't find any ticket addressing this issue, but it doesn't seem to affect, or is fixed, in CKEditor 3.2. Updating to 3.2 is currently not an option, since it breaks backward compatibility for my custom skin. |
|||||
#5427 | Initial Value of CkEditor interprets non-html text as html. | Bug | Normal | General | ||
Description |
Type code in a ckeditor instance containing html. Note, don't style normal text, but type in the following plain text: <br/><b>some text</b><table><tr><td>some table data</td></tr></table> The submitted data is correct. The value of the submit is as follows: <p>
This is where the problem lies. Populate a textarea with this data and instantiate a ckeditor on it.
</textarea> Instead of seeing the typed text, you see a full html rendering of your typed text in the ckeditor field. "Some Text" is bold, and there is a table with a cell containing "some table data". Expectation is that the editor should render the text "<br/><b>some text</b><table><tr><td>some table data</td></tr></table>" instead of html. Am I missing something, or is this an error? This is important, as I allow people to preview their posts and I wish to use this editor. If they preview the post, and there is any typed code, it munges the data. Firefox (latest) Mac OS X Snow Leopard. |
|||||
#5428 | Object styles not working for links (a tag) in browsers other than Firefox | Bug | Normal | Core : Styles | ||
Description |
I've created a custom stylesCombo_stylesSet file, in which I've included some classes for links: CKEDITOR.addStylesSet( 'my_stylesheet', [
]); The SPAN elements always appear, as described in the documentation. Also according to the documentation, the A element is a 'special selectable element', for which the styles only appear when this element is selected. When I select a link in Firefox (2/3/3.6), en open the styles dialog, the "More" and "Feed" classes are present. However, doing the same in any other browser has no effect. Neither IE 6/7/8, Chrome, Opera or Safari. Note: that the other special types, like P and IMG do work in those browsers, only A elements appear to be be affected. I've tested this with CKEditor 3.1, 3.1.1 and 3.2, and all versions have this problem. |
|||||
#5429 | Disable HC detection in webkit browsers | Task | Normal | CKEditor 3.3 | General | |
Description |
HC detection should be turned off in webkit browsers. |
|||||
#5430 | Cannot insert <img> without losing width and size info. | Bug | Normal | General | ||
Description |
Whenever I insert a new image and set its custom size, CKEditor adds style="width: 1px; height: 1px;. When submitted, the style attribute is missing. If I manually change the code to width="1" and height="1" in source view, those attributes are kept. |
|||||
#5431 | CKEditor 3.1.1 and 3.2 have the exact same timestamp | Bug | Normal | CKEditor 3.3 | Project : CKReleaser | |
Description |
Since the timestamp is actually calculated using the release date, and version 3.1.1 and 3.2 have been released on the exact same date, the timestamp for both is the same. This however defeats the whole purpose of this timestamp: to prevent caching. Since this cannot be changed now, but might possibly happen again in the future, I would suggest to not only use the release date to calculate a unique timestamp, but also the CKEditor version. |
|||||
#5432 | Dutch language updates | Bug | Normal | CKEditor 3.3 | General | |
Description |
Patch adding the missing translations in the Dutch language file. |
|||||
#5433 | Wrong orientation of Protocol list in Insert Link dialog in Hebrew | Bug | Normal | CKEditor 3.3 | General | |
Description |
To reproduce the defect
See that the Protocol drop down list box has right to left orientation. However this causes corruption in the order of characters as this should be in Left To Right orientation (because the protocols are in English). Please see attached screen shot |
|||||
#5434 | Access Denied error on IE7 and IPv6 | Bug | Normal | CKEditor 3.3 | General | |
Description |
We are testing the editor in an IPv6 environment on IE7. Script debugger reports the error at: return i&&new g(i.contentWindow.document); in ckditor.js. This looks to be in issue in element.js. I suspect it is the call to contentWindow.document that is causing the "Access Denied" error. The editor loads, but is not usable. |
|||||
#5435 | [[IE]] we can't start Numbered/Bulleted list in Tables by Clicking on Insert/Remove Numbers/Bullets Icon | Bug | Normal | CKEditor 3.4 | Core : Lists | |
Description |
To reproduce the defect
Actual Result: Nothing happens,even when we type the text in the Table Cell it just shows as a Normal Text but not as Numbered/Bulleted list item Expected Result: A new Numbered/Bulleted list should start depending up on the Insert/Remove Numbers/Bullets Icon that you click on. I have tested against IE 6,7 & 8 This is a regression issue. |
|||||
#5436 | [[IE]] Cursor goes to next Table Cell after we insert a Smiley in the Table Cell | Bug | Normal | CKEditor 3.4 | General | |
Description |
To reproduce the defect
Actual Result: See that the Smiley is inserted in to the Current Table Cell and the Cursor goes to the next Table Cell..If it is last Table Cell Cursor goes out of the Table Expected Result: Smiley should be inserted in to the Current Table Cell and the Cursor should remain in the same Table Cell. I have tested against IE 6,7 & 8 This is a regression issue. |
|||||
#5438 | Correct editor destruction in SCAYT | Bug | Normal | CKEditor 3.3 | UI : Spell Checker | |
Description |
When an editor is destroyed the SCAYT fails. The patch fixes that issues as well as several coding style adjustments. |
|||||
#5439 | Unable to align selected text in a table | Bug | Normal | General | ||
Description |
The alignment options do not work inside of a table cell if the content (text, image) is selected. Confirmed in FF 3.6.2 and IE 8. It was working correctly until 3.0.1. Steps to repoduce
|
|||||
#5440 | Mark mobile browsers as incompatible | Task | Normal | CKEditor 3.3 | General | |
Description |
Currently the browser and version detection allows to use CKEditor with mobile browsers, but the fact is that they don't support editing the contents, so they can't edit anything at all if the source button has been removed. I've tried to test for feature detection (as they might add it someday) but it reported the same results than a supporting browser for contentEditable and designMode. |
|||||
#5441 | Fix for #3812 breaks CKEditor in IE when editor instance is no longer in DOM | Bug | Normal | CKEditor 3.4 | General | |
Description |
The IE-specific fix for #3812 causes another bug if the CKEditor container isn't a descendant of document.body. This bug only occurs in IE (because we use the moveToElementText function). Attached is a test HTML file as well as a potential patch. The main shortcoming of the patch is that it does scroll to the top of the page. If someone has a better fix that would be great! |
|||||
#5442 | Server side API for classic Asp | New Feature | Normal | CKEditor 3.3 | Server : ASP | |
Description |
The patch is a port of the ckeditor.php4 to asp. I haven't found a way to do the automatic detection of the location of the current script, so that part is hardcoded to /ckeditor/ the rest of the behavior should match and the samples pages seem to work ;-) |
|||||
#5443 | Infinite loop possible in wfSajaxSearchCategoryChildrenFCKeditor() | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
details at the mwusers forum: http://www.mwusers.com/forums/showthread.php?14529-FCKeditor-extension-broken-category-links&p=48246 If you have a category that belongs to itself, there is an infinite loop that occurs in wfSajaxSearchCategoryChildrenFCKeditor(). Add the line "if ($m_root == $row->title) continue;" to the while loop after the database call is returned to avoid endless recursion:
|
|||||
#5444 | The Style combo is not context sensitive on editor recreation | Bug | Normal | General | ||
Description |
The style combo will not be context sensitive anymore. Even when applying other styles, it will still not detect the current selection style properly. To note that the styles list still shows the active styles properly. |
|||||
#5445 | ENTER doesn't finish list with style text | Bug | Normal | UI : Enter Key | ||
Description |
Current results: the list never gets broken and new empty list items are created. Expected result: the list must be broken and an empty paragraph must be created between the two resulting lists. |
|||||
#5446 | Setting config.filebrowserImageBrowseUrl results in displaying also Browser Server on links | Bug | Normal | CKEditor 3.4.2 | General | |
Description |
I am using the latest nightly build and when setting config.filebrowserImageBrowseUrl the "Browse Server" button is displayed on image-info. The "Browse Server" button is also displayed in the Link-tab.
This should not happen. I also specifically set |
|||||
#5447 | Anchorname with a blank at the end | Bug | Normal | CKEditor 3.6.4 | UI : Dialogs | |
Description |
A Link doesnt jump to an anchor which name ends with a blank. Only tested with the ckeditor vers. 3.2.5205 and firefox vers 3.6.3. |
|||||
#5448 | forcePasteAsPlainText doesn't work in specific situation | Bug | Normal | Core : Pasting | ||
Description |
To reproduce this bug, we should have enabled option forcePasteAsPlainText in ckeditor configuration. Next step will be get a few text with paragraphs, sample text attached. The last thing will be paste it into editor, but without using Ctrl+V, paste Contextual Menu or button, it must be option from browser main menu Edit -> Paste. After we should get this in source: <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> <p> Nullam suscipit auctor nisi sed vulputate.</p> <p> Cras in odio sit amet metus rhoncus scelerisque id at nunc. Praesent a faucibus eros.</p> but choosing paste option from browser menu produce something like that: <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit.<br /> <br /> Nullam suscipit auctor nisi sed vulputate.<br /> <br /> Cras in odio sit amet metus rhoncus scelerisque id at nunc. Praesent a faucibus eros.</p> Completely ignoring the forcePasteAsPlainText setting. Bug appear in IE7, Opera 9.64 and FF 3.5.9. I haven't tested other browsers yet, but i think it also doesn't work in them. First report of this bug was on http://drupal.org/node/745020 |
|||||
#5449 | Custom Image Browser bug in FCKEditor 2.6.6 | Bug | Normal | General | ||
Description |
The settings below work fine in Safari, Firefox and Opera. When using Google Chrome the "Image Info-tab" does not show a browse-button. Instead, the "Link"-tab shows the browse button - looks like a bug/incorrect swap to me. FCKConfig.ImageBrowser = true ; FCKConfig.ImageBrowserURL = '/jsp/image/ImageBrowser.jsp?ImageBrowserTarget=fckeditor'; FCKConfig.ImageBrowserWindowWidth = '910'; FCKConfig.ImageBrowserWindowHeight = '700'; FCKConfig.LinkUpload = false ; FCKConfig.LinkBrowser = false ; FCKConfig.FlashUpload = false ; FCKConfig.FlashBrowser = false ; |
|||||
#5450 | Press enter on 'replace' button result wrong | Bug | Normal | CKEditor 3.3 | UI : Dialogs | |
Description |
Reproducing Procedures
|
|||||
#5451 | [FF] Unable to apply block style on start of list item | Bug | Normal | Core : Styles | ||
Description |
Reproducing Procedures
|
|||||
#5452 | [IE+Quirks] Unscrollable combo dropdown list | Bug | Normal | CKEditor 3.3 | UI : Floating Panel | |
Description |
In Quirks mode, the dropdown list of all combos don't have vertical scrollbar. |
|||||
#5453 | link plugin is missing dependency of htmldataprocessor | Bug | Normal | General | ||
Description |
The link plugin requires the htmldataprocessor plugin in order to properly create links, but the link plugin does not list the htmldataprocessor plugin as a dependency. If you load the link plugin, but not the htmldataprocessor plugin, you will still see the behavior reported in #3928. |
|||||
#5454 | After replaced success, the popup window couldn't been closed and a js error occured | Bug | Normal | CKEditor 3.3 | General | |
Description |
Load the replace by class sample page; 1.Open 'Replace' dialog and fill in 'are'; 2.click the 'Replace' buttton 2 times; 3.click the 'Cancel' bbutton or the 'x' button to close the popup window Expected Result: the popup window is closed. Actual Result: a js error throws and you couldn't close the popup window any more |
|||||
#5455 | we can't remove the format of the copied & pasted text by selecting the text and clicking on Formatted icon | Bug | Normal | CKEditor 3.4 | Core : Styles | |
Description |
To reproduce the defect:
Expected Result: Bold Format applied to the text is removed Actual Result: Bold Format applied to the text is not removed. We can remove the format using only the following two ways. Go to HTML Source and Come back to WYSIWYG mode and select the text again and click Bold icon or Select the Pasted text and Click on Remove Format Icon. Same behaviour happens with Italic,Underline,Strike Through,Subscript and Superscript formatting options. Tested against FF3,IE 6&7 |
|||||
#5456 | Link Dialog in api_dialog sample doesn't have initial focus | Bug | Normal | CKEditor 3.4 | UI : Dialogs | |
Description |
The initial focus of the customized Link dialog when open in api_dialog sample is neither inside the URL text filed or any other field. |
|||||
#5457 | Indentation in output_xhtml doesn't work for right-to-left contents direction. | Bug | Normal | General | ||
Description |
The sample page should provide right-to-left compliant styles for all indent level styles. |
|||||
#5458 | [[FF]]Formatting for Subscript and Superscript is removed when we copy and paste the word with Subscript and Superscript Formatting | Bug | Normal | General | ||
Description |
To reproduce the defect:
Expected Result: Subscript or Superscript Formatting which we have applied to the word is still retained and when we keep the cursor in the word, Subscript or Superscript icon should be highlighted in the Toolbar and Subscript or Superscript Tag should appear on CK Editor Elements Path bar. Actual Result: Subscript or Superscript Formatting which we have applied to the word is not retained. |
|||||
#5459 | ENTER on empty list item has no effect when re-creating editor | Bug | Normal | CKEditor 3.3 | UI : Enter Key | |
Description |
Nothing happens. Confirmed with FF 3.6 at least. Works well with the 3.2. |
|||||
#5460 | Empty <ul></ul> remains on source | Bug | Normal | CKEditor 3.3 | Core : Output Data | |
Description |
<ul> <li> Item 1 <ul> <li> Item 1.1</li> </ul> </li> </ul>
Note that an empty <ul> <li> Item 1 <ul> </ul> <ul> <li> Item 1.1</li> </ul> </li> </ul> Confirmed with FF 3.6 at least. Works well with CKEditor 3.2. |
|||||
#5461 | IE: Paste from Word dialog doesn't accept imput | Bug | Normal | CKEditor 3.3 | UI : Dialogs | |
Description |
Confirmed with IE8 and CKEditor 3.2. Works well with the 3.1.1.
|
|||||
#5462 | Color is removed improperly from partial selections | Bug | Normal | CKEditor 3.3 | Core : Styles | |
Description |
The yellow background from the " text" bold text will be removed, remaining transparent. Confirmed with FF 3.6 at least. Works well with the 3.2. |
|||||
#5463 | Safari: Image looses all it's attributes on drag-n-drop | Bug | Normal | General | ||
Description |
Note that all attributes set through the dialog get removed. |
|||||
#5464 | Chrome: it's not possible to drag-n-drop | Bug | Normal | General | ||
Description |
In Chrome (at least Windows), it's not possible to drag-n-drop text or objects inside the text. |
|||||
#5466 | SCAYT interferes on color commands | Bug | Normal | CKEditor 3.3 | UI : Spell Checker | |
Description |
<p>ThisAA isAA someAA textAA.</p>
Note that a separated <span> tag has been created for every space and word in the text. |
|||||
#5467 | "Remove Format" removes SCAYT highlight lines also | Bug | Normal | UI : Spell Checker | ||
Description |
The "Remove Format" command removes SCAYT highlight lines also. To test it, simply select a SCAYT highlighted word and hit the "Remove Format" button. |
|||||
#5468 | Toolbar not showing properly on IE 8 | Bug | Normal | UI : Toolbar | ||
Description |
Toolbar not showing properly on IE 8 |
|||||
#5469 | Elements path stops working when re-creating editor | Bug | Normal | CKEditor 3.3 | General | |
Description |
The elements path stops working. Nothing is shown. |
|||||
#5470 | protocol field and url field doesn't update properly on change | Bug | Normal | General | ||
Description |
When I'm browsing the server for links and selecting one (http://google.com) sometimes in url field I get google.com and sometimes http://google.com. I think it's every other time. When I've changed this: var protocol = urlOnChangeProtocol.exec( url ); into this: var protocol = url.match( urlOnChangeProtocol ); Code is working every time. This was on Firefox 3.6/Ubuntu with firebug. |
|||||
#5472 | Appling color stops on style already applied | Bug | Normal | CKEditor 3.3 | Core : Styles | |
Description |
<p>This is <span style="background-color: rgb(255, 255, 0);">some</span> sample text.</p>
The color will not be applied to the entire text. |
|||||
#5473 | Dragging and dropping content from Word onto editor bypasses 'on paste' filters | Bug | Normal | Core : Pasting | ||
Description |
In both IE and Firefox, if you drag content from a document open in Word into the editor (rather than using cut and paste), it doesn't trigger the pasteFromWord filter. To reproduce: 1) Create a short Word document (I'm using Word 2007) - optionally enable the 'smart tags' feature and enter some content that will be marked up as a smart tag. 2) Open the demo editor http://ckeditor.com/demo in either IE or Firefox, delete all of the existing content. 3) Highlight the content in Word, click it and drag to the demo editor window then release. 4) Observe that the usual Word cleanup doesn't happen - if you view source you will see a lot of spurious XML markup in the various Office namespaces. 5) If you copy and paste the content instead, the cleanup will happen as expected. |
|||||
#5474 | Content not editable if width/height style is set in DIV tag | Bug | Normal | General | ||
Description |
In spite of what ticket #4682 states as being fixed, in IE8 any DIV with height or width set in the style is NOT editable... I tested it in the full functional editor on the demo page too, and there it's also NOT working. Clicking on the div just selects it, but contents can't be changed. |
|||||
#5475 | Menu items can be dragged of the Menu | Bug | Normal | General | ||
Description |
To reproduce the defect
you can even drag the items in Styles,Paragraph Format,Font Name and Font Size lists in to the Editor body. This is no Correct behaviour, we should not let the users drag the menu item. |
|||||
#5476 | Enter key before sub list not right | Bug | Normal | General | ||
Description |
Reproducing Procedures
|
|||||
#5478 | [IE] Impossible to place the caret after images at the end of the contents | Bug | Normal | General | ||
Description |
EnvironmentAll IE versions Reproducing Procedures
|
|||||
#5480 | Anchor link wrong 'class' attribute | Bug | Normal | General | ||
Description |
Reproducing Procedures
|
|||||
#5483 | Fullpage problem when missing title | Bug | Normal | CKEditor 3.3 | General | |
Description |
EnvironmentFirefox and Safari Reproducing Procedures
|
|||||
#5484 | Finding text in CK Editor find function doesn't scroll to show found text | Bug | Normal | General | ||
Description |
To reproduce the defect:
Observe that the found text is highlighted where its found in the content but if text is found that isn't visible on the page without scrolling the page doesn't scroll automatically to show the text. |
|||||
#5485 | Missing accessibility attributes in the editing area DOM | Bug | Normal | CKEditor 3.3 | Accessibility | |
Description |
Once the editor is displayed, editor area's iframe is not having the Title attribute and inside the iframe, <html> element doesn't have the lang attribute. |
|||||
#5487 | Fullpage writer problem with line-break | Bug | Normal | CKEditor 3.4.1 | General | |
Description |
EnvironmentAll IE versions. Reproducing Procedures
|
|||||
#5488 | Normal Paste affected by paste from word | Bug | Normal | CKEditor 3.3 | Core : Pasting | |
Description |
Reproducing Procedures
|
|||||
#5489 | can't assign block style inside block style | Bug | Normal | Core : Styles | ||
Description |
Bug 1: <h3>This is some sample text. You are using CKEditor.</h3>
<h3>This is some <h6>sample text</h6>. You are using CKEditor.</h3> And switch back to normal, you don't get the expected result. Switch back to the source shows that CKEditor created this from it: <h3>This is some </h3><h6>sample text</h6>. You are using CKEditor. Which is not as expected. |
|||||
#5490 | [IE] Can't move the cursor after an anchor | Bug | Normal | General | ||
Description |
There are two different cases affected by this bug: Steps to reproduce (1)
Notice that the cursor is to the left of the anchor and can not be moved to the right. Steps to reproduce (2)
Notice that the cursor is to the right of the anchor.
Notice that the cursor can not be moved to the right. |
|||||
#5491 | Allow configuring (disabling) of htmlwriter 'rules' | New Feature | Normal | Core : Styles | ||
Description |
see http://dev.fckeditor.net/ticket/5489[[br]] it is desirable to don't have any default rules like identation and newlines applied to editor instances to prevent wrapping or spacing issues. |
|||||
#5493 | [[IE]] Some smileys remain highlighted after selection | Bug | Normal | General | ||
Description |
To reproduce the defect:
You will see that the previously added emoticon is highlighted. The first emoticon should only be highlighted to indicate the currently selected emoticon. |
|||||
#5494 | Editor should cleanup dialogs when it is destroyed | Bug | Normal | CKEditor 3.3 | General | |
Description |
If a dialog is open from the editor and the editor is destroyed, the dialog remains in the document, orphaned. When editor.destroy() is called, all editor related divs should also be removed. |
|||||
#5495 | Link plugin ruins undo system | Bug | Normal | CKEditor 3.4 | Core : Undo & Redo | |
Description |
Steps to reproduce
Notice that the 'redo' button is enabled for no reason. [clicking on it, btw, doesn't do anything].
Notice that the content is back to the default, so actually the two latest snapshots are skipped. |
|||||
#5496 | Make "removeformat" work even without selection | New Feature | Normal | Core : Styles | ||
Description |
When you select 1 char inside a block level element, and click on the remove button, the formatting of that block element is removed. |
|||||
#5499 | Editing checkbox error | Bug | Normal | CKEditor 3.3 | UI : Dialogs | |
Description |
EnvironmentIE6/7 Reproducing Procedures
|
|||||
#5500 | Missing attributes of Text Field | Bug | Normal | CKEditor 3.5.1 | General | |
Description |
EnvironmentAll IE versions Reproducing Procedures
|
|||||
#5502 | The text previously highlighted after doing Insert/Edit link is replaced with path to file | Bug | Normal | UI : Dialogs | ||
Description |
FCKEditor 2.x, seemingly appears in versions of Firefox/Safari, not reproducable in IE(8). Steps to reproduce in Firefox 3.6:
Expected behavior: The text that you highlighted to create a link out of is not replaced by the url path. A hyperlink is created out of the original text pointing to the url specified. I couldn't find a config option to change this behavior, believe it's a bug. |
|||||
#5504 | [IE] Paste button problem | Bug | Normal | CKEditor 3.3 | Core : Styles | |
Description |
EnvironmentIE6/7 Reproducing Procedures
|
|||||
#5505 | IE: Insert image throws error | Bug | Normal | CKEditor 3.3 | General | |
Description |
first make sure you are in https environment, and then choose replace by class sample. reproduce:
confirmed in Firefox3.5 and IE8,win7 |
|||||
#5506 | can't use right arrow key to bypass the form elements ( checkbox or radio) | Bug | Normal | General | ||
Description |
when the last element of the edit doc is checkbox or radio, can't bypass it use right arrow key. that means we can't add content after the form element.
reproduce
confirmed in
|
|||||
#5507 | Help dialog button auto set "active" state when open. | Bug | Normal | UI : Dialogs | ||
Description |
Reproducing Procedures
The cancel button auto set 'active' state. |
|||||
#5508 | Line disappear after context menu | Bug | Normal | General | ||
Description |
EnvironmentIE8 Quirks Reproducing Procedures
|
|||||
#5509 | Blockquote Blockquote | Bug | Normal | Core : Styles | ||
Description |
Hi there, When you are in a paragraph, indent adds margin. When you are in a list, indent adds nested list. When you are in a blockquote, indent adds...
There is no best choice isn't it? |
|||||
#5510 | Style plugin not working on selection | Bug | Normal | General | ||
Description |
The Styles combo does not work as expected. I have this custom configuration: { enterMode: CKEDITOR.ENTER_BR, removePlugins: 'elementspath', startupOutlineBlocks: true }
<textarea cols="80" id="editor_v2" name="editor_v2" rows="10"><h1>This is some <h3><strong>sample text</strong></h3>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</h1></textarea>
1) Select the text "You Are" |
|||||
#5511 | Pasting plain text with blank lines intermixed with existing text | Bug | Normal | Core : Pasting | ||
Description |
The following problem occurs with Internet Explorer 8 (but it works fine in Firefox 3.6):
four five
one two three
one four five two three The pasted text should have been inserted at the top of the document before the existing text as follows: one two three four five |
|||||
#5512 | [IE] Can not navigate to the Cell sub menu in the context menu with the keyboard | Bug | Normal | CKEditor 3.3 | Accessibility | |
Description |
I was able to reproduce this bug on IE8. I couldn't reproduce it on FF 3.6.5. didn't check other browsers. Tested with the demo and the trunk. Steps to reproduce
a JS error is thrown. |
|||||
#5513 | Tab navigation in dialogs incompatible with RTL | Bug | Normal | CKEditor 3.3 | Accessibility | |
Description |
The arrows in RTL should be the opposite of LTR. Attaching a patch. |
|||||
#5514 | Elements path navigation incompatible with RTL | Bug | Normal | CKEditor 3.3 | Accessibility | |
Description |
The arrows in RTL should be the opposite of LTR. Attaching a patch. |
|||||
#5515 | Hebrew language update | Task | Normal | CKEditor 3.3 | UI : Language | |
Description |
Updated Hebrew language file. Attaching 2 patches: one contains both the regular language file and the newly translated a11yhelp, and one contains only the regular language file in case the a11yhelp is not to be translated. |
|||||
#5516 | IE8: Toolbar buttons have higher bottom padding | Bug | Normal | CKEditor 3.3 | UI : Toolbar | |
Description |
This cannot be reproduced with the sample files, but in the online demo of CKEditor, the buttons have an extra padding in the bottom with IE8 in IE8 mode. This is easy to notice in the last row, when compared with the combos. |
|||||
#5517 | Extra <p> </p> when pasting in webkit | Bug | Normal | Core : Pasting | ||
Description |
When pasting in Webkit, there is often an extra <p> </p> added when you look at it in the Source view. The reasons seem to be:
I've come up with a way to deal with issues 1-3, but not 4. Right now I apply the following clean up code on a paste event when it doesn't contain Microsoft word junk. If you have some feedback or know of a better way please let me know. I am not sure where this would go if it were to be a patch. CKEDITOR.on('instanceCreated', function(e) { if(CKEDITOR.env.webkit){ editorInstance.on('paste', function(evt) { var data = evt.data; data['html'] = data['html'].replace(/<(META|LINK)[^>]*>\s*/gi, '' ); /* If not pasting from word and pasting into a new paragraph, * clean up code, replace paragraph element, and cancel paste action. * Otherwise continue with paste event. */ if( !( /(class=\"?Mso|style=\"[^\"]*\bmso\-|w:WordDocument)/ ).test( data['html'] ) ){ var temp_div = document.createElement("div"); temp_div.innerHTML = data['html']; //remove Webkit span wrapper tag if( (temp_div.childElements().length == 1) && (temp_div.childElements()[0].className.indexOf('Apple-style-span') > -1 ) ){ data['html'] = $(temp_div).childElements()[0].innerHTML; temp_div = document.createElement("div"); temp_div.innerHTML = data['html']; } var selection = editorInstance.getSelection(), range = selection.getRanges()[0], orgStart = range.startContainer, orgEnd = range.endContainer, nextElement = orgStart.getNext(); if(/^\s*<br>\s*$/.match(orgStart.$.innerHTML) && (orgStart.$.tagName =='P') ){ var newRange = new CKEDITOR.dom.range(range.document), fragment=document.createDocumentFragment(); for(var mynode=0;mynode< temp_div.childNodes.length; ++mynode){ if(typeof temp_div.childNodes[mynode] == 'object'){ if(temp_div.childNodes[mynode].nodeName == '#text'){ fragment.appendChild(document.createTextNode( temp_div.childNodes[mynode].data ) ); }else{ fragment.appendChild(temp_div.childNodes[mynode].cloneNode(true)); } } } orgStart.$.parentNode.replaceChild(fragment, orgStart.$); //Reset cursor to before next element or end of the editor's content if(nextElement){ newRange.setStartAt(nextElement, CKEDITOR.POSITION_BEFORE_START); newRange.setEndAt(nextElement, CKEDITOR.POSITION_BEFORE_START); }else{ newRange.setStartAt(editorInstance.document.getBody(), CKEDITOR.POSITION_BEFORE_END); newRange.setEndAt(editorInstance.document.getBody(), CKEDITOR.POSITION_BEFORE_END); } newRange.select(); evt.cancel(); } } }); }); |
|||||
#5518 | Cannot embed a textarea in a form in ckeditor | Bug | Normal | General | ||
Description |
If I build a form using the toolbar in ckeditor and include a textarea in it then when you save and return to edit it sees the </textarea> as the tag used to define the initial CKEditor instance. Any content appearing after the textarea appears below the editor window. |
|||||
#5519 | Bad handling of textareas | Bug | Normal | General | ||
Description |
Tested with IE8 and the demo. To reproduce
|
|||||
#5520 | CKfinder 1.4.3 html security does not accept 'HTM' extensions | Bug | Normal | General | ||
Description |
Although I have added HTM in: $configHtmlExtensions? = array('html', 'htm', 'xml', 'js', 'HTM'); I still get the error message html in first Kb and upload is aborted. Changing the extension to 'htm' manually solves this. But our third party scoring applications for competitions all use HTM as extensions, e.g. Bridge, Sail200, ZW. If there is a separate CKfinder bug site you have managed to hide it very well! |
|||||
#5521 | fullpage and enablexhtml jacking up head and body tags (adding extras) | Bug | Normal | General | ||
Description |
If I paste the following into the source screen: <html> <head> {html_header_includes} </head> <body> {page_body} </body> </html> then switch to html view and then back to source, the code becomes this: <html> <head> </head> <body> {html_header_includes}</body> </html> <html xmlns="http://www.w3.org/1999/xhtml"> <body> {page_body}</body> </html> Settings: config.fullPage = true; config.EnableXHTML = true; |
|||||
#5522 | IE Fails to apply type="text" attribute to Text Fields | Bug | Normal | CKEditor 3.5.1 | UI : Context Menu | |
Description |
Descriptive summary: When creating a Text Field element of type="text" Internet Explorer does not apply the 'type' attribute to the input tag. Because of this, the Context Menu for the same Text Field element will NOT display if accessed using FireFox. This bug was realized since our application saves HTML into a database where users can modify the markup using CKEDITOR. Some of our users use Internet Explorer while others use FireFox. Steps to reproduce: Using Internet Explorer:
Using FireFox:
Verified With: CKEDITOR 3.2.1 using IE7 & FF 3.5.9 CKEDITOR 3.2.2 SVN using IE7 & FF 3.5.9 |
|||||
#5523 | No longer possible to insert non-breakable spaces like in FCKeditor | New Feature | Normal | General | ||
Description |
Since CKEditor, it is not possible to insert non-breakable spaces anymore like it used to be in FCKeditor. In FCKeditor, it was possible to add a non-breakable space pressing Shift + Space or Alt + 0160. In CKEditor, this is not possible any longer. I consider this as a bug as it is a regression. |
|||||
#5524 | Inline Quotation Style Option is showing differently in IE to other browsers | Bug | Normal | General | ||
Description |
To reproduce the defect
Actual Result: Inline Quotation option is shown with out Quotation marks in IE.Tested against IE 6 & 7 Expected Result: Inline Quotation option should show with Quotation marks like the way it displays in other browsers |
|||||
#5525 | [[IE]] Inline Quotation Style Option is not working | Bug | Normal | General | ||
Description |
To reproduce the defect:
Expected Result: Closing and Ending Quotes are added and the cursor should be in between the quotes Actual Result: IE - - No Quotes are added and when we start typing the text we still cold not see quotes.But we could see the Inline Quotation Tag(<q> ) applied to the text in HTML Source Safari, Chrome - - Closing and Ending Quotes are added but the cursor is out of the Quotes. |
|||||
#5526 | Ckeditor 3.2: Not Upload in IE | Bug | Normal | General | ||
Description |
I have not Upload Pictures and Files in Ckeditor 3.2 in IE all version Error start in function setUrl in line 356 355 var dialog = this._.filebrowserSe.getDialog(), 356 targetInput = this._.filebrowserSe[ 'for' ], 357 onSelect = this._.filebrowserSe.filebrowser.onSelect; from file \_source\plugins\filebrowser\plugin.js (source files) and this not work orig file ckeditor.js (not source files) |
|||||
#5527 | Anchor (#) in URL gets urlencoded when using CKEDITOR.tools.callFunction | Bug | Normal | CKEditor 3.6.3 | General | |
Description |
When calling CKEDITOR.tools.callFunction(2, "http://www.kajona.de/index.html#myanchor"); out of our custom filebrowser, CKEditor will convert the URL to http://www.kajona.de/index.html%23myanchor I guess this isn't a feature? |
|||||
#5529 | CKFinder loose png transparency on thumbnails (PHP) | Bug | Normal | Server : PHP | ||
Description |
I don't know if it's clear enough on the screenshot but the "buy" button (3rd image) should have transparent rounded borders but they appear black. This is caused by imagecopyresampled not keeping trancparency on png. Here is a fix for this : in CommandHandler/Thumbnails.php add this code after the line $oThumbImage = imagecreatetruecolor($oSize["Width"], $oSize["Height"]); (line 237) if($sourceImageAttr['mime'] == 'image/png'){ imagecolortransparent($oThumbImage, imagecolorallocate($oThumbImage, 0, 0, 0)); imagealphablending($oThumbImage, false); imagesavealpha($oThumbImage, true); } Regards, Ben. |
|||||
#5530 | page break for printing can not be removed using Undo | Bug | Normal | CKEditor 3.3 | General | |
Description |
To reproduce the defect:
Expected Result: See that the Page break for Printing that we have inserted in Step 2 is removed Actual Result: Page break for printing is not removed no matter how many number of times we press Undo. Tested against IE 6&7, FF3.6 |
|||||
#5531 | All IDs and classes should all have the 'cke_' prefix | Bug | Normal | CKEditor 3.4 | General | |
Description |
While I was reading the code I've noticed that not all IDs (e.g. in dialogs) and classes (e.g. in the colordialog plugin) uses the 'cke_' prefix, some of them are quite common IDs such as 'picker'. This can lead to collision and make the integration problematic. |
|||||
#5532 | ie8 display inline-table problem | Bug | Normal | UI : Skins | ||
Description |
Hi, cke_skin_kama .cke_editor css use display propetries with "inline-table" and width "100%".. when i put ckeditor in resizable iframe , textarea seen normal firefox 3.6.3 but ie 7 and 8 cant understand "inline-table".. if we change display "block" this time, ie normal but ff doesnt show normal.. |
|||||
#5533 | Bug: [IE] Copy / paste of unsigned lists adds extra p tags, which leads to data loss. | Bug | Normal | Core : Lists | ||
Description |
When unsigned list is copied and pasted in IE, extra paragraph tags are added. When list is saved several times it's items are deleted. Here are the steps to reproduce this:
RESULT: Only the last item of the copied list is present. The other ones are deleted. Check the attachemnt for more information Browser name and OS : Windows XP + IE 7 |
|||||
#5534 | Uploading does not URL-encode the link at the end of the upload | Bug | Normal | General | ||
Description |
Demonstration
(For comparison, click on the 'Browse Server' button and select the file you have uploaded and notice that those characters are encoded) |
|||||
#5536 | Problems with pasting (executing insertHtml) and formatted text | Bug | Normal | CKEditor 3.5 | General | |
Description |
This is actually a duplicate of #5170, but since that ticket was already reviewed and committed, here's another one (I guess [5273] should be reverted as the issue was misunderstood). Note that this bug occurs when pasting any content, this is not an issue that exists only when pasting special character. Updated description below: When inserting content with insertHtml() inside of formatted text, editor breaks formatting and inserts content without formatting. Confirmed in FF 3.5. Works fine in IE8 and Safari 4. Steps to reproduce
This can be reproduced in many different ways in CKEditor, everywhere where insertHtml() is used. Targetting to 3.3 as it might be a bit irritating. |
|||||
#5537 | contentEditable property in ckeditor | Bug | Normal | General | ||
Description |
Please if you can help with the details of content editable properties with respect to an element which is an Input tab. When we try setting the contentEditable="false" property at the element level , it still show as editable . But when its done at the document level the elements behaves as non-editable . Please help us with this . Its URGENT !! |
|||||
#5538 | IE 8/9 erratic context menu behavior | Bug | Normal | UI : Context Menu | ||
Description |
In the latest nightly build: using IE 8 - if I first copy something, then go to: http://nightly.ckeditor.com/5378/_samples/replacebyclass.html then right-click, the context menu appears, but "Paste" is greyed out. if I right-click again, the context menu appears, and "Paste" is now an active option If I delete the text that's currently in CKEditor (Ctrl-A to select all, then delete) and then right-click, the menu appears (all greyed out, then immediately disappears) |
|||||
#5539 | Ajax sample throws an error when creating/destroying editor instance | Bug | Normal | General | ||
Description |
While trying to reproduce #5416 and following these instructions:
using CKEditor 3.2.1 (both source and release), IE8/XP3 I get from time to time the following error: "object does not support this method or property" when creating CKEditor for the second time (not when deleting a table). See attached screenshot for more details. |
|||||
#5540 | Focus not going to Accessibility Instructions dialog when we activate it | Bug | Normal | Accessibility | ||
Description |
To reproduce the defect
Expected Result: Focus goes to the Accessibility Instructions dialog and JAWS reads the content on the dialog. Actual Result: In FF: This only happens when we activate the Accessibility Instructions dialog for first time. Focus does not go to the dialog and the cursor still stays in the body of the Editor. we have to Press Tab 4 times to get the focus back on to the dialog and this is causing issues with JAWS not reading the Content when we activate the dialog for the first time. We have to open the dialog second time to get the focus properly on the dialog In IE: Focus never goes to Accessibility Instructions dialog no matter how may times we pressed the Tab. |