Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (3801 - 3900 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#3889 Bump Maven requirement to 2.0.10 Task Normal FCKeditor.Java 2.6 Server : Java
Description

2.0.10 has important bugfixes, we should raise the minimum requirement.

#3890 FCK Editor Drupal Module Bug Normal General
Description

I have several sites on a shared hosting using FCK Editor's Drupal module. About three weeks ago one of the instances stopped showing up. I had been switching back and forth between the rich text and plain text editor when the switch link disappeared. The editor will no longer show up. I have uninstalled and reinstalled the module, updated the editor and several other things. If I have the default as the editor being off the "switch to rich text editor" link appears but does nothing. The only clue I have is an error in chrome and a warning in firefox. I use firefox 3 and windows xp sp 2. The error is related to this line

<a href="javascript:Toggle('oFCK_1','edit-body','Switch to plain text editor','Switch to rich text editor',1);" id="switch_oFCK_1" style="display:none">Switch to plain text editor</a><div class="textarea-identifier description">The ID for <a href="/admin/settings/fckeditor">excluding or including</a> this element is: edit-body - the path is: admin/build/block/add</div><fieldset class=" collapsible collapsed"><legend>Input format</legend><div class="form-item" id="edit-format-wrapper">

Error: <a> escaping malformed uri reference. two other warnings follow, the id edit-format-wrapper is used three times total, these warnings do not occur in the healthy instances.

#3891 [IE7] Font color selector not working after using automatic option Garry Yao Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Open nightly Ajax sample
  2. Add some text
  3. Select text and apply a font colour (not automatic)
  4. Notice colour application worked
  5. Re-select the text and apply automatic font colour

Result: the automatic option is not applied. From this point onwards, using the font colour will produce unexpected results.

#3892 Resizing tables in Safari doesn't work with mouse Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

No handles are present to resize tables with mouse when using the editor in Safari. This appears to be a browser issue.

Need clarification on this.

#3893 Unable to indent a list Garry Yao New Feature Normal CKEditor 3.3 Core : Lists
Description

The indent feature does not allow indenting whole lists.

#3895 images dialog box New Feature Normal CKEditor 3.0 General
Description

The new editor CK does not allow to use image browser nor any other files like flash, html pages etc.

Will the function by added?

#3896 The editing area flashes on gray when loading Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

If you switch to source and back to wysiwyg, it's noticeable a "rendering flash" in the editing area. Sometimes it's even possible to see the loaded contents in the gray (skin color) background that suddenly turns on white.

#3897 There should be no image previews when the URL is empty in image dialog Tobiasz Cudnik Bug Normal CKEditor 3.1 UI : Dialogs
Description

To reproduce:

  1. Open replacebyclass sample in IE.
  2. Open the image dialog.
  3. Even before any URL is filled into the dialog box, we're still having a cross symbol in the preview pane.

Or, alternatively

  1. Open replacebyclass sample in any browser.
  2. Open the image dialog.
  3. Fill in any URL and defocus the URL text box.
  4. Remove the URL
  5. The image is still in the preview pane - it should be cleared instead.
#3898 Add validation checks to image properties dialog. Tobiasz Cudnik Bug Normal CKEditor 3.1 UI : Dialogs
Description

To reproduce:

  1. Open the image dialog.
  2. Press OK.

An image with no src is created. This is not really a critical issue, but it's reasonable to have some validation there.

#3899 Navigating problem in IE8 after image added Bug Normal General
Description

Browser name and OS: Windows XP, in IE 8 only.

Steps to reproduce: Go to the end of the lest line (pay attention there is no text after your cursor). Add picture. go to the text before the picture. try to move your cursor to write text after the picture. You'll find out it's not possible.

#3900 Extract tags are getting displaced in the source of the content Bug Normal Core : Styles
Description

STEP -1: - I am trying to make Background section of the content as Extract=1, "Identifying Berklee customers" section of the content as Extract=2, "Call-handling exceptions" section of the content as Extract=3

STEP - 2: - I clicked on Source and added 3 <Extract> tags. <Extract id="1">, <Extract id="2">, <Extract id="3"> in the source as shown below around these 3 sections of the content

STEP -3: - I just switched between the content and the source view again to verify if the tags I added are still looking good, and I saw the tags were displaced by the system and here is the screen shot for the same. There is no content present inside the tags now.

I have tried it couple of times in different articles but seeing the same behavior in all of them, Some times, the <Extract> tag I added around the content was removed all together instead of the displacement in some scenarios.

Attached are screenshots : Picture 5 Shows the content that we are working with to start.

Picture 7, 8, &amp; 9 are where and how we inserted the tags 7 = tag 1, 8 = tag 2, and 9 = tag 3\.

Then Pictures 18, 19, 20 show how the close tag moves with no intervention in the same order respectively 18 = tag 1\.\.\.and so on\.

#3901 Find scrollIntoView incorrect Bug Normal General
Description

An issue similar to #3692 for CKEditor 3.0, also exists in FCKEditor 2.6.x.

When doing a Find, it will not scroll to the first item found, but the items thereafter are fine.

When doing a Replace, it will not scroll to the first or second item found.

I tested this using the demo on the FCK website.

To replicate the find issue:

1) put some text at the top of the editor 2) hit enter enough times to scroll off the page 3) Search for the text at the top

To replicate the replace issue: 1) Put some text at the top of the editor 2) Hit enter enough times to scroll off the page 3) enter the SAME text 4) Hit enter again enough times to scroll off the page 5) enter the SAME text a third time 6) then do a replace of that text.

Looking into it, it seems that the first iteration, inside _Find, you don't have a FindRange, so you do this:

if ( !FindRange )
                FindRange = new CharacterRange( new CharacterCursor( EditorDocument ), searchString.length ) ;}

Then, in CharacterRange.Highlight the line:

HighlightStyle.ApplyToRange( domRange, false, true ) ;

Seems to unset the domRange.StartNode (becomes undefined). This means that this throws an exception:

var charRange = CharacterRange.CreateFromDomRange( domRange ) ;

However, even if you capture the StartNode and put it back in place doing something like this:

Highlight : function()
{
        if ( this._cursors.length < 1 )
                return ;

        var domRange = this.ToDomRange() ;
        
        // First time through, the StartNode is lost
        this._highlightRange = domRange ;
        t = domRange.StartNode;
        
        HighlightStyle.ApplyToRange( domRange, false, true ) ;

        if (!domRange.StartNode) {
                domRange.StartNode = t;
        }
        
        var charRange = CharacterRange.CreateFromDomRange( domRange ) ;
        var focusNode = domRange.StartNode ;

        if ( focusNode.nodeType != 1 )
                focusNode = focusNode.parentNode ;
        
        FCKDomTools.ScrollIntoView( focusNode, false ) ;
        this._cursors = charRange._cursors ;
}

While it stops the exception, it still doesn't scroll.

  • Davey
#3903 Unable to override font colors Bug Normal CKEditor 3.0 General
Description

The config.colorButton_colors setting allows overriding the colors that are shown in the font and background color dropdowns. However, because of a bug in _source/plugins/colorbutton/plugin.js, this setting is not respected.

The solution is to check config.colorButton_colors instead of CKEDITOR.config.colorButton_colors. This is similar to how other plugins work.

Attached is a patch.

#3904 Editor causes unauthenticated content warnings over SSL in FF 3.5 Bug Normal General
Description

Firefox 3.5 is showing an unauthenticated content warning icon on https pages with editors.

The offending code is in ckeditor.js:

document.write(

'<script type="text/javascript" src="' + CKEDITOR.getUrl( '_source/core/loader.js' ) + '"></script>' );

#3905 Editor causes unauthenticated content warnings over SSL in FF 3.5 Garry Yao Bug Normal CKEditor 3.1 General
Description

Firefox 3.5 is showing an unauthenticated content warning icon on https pages with editors. Such warnings look unprofessional and tend to scare users away.

The offending code is in ckeditor.js:

document.write(

'<script type="text/javascript" src="' + CKEDITOR.getUrl( '_source/core/loader.js' ) + '"></script>' );

#3906 The spell checker fails when aspell "guesses" Bug Normal UI : Spell Checker
Description

Aspell outputs e.g.

? Teliaräkningar 0 132: Tel

when it guesses suggestions, however the PHP script doesn't handle this, it just reports it as an error (and afaict the ".pl" and ".cfm" scripts don't handle this either).

I guess this is a Speller Pages bug rather then a FCKeditor bug, but the Speller Pages project seams dead (latest change was 5 years ago?) - so I reported it here, sorry.

#3907 CKEditor becomes non-editable in Firefox 3.5 if loaded from history cache Bug Normal CKEditor 3.1 General
Description

Steps to reproduce:

  1. Open any instance of CKEditor in Firefox 3.5 (any of the demos will do).
  1. Press the back button on the browser.
  1. Press the forward button to go back to the page with the CKEditor instance.

The editor appears fully loaded but clicking inside it fails to produce a cursor - the instance is uneditable. Clicking 'Source' to view source then again to go back to wysiwyg mode reactivates it.

Verified on Firefox 3.5 on Mac OS X 10.5.7 against the release candidate and revision 3828.

#3908 The Swedish translation is broken Bug Normal Project : MediaWiki+FCKeditor
Description

The Swedish translation is broken, the array is listed twice in the file.

#3909 Clicking another input field takes 2 clicks in IE Garry Yao Bug Normal CKEditor 3.0 General
Description

Using IE8, if the editor is on a page that contains other input controls (text ones) and the CKEditor has focus it takes 2 mouse clicks to get focus into another text input control on the page instead on one.

Tabbing seems to work fine however and FF does not seem to have this click problem.

#3910 Improved spellerPages New Feature Normal UI : Spell Checker
Description

I've made some modifications to the speller pages script that I thought might be useful and worth sharing.

