Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (6501 - 6600 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#7068 Update German language file Task Normal UI : Language
Description

German language patch file with 100% completeness attached.

#7070 Extra line break added to the list item when applying a style Garry Yao Bug Normal CKEditor 3.5.1 General
Description

Use the following selection:

<ul>
	<li>
		aaa [bbb</li>
	<li>
		ccc] ddd</li>
</ul>

and apply bold, italic, underline, font color etc.

Result:

<ul>
	<li>
		aaa <u><em><strong>[bbb</strong></em></u><br />
		<br />
		<br />
		&nbsp;</li>
	<li>
		<u><em><strong>ccc]</strong></em></u> ddd</li>
</ul>

Caused by [6373].

#7073 Image dialog should not allow zero for width and height fields Sa'ar Zac Elias Bug Normal CKEditor 3.5.3 General
Description

Image dialog allows zero to be entered for image width and height. When zero is entered the image is not visible and it is difficult to select and edit the image's properties.

The Image dialog also allows zero to be entered for Horizontal Space, Vertical Space and Border. A value of zero does not cause a visual effect, but an inline style is applied. The inline style should not be applied if it has no effect.

Either validation should not allow a value of zero, or zero can be allowed but it results in no inline style being applied.

Note: Microsoft Word does not allow a value of zero for image width and height.

#7074 [Firefox, enterBr] Setting inline style over fully selected document with table ruins the table Garry Yao Bug Normal CKEditor 3.5.1 Core : Styles
Description
  • Open editor with enterMode = BR.
  • Click "new page".
  • Insert a table, fill in text in each cell.
  • Hit CTRL+A and apply "bold" style.

Expected:

<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
	<tbody>
		<tr>
			<td>
				<strong>a</strong></td>
			<td>
				<strong>b</strong></td>
		</tr>
		<tr>
			<td>
				<strong>c</strong></td>
			<td>
				<strong>d</strong></td>
		</tr>
		<tr>
			<td>
				<strong>e</strong></td>
			<td>
				<strong>f</strong></td>
		</tr>
	</tbody>
</table>

Result:

<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
	<tbody>
		<tr>
			<td>
				<strong>a</strong></td>
			<td>
				<strong>b</strong></td>
		</tr>
		<tr>
			<td>
				<strong>c</strong></td>
			<td>
				<strong>d</strong></td>
		</tr>
		<tr>
			<td>
				<strong>e</strong></td>
			<td>
				&nbsp;</td>
		</tr>
	</tbody>
</table>
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
	<tbody>
		<tr>
			<td>
				<strong>f</strong></td>
		</tr>
	</tbody>
</table>

Regression of [6275].

#7075 [enterBr] change text direction in one line out of multiple Garry Yao Bug Normal CKEditor 3.5.1 Core : BiDi
Description

There's another case of #6610 that fails:

<p>
line1^
<br />
line2
</p>

Apply "RTL" on the above selection affects the entire paragraph in enterMode BR.

#7076 [Firefox, enterBr] Undo failure Garry Yao Bug Normal CKEditor 3.5.1 Core : Undo & Redo
Description
  • Open a sample with enterMode = BR.
  • Click on the text.
  • Click "RTL".
  • Click on "undo" (or CTRL+Z).

Note that the text remains RTL.

#7081 [IE7] Multiple cell selection break with tableresize plugin Garry Yao Bug Normal CKEditor 3.5.1 Core : Selection
Description
  1. Load editor with "tableresize" in IE7;
  2. Insert a default table;
  3. Selecting multiple cells across columns with mouse;
    • Once mouse over column pillar, selection is lost.
#7082 Demo page in quirks Bug Normal General
Description

Demo page (/demo) looks like totally messed up in IE quirks, and a noticeable issue: once open context menu with right click, there's a blanking area added below the cursor position.

#7083 Resizing a column makes an empty table invisible Garry Yao Bug Normal CKEditor 3.5.1 General
Description

In IE7, enable the tableresize plugin, insert the default table. Resize the column using the resize grippie. Result: the table is now much smaller and it is impossible to type inside cells.

#7084 SCAYT options menu is empty / incorrect work of "scayt_uiTabs" config param for multiple CKEditor instances Bug Normal CKEditor 3.5.3 UI : Spell Checker
Description

Bug 1. "SCAYT options menu is empty for multiple CKEditor instances"

Steps to reproduce:

  1. Open "replace by code" sample.
  2. Start SCAYT for both of editors.
  3. Open SCAYT options menu for bothe of editors.

Expected result:
Options, Languages, Dictionaries, About Us tabs have content for both editors.

Actual result:
Options, Languages, Dictionaries, About Us tabs have content for only one of the editors.


Bug 2. "Incorrect work of "scayt_uiTabs" config param for multiple CKEditor instances"

Steps to reproduce:

  1. Open code of "replace by code" sample.
  2. For first editor set
    CKEDITOR.replace( 'editor1', { scayt_uiTabs: '1,0,1' });  
    


For second editor set

CKEDITOR.replace( 'editor2', { scayt_uiTabs: '0,0,0' });  


  1. Open page and start SCAYT for both editors

Expected result:
scayt_uiTabs param from second editor doesn't affect menu of first editor

Actual result:
All options in first editor are not active. When "About us" tab is opened and than "Cancel" is clicked, an error is shown: "document.forms.optionsbar is undefined [Break On This Error] return document.forms.optionsbaroptions?; options.js (line 27)"

#7085 Defaults sking are "fugly" (here is better) New Feature Normal General
Description

I'm being straight here so don't get upset.

It is not surprise to anyone that the default skins are old fashioned and needs upgrade.

Here is a good skin by Chris Herbert, not fully featured, but with good care it would be thousand times better.

#7087 Firefox: Unable to escape from the link inside of a list or a table Garry Yao Bug Normal CKEditor 3.5.1 General
Description

Inserting a link into a list in FF does not work as expected. Same problem inside of a table cell.

  • clear all contents
  • press unordered list button
  • type some text
  • insert a link
  • press "End" key OR click with a mouse at the end of a link and start typing
  • result: we have an extra line break in the source and we're still inside of a link while typing
#7088 Special Character dialog causes bug during for next CKEditor instances Sa'ar Zac Elias Bug Normal CKEditor 3.5.3 General
Description
  1. Open sample HTML page with CKEditor (use attachment "api-test-adding-rte-at-runtime.html")
  2. Open Special Character dialog (omega icon)
  3. Close the dialog
  4. Press button "ADD NEXT" to create next CKEditor instance in page
  5. Exception raises (IE8), see attachment; CKEditor instance is not created at all (Firefox 3.6.13)
#7092 Nested inline styling Garry Yao Bug Normal CKEditor 3.5.3 Core : Styles
Description
  1. Load the following in the source view (important to be in source view):
<p>
	<strong>Test</strong></p>
  1. Back to wysiwyg, put the caret at the end of the line with mouse click.
  1. Type anything, like "aaa".
  1. Click the Bold button.

Several strange things happen:

  • The elements path will show a nested <strong>.
  • If you continue typing the text will be bold.
  • Even if the text is bold, the toolbar button is not "on" (blue).

Introduced with the 3.3.2. Works well with the 3.3.1.

Confirmed with FF at least.

#7093 ¿Cómo trabajo con los eventos javascript de un objeto input escrito dentro del documento de una instancia de FCKeditor? New Feature Normal Server : Java
Description

Me pueden ayudar por favor, por favor,

Necesito de urgencia por favor, trabajar con los eventos onclick ya sea de un input de tipo button o un label, etc.... pero estos objetos están dentro de la instancia del FCKeditor, eh buscado una solucion y lo que ahora puedo es llamar desde javascript a la instancia de FCKeditor normalmente pero ademas puedo ya trabajar con los objetos independientemente,., pero lo que necesito de urgenci es trabajar con un evento OnClick, esque ya cuando el usuario modifica su documento le da estilos etc etc etc, pero ahi tengo dentro del documento varios botones que al hacer clic quiero que hagan una acción por otro lado en mozilla firefox y su plugin Firebug puede observar que mi onclick se transforma en onclickprotecteddataatt o algo asi el caso es que me parece que se encapsula y por ello no le hace caso a nada de eventos que yo haga en objetos que vayan dentro del documento.... ayudenme porfa!!!

#7098 Creating an element over a selection that starts at text nodes throws an error Sa'ar Zac Elias Bug Normal CKEditor 3.5.1 General
Description

Using:

<p>
	t[ext<a href="http://ckeditor.com/">lin]k</a>.</p>

Create an element (hr for example).

JS error is thrown.
Regression of [6369].

#7099 Toolbar's "Insert Special Character" Option Issue Bug Normal General
Description

Please see the attached word document that contains the detail step to reproduce this issue. The snapshots shown in the word document are created using the latest nightly build's "Replace DIV elements on the fly" example.

#7100 JS error when empty list selected and trying to insert element Bug Normal Core : Lists
Description
  • Clear editor contents
  • Paste following code
    <ul>
    	<li>
    		&nbsp;</li>
    	<li>
    		&nbsp;</li>
    </ul>
    
  • in WYSIWYG select all (Ctrl+A)
  • press <hr>

In IE6 JS error is thrown:

line 33
char 214
error getFirst() is null or not an object

Probably connected with #7098
In Firefox - list is cleared, <hr> is inserted (as Expected)

#7102 Divreplace sample sometimes does not work Sa'ar Zac Elias Bug Normal CKEditor 3.5.3 General
Description

In the divreplace sample it is possible to enable CKEditor on a selected block by clicking on the text inside of a div.

Unfortunately, if the default text is formatted or changed into a list or table, then clicking on it does not enable CKEditor.

Steps to reproduce

  • Load divreplace sample
  • Double click on "Part 1" (CKEditor loads fine)
  • Press Ctrl + A, apply Bold, Underline
  • Double click on "Part 2" (CKEditor loads fine)
  • Double click on the text inside of Part 1 (result: CKEditor is not loading)
#7104 Displayed active style is incomplete Bug Normal Core : Styles
Description

When defining these styles:

  {name: 'P', element: 'p'},
  {name: 'P + myclass', element: 'p', attributes: {'class': 'myclass'}}

Selecting P + myclass from styles combo box works as expected. But the displayed active style is "P" instead of "P + myclass".

#7105 Table moved to top of document when list is created on selection. Bug Normal Core : Lists
Description

Test case for numbered list:

  • Create 3 paragraphs
  • Set cursor at the end of second paragraph
  • Insert default table

Table is created between second and third paragraph

  • Select first two paragraphs and convert them to list
  • select paragraph below table and convert it to list item.

I wanted continuous numbers above and below table, so in Source, I deleted/commented first </ol> and second <ol>, so the result should be as follows:


  1. test1
  2. test2
  3.    
       
       
  4. test3

  • Switch back to WYSIWYG: The table is moved to top of document.
    <table border="1" cellpadding="1" cellspacing="1" style="width: 500px">
    	<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>
    <ol>
    	<li>
    		test1</li>
    	<li>
    		test2<!-- </ol> deleted --><!-- <ol> deleted --></li>
    	<li>
    		test3</li>
    </ol>
    

Similar result happens on "Select all" and next Numbered/Bullet list

#7106 [IE] Paste with button leave bookmark nodes Garry Yao Bug Normal Core : Pasting
Description
  1. Load any default sample page;
  2. Copy the word "some" to clipboard with Ctrl-C;
  3. Empty document, click on "Paste" toolbar button;
    • Actual Result: An empty space is added to the end of content:
      <p>
      	some&nbsp;<span style="display: none">&nbsp;</span></p>
      
#7107 resetDirty after setData causes JavaScript error in IE8 Bug Normal General
Description

In IE8 if I call resetDirty directly after setData, a JavaScript error is generated. The error text says: Error: 'this.$.innerHTML' is null or not an object.

Steps: 1) Load the attached test page in IE8. (This simply calls "setData" immediately followed by "resetDirty".) 2) Press the "setData and resetDirty" button.

