Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (3701 - 3800 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#3780 List command is broken in IE6 Martin Kou Bug Normal CKEditor 3.0 Core : Lists
Description

To reproduce:

  1. Open replacebyclass.html in IE6.
  2. Create a default table.
  3. Put caret in the first table cell.
  4. Press "Insert Unordered List".
  5. You get 5 list created - none of them are in the table cell of your caret.
#3781 colorbutton is enabled in 'source' mode Artur Formella Bug Normal CKEditor 3.0 General
Description

Both color and background-color button is enabled in 'source' mode.

#3782 Removing lists in table cells results in collapsed table cells. Martin Kou Bug Normal CKEditor 3.0 Core : Lists
Description

To reproduce:

  1. Open replacebyclass.html in Firefox/Safari/Opera.
  2. Create a table.
  3. Put caret to first cell.
  4. Press Insert/Remove Unordered List twice.
  5. Now the table cell cannot be selected in Firefox, or will give you strange caret positions in Safari/Opera.
#3783 Indenting commands in table cells creates collapsed paragraphs. Garry Yao Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Open replacebyclass.html in Firefox/Safari/Opera.
  2. Create a table.
  3. Move caret to first table cell.
  4. Indent.
  5. Move caret to second table cell.
  6. Try to move caret back to first table cell.
  7. You can't do that (Firefox), or you'll have strange selection positions in other browsers.
#3784 [IE] Paragraph before table is not deleteable Bug Normal General
Description

Reproducing Procedures

  1. Open the replace by class example page with IE6.
  2. Click on 'New Page' to clear up document;
  3. Insert a default table, then click the spaces before the table;
    • Exptected Result: You get a empty paragrahp created.
  4. Click on the created paragraph, press 'Backspace';
    • Exptected Result : The paragraph is deleted.
    • Actual Result : It's unable to delete the paragraph;
#3785 [IE8] CKEDITOR.tools.htmlEncode returns NBSPs in IE8 Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

CKEDITOR.tools.htmlEncode returns NBSPs in IE8.

Smiley dialog layout is wrong

To reproduce:

  1. Open smiley dialog in IE8.
  2. The table containing the icons does not fill the dialog.

Snippet

CKEDITOR.tools.htmlEncode('  ')
#3786 Copying / pasting in IE creates font tags Bug Normal General
Description

Steps to reproduce:

  1. Create two paragraphs
    This is some sample text.
    
    This is some sample text.
    
  1. If you make the first line green, select some text and paste it in the second line, you'll get:
<p>
	This is <font color="#008000">some </font>some sample text.</p>
#3787 Table dialog is too small Artur Formella Bug Normal CKEditor 3.0 General
Description

If you switch locale in FF to Polish or Spanish, you'll notice that the table dialog box looks bad (scrollbars are available, but there should be some extra space in the dialog for a bit longer names in other languages).

#3788 Paste option is not available in the context menu in Safari Martin Kou Bug Normal CKEditor 3.0 General
Description

To reproduce: copy some text, open the context menu - paste item is always disabled.

#3789 Duplicate "src" attribute in image input type element Artur Formella Bug Normal CKEditor 3.0 General
Description

Create image button and you'll see:

<input alt="" src="http://a.cksource.com/a/1/gfx/logo_ck_editor.png" src="http://a.cksource.com/a/1/gfx/logo_ck_editor.png" type="image" />

(the "src" attribute is repeated).

#3790 Find & Replace causes "too much recursion" Garry Yao Bug Normal CKEditor 3.0 General
Description

When editing a moderate sized document with many searched for items, the search & replace can cause "too much recursion" errors in FF.

Sample document attached (taken from source view).

#3791 JSLint errors in the SCAYT plugin Garry Yao Bug Normal CKEditor 3.0 UI : Spell Checker
Description

When running our jslint tool (at _dev/jslint), we can note that the scayt plugin contains several errors.

We have fixed most of the errors, but there are still several warnings there. It happens in the plugin.js file, as well as the dialog related files.

#3792 [IE] Insert special character adds to the beginning of the document Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

When inserting special character from the dialog, the character is always added to the beginning of the document.

Appears to only happen on IE.

#3793 Combine skin images Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

Some skin images could be combined inside sprites.png, reducing the number of HTTP calls.

Currently, the following could be considered:

  • arrowdown.gif
  • arrowtop.gif
  • arrowleft.gif
  • arrowright.gif
  • resizer.gif
  • resizer_rtl.gif
#3794 Error when creating link Martin Kou Bug Normal CKEditor 3.0 General
Description
  1. Open the link dialog to create or edit a link.
  2. Type any URL.
  3. Hit ENTER to close the dialog and create/change the link.

A JavaScript error is thrown. It doesn't happen when using the mouse, clicking the dialog OK button.

#3795 ENTER scrolls the editing area always Garry Yao Bug Normal CKEditor 3.0 General
Description
  1. Load the following HTML:
<p>A</p><p>A</p><p>A</p><p>A</p><p>A</p><p>A</p><p>A</p>
<p>A</p><p>A</p><p>A</p><p>A</p><p>A</p><p>A</p><p>A</p>
<p>XXXXXXXXXXXXXXXXXXXX</p>
<p>B</p><p>B</p><p>B</p><p>B</p><p>B</p><p>B</p><p>B</p>
<p>B</p><p>B</p><p>B</p><p>B</p><p>B</p><p>B</p><p>B</p>
  1. Scroll the contents to position "XXXXXXXXXXXXXXXXXXXX" in the middle of the editing area.
  1. Place the caret in the middle of "XXXXXXXXXXXXXXXXXXXX".
  1. Hit ENTER.

In all browser but IE, the document will scroll, aligning the caret to the bottom of the editing area.

#3796 Anchors are not always editable Martin Kou Bug Normal CKEditor 3.0 General
Description
  1. Load the following HTML:
<p><a name="Test" title="The Title"></a></p>
  1. Right click the anchor and select "Edit Anchor". (The "Name" field will be empty in the dialog)
  1. Type a new name, like "Changed".

In source view you will find the following, indicating that the element has been totally replaced:

<p><a name="Changed"></a></p>
#3797 Anchors changes are not saved Martin Kou Bug Normal CKEditor 3.0 General
Description
  1. Load the following HTML:
<p>AAA <a name="Test"></a> BBB</p>
  1. Right click the anchor and select "Edit Anchor".
  1. Change the name to "Changed".

Nothing will be changed in the source view.

#3798 When the name of a textarea has square brackets, there are many errors. Bug Normal General
Description

<textarea name="value[key]"></textarea>

This will produce errors (in IE 8 maybe others), although it seems to replace the correct element.

#3799 Text direction button for FCKeditor Mediawiki extension New Feature Normal Project : MediaWiki+FCKeditor
Description

Hi I've searched all over the web but found nothing useful for this issue. I'm an Iranian and I've setup a Mediawiki for my firm's documentation stuff. It's naturally in Persian but since we deal with computers, some stuff have to be in English. So while most of the stuff are in Persian (and thus RTL), some are English (and naturally LTR). I was hoping you could add a text direction button swap or something like that. It's a real hassle, having to edit the wikitext and add the <DIV> tags manually. This would help all the right to left languages such as Hebrew and Arabic as well. Thanks in advance.

#3800 Color button issue on 3724 Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

Exception on subsequent usages of color button in Ajax sample.

After extracting the whole 3724 trunk and building it with the releaser:

Steps:

  1. Open Ajax sample
  2. Add text and use Font Color on the text.
  3. Destroy Editor.
  4. Repeat steps 2 & 3 twice.

Result:

element has no properties
setState()(2)plugin.js (line 191)
onHide()()plugin.js (line 134)
hide()()plugin.js (line 269)
showBlock()("cke_241")plugin.js (line 221)
showBlock()("cke_241", Object $=a#cke_241.cke_off type=1, 4, undefined, undefined)plugin.js (line 104)
clickFn()(Object _=Object elementMode=2 element=Object name=editor3)plugin.js (line 39)
execute()()plugin.js (line 89)
(?)()()tools.js (line 487)
fn()(206)tools.js (line 494)
onclick(click clientX=0, clientY=0)sample.h...1Ow%3D%3D (line 2)
[Break on this error] element.setState( state );
#3801 IE: Comments at the start of the document get lost Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

When loading the following HTML in IE, the comments get lost:

<!-- Test -->
<p>Contents</p>
#3802 SCAYT plugin causes IE6 to hang with 100% CPU usage. Frederico Caldeira Knabben Bug Normal CKEditor 3.0 UI : Spell Checker
Description

To reproduce:

  1. Enable SCAYT in IE6.
  2. Type anything in the editing area - with a purposefully misspelled word to check for the plugin's effectiveness.
  3. Wait a few seconds.
  4. Now your IE6 freezes up with 100% CPU usage.
  5. If it didn't freeze up in step 4, wait for your misspelled word to get highlighted, and right click on it - it should freeze up here.

Screencast: http://screencast.com/t/WAwTDfj9R

#3803 [IE] context menu position wrong for long document Bug Normal CKEditor 3.0 UI : Context Menu
Description

Reproducing Procedures

  1. Open the attached sample page in IE;
  2. Scroll the viewport to document end;
  3. Right click to show up context menu;
    • Expected Result: Context menu
    • Actual Result: Context menu is not align correctly in view port.
#3804 [IE] context menu position wrong for long document Martin Kou Bug Normal CKEditor 3.0 UI : Context Menu
Description

Reproducing Procedures

  1. Open the attached sample page in IE;
  2. Scroll the viewport to document end;
  3. Right click to show up context menu;
    • Expected Result: Context menu show up at the position where mouse click happened.
    • Actual Result: Context menu is not align correctly in view port.
#3805 The SCAYT plugin is disabled in IE Tobiasz Cudnik Bug Normal CKEditor 3.0 UI : Spell Checker
Description

Because of #3802, we've been forced to disable the SCAYT plugin in IE. We should instead fix an re-enable it.

#3806 Form dialogs stop working after modifying a form element. Martin Kou Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Create a default text field.
  2. Select the created text field and edit it by opening the text field dialog again.
  3. Change any parameter in the text field dialog, e.g. change size to 80. Press OK.
  4. Now try to create another default text field.
  5. It doesn't work.
#3807 [IE]Block style broken when cursor on front of text Garry Yao Bug Normal CKEditor 3.1 Core : Styles
Description

Reproducing Procedures

  1. Open the replace by class example page in IE;
  2. Load eidtor with the following content and selection;
    <p>paragraph</p>
    ^text
    
  3. Click on any block style, e.g. 'Numbered List';
    • Actual Result:
      <ol>
      	<li>
      		paragraph</li>
      </ol>
      ^text
      
#3808 [IE8] UI Color Picker dialog size in example page Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

The color picker dialog is too small to display the whole content

#3809 IE: Source button shows text pointer Tobiasz Cudnik Bug Normal CKEditor 3.0 UI : Toolbar
Description

In IE, the text mouse pointer shows when rolling over the Source text of the source button. There should not be pointer change with it.

#3810 IE: Template throws error Garry Yao Bug Normal CKEditor 3.0 General
Description

With IE, a js error is thrown when using the Template button, after selecting one of the templates.

#3813 Unlink result in fragmental <a> Bug Normal CKEditor 3.0 Core : Styles
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following selection;
    <p>
    	<strong>bo[ld</strong> and lin]k</p>
    
  3. Open link dialog to add a link;
  4. Make a new collapsed selection as following and click 'Unlink';
    <p>
    	<strong>bo<a href="http://example.com">ld</a></strong><a href="http://example.com"> and ^lin</a>k</p>
    
  • Actual Result:
    <p>
    	<strong>bo<a href="http://example.com">ld</a></strong> and link</p>
    
  • Expected Result:
    <p>
    	<strong>bold</strong> and link</p>
    
#3814 Fragmented link selection and link dialog error Bug Normal CKEditor 3.0 General
Description
  1. Use following content
    <p>
    	fo^o <a href="">b^ar</a>.</p>
    
  2. Open link dialog
  3. JS Error is thrown

Reproduced in FF3. Couldn't reproduce in webkit (chromium linux).

#3815 Form dialog is giving out wrong attribute names Martin Kou Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Add a form to the editor with form dialog, choose the encoding as "multipart/form-data".
  2. Switch to Source mode.
  3. You'll see the form tag added as follow:
    <form action="test.php" encoding="multipart/form-data" method="get" name="testForm">
    	&nbsp;</form>
    

The encoding attribute should be "enctype".

#3816 QuickUpload doesn't work Bug Normal General
Description

After upgrade to FCKEditor 2.6.4 QuickUpload feature became unusable.

I try to upload new image. I choose what file to upload, press button 'send file to server'. And then I see attached screenshot for a very long time without any result.

Then I tried to test server part of uploading feature and used /editor/filemanager/connectors/uploadtest.html page for testing purpose. Uploading from this page was successful.

#3817 fckeditor crashes when loading page with script Bug Normal General
Description

I don't think the problem is related to the editor itself , but more likely by how IE6 handles scripts.

When creating an fckeditor instance , as following :

var oFCKeditor = new FCKeditor( 'FCKTEXT' ) ; oFCKeditor.BasePath = 'script/fckeditor/' ; oFCKeditor.Value = 'test<br/>test<script></script>test2' ; oFCKeditor.Create();

If i run this , the editor crashes ( no fckeditor box is shown ) . It does show the following text :

test2' ; oFCKeditor.Create();

So , me guess is that , when IE6 encounters the a script block , it tries to execute it , regardless of whether it is inside quotes or not.

#3818 Last color (white) is showing in non-square box when "FCKConfig.EnableMoreFontColors = false " Martin Kou Bug Normal FCKeditor 2.6.5 General
Description

Changes are made in fckconfig.js to hide the More Color options in the Text Color or Background Color as shown below

FCKConfig.EnableMoreFontColors = false ; (Default is true)

After this change the color selection panel / palette shows a incorrect shape for the white color. The last color on the bottommost row. Instead of sqaure, it shows in a rectangle and the overall border also appears broken.

Browser : Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11

OS : Windows XP Professional, version 2002, Service Pack 2

#3819 FF2 cursor issue when using combo features Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Open sample
  2. Add text
  3. Ensure cursor is at the end of a line of text
  4. Use font size combo to select a different font size

Results:

Cursor is no longer at the end of the line of text. It appears as if the cursor has "disappeared". When a user uses the mouse to position the cursor into the same location, the selection from the Font Size combo is ignored.

#3820 Strange bullet/list problem Garry Yao Bug Normal CKEditor 3.0 General
Description

Problem occurs when a line of text is below a bullet/number list:

<ul>
	<li>
		bullet line 1</li>
	<li>
		bullet line 2</li>
</ul>
<p>
	Second line</p>

Select the line at the bottom "Second line" and make it a bullet item using the toolbar option.

Result:

<ul>
	<li>
		Second line</li>
	<li>
		bullet line 1</li>
	<li>
		bullet line 2</li>
</ul>

The item is appended to the top of the list. If it is added to the list it should be to the bottom.

#3822 CKeditor 3.x - IE7 and IE8 displaying text box too low Bug Normal UI : Floating Panel
Description

I'm using the replacebyclass method which seems to render the editor correctly in every browser except IE (have tried Safari, FF and Chrome). Within IE, the actual edit box (where you can type) is much lower in the window than it should be. In non-IE browsers you can start typing directly after the toolbar, which makes sense.

Here's an example:

#3823 FCKeditor resource browser failed when there is folder name with '&' character. Bug Normal File Browser
Description

One of our customers stumbled into this problem when one of his author created a subfolder with name "Upload images - P&P" under the CORPORATE_USER parent directory and placed images into it in the resource directory. After it, all the authors can no longer use the Fckeditor resource browser to access the CORPORATE_USER parent directory. It will get the "server didn't send back a proper XML response. Please contact your system administrator... <with the Request URL and Response text follows>"

The simple woraround is to remove the "&" character from the subfolder name.

Simple replication steps: 1) Create a subfolder under the resource folder name with "&" character say like OOTB default resource location: \CORPORATE_USER\CORP_TS_AGENT\Upload images - P&P 2) bring up the Fckeditor, edit a doc with RichText field that has the image insert button enabled. Click the image insert button to launch the Fckeditor resource browser to navigate down to the CORPORATE_USER\CORP_TS_AGENT subfolder ("Upload images - P&P" folder parent) ==> you will get the "server didn't send back a proper XML response. Please contact your system administrator... <with the Request URL and Response text follows>"

