Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (3001 - 3100 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#2902 plugin:button move to trunk Task Normal CKEditor 3.0 General
Description

Button plugin is required to move to trunk.

#2903 plugin:imagebutton move to trunk Task Normal CKEditor 3.0 General
Description

Image button plugin is required to move to trunk.

#2904 plugin:hiddenfield move to trunk Task Normal CKEditor 3.0 General
Description

Hidden field plugin is required to move to trunk.

#2905 plugin:find and replace move to trunk Martin Kou Task Normal CKEditor 3.0 General
Description

Find and replace plugin is required to move to trunk.

#2907 V3: Make it possible to serialize range bookmark Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

The current bookmark implementation saves references to DOM nodes.

We have identified a number of cases where mutations need to be performed to range bookmark nodes, like cloning or innerHTML replacement. In such cases the node references present in the bookmark are not anymore valid, breaking it.

Just like we have in V2, we should have an option to save ID references when needed. They perform a bit slower, but give the flexibility we need for it.

#2908 Czech language file for FCK 2.6.4 Artur Formella Bug Normal UI : Language
Description

Czech language file for FCK 2.6.4

#2909 V3: Move Range.CreateBookmark2 from V2 Frederico Caldeira Knabben Task Normal CKEditor 3.0 General
Description

There are a few features depending on the CreateBookmark2 and MoveToBookmark2 present on V2. These functions must be moved to V3.

#2910 V3 - Clipboard support Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

Clipboard plugin with the following features: Cut, Copy, Paste, Paste as plain text.

#2914 no automatic search results - MediaWiki + FCKeditor Bug Normal Project : MediaWiki+FCKeditor
Description

I got a running MediaWiki 1.13.4 + FCKeditor, but when I try to insert image by clicking on the icon and enter a file name it says always as first "Automatic search results (searching...)" and then "Automatic search results (no images found)". I tried it with several filenames like Unbenannt.jpg.

I tried it in the sandbox at http://mediawiki.fckeditor.net/index.php?title=Sandbox&action=edit, too. I used IE6, IE7 and Firefox 2.0.0.16 and Firefox 3.0.6.

Always no image found.

What should one enter in the field image file name? Where does this automatic search searches?

#2915 About plugin shows misleading user language Michael Osipov Bug Normal FCKeditor 2.6.5 UI : Language
Description

At the moment the About Plugin shows in the Browser Info tab:

User Language: xxx

This display is incorrect. The JS code behind it is only able to retrieve the language of the browser, which is the GUI language of the browser.

I have attached a patch.

This problem popped up in http://www.fckeditor.net/forums/viewtopic.php?f=6&t=12947

#2916 Implement Flash dialog. Martin Kou Task Normal CKEditor 3.0 UI : Dialogs
Description

Need to port the Flash dialog from v2 to v3.

#2917 Problem with html links on Chrome 2beta Bug Normal General
Description

Tested on Chrome 2.0.162.0.

When an international character is somewhere in the code, FCKeditor returns broken HTML code when switching to the source mode and back (CKEditor simply hangs the browser).

To reproduce, paste this code in the source mode:

<p>ł</p>
<p><a
href="http://example.com">http://example.com</a></p>

in FCKeditor it is incorrectly transformed into:

<p>ł</p>
<p><a href="h _fcksavedurl=">http://example.com</a></p>

Note that if we use "l" instead of "ł", everything is working fine so it definitely has something to do with non-ascii characters.

This bug was originally reported here: http://www.fckeditor.net/forums/viewtopic.php?f=5&t=12946

#2918 Initial values for checkboxes are wrong Martin Kou Bug Normal CKEditor 3.0 UI : Dialogs
Description

To reproduce the bug:

  1. Open replacebyclass.html in Firefox.
  2. Open the link dialog.
  3. Switch to target tab, and choose popup target. You should see 8 checkboxes which are not checked.
  4. Cancel and close the link dialog.
  5. Repeat step 3.
  6. But this time, all the checkboxes are ticked, which is wrong.
#2919 mod_sec issues with File Browser Bug Normal General
Description

The FCKeditor file browser fails with hosts like HostGator that use mod_security.

When clicking the "Browse Server" button in the "Add Image" or "Add Link" dialog, a "Forbidden Error" is displayed with the following information:

"Forbidden

You don't have permission to access /root/editor/filemanager/browser/default/browser.html on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."

The only way to have this work is to have a host whitelist your domain, but surely there has to be a workaround for this so that it works 100% as intended for all users, regardless of host.

#2921 plugin:selection adding new way to force fire 'selectionChange' Task Normal CKEditor 3.0 General
Description

There's several use cases around the codebase when interact with CKEDITOR.dom.selection.selectRanges :

  1. Just make the selection highlight;
  2. Make selection and focus the editor;
  3. Only make selection on the fly and fire 'selectionChange' without focus gaining.

For item 1 just invoke the method is ok, for item 2 Martin has already introduce a workarround at http://dev.fckeditor.net/ticket/2883#comment:4, for item 3 there's also a workarround by http://dev.fckeditor.net/ticket/2862#comment:10.

It's better to integrate these pieces together to avoid confusing.

#2922 Whole editor broken caused by one malformed plugin Garry Yao Bug Normal CKEditor 3.0 General
Description

Now plugin manager is going down if any of the plugins on the list has a syntax/runtime error or a plugin is not found at the specified position. It's easy to reproduce. The editor should has some level of fault tolerant with plugins, especially when plugin come from external point.

#2923 "CKEDITOR is not defined" on page reload when editor focused. Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

This bug is found to be due to reload the page with focus on wysiwyg mode, cause a javascript error as titled in FF.

#2925 Cannot insert a list inside a div container created using the style dropdown Bug Normal General
Description

Added the following style to the fckstyles.xml file:

<Style name="Online Content" element="div">

<Attribute name="class" value="pnlOnline" />

</Style>

The pnlOnline style class is defined as follows:

.pnlOnline {

border: dashed 5px Green; margin: 5px; padding: 5px;

}

I create a new div container using the style dropdown box. (See screenshot #1).

If I move the cursor inside the container and add a list (either ordered or unordered), the container is replaced by the list.

If I add some line breaks inside the container and then add a list while the cursor is still inside the container, the list is placed outside the container. (See screenshot #2).

Note: If I create a container using the "Create Div Container" toolbar button, apply my custom style, place the cursor inside the new container, and then create a list, the list is correctly placed inside the container.

I have tested this with Internet Explorer 7, Firefox 3, and Chrome on Windows Vista with FCKEditor 2.6.3 and the latest nightly build as of Feb. 19, 2009.

#2926 Incorrect conversion of Hex(A0) and other values Bug Normal General
Description

On windows machines both firefox and IE, data put in a form field either text or textarea that contans &nbsp; is converted to hex(A0) when saved. fckEditor then converst this value to &Acirc;. If that same value is opened in a browser form field again the browser converts this to hex(c3). fckEditor then converts this to Â... I have seen many threads in the blog about the appearance of  and this is one of the main things. Many of us wind up using the content in both browser <textarea> tags and fckEditor. When doing this the data gets corrputed and it excallates. I have composed a lengthy outline of this issue if you would like it. I feel this is a bug in both the browsers treatment and fckEditor. There are other values this happens with besides &nbsp; but this is the most common because fckEditor puts &nbsp; in all over the place.

#2928 turn editor area red when user doesn't fill it in New Feature Normal General
Description

When a user presses the submit button on my site, I turn all the required textboxes red, that they didn't enter text in.

It would be nice if there was a property where I could set the editorarea to be red, when the user does not fill it in....

So you could have a setting called EditorTextAreaColor and it could be set dynamically and then I could set it to be whatever color I want.

It must be dynamic though, becuase I'll only want it red, when the user doesn't fill it in.

For an example of this go to: http://www.connectingsingles.com/register.aspx and press the "submit" button without filling anything in.

Thanks, Chris

#2929 extra space in style attribute - takes up extra room when storing it in DB New Feature Normal General
Description

In the HTML generated from the editor, you always put an extra space:

font-size: 11px background-color: black

That extra space is not necessary and just takes up more room when storing it in the database. Can you remove it? I have looked at the code and cannot figure out how to do it myself.

It should be: font-size:11px background-color:black

#2931 V3 : SpellChecker - WSC Artur Formella Bug Normal CKEditor 3.0 UI : Spell Checker
Description

New V3 plugin: Spell Check.

#2932 AJAX sample fails to populate editing area after subsequent editor instantiations in FF 3 Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

Instances of the editor which have been dynamically created using CKEDITOR.appendTo() fail to properly handle insertHTML(). The first instance of the editor works as expected but when that instance is destroyed and another created in its place, the second instance and all subsequent instances will fail to handle insertHTML().

The behavior can be reproduced by following these steps:

  1. Open http://ckeditor.com/ckeditor/3.0b/_samples/ajax.html
  2. Create editor
  3. Enter content into editing area
  4. Destroy editor
  5. Create another editor


Expected behavior is that the entered content would be populated in the new editor instance, but it isn't.

The cause has been tracked down to the mode of the editor not being set before setHTML() is called.

A temporary fix for the problem is to update CKEDITOR.editor.prototype.setMode declared in the editingblock plugin and explicitly set the mode (see patch).

The erroneous behavior appears to occur only in Firefox 3.

#2933 Show broken image icon in Firefox New Feature Normal General
Description

Using the custom extension -moz-force-broken-image-icon it's possible to make Firefox show that there's an image with a broken url while editing.

So it's a matter of adding

img {
	-moz-force-broken-image-icon: 1;
}

to the internal stylesheet (the image must have some dimensions in order to show, but finally it will appear and it will be possible to edit it).

You can compare the current behavior with the new one loading this html:

<p>Pic 1:<img width="100" height="100" src="broken" alt="current"></p>
<p>Pic 2:<img width="100" height="100" src="broken" alt="proposed" style="-moz-force-broken-image-icon: 1;"></p>

(of course I've applied here the style inline to show how it will work)

#2934 avoid skype problems New Feature Normal General
Description

I don't know if the current version does still creates problems while editing pages, but I know that previously people did report problems with the changes done by skype to the content and we didn't have any answer.

It seems that just adding this meta tag

<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> 
}}} can avoid the problems. In [http://forum.skype.com/index.php?showtopic=78380 this thread] they mention that at that time the had to be wrote exactly that way.

So we should test if the current version does work fine or it can still generate problems (with the new ckeditor code) and then use this meta tag if possible.
#2935 V3:New Test Garry Yao Bug Normal CKEditor 3.0 General
Description

This is a agile patch for adding new test cases for v3 codes.

#2936 Error creating folder 'dirname' {Can't create 'dirname' directory} Alfonso Martínez de Lizarrondo Bug Normal FCKeditor 2.6.5 Server : PHP
Description

If in "fckeditor\editor\filemanager\connectors\php\config.php" I set only one directory name above the root, ex.

$Config['UserFilesPath'] = '/userfiles/' ;

I can't do a quick upload a file. Message box say that: "Error creating folder 'userfiles' {Can't create '/userfiles/' directory}"

By using more directories in the path, like:

$Config['UserFilesPath'] = '/userfiles/abc/' ;

the error doesn't show.

I think this is a bug in the file "fckeditor\editor\filemanager\connectors\php\io.php":

101:	// Check if the parent exists, or create it.
102:	if ( !file_exists( $sParent ) )
103:	{
104:		//prevents agains infinite loop when we can't create root folder

This will try to create a directory "" (empty string) if the config has one directory in the path, because the parent is root (/) and cannot be created. So I think it should be modified:

101:	// Check if the parent exists, or create it.
102:	if ( '''!empty($sParent) &&''' !file_exists( $sParent ) )
103:	{
104:		//prevents agains infinite loop when we can't create root folder

After modification the files are uploaded correctly.

#2937 Internal Link FCKeditor / MediaWiki 1.14 Bug Normal Project : MediaWiki+FCKeditor
Description

Nature: On the load, FCKEditor add (wgArticlePath) to the beginning of the link. ex: index.php which generate a bug cause final Url will be http://localhost/index.php?title=/index.php=home

Procedure to reproduce:

Create a link to an existing page with subs (ex: /dev/roadmap). Save. You can click on the link. Then edit your page and add some text. Your link is now index.php instead of dev/roadmap?

#2938 Special character plugin looks bad with webkit Artur Formella Bug Normal CKEditor 3.0 UI : Dialogs
Description

Special character dialog looks bad in Safari and Chrome.

#2939 New finnish translation Task Normal FCKeditor 2.6.6 UI : Language
#2940 Override CKEDITOR.basePath and CKEDITOR.getUrl Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

A new feature present in V3 is that it automatically calculates the "base path" (the editor installation path), based on the URL <script> used for the editor script.

There are some situations though where it will not be able to find that URL. For example, if merging all scripts used in a page, including the editor scripts, in a single file.

To solve this issue, there should be a way to override the default base path calculation with a custom value.

The same thing is valid for CKEDITOR.getUrl, which is the function used to locate all editor files. There should be a way to introduce a custom implementation to it.

#2941 JavaScript : Sample 02 : Replacement of a TEXTAREA Bug Normal General
Description

XULElement.accessibleType http://www.fckeditor.net/nightly/fckeditor/editor/js/fckeditorcode_gecko.js Line: 85

I also tried with current svn version on my server, and it stops in editor/_source/classes/fckpanel.js Line: 96

Could you fix this, i tried to put try {}catch(e){}, but it doesn't help!

Thanks

#2942 Element Styling Tool New Feature Normal Core : Styles
Description

I'm missing a tool to style elements.

For example, there should be a toolbar button that opens a window with "most wanted" styling possibilities:
margin: -top- -right- -bottom- -left-
padding: -top- -right- -bottom- -left-
border: -width- -color-
background: -color-
floating: -left- -right-
absolute position: -yes- -no-

The style is set to the block or element (like an image) where the cursor is.

#2943 The FCKConfig.CoreStyles[''] setting was not found. Please check the fckconfig.js file Bug Normal Core : Styles
Description

Browser shows alert (FF3 and Opera 9.63. IE7 doesn't)

"The FCKConfig.CoreStyles[] setting was not found. Please check the fckconfig.js file"

when i set FCKConfig.FontFormats = 'p;h2;h3;h4;h5;pre;' ;

Both alerting browsers still render the iframe for the dropdown. IE7 again doesn't.

Without this setting all browsers do just fine.

#2944 Event to indicate that the editor is ready for full interaction Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

Currently, we are able to do CKEDITOR.on( 'instanceCreated' ) to get an editor instance for interaction. But, the editor will not be totally rendered at that point, so not all operations would work.

There should be a new event indicating that the editor is ready for full interaction.

#2945 Editor instance intialization error Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

The create editor on the fly APIs assume FORM always existed which is false. Reproducing procedures:

  1. Open _samples\api_dialog.html example.
  2. Got JavaScript Error in FF.
#2946 Auto wrapping text in paragrahs Bug Normal General
Description

Additional spaces get added after you save a html formatted description. attached the needed doc . please verify.

#2947 Indent does not work in IE Martin Kou Bug Normal CKEditor 3.0 General
Description

The indentation button has no effect in IE. Works well with Firefox, Safari and Opera.

#2948 insertHtml() mangles links Martin Kou Bug Normal CKEditor 3.0 General
Description

Calling insertHTML for a relative URL, like <a href="/rel">example</a> changes the URL to a full URL, like <a href="http://localhost/rel">example</a>

IE only. Ok in FF.

#2949 FCK.GetNamedCommandValue( 'FontSize' ) always returns null / empty Bug Normal General
Description

I am accessing FCK.GetNamedCommandValue( 'FontSize' ) but always getting null, even when I can see there is a value set on its display. Its happening in IE and Moz. Im on 2.6.3 stable

I have no problem returning values for all other commands I have tried with GetNamedCommandValue, just 'FontSize'.

I cant find any reported bugs after x hours on google. Am I just being stupid here?

Thanks in advance

Dave

OR Let me ask this another way. How should I be getting the currently selected value for FontSize, or can you point me towards the docs for this?

#2950 plugin:preview Click command got JavaScript error in IE Bug Normal CKEditor 3.0 General
Description

Reproducing procedure:

  1. Open Replace by code sample with IE6;
  2. Click Preview button;
  3. Got JavaScript error thrown.
#2951 plugin:template replaceContent default not checked in IE Martin Kou Bug Normal CKEditor 3.0 General
Description

The CKEDITOR.config.templates_replaceContent config option is by default set to true, but failed to represent in checkbox. Reproducing procedure:

  1. Open Replace by code sample with IE6;
  2. Click Template button;
  3. Found Replace actual content not checked.
#2952 Certain toolbar button looked mess in IE6 Bug Normal CKEditor 3.0 General
Description

Reproducing procedure:

  1. Open Replace by code sample with IE6;
  2. Check the toolbar buttons;
  3. Some of them doesn't layout correctly.

Screenshot:

Check attached toolbar-button-chaos.png.

#2953 All toolbar buttons doesn't show title text in IE6 Bug Normal CKEditor 3.0 General
Description

Reproducing procedure:

  1. Open Replace by code sample with IE6;
  2. Mouse move over the toolbar buttons;
  3. All of them doesn't show label text defined by title.
#2954 Option 'Match cyclic' not working Martin Kou Bug Normal CKEditor 3.0 General
Description

The config option of Match cyclic which should restart the search from the beginning of document which doesn't work.
Reproducing procedure:

  1. Open Replace by code sample;
  2. Make selection as below:
    <p>This i^s some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>
    
  3. Open the find/replace dialog, make sure only the match cyclic option is checked, fill in is in 'Find what' input, then click find button.
  4. Prompted with '...text not found', click find button again.
  • Expected result: The document is highlighted as
    <p>Th^is^ is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>
    
    
  • Actual result: Again prompted '...text not found'.

#2955 plugin:numberlist/bulletlist failed when caret on inline-element end Bug Normal CKEditor 3.0 General
Description

Reproducing procedure:

  1. Open Replace by code sample;
  2. Delete all document contents;
  3. Make the following inputs and selection:
    text^
    
  4. Click Add/Remove Numbered List button;
  • Expected result: The document content becomes
    <ol>
        <li>text</li>
    </ol>
    
  • Actual result: The document content is
    text
    <ol>
       <li>
       </li>
    </ol>
    

#2956 plugin:sourcearea has extra <br /> when document is empty Bug Normal CKEditor 3.0 General
Description

Reproducing procedure:

  1. Open Replace by code sample;
  2. Delete all document contents;
  3. Switch to source mode, check the source content;
  • Expected result: The content is empty.
  • Actual result: The content is:
    <br />
    

Related v2 tickets : #1660, #1150, #2154

#2958 Safari 4 + FCKeditor for Mediawiki = very short text editor window Bug Normal General
Description

screenshot attached

#2959 plugin:editingblock reload initial data on empty content Garry Yao Bug Normal CKEditor 3.0 General
Description

Procedures

  1. Open the replace by code example page;
  2. Switch to source mode, and delete all content;
  3. Switch back to wysiwyg mode, check the document:
  • Expected Result : The content is empty.
  • Actual Result : The initial content data is there:
    <p>
    	This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>
    
#2960 plugin:pastefromword unable to re-focus preview box Martin Kou Bug Normal General
Description

Procedures

  1. Open the replace by code example page in IE;
  2. Click Paste from Word button to show the dialog;
  3. Click outside the preview box to blur the document;
  4. Click inside the preview box to regain focus.
  • Expected Result : The preview document is focused.
  • Actual Result : The preview document is unable to gain focus.
#2961 plugin:newpage lack of title on toolbar button Bug Normal CKEditor 3.0 General
Description

Procedures

  1. Open the replace by code example page in IE;
  2. Mouse over the New Page button on toolbar;
  • Actual Result: No title label displayed.
#2962 plugin:link creation with target:popupwindow doesn't work Martin Kou Bug Normal CKEditor 3.0 General
Description

Procedures

  1. Open the replace by code example page in IE;
  2. Selection anchored to the existed link 'FCKeditor', click the Link button to open the link dialog.
  3. Switch to Target page, select <popup window> option, close with Ok.
  4. Click Preview button to open a preview window, click the link 'FCKeditor' within the preview document.
  • Expected Result : New window opened in popup window.
  • Actual Result : New window opened as blank parent window.
#2963 Key board Tab navigation not working in FCK In IE. Bug Normal General
Description

Open http://www.fckeditor.net/demo with IE. Try to use keyboard Tab button to navigate the page. It will stuck in the FCKEditor text area.

#2964 plugin:image dialog loading cause JavaScript Error Garry Yao Bug Normal CKEditor 3.0 General
Description

Procedures

  1. Open the replace by code example page in IE;
  2. Click image button to open dialog.
  • Actual Result : Encounter JavaScript error thrown.
#2965 plugin:image preview area failed to update 'align' option Artur Formella Bug Normal CKEditor 3.0 General
Description

Procedures

  1. Open the replace by code example page in IE;
  2. Click image button to open dialog, input
    http://dev.fckeditor.net/chrome/site/logos.gif
    
    as image url.
  3. Change the Align select to option 'right', check the preview area.
  • Actual Result : Preview area remains the same.
#2966 plugin:image cause JavaScript Error with 'Style' setting. Artur Formella Bug Normal CKEditor 3.0 General
Description

Procedures

  1. Open the replace by code example page in IE;
  2. Click image button to open dialog, input the following as image url;
    http://dev.fckeditor.net/chrome/site/logos.gif
    
  3. Switch to Advanced page, fill in Style input with the following, then click Ok to close.
    float:right
    
  • Actual Result : Encounter JavaScript error.
#2967 plugin:dialog JavaScript error at opening dialog boxes in IE Bug Normal CKEditor 3.0 General
Description

To reproduce the bug:

  1. Open replacebyclass.html in IE6.
  2. Triple click to select the "CKEditor Sample" title in the page.
  3. Open any dialog - link, image, table, etc.
  4. You get a JavaScript error if the dialog tries to restore the selection.
  5. Close the dialog by clicking cancel.
  6. You get another JavaScript error.
#2968 Disable certain commands state on 'source' mode Task Normal CKEditor 3.0 General
Description

Need to implement logic for disable commands except the following ones when editor is switch to 'source' mode:

  • Source
  • Save
  • New Page
  • Preview
  • Print
  • Select All
#2969 plugin:dialog Clicking on checkbox or radio button labels don't activate their associated button in IE. Martin Kou Bug Normal Accessibility
Description

To reproduce:

  1. Open replacebyclass.html in IE.
  2. Open the find dialog.
  3. Click on the "Match case" label.
  4. The checkbox isn't checked.
#2970 Refactor CKEDITOR.dom.documentFragment Garry Yao Task Normal CKEditor 3.0 General
Description

Current implementation of documentFragment has been ported from V2 for IE 5.5 support, which have dropped for V3. We could now replace those IE hacks with standard support of native documentFragment.

Reference

Sitepoint

#2971 Introduce the Format combo Frederico Caldeira Knabben New Feature Normal CKEditor 3.0 General
Description

The Format combo is to be developed for V3.

#2972 plugin:table insertion in empty document leave extra newline in IE Bug Normal CKEditor 3.0 General
Description

Procedures

  1. Open the replace by code example page in IE6;
  2. Clean up the document by the following ways:
    • Switch to source mode, delete all contents;
    • Switch back to wysiwyg mode.
  3. Click on Table to open dialog and insert a default table, check the document now.
  • Actual Result : Empty newline existed above the inserted table.
#2973 plugin:template UI display incorrect width Artur Formella Bug Normal CKEditor 3.0 General
Description

Reproducing procedure:

  1. Open Replace by code sample in Webkit.
  2. Click the Template button to open dialog.
  • Actual result: Content TABLE doesn't fit to parent DIV width.

#2974 Sample page editor instance UI over-width Bug Normal CKEditor 3.0 General
Description

Reproducing procedure:

  1. Open Replace by code sample in Webkit.
  2. Check the width of whole editor.
  • Actual result: editor width exceed viewport.
#2975 Blank edit page when extension is enabled (upgraded mediawiki) Bug Normal Project : MediaWiki+FCKeditor
Description

When I enable the extension and press the edit button a blank page is displayed (Firefox 3.0.6) and using IE7 a HTTP 500 error is produced. Workaround is to tick the "Disable rich editor" option on the "My preferences-->misc" page.

I tried updating the editor to the latest version (2.6.4) but that did not resolve my issue.

The extension used to work on < MediaWiki 1.14.0

The following information is displayed on the special:version page: MediaWiki 1.14.0 PHP 5.2.8 (apache2handler) MySQL 5.1.30-community FCKeditor (Version fckeditor/mw-extension $Rev$ 2008)

#2978 Show blocks should keep state across mode switches Martin Kou Bug Normal CKEditor 3.0 General
Description

To reproduce the bug:

  1. Open replacebyclass.html of trunk in Firefox 3.
  2. Enable show blocks.
  3. Switch to source mode and back.
  4. Now show blocks is disabled.
#2979 Focus issue after inserting table Bug Normal CKEditor 3.0 General
Description

When inserting a table at the end of a document it is not possible to navigate past the table to continue entering text.

Steps to reproduce:

  1. Open nightly build. Currently (http://nightly.ckeditor.com/3105/_samples/replacebyclass.html)
  2. Add new line to the existing text in the editor
  3. Add new table with all default values

Expected behavior:
Table is added at the carat position. It is possible to position the carat directly after the table to continue adding text.

Actual behavior:
The table is added as expected. It is not possible to position the carat after the table, making it difficult to continue entering text into the document without having to go into source mode.

#2982 plugin:flash 'id' attribute failed to apply in IE Bug Normal CKEditor 3.0 General
Description

Reproducing procedure:

  1. Open Replace by code sample in IE;
  2. Check flash button to open dialog;
  3. Fill in url as below, then swith to Advanced page and field in Id field with 'id1';
    http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf
    
  4. Check the document now:
  • Actual Result: id attribute not applied.
    <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"><param name="quality" value="high"></param><param name="movie" value="http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf"></param><embed 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"></embed></object></p>
    
#2983 plugin:showblock missing tagname icon Bug Normal CKEditor 3.0 General
Description

Procedures

  1. Open the replace by code example page in IE6;
  2. Click Show Blocks button to toggle on;
  • Actual Result : Block tagname icon not displayed at all.

Actual Result Snapshots

Check no_tag_icon_displayed.png in attchment.

#2984 V3 : Toolbar reorganization Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

The toolbar is quite chaotic right now. It should be reorganized to resemble the V2 buttons order.

It has not support for '/' also.

#2985 Find/Replace Match cyclic doesn't work Bug Normal CKEditor 3.0 General
Description

Steps to reproduce:

  1. Open nightly build. Currently (http://nightly.ckeditor.com/3105/_samples/replacebyclass.html)
  2. Place caret at the end of the document
  3. Open search dialog
  4. Enter term that appears in the document e.g. 'sample'
  5. Ensure 'Match cyclic' is selected
  6. Hit Find

Expected behavior:
The search finds and highlights the term in the document.

Actual behavior:
The "The specified text is not found" message appears.

#2986 plugin:image cause JavaScript Error with lockRatio button Artur Formella Task Normal CKEditor 3.0 UI : Dialogs
Description

'this' in the dialog element onLoad function was fixed and now we need to improve image dialog.

Now 'dialog=this.getDialog()' instead of only 'dialog=this'.

#2987 All fake elements get lost after drag-and-drop in Webkit Bug Normal General
Description

Procedures

  1. Open the replace by code example page in Safari;
  2. Select the beginning of the text line;
  3. Click Anchor button to open dialog, input 'anchor' in 'Anchor Name' field, close it with ok;
  4. Select the inserted fake element(anchor), perform drag-and-drop to the end of line.
  • Actual Result : The fake element disappeared right at the drop region.
#2988 V3: Document Properties plugin Sa'ar Zac Elias New Feature Normal CKEditor 3.6 UI : Dialogs
Description

Document Properties plugin with Select Color dialog.

#2989 document::insertHtml failed in IE Bug Normal CKEditor 3.0 General
Description

Fuctional Testcase

test-editor-insertHtml.patch

#2990 wrong IsDirty() after GetData() execution Bug Normal Core : Output Data
Description
  1. Before call of GetData() the value of IsDirty() was false.
  2. After call of GetData() the value of IsDirty() became true.

FF3. Easy to reproduce.

I think the problem in FCKXHtml.GetXHTML(). There's a function call "FCKDomTools.EnforcePaddingNode(FCKTools.GetElementDocument(A), FCKConfig.EnterMode);" which makes trouble.

I quick_fixed it by inserting "if (!D) FCK.ResetIsDirty();" after EnforcePaddingNode.

#2991 JAWS Tool is not able to recognize the new CKEditor3.0 Martin Kou Bug Normal CKEditor 3.0 General
Description

JAWS Tool is not able to recognize the new CKEditor3.0. Thus we are not able to conduct any Accessibility Testing.

#2992 Toolbars don't wrap in Safari Bug Normal CKEditor 3.0 General
Description

If the editor width is reduced, the toolbar is not wrapping.

To test it, open a sample page and resize the window. You should see the toolbars arranging themselves to fit the new width.

#2993 Toolbar wraps incorrectly in IE Bug Normal CKEditor 3.0 UI : Toolbar
Description

When resizing the browser window, the toolbars wrap incorrectly in IE.

#2994 Format applied to the incorrectly if cursor at the end of a paragraph Bug Normal CKEditor 3.0 Core : Styles
Description

Steps to Reproduce

  1. Write two paragraphs of text.
  2. Move to the end of the first paragraph.
  3. Select "Heading 1" in the format combo.

The second paragraph gets changed instead of the first one.

#2998 Toolbar combos load the editor.css file with no timestamp Artur Formella Bug Normal CKEditor 3.0 General
Description

The timestamp querystring is not being appended to the editor.css file request when opening toolbar combos.

This can be easily verified by opening the [nightly build demo http://nightly.ckeditor.com/latest/ckeditor/_samples/replacebyclass.html], looking at the "Net" tab of Firebug.

#3002 Use "filters" for the htmlParser API Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

Currently, we are introducing specific output manipulation directly into the domParser code. This makes that code quite hard to maintain, and less flexible, as it is not able to customize the manipulation with easy.

There should be instead a way to attach a "filter" to the parser, including all necessary rules for it.

In this the data processor can have a public filter property, which can be easily modified by a plugin or external code.

#3003 Parse HTML data on input Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

The editor is currently taking the input HTML as is, doing lots of string processing (regexes mostly) and them loading it into the editing area.

There are occasions when we have buggy HTML being loaded though causing use problem. For example, it's not possible to remove the bold style for the "Test" word in the following case:

<strong>
<table>
	<tr>
		<td>Test</td>
	</tr>
</table>
</strong>

We should use the HTML parser to "fix" the HTML before loading. The parser should also be used on the paste dialogs, insertHtml (with optional parameter to avoid it), or any function that accepts data from the outside.

Also, by using the "parsing filters", proposed with #3002, we could avoid all the regexes and special manipulation we have today, making it also easily customizable by plugins or external code.

#3004 plugin:link created url not right with 'protocol' <other> Artur Formella Bug Normal CKEditor 3.0 General
Description

The generated link url is not right when setting protocol with <other>.

Functional Testcase

Tested with test-link-protocol-other.patch.

#3005 plugin:form failed with click ok in IE Artur Formella Bug Normal CKEditor 3.0 General
Description

Functional Testcase

Tested with test-form-all.patch.

#3006 V3 : Style system enhancements Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

There are still lots of features in the V2 Style System that are missing in V3, like the usage of variables in the definition and proper support for attributes and styles checks.

I'll be attaching a path with several enhancements and some code organization.

#3007 Font and Size combos Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

Implement the Font and Size combos.

#3008 plugin:form fields certain attributes not commited in IE Martin Kou Bug Normal CKEditor 3.0 General
Description

Specifically, attributes name,style and check box based options didn't get committed.

Functional Testcase

Provide a test case for checkbox, others field types could also be reproduced in same way.

#3009 Enhance testing framework to support async 'setUp' Garry Yao Bug Normal CKEditor 3.1 QA
Description

In functional tests where always requires to have a fully interacted editor instance as prerequisites, with all tests in a case share a 'playground' instance.

We should provide a customized TestSuite which responsible for setting up a editor instance transparently with all containing TCs share this singleton, with this, it even able to make sure each test 's cleanness in a TC by resetting the editor with TestCase::setUp.

Since the setting up of our editor is always an asynchronous operation, so does cleaning up an editor sometimes, sadly that YUI doesn't support calling wait/resume inside setUp method, we should work around it in order to bring the above functionality into truth.

#3010 Enhance testing framework regards 'selection range' testing Garry Yao Task Normal CKEditor 3.1 QA
Description
  1. Document content along with selection testing regards various command execution result could be simplified as comparison based on our widely used selection description language, which make test case easy to write and understand by people, so a translation API could be provided to make the editor understand this language.
  • represent single selection
<p>
	This is some <strong>[sample text]</strong>.</p>
  • represent multiple selection
<table>
	<tbody>
		<tr>
			<td>
				Text1
			</td>
			<td>
				[Text2]
			</td>
		</tr>
		<tr>
			<td>
				[Text3]
			</td>
			<td>
				Text4
			</td>
		</tr>
	</tbody>
</table>
<br />

  • represent collapsed selection
    	This is some <strong>sample^ text</strong></p>
    
  1. Secondly, in order to avoid embed html string in JavaScript codes, it's more convenient to utilize a <textarea> to hold the actually expected/provided descriptive HTML codes( the reason for bypass <pre> is because IE's unable to preserve original format when retrieving content dynamically). So a cross-browser implementation could be established to get pre-formatted content with ease.
#3011 MediaWiki syntax as a plugin New Feature Normal Project : MediaWiki+FCKeditor
Description

I know about MediaWiki+FCKeditor project but it has many bad points (you have to install it on server, it doesn't work with new versions of MediaWiki, etc.).

It will be realy nice to have plugin that switch from HTML->Wiki syntax or better plugin where use can define output.

For instance. When I click on button B .... i want that FCKeditor write the following code <b>(Selected text)</b> (Selected text) [b](Selected text)b Custom input ...

Thanks in advance

#3012 plugin:format 'h1' font too big to display Garry Yao Bug Normal CKEditor 3.0 General
Description

The h1 format selection option text is too big and cropped.

#3015 Insert Special Character - Code format choice New Feature Normal General
Description

I've used FCKeditor for a long time now and I like what your doing with CKEditor3. You have the ability to insert special characters, an example being &copy; for the copyright symbol and &nbsp; for a none breaking space. In strict browser such as those using the WebKit engine the above mentioned characters can cause errors when loading in via an AJAX (XML Wrapper) request. They state that strict XML requires either numbered codes or an entity be added to the page. Considering that FCKeditor can be used to create content for an AJAX request it would be worth while adding the option into the "insert special character" to chose whether the character be encoded in alphabet mode or numbered mode. An example being that in alphabet mode the code for a Non Breaking Space would be written as &nbsp; and in numbered mode it would be written as &#160;. Or an option to choose which mode to be added into the config file?

#3016 V3: New Unit Tests Garry Yao Task Normal QA
Description

Include covering of selection plugins.

#3017 hyperlink target <popup window> not being saved Bug Normal General
Description

Using fckeditor for windows version 2.6.4, click on target of hyperlink and set to <popup window>. Click on resizeable and set height and width to 200. Save and test. The popup comes up but the parent window also changes to the page specified. E.G. both the popup and the page with the link change to page I wanted to go to.

#3018 V3 : Styles Combo Frederico Caldeira Knabben New Feature Normal CKEditor 3.0 General
Description

Implement the Styles combo in V3.

#3019 plugin:form all form-based dialog failed to work in edit mode. Garry Yao Bug Normal CKEditor 3.0 General
Description

Currently it's unable to update dialog from existed element attributes.

#3021 Toolbar layout is messed up in IE6 quirks mode Frederico Caldeira Knabben Bug Normal CKEditor 3.0 UI : Toolbar
Description

To reproduce:

  1. Delete the <!DOCTYPE> line in sample.html.
  2. Open replacebyclass.html in IE6.
  3. The toolbar is messed up.
#3022 autoGrow doesnt work properly because of FF bug Bug Normal General
Description

There is a bug in FF that prevents autoGrow from working in certain situations.

To reproduce:

  • enable autoGrow plugin
  • add a block element (like div, p) with margin-bottom
  • there will be scrollbars and weird behavior

Explanation: FF fails to account properly for margin-bottom or floated elements in body's offsetHeight. I don't see any easy fix for this, maybe someone has an idea or be so kind to file a bug with Mozilla.

#3023 extra <br /> added on GetHTML() Bug Normal Core : Output Data
Description

On GetHTML(), a <br/> is added in the displayed body. It is out of place and not included in the GetHTML return, causing an inconsistency between fetched and displayed document.

The GetHTML() request should NOT alter in any way the layout of the document.

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