Browser and OS: IE 8.0.6001.18702 Update Versions: 0 Windows XP Professional SP3

Screenshot(s): Attached

Test case file: Attached

Other: I have found that this happens when getFrameDocument in core/dom/element.js returns when "$.contentWindow.document.body" is still undefined.

#7108 [Opera] Broken content after pasting as plain text and then edited Bug Normal Core : Pasting
Description

In Opera when pasting as plain text the content is a bit messed up when you go and edit it in a specific way.

Steps to reproduce:
1. Open the demo of CKEditor ( http://ckeditor.com/demo ) and clear the content area with "New Page" button
2. Open attached example.txt and copy all the contents (four "paragraphs") to the clipboard
3. Paste the copied text into CKEditor with "Paste as plain text" button
4. Select and then delete the first paragraph (you end up with an empty first paragraph and the remaining three paragraphs)
5. Hit the delete key again to remove the empty paragraph
6. This results in the second and third paragraph merging together creating one paragraph while they should stay separate

If, after initial pasting the text, you switch to the source view and back everything works fine and the issue is not reproducible.

And if you look at the element's path of each paragraph right after initial paste you'll see that every other paragraph has a path of "body p p" while each should have only "body p".

This issue is only with Opera (I checked with latest stable version 11.01) and not present in Chrome, Firefox nor IE. OS is Windows XP.

#7109 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 49 bytes) in /wwwroot/libraries/joomla/registry/registry.php on line 364 Bug Normal General
Description

Hi,

Joomla 1.6.0 latest version. CKeditor (latest version (1.6.rc1), just downloaded jesterday) installed normaly (no errors). When i click save in the settings i get the error as in the title.

CK finder is also installed. But i believe it went wrong before that.

#7110 Double quotes inside internal link error Bug Normal Project : MediaWiki+FCKeditor
Description

Descriptive summary : I have a problem with links to any wiki page with double straight quotes on it.

Steps to reproduce : I've been looking for similar cases, but I haven't found anything on this yet. I have an article with double straight quotation marks in it (Foo article in "foo section"). The problem is that whenever I create a reference for that article (for example) My article? and then I save the page, the part that was between the double quotes disappears, so you will only have My article? Could you please help me on this? Thanks!

Software information :

Windows Seven Ultimate x64 WampServer Version 2.1 - Version Française Apache Version : 2.2.14 PHP Version : 5.2.11 MySQL Version : 5.1.36 MediaWiki Version: 1.16.0

#7112 insertText should not split styles Bug Normal Core : Styles
Description
  • Open the API sample.
  • Place the caret inside the bolden text.
  • Type some text inside the second textarea and click "Insert Text".

Result:

<strong>sam</strong><strong>Test</strong><strong>ple text</strong>

Expected:

<strong>samTestple text</strong>
#7113 Scrolls Back to the top of the page Garry Yao Bug Normal CKEditor 3.5.3 General
Description

Using Chrome and Firefox you will notice when scrolling down without giving the editor focus and clicking on the last bottom line on the page the cursor will scroll back to the top. With the editor loaded with a page. Without giving the editor focus and without clicking, scroll down the editor page till you reach the bottom of the page. Click on the bottom of the page within the editor. After clicking, the page will scroll back to the page. This isn't noticed in IE.

If you first give the editor focus and then scroll to the bottom of the page and click, it will work - the cursor not moving back to the top of the page, so before scrolling give the editor focus?

I tested this and noticed that it occurred on ckEditor demonstration site.

#7114 iframe plugin does not allow percentage widths Sa'ar Zac Elias Bug Normal CKEditor 3.6.1 General
Description

Using Mac Firefox 3.6, CKEditor 3.5.1,

  • add an IFRAME to the textarea with the new iframe plugin / toolbar button.
  • Try to add "100%" as the width.

result:An error message comes back saying only numbers are allowed.
I suspect related to this, if you already have existing text content that contains HTML that includes an iframe with "100%" width, enabling CKEditor on that textarea converts the width to "100". This is a regression from CKEditor 3.4 which left iframes alone (though did not allow selecting them to make changes).

For anyone wishing to disable the iframe plugin until this is fixed, you can add "iframe" to config.removePlugins when calling CKEDITOR.replace(element, config) (see http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.html#.replace and http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.removePlugins).

#7115 ASP.NET Page events not firing. Bug Normal Server : ASP.Net
Description

I am creating one site using asp.net, in one of the page I have implemented ckeditor 3.5 version, there is an event on page "SelectedIndexChanged" for drop down list control, it was working fine before implementing ckeditor, but after its implementation, this event is not firing. For more information, I have used Accordion (Ajax Control) in the page and that drop down list is within that Accordion Control. Any help will be greatly appreciated.

#7116 Image handling New Feature Normal General
Description

You know no matter how fancy you make it or how many features you add, the editor will still be just a pretty face on a crappy editor (Just like TinyMCE) without top quality image handling!

#7117 Copy paste in a table Bug Normal Core : Tables
Description
  • Insert a table.
  • Copy and paste something in the first cell.

The content is put outside the td if you go in the source. When you come back to the wysiwyg, the text is at the top of the document.

#7119 Cursor skipping additional character after contentEditable="false" Bug Normal Core : Read-only
Description

Assumption:

  • arrows, backspace and del should work around contenteditable spans
  • no wrong refactoring should be due to CK


Test:
1) Set contents to

ABCD<span contenteditable="false">EFGH</span>IJKL

Problems:
Firefox: arrows move caret one character off, effectively skipping one extra character; backspace doesn't work on span, del works but removes one extra character

2) Set contents to

