Custom Query
Results (6301 - 6400 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component |
---|---|---|---|---|---|---|
#6829 | Spell Check dialog should be resizable | Bug | Normal | CKEditor 3.5 | UI : Dialogs | |
Description |
The spell check dialog is one of the most hard to use things inside of CKEditor. The problem is that the default window where the content is shown is very tiny. It's hard to find out in what place exactly we are in the document. Being able to resize this dialog would definitely make things easier. Resizing this dialog should simply result in enlarging the table cell where content is displayed (<td class="midtext">) |
|||||
#6830 | Use editor.lang.common in the iframe (flash, image) dialog | Bug | Normal | CKEditor 3.5 | UI : Language | |
Description |
We have introduced a new dialog that contains words that are already used in other places:
To reduce the size of language files and make the fresh release of CKEditor looking better in languages other than English (getting new translations from contributors always take some time), let's do some cleanup with the common words we have used there and ensure that those strings would be translated correctly in 3.5. Note that the context in the Flash and Image dialogs is exactly the same for those strings, so we're safe with reusing those values. |
|||||
#6831 | Missing command & button for <label> | New Feature | Normal | General | ||
Description |
The forms plugin should provide a dialog to create a <label> around the selected text and set its 'for' property (a text input or dropdown with the ids of existing form elements) |
|||||
#6832 | improper page-break plugin | Bug | Normal | General | ||
Description |
page-break is not only used when printing ,but mostly it is used by backend program to split a long post for paging. steps : 1.set the following code to editor : <div style="border: 10px solid green;"> <p> 123456</p> </div> 2.put cursor between '3' and '4' ,and click page-break button, code generated by current version: <div style="border: 10px solid green;"> <p> 123</p> <div style="page-break-after: always;"> <span style="display: none;"> </span></div> <p> 456</p> </div> if the backend program splits it without html parsing , then each part of its content is malformed so i think page-break should generate such code : <div style="border: 10px solid green;"> <p> 123</p> </div> <div style="page-break-after: always;"> <span style="display: none;"> </span></div> <div style="border: 10px solid green;"> <p> 456</p> </div> and above code is better for printing and splitting .
|
|||||
#6833 | Webkit: Table cells lack padding | Bug | Normal | CKEditor 3.5 | General | |
Description |
Note that table cells don't have any padding at all. |
|||||
#6834 | Inserting ampersand results in a "&amp;" | Bug | Normal | CKEditor 3.5 | General | |
Description |
Note that the editor shows "&". |
|||||
#6837 | Improve getBoundaryInformation | Bug | Normal | Core : Selection | ||
Description |
Reported here: http://cksource.com/forums/viewtopic.php?f=11&t=20956 We should test if it keeps working correctly and it improves performance. var getBoundaryInformation = function( range, start ) { var getIndex = function( n ) { var parent = n.parentNode, currentIndex = -1, node; if ( parent ) { node = parent.firstChild; while ( node ) { currentIndex++; if ( node === n )break; node = node.nextSibling; } } return currentIndex; }; range = range.duplicate(); range.collapse( start ); var parent = range.parentElement(); //如果节点里没有子节点,直接退出 if(!parent.hasChildNodes()){ return {container:parent,offset:0}; } var siblings = parent.children, child, testRange = range.duplicate(), startIndex = 0,endIndex = siblings.length - 1,index=-1, distance; while (startIndex <= endIndex) { index = Math.floor((startIndex + endIndex) / 2); child = siblings[index]; testRange.moveToElementText(child); var position = testRange.compareEndPoints( 'StartToStart', range ); if (position > 0) { endIndex = index - 1; } else if (position < 0) { startIndex = index + 1; } else { return {container:parent,offset:getIndex(child)} } } if(index==-1){ testRange.moveToElementText(parent); testRange.setEndPoint('StartToStart',range); distance = testRange.text.replace( /(\r\n|\r)/g, '\n' ).length; siblings = parent.childNodes; if(!distance){ child = siblings[siblings.length-1]; return {container:child,offset:child.nodeValue.length}; } var i = siblings.length ; while ( distance > 0 ) distance -= siblings[ --i ].nodeValue.length; return {container:siblings[i],offset:-distance} } if(position>0){ testRange.collapse(); testRange.setEndPoint('StartToStart',range); distance = testRange.text.replace( /(\r\n|\r)/g, '\n' ).length; if(!distance){ return {container:parent,offset:getIndex(child)-1} } while(distance>0){ child = child.previousSibling; try{ distance -= child.nodeValue.length; }catch(e){ return {container:parent,offset:getIndex(child)} } } return {container:child,offset:-distance} }else{ testRange.collapse(false); testRange.setEndPoint('EndToStart' , range); distance = testRange.text.replace( /(\r\n|\r)/g, '\n' ).length; if(!distance){ return {container:parent,offset:getIndex(child)+1} } while(distance>0){ child = child.nextSibling; try{ distance -= child.nodeValue.length; }catch(e){ return {container:parent,offset:getIndex(child)} } } return {container:child,offset:child.nodeValue.length-distance} } }; |
|||||
#6838 | Applying formats should take <br> tags into account | Bug | Normal | Core : Styles | ||
Description |
Open the attached file. Select all, copy, paste into CKEditor. FF Select any line in the text. Apply a format. The entire pasted text gets the selected format. Only the selected line should get the selected format. IE Select the "Link types for extraction..." line in the text. Apply a format. The selected line, plus the two lines after it get the selected format. Only the selected line should get the selected format. When applying formats, the editor should take <br> tags into account. This is the expected user behavior. |
|||||
#6839 | FF - editor destructive on cut operation | Bug | Normal | General | ||
Description |
Open an editor with the following html <p id="_1272210411756">
<p id="_1272210435459">
<p id="_1272210435460">
Select P2 starting at the beginning of the line and drag until the beginning of P3 line. Cut. The contents of last <p> tag is changed. If you view the source it will be as follows: <p id="_1272210411756">
<p>
|
|||||
#6840 | Wysiwyg: When setting editor content to an empty paragraph, cursor is positioned after <br> and input ends up on second line | Bug | Normal | General | ||
Description |
Go to demo page:
CKEDITOR.instances.editor1.setData('<p><br></p>'); CKEDITOR.instances.editor1.focus();
This is caused by the onSelectionChangeFixBody function in the wysiwyg plugin, where Range::moveToElementEditEnd is called for the empty paragraph. Cursor then ends up after the br element. Expected behavior : When paragraph is empty (contains br-tag), Range::moveToElementEditStart should be called. Tested in Firefox 3.6.13, WinXP, CK version 3.4.2 |
|||||
#6841 | Enterkey behavior alignment in preformatted | Task | Normal | CKEditor 3.6 | UI : Enter Key | |
Description |
This's a continuation of #5402, after a massive discussion, it's turns out that it's better to have enter key break lines just like other blocks (heading, list) inside <pre>, in which SHIFT-Enter creates line-break and Enter exit from it and create new paragraph element afterward. |
|||||
#6842 | cloneContents can remove the selection. | Bug | Normal | General | ||
Description |
editor.getSelection().getRanges()[0].cloneContents() Observe that the text is no longer selected after cloneContents has been called. |
|||||
#6843 | [AIR] Link dialog throws "some of the options have been changed" message falsely | Bug | Normal | CKEditor 3.5 | General | |
Description |
The "some of the options have been changed" message is thrown. |
|||||
#6844 | bug in your samples | Bug | Normal | General | ||
Description |
I got the latest CKEditor version: 3.4.2 and put it on my tomcat6 server. I accessed the samples and clicked on "Replace textareas by class name". When that sample appeared, I clicked the Submit button. On the screen under the CKEditor - Posted Data heading you can see: $value ) { if ( get_magic_quotes_gpc() ) $postedValue = htmlspecialchars( stripslashes( $value ) ) ; else $postedValue = htmlspecialchars( $value ) ; ?> The same problem appears on any of the samples that have a submit button. I'm using tomcat6 on XP with service pack 3. Browser was Chrome 8.0 but IE 6 had the same problem. I have tried various ways of contacting your company but so far have had no response. This is not a great way to introduce potential customers to your software. Please send me some kind of response. thanks, Terry |
|||||
#6845 | entering a blank before URL in the URL field is breaking the link | Bug | Normal | CKEditor 3.6.1 | UI : Dialogs | |
Description |
To reproduce the defect:
Expected Result: Link should be shown on the page with blank removed before the URL and link should work. Actual Result: Link is removed and a text is shown like this http:// www.bbc.co.uk. |
|||||
#6846 | Some bug in firefox 3.6.x | Bug | Normal | General | ||
Description |
check box, radio box, select button, these button haven't right menu and can not edit them with double click please fix them, ths |
|||||
#6847 | Allow cursor to exit from container blocks | Bug | Normal | General | ||
Description |
The editor should provide the ability of exiting cursor from paragraph block into container blocks, mostly "div" and "blockquote", there's no explicit specification yet, a proper solution that address this problem should come out of this ticket. <div> <p>paragraph one</p> <p>paragraph two</p> </div> <blockquote> <p>cited paragraph</p> </blockquote> |
|||||
#6848 | Double click issue with 3.4.2 makes WHOLE page uneditable in FF | Bug | Normal | General | ||
Description |
When you double click the image button or any other button in the toolbar the background overlay is placed above the open dialog making the user unable to do anything on the page. And the user is only left with the option to kill the page or hit the backspace button. In the world of CMS such as Joomla this is not good as this means the user will lose all they work they have done so far in the editted article as there is no way to save the article. Actual results: background overlay placed above the open dialog effectively freezing the page. Expected results: Background overlay should be below the open dialog You can reproduce this by going to the demo page on this site and double clicking the image button in the toolbar
|
|||||
#6849 | Paragragh tags should not be added inside <li> tags | Bug | Normal | CKEditor 3.5.3 | Core : Lists | |
Description |
Steps to Reproduce the defect:
Expected: The source should look like this: <ol> <li> <h1>Heading 1 List Item 1</h1> </li> <li> Normal List Item 2 </li> <li> Normal List Item 3 </li> </ol> Actual: But instead there are <p> tags added inside <li> tags so the output looks like this: <ol> <li> <h1>Heading 1 List Item 1</h1> </li> <li> <p>Normal List Item 2</p> </li> <li> <p>Normal List Item 3</p> </li> </ol> |
|||||
#6850 | About CKEditor dialog window should contain the User's Guide link | Task | Normal | CKEditor 3.6 | General | |
Description |
Since users are accustomed to finding "Help" under the icon marked with a question mark, the About CKEditor dialog window should contain a link to CKEditor 3.x User's Guide. Some users might not be aware that the online editor embedded in a website they are using is CKEditor and might not know its documentation site. Suggested wording: Check <a href="http://docs.cksource.com/CKEditor_3.x/Users_Guide/Quick_Reference">CKEditor User's Guide</a> for help. or similar. |
|||||
#6851 | Have a modal window for File Browser | New Feature | Normal | File Browser | ||
Description |
When you click on "Browse server" in image properties or link windows, open the file browser in a modal window instead of native window popup (for instance already implemented in TinyMCE) In my opinion:
|
|||||
#6852 | bug in your samples in CKEditor 3.4.2 | Bug | Normal | General | ||
Description |
I downloaded the ckeditor_3.4.2.zip and installed it in my tomcat 6 servlet engine as instructed. I tried the samples. The samples web page displayed correctly. I clicked the Replace text area by class name" link. The sample editor appears and I can edit things in it. When I click the Submit button then screen shows: CKEditor - Posted Data $value ) { if ( get_magic_quotes_gpc() ) $postedValue = htmlspecialchars( stripslashes( $value ) ) ; else $postedValue = htmlspecialchars( $value ) ; ?> Field Name Value I guess it was supposed to show what was submitted. Please note, that for a potential new user like me, the combination of buggy examples and no response to any attempts to communicate with you is not a good way to promote your business. In general, I like what I see of your software but it has to be backed up with real responsiveness. Terry Kilshaw CTO Quantech |
|||||
#6854 | Result of expression c.getContentElement is not an object | Bug | Normal | CKEditor 3.5 | General | |
Description |
The exact error message was: TypeError: Result of expression 'c.getContentElement('general','content')' [undefined] is not an object As a result of this error, I was unable to open any dialog (Link, Image). This error happened to me twice while checking SCAYT, occurred in the wsc plugin. I'm unable to reproduce it again so it might be hard to trace it, but I'm posting it just in case someone noticed it again and perhaps have some more information on it. Environment: Safari 5.0.3 @ Mac. SCAYT enabled, Spanish language selected. CKEditor 3.5 (SVN) |
|||||
#6855 | Keyboard word selection has stopped working in Firefox. | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
In most text editors, Ctrl+Shift+Left and Ctrl+Shift+Right are commonly used keystrokes to select one or multiple words at a time. This keystroke used to work correctly in the latest version of MediaWiki+FCKeditor. However, it appears that an update to the latest version of Firefox for Windows (3.6.13) has broken this functionality. Word selection still works properly in IE and in the latest Ubuntu Linux release of Firefox. I have observed this problem on several web sites using MediaWiki+FCKeditor, including both sites I own and sites I don't own, including the MediaWiki+FCKeditor "sandbox", by using several browsers on several computers. |
|||||
#6857 | [IE] wrong toolbar buttons states | Bug | Normal | CKEditor 3.4.3 | UI : Toolbar | |
Description |
When switching to "Source" mode, all wysiwyg-only toolbar buttons are still enabled, combos are not affected though. |
|||||
#6858 | Full page mode: Spell check dialog adds extra class to body element | Bug | Normal | UI : Spell Checker | ||
Description |
When SCAYT is enabled and the spell check dialog is used to check the document, an extra class is added to the body element.
Confirmed in Safari 5.0.3 and Firefox 3.6.13. |
|||||
#6859 | Full page mode: Spell check dialog adds extra empty style tags | Bug | Normal | CKEditor 3.5 | UI : Spell Checker | |
Description |
When SCAYT is enabled and the spell check dialog is used to check the document, empty extra style tags are added to the document and a JavaScript error occurs (reported in #6863).
Confirmed in Safari 5.0.3 and Firefox 3.6.13. Looks like a regression introduced in 3.5 |
|||||
#6860 | [FF] placeholder plugin - JavaScript error | Bug | Normal | CKEditor 3.5.1 | UI : Dialogs | |
Description |
element is null http://ckeditor.local/ckeditor/3.5/_source/plugins/placeholder/dialogs/placeholder.js Line 36 |
|||||
#6861 | The Indent command changes a text direction | Bug | Normal | CKEditor 3.5.3 | Core : Styles | |
Description |
The Indent command changes a text direction.
Result: <ul> <li dir="rtl"> 1 <ul> <li> 2</li> <li> 3</li> </ul> </li> </ul> Expected: A new list element wrapping LIs 2 & 3 ? |
|||||
#6862 | FF4: spellWin.location is null | Bug | Normal | UI : Spell Checker | ||
Description |
spellWin.location is null Line 348 |
|||||
#6863 | Full page mode: Spell check dialog causes a JS error | Bug | Normal | UI : Spell Checker | ||
Description |
When SCAYT is enabled and the spell check dialog is used to check the document, a JavaScript error occurs (empty style tags are covered by #6859).
Tried to register widget with id==scayt_2 but that id is already registered http://svc.spellchecker.net/scayt26/_base.xd.js Line 880 Confirmed in Safari 5.0.3 and Firefox 3.6.13. (js error moved from #6859) |
|||||
#6864 | [FF] CKeditor bugs while maximised if there is too much text before it's inclusion | Bug | Normal | General | ||
Description |
When you have too much text before CKeditor's inclusion, if you maximise your CKeditor's instance and then click below your text, the editor is bugging : the toolbar disappear, the editor slide up, and the only way to get it back is to use the upper arrow of the keyboard. This problem occurs on the demo site if you add some text before (like 50 lines - with Firefug as an example). Attached screenshots illustrates the bug. |
|||||
#6865 | BiDi buttons are not reflected when a change is done through a dialog | Bug | Normal | CKEditor 3.5.3 | Core : BiDi | |
Description |
Note that the toolbar icon shows LTR. |
|||||
#6866 | Image link target field not correctly set when editing an existing image. | Bug | Normal | CKEditor 3.4.3 | General | |
Description |
Observe that the Target field is incorrectly set to '<not set>'. The anchor tag's target attribute does contain the correct value, '_blank'. |
|||||
#6867 | bug in your samples in CKEditor 3.4.2 | Bug | Normal | General | ||
Description |
This bug was posted before as #6852. It was closed on your end by someone claiming that is was the duplicate of #6044. There are two tickets for 6044. One has a line through it. Neither of them have anything to do with the problem I described. Here is that bug report again: I downloaded the ckeditor_3.4.2.zip and installed it in my tomcat 6 servlet engine as instructed. I tried the samples. The samples web page displayed correctly. I clicked the Replace text area by class name" link. The sample editor appears and I can edit things in it. When I click the Submit button then screen shows: CKEditor - Posted Data $value ) { if ( get_magic_quotes_gpc() ) $postedValue = htmlspecialchars( stripslashes( $value ) ) ; else $postedValue = htmlspecialchars( $value ) ; ?> Field Name Value I guess it was supposed to show what was submitted. So far your organization gets a failing grade for total lack of responsiveness. That's a pity because the software looks fairly good. Feel free to email me if you actually want some business. Terry Kilshaw CTO Quantech tkilshaw@… |
|||||
#6868 | Crash with definition lists (Firefox, Chrome) | Bug | Normal | CKEditor 3.5.1 | Core : Parser | |
Description |
I am facing the same problem as this user: http://cksource.com/forums/viewtopic.php?f=11&t=20955&start=0 The following source code makes CKEditor 3.4.2 crash when switching to wysiwyg mode: <dd>crash</dd><dd>crash</dd> Note that this one does not: <dd>crash</dd> And apparently there is no problem with well-formed definition lists. |
|||||
#6869 | data-cke-nostyle disappears from source | Bug | Normal | CKEditor 3.5.1 | Core : Output Data | |
Description |
Using the code suggested here: http://dev.ckeditor.com/ticket/6103#comment:30 switch to source mode and back. Result: My name is <span>%NAME%</span> Note: data-cke-nostyle="1" is gone. |
|||||
#6870 | When 'unlink' on image, whole image is deleted from content | Bug | Normal | General | ||
Description |
TC:
Expected result:
Actual result: Happens in all versions of CKE |
|||||
#6872 | IE: Link target field is not populated properly when no target is set | Bug | Normal | CKEditor 3.5.1 | General | |
Description |
Note that the field is blank. |
|||||
#6873 | Chrome: Impossible to decrease width of WSC dialog | Bug | Normal | CKEditor 3.5.1 | UI : Spell Checker | |
Description |
FUP of #6829.
The dialog won't resize its width. |
|||||
#6876 | To investigate: insertHtml left trim text | Bug | Normal | CKEditor 3.5.1 | General | |
Description |
Due to comment added by james c:
|
|||||
#6877 | bug in your samples in CKEditor 3.4.2 | Bug | Normal | General | ||
Description |
This will be the fourth time that I have reported this problem via a ticket. All three previous attempts were cancelled by the bug reviewer. This is for me, in part, an evaluation of how your company responds to feedback. So far you don't get a passing grade. First here is the bug report: I got the latest CKEditor version: 3.4.2 and put it on my tomcat6 server. I accessed the samples and clicked on "Replace textareas by class name". When that sample appeared, I clicked the Submit button. On the screen under the CKEditor - Posted Data heading you can see: $value ) { if ( get_magic_quotes_gpc() ) $postedValue = htmlspecialchars( stripslashes( $value ) ) ; else $postedValue = htmlspecialchars( $value ) ; ?> The same problem appears on any of the samples that have a submit button. I'm using tomcat6 on XP with service pack 3. Browser was Chrome 8.0 but IE 6 had the same problem. Using Firefox on Windows 7 produced the same result. My previous ticket 6052 was marked as a duplicate of 6844 and 6844 was marked as invalid. But its not invalid. I get the same results every time I try your examples. If there is a resolution of this please indicate what it is instead of just marking my feedback as invalid. Having looked back at the the FCKEditor Samples, I guess that the sample I tried is supposed to show a table with data values from the submit. Instead it just spews out the aforementioned JavaScript above the first part of the data value table. Please contact me if you need me to show you this problem. But please stop marking it as invalid without some explanation. If it is invalid, why is it invalid? Are you unable to reproduce the problem? Or when you reproduce the problem do you think that spewing JavaScript onto the screen is the expected behaviour? thanks, Terry |
|||||
#6878 | FCK Editor Not working with IE 8 on my website (Version 2.6.4.23264) | Bug | Normal | Server : ASP.Net | ||
Description |
Hello There, FCK Editor is causing poblem with IE 8. Website developed on asp.net technology. and FCK version is 2.6.4.23264 However it's working with FireFox. In Firefox all event of Editor is fireing but in IE it's give error message FCKEditorAPI is undefine. Where i m wrong i dont know and if i am wrong inconfiguration then it's should not work in Firefox. you can see live demo. go to http://test.classified4newspaper.com/ and then click on book your print ads Select state Gujarat in first after that select Ahmedabad in City After that Exapnd GujaratSamachar Tree and Check mark on ahmedabad Edition. in Category Select Business and Press Next Now click on a Edit This Layout and Now you are on age which causing a Problem (You can see JS also using View age Source) Please help me out i m trying this from almost week but not going to success. if you want more information then let me know. Thank you. |
|||||
#6879 | New dialog window resizing grip has inconsistent padding/spacing | Bug | Normal | UI : Dialogs | ||
Description |
The new dialog window resizing grip from v3.5 is displayed in an inconsistent way in different browsers.
IE8: looks OK, there is some spacing between the grip and the dialog window border. Screenshots attached. |
|||||
#6880 | Better error handling for servers without PHP support | Task | Normal | CKEditor 3.5.1 | General | |
Description |
just to explain the problem reported here #6877 |
|||||
#6881 | iframe captions need to be consistent | Bug | Normal | CKEditor 3.5.1 | UI : Language | |
Description |
As per internal discussion, the following spelling will be used when referring to the new <iframe> element:
An English language patch changing the tooltip and dialog window captions attached. |
|||||
#6882 | Opera: we can't open Accessibility Instructions or Help Dialog | Bug | Normal | Accessibility | ||
Description |
To reproduce the defect
Expected Result: Accessibility Instructions or Help dialog comes up. Actual Result: Nothing happens and we do not see any dialog |
|||||
#6883 | Table Dialog error when clicking OK button if multiple table cells are selected | Bug | Normal | General | ||
Description |
It is possible to get a "Uncaught TypeError: Cannot call method 'appendChild' of undefined" [Chrome] error ("k.$ is undefined" in Firefox) when clicking the OK button in the table dialog if the user selected multiple table cells before launching the table dialog. This bug affects all major browsers. To reproduce:
Results: If you check the console you will see the described error, and the Table Dialog will stay in open. |
|||||
#6884 | Graphical glitching when opening spell checker | Bug | Normal | General | ||
Description |
When I click on the spell checker, I get a graphical glitch where most of CKEditor and the spell checker turns grey and the controls disappear. I was playing around, and if I remove the filter from the div with class "cke_dialog_background_cover", it seems to fix this problem. |
|||||
#6885 | CKEDITOR.remove: wrong @param description in api doc | Bug | Normal | CKEditor 3.5.1 | General | |
Description |
I think there is a wrong description of a @param in the api documentation. Take a look at line 64 of the following file: http://docs.cksource.com/ckeditor_api/symbols/src/core_ckeditor.js.html The documentation is related to the CKEDITOR.remove() method, but the param is described as something to be added:
Probably a c&p error, or even my fault. Thank you very much for reading in advance and keep up the good work. Merry christmas! :) -- Jan |
|||||
#6886 | CKEditor width bug (autogrow issue?) | Bug | Normal | General | ||
Description |
Issue reported here: http://cksource.com/forums/viewtopic.php?f=11&t=15602 And with lots of comments here: (see the last comment) |
|||||
#6887 | Maintain position in file | New Feature | Normal | General | ||
Description |
It would be great if the "current position" in the file was maintained when switching from rendered view to source view and back again. I just tried CKEditor for the first time using the new Drupal 7 setup. (many thanks for that). |
|||||
#6888 | Dataprocessor seems to be not working with 3.5 | Bug | Normal | General | ||
Description |
I can't use dataprocessor with 3.5 works with the 3.4.3 version, Can't really give you the error as we use the minified file and it s not that easy to move to the unminified in the app. You can see the custom dataprocessor here: http://cksource.com/forums/viewtopic.php?f=11&t=21047 |
|||||
#6889 | Documentation of themes\default\theme.js isn't available | Task | Normal | General | ||
Description |
I don't know what's wrong, but I can't find any of the documentation for the methods created inside that file in the published docs. It might be a problem with the jsdoc configuration? |
|||||
#6890 | CKEditor bugs on both 3.5 and 3.4.3 | Bug | Normal | General | ||
Description |
same bugs from 3.5 and 3.4.3 (browser: IE 8.06) after selected some text, press ctrl +b , ctrl + u, ctrl +i repeatedly (i think no one will do that when using . . . ) after 1x-2x times trails, unexpected coding are added to my text, 3.5: <span id="cke_bm_245E" style="display: none"> </span> 3.4.3: <span _fck_bookmark="1" style="display: none"> </span> i can't solve this problem for a long time, so wana ask whether someone encoutnered the same problem . . . |
|||||
#6891 | BIDI: [IE] Not all numbers are displayed in a mixed content Numbered List | Bug | Normal | Core : BiDi | ||
Description |
Steps to reproduce:
Expected: The number 1 appears to the left of the text on the 1st line & the number 2 appears to the right of the text on the 2nd line. Actual: The number 1 appears to the left of the text on the 1st line & the number 2 is not visible. |
|||||
#6892 | BIDI: Incorrect behaviour when copying and pasting RTL list from within a table | Bug | Normal | Core : BiDi | ||
Description |
Steps to Reproduce:
Expected: The Bulleted List that was pasted outside of the table has RTL language direction. Actual: The Bulleted List that was pasted outside of the table has LTR language direction. |
|||||
#6893 | IE: CTRL+Click to open links in a new window | New Feature | Normal | General | ||
Description |
It does not seem possible to follow a link using IE7. NOTE: Firefox works fine. See: http://dev.ckeditor.com/ticket/439 Will this context menu item be also added to CKEditor? I'm using version 3.3.2 and it's not available |
|||||
#6894 | Language direction on table is <not set> when LTR icon is clicked | Bug | Normal | Core : BiDi | ||
Description |
Steps to reproduce:
Expected: The value in the combo box is Left to Right (LTR). Actual: The value in the combo box is <not set>. |
|||||
#6895 | Pasting plain text in full-screen (maximized) view does not work | Bug | Normal | General | ||
Description |
Using Chrome 8.0.552.224 and CKEditor 3.5 (revision 6230), pasting from clipboard while in maximized view does not work. To reproduce: 1)open CKEditor, 2)'Maximize' and 'New Page' 3)'Paste as plain text' 4)ctrl-v clipboard text in dialog box. Clipboard text does not paste. However 'Paste from Word' and 'Paste' does work in full-screen. |
|||||
#6896 | Pasting into Source view in full-screen does not work | Bug | Normal | CKEditor 3.5.1 | General | |
Description |
Using Chrome 8.0.552.224 and CKEditor 3.5 (revision 6230), pasting from clipboard while in maximized Source view does not work. To reproduce:
Clipboard text does not paste properly. Text will paste properly if 'maximize' is switched off and is no longer full-screen. |
|||||
#6897 | No "dir" attribute is added unless direction is changed manually | New Feature | Normal | Core : BiDi | ||
Description |
I use Persian UI of CKEditor, which is right-to-left, to produce right-to-left content on an English page, and English is a left-to-right language. I expect CKEditor to add a dir="rtl" to elements by default, but it doesn't add it. For example if I open CKEditor and type "salam, output HTML would be '<p>salam</p>' rather than '<p dir="rtl">salam</p>'. So the final content which was right-to-left in CKEditor, is left-to-right outside of CKEditor. The same issue happens if someone uses a left-to-right UI of CKEditor to produce some content for a right-to-left page/context. If you're wondering why would anybody produce RTL content for a LTR context: Language of content should be thought of independently of language of UI. It is popular for RTL-languaged people to use the normal LTR UI, but with RTL content. The issue would be more obvious in multi-language environments. I think "dir" attribute should be added to content by default for some reasons:
(Note that I know direction of UI is independent of contentsLangDirection, but I described it like above not to complicate the description.) |
|||||
#6899 | FCKEditor with UsabilityInitiative/WikiEditor | Bug | Normal | UI : Floating Panel | ||
Description |
When using the UsabilityInitiative WikiEditor to modify the toolbar for standard wiki mode editing, yet still wanting to keep FCKEditor for full visual editing, they don't sit well together. Once enabling the inline rich editor it does not hide the WikiEditor toolbar, which can be confusing to another user. As this is becoming quite a standard extension to install in modern wikis I feel it is worth accounting for. |
|||||
#6900 | [IE] Shared toolbar's buttons don't inherit language direction from UI | Bug | Normal | UI : Toolbar | ||
Description |
Using shared spaces sample on IE, the toolbar buttons don't inherit language direction from UI, thus all buttons are displayed like LTR buttons (source icon and arrows on the left etc.). |
|||||
#6901 | Toolbar buttons are not changed for mixed content using shared spaces | Bug | Normal | CKEditor 3.5.3 | Core : BiDi | |
Description |
Using shared spaces sample, change the paragraph's direction. Note that the toolbar buttons are not changed accordingly (#6041). |
|||||
#6902 | [FF4] document selection lost | Bug | Normal | Core : Selection | ||
Description |
FF4 doesn't restore selection on editor focus. |
|||||
#6903 | IE: Additional   is appended to 'empty' initial content (enter mode=DIV) | Bug | Normal | General | ||
Description |
When setting the content of a document with an empty div e.g. editor.setData('<div></div>'); The editor will insert an unnecessary into the content. The user is then required to remove this extra space. This has been found to happen in IE but not in FF. For this test case the enter mode is DIV. |
|||||
#6904 | Safari: Styles disappear before editor goes to maximize mode | Bug | Normal | General | ||
Description |
Using Safari (doesn't affect Chrome), going to maximize mode removes some of the styles and it's possible to see style-less page for a slight second before the editor is maximized. |
|||||
#6905 | Links are not preserved when a link to an anchor is copied and pasted | Bug | Normal | Core : Pasting | ||
Description |
Steps to recreate:
You'll see that the Link Type becomes "URL" not "Link to anchor in the text." When <a href="#one">link to anchor</a> is copied, <a href="demo#one">link to anchor</a> is pasted. The reason for step 3 is to get around bug #6641. |
|||||
#6906 | check if validation is correctly performed with jquery | Task | Normal | General | ||
Description |
I think that I've seen some other people claiming problems about that, so we should verify that it works, perhaps even including it in the jquery sample or as a more complex sample for jquery. http://cksource.com/forums/viewtopic.php?f=11&t=21084 http://stackoverflow.com/questions/4491316/ckeditor-and-asp-net-mvc-3-requiredattribute |
|||||
#6907 | Safari Align(left/center/right) can not be used for Numbered list or Bulleted list | Bug | Normal | General | ||
Description |
To reproduce the defect:
Expected result: Enter text and number/bullet list will be together all show in Align center or Align right. Actual result: Only enter text show in Align center or Align right. Number/bullets in the list still stay left. |
|||||
#6908 | Color of link can not be changed anymore after link text was made some format | Bug | Normal | CKEditor 3.6.2 | Core : Styles | |
Description |
To reproduce the defect:
Expected result: Color of the text in the link changes to brown. Actual result: Color of the link changes to blue and no matter how many different text colors you applied after the color of the text in the link can not be changed anymore, it's blue color always. |
|||||
#6909 | GIF icons of external plugins are not diplayed in toolbar | Bug | Normal | CKEditor 3.5.1 | UI : Toolbar | |
Description |
Icons of external plugin buttons are not displayed in IE7/IE8 in WYSIWYG mode. If switched to "source" mode, icons are displayed but dimmed (which is normal). When you switch back to WYSIWYG mode, some icons may show but still, they are dimmed. If you change icon format from GIF to PNG, everything works as expected. |
|||||
#6912 | too much recursion | Bug | Normal | General | ||
Description |
I'm getting this message in ff 3.6.13, safari 5.0.2 (5533.18.5), ie 8, both mac 10.5.8, 10.6.3 and windows 7 (for the ie one). too much recursion [Break On This Error] return;}if(E=='br'){v.push(H);return;}...n=='br'),q=!!o.$empty[l];r.isEmpty=q; ckeditor.js (line 27) I get this if I click the source button of the editor and then the option to select it again is not present. My editor can be seen here http://174.120.151.156/~crazychr/editor.php I'm not sure of the version number of it. This is occurring when pasting text in from open office/word 1 out of maybe 15 times. Do you want a word file that this occurs with or a copy of the source code Dreamweaver generates when I paste it there? I can't get the source code ck is generating. |
|||||
#6913 | Bad escape sequence \b | Bug | Normal | CKEditor 3.5.3 | Server : PHP | |
Description |
https://dev.ckeditor.com/browser/CKEditor/trunk/ckeditor_php5.php#L559 https://dev.ckeditor.com/browser/CKEditor/trunk/ckeditor_php4.php#L569 What's the \b escape sequence in above lines? Zend Studio complains with a warning, and I'm quite sure it's right. I'd suppress the substitution, what do you think? |
|||||
#6914 | different behavior on different browsers: background or text color | Bug | Normal | General | ||
Description |
in a CKEditor.
another similar case is:
2.On IE and FF, the new line will have the same background color as previous. but chrome not. both background and foreground(text) color have such issue. i checked it in the nightly build (6280),it still exists |
|||||
#6916 | Image Upload Option Not found | Bug | Normal | General | ||
Description |
Dear sir , i am not able to upload image in latest chkeditor soo please help me... thanking you in advance |
|||||
#6917 | IE shows error when user clicks [OK] button of [Cell Properties] dialog | Bug | Normal | Core : Tables | ||
Description |
[Browser] MSIE 7.x MSIE 8.x [Error Details] Message: Object doesn't support this property or method Line: 77 Char: 2242 [Procedures]
|
|||||
#6918 | JavaScript error when creating a new list | Bug | Normal | General | ||
Description |
Regression, introduced in [6113]. Note: works fine in Firefox in safe mode. Maybe a Firebug issue, in any case it did not happen before. Steps to reproduce
|
|||||
#6919 | Chrome too small area width only after refresh | Bug | Normal | General | ||
Description |
Under Chrome 8.0, I set small width for the area like 130px See attached image, same width the area 1 and area 2! area 1: untouchable area 2: after I push source button So after load the page the area width is confused, give the good width to the browser engine (see the normal text area left border is in the perfect position) but show a too wide ckeditor paint. But after I repaint with the source button the ckeditor paint will be repaired and shrink back to the right width! Look like some initializing method is missing after set width. Working well IE 8, Opera 11, Firefox 3.6 but same problem with Safari 5.0.2 |
|||||
#6920 | <br /> tags inside links after pressing enter | Bug | Normal | UI : Enter Key | ||
Description |
This bug looks related to #4886, but only happens when:
The output goes from: <a href="null">text</a> to <a href="null">text <br /> <br /> </a> The expected output should be: <br /> <br /> <a href="null>text</a> I verified this on 3.1 and 3.5. This is a serious bug as it breaks the link. The link is blue and underlined when viewing it in ckeditor but is actually broken when viewed with any browser (IE8, FF, Chrome). |
|||||
#6921 | SCAYT attributes needs to be filtered on paste | Bug | Normal | CKEditor 3.5.3 | UI : Spell Checker | |
Description |
This is the follow-up of bug #6588. Pasted text markuped with SCAYT in one language is not re-checked with SCAYT if another spellchecking language is selected in editor.
Steps to reproduce:
Actual result:
Expected result:
|
|||||
#6922 | Styles inside comments are not preserved | Bug | Normal | Core : Output Data | ||
Description |
A bug reported in the support channel.
Result: <p> <style type="text/css"> <!--{cke_protected}{C}%3C!%2D%2D%0A.test%20%7B%20color%3A%20red%3B%20%7D%0A%2D%2D%3E--> </style> </p> |
|||||
#6924 | Visual improvements in samples provided with CKEditor | Task | Normal | CKEditor 3.5.1 | General | |
Description |
The current set of samples look quite poor. It would be nice to improve the styles a little bit and add some short description to each sample. |
|||||
#6925 | Leading and trailing spaces are not included in getData | Bug | Normal | Core : Output Data | ||
Description |
I'm using the latest CKEditor version 3.5 and it seems that leading and trailing spaces are not being correctly reported using the getData() API. Here are the details: If spaces are entered before or after any character, or only spaces are entered, not all spaces are reported in the data returned by the getData() call. Here is an example: Type a single space ==> getData() returns an empty string "" Type another space ==> getData() still returns an empty string "" Type a 3rd space ==> getData() now returns this string "<p>\n </p>\n" Also a trailing space that follows any character is not reported. Example: Enter any letter (e.g: w) ==> getData() returns "<p>\n w</p>\n" Now enter a space ==> getData() still returns "<p>\n w</p>\n" Enter another space ==> getData() now returns "<p>\n w </p>\n" Is this a known issue? I was unable to find anyone else who reported this behaviour. Thanks. |
|||||
#6926 | Missing context menu for text field | Bug | Normal | General | ||
Description |
There is no context menu for some form elements. Strangely it looks like it is something that was fixed in 3.4: #6046 but the fact is that the following test case worked fine until 3.3.1 Steps to reproduce
Confirmed in FF 3.6.13 and IE8. Note that when inserting the element for the first time in wysiwyg mode, the context menu contains the right items, after switching to source mode and back, the context menu is gone. |
|||||
#6927 | Pasting into the URL field does not work in Google Chrome with CKEditor in 'maximized' mode | Bug | Normal | Core : Pasting | ||
Description |
This was tested at the demo page on ckeditor.com (CKEditor 3.5) and also at the nightly build page. Without maximizing the editor pasting works fine. Windows 7, 64 bit Google Chrome 8.0.552.224 |
|||||
#6928 | Firefox 4.0b8 for Mac - CKEditor ignores current selection, e.g. always places new symbols at start of document | Bug | Normal | General | ||
Description |
While using Firefox 4.0b8 for Mac with the nightly demo, trying to add a symbol part-way through the contents of the document doesn't work - CKEditor always adds the symbol to the start of the document. This also applies to any other plugin - e.g. changing the text color of a selection doesn't work - as it ignores the selection. |
|||||
#6929 | Full screen mode in Wordpress (Whitehouse theme) does not work properly | Bug | Normal | General | ||
Description |
I use a Whitehouse theme (http://sabhlokcity.com/) and because I type a lot on my blogs, I need to expand the screen. Since there is no save option on the FCK editor (the 'save' button is merely decorative), so I need to periodically go back to normal screen and save. However, sometimes even the button to go back to normal screen disappears and then I have effectively lost the content since last save, since I have to use the back button on the browser. That is a big issue for me. Why do all the toolbars disappear? I'm attaching two files that show the kind of problem I'm experiencing. Look forward to some advice on how to resolve this matter. The version is use is Dean's FCKEditor For Wordpress version 3.3.1. My Wordpress is the latest, 3.0.4 Regards Sanjeev |
|||||
#6930 | Aligning images does not work | Bug | Normal | Core : Styles | ||
Description |
I am using CKEditor 3.5 with Drupal 6.20 and CKEditor module 6.x-1.2. When I insert an image and align it to right using the dialog, the preview displays the aligning properly. However, when I save/publish the page, the image is aligned to left. I have noticed in the source that the style definitions have been removed. If I hack the code and use the align attribute, the aligning does work. I have attached a screenshot: on top you see the preview/result, on the bottom, you see the CKEditor section. |
|||||
#6932 | IE7 and IE8 show [Stack overflow] error when using DT and/or DD tags | Bug | Normal | General | ||
Description |
[Browser] MSIE 7.x / MSIE 8.x [Error Details] Alert: Stack overflow at line: xx
[Procedures]
|
|||||
#6933 | Chrome - bold, italics, underline etc. doesn't work with no text selected | Bug | Normal | General | ||
Description |
Tested in nightly demo with Chrome on Mac:
Expected result: you are now typing in bold Actual result: the bold had no effect This also happens for italics, underline, strike, super and sub, possibly others. In FF for Mac the expected behavior is what happens. |
|||||
#6935 | Unwanted scroll on first mouse left-click | Bug | Normal | General | ||
Description |
|
|||||
#6936 | [IE]: Background color panel remains visible when another toolbar button is clicked. | Bug | Normal | General | ||
Description |
Steps to reproduce the defect:
Webpage error details Message: 'null' is null or not an object Line: 46 Char: 1279 Code: 0 URI: http://nightly.ckeditor.com/6288/ckeditor.js
Expected: The background color panel disappears and a numbered list is created. Actual: An error has occurred on the page. The background color panel remains visible and a numbered list is created. |
|||||
#6938 | IE/Opera: RTL language direction is not preserved when enter is pressed at the end of a list. | Bug | Normal | CKEditor 3.5.3 | Core : BiDi | |
Description |
Steps to reproduce the defect:
<p> paragraph 1</p> <ol> <li> list item 1 <ol> <li> list item 2 <ol> <li> list item 3</li> </ol> </li> </ol> </li> </ol>
Expected: The cursor should remain on the right and the language direction should be RTL. Actual: The cursor is on the left and the language direction is be LTR.
|
|||||
#6939 | CKeditor in iframe, from parent = q is null | New Feature | Normal | General | ||
Description |
When replace a div in a iframe with a ckeditor component, from parent it is retrieve "q is null" error in firefox and "Uncaught TypeError: Cannot call method 'setHtml' of null" in Chrome. Test with ckeditor 3.5 and jquery 1.4.4. Error is produced with and without ckeditor jquery adapter. I attach a simple example. For better test and prevent security errors in some browsers, deploy example in a web server (for example, Apache). |
|||||
#6940 | editor.getSelection() not working in ie | Bug | Normal | General | ||
Description |
i use following code in ff and get selection text but in ie it returns [object]. (function() {
b = 'test';
})(); |
|||||
#6941 | horizontal scrollbar in firefox | Bug | Normal | General | ||
Description |
which only occurs in the initialization for 1 second to and is dependent on their parents' style you need to change _source/plugins/wysiwygarea/plugin.js line 537 from element.setStyles( { position : 'absolute', top : '-3000px' } ); to element.setStyles( { position : 'absolute', left: '-3000px', top : '-3000px' } ); |
|||||
#6942 | Greek letters and minor improvements of special char | New Feature | Normal | General | ||
Description |
Hi, I added greek letter to the special character plugin, as in scientific environments these are needed on a daily base. They were already defined in http://docs.cksource.com/ckeditor_api/symbols/src/plugins_entities_plugin.js.html in order to allow them to insert, but the special char plugin didn´t offer them. As greek and also latin letter(!) can be disabled, I made the inclusion optional. Also I added the following missing characters to special chars: "Š","š","Ÿ" Language file is also updated. Please the the files attached |
|||||
#6943 | Copy / paste french characters into editor | Bug | Normal | Server : ASP.Net | ||
Description |
Hi, Just wondering if you have heard of any problems of copying french text into a forms field using the ckeditor and some (not all) of the french characters don't copy in. When I look at the code, it doesn't seem put in the uni-code T8 in... it's just blank. Unforturately I can't show you cause it's used on our internal system. I'm using Windows XP services pack 3 and they browers is IE7. They page is .asp as well. Here is some text that has french characters that doesn't paste into the editor. Le 4 janvier 2011, dans la soirée, des membres du Groupe intégré de réduction de la criminalité, composé de membres du District 7 de la GRC (Carleton-York) et du service de police de Woodstock, ont exécuté un mandat de perquisition dans une résidence de la rue Main à Woodstock, au Nouveau-Brunswick. On a saisi plus de trois livres de marijuana, plusieurs centaines de dollars en argent et des objets associés aux drogues illicites. Un homme de 44 ans a été arrêté sur les lieux, puis libéré par la suite. On s’attend à porter des accusations. In this example the "à" in (Main à Woodstook) was missing and the "ê" in (été arrêté) did not copy into the editor field box. All the other french characters pasted fine. Any suggestions where I should start? Jason |