Changed files are attached

  • By setting FCKConfig.SpellerPagesAddButton to true, the speller pages will include an 'add' (to dictionary) button. Without this setting it's entirely backwards compatible. With it enabled, any words that are added are posted back to the server through the spell checking script with a parameter set to enable it to detect that words need to be added to the dictionary, rather than to do a spell check.
  • The spellchecker.pl script has been modified and has placeholder functions for adding/retrieving words from the dictionary according to the server setup.
  • The control window has been improved to enable/disable buttons when appropriate.
  • The OK button is enabled on the outer spellchecking dialog when appropriate. This means you don't have to spell check an entire document and can finish half-way through to apply changes.
  • The word window has been fixed so as not to try to find mispelled words within HTML tags (see also bugs #2470 #2326 #2158 which also mention this but it still doesn't seem to have been fixed)

I'm not familiar with PHP or CFM but I'm sure it would be straightforward for someone who is to make similar changes in those scripts.

#3912 UI color plugin fails in IE with 3+ editors Garry Yao Bug Normal CKEditor 3.1 General
Description

With three or more editors in the same page in IE, trying to change the UI color for all editors causes a JS exception when changing the color for the third editor.

The specific problem is in skins/kama/skin.js, line 153: uiStyle.$.styleSheet is null.

#3913 FakeObject Shenanigans Bug Normal General
Description

Playing around with CKEditor's FakeObjects attempting to create my own parser rule for a custom tag (ie. <hoebag></hoebag>) I found that it appears the entire fakeObjects plugin isn't actually a plugin at all? I had to modify some code inside ckeditor.js itself.

Attempting to config.removePlugins with fakeobjects yielded no change (I'd expect anchor links and Flash objects would not appear as fakeObjects?).

This wasn't an issue so much, just a curiousity on the path to trying to get my own custom dataFilter rule working.

Likewise the appended dataFilter rules in the Flash and Link plugins appear to be useless? I could not add to either with any success.

(Meanwhile, yes, I found the same rules in ckeditor.js and edited it there and it worked)

#3914 Drag elements with position:absolute Bug Normal CKEditor 3.0 General
Description

There is still no support for dragging elements in Internet Explorer. Firefox works. You can drag any element that has position:absolute in FF3+.

I'm not sure if this is a bug or a not yet implemented feature that Firefox has made work. If so please move this to the feature request section.

Kind regards

#3915 SpellerPages stops on fieldset tag Bug Normal General
Description

SpellerPages stops on fieldset tag

SpellerPages (Aspell) stops checking when it encounters a <fieldset> tag.

In the test data below the first two spelling errors are identified and can be corrected. As soon as Aspell hits the fieldset tag it stops functioning. With or without legend tag has no effect. Clicking the cancel button closes the spell checker and any corrected errors are lost.

Test data:

<p>spellllling missstake</p>
<fieldset><legend>Title</legend>
<p>spellllling missstake</p>
</fieldset>
<p>spellllling missstake</p>

FCKeditor 2.6.4.1 Aspell 0.50.3 WinXP sp3 FF 3.0.11 IE 7.0.5730.13

#3916 Maximize does not enlarge editor width when width is set. Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Set config.width to a fixed number in config.js.
  2. Open replacebyclass.html.
  3. Press Maximize button.
  4. The editor does not fill the screen horizontally.
#3917 Anchor dimensions Bug Normal Core : Output Data
Description

Steps to reproduce:

  • Insert the following content in source mode:
    <p>
    	<a name="test"></a></p>
    
  • Back to WYSIWYG
  • Resize the icon
  • Switch to Source mode

Result:

<p>
	<a height="232" name="test" width="232"></a></p>

Expected result: no change

#3918 It is possible to edit fakeObject using Image plugin Garry Yao Bug Normal CKEditor 3.1 UI : Dialogs
Description
  1. Insert the following content in source mode:
    <p>
    	<a name="test"></a></p>
    

2.Back to WYSIWYG

3.Select the anchor

4.Open the Image Button dialog. Fake image is loaded what is wrong.

5.Click OK (convert to image button)

Result:

<p>
	<input alt="Anchor" src="http://localhost/edytor/CKEditor/trunk/images/spacer.gif" type="image" /></p>
#3920 Special Character dialog cursor Artur Formella Bug Normal CKEditor 3.0 UI : Dialogs
Description

Mouse cursor over characters shows as text instead of arrow or hand.

#3921 [IE] Container scroll issue on IE7 Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

Moved from forum thread.

  <div style="overflow:scroll;height:200px;">
         <p>
            <label for="editor1">
               Editor 1:</label><br/>
            <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
            <script type="text/javascript">
                  CKEDITOR.replace( 'editor1' );
            </script>
         </p>
      </div>

If top container has scroll, only menu scroll but iframe imitate position fixed in ie7.

#3922 Kama: Configured width is not properly applied Bug Normal CKEditor 3.0 General
Description

The Kama skin have a strange behavior with the width setting. It applies it to the editor only partially, while the main editor back ground and border stays at 100%.

To test it:

  1. In the config.js file, add the following setting:
config.width = 600;
  1. Open the skin sample.

Note that the Kama skinned editor will not shrink properly like the others.

#3923 asp.net example not included in any downloads Bug Normal General
Description

I go to FCKeditor.Net ASP.Net Control to easily integrate FCKeditor on .Net web pages. Click here to download the latest version

and the link to FCKeditor_2.6.4.1.zip (http://sourceforge.net/projects/fckeditor/files/FCKeditor/FCKeditor_2.6.4.1.zip/download)

does not include any examples for asp.net Is there any way I can get a working example for this?

#3925 FCKDialog.OpenDialog() - wrong variable mapping (parentWindow) Martin Kou Bug Normal UI : Dialogs
Description

FCKEditor 2.6.4 This is not a "theoretical" note, I found this bug during development of something.

See .../_source/internals/fckdialog.js

The parameter *parentWindow* in the function OpenDialog() declaration and and the variable *topWindow* that sets a property of the dialogInfo object are the same thing actually. Only one should stay - parentWindow or topWindow.

Here is an example for a correction:

var FCKDialog = ( function()
{

  ...

	return {
		/**
		 * Opens a dialog window using the standard dialog template.
		 */
		OpenDialog : function( dialogName, dialogTitle, dialogPage, width, height, customValue, parentWindow, resizable )
		{

			...

      // Setup the dialog info to be passed to the dialog.
			var dialogInfo =
			{
				Title : dialogTitle,
				Page : dialogPage,
				Editor : window,
				CustomValue : customValue,		// Optional
				// -------------- A correction starts here ---------------------
				//TopWindow : topWindow       // Wrong
				TopWindow : parentWindow      // Correct
				// -------------------------------------------------------------
			}

			...

		},

  ...
#3926 [IE] SCAYT require two clicks to initialize Bug Normal CKEditor 3.0 UI : Spell Checker
Description

Reproducing Procedures

  1. Open the replace by class example page in IE;
  2. Click on 'SCAYT' - 'Enable SCAYT';
    • Actual Result: The toolbar button state shows SCAYT is enabled, despite the fact that SCAYT is not enalbed on the document.
  3. Click on 'SCAYT' - 'Enable SCAYT' again;
    • Actual Result: Now SCAYT is enabled
#3927 resizable rows and columns in table New Feature Normal General
Description

Many of our users make use of tables in fckeditor One of the nice features there is that the tables can be resized by dragging them.

However, it seems it's not possible to change the size of the a specific row or column at the moment This is annoying to some users , who would like to change the width of columns and rows , like they can do Word.

I think this would be a nice feature to have.

Kind regards,

De Metter Kenny,
Software Engineer Application Support
Colruyt Group Services

#3929 [IE] Paste text from dialog is broken Artur Formella Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Make sure IE's security setting of clipboard data access is disable.
  2. Open the replace by class example page in IE;
  3. Anchor the selection somewhere other than beginning;
  4. Click 'Paste' button to open paste dialog, enter some random text and click 'OK';
    • Actual Result: The text is pasted at the beginning of document;
#3930 Merge cells command missing Bug Normal Core : Styles
Description

Reproduce steps:

  1. Insert table of more than two columns
  2. Type some content in the two columns
  3. Select the cells
  4. Right click

Expected result: Merge cells option listed

Actual result: No option to merge cells

Currently working on the 2.6.4.1 editor.

Perhaps this is a feature that is intentionally removed from the new editor? Or maybe there is already a ticket on this? I did search for it. ;)

#3931 Maximize maximizes to width setting, not screenwidth, when option is given with CKEDITOR.replace Bug Normal CKEditor 3.0 General
Description

When clicked, in the FCKeditor, on the Maximize button, the edit screenwidth stays at the width when it is set as option in CKEDITOR.replace, like CKEDITOR.replace("field_id",{height:340,width:680});

The Maximize function works correct when this option, {height:340,width:680}, is not given in the HTML 'CKEDITOR.replace' script.

#3932 Feedback on CK editor demo New Feature Normal CKEditor 3.0 General
Description

Hi... Thanks for working on a great editor =O)

I was testing the CKeditor and I love its text editing capabilities... it does a great job at tagging html in flat manor that is very compliant... and it does a great job at deleting tags... I also love the tag bread crumb at the bottom!!! =O)

My biggest feedback is the image added... I like how Tiny MC's also users to browse images on a server... and upload images... If you can dial this you will be rock'n the editor =O)

Thanks again and great product! =O)

#3933 Extra line at the end of document in enterMode=BR Garry Yao Bug Normal CKEditor 3.1 Core : Output Data
Description

Reproducing Procedures

  1. Open the attached example page in IE;
  2. Click inside the cell;
  3. Switch to 'Source'.
    • Actual Result:
      	<table>
      		<tbody>
      			<tr>
      				<td>
      					table</td>
      			</tr>
      		</tbody>
      	</table>
      	<br />
      
    • Expected Result: The tail filler <br> doesn't exist.
#3935 SCAYT ads Bug Normal CKEditor 3.3 UI : Spell Checker
Description

When

CKEDITOR.config.scayt_maxSuggestions = 0.

Scayt banner has wrong position/z-index. Please see the attachment.

#3936 SCAYT customer ID Artur Formella Task Normal CKEditor 3.0 UI : Spell Checker
Description

Banner invites to purchase the customer ID, but the configuration entry is hidden in code.

#3937 [IE] The first opened panel doesn't hide Bug Normal CKEditor 3.1 UI : Floating Panel
Description

Steps to reproduce:

  • open the replacebyclass example
  • open the Text Color panel (panel becomes visible)
  • click on the editor content (panel is still visible)
  • open the Font combo (panel is still visible)
#3938 CreateHtml() failes to return string value Task Normal FCKeditor 2.6.5 General
Description

Hi.

I have just put up this great editor at one of my homepages. I know, the simple use of just calling the functions from å plaine php file is easy and straight forward.

The problem that occured, was when I tried to store my php-FCK-object in my own session routine. In details: I assigned a FCK object to a variable in my Control Object stored in the php-Session.

Like this: $_SESSIONAUTH?->workbench->editor->fckeditor->CreateHtml();

When I "echo" this from my php file directly, I actually works like it should. No problem at all.

The odd thing is when I call the fckeditor->CreateHtml(); from the editor object, It failes.

Specific:

$this->fckeditor->CreateHtml(); failes

Anybody that have a clue why this is happening? I think I have checked all the blog post I could find at gogle without finding the answer. Maybe I missed something basic?

Regards

#3939 Remove list create paragraph in enterMode=BR Bug Normal CKEditor 3.1 Core : Styles
Description

Reproducing Procedures

  1. Open the attached example page.
  2. Move the cursor at the end of first line, press 'Backspace' until the list is deleted.
    • Actual Result: A new paragraph is created in place of the list.
    • Expected Result: The list just get removed.
#3940 list operation doesn't stop at table Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the attached example page.
  2. Select the table cell content, and click 'Create/Remove Bullted List'.
    • Actual Result:
      • list
        list in table
    • Expected Result:
      1. list
        • list in table
#3941 Creation of Paragraph and Sub-Paragraph structure on pressing "indent" button New Feature Normal Core : Lists
Description

Hi,

First of all I wish to thank all those who have contributed to this tool. It works amazingly well. I'm using FCKEditor 2.6.4.1 for my project work. I'm using the following software for my project: 1) JavaScript, HTML, 2) Operating System: Linux, 3) Browser: Firefox. I have integrated this editor to my existing project. It is working great. However, I was asked to add new features to it. I need paragraph, sub-paragraph like structure. To be more clear following is the kind of structure I need to create:

*

1. 2.

a. b.

(i) (ii)

aa. ab. ac.

(iii)

aa. ab.

(iv)

c.

(i)

aa.

(ii)

d.

a.

(i)

aa. ab.

(ii)

b.

(i)

4.

*

The structure has to follow this pattern only. For paragraph it starts with 1. For sub-paragraph it starts with a. For sub sub paragraph it starts with i (small roman numeral). For sub sub sub paragraph it starts with aa. I'm actually able to create this structure. However, whenever I need sub paragraphs I have to right click and set the ordered list element's "type" attribute and "start" attribute to its appropriate value.

I need a feature using which we get the above pattern when the user presses "indent" button or "tab" key (whichever is convenient).

Again, I'm using 2 such editors on the same page. My requirement is that first editor should start with paragraph number 1. We must then keep track of the number of paragraphs (in the above example it is 4) entered by the user in the first editor. Then the paragraph number should continue from the first editor. So in my example the second editor should start with number 5 when it receives the focus or when the user starts entering the value.

It would really help me if you could tell me how I can modify the editor to get the desired result. I tried to learn the code. But since I'm a beginner I feel that the code for this editor is very vast and I'm unable to trace the necessary code.

I would appreciate if any further help is provided on how to change the code and what are the files to access for this purpose.

Thank you all once again for this editor and for your help.