ABCD<span contenteditable="false">EF<span contenteditable="true">12</span>GH</span>IJKL

Problems:
Webkit: Placing caret after F or H and hit backspace, or before E or G and press Del, strange refactoring occurs.
IE: cursor can't enter or leave inner span using arrows; probably browser related
Firefox: ditto

(Unrelated yet related): API demo seems broken in Opera, can't set editor contents. Will try later.

I'm not sure if I needed to create separate tickets, seems that since the test case is this specific functionality (have keyboard operations work on contenteditable areas), should all go in one place.

#7121 Scroll reset on first focus in Chrome Bug Normal General
Description

Hi Guys,

A small issue (in English they only say problem to big ones :)) I cam across with both 3.5 and 3.5.1 and (only with Chrome), it seems the scroll is reset to the top if you have a lot of text in the editor and you scroll down and click on the text at the bottom to start editing.

Steps to reproduce:

  1. Load ckEditor with a lot of text in it (make sure it's the first load, for e.g. refresh your page)
  2. Scroll down to the bottom of the ckEditor content
  3. Click the last line in the ckEditor's content to start editing it

Result:
The scroll within the ckEditor will be reset to the top but the cursor will be still placed at the bottom to the right place.

Note:
If you scroll down again (without a page reload) and click any part of the ckEditors content it will work just fine, this is only happening on first focus after ckEditor is loaded.

Tested with Chrome 8.0.552.215, also tested with Opera and Firefox and those both work just fine so it seems it's only Chrome with this problem.

As always thanks for a great editor and having a look into this!

#7122 API demo broken in Opera Bug Normal General
Description

Opera 11.01, CK nightly: Set editor contents or insert html don't work, they always insert the initial html:

<h2>Test</h2><p>This is some <a href="/Test1.html">sample</a> HTML code.</p>
#7123 Is it possible for a non-editable content in CKEditor. New Feature Normal General
Description

Hi,

I was about to use a rich text editor in my website. I have an HTML template loaded in to the editor. This template contains multiple HTML tables in it. Is it possible for me to make a particular 'row' or 'table' content noneditable.

When I searched for similar feature in tinyMCE editor, I could find that they are providing a class named "mceNonEditable".

Is something similar available for CKEditor as well????

Thanks -Ajith

#7124 Czech language file for CKEditor 3.5.1 Sa'ar Zac Elias Task Normal CKEditor 3.5.3 UI : Language
Description

Czech language file for CKEditor 3.5.1

#7125 Single cell resize New Feature Normal Core : Tables
Description

related to #7072
Should we allow to change dimensions of cell (in cell properties dialog), when multiple different cells are selected in one row? Example:

  • table 2x2
  • select first row
  • from context menu select cell properties, set width to 10%

The width of cells is set to 10%, but table is looking like 50/50.

  • similar thing with different height for each cell in row
    1st cell with w10% h22px 2nd cell with w10% h11px
    no cell properties no cell properties

Cell resize could be done perhaps by colspan/rowspan.
Word allows to resize single cell width. Google docs allow only resizing of row/column like our table resize plugin.

#7126 Update French language file Bug Normal CKEditor 3.5.3 UI : Language
Description

French language file with the SCAYT dialog window title shortened to prevent extending the width of the window as badly as it is now (see screenshots SCAYT_fr.png and SCAYT_fr_changed.png taken before and after the change).

Please note that to solve the problem entirely #7071 must be fixed.

#7127 CKEditor should always be tested in languages other than English Task Normal UI : Language
Description

Since many languages are longer than English we should always test the dialog windows and menus of all CKEditor releases in languages other than English.

Some notable examples of languages that are longer than English: German, Polish, French, Spanish.

For reference, check W3 article.

#7128 Open dialog is stored in history Bug Normal General
Description

Go to demo and open a dialog 3 times, you have "Demo | CKEditor" 3 times in browser history. So if you don't want save changes, you have to click 3 times to go back to normal view (without editor) of the page.

#7130 Table column resize hit testing needs to be finer grained Sa'ar Zac Elias Bug Normal CKEditor 3.6.1 General
Description

FF 3.6.13, IE 8

Run CKEditor with the table resize plugin. Add a table. Add some text to the cells. Go to a cell in the second column. Attempt to select the cell content using the mouse. The resize column handle gets in the way. It is impossible to click and get the cursor at the beginning of the cell.

The hit-test area for the resize column handle should be finer grained and that area should not bleed over into the cell area of the column. Maybe a solution would be to make the hit-test area larger to the left of the column separator (bi-di would need to be considered here).

#7131 Copy/Paste Word List should preserve list properties Garry Yao Bug Normal CKEditor 3.5.3 Plugin : Paste from Word
Description

Copy a list formatted as follows from Word. Paste into CKEditor.

A.	Test
B.	Test
C.	Test
        a.	111
        b.	111
        c.	1111
F.	test

The list properties (i.e., number type, start number) are not preserved. The <liststyle> plugin supports these properties and should preserve these on paste.

#7132 Paste toolbar buttons are becoming disabled Garry Yao Bug Normal CKEditor 3.5.3 UI : Toolbar
Description

Steps to reproduce the defect:

  1. Open the Ajax sample.
  2. Click on the paste button in the toolbar to display the paste dialog.
  3. Click on the cancel button.
  4. Repeat steps 2 & 3.

Result: The paste buttons in the toolbar become disabled.

N.B. This is always reproducible in IE7 & IE8 and has been reproduced in FF 3.6.8 but it is not reproducible in other versions of FF e.g. 3.6.6

#7133 The Special Characters language support causes errors loading plugins from 3.5 onwards Bug Normal General
Description

The new support for translating the Special Characters plugin in CKEditor 3.5 causes errors when the editor is loading plugins. An example of this can be seen in the ui_languages sample in CKEditor 3.5, 3.5.1 and the nightly builds.

Steps to reproduce:

  1. Open the ui_languages.html sample.
  2. Open the Special Characters dialog.
  3. Close the dialog by either inserting a character or clicking Cancel.
  4. Change the language selected in the dropdown menu so that the editor is reloaded in a different language.

The following error occurs:

f.indexOf is not a function http://nightly.ckeditor.com/6405/ckeditor.js Line 9

The error occurs during the CKEDITOR.plugins.load() call in editor.js. This function calls CKEDITOR.tools.indexOf( pluginLangs, editor.langCode ) to try to set the language for the editor. However pluginLangs is a map, rather than an array and the indexOf call fails.

This is a high priority issue and we need to be able to patch it in CKEditor 3.5 and 3.5.1

#7134 Table borders Bug Normal General
Description

I installed the CKEditor 1.6rc2 on Joomla 1.6. The editor keeps changing the code: <td style="border-bottom-style: hidden"> to <td style="border-bottom-style: none"> that it doesn't remove the cell border.

I will appriciate if you can fix it.

#7135 SelectionField Properties throwing Error Bug Normal General
Description

Tested in IE7:

In the Selection Field Properties dialog, set the following: Name: TestName Set following option and click on "Add". Text: TestText Value: 1 Then click on "OK". The HTML selection field is added.

Right-click on the selection field in the form and select 'Selection Field Properties'. This throws an error - "ParentNode is null or not an Object".

#7136 Non-breaking space disappears from the end of block Bug Normal General
Description

In browsers other than IE (I've checked Firefox, Safari, Opera), the non-breaking space at the end of block is changed into a space.

May have something to do with https://bugzilla.mozilla.org/show_bug.cgi?id=437044 (reported by Fred while working on #2248)

Steps to reproduce

  • In source mode paste:
    Foo&nbsp;
    
  • Switch to wysiwyg mode
  • Type "Bar"
  • Result: Foo Bar
  • Expected result: Foo&nbsp;Bar

Same issue exists in FCKeditor.

#7137 insertHtml( '&nbsp;') inserts a plain space Bug Normal General
Description

Basically, this is a copy of #2248.

The editor.insertHtml( '&nbsp;') call inserts a plain space in the selection, instead of the proper &nbsp; char.

Confirmed on Firefox, Safari.

#7138 api.html sample in Opera does not work as expected Garry Yao Bug Normal CKEditor 3.5.3 General
Description

Content from textarea is not read correctly in Opera due to a browser bug.

Steps to reproduce

  1. Open _samples/api.html
  2. Change the default HTML in the plain textarea below CKEditor:
    <h2>Test</h2><p>This is some <a href="/Test1.html">sample</a> HTML code.</p>
    

into something else, e.g.:

<p>Foo Bar</p>
  1. Press "insertHtml" button

Looks like the same issue as described here (issue with hidden textarea in Opera): http://stackoverflow.com/questions/3723963/jquery-val-does-not-work-for-textarea-in-opera

#7139 URL encoding for image path is lost in CKEditor 3.5 Bug Normal General
Description

When adding an image using CKEditor, the URL encoding for the space character is lost, though it was properly encoded in the Image properties box.

1) Use the Image Properties' Browse Server button to add an image with a path containing a space, for example with a directory named /New York. 2) After image is chosen, URL field correctly shows that directory in the path as /New%20York 3) Click OK. 4) In the CKEditor area view the source. The new image's path has lost the encoding for the space - it shows as /New York

Using Mac 10.6, error occurs with Firefox and Chrom Using PC, error occurs with IE 8

Note that most browsers don't need the space encoded, I am using CKEditor to create HTML for an email. In some email clients (e.g. Gmail) the image will be broken unless this space is encoded.

#7140 Catalan translation update New Feature Normal CKEditor 3.5.3 UI : Language
Description

I'm attaching and updated Catalan translation file with all the missing strings and some corrections.

#7146 WebKit: pasting block elements results in an extra div Bug Normal Core : Pasting
Description

Confirmed on both Safari and Chrome, on Mac and Windows.

Steps to reproduce

  • start with
    <h1>
             Heading1</h1>
    
  • copy the first line, press enter and paste it below
  • result: heading is surrounded with a div tag.
<h1>
        Heading1</h1>
<p>
        &nbsp;</p>
<div style="font-family: Arial, Verdana, sans-serif; font-size: 12px;
color: rgb(34, 34, 34); background-color: rgb(255, 255, 255); ">
        <h1>
                Heading1</h1>
</div>

The result in Chrome 9.0.597.94 is similar, but note the extra <meta> tag:

<h1>
        Heading1</h1>
<p>
        &nbsp;</p>
<meta charset="utf-8" />
<div style="font-family: Arial, Verdana, sans-serif; font-size: 12px;
color: rgb(34, 34, 34); background-color: rgb(255, 255, 255); ">
        <h1>
                Heading1</h1>
</div>
#7147 Editor not allowing to enter anything (Firefox v 3.5.16 or 3.5.x) Bug Normal General
Description

Please find attached word document containing the steps to reproduce this issue.

Note: This issue is specific to Firefox v 3.5.x and I have found this issue in Firefox v 3.5.16 browser.

#7151 StylesCombo doesn't honor the bodyId configuration option Bug Normal General
Description

The CKEDITOR.config.bodyId isn't applyed to the StylesCombo dialog. For that some styles are not applyed in the dropdown-selectors.

Steps to reproduce: 1) create a stylesheet that contains a style like: #somebodyid h1.red {

