Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (201 - 300 of 11754)

1 2 3 4 5 6 7 8 9 10 11 12 13
Ticket Summary Owner Type Priority Milestone Component
#3114 V3: IE7 opening of the toolbar dropdown controls fires the onbeforeunload event Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

In V2 it worked fine but in V3 opening of the toolbar dropdown controls fires the windiw.onbeforeunload. To reproduce this bug simply add the following JS code and try to open a toolbar dropdown. Probably it happens because the new version uses IFrame for the dropdown content.

<script>
window.onbeforeunload = function() {
	alert("window.onbeforeunload");
		//if(CKEDITOR.instances["content"].checkDirty())
		//	return "Page has not been saved!";
	}
</script>
#3120 # (pound sign) is not correctly escaped in file urls Michael Osipov Bug Must have (possibly next milestone) FCKeditor 2.6.5 File Browser
Description

File and folder names containing # are not correctly escaped.

The problematic spot is frmresourceslist.html, line 92:

window.top.opener.SetUrl( encodeURI( fileUrl ).replace( '#', '%23' ) ) ;

The replace function replaces at most one pound sign. Files won't get encoded correctly and are not accessible through the file browser.

I have attached a patch which works. This should make into 2.6.5.

An alternative would be to sanitize the character.

#3122 Icon definition for toolbar buttons and context menu items should be able to use icons in icon strips Martin Kou New Feature Must have (possibly next milestone) CKEditor 3.0 General
Description

Loading individual icon files one-by-one over HTTP is a very slow process and should be avoided. So we should allow our users to use icon strips in their plugins for toolbar buttons and context menus, like the following:

{
...
  icon : '/path/to/icon.gif',
  offset : 42
...
}
#3125 IE : Error when clicking on the Style combo Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

IE throws an error when clicking on the Styles combo.

#3128 config.stylesCombo_stylesSet does not load external style JavaScript files. Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

The stylesCombo_stylesSet configuration entry is supposed to be able to load external style definitions via a colon separated syntax. e.g.

config.stylesCombo_stylesSet = 'mystyle:/path/to/mystyle.js';

The stylescombo plugin isn't loading the external JavaScript file for the definition, however.

#3131 Error applying block styles in multiple blocks selection Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description
  1. Create several paragraphs of text.
  2. Select text starting at one paragraph until the middle of the next one.
  3. Apply any heading format.

An error is thrown and the style is not applied.

#3132 Tab and Shift-Tab is skipping elements Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

I can't reproduce this problem locally but it's seen in Senthil's demonstration this evening:

  1. Give every input element and link in a form, which includes CKEditor as an input element, ascending tabindex-es.
  2. Put the focus into CKEditor editing area.
  3. Press Tab.
  4. The focus goes to one tab index after the element that should receive the focus.
#3136 Image plugin - Advanced Tab's Id field is not working Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Image Plugin - Advanced tab's Id field is not getting added to the editor area. Ex: I have added id as '12345' but the result in the editor source is missing the id field,

<img align="absbottom" alt="Oracle" border="10" height="41" hspace="11" src="/cache/abc.gif" vspace="33" width="145" /><br />

We have a business logic that is using this id field. Since the id field is not populated, our functionality is broken.Please fix it as early as possible.

#3138 Request for multi-language files for CKEditor 3.0 Wiktor Walc Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Request for multi-language files for all the features available in CKEditor 3.0

#3146 Insert link incorrect within table cell Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

Reproducing Procedures

  1. Open the replace by code example page;
  2. Make document content and selection as following by double click on cell:
    <table>
    	<tbody>
    		<tr>
    			<td>^
    				text^</td>
    		</tr>
    	</tbody>
    </table>
    
    1. Open link dialog to insert a default link.
    • Actual Result : The link is not inserted at all.

Additional information: This is actually a style system bug. The same thing happens if you press the bold button or try to apply any inline style with the HTML and selection above.

#3148 Implement a simpler way for loading external plugin JavaScript files Frederico Caldeira Knabben Task Must have (possibly next milestone) CKEditor 3.0 General
Description

External plugin files are often not named plugin.js, so that CKEDITOR.plugins.addExternal() don't work for them.

The current solution is that the web app developer using CKEditor would define a separate function called CKEDITOR_GETURL() that will scan for patterns of his files and output the correct URL.

While the approach works, it is still too complicated and error-prone for many web app developers. A simpler way is needed to enable external plugins with arbitrary file names to be loaded.

#3153 Paragraph <p> tag is not getting added for the editor text Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

When we add any content inside the editing area it used to add a <p></p> tags but it is not happening in our environment. This is breaking our spell-check functionality and it is so critical for us and it needs to be addressed as early as possible for the 20th RC.