#3942 JS error while inserting a line Bug Normal General
Description

To reproduce please insert the Horizontal line in FF3.

Result: JS error:

parentNode is null
http://localhost/edytor/CKEditor/trunk/_source/core/dom/node.js
Line 197
#3943 It is possible to drag buttons Bug Normal General
Description

Open the Image dialog and drag OK button over the URL input and release the mouse button.

Result: URL = "javascript:void(0)"

It is not possible in IE.

#3945 Inserting an Anchor removes selected content Bug Normal Core : Output Data
Description

Steps to reproduce:

  • Open replacebyclass example
  • Select "some"
  • insert an Anchor

Result:

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

Expected result:

<p>
	This is <a name="a">some</a> <strong>text</strong>. You are using <a href="http://www.fckeditor.net/">CKEditor</a>.</p>
#3946 Unable to hide contextmenu Tobiasz Cudnik Bug Normal CKEditor 3.0 UI : Context Menu
Description

Reproducing Procedures

  1. Open a context menu with a second-level sub menu;
  2. Activate the sub menu by mouse over the menu item;
  3. Now mouse move back to the first-level menu;
  4. Activate the same sub menu again;
  5. Click on the document text;
    • Actual Result: The context menu stays visible.
#3947 Arabic Language issues Bug Normal CKEditor 3.1 UI : Language
Description

Issues in the Arabic Language:

  1. Editor Area data is still in Left to Right order (supposed to be in Right to Left order)
  1. Styles and Font are not translated for Arabic.
  1. Maximize is not translated for Arabic.
#3948 [IE] Preformatted selection problem Bug Normal CKEditor 3.0 General
Description

There is an issue when selecting or deleting text that is formatted (<pre>).

To reproduce:

  1. Open nightly sample
  2. Add some plain text
  3. Select the new text and apply the formatted format

Result: Runtime Error, line 83. Error: 'nodeValue' is null

  1. After selecting the text, attempt to delete the selected content. It also produces the error.
#3949 [IE] Preformatted edit problem Garry Yao Bug Normal CKEditor 3.0 Core : Styles
Description

This issue may be related to #3948.

  1. Add some preformatted content like so:
<pre>Test line 1

Test line 2</pre>
  1. Place cursor at end of line 2 and hit ENTER.

Notice that a space is added instead of a new line.

  1. Revert to content as at 1.
  2. Place cursor at end of line 1 and hit ENTER.

Result:

<pre>Test line
 1

Test line 2</pre>

The actual result should be a new line, the space and "1" should not be on the new line

#3950 [Safari] Insert column before/after problematic Garry Yao Bug Normal CKEditor 3.1 General
Description

To reproduce:

  1. Open nightly sample
  2. Insert table with 3 columns
  3. Populate the cells in the first row to keep track of them.
  4. Select and right click in the empty area of a cell in the first row (to the right of the text in the cell)
  5. Attempt to insert a column before the current column

Result is that the column is added to the beginning of the table and not before the selected column

#3951 Reset size and lock ratio options not accessible in Image dialog Tobiasz Cudnik Bug Normal CKEditor 3.0 UI : Dialogs
Description

The two options "reset size" and "lock ratio" are not keyboard accessible.

#3952 Cannot navigate back from submenu in context menu via keyboard Bug Normal Accessibility
Description

When using the keyboard to navigate the context menu, it is not possible to navigate from a sub menu e.g. Cell back to the root menu.

#3953 Keystroke for close Paste dialog Tobiasz Cudnik Bug Normal CKEditor 3.0 Accessibility
Description

Steps to reproduce:

  • Open Paste/Paste from Word dialog
  • Hit ESC

Actual result: nothing happened

Expected result: dialog is closed

#3954 Templates in Template dialog not accessible Garry Yao Bug Normal CKEditor 3.2 Accessibility
Description

Templates are not keyboard accessible.

#3955 Dialogs: mouse cursor over checkboxes and radios shows as beam instead of arrow Bug Normal UI : Dialogs
Description

Tested on FF and Chrome (beam).

In IE and Opera works fine (arrow).

All skins are affected.