color: red;

}

2) in the configuration specify: bodyId: 'somebodyid', contentsCss: 'http://link.to/your/stylesheet'

3) add a stylesset to the editor: CKEDITOR.stylesSet.add( 'my_style', [ {

name : 'h1.red', element : 'h1', attributes : { 'class' : 'red'} } } ]);

With this setup a element like <h1 class="red">hello</h1> will be rendered correctly in the editing area. But if you open then Sylescombo dropdown, the "preview" of the style won't be red as it should be.

#7152 FF selecting lists using keyboard & clicking on Decrease Indent not removing lists Bug Normal General
Description

To reproduce the defect:

  1. Create a Numbered/Bulleted list with RTL language direction.
  1. keep cursor in first list item and select entire list using keyboard shortcut(Ctrl + A)
  1. Click on Decrease Indent icon.

Expected Result:

Numbered/Bulleted list is removed and list items are converted in to paragraphs with RTL Language direction applied.

Actual Result:

Numbered/Bulleted list is not removed, instead it is adding p tags inside each list item and also it is adding an extra empty paragraph at the end of Numbered/Bulleted list.

#7153 Can't dynamically load ckeditor_source.js Garry Yao Bug Normal CKEditor 3.6.2 General
Description

ckeditor_source.js uses document.write() when loading, this causes clearing of window variables when called at the end of a document load.