#3824 Uploading to the library directory does not confirm file overwrite Bug Normal File Browser
Description

Rich Text Editor Upload Images does not warn of existing file with same name and overwrites it causing data loss. Any prior articles that were using the prior image now have the new image instead of the old one. Not only does the RTE not prevent this from happening, it doesn't even warn the user that another file it out there with the same name.

Issue description from customer: When users upload images, there does not appear to be any control over the filenames. Also, there is no control/tracking of what attachment is being used by what article, which makes the issue potentially more risky because files will pile up over time. If there is a file in the attachment directories with a given filename, and somebody uploads a file with the same name, there is no warning or restriction, the newly uploaded file simply overwrites the existing file. Now that filenames are a free-for-all, I think it is highly likely that we will encounter this issue going forward.

#3825 JS error when opening spellingcheck. Tobiasz Cudnik Bug Normal CKEditor 3.0 UI : Spell Checker
Description

On http://ckeditor.com/ckeditor/3.0rc/_samples/ui_languages.html, when clicking on the spellingcheck button (abc), I get a javascript error on Firefox 3.0.11

window.opener is null tryLoad()tmpFrameset.html (line 30) onload(load )kWyyDmfg...phg%3D%3D (line 2) [Break on this error] var oParams = window.opener.oldFramesetPageParams ;