#3956 About dialog doesn't work in Source Mode Garry Yao Bug Normal CKEditor 3.0 General
Description

About dialog doesn't work in Source Mode in IE. Opening causes JS error.

#3957 Collapsed toolbar Bug Normal General
Description

To reproduce please set:

CKEDITOR.config.toolbarCanCollapse = false;
CKEDITOR.config.toolbarStartupExpanded = false;

Editor doesn't have the upper line - please have look at the attachment.

#3958 Creating more than one instance during runtime kills the former instances Bug Normal General
Description

Browser: Firefox 3.5 OS: Windows XP

Version fo CKEditor: 3.0 RC

I have a page with one editor instance. When clicking a button, I want to add another editor instance. This is being done by inserting new textareas via JavaScript and then replacing them via "CKEDIOTR.replace([name of textarea])".

This does work fine when creating only one new editor instance. But when I want to create one more editor instance, this new editor works fine, but the editor being created before this editor does not work anymore. Not working anymore means that only the editor's control buttons and theme are visible but the white input area is missing completely. In Firefox' error console the error "i.contentWindow is null" (file ckeditor.js line 18) is being shown.

Demo source code:

<html>
<body>
<input class="Button" type="button" value="New Editor" onClick="javascript:addEditor()" /><input class="Button" type="button" value="New Editor (Alternative)" onClick="javascript:addEditorAlt()" /><br />
<textarea name="editor_0" id="editor0" cols="70" rows="3"></textarea>
<div id="area" style="border:thin solid black;">this is a div</div>
	<script type="text/javascript" src="./script/ckeditor/ckeditor.js"></script>
	<script type="text/javascript">
	<!--
	var editorInstances = new Array();
	editorInstances[0] = CKEDITOR.replace('editor_0');
	editorCount = 0;

	function addEditor() {
		editorCount += 1;
		area = document.getElementById("area").innerHTML + '<br /><textarea name="editor_'+editorCount+'" id="editor_'+editorCount+'" cols="70" rows="3"></textarea>';
		document.getElementById("area").innerHTML = area;
		CKEDITOR.replace('editor_'+editorCount);
	}

	function addEditorAlt() {
		editorCount += 1;
		area = document.getElementById("area").innerHTML + '<br /><textarea name="editor_'+editorCount+'" id="editor_'+editorCount+'" cols="70" rows="3"></textarea>';
		document.getElementById("area").innerHTML = area;

		for (i = 1; i < editorCount; i++){
			alert("destroying editor "+i);
			editorInstances[i].destroy();
			alert("editor "+i+" successfully destroyed");
			editorInstances[i] = 0;
		}
		editorInstances = new Array(); //reset collection of editor instances
		for (i = 1; i <= editorCount; i++){
			alert("creating editor "+i);
			editorInstances[i] = CKEDITOR.replace('editor_'+i);
			alert("destroying editor "+i);
			editorInstances[i].destroy();
			alert("editor "+i+" successfully destroyed");
			editorInstances[i] = CKEDITOR.replace('editor_'+i);
		}
	}
	-->
	</script>

</body>
</html>

When clicking on the first button, a new editor is being added. After the second click, one can see that only the very first and last editors work properly but the ones in the middle do not work any more.

I tried to implement an alternative in function "addEditorAlt" - but this doesn't work either. Basicly, it saves all the opened editor instances into an arry and before creating a new one, it tries to destroy all the old ones.

#3959 [FF] Pasting content from Word causes problems Garry Yao Bug Normal CKEditor 3.0 Plugin : Paste from Word
Description

When pasting content from a Word document that happens to have a date field the content styles are displayed incorrectly. The height of the text is incorrect and results in excessive overlapping (see attached example).

Also, the table in the provided word document is removed.

The incorrect font styles and the removed table issue only occur in FF. IE is working well.

To reproduce:

  1. Open a nightly sample
  2. Copy the whole contents of the Test_doc_with_date.doc
  3. Use paste from Word dialog to paste the whole contents with default settings

Using the same document with the date field removed fixes the style issue (see Test_doc_without_date.doc), although the table is still removed.

Pasting directly into the content area preserves the table.

#3960 Easy way to remove toolbar collapse New Feature Normal General
Description

I often do not want the toolbar to be collapsable. I think it would be nice to have an easy way to hide that collapse arrow icon on the right of the toolbar.

#3961 KAMA: Jumping Button Bug Normal UI : Dialogs
Description

Steps to reproduce:

-open replacebyclass in IE8 -open Find dialog -press TAB 6 times

When the Cancel button has focus it moves to left.

#3962 Wrong dialog layout Bug Normal UI : Dialogs
Description

Set language to "bg" or "ru"

The following dialogs have scrollbars in IE8

  • KAMA: Link dialog / Advanced
  • KAMA: Image dialog / Image Info
  • office2003: Image dialog / Image Info
  • office2003: Select dialog
  • v2: Image dialog / Image Info ( the same issue in FF3)
  • v2: Select dialog ( the same issue in FF3)
#3963 [IE8] Table context menu doesn't hide Bug Normal CKEditor 3.0 UI : Context Menu
Description

To reproduce:

  • insert the following content in Source mode:
<p>
	&nbsp;</p>
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px">
	<tbody>
		<tr>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
		</tr>
		<tr>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
		</tr>
		<tr>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
		</tr>
	</tbody>
</table>
<p>
	<br />
	&nbsp;</p>
  • back to WYSIWYG
  • open the table context menu
  • move mouse over Cell (wait for submenu)
  • move mouse over Row (wait for submenu)
  • try to close the context menu, it is not so easy.
#3964 Make Dispatcher class public or protected Bug Normal Server : Java
Description