Proposal is that ckeditor_source.js (and ckeditor_basic_source.js) does something like this instead:

var head = document.getElementsByTagNam('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = CKEDITOR.getUrl('_source/core/loader.js');
head.appendChild(script);
#7154 Add support for a Display Text field to the Link dialog Marek Lewandowski New Feature Normal CKEditor 4.5.11 UI : Dialogs
Description

The current link dialog does not allow users to specify display text for the URL they are inserting. We would like to request support for a Display Text field on the link dialog so that users have this option. This would be consistent with the 'Insert Hyperlink' options in desktop editing programs such as Word, Lotus Symphony etc and has been requested by a lot of users.

#7155 pasteFromWordRemoveFontStyle broken in v3.5.1 Bug Normal Plugin : Paste from Word
Description
  1. Set "pasteFromWordRemoveFontStyle" to false
  2. Open Word and enter some text and apply a color to it.
  3. Copy and paste the text into ckeditor
  4. The message "It was not possible to clean up the pasted data due to an internal error" appears.

From what I can gather, the mere existence of a "style" attribute seems to be what is causing the issue.

This bug does not appear in 3.5.

I have attached a zip with two tests,

/3.5/TEST/3.5-test.html /3.5/TEST/test.doc /3.5.1/TEST/3.5.1-test.html /3.5.1/TEST/test.doc

#7157 IE9 - in Document mode IE9 standards, CKEditor does not run Bug Normal CKEditor 3.5.2 Project : CKPackager
Description

IE9 v 9.0.8080.16413

  • fresh install of IE9, cache cleared
  • go to nightly builds and select any sample

Result:
CKEditor does not load into text areas. If it loads Open console (IE developer tools):

  • set browser mode to IE9
  • set Document mode to IE9 standards

Result, a JS error in console (in Nightly):

SCRIPT1004: Expected ';' 
ckeditor.js, line 14 character 238
SCRIPT5009: 'CKEDITOR' is undefined 
ui_languages.html, line 98 character 6

The {{{SCRIPT1004}} part, occurs in all CKEditor versions

#7158 Image placeholder for inserting an iframe does not use the style attribute Sa'ar Zac Elias Bug Normal CKEditor 3.6.1 UI : Dialogs
Description
  1. Open any sample from the nightly build.
  1. Insert an iframe, specifying a width and height on the General tab and a style on the Advanced tab that sets the width and height properties to different values e.g

General tab: width = 300, height = 500

Advanced tab: style = width: 600px; height: 200px;

Problem: The image placeholder in the editor uses the width and height values from the General tab but if you preview the iframe it uses the width and height set in the style attribute.

The image placeholder should also use the style attribute to give the user an accurate representation of the size of the iframe.

#7159 IE9, BIDI - cannot switch between paragraphs via kursor keys Bug Normal Core : BiDi
Description

IE9, document mode ie8 standards

  • in Source mode, paste following code
    <p dir="rtl">
            1</p>
    <p dir="rtl">
            2</p>
    <p dir="rtl">
            3</p>
    <p dir="rtl">
            4</p>
    <p dir="rtl">
            5</p>
    
  • switch to WYSIWYG
  • select first paragraph
  • using cursor keys, try to jump to next line.

Expected: Cursor is set to next line

Actual: Each RTL paragraph is treated as another "text area"

#7160 Cannot "paste" the form element on top of the page Garry Yao Bug Normal Core : Selection
Description

Related to Ticket 6672 :

Tested the CKEditor 3.5.1 in IE7:

Found that the 'form' did get cut when using 'Cut' icon. But found that I could not use 'Paste' icon or Ctrl+v afterwards to paste the form. The form seems to be lost.

#7161 IE9 Languages sample - create/destroy editor does not work properly Bug Normal CKEditor 3.5.2 General
Description

IE9

  • open Languages sample in Nightly builds
  • switch between languages (list colapsed), using mouse wheel or cursor keys

"result":
Another instance of editor is created sometimes, so instead of one editor, there are more editors created on page

#7162 Link without <span> doesn't respond to single click in non-editable mode Bug Normal General
Description

1.1 Insert <span contenteditable="false"><a href="http://ckeditor.com">Link</a></span>

1.2 Single click the link, nothing happens. (The link should go to http://ckeditor.com, as expected).

2.1 Insert <span contenteditable="false"><a href="http://ckeditor.com"><span>Link</span></a></span>

2.2 Single click the link, the link can go to http://ckeditor.com now.

Links should work in the same way in both cases.

#7163 Lots of language updates for Norwegian (no and nb) Bug Normal CKEditor 3.5.3 UI : Language
Description

Updated language files for Norwegian (no) and Norwegian Bokmal (nb). I've translated all the missing entries, and also fixed a plethora of incorrect translations.

Some of the incorrect translations fixed:

  • Consistent use of "ett" (the number one in English) instead of "et" (a, an in English), common mistake in Norway
  • Incorrect use of the word "nummer" instead of "tall" (both mean "number" in Norwegian, but are used in different contexts)
  • Inconsistent use of words, such as using "bulleted list" and "unsorted list" interchangeably
  • Grammatical errors, typos
  • All color names were updated, some were missing, some were wrong and some weren't capitalized
  • Replaced some words that didn't make sense (such as replacing indent:"nivå" with "innrykk", the former really means "level" and not "indentation")
  • Fixed outright translation errors, such as langCode:"Språkretning" with "Språkkode", the former means "language direction"

I've attached the updated language files and patch files.

#7164 Stack OverFlow at line 29 error in IE6 with 3.5.1 Bug Normal Core : Parser
Description

We have a huge HTML content which when opened in the editor it throws the error saying "Stack overflow @ 29", I have tried this with with 3.4.2 and 3.5.1 as well.

Do let me know if you have a solution for this issue.

Thank you, Ravi.

#7165 Add support for specifying units for width and height on the iframe dialog. New Feature Normal General
Description

When a user inserts an iframe, they can specify a width and height. However they cannot specify whether this width and height is in pixels or a percentage. The iframe dialog always appends px to the values.

The dialog should provide a dropdown menu where the user can select either 'pixel' or 'percent' as the unit to use for these fields. This functinlaity is already available on the Table dialog

#7168 IE9: Ajax sample does not work Garry Yao Bug Normal CKEditor 3.5.2 General
Description

Load _samples/ajax.html in IE9 RC. When destroying the editor, a JavaScript error occurs and there is no way to create the editor again:

SCRIPT70: Permission denied
domobject.js, line206
#7169 IE9: context menu looks bad Bug Normal CKEditor 3.5.2 General
Description

See the screenshot, IE9 RC

#7170 [IE] incorrect cursor position after enter in pre blocks Garry Yao Bug Normal Core : Selection
Description

Open sample, create preformatted block, type any text and press enter (note that cursor blinks at the start of current line. the new typed text will appear on the new line though). Create a few more lines with text. Click opposite one of the lines to put cursor to the end of it and press enter. In some cases the new line will be created but cursor will appear at the start of the next line.

#7171 Double click on an image in non-editable content opens editing dialog Bug Normal CKEditor 3.5.3 General
Description

with a code like

<span contentEditable="false">This sample <img src="source.jpg"></span>

the context menu to edit the image is correctly disabled, but double clicking the image allows to edit it.

#7172 cke basics Task Normal General
Description

which files are required to run a standard ckeditor setup, just replacing the textarea. no plugins. for the sake of file size i would like to reduce the ckeditor folder to its basic components. thanks

#7174 IE9: Cursor path does not load corectly when editor is switched back from source to wysiwyg Garry Yao Bug Normal CKEditor 3.5.2 General
Description

Environment

IE9 Browser mode IE9, document mode IE9 standards CKEditor set to source

TC

  • clear contents
  • insert default table
  • in first row type some text
  • switch to source and back to wysiwyg
  • click on first cell in second column (as on attached screenshot)

Expected

caret position is shown in 'status bar of editor'. Example body blockquote table tbody tr td

Actual

The bottom line in Editor is empty, until next operation is done. User is allowed to make nested blockquotes, which is not possible in other browsers (by repeating two last steps and clicking blockquote button).

<blockquote>
  <blockquote>
    <blockquote>
      <table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
	<tbody>
	  <tr>
		<td>
...
#7176 IE9 - SCAYT enabled, after inserting template, dialog does not close. js error thrown Bug Normal UI : Spell Checker
Description

Environment

IE9 in IE9 mode / Document mode IE9 standards

TC

  • enable SCAYT
  • press "Insert template" button
  • select one of templates

Expected result

Template is added to editor area, dialog is closed.

Actual result

  • template is added to edit area
  • dialog is still visible

in console, errors are thrown:

SCRIPT70: Permission denied 
_base.xd.js, line 3458 character 1
SCRIPT70: Permission denied 
_base.xd.js, line 5624 character 1

When SCAYT is disabled, everything is as expected.

#7177 Finnish translation for rel attribute in the Link dialog Bug Normal CKEditor 3.5.3 UI : Language
Description

Sorry about the missing patch. I don't have checkout of the project at hand.

/trunk/_source/lang/fi.js

Change:

rel                     : 'Relationship', // MISSING 

To:

rel                     : 'Suhde', 
#7178 IE9 RC: right-clicking on a placeholder does not select it Bug Normal CKEditor 3.5.2 General
Description

In IE8 it is enough to right-click on a placeholder to access "Edit Placeholder" menu item.

In IE9 RC one must left-click on the placeholder first to put the cursor inside of it, to be able to see "Edit Placeholder"in the context menu.

to reproduce check _samples/placeholder.html

#7179 Remains of selected table, stay in edit area after inserting form element Garry Yao Bug Normal Core : Selection
Description

Environment

IE9, IE8, Opera11

TC

  • clear editor contents
  • insert default table or template with table
  • select all (ctrl + A or selectall button)
  • insert form or other form element

Expected

Selection is replaced by <form></form> element. It works this way in FF3.x/4, Chrome

Actual

Remnants of selected table stays in Editor area:

<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;">
	<tbody>
		<tr>
		</tr>
	</tbody>
</table>
<form name="te">
	&nbsp;</form>
#7180 [IE9] Small glitch in buttons in RTL in kama Sa'ar Zac Elias Bug Normal CKEditor 3.5.3 UI : Skins
Description

In IE9 RC, using an editor with kama RTL UI, there is a small glitch as for the icon in the "OK" button.

#7181 IE9 RC: RTL toolbars look bad in Office 2003/V2 Garry Yao Bug Normal CKEditor 3.5.2 UI : Skins
Description

In Office2003/V2 skin with RTL UI, icons do not fit well with the toolbar row.

#7182 [IE9] Office2003: Shadows in RTL dialogs may be corrupted Sa'ar Zac Elias Bug Normal CKEditor 3.5.3 UI : Dialogs
Description

IE9 RC, RTL UI, Office 2003
Open the table dialog and wait for a while. After about a second, the dialog shadow will be corrupted.

#7183 Afrikaans translation is awful Bug Normal CKEditor 3.5.3 UI : Language
Description

Hi there,

The current Afrikaans translation (af.js) has a lot of spelling mistakes and is also quite incomplete.

I have redone the whole translation file. Please find it attached as a patch.

Regards, Gert Koning

#7184 Problems Selecting Images that are in a Table in Firefox Bug Normal General
Description

Errors occur when selecting content that is in a table in Firefox.

  1. Click on a image in a table - this does work.
  1. Click off the image, then back on it. Note, the handles are not on the image, they strangely appear elsewhere. If you click on the image a second time, the handles will correctly appear on the image.
  1. Please note, clicking in text area also produces handles, which it should not. This does not occur in IE or Chrome.
  1. These errors do not occur if content is not in a table.

Your attention to this matter is greatly appreciated!

#7185 Image URL broken at output Bug Normal General
Description

I have upgraded to v. 3.5.1 and still have this problem:

When using an image URL in the editor, the url will always be broken on the output page, for example, the image url will be like:

http://www.mysite.com/%22http://www.mysite.com/Images/4.1/theme0/logoFunny250x70.gif/%22

Where do I need to modify code to fix this?

#7187 IE9: Insert template inserts content always at the beginning Bug Normal CKEditor 3.5.2 General
Description

When inserting the template using the Content Templates dialog, content is inserted always at the beginning, current selection is ignored.

Note: insertHtml in the api sample seems to be working fine, looks like another version of #6987. Works fine in 3.5.

#7188 IE9: impossible to move cursor below horizontal line Bug Normal General
Description
  • load the replacebyclass sample (default enterMode)
  • click at the end of line, insert horizontal line
  • click below horizontal line
  • result: cursor jumps to the first line
#7189 IE9: impossible to move cursor below horizontal line Bug Normal General
Description
  • load the replacebyclass sample (default enterMode)
  • click at the end of line, insert horizontal line
  • click below horizontal line
  • result: cursor jumps to the first line
#7190 IE9 - ability to edit text in placeholder, read only area Bug Normal General
Description

Environment

IE9

TC

  • open _samples/placeholder.html
  • click once inside sample placeholder? area
  • try to enter some text

Expected

Placeholder is selected as whole item, It is not possible to enter any text inside it (in editor). Editing is possible inside dialog box.

Actual

It is possible to insert text inside ...? area, without opening dialog box.

#7191 IE9 - Unable to insert anchor Bug Normal General
Description

Environment

IE9

TC

  • Open any sample with anchor plugin enabled ( replacebyclass.html )
  • press insert anchor button
  • in dialog window enter anchor name
  • press OK

Expected

Anchor is inserted at cursor position, dialog window is closed.

Actual

Nothing happens in edit area, dialog window does not close.
In console, error is thrown while OK button is pressed

SCRIPT5022: DOM Exception: INVALID_CHARACTER_ERR (5) 
replacebyclass.html, line 15 character 427
#7192 IE Elements not shown in path bar when we select pre format option with out focus in editor body Sa'ar Zac Elias Bug Normal CKEditor 3.6.1 General
Description

To reproduce the defect:

Open ckeditor, with out focus in editor body select Formatted(pre) option in Paragraph Format drop down list.

Expected Result:

Cursor is in editor body and elements path bar will show body and pre tags.

Actual Result:

Cursor is in editor body and elements path bar is empty.

when we keep focus in editor body and select pre format option cursor shown in editor body elements path bar is not empty but it will not show pre tag in it.

#7193 IE9 - JS error in console while adding new paragraphs before <hr/> Garry Yao Bug Normal General
Description

Environment

IE9

TC

  • clear editor content
  • insert <hr />
  • set cursor at the beginning of paragraph that contains horizontal line - press cursor UP key (little cursor should be blinking at the beginning of line)
  • press enter

Expected result

New paragraph is added before horizontal line

Actual result

New paragraph is added before line, but in console error is thrown:

SCRIPT5007: Unable to get value of the property 'insertBeforeMe': object is null or undefined 
ckeditor.js, line 32 character 214
#7194 test Bug Normal Server : PHP
Description

test

#7195 Source Code Highlight New Feature Normal General
Description

In CKEditor there need selected items highlighted in code mode. for example: i have selected an image in Standard mode in CKeditor, the i clicked on code mode. what i am expecting the selecting image would be highlighted in code mode also just like Dream Weaver or FrontPage. i believe this feature would make the CKEditor more user friendly and more standard.

#7196 IE9 - js error while inserting <form> on selected page-break Garry Yao Bug Normal General
Description

Environment

IE9

TC

  • open Editor sample with form plugins
  • without setting focus to edit area, press twice page-break button
  • select the first page-break in WYSIWYG
  • press form button
  • in opened dialog window, enter text in required fields
  • press OK

Expected result

  • Previously selected page break is changed into <form></form>.
  • dialog window dissappears.

Actual result

  • Selected page break is changed into Form
  • dialog window does not dissappear
  • JS error is shown in console:
    SCRIPT5007: Unable to get value of the property 'lock': object is null or undefined 
    ckeditor.js, line 92 character 2232
    
  • after second hit on OK button, dialog dissappears.
  • editor is back to normal.

It is rather unlikely that a normal user will use the word in a similar way. But well, error happened :)

#7197 div replace <p> issue Bug Normal Core : Output Data
Description

when i edit the content of a div using the div replace option and save the output there is an empty paragraph at the beginning of the text. how do i get rid of this? example:

this is the original text:

<div>
<p>This is an example</p>
</div>

this is the outputted text when i have finished editing

<div>
<p> </p>
<p>This is an example</p>
</div>

The <p> </p> appears when i click to edit it. how do i stop this?

#7198 FCKEditor and WikiEditor New Feature Normal General
Description

Is there any possibility to use the FCKEditor with an other Editor-Extension? As Example: I write a article in our company's wiki with your FCKEditor and then I deactivate the FCKEditor. Now there comes up the default text editor form media wiki. But I want the WikiEditor witch is also an extension.

I hope you can help me;)

#7199 ckeditor does not honour the template.css / theme css properely Bug Normal General
Description

if you take this theme, Joomlart blank template, and its typography page

when you use tinymce all the extra span and classes are presented in the editor itself, ie the dropcaps, listing arrows (li, ul) and various other items. when you use ckeditor non of these get shown until you view the actual article.

i am not 100% sure if it is not loading the template.css but it is not loading some css files. It does appear that the headings h1 h2 etc.. are being loaded.

The page i have given here is the best examples of the fault. works in tinymce but not ckeditor

thanks

shoulders

#7200 [IE] Better RTL block editing Bug Normal General
Description

Right now all block with RTL direction are displayed as control types in IE, which impose a strong lack of usability as it will become isolated with the rest of doc once under editing.

#7201 Cursor moves out of span when applying inline style to collapsed selection Bug Normal General
Description
  1. Go to demo page
  1. Put cursor in an unstyled word
  1. Press Bold button to start bold context.
  1. Type something.

Observe : Typed text is still unstyled. The HTML reveals that the styled element is indeed inserted, so the cursor must have moved out of the styled element.

Google Chrome 9.0.597.102 (Win XP/Mac)

#7202 Double clicking word after inline style is applied, selects only part of the word Bug Normal General
Description
  1. Go to demo page
  1. Put cursor in an unstyled word (which gives a collapsed selection)
  1. Press Bold button
  1. Double click word to select it.

Observe : Only part of the word is selected. Not possible to reselect the whole word by double clicking.

Firefox 3.6.13, Windows XP

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