#3826 Provide a way to remove current block in entermode=br New Feature Normal Core : Styles
Description

Now if we have the following content:

line1
<br />
<div>
	line2<br />
	line3<br />
</div>
line4

It's not possible to 'free' line2 and line3 outside of the wrapping div in wysiwyg way.
One proposal is introduce a new Format/Style named 'Body Text'

which remove the block style from selection.

#3827 Write CHANGES.html for change after public RC. Martin Kou Task Normal CKEditor 3.0 General
Description

Need to write down all changes to the CKEditor code after public RC.

#3828 Paste from Word - bullets not reproduced Garry Yao New Feature Normal CKEditor 3.1 Plugin : Paste from Word
Description

When using Paste from Word dialog to paste a bullet list with indented bullet items the list is not preserved correctly. It appears that that sub lists are actually created as separate lists.

Use attached sample Word document to reproduce.

#3829 Links do not get deleted correctly Garry Yao Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Open sample
  2. Add a word
  3. Select the word and create a link from it using the link dialog
  4. Goto source to see the link is created and return to RT mode
  5. Select the new link and delete it.
  6. Goto source again, see that that label of the link is gone but the <a> is still there.

Expected result: After deleting the link the <a> should also be deleted.

#3830 Multi-cell selection does not work Garry Yao Bug Normal CKEditor 3.0 General
Description