#3162 Incorrect font and font size detection in IE Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

To reproduce:

  1. Open replacebyclass.html in IE.
  2. Select "You".
  3. Change the font size to 8.
  4. Select "You are using".
  5. Change the font size to 16.
  6. Move the caret to inside "You" by clicking on it.
  7. While the font size is visually 16, a size of 8 is displayed in the size combo.

Similarly, selecting "Arial" in step 3 with the font combo and then "Comic Sans MS" in step 5 would also result in wrong font detection.

#3167 [IE]EnterKey=br incorrect with list item Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by code example page;
  2. Make document content and selection as following:
    <ol>
    	<li>
    		level1 ^</li>
    </ol>
    text
    
  3. Press Enter key
    • Actual Result :
      <ol>
      	<li>
      		level1 <br />
      	</li>
      </ol>
      text
      
    • Expected Result :
      <ol>
      	<li>
      		level1 </li>
      	<li>
      		<br />
      	</li>
      </ol>
      text
      
#3171 plugin:flash incorrect content inserted Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by code example page;
  2. Delete all the content within document;
  3. Open flash dialog and fill in url with : http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf, specify width with '100', height with '100', click Ok to insert the flash.
  • Actual Result : The style is been attached to the wrapping paragraph element.
    <p>
    	<p height="100" width="100">
    		<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="100" width="100"><param name="quality" value="high"></param><param name="movie" value="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf"></param><embed height="100" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf" type="application/x-shockwave-flash" width="100"></embed></object></p>
    	<br />
    </p>
    
  • Expected Result :
    <p>
    		<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="100" width="100"><param name="quality" value="high"></param><param name="movie" value="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf"></param><embed height="100" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf" type="application/x-shockwave-flash" width="100"></embed></object>
    	<br />
    </p>
    
#3175 Panels are not working with custom document.domain Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

In IE:

  1. In the sample.html file, set the document.domain to a part of the URL. For example, my local testing url is "dev.ckeditor.local", so I'm setting it to "ckeditor.local".
  1. Open a sample.
  1. Open a toolbar combo, color selector or the context menu.

An error is thrown: "Access denied".

#3177 Disappearing words from Find what Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 General
Description
  1. open the Replace dialog and write any word in Find what.
  1. Hit the Tab button.

Result: the word disappears.

#3191 Make the dialog system skin-independent Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 UI : Dialogs
Description

The dialog system is currently tightly coupled with the default skin, which makes it difficult to change the skin to something else.

Fred has written a patch for fix this. The patch involved quite a number of drastic changes, however, which resulted in some functional bugs still to be fixed:

  • Tabs are not working.
  • Footer buttons not always get aligned right with IE.
  • Dialog size in Safari 3 when tabs are displayed.
  • Dialog drag-move, in general, specially in IE.

And then the CKEDITOR.dialog.setMargins() should be moved to skin.js as part of the skin definition.

#3195 HTML Parser: Out of memory Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

During some tests with our so loved and weird IE, I was able to, somehow, end up with an innerHTML that I was able to reduce to the following:

<TABLE>
	<TR>
		<TD></TD>
		<P></P>
		<TD></TD>
	</TR>
</TABLE>

I can't recall how I got that HTML (maybe during some block styling task), but the fact is that a user may have such thing while using the editor in IE. The browser simply accepts it.

The big problem is not the above though. The real issue is the, if you try to retrieve the above HTML from the editor, or even feed it into the source view, it will throw you "Out of memory" into the html parser code.

#3203 Dialogs are not properly centered Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 UI : Dialogs
Description

After #3191, the dialogs are not anymore correctly centered when opened.

#3204 Dialog cover element broken in IE6 after #3191 Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 UI : Dialogs
Description

To reproduce:

  1. Open replacebyclass.html in IE6.
  2. Open any dialog - e.g. the table dialog.
  3. A translucent "The page cannot be displayed" screen is seen behind the dialog.
#3207 Make it possible to load skins from custom path Frederico Caldeira Knabben New Feature Must have (possibly next milestone) CKEditor 3.0 General
Description

Currently, it's not possible to have a skin placed outside the "skin" folder into editor installation path.

#3209 V3 : Implement full RTL support for the UI Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Currently, the UI doesn't offer full support for RTL.

#3212 CKReleaser is breaking hotkeys in CKEditor Wiktor Walc Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce:

  1. Add Tab_Issue.2.html to the _samples directory of SVN trunk.
  2. Compress the trunk with CKReleaser.
  3. Open Tab_Issue.2.html within the release package.
  4. Press Tab and Shift-Tab from inside the editing area, you'll see different buggy behaviors described in #3132.
  5. Press Ctrl-B in the editing area. You'll see other buggy behaviors depending on the browser.