Hi,

Im using integration package in my software, and I cannot add the connector servlet to our software. Now, it would be easy to route all appropriate requests for the Dispatcher, but as it's constructor is protected I can not instantiate it. Also the doGet and doPost methods are protected.

I copied all code from this class to my own Dispatcher, and the only change was to mark those three as public. Everything works.

Could those be marked as public in the final release? (Then I could just instantiate your Dispatcher, and I could delete mine.)

Or is there good reason why this should be only instantiated by your servlet?

  • Ville
#3965 "Collapse Toolbar" changes editor width Bug Normal UI : Toolbar
Description

Open tc.html in IE8 and click button to collapse toolbar.

Result: The width of the editor is changed.

#3966 Add title for "Collapse Toolbar" Task Normal UI : Toolbar
Description

Move cursor over the "Collapse Toolbar" button - there is no hint.

#3968 About dialog layout is broken with IE+Standards+RTL Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

The about dialog layout is broken in the IE+Standards+RTL combination.

#3969 Dialogs are too wide in FF2 Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

This is a regression... in FF2, the dialogs are 100% wide.

#3970 Source mode textarea issue on IE7 strict with scrollbars Bug Normal General
Description

Source mode textarea issue on IE7 strict with scrollbars. Continuation of #3921.

TC

  <div style="overflow:scroll;height:200px;">
         <p>
            <label for="editor1">
               Editor 1:</label><br/>
            <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
            <script type="text/javascript">
                  CKEDITOR.replace( 'editor1' );
            </script>
         </p>
      </div>

Textarea overflows out of scrolled area.

#3972 Unable to remove list with enterMode=BR Garry Yao Bug Normal CKEditor 3.0 Core : Lists
Description

Reproducing Procedures

  1. Open a sample page with enterMode = BR in Firefox.
  2. Empty the document content and create a new list;
  3. Click again to remove the list;
    • Actual Result: It's not able to remove the list, but it fails silently.
#3973 Bulleted List Bug IE8 Garry Yao Bug Normal CKEditor 3.0 Core : Lists
Description

In the nightly build you can cause this error by doing the following:

Type some text on a new line. Then bold and underline the text.

Press ENTER to move to the next line. Then press the bulleted List Item on the toolbar to create a bulleted list.

This causes a javascript error.

#3974 IE - reversed attributes Bug Normal General
Description

Open plugins/htmldataprocessor TC in IE.

Tests: #3591 and #3884 failed in IE because attributes are in wrong order.

#3975 One of tests in htmldataprocessor is not complete Artur Formella Bug Normal CKEditor 3.0 General
Description

test_innerHtmlComments_ticket_3801 in tests/plugins/htmldataprocessor is not complete.

Text fields with id = '_TEXTAREA_3801_' + i are missing.

#3976 Delete the domwalker.js file Frederico Caldeira Knabben Task Normal CKEditor 3.0 General
Description

In #3304 we've completely removed all references to the domWalker class, but we forgot removing the domwalker.js file. This should be done at this point.

#3977 Style plugin uses not existing CKEDITOR.tools.replace() Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

Line 804 in plugins/style/plugin.js:

return CKEDITOR.tools.replace( '&nbsp;', match.length - 1 ) + ' ';

The test case also should be updated (core/tools.html).

#3978 setStyle float broken on IE7 strict Tobiasz Cudnik Bug Normal CKEditor 3.1 General
Description

TC

( new CKEDITOR.dom.element('div') ).setStyle( 'float', 'left' ).getAttribute( 'style' )

Result: "cssfloat: left;"

#3980 Use <label> for all labels in dialogs Garry Yao Bug Normal CKEditor 3.2 Accessibility
Description

There are some labels in the dialogs that are being defined with <span> or <div> tags. We should instead use the proper <label> element for them.

#3981 Problem showing 2nd level context menu on Windows 7/IE8 Bug Normal General
Description

When right clicking to show context menu in table and navigating on an menu item that has a submenu (e.g. Row, Column, Cell) the submenu ist rendered correctly but renders only a white rectangle without any content. Then after clicking on the rectangle the menu is rendered correctly

Step to reproduce:

  1. Open FCKeditor demo (stable or current nightly)
  2. Insert a table with default settings (using toolbar)
  3. Right click into any cell to bring up context menu
  4. Navigate onto Cell menu item

Workaround: Click into non-rendered area of the menu to render it completely

Environment: Windows 7 RC fully pached with MS IE 8 (8.0.7100)

Other: The editor works flawlessly on IE 8 on older Windows OSs (e.g. IE 8.0.6001.18702 on Windows Server 2003)

#3982 Enterkey on empty list item result weird Garry Yao Bug Normal CKEditor 3.0 Core : Lists
Description

Reproducing Procedures

  1. Open the 'replace by class' sample page.
  2. Load the document with following content and selection:
    <table>
    	<tbody>
    	<tr>
    		<td>
    			<ol>
    				<li>item1
    					<ol>
    						<li>item2</li>
    						<li><br />^</li>
    					</ol>
    				</li>
    			</ol>
    		</td>
    	</tr>
    	</tbody>
    </table>
    
  3. Press enter two times;
    • Actual Result: The result structure is in a mess;
    • Expected Result: The list keep unchanged with cursor stay at the end of list;
#3983 Extra comma in toolbar definition causes JavaScript error in IE Frederico Caldeira Knabben Bug Normal CKEditor 3.0 UI : Toolbar
Description

When calling CKEDITOR.replace on this sample page http://72.197.202.64:33112/entries/show/5 with ie8 on a vista machine, I get the following Javascript Error

'length' is null or not an object ckeditor.js, line 67 character 1800

I do not get this error using Chrome or Firefox 3.5

#3984 Mediawiki FCKeditor with ProofreadPage extension Bug Normal Project : MediaWiki+FCKeditor
Description

Hi, Some of the french contributors of Wikisource are interested by the FCKeditor extension for MediaWiki. But there is a problem when I use it with the ProofreadPage extension : on preview, FCKeditor disables the ProofreadPage view.

#3985 Style Combo Box doesn't close Bug Normal UI : Toolbar
Description
  1. Open a sample file (I've used the skins sample)
  2. Click on the dropdown arrow of the style combo box
  3. Now click anywhere in the editing area

Actual result: Unlike the other drop down boxes, the box doesn't get closed

Expected result: Style combo box should close like the other drop down boxes

#3986 can't place cursor before a table Bug Normal Core : Styles
Description
  1. empty the document
  2. insert a table
  3. try to place the cursor before the table (to enter some content)

you can't

This problem applies even to CKeditor 3, where you are adding a dummy <p> before the table apparently to workaround the problem. If this <p> is removed, the user gets in the same problem.

#3987 Updated Spanish translation Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.0 UI : Language
Description

Added all missing entries for V3.

Why does the langtool change the final line of all the lang files?

#3988 [FF] Can not second save Garry Yao Bug Normal CKEditor 3.0 General
Description

In firefox (tested 3.0, 3.5) if send data via ajax and recreate editor second send no change text area. I create test file with sam error.

  1. Open file
  2. Write text
  3. Send

Text is set correctly

  1. Write another text
  2. Send

Old text is set

#3989 Scrolling problem with IE and RTL pages Garry Yao Bug Normal CKEditor 3.0 General
Description

when using the editor in a rtl page [in IE], the x-scroller is stretching and when the client scrolls it all the way left you see something as 'Rich text editor, editor1'. for example, if using this code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="rtl">
   <head>
      <script type="text/javascript" src="ckeditor.js"></script>
      <title>CKEditor Test</title>
   </head>
   <body>
      <textarea class="ckeditor" id="editor1"></textarea>
   </body>
</html>

The output is: http://i27.tinypic.com/14c7l2p.png i've tried to wrap the editor with an ltr div but the problem had continued.

#3990 [IE7/8] Con not start edit Bug Normal CKEditor 3.0 General
Description

Can not star editing text clicking everiwhere in texteditor. Must click on existing text line. Its problem if texteditor is empty. You must click on first empty line. Test with 3936

#3991 [IE] In quirks, text not visible in v2 and office2003 skins Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

All IE versions. In quirks, text is not visible in v2 and office2003 skins. Refer to attached screenshot.

#3992 Fix core/ckeditor2 test Frederico Caldeira Knabben Task Normal CKEditor 3.0 QA
Description

There is a run-time error:

CKEDITOR.loadFullCore is not a function
http://localhost/edytor/CKEditor/trunk/_source/tests/core/ckeditor2.html
Line 15

My suggestion is to replace the following line

<script type="text/javascript" src="../../../ckeditor_source.js"></script> <!-- %REMOVE_LINE%

with:

<script type="text/javascript" src="../../../ckeditor_basic_source.js"></script> <!-- %REMOVE_LINE%
#3993 [IE] Mouse cursor over rich combo shows as beam instead of arrow Bug Normal UI : Toolbar
Description

Open Font Size combo and move mouse over the "Size" - mouse cursor becomes beam instead of arrow.

#3994 Horizontal line issue Garry Yao Bug Normal CKEditor 3.0 Core : Styles
Description

Steps to reproduce:

  • Open replacebyclass

  • Put cursor at the end of the content
  • Insert Horizontal line ( JS error in FF3 )
  • Insert another Horizontal line

Result:

Chrome - new line was added at the beginning of the content

IE - new line was added at the end of the content

FF3 - no line due to JS error:

parentNode is null
http://localhost/edytor/CKEditor/trunk/_source/core/dom/node.js
Line 197
#3995 Fix core/ckeditor test Tobiasz Cudnik Bug Normal CKEditor 3.0 QA
Description

Because of [3794] core/ckeditor test fails with message:

Unexpected error: undefined

It is a regression, please look at:

http://rev.ckeditor.com/ckeditor/trunk/3792/_tests/core/ckeditor.html

and

http://rev.ckeditor.com/ckeditor/trunk/3795/_tests/core/ckeditor.html

#3996 startupFocus doesn't work if editor starts in Source mode Garry Yao Bug Normal CKEditor 3.1 General
Description

startupFocus doesn't work if editor starts in Source Mode.

Test Case in attachment.

#3997 Undo test case New Feature Normal QA
Description

Undo Test Case from ticket #3662.

#4001 Using the link button on an image produces incorrect HTML code, and it doesn't work Garry Yao Bug Normal CKEditor 3.0 Core : Styles
Description

Bug in CKEditor (Nightly Build Revision 3936) OS: Windows XP Browser: Mozilla Firefox 3.5.1 (also tested in Google Chrome - same problem)

Here's what I did:

  1. I put a photo in the editor.
  2. I clicked on the photo.
  3. I clicked on the link button.
  4. I entered the target URL and clicked OK.
  5. I hit the SOURCE button to check the code.

Instead of generating <a href="http://targeturl"> code, it generates something like this: <img href="http://targeturl" ... >

This happened in both the downloaded version on our test server, as well as your online demo.

#4002 Some options in the image dialog can not be removed Task Normal General
Description

There are some options in the image dialog that the site owner will may want to disable.

  1. the lock and the reset buttons.
  2. the preview.
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