When selecting a cell range in a table, the Cell Properties dialog should modify the properties of all cells in the range. Currently it only does for one cell.

#3831 Cannot remove contextmenu from plugins Artur Formella Bug Normal CKEditor 3.0 General
Description

Attempting to create a new config.js file with a command such as:

config.removePlugins = 'contextmenu';

...causes the WYSIWYG to not load. I tested a few more plugins and they caused the same issue to occur (tho, equally, others don't cause this issue to occur)

Windows 2003 Server using the "Replace by Code" method - if that makes a difference.

#3832 IE8 Can't always click in the editor and give focus Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

If you try to click in the editor to get an editing caret in IE8 doesn't work unless you click directly on existing HTML content.

So for example w/ a blank editor you have to click on the 1st line where <p></p> is. Clicking below it in the editing rectangle will not place the cursor in the editor.

#3833 Fixing CKEDITOR.dom.element test case Garry Yao Bug Normal CKEditor 3.0 QA
Description

This's derived from #3693, where we don't suppose to normalize style text in core codes, so it's a matter of testing framework now.
We could it as a feature in CKEDITOR.test.

#3834 Context menu on table caption incorrect Tobiasz Cudnik Bug Normal CKEditor 3.0 UI : Context Menu
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with selection;
       <table>
    	<caption>
    		cap^tion</caption>
    	<tbody>
    		<tr>
    			<td>cell</td>
    		</tr>
    	</tbody>
       </table>
    
  3. Right click to open context menu,
    • Exptected Result: 'Cell' menu item should be disabled.
    • Actual Result: It's possible to select 'Cell' to open sub menu.
#3835 element path not refreshed on 'newpage' Garry Yao Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Click on 'New Page' button to clear all content;
    • Exptected Result: Element path show nothing;
    • Actual Result: Element path is still showing the old selection path.
#3836 Remove list broken with enterMode = BR Garry Yao Bug Normal CKEditor 3.0 Core : Lists
Description

Originally reported by Martin, this related to #3773, but not a DUP.

  1. Open the replace by code example page with enterMode = BR;
  2. Make the content and selection as below:
    line1
    <ul><li>[item1</li><li>item2]</li></ul>
    line2
    
  3. Click on 'Bullet List' to remove list;
  • Expected Result:
    line1<br />
    item1<br />
    item2<br />
    line2
    
  • Actual Result:
    line1item1item2line2
    
#3837 CKEditor 3.0 Beta 2 - Brazilian Portuguese Language File Frederico Caldeira Knabben New Feature Normal CKEditor 3.0 UI : Language
Description

Hi,

I translated the language file for CKEditor 3.0 Beta 2 to Brazilian Portuguese. The file is attached.

I hope it to be usefull!

Thanks,

Thomas Eusebio Vieira thom.82 (at) hotmail.com

#3838 Wrap text around graphics New Feature Normal General
Description

We’ve purchased SwoopoClone, and are setting up an online auction. SwoopoClone uses your text editor for descriptions. It is very user friendly! I would like the option of wrapping text tightly against images, so that an auction member can view a picture of the item being auctioned as they read a more detailed description than offered on the main page. Is this possible?

Julie Field getstuff@…

#3839 SCAYT plug-in update Garry Yao Bug Normal CKEditor 3.0 UI : Spell Checker
Description

We have updated SCAYT core and SCAYT plug-in

Some problems were resolved:

#3768 SCAYT setting must not use an object tree #3562 Reload SCAYT before insertElement

There is still open issue in IE with the "new document" and actually we assume with the setData method processing by SCAYT. On "new document" and for example when we try to use WSC (it finish its' work with call to setData) we getting "Permission Denied" error in SCAYT when SCAYT tries to access editable document innerHTML property. At the same time when editor is constructed from the scratch or "source" command is used SCAYT works (i.e. able to access to editable document) without errors.

If you have any thoughts/suggestions on editor behavior on setData vs creating new editable control could you please let us know.

#3840 RTL: Provide RTL versions for icons Bug Normal General
Description

In RTL, many of the editor icons should be different, respecting the RTL reading direction.

Note that not only list icons or the indentation icons must have the RTL version, but also things like the flag used for the anchor button, rows and cells manipulation tools, font color, etc.

#3841 Filter independent of writer Task Normal Core : Output Data
Description

The Problem

The current filter system doesn't respect filter rule priority:
When rule A is specified with priority higher than rule B when adding to filter system, what expected is all rules items of A will be applied before rules from B.
Unfortunatelly, the current system doesn't allow this happen: the current behavior is different, in which it only guarantee the priority of the same rule item, so one rule imposed on the parent node could never come later than it's child's rule.
If now we have

  • a rule entry in A, said, e.g. remove all empty <p>;
  • a rule entry in B, said, e.g. remove empty <a>;

Then there's no way to guarantee both rule's completeness.

The Solution

The reason is due to html filter is tightly binding to writer now, which does not allow it to run rules in multiple times, the rules is applied along with the writing process.
If we isolate the filter system out, it becomes more flexible:

  1. Allow "parsing once, filtering at will", with each filter rule changing the lightweight dom tree structure on the fly;
  2. Allow filter to alter node type easily;
  3. Write the whole document after all filters have applied.
#3842 Merge textnode broke by bookmark Bug Normal Core : Styles
Description

Currently once bookmark is created, broken text node will be forever stay in pieces, which result in a fracted document, have negative impacts on dom walking performance.
For this reason, possible treatment should be done in CKEDITOR.dom.range::moveToBookmark to merge sibling text nodes.

#3843 [IE] Context submenu strongly mispositioned in IE 6 & 7 RTL Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

Context submenu is strongly mispositioned in IE 6 & 7 when in RTL mode. It works well in IE8.

Refer to this screencast.

#3844 Undo does not register all changes in document Garry Yao Bug Normal CKEditor 3.0 General
Description

It would seem that as soon as the editor becomes dirty the undo buffer should reflect the changes that were made to the editor's content.

In some cases, changes to the editor do not trigger an "undo" event.

To reproduce:

  1. Open Ajax sample.
  2. Add text and destroy the editor
  3. Create the editor again, it should have the content added previously.
  4. Add some text to the content without using ENTER.

Result:
Undo is not enabled, and the new change hasn't been registered.

#3846 Google Chrome - No Img properties after inserting Minh Nguyen Bug Normal CKEditor 3.3 General
Description

After inserting an image, image info does not appear in the dialog box.

#3848 Webkit - inputs are too wide Artur Formella Bug Normal CKEditor 3.0 General
Description

The following dialog pages have incorrect width in Webkit:

-Link -> Advanced

-Image-> Image Info

-Image-> Advanced

#3850 [chrome] Combo inline labels are invisible in RTL Tobiasz Cudnik Bug Normal General
Description

Combo inline labels are invisible in RTL.

Reproduced using chromium linux (completely invisible) and Chrome win32 (partially invisible).

Additionally on win32, selected combo option disappears on hover.

Arabic language. Screenshot attached.

#3851 Linux version of jslint is unavailable Bug Normal General
Description

In source's _dev directory there is jslint for win32 and macosx, but linux version is unavailable.

#3853 [FF3] Script error when opening Ajax sample Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

To reproduce open nightly Ajax sample. The following exception is thrown:

Permission denied to get property XULElement.accessibleType
load()()ckeditor.js (line 71)
(?)()()ajax.html (line 6)
[Break on this error] q.on('editingBlockReady',function(){var ....body;I.runtimeStyle.marginBottom='0px';

#3854 Skin loader bug Bug Normal General
Description

Skins are not initialized correctly if they are included in the packed ckeditor.js.

#3855 use unminified _source files for plugins Garry Yao Bug Normal CKEditor 3.1 General
Description

I would like to run CKEditor completely with unminified code, so it is easier to see what is going on and allow for useful debugging with Firebug. This can partially be done by including the javascript file /ckeditor/ckeditor_source.js. However, only the core files are loaded unminified from /ckeditor/_source/core, all other files are loaded minified. E.g. plugin dialog files are minified and loaded from /ckeditor/plugins/ and not from /ckeditor/_source/plugins.

It would be very helpful if the plugin files could be unminified as well and get loaded from /ckeditor/_source/plugins.

I am new to (F)CKEditor, so maybe I am missing something.

P.S. setting the global variable CKEDITOR_BASEPATH to /ckeditor/_source/ results in the core files not being found.

#3856 Pressing the source toolbar button doesn't focus right Tobiasz Cudnik Bug Normal CKEditor 3.1 General
Description

http://ecgdev.com/ajax1/test.html

Actual results in firefox: When I press the edit source button in the toolbar, the blur event is called and the focus event isn't called again until the editor is out of "edit source" mode. On focus the CKEditor should have a blue box around it. On blur it's gone. When clicking on the "edit source" button the blue border is gone after 1 or more clicks (usually one). When it's in "edit source" mode the border doesn't come back no matter where I click in the editor.

Actual results in IE8: The problem is reversed, where the editor's border stays blue and doesn't go away until it's out of edit source mode.

Expected results: The editor should call the focus/blur events in edit source mode so the editor's border is blue when focused, and not blue when not focused.

http://ecgdev.com/ajax1/test.html

#3857 K-Meleon Kama skin problem Bug Normal General
Description

URL: http://ckeditor.com/ckeditor/3.0rc/_samples/skins.html
OS: Windows XP SP 3
Browser: K-Meleon 1.5.3 http://kmeleon.sourceforge.net/

See attachment.

#3858 Toolbars are breaking up in IE with v2 and office2003 skins. Martin Kou Bug Normal CKEditor 3.0 UI : Toolbar
Description

To reproduce:

  1. Set the skin to office2003 or v2 in config.js.
  2. Open replacebyclass.html in IE6 or IE7.
  3. Shrink the window horizontally.
  4. You'll get something like the attached screenshot
#3859 Layout of Flash dialog is wrong in webkit Artur Formella Bug Normal CKEditor 3.0 UI : Dialogs
Description

Layout of Flash dialog is wrong in webkit.

#3860 [Safari] SCAYT not working in Safari Bug Normal CKEditor 3.0 UI : Spell Checker
Description

After click on SCAYT button, the engine is not loaded in Safari.

#3861 Add CKEditor to SpelChecker Dictionary Task Normal CKEditor 3.0 UI : Spell Checker
Description

Open "replacebyclass" example, click WSC SpellChecker.

WSC suggests to replace "CKEditor" with FCKeditor

Wee need to add CKEditor to SpelChecker Dictionary

#3862 Infinite loop with invalid HTML Garry Yao Bug Normal CKEditor 3.0 Core : Output Data
Description

To reproduce please paste the following HTML in source mode and go back to WYSIWYG.

<span>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
<a><b>test</a></b>
</span>

Result: Infinite loop in all browsers. In FF3 sometimes causes "too much recursion"

#3863 DevTool - autoChangelog Garry Yao New Feature Normal General
Description

It would be great to have a new dev-tool to generate changelog.html. We can avoid conflicts connected with this file.

#3865 .Net Version of FCKeditor Removes Carriage Returns Bug Normal Server : ASP.Net
Description

In this ticket: http://dev.fckeditor.net/ticket/2608

The user was having an issue with Javascript because the FCKeditor was removing carriage returns.

This user was using the Java version but I am using the .Net version so I looked at the .Net source and cannot find the same line:

String encodedValue = escapeXml(value.replaceAll("((\r?\n)+|\t*)", ""));

Or anything similar.

I have found numerous instances of carriage returns being removed in the Javascript files of the FCKeditor so I believe there is something in the Javascript that I must remove to fix this issue.

After reading the ticket mentioned above it appears that this is not actually a bug but by design but is causing issues for me.

It would be nice if there was a setting where you could turn this feature on or off.

#3866 Unable to run properly when js files retrieve from subdomain url Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

Hello,

Regarding ckeditor RC release, I have found an issue that the script Unable to run properly when js files retrieve from subdomain url

I am currently running two sites, both sites have exact same functions and codes.

#1 www.abc.com #2 www1.abc.com

I have done 3 tests

1, when a file within www.abc.com load ckeditor files from https://www.abc.com/fckeditor/ckeditor/ckeditor.js, the script executed correctly.

2, when a file within www1.abc.com load ckeditor files from https://www1.abc.com/fckeditor/ckeditor/ckeditor.js, the script cannot be executed.

3, when a file within www1.abc.com load ckeditor files from https://www.abc.com/fckeditor/ckeditor/ckeditor.js, the script executed correctly.

all the tests can lead a conclusion that JS files retrieved from subdomian site cannot be executed correctly.

Thanks

Zuyi

#3867 bug for fckeditor 2.6.4 at ie7 Bug Normal General
Description

chinese: 在IE7下,如果一个页面很长,FCKEDITOR在页面最底部,需要拉滚动条才能看见。页面顶部有超级链接,当在点击了FCKEDITOR进入编辑状态后,用鼠标移动滚动条(不能使用鼠票滚轮)到最顶部,点击任意超级链接,IE7会自动把焦点定位到FCKEDITOR中。

重现问题的URL: http://showvi.com/fck/_samples/html/sample01.html

english: you can click the url blow to see the problem. http://showvi.com/fck/_samples/html/sample01.html

In IE7, if there is a very long page, and FCK editor is displayed at the bottom of the page (only viewable after moving the scroll bar). When user attempted to click the links on the top of the page when FCK editor is in editing mode, and move the scroll bar to reach the top of the page (do not use the scroll wheel), IE7 will automatically position back to FCK editor.

#3868 [chrome] SCAYT toolbar options are in reversed order Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

SCAYT toolbar options are in reversed order. Whats interesting, other menus aren't. On Safari everything works fine.

Screenshot attached.

#3869 Script with comment Artur Formella Bug Normal CKEditor 3.0 Core : Output Data
Description

Paste the following content in source mode, switch to WYSIWYG and back to source.

	<script language="Javascript" type="text/javascript">
	<!--
	var factive_color = '#F9F9F0';
	var faonmouse_color = '#DEE3E7';
	var faonmouse2_color = '#EFEFEF';
	var cname = 'bb038dfef17';

	//-->
	</script>

Result:

<script language="Javascript" type="text/javascript">
	<!--{cke_protected}%3C!%2D%2D%0A%09var%20factive_color%20%3D%20'%23F9F9F0'%3B%0A%09var%20faonmouse_color%20%3D%20'%23DEE3E7'%3B%0A%09var%20faonmouse2_color%20%3D%20'%23EFEFEF'%3B%0A%09var%20cname%20%3D%20'bb038dfef17'%3B%0A%0A%09%09%2F%2F%2D%2D%3E-->
	</script>

Expected result: No change

#3870 [FF]Press enter after 'New Page' command problem Garry Yao Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Click on 'New Page' command to create a fresh document;
  3. Press 'Enter Key' to create a new paragraph, then start typing.
    • Actual Result: The first paragraph is disappeared.
#3872 Pasted text takes on style at cursor location Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Open nightly Ajax sample
  2. Type some text on a few lines
  3. Apply color to the last line of text and hit ENTER
  4. Select the text in the first line of the document
  5. Paste the selected text at the end of the document

Result: The pasted text takes on the color change instead of keeping its own style.

This applies to other styles also, e.g. bold/italic etc.

#3873 [Safari] Samples don't work in nightly build Bug Normal CKEditor 3.0 General
Description

Using Safari 3.2.2 on Win XP, all samples don't load.

#3874 [Safari] Paste as plain text only pastes one line of multi-line text Garry Yao Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Open nightly Ajax sample
  2. Add some lines of text
  3. Select and copy more than one line of text
  4. Use Paste as Plain Text dialog to paste the selected text

Result: Only the first line is pasted.

Expected: All text should be pasted.

Tested on Safari 3.2.2 on Win XP

#3875 [Safari] Context menu for cells not complete Martin Kou Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Open nightly Ajax sample
  2. Insert a table
  3. Right click in an empty cell

Result: Context menu contains the following options

  • Cut / Copy / Paste
  • Delete Table
  • Table properties

Missing: Cell, Row, Column menus

This also occurs for cells that have content but where the user right clicks outside of the text in the cell.

Safari 3.2.2 on WinXP

#3876 Dialog elements should use explicit labels instead of implicit labels. Martin Kou Bug Normal CKEditor 3.0 Accessibility
Description

Most dialogs elements in CKEditor 3 are using implicit labels at the moment. e.g.

      <label id="68_uiElement" class="cke_dialog_ui_checkbox">
             <input class="cke_dialog_ui_checkbox_input"
 id="67_uiElement"
 type="checkbox" />
                   Match whole word
       </label>

Checkpoint 12.4 of the WCAG 1.0 standard recommends explicit labels to be used instead.

#3877 iframe in dialogs are missing titles. Martin Kou Bug Normal CKEditor 3.0 Accessibility
Description

The HTML source of file input iframes in link, image and flash dialogs read like this:

<iframe allowtransparency="0" class="cke_dialog_ui_input_file"
id="241_fileInput" src="javascript:void(0)" frameborder="0"></iframe>

Checkpoint 12.1 of the WCAG 1.0 standard recommends that iframes should have titles.

#3878 Image pop-up have scrollbars Frederico Caldeira Knabben New Feature Normal CKEditor 3.0 General
Description

Not all content fits to window of image pop-up. It happens in russian language.

I think, you must dynamically determine window desired size after all content are rendered.

#3879 [webkit] Color button panel incorrect size on first open Tobiasz Cudnik Bug Normal CKEditor 3.0 UI : Toolbar
Description

Reproducing Procedures

  1. Open the replace by class example page with Safari;
  2. Click on 'Font Color' button to open panel;
    • Actual Result: The panel size is shrinked.
  3. Click again.
    • Actual Result: Now the panel size is correct.
#3880 Typo in fckdomrange_ie.js Martin Kou Bug Normal FCKeditor 2.6.5 General
Description

Line 114 of fckdomrange_ie.js says

        bIsStartMakerAlone = ( forceExpand || !eStartMarker.previousSibling || eStartMarker.previousSibling.nodeName.toLowerCase() == 'br' ) && !eStartMarker.nextSibing ;

Take note of the last property name, "nextSibing" - it's a very subtle error but this property does not exist. It is actually causing the statement after the "&&" sign to be redundant because it always returns true.

This is actually the reason why we have this comment in CKEditor 3's selection plugin:

// The isStartMarkerAlone logic comes from V2. It guarantees that the lines
// will expand and that the cursor will be blinking on the right place.
// Actually, we are using this flag just to avoid using this hack in all
// situations, but just on those needed.
                
// But, in V3, somehow it is not interested on working whe hitting SHIFT+ENTER
// inside text. So, let's jsut leave the hack happen always.

// I'm still leaving the code here just in case. We may find some other IE
// weirdness and uncommenting this stuff may be useful.

The isStartMarkerAlone flag doesn't work in v3 because the ported logic doesn't have that typo.

The solution to this is to fix remove the wrong "nextSibing" condition from the line and also fix the "bIsStartMakerAlone" name typo - this one doesn't have any effect on logical correctness but is still spelled wrong.

#3881 More Colors Garry Yao New Feature Normal CKEditor 3.1 General
Description

Hi there!

By setting config.colorButton_enableMore = true; in color and background-color tools appears the button to choose more colors but anything happens.

#3882 pasteFromWordRemoveStyle config key ignored Artur Formella Bug Normal CKEditor 3.0 General
Description

A default value of false is set _source/plugins/pastefromword/plugin.js for CKEDITOR.config.pasteFromWordRemoveStyle, but this config key is not used anywhere. I am attaching a simple patch to cause this key to set the default value for the "Remove Styles" checkbox in the Paste from Word dialog.

Keep up the great work!

#3883 [FF2] Styles do not break at cursor when toggled Garry Yao Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Open nightly Ajax sample
  2. Begin typing text
  3. Use one of bold/italic/underline etc and continue typing
  4. Toggle the style in (3)

Result: The style is undone for the whole text added in (3).

Expected: The style should break where the cursor is.

Reproduced on FF2. Seems to work in FF3.

#3884 Empty href attribute values are created twice Garry Yao Bug Normal CKEditor 3.0 General
Description

To reproduce:

  1. Open nightly sample
  2. Go to source and add a link with one empty href attribute
    <a href="" name="myLink">The link</a> 
    

Result:
When going back to RT mode and then back to source, a second href attribute is added. This breaks the XML rule of one attribute name per element.

<a href="" href="" name="myLink">The link</a> 
#3885 Lists cannot be removed from empty document in BR mode. Bug Normal CKEditor 3.0 Core : Lists
Description

To reproduce:

  1. Open replacebyclass.html in Firefox.
  2. Press Ctrl-A and Delete (or Meta-A and Backspace in Mac) to remove all contents.
  3. Create a list.
  4. Remove the list.
  5. The list cannot be removed.

This bug may be related to #3782.

#3886 [Firefox] Can not edit on local server Tobiasz Cudnik Bug Normal CKEditor 3.0 General
Description

When ckeditor runs from local server, it's unable to edit text. When you increase latency, it works correctly.

Nightly build 3800 and newer.

#3887 Create list command leaking into the rest of the document. Martin Kou Bug Normal CKEditor 3.0 Core : Lists
Description

The symptom of this bug seems similar to #3780, but so far I've found it to be caused by the domiterator and thus it is a actually very different beast.

To reproduce:

  1. Open replacebyclass.html in Firefox.
  2. Create a default table.
  3. Press Shift-Enter in any of the table cells.
  4. Press up to move the caret back to the beginning of the table cell.
  5. You'll see the list command has leaked into all table cells that comes after the currently selected one, and then also to the rest of the document.

This bug was discovered while working on #3782.

#3888 Lithuanian full translation New Feature Normal UI : Language
Description

I have leaved comment MISSING where i translated.

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