#3213 Change the voice readout of the editing area from "CKEditor" to "Rich Text Area" Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 Accessibility
Description

When focus is brought into CKEditor's editing area in our samples right now, the voice readout by JAWS is typically like this:

"Output, CKEditor Editor 1, type in text"

Output is the outer frameset's title in our sample pages. CKEditor is always read to tell the user that they're in CKEditor. Editor 1 is the editor instance's name.

It is more descriptive for screen reader users if the CKEditor part of the readout is changed to "Rich Text Editor" - so they'll know what to expect, instead of hearing a name which they may or may not understand immediately.

#3214 Dialogs can be dragged out of bounds in IE after #3191 Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 UI : Dialogs
Description

To reproduce:

  1. Apply the patch to #3204 to the current SVN trunk to make dialog work in IE.
  2. Open replacebyclass.html in IE6.
  3. Drag the dialog around.
  4. The dialog cannot be dragged out of bounds on the top and left - which is correct.
  5. But the dialog can be dragged out of bounds on the bottom and right.
#3215 Default skin don't load after release Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

The default skin, "v2" for now, is not being properly loaded once the editor gets released.

#3216 Paste as text button may paste into the editor's container document in IE Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce:

  1. Open replacebyclass.html in IE.
  2. If the focus is inside the editing area, click outside of it to defocus.
  3. Copy some random text into clipboard.
  4. Click the "Paste as Plain Text" button.
  5. The text is pasted into the parent document.
#3218 sample.js is being included into the release, which makes people confused Wiktor Walc Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

The _samples/samples.js file is support file used by the development version of CKEditor. It's not needed at all after release, but it's still included in the sample files.

It must be removed during release, as well as its inclusion at the samples headers.

#3230 Pressing Enter on dialog buttons does not activate them in JAWS Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 Accessibility
Description

To reproduce:

  1. Start JAWS 10.0 for Windows.
  2. Open replacebyclass.html in Firefox or IE.
  3. Open any dialog.
  4. Tab until any dialog button is focused.
  5. Enter.
  6. Nothing happens.

The Enter key works when JAWS isn't opened. This is due to JAWS intercepting the Enter key event.

#3231 Unable to apply inline styles when selection touches end of area with the same style already applied. Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

To reproduce:

  1. Open replacebyclass.html in Windows Firefox.
  2. Double click on the first word "This ".
  3. Click the Bold button - the text is bolded.
  4. Double click on the second word "is ".
  5. Click the Bold button again.
  6. Nothing happens.
#3234 Page scrolls up on dialog buttons Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

If scrolling down the main page, when clicking on a dialog based button the page scrolls up to the top.

Confirmed with FF at least.

#3235 V3 : ToolbarSet feature Artur Formella New Feature Must have (possibly next milestone) CKEditor 3.0 General
Description

Currently, CKEditor offers a way to provide the toolbar definition by setting it directly to the "toolbar" setting.

While that is useful, it would be still nice to have more than one toolbar definitions in the configuration file, making it possible switching them with a simple setting, just like V2.

The idea would be introducing the "toolbarSets" object setting, which accepts several definitions, and then make the "toolbar" setting smart. If it receives a string, its the toolbarSet name, otherwise it's a toolbar definition.

#3238 Dialogs open out of the window Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 UI : Dialogs
Description

Many times, but now always, dialogs open outside the viewport, over the top of it. I has been easily reproducible with the Link dialog.

#3243 Apply inline style within list item problem Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with selection:
    <ul>
    	<li>^text^</li>
    	<li>text</li>
    </ul>
    
  3. Click on 'Bold' to apply style
    • Actual Result:
      <ol>
      	<li>
      		<strong>text</strong></li>
      	<li>
      		<strong>text</strong><br />
      	</li>
      </ol>
      
  • Expected Result :
    <ol>
        <li>
             <strong>dddddd</strong></li>
        <li>
              dddd</li>
    </ol>
    
#3254 Link dialog incorrectly positioned Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Click on 'Link' button to open dialog
    • Actual Result: Dialog is not centered in the screen.
#3256 Justify across table cells incorrect Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection by click and drag over table cells;
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
    	<tbody>
    		<tr>
    			^<td>
    				text</td>
    			<td>
    				text</td>^
    		</tr>
    	</tbody>
    </table>
    
  3. Click on 'Justify Right' to apply alignment.
    • Actual Result: Javascript Error occurred.
    • Expected Result:
      <table>
      	<tbody>
      		<tr>
      			<td style="text-align: right;">
      				text</td>
      		</tr>
      		<tr>
      			<td style="text-align: right;">
      				text</td>
      		</tr>
      	</tbody>
      </table>
      
#3258 In office 2003 skin, Dialogs are not displayed in the right area Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

In office 2003 skin, Dialogs are not displayed in the center of the page. Also the border of the dialog boxes needs to be removed in Office 2003 skin.

This issue happens in firefox and safari.

#3261 Hot Key crashes IE 7 Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Hot Key crashes IE 7. Below the steps to reproduce.

Note: Assume "This is some sample text" is exist in the editor area.

  1. Select the first word "This" and press ctrl+B.
  2. Select the second word "is" and press ctrl+B twice or thrice.
  3. Now you can see the browser is being crashed.
#3262 Drop down menus are not translated. Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

When i change the default language from English to French or anything, drop down menus(Style, Format and Font) are not translated and still shows in english.

#3266 Minimize the usage of the _cke_expando attribute Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Our DOM API currently forces the creation or the _cke_expando property for every DOM object created.

In IE, this property becomes an attribute into the DOM. So, this situation is causing a huge performance impact in the code.

#3271 CKEditor - fatal error/crash while changing simple text styles(bold, etc) Bug Must have (possibly next milestone) Core : Styles
Description

Reproduce: 1) create a word and bold it 2) select the last letter and "unbold" it

CRASH

#3275 EnterKey plugin and 3 enter keys Bug Must have (possibly next milestone) CKEditor 3.0 UI : Enter Key
Description

-Put the cursor in

-Hit enter key 3 times

Expected result: 2 new lines in "using" word.

Actual result: 1 line in, 1 after.

#3276 IE : Error when opening the link dialog Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

In IE, a js error is being thrown when opening the Link dialog.

#3277 Add configuration entry for newlines in code formatter. Martin Kou New Feature Must have (possibly next milestone) CKEditor 3.0 General
Description

Currently the editor is outputting HTML code like this for block tags:

<p>
	This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>

The newline after the <p> tag is breaking the HTML validator at Oracle, which is expecting 2.6.x HTML syntax. There should be some option to stop the newline from being outputted at the code formatter to preserve backward compatibility.

#3299 range::checkStartOfBlock|checkEndOfBlock are broken Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

checkStartOfBlock is broken, returning "true" for the following case:

<p>Test^</p>

checkEndOfBlock is the opposite. It's broken, returning "true" for the following case:

<p>^Test</p>
#3300 Styles are not being applied correctly Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description
  1. Load a sample.
  2. Select "some sample".
  3. Apply the "Strike Through" style.

Result: only "some " get styled.

#3302 XML Request Error: Internal Server Error (500) Bug Must have (possibly next milestone) Server : ASP.Net
Description

Hi Team,

i am getting an error when i am trying to upload the file/Image using FCKEditor Panel on my Asp.Net Page.

My Folder Structure would be like webroot\Admin\FCKEditor and my page which use fckeditor also lies in the same webroot\Admin folder.

Path is match perfectly. but "Browse Server" gives me an error message. i also have change the php to aspx in config file.

Please guide me how to get rid off from this situation. Looking for your positive response.

Regards, Brijesh Shah

#3303 Remove list command is broken again Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce:

  1. Open replacebyclass.html in any supported browser.
  2. Put caret on the first paragraph.
  3. Press Create/Remove Numbered List button - a list is created as expected.
  4. Press Create/Remove Numbered List button again - a JavaScript error appears.

The error seems to have to do with recent changes to DOM node custom data logic.

#3305 IE - Combo features do not work in latest nightly build Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

The latest Ajax sample in the nightly build (3350) causes errors when creating an instance of the editor.

Once the editor has been created it is not possible to apply any of the styles from any of the combo features.

When an attempt is made to apply a style by selecting some text and using one of the combo features, another error occurs.

This is issue is specific to IE6 & IE7

#3309 Styles are remove when caret placed in element boundaries Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description
  1. Having the following selection:
Some <strong>sample^</strong> text.
OR
Some <strong>^sample</strong> text.
  1. Press CTRL+B.

The entire work gets un-bolded, instead of simply disabling it (moving the selection to outside the touching boundary).

This issue is more often faced when typing, using CTRL+B to type a word, and then CTRL+B again to continue writing.

#3315 addIframe method is not available by default Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

When i call the addIframe method, browser returns an error as "addIframe is not a function"

As per the discussion with Martin, to use this function i have to add iframeDialog plugin to my config.Toolbar. Yes, this can be added to the default config file but our customer will be overriding this default config file with their own custom config file. Thus addIframe will not work for the customer since they have overidden the default config file.

Our existing 2.6 plugins are using the following code to render the dialog: Ex: FCKCommands.RegisterCommand( 'CustomLinks', new FCKDialogCommand( 'Oracle', 'Oracle',URL, 700, 600 ) ) ;

But in CKEditor3.0, i couldn't invoke the addIframe method since it is not available by default.

To support the 2.6 plugins, please make this function available by default.

#3316 ConnectorHandler doesn`t work in Grails Bug Must have (possibly next milestone) Server : Java
Description

The ConnectorHandler can`t dynamically load a Connector class when the Connector class is part of the Grails app.

The line Class<?> clazz = Class.forName(className);

causes a ClassNotfoundException.

If this is changed to Class<?> clazz = Thread.currentThread().getContextClassLoader().loadClass(className);

it will work, see http://www.nabble.com/ClassNotFoundException-with-Class.forName-td18194398.html

for details.

#3317 Create a line break in the Message Body when creating an E-Mail Link Type Bug Must have (possibly next milestone) General
Description

I am using version 2.6.3 Beta of FCKeditor. The problem we are having is seen when creating an E-Mail Link Type. The message body does not allow me to insert a carriage return or line break. The link only works when there are no "hard" carriage returns. I have tried <br>, <p>, /n, <li>, etc. Nothing seems to work. How do I allow the message body to allow line breaks.

The email client on the computer does come up, but I need to allow the line breaks in the message body.

We are using FCKeditor on a .Net site.

Thanks

#3320 Floating panels don't use the baseFloatZIndex setting Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

If the editor is placed inside a floating element with z-index, all floating panels (combos, context menu and color buttons) will stop working. Actually, they will be loaded "behind" the floating element (and the editor).

#3352 Enhance domIterator plugin Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Certain utility methods( L15-L60 ) of the plugin are not updated with the current trunk codes, which should be refacted.

#3359 Editing area is not visible in IE quirks mode Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce:

  1. Remove the <!DOCTYPE> line from sample.html.
  2. Open replacebyclass.html in IE6.
  3. The editing area is not visible.
#3387 Layout consistence and stability Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

The current editor layout is still unstable. The elements path resizes when switching to source view, or en using the editor in IE. Also, the editor height changes when switching to source. We must achieve a consistent and stable layout.

#3451 [IE] Find result highlighting problem Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Previous highlight marking style is not removed when search more than twice.

Reproducing Procedures

  1. Open the replace by class example page;
  2. Open 'Find' dialog, search for 'some';
  3. Keep the dialog open, another search for 'are'
  • Actual Result: Search results from both matching are marked.
#3454 RTL toolbar icons not aligned RTL in FF2 Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

The toolbar does not seem to align the icons right-to-left when an appropriate language e.g. hebrew is selected. This only occurs in FF2

#3465 Dialog tabs are causing Firefox throbber to spin indefinitely. Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 UI : Dialogs
Description

To reproduce:

  1. Open replacebyclass.html in Firefox 3.
  2. Open the link dialog.
  3. Click on any tab in the link dialog.
  4. Close it.
  5. Open the link dialog again.
  6. Click on any tab in the link dialog.
  7. Firefox's throbber icon spins and will not stop, indicating it's loading something.
#3468 Syntax errors in trunk code is causing editor to crash in IE6, 7 Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce:

  1. Open replacebyclass.html today's trunk code in IE6 or 7.
  2. JavaScript error.
#3480 setData and getData events are not fired correctly Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

We have a use case to change the editor data(ex: have to change the image source) before editor loads the html data. When i try to use the setData event it only gets fired during the form post (it supposed to be fired during the editor initialisation but its not doing)

Also the getData is getting fired for both the editor initialisation and the form post (it supposed to be fired only for the form post but its been fired for both form post and the editor initialisation).

This is stopping us to implement our business logic, please give high priority for this issue to fix.

#3482 Images and File References Lost Bug Must have (possibly next milestone) Project : MediaWiki+FCKeditor
Description

I have the Turnkey Mediawiki 8.10 running in VMware. I habe FF 3.0 on Ubuntu 9.04 on the Frontend. I had this problem with the FCKEditor provided but I upgraded to 2.6.4 and the problem is still there.

I put an image into my page.

test1

<br> [[Image:MyDok_-_DD_Newsletter.png]]<br>

I reedit the the page, the image is still there. After I save this is what i get:

test1

<br> [[Image:]]

If I add a caption it will result in [[Image:|TestImage]]. If I add the picture, edit for the second time with the picture still there and click wikitext the picture is gone. I also tried it with uploaded files, same problem. I also tried to have more than one title on the page, each one has an image and I edit only one title, not the whole page. In this case only the image of the edited section gets lost. I also tried a webkit (safari, google chrome) based browser (arora) and got the same result.

#3505 Enter key on empty document is broken Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 General
Description
  1. Load any sample.
  2. Select all text (CTRL+A).
  3. Delete the selected text with BACKSPACE.
  4. Hit ENTER.

A JavaScript error is thrown and the caret doesn't move. Going to Source after it we have:

<p>
	<br />
</p>
<p>
	<span _fck_bookmark="1" style="display: none;"><span>&nbsp;</span>&nbsp;</span><br />
</p>
<p>
	<span _fck_bookmark="1" style="display: none;">&nbsp;</span><br />
	<br />
</p>
#3522 onbeforeunload is fired whenever dialog tabs are being switched Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce:

  1. Open replacebyclass.html in IE.
  2. Execute
    javascript: void(window.onbeforeunload=function(){alert('a');});
    
    in the URL bar.
  3. Open any dialog with tabs (e.g. Find/Replace dialog).
  4. Change to another tab in the dialog.
  5. The onbeforeunload event is fired, incorrectly.

This bug is related to #3114 and is a known browser bug: http://msdn.microsoft.com/en-us/library/ms536907%28VS.85%29.aspx

#3545 Context menus have wrong layout in IE quirks mode. Tobiasz Cudnik Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce:

  1. Remove the <!doctype> line from sample.html.
  2. Open replacebyclass.html in IE6, 7 or 8.
  3. All IE versions -> The position of the context menu is wrong.
  4. IE6 and 7 -> The internal layout of the context menu is also wrong.
#3546 CKReleaser is broken under Windows Wiktor Walc Bug Must have (possibly next milestone) CKEditor 3.0 Project : CKPackager
Description

When release.bat is run under Windows, the following error message is seen:


Copying files...


Copying files to special destination...


Renaming files...


Processing directives in files used by CKPackager...

......
JavaException: java.io.IOException: Cannot run program "svn": CreateProcess erro
r=2, The system cannot find the file specified
#3554 keyup-keydown-cursos positions listener New Feature Must have (possibly next milestone) General
Description

I noticed that I needed to register my own keyup,keydown listeners and want to be able to tracka cursor position in the editing area. Could you provide references where I need to look? Could you give me details on all the above?

Thanks Adam E.

#3559 CKReleaser is breaking the ui_languages sample Wiktor Walc Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

The UI Languages sample in the nightly build is broken because CKReleaser is somehow removing backslash chars from the code when outputting the final sample page.

In the above page, look at line 16. You will find a string containing </script>, which breaks the page. In the original trunk code we have <\/script>, which is ok.

#3561 Editor is broken with any language other than "en" Artur Formella Bug Must have (possibly next milestone) CKEditor 3.0 General
Description
  1. In config.js, uncomment the line with config.language = 'fr';
  1. Load the replacebyclass sample.

An error is thrown, related to the scayt plugin.

#3574 Indent whole paragraph incorrect Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Press 'Select All' button;
  3. Click on 'Increase Indent' command;
    • Expected Result:
      <p style="margin-left: 40px;">
      	This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p>
      
    • Actual Result: Javascript error thrown.
      <p style="margin-left: 40px;">
      	<span _fck_bookmark="1" style="display: none;">&nbsp;</span></p>
      <p style="margin-left: 40px;">
      	This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p>
      
#3580 IE: switching to Source in Ajax example raises an error Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 Core : Undo & Redo
Description

Load the Ajax sample in IE, switch to source mode and it raises an error.

The Image() method of the undo system is called twice and the second time editor.getSnapshot() returns false.

#3591 Flash url isn't editable after reload Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Seems to work fine in IE and fails elsewhere:

  1. Load Replace by class sample
  2. Insert a flash movie "abc.swf", set some width and height.
  3. Press OK to close the dialog
  4. Switch to source and back to design.
  5. Open the properties of the flash object.
  6. The url is lost.
#3608 Create list on empty document error Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

Some serious regression bug occurred in all browsers with different symptom.

Reproducing Procedures

  1. Open the replace by class example page in IE.
  2. Click on 'New Page' to clear document;
  3. Now click on Ordered List to begin creating list;
    • Actual Result : JavaScript error occured, when beginning to type, the text doesn't fall into a list item.
#3609 Parser fixbody option should align with enterMode Tobiasz Cudnik Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Any form of paragraph wrapping should respect the enterMode option:

Reproducing Procedures

  1. Open the replace by class example page with enterMode set to 'div' , initial with the following content:
    fixBody
    
  2. Switch to wysiwyg mode and switch back;
    • Actual Result : Source codes now as :
       <p>
      	fixBody</p>
      
    • Expected Result :
        <div>
      	  fixBody</div>
      
#3646 [IE7] White background color of toolbar button group Bug Must have (possibly next milestone) CKEditor 3.0 UI : Toolbar
Description

All the button groups' background color now is white instead of the sprite color.

#3650 Delete rows/columns/cells commands do not work when text is selected Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce:

  1. Create a default 2x3 table.
  2. Right click on one of the cells.
  3. Try any one of the delete rows/columns/cells commands.
  4. Nothing happens.
#3657 'Select All' result in content change Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

Reproducing Procedures

  1. Open the replace by class example page in FF with the following content;
    <ul><li>item</li></ul>
    
  2. Click on 'Select All' button, after this step, the selection now is actually as:
    ^<ul><li>item</li></ul>^
    
    • Expected Result: The document content remain unchanged.
    • Actual Result: There's an paragraph established before the list:
      <p>
      	<br />
      </p>
      <ul>
      	<li>
      		item</li>
      </ul>
      
#3659 newpage undo problem Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Undo & Redo
Description

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Click 'New Page' to empty document;
  3. Press 'Undo' button;
    • Expected Result: The original document has been reverted.
    • Actual Result: The document remains empty, and actually you need two more 'Undo' to revert it back.
#3668 [IE] Combo doesn't show dropdown on second open Bug Must have (possibly next milestone) CKEditor 3.0 UI : Toolbar
Description

Reproducing Procedures

  1. Open the replace by class example page in IE;
  2. Click on 'Style' combo to show dropdown;
  3. Click on 'Style' combo to close it, and click again to open.
    • Actual Result: Combo dropdown doesn't open.
#3676 FCKeditor 2.6.4 save didn't work with Chrome 3.0 Martin Kou Bug Must have (possibly next milestone) FCKeditor 2.6.5 Core : Output Data
Description

With the last chrome version : (3.0.183.3) when I submit a form, the fckeditor (2.6.4) didn't copy the html to the textarea.

With the console, I have this error :

Uncaught TypeError: Cannot read property 'parentNode' of null fckeditorcode_gecko.js:35

The problem didn't appear in fckeditor 3.0b2

#3681 [Webkit] Shift enter broken Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Move cursor inside the text, and press 'Shift-Enter';
    • Expected Result: Link break introduced with cursor blinking in front of next paragraph, and If you continue to press this keystroke many times until the the content is outside viewport, latest linebreak will also be scrolled into view;
    • Actual Result: The cursor is still at the end of the first paragraph.
#3682 Image Browser Server Bug Must have (possibly next milestone) General
Description

The CKEditor 3.0 is a very very nice version... compliments. Hi, i have test that the Image Browser server and upload don't work... Thanks Marco

#3688 JavaScript error at loading Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce:

  1. Download today's SVN trunk.
  2. Open replacebyclass.html in any browser.
  3. JavaScript error, the editor does not appear.
#3695 Add missing entries to all language files Artur Formella Task Must have (possibly next milestone) CKEditor 3.0 UI : Language
Description

"common.unavailable" entry is missing in many languages.

#3708 [webkit] inline style doesn't work for collpased range Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page in Safari4;
  2. Click inside the text line to result in a collapsed the selection;
  3. Click on any inline style button, e.g. Bold.
    • Actual Result: Style tag is not happened at the selection position.
#3710 CKEditor doesn't support <style> tag in text area. Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

When I switch to the "Code" view and paste the content inlcuding custome style, like below and then back to "preview" view, the below content can NOT be rendered correctly. In FF3, no any content can be rendered and error comes out "a.htmlParser.cdata is not a constructor". In IE7, no error but the style definition has been removed. And I have tested in FCKeditor 2.6.4, the below content can be rendered correctly.

Does anybody know how to solve such issue?

<p><style type="text/css">td.mystyle h4 {font-size: 1.6667em;color: #f8ae4e;}</style></p> <table dir="ltr">

<tbody>

<tr>

<td class="mystyle"> <h4><strong>Welcome</strong></h4> <p>You're at the Welcome page.</p> </td>

</tr>

</tbody>

</table>

#3714 Tables are causing html parser to go into infinite loop Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 Core : Output Data
Description

To reproduce:

  1. Open replacebyclass.html in any browser.
  2. Insert a default table into the editing area.
  3. Switch to Source mode.
  4. The editor hangs.
#3715 Pre output formatting is broken Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Note this's not a DUP of #3188, where this ticket should deal with the basic <pre> content foramtting.

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Load the following content with 'source' mode;
    <pre>
    first line
    second line
    
    </pre>
    
  3. Switch to 'wysiwyg' mode and switch back.
    • Actual Result:
      <pre>
      	first line second line</pre>
      
    • Expected Result:
      <pre>first line
      second line
      
      </pre>
      
#3723 noscript bug Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

Steps to reproduce:

-Insert the following source into the editor:

<noscript><a href= target='_blank'><img src= border='0' alt=></a></noscript>

-Switch back to WYSIWYG

Results:

-IE: editor is empty

-FF: infinite loop, FF freezes.

#3735 IE: JavaScript error when switching to source Tobiasz Cudnik Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

With IE, when switching to source mode, a JavaScript error is thrown.

#3746 DOM parsing error in IE Bug Must have (possibly next milestone) Project : MediaWiki+FCKeditor
Description

First of all, we are using MW1.10, started with FCKeditor V2.5.1, Build 17566, and later V2.6.4, build 21629.

Problem is this, we have a simple nested list of text, when we place the cursor next to some existing text, backspace over it, type some new text and then attempt to switch to wikitext we get an illegal argument error in the plugins/mediawiki/fckplugin.js file

[NOTE: error information is from using V2.6.4]

The line in question is line 758, illegal argument: var parentIsSpecialTag = htmlNode.parentNode.getAttribute( '_fck_mw_customtag' ) ;

Wikitext

*[[Section1|Section1]] 
**Test stuff 
**June 
**May more stuff

After several transformations (click behind a word, backspace over it, and type something else, attempt to switch to wikitext), I get a javascript error (like the one mentioned above), and this is the resulting wikitext.

*[[Section1|Section1]] 
**SImple stuff 
**June 
**May<span id="fck_dom_range_temp_1245248294310_734" /><span id="fck_dom_range_temp_1245248294310_48" /></span> more stuff

As you can see, there is a lot of "fck_dom_range_temp_" garbage being introduced when the error occurs. I've chased the error in the code and from what I can tell, the problem crops up when the append node function is called with a nested HTML DOM object that has no defined parent or data value.

If you submit this information, you get some of the HTML incorrectly rendered as text, and some rendered correctly as HTML.

I only see this IE, FF exhibits the correct behavior.

I attempted to replicate the problem in the sandbox, but had no luck. I downloaded the latest nightly build and worked with that but get the same error with that version (2.6.4) as well. If I avoid backspacing over the word, and instead double click or mouse select text and retype the problem does not occur.

The thing that is really maddening about this, is that the issue just started. Everything worked up until the end of last week, and nothing has changed, except perhaps, IE in an MS update. The other aspect is that this error is not consistent, though I can eventually get it replicate, and usually at the worst possible time (murphy's law). At this point I don't know what to do except tell folks to use FF instead of IE, which is not a possibility for some of our clients. Any attention to resolving this issue would be appreciated.

#3749 Cut/Copy/Paste context menu options are always disabled. Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 UI : Context Menu
Description

The context menu options "Cut/Copy/Paste" are always disabled, no matter which browser and no matter if we have anything in clipboard.

#3750 TC CKEDITOR.htmlParser infinite loop Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Output Data
Description

Regression of #3609, the parsing is running into infinite loop.

#3757 Find link text cause error Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

The problem happened generally for all form fields.

Reproducing Procedures

  1. Open the replace by class example page in FF;
  2. Open 'Find' dialog and search for 'ckeditor';
    • Actual Result: JavaScript error occurred.
#3760 Replace is broken Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

The replace feature is broken.

#3773 [IE] Remove list not working Garry Yao Bug Must have (possibly next milestone) CKEditor 3.0 Core : Styles
Description

Reproducing Procedures

  1. Open the replace by class example page in IE;
  2. Load eidtor with the following content and selection;
    ^line1
    <br />
    line2^
    
  3. Click on 'Numbered List' and Click on it again;
    • Actual Result: Two lines were merged together.
#3778 CKPackager: Operators precedence is ignored by the conditional operator Frederico Caldeira Knabben Bug Must have (possibly next milestone) CKEditor 3.0 Project : CKPackager
Description

The following snipped get broken by the packager:

var a = ( b = c ) ? d : e;

The parenthesis get lost.

#3812 CKEditor's editor area is not editable in IE8/IE7 and no data is displayed in Firefox Martin Kou Bug Must have (possibly next milestone) CKEditor 3.0 General
Description

To reproduce this issue in IE8/7, please open the attached sample file in IE8/7.

  1. Click the "Click me for multiple times to see the issue" button and you will get an alert as 'instance ready' and press ok. Now you will see the editor's default data.
  1. Repeat the step no.1 again, now click on the editor's content 'Do you see the problem..!!!' but you can't edit/change the content for atleast 2 minutes.

If you don't see the problem, please repeat the steps 1 & 2 again.

To reproduce this issue in Firefox 3.x, please open the attached sample file in FF3.x.

  1. Click the "Click me for multiple times to see the issue" button, now you will not see any data inside the editor's area. Now click on the source control, you will get the alert 'instance ready' and then you will see the data in source mode.


This is a show stopper since the editor is not editable in IE and no data is displayed in FF.

1 2 3 4 5 6 7 8 9 10 11 12 13
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