Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4801 - 4900 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#5086 Long HTML in source mode in IE8 scrolls up when editor loses focus Bug Normal UI : Source View
Description

Steps to reproduce:

  • Use MSIE 8 as your browser; ensure compatibility mode is disabled
  • Visit the latest nightly build (I used http://nightly.ckeditor.com/5000/_samples/replacebyclass.html)
  • View the page source and copy the HTML to your clipboard (any medium-large HTML page will do) then close the source view
  • Click the Source button in the editor instance
  • Paste the contents of the clipboard buffer into the editor pane
  • Scroll to the bottom of the editor. You will now see something similar to the attached file "scrollpos_orig.png"
  • Now click the cursor somewhere outside the editor area, e.g. on the window body.

Expected Behavior:

Editor scroll position does not change (screen appearance remains the same)

Actual Behavior:

Editor scrolls upward an arbitrary amount toward the top of the source document. Repeatedly clicking inside/outside the editor pane scrolls further up the document in most cases. See attached screenshot, "scrollpos_moved.png".

Browser/OS:

Microsoft Internet Explorer 8 (I am using release 8.0.6001.18702) on Windows XP SP2

Notes:

This was previously reported by someone else in defect #4775 (and possibly others), which was marked as invalid. However, both that and this defect have the same root cause, which is a callback executed in the "source" textarea when the blur event is fired. The change that "fixed" #4775 appears to be the removal of manually firing onblur when onmouseout fired, but it did not resolve the core issue.

#5087 TAB button broken in textarea from Paste From Word dialog Bug Normal CKEditor 3.3 General
Description

TAB button broken in textarea from Paste From Word dialog.

Reproduce

  1. Open Paste From Word dialog.
  2. Put focus inside textarea.
  3. Hit TAB to jump out of textarea.

Result: Nothing happens.

Chrome 4.0.249.43, linux, r5016.

#5088 Enumeration via html is destroyed by WYSIWYG-Editor view Bug Normal General
Description

Hello, I'm trying to implement numbered list with more space between the distinct numbers. I use some html commands to achieve the result:

    <ol>  
    <li> First Point</li>  
   <li> Second Point</li>  
    </ol>  
Then there should be some text without enumeration followed by a list which is numbered starting at 3.
<ol start="3">  
    <li> Third Point</li>  
   <li> Fourth Point</li>  
    </ol>

If I enter this code with the Option "Wikitext" enabled and save the site immediately all is right. If I first switch back to the WYSIWYG view the numbering is broken and the second part is starting with 1.

I hope you understand the problem and could help.

Thanks!

#5089 Problems with compressing named anonymous functions Garry Yao Bug Normal CKEditor 3.5.1 Project : CKPackager
Description

When compressing the following code:

function a() {
	return function b(){};
};

it is changed into:

function a(){return function b(){b=;};;};

note that in the final result there is a javascript error: b=;

#5090 Cannot remove border on Image - when link is attached Bug Normal General
Description

In issue #4980 you corrected a problem with the border value of "0" not saving. However, this issue did not correct the problem with a link is added to the image. The problem remains as was reported in issue #5031. However, issue #5031 was dismissed as a duplicate issue. It is not a duplicate. The repair for #4980 did not resolve the problem when links are attached to the image.

#5091 Domain relaxation partially broken in FF Garry Yao Bug Normal CKEditor 3.2 General
Description

Under some conditions, FF is throwing this error:

Permission denied for <http://dev.ckeditor.local:8080> (document.domain has not been set) to get property Window.document from <http://dev.ckeditor.local:8080> (document.domain=<http://ckeditor.local>).

(confirmed in FF 3.5.7).

It seems that this bug has been introduced when fixing #4514. Reverting [4492] removes that particular error.

Steps to reproduce

#5092 CheckAuthentication Bug Normal General
Description

Hi,

in the file config.php, in function CheckAuthentication() I have to rewrite "return false" to "return true" because "return

isset($_SESSIONIsAuthorized?) && $_SESSIONIsAuthorized?;" doesnt work. I bought licence and I know that you don't recomend it, but only "return true" is working. I send you confog.php file and script where I use CKEditor and CKFinder. Thanks, best regards,

Lubomir Licko (www.crscb.cz)

#5095 CKEditor: Safari deletes selected text when browser Edit menu is clicked Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 Core : Pasting
Description
  1. Select text in CKEditor on Safari on a Mac.
  2. Click Safari's Edit menu.

The selected text disappears.

#5096 ForceSimpleAmpersand breaks output writer Garry Yao Bug Normal CKEditor 3.2 Core : Output Data
Description

The ForceSimpleAmpersand param of htmlWriter is buggy and also causing JavaScript error in certain situation, see ticket TC for details.

#5097 Toolbar Collapse/Expand control is not working after defining custom toolbar configuration in Firefox 3.6 and Safari 4.0.4. Bug Normal UI : Toolbar
Description

Toolbar Collapse/Expand control is not working after defining custom toolbar configuration in Firefox 3.6 and Safari 4.0.4. Use the attached configuration file to reproduce the issue.

#5098 [FF] Table collapsed when Text and Table template inserted Garry Yao Bug Normal CKEditor 3.3 General
Description
  1. Open the CK Editor.
  2. Click on Templates Icon.
  3. Select the Text and Table Template.

Observe the the table is collapsed. The table should appear the same as a table produced by the Table dialog with default settings.

#5099 Smiley path configuration property not producing relative emiticon links Garry Yao Bug Normal CKEditor 3.3 General
Description
  1. Update you config.js to include config.smiley_path ='/plugins/sametimeemoticons/images/';
  2. Create an instance of the editor and insert a smiley.
  3. Click the Source button to enter HTML mode

Observe the the image src attribute values are not relative URLs.

Relative URLs were being used in version 3.0.1 when you set smiley_path.

#5100 Context menu items are draggable in Firefox and Safari Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.4 UI : Context Menu
Description

Open the context menu and try to drag any of the items, it will work in Firefox and Safari (I guess that also Chrome). Opera doesn't allow dragging even the content itself, so of course it doesn't have this bug. IE behaves correctly.

The OK and Cancel buttons in the dialogs are also draggable, although they can't be dropped into the content.

#5101 Image Source URL is missing error in chrome/safari Bug Normal General
Description

If you contain a right aligned image in a h1 tag for example, the 'image properties' option is missing when you right click on the image in Google Chrome or Safari 4. This is the code in the editor:

<h1><img align="right" src="http://dev.fckeditor.net/chrome/site/logos.gif" />Test</h1>

In ckeditor, the Image properties is available in the dropdown, but it results in no image showing in the preview in Image Properties and the following error when clicking ok: 'Image source URL is missing'

I am experiencing this problem in FCKEditor 2.6.5 and Ckeditor 3.1

#5102 Redimension New Feature Normal Server : ASP
Description

we have used fckeditor for a few times now.

And we implemented button witch does the image resize. This button would is located on image popup. (we needed it)

If that would be allready included in new version...it would be great.

#5103 textarea name and chrome Bug Normal General
Description

When you put breckets in textarea 'name' attribute - popups doesn't show up (only Chrome). I.ex.: <textarea name="test[test]">

#5104 ColdFusion detection fails for Firefox 3.6 Bug Normal FCKeditor 2.6.6 Server : ColdFusion
Description

The check for Compatible browser in FCKeditor 2.x fails to detect the new datestamp for Firefox 3.6 as reported in http://cksource.com/forums/viewtopic.php?f=5&t=17344

#5106 IE8 Scroll Bar/Cursor Problem Bug Normal General
Description

To replicate:

  1. In IE8, open nightly build demo (specifically 'Replace textareas by class name').
  2. Paste in a lot of text (doesn't seem to matter what, I tried a few tests with different copy). I used a Lorem Ipsum generator and pasted in about 30 paragraphs.
  3. Now make sure the cursor is at the top of the text, and scroll down (using scroll bar) to near the bottom of the text.
  4. Click into the text to attempt to set the cursor position.
  5. You will probably find the cursor jumps back up to the previous position. If not, try again as it doesn't seem to consistently fail, but does so perhaps 9/10 times.

It seems to happen whenever the cursor needs to be set to a position significantly higher or lower then the current cursor position.

This seems specific to IE8 only (using compatibility mode seems to fix it), the version I have is 8.0.7600.16385 (64-bit).

The nightly build I'm testing on now is 5048.

#5107 Empty divs and spans with attributes should not be removed Bug Normal General
Description

We have got some requests from our customers where they wish to create empty divs and spans with a set of attributes.

The editor today removes all divs and spans without a content (nightly build). I think this is great in those cases where divs and spans doesn't contain any attributes. But wouldn't it be better to spare the divs and spans that contains attributes? At least the divs?

The CreateDiv plugin have solved this by adding a non breakable space (&nbsp;). In previous versions this also happens when creating an empty div in source mode, but in the latest nightly build this is changed to removing the div. Anyway, by adding an non breakable space (&nbsp;), you will create an empty line, something that may confuse the author.

I don't think that empty divs or spans with attributes should be removed. Neither should an non breakable space (&nbsp;) be added.

#5108 mousedown event, get index of text New Feature Normal General
Description

When users click (or Right Click) in a text area I need to get the index of the position, the formatting of the position and select the surrounding text with the same formatting.

#5109 Translation CKFinder into dutch New Feature Normal General
Description

I've translated CKFinder into dutch.

#5110 Not able to Cut and Paste bullet item Bug Normal Core : Pasting
Description

Create a bullet list as shown below:

Bullet List

  • Item One
  • Item Two
  • Item Three
  • Item Four

Now select second item in bullet list i.e. "Item Two". Click on Cut button on tool bar to cut the item. You will observe that it cuts only text not the bullet. Now place your cursor at end of content and click on paste button on toolbar. You will observe only text is pasted, not the bullet.

This issue was reproducible in nightly build too with Internet Explorer 8 and Firefox 3.6.

#5111 JAWS not reading tool bar controls properperly while navigating with arrow keys Garry Yao Bug Normal CKEditor 3.3 Accessibility
Description

Press Alt+F10 to focus toolbar. Use Tab and Shift+Tab to navigate through tool bar. You will observe that JAWS is reading all controls properly. Now use arrow key to navigate through toolbar. You will observe that you are not able to navigate and JAWS is not reading the highlighted control properly i.e. if highlighted control is Preview then it is reading it like "P" "R" "E" "V" "I" "E" "W" and not as "Preview".

This issue was reproducible in nightly build too with Internet Explorer 8 and Firefox 3.6.

#5112 CKEditor : Browse server button on the link tab of the image dialogue launches config.filebrowserImageBrowseUrl instead of config.filebrowserBrowseUrl Bug Normal General
Description

Hi, I've found what I think is a problem, at least it is for me. CKEditor's image dialogue has three tabs at the top. Image Info, Link and Advanced. When you use the config.filebrowserBrowseUrl and config.filebrowserImageBrowseUrl api calls, in the image dialogue the url specified by : config.filebrowserImageBrowseUrl is used for both of the browse server buttons in the image dialogue. On the image info tab and the link tab.

The problem is that the browse button on the link tab should call config.filebrowserBrowseUrl instead of config.filebrowserImageBrowseUrl because you can link an image to any file. It's extremely rare to want to link an image to an image other than itself.

So if you use config.filebrowserImageBrowseUrl to filter only images in your file browser, when you switch to the link tab to add a link, you can only browse images.

I grabbed a nightly CKEditor snapshot two nights ago and the problem was there.

Maybe a new api call would help sort this out but I'm not sure it's a great default setting. Please let me know if you consider this a bug and you will fix it because I will need to fix it only here if not.

Thanks, Tony

#5113 When calling through javascript toggle, editor not Loading, help me pls Bug Normal General
Description

Hi,

I want a editor container enable, when js toggle is called On or OFF, i tried to call using the below script but i failed, whats wrong am doing, pls help me

JS Function: <script type='text/javascript'> function menuonchange() {

if(document.menu_add.Menu_Type.value == "none") {

var e = document.getElementById("menu_content"); e.style.display = 'block';

} else {

var e = document.getElementById("menu_content"); e.style.display = 'none';

}

} </script>

Editor Container

<div class="row"> <textarea class="textarea_forms" dir="rtl" rows="1" id="Menu_Content" name="Menu_Content" cols="50" style="display:none"; ></textarea>

<script type="text/javascript">

CKEDITOR.replace( 'Menu_Content' );

</script></span>

</div>

#5114 IE: Stack overflow on table context menu Garry Yao Bug Normal CKEditor 3.2 UI : Context Menu
Description

Confirmed with IE8 Compatibility mode:

  1. Create a table.
  2. Right click on it to open it's context menu.

A stack overflow error is thrown.

Works well with FF and IE8 no-compat mode.

#5118 Arrow keys navigation in RTL languages is incorrect Garry Yao Bug Normal CKEditor 3.3 Accessibility
Description

It is expected that the left arrow key will go to the icon that is to the left of the current, but in RTL languages the left arrow is actually mobing to the icon that is to the right of the current.
in other words, the navigation arrow keys should be switched when using RTL language.

#5119 disabled icons are not being marked when focused while navigation with the keyboard Garry Yao Bug Normal CKEditor 3.3 Accessibility
Description

if you navigate with the keyboard to a disabled icon it seems that the focus is lost. this is not incorrect, yet it should be marked somehow.

#5120 fckeditor image file permission error Bug Normal Server : PHP
Description

When I insert an image in fckeditor, it is giving an error Error creating folder "/var/www/html/userfiles/image/" (mkdir() [function.mkdir]: Permission denied)

This is the address of my site

http://clayton.hostireland.com/~owenreilly/admin/

Username=admin password=admin

Then this page http://clayton.hostireland.com/~owenreilly/admin/testimonials.php?work=edit&id=1

Thanks Naveed

#5121 Selecting line and changing Paragraph Format changes all lines in paragraph brooks Bug Normal CKEditor 3.3 Core : Styles
Description

The FCK editor allows you to only change the selected line with Paragraph Format, i.e. it recognizes the <br /> tag as a separator. This doesn't work in the CKEditor.

Firefox on Mac

  • Type some text separated with a <br /> tag.
  • Select a line and change the Paragraph Format.
  • All lines change (not just the selected line).
#5122 Selecting line and changing Paragraph Format changes all lines in paragraph Bug Normal General
Description

The FCK editor allows you to only change the selected line with Paragraph Format, i.e. it recognizes the <br /> tag as a separator. This doesn't work in the CKEditor.

Firefox on Mac

  • Type some text separated with a <br /> tag.
  • Select a line and change the Paragraph Format.
  • All lines change (not just the selected line).
#5123 User Interface Languages does not validate Bug Normal CKEditor 3.2 General
Description

"User Interface Languages" sample provided with CKEditor is not a valid XHTML.

Validation Output:  2 Errors

Line 39, Column 35: document type does not allow element "script" here
      				<script type="text/javascript">


Line 53, Column 12: end tag for "select" which is not finished
			</select>
#5124 Background colours cannot be set separately for spaces in a text string Garry Yao Bug Normal CKEditor 3.3 Core : Styles
Description

If the space is having one character space between two text strings, the space could not get background color. If the space is having two or more characters space, The space get background color. Please see the attached screenshot.

#5125 Make the wysiwyg mode editable by default with JAWS Garry Yao Bug Normal CKEditor 3.2 Accessibility
Description

Currently when the editing block gains focus, JAWS stays in VPC mode, we could apply the proper ARIA role to make PC mode turned on automatically.

#5126 removing 'advanced' tab in image dialog breaks the editor Bug Normal UI : Dialogs
Description

when removing the 'advanced' tab from the image dialog (via dialogDefinition event), when pressing OK/Cancal/X/ESC key to exit the dialog a js error is thrown.
attaching a simple case for review.
*BTW, this is the only tab name that his first letter is not in uppercase in all dialogs. should this be another ticket?
*might have something to do with #4616, #3998/#3999

#5127 Problem with removing advanced tab in link and image dialogs Garry Yao Bug Normal CKEditor 3.2 UI : Dialogs
Description

Insert the following code after CKEDITOR.replace( 'editor1' ); in ckeditor/_samples/replacebycode.html

CKEDITOR.on('dialogDefinition', function( ev )
{

	var dialogName = ev.data.name;  
	var dialogDefinition = ev.data.definition;
   
	switch (dialogName) {  
	case 'image': //Image Properties dialog      
		dialogDefinition.removeContents('advanced');
		break;      
	case 'link': //image Properties dialog          
		dialogDefinition.removeContents('advanced');   
		break;
	}
});

This should remove the advanced tab from the image and link dialogs.
Save the html page and view it in a web browser.
Click on the 'Insert Link' toolbar icon.
The advanced tab is removed.
Click cancel - the dialog closes correctly.
Open the dialog again.
Enter a link and click ok.
The dialog closes and the link is inserted correctly into the editor.
Now click on the 'Insert Image' toolbar icon.
The advanced tab is removed.
Click cancel - the dialog does not close and an error is shown in the console.
Entering an image url and clicking ok does not close the dialog either.
The only way to recover is to close the browser tab / window.

Error in Firebug:

this._.contents[pageId] is undefined
[Break on this error] return this._.contents[pageId][elementId];\r\n
#5128 Text content of <pre> element with attributes is removed when changing the formatting Garry Yao Bug Normal CKEditor 3.3 Core : Styles
Description

When trying to alter the formatting of a <pre> block that has attributes (like "class", "style", etc.) the text is removed from the editor.

Steps to reproduce:

  1. Go to CKeditor and switch to "Source" mode
  2. Paste <pre style="color: green">This is a bug.</pre>
  3. Switch back to "WYSIWYG" mode
  4. Select the text "This is a bug"
  5. Click the formatting dropdown and select "Heading 1"

Result:
The text is removed from the editor.

Expected:
The text should change to new formatting and not be removed.

Bug cause & solution:
The issue comes from a regular expression that doesn't check for attributes of <pre> elements. It is found in CKEditor's styles plugin.

file: _source/plugins/styles/plugin.js
line: 770
method: splitIntoPres()

problem:
splitedHtml.replace( /<pre>([\s\S]*?)<\/pre>/gi, ...

solution:
splitedHtml.replace( /<pre[\s\S]*?>([\s\S]*?)<\/pre>/gi ...

#5129 Editor toolbar perception with screen readers Bug Normal Accessibility
Description

JAWS is not reading out the Toolbar when the user has entered the Toolbar by pressing Alt + F10, while it's speaking out the toolbar items directly.

#5131 Horizontal scroll bar appears when horizontal line is inserted Bug Normal General
Description

when a horizontal line (or page break) is inserted, unwanted horizontal scroll bar appears.

XP + IE6

#5132 Formatting automatically applied to all characters/words when only single character/word is highlighted Garry Yao Bug Normal CKEditor 3.3 Core : Styles
Description

Write some text e.g. A B C in editor area. Select "A" and click on underline button. It underlines the text. Now select "B" and click on underline button. It underlines "B" correctly. Now select "C" and click on italic button. You will observe that entire text including "A" and "B" is changed to italic. Same is the case with words.

This issue was reproducible in nightly build with Internet Explorer 8 and Firefox 3.6.

#5133 "Paste From Word" control showing error while pasting bullet list from MS Word. Bug Normal Plugin : Paste from Word
Description

"Paste From Word" control display follwoing error while pasting bullet list from MS Word:

"It was not possible to clean up the pasted data due to an internal error."

The issue was reproducible in Internet Explorer 8 and Firefox 3.6. Please refer to attached image for more error details.

#5134 "Paste From Word" control showing error while pasting bullet list from MS Word. Bug Normal CKEditor 3.3 Plugin : Paste from Word
Description

"Paste From Word" control display follwoing error while pasting bullet list from MS Word:

"It was not possible to clean up the pasted data due to an internal error."

The issue was reproducible in Internet Explorer 8 and Firefox 3.6. Please refer to attached image for more error details.

#5135 Using Shift-Tab on Source mode doesn't work Garry Yao Bug Normal CKEditor 3.2 Accessibility
Description

When the cursor is in the source mode, using shift-tab does not navigate to the previous item in the tabbing order. Using Tab works as expected.

#5136 JAWS is not reading disabled tool bar controls as "Unavailable Link" in Firefox Bug Normal CKEditor 3.2 Accessibility
Description

Press Alt+F10 to enable tool bar controls. Keep pressing Tab until you reach a disabled control e.g. Undo or Redo. You will observe that JAWS is reading it as "Undo" or "Redo" not as "Undo-Unavailable Link" or "Redo-Unavailable Link" as it does in Internet Explorer 8. This issue was reproducible in Firefox 3.6.

#5137 Strange issues with Text Color and Background Color toolbar controls with JAWS Bug Normal CKEditor 3.3 Accessibility
Description

Following issues were observed:

  1. Sometimes not able to activate Background Color control with Enter button.
  1. JAWS not reading colors present in Background Color and Text Color controls properly.
  1. Different toolbar controls are getting activated when selecting color from Background Color and Text Color controls.

Please refer follwing videos demonstraing the issues:

http://www.youtube.com/watch?v=fAGsHjOCVJQ

http://www.youtube.com/watch?v=XREmqfJA6GI

#5138 Naming convention mistakes in dialogs' tabs Bug Normal UI : Dialogs
Description

Some dialogs have naming convention mistakes in the tabs - these might confuse the developer.
in my opinion it's for the best that all tab names will be lowercase and using toLowerCase() in dialog definition events when trying to remove or get tabs.
a list of what i've fond:

  1. 'advanced' in all dialogs
  2. 'info' in all dialogs
  3. 'find' & 'replace' in find dialog
  4. 'properties' in flash dialog
  5. 'target' & 'upload' in link dialog
  6. 'options', 'langs', 'ditionaries' & 'about' in SCAYT dialog

Some more mistakes, yet minor since it is the only tab there:

  1. 'tab1' in about, smiley & uicolor dialogs
  2. 'general' in clipboard, pasetext & wsc dialogs
  3. 'picker' in color dialog
  4. 'selectTpl' in template dialog
#5139 JAWS not reading out Press Alt+Zero for help when the Cursor is in the body of the Editor Bug Normal CKEditor 3.2 Accessibility
Description

The help instructions aren't being read by JAWS when in the body of the editor

#5140 Arrow to show sub menus is not visible in HC mode Frederico Caldeira Knabben Bug Normal CKEditor 3.2 Accessibility
Description

When using the editor in HC mode, the arrow in the context menu is not displayed.

#5141 Unable to choose between percents and pixels in table height input Bug Normal General
Description

In the table dialog, there is no way to choose between pixles and percents in the width field. don't sure if this is a bug, yet that seems like elementary thing.

#5142 the caption element must be directly after the table tag Bug Normal General
Description

The caption element is inserted after the thead element (if there is one - using th tag at the top row for example). this is invalid XHTML.

#5143 CKEDITOR.currentInstance.openDialog('your-custom-dialogue'); Does not work in Opera Bug Normal General
Description

Opera 10, using CKEDITOR.currentInstance.openDialog('your-custom-dialogue'); in plugin.js as : an editor.addCommand doesn't work in Opera but does in Firefox. May crap out other browsers too?

I had to do an : alert( CKEDITOR.currentInstance.name ); just to get the current instance name instead. In opera that fails on the first click of the plugin's toobar icon but works on the second, same as above.

The code was :

CKEDITOR.plugins.add( 'custom',
{

	requires: ['iframedialog'],
	lang : [ 'en' ],

	init : function( editor )
	{

		var pluginName = 'custom';

		/* Register the dialog. */
		CKEDITOR.dialog.addIframe('your-custom-dialogue', 'your custom dialogue',this.path + 'dialogs/dialog.php',500,300,function(){ /* oniframeload */ })
		/* Register the command. */
		var command =  editor.addCommand('custom', {exec:customWindow});

		command;
		command.modes = { wysiwyg:1, source:1 };
		command.canUndo = false;

		/* Set the language and the command */
		editor.ui.addButton( 'custom',
			{
				label : editor.lang.langCustom.label,
				command : pluginName
			});

	},

})

function customWindow() {
    /* run when custom button is clicked */
    CKEDITOR.currentInstance.openDialog('your-custom-dialogue')

}

message: Cannot convert undefined or null to Object.

Using :

function customWindow() {
    /* run when custom button is clicked */
    CKEDITOR.instances.content.openDialog('your-custom-dialogue')

}

instead works as expected.

#5144 Pasting in Chrome can leave <div id="cke_pastebin"> elements Garry Yao Bug Normal CKEditor 3.3 Core : Pasting
Description

Reported in http://cksource.com/forums/viewtopic.php?f=11&t=17447

Seems to work fine with Chrome 4.0.249.89 (38071) in Windows XP with the patches for #4988 and #5095. But previously I've seen it fail, so this case must be reviewed

#5145 SCAYT fixes Task Normal CKEditor 3.3 UI : Spell Checker
Description

the following tickets are addressed with this patch: #3570 #3935 #4125 #4411 #4688

#5146 Missing dependeny in wsc of dialog plugin Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 General
Description

It's missing at least that dependency.

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

Some colors still remain in English, but I just don't know how to translate them at the moment.

#5148 Updated Hebrew translation Task Normal CKEditor 3.2 UI : Language
Description

updated to the current trunk.

#5149 Cursor dissapears after maximize in Firefox 3.6 Garry Yao Bug Normal CKEditor 3.3 General
Description

Reported in http://cksource.com/forums/viewtopic.php?f=11&t=17610

In Firefox 3.5.7 the cursor disappears after switching to full screen, but clicking on the content or restoring size shows it again. In 3.6 on the other side it remains hidden until something else is focused (showing the context menu, open a dialog, focus the url bar...)

#5150 colorButton_colors doesn't allow to specify "name" and color Alfonso Martínez de Lizarrondo New Feature Normal CKEditor 3.3 Core : Styles
Description

This is not related to showing a custom text for each color as that can be done including the proper entries in editor.lang.colors

Instead, it's related to the functionality of FCKeditor to specify

FCKConfig.FontColors = 'ff9900/FontColor1,0066cc/FontColor2,ff0000/FontColor3' ;
FCKConfig.CoreStyles.Color =
	{
		Element		: 'span',
		Attributes	: { 'class' : '#("Color")' },
		Overrides	: [ { Element : 'span', Attributes : { 'class' : /^FontColor(?:1|2|3)$/ } } ]
	} ;

Now the only option seems to be to use something like

colorButton_colors : 'ff9900,0066cc,ff0000',

colorButton_foreStyle :
	{
		element : 'span',
		attributes : { 'class' : 'Color(color)' }
	},

but that requires to use class names like Colorff9900, instead of being able to specify whatever they need.

#5152 Indentation using classes is buggy Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.3 Core : Styles
Description

Seems that it's not possible to indent that way a third level, and removing the indent only works if there's a single level.

Tested with

indentClasses : ['Indent1', 'Indent2', 'Indent3'],

and

.Indent1
{
	margin-left: 40px;
}

.Indent2
{
	margin-left: 80px;
}

.Indent3
{
	margin-left: 120px;
}
#5154 ckeditor adds whitespace to tags in source Bug Normal Core : Output Data
Description

When adding text with simple formats, fckeditor is inject whitespace between the tags, and between the tags and the content. When retrieving the same text from the database, the injected whitespace is interpreted as additional content, which is wrapped in its own set of tags. Each of the new tags receives the same injection of whitespace. Example:

Simple text:

<h1>text 1</h1>
<h1>text 2</h1>
<h1>text 3</h1>

After switch out and back into source:

<h1>
	text 1</h1>
<h1>
	text 2</h1>
<h1>
	text 3</h1>

After saving and reloading the text, and switching to source view:

<h1>
	<br />
	text 1</h1>
<p>
	&nbsp;</p>
<h1>
	<br />
	text 2</h1>
<p>
	&nbsp;</p>
<h1>
	<br />
	text 3</h1>

Doing the same again, with absolutely zero changes by the user:

<h1>
	<br />
	<br />
	<br />
	text 1</h1>
<p>
	&nbsp;</p>
<p>
	<br />
	&nbsp;</p>
<p>
	&nbsp;</p>
<h1>
	<br />
	<br />
	<br />
	text 2</h1>
<p>
	&nbsp;</p>
<p>
	<br />
	&nbsp;</p>
<p>
	&nbsp;</p>
<h1>
	<br />
	<br />
	<br />
	text 3</h1>
#5155 Rich text window doesn't open when clicking on Rich Editor Bug Normal Project : MediaWiki+FCKeditor
Description

I have just install latest Medaiwiki & FCKeditor on my Godaddy hosting account, however when pressing on Rich Editor link it become "loading" and freeze.

#5156 Focus goes into body before activating dialog Bug Normal Accessibility
Description

When JAWS is on and the user presses space bar to activate the dialogs from the toolbar, the cursor is going in to the body of the editor before focus goes in to the dialog. So JAWS is reading the help text for Editor body and then the focus element on the dialog.

This will confuse the blind user.

#5157 JAWS reads dialog fields incorrectly Bug Normal CKEditor 3.2 General
Description

JAWS reading some of the Edit fields on the dialogs incorrectly as Frame Type and text instead of Edit Type and text
1) All the Edit fields on Cell Properties dialog
2) All the Edit fields(except Caption & Summary fields) on Table Properties dialog and also it is not reading the default Values in the Edit fields on Table Properties dialog.
3) URL field on the General tab of Flash Properties dialog
4) All the Edit fields(except Alternate Text field) on the Image Info Tab of Image Properties dialog
5) URL field on the Link Info tab of Link dialog when Link type is chosen as URL and all the Edit fields on the Advanced tab of Link dialog
6) All the Edit fields under Pop up window features when the Target Option is selected as Pop up Window on the Target tab of Link dialog

#5158 JAWS not reading combo boxes properly in link dialog Bug Normal Accessibility
Description

JAWS not reading the Select an Anchor by Anchor Name list box Correctly. JAWS reading the name properly but it is reading some garbage text after the name(eg Graphic 85 graphic 45 .... and so on )and also it is not reading the instructions on how to access the list box.

JAWS not reading the By Element Id list box Correctly. JAWS reading the name properly but it is reading some garbage text after the name(eg Graphic 85 graphic 45 .... and so on)and also it is not reading the instructions on how to access the list box.

#5159 Menu items do not auto-resize for long menu items Bug Normal General
Description

Menu items in the toolbar and context are fixed width.

This means that one width must be used for all strings. Some languages have much shorter words than others, this results in having to use the maximum width for a menu to accommodate all languages.

Ideally we should have a preferred width and if needed it should resize if the contents is too wide.

#5160 Wrong category sortkay when using ampersand in category name with mediawiki Bug Normal Project : MediaWiki+FCKeditor
Description

When adding an article to a category containing an ampersand the FCKEditor creates the wrong sortkey.

Example: [[Category:Tips&Tricks]] --> [[Category:DBMS_Tips&Tricks|Category:DBMS_Tips&amp;Tricks]]

This has the effect that all pages in this category are displayed under the letter C in the category page.

#5161 Bugg detected when using FF plugin Quick TransLation (qtl) in firefox. Bug Normal Core : Pasting
Description

To recreate the unwanted behaviour do the following:

  • Install the plugin
  • Copy some text
  • Paste it in to the FCK

-View source

I've got the following result:

<qtlend></qtlend> <qtlbar style="padding: 0pt; display: inline; text-align: left; line-height: 100%; background-color: rgb(236, 236, 236); -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; cursor: pointer; z-index: 999; left: 181px; top: 22px; opacity: 0.9;" dir="ltr" id="qtlbar"> <img src="http://www.qtl.co.il/img/copy.png" title="Copy selction" class="qtl" alt="" /><a href="http://www.google.com/search?q=Ballongf%C3%A4rd%20misst%C3%A4nks%20vara%20bluff" target="_blank" title="Search With Google"> <img class="qtl" src="http://www.google.com/favicon.ico" alt="" /></a> <img class="qtl" title="Translate With Babylon" src="http://www.babylon.com/favicon.ico" alt="" /> <iframe style="border: 1px solid rgb(236, 236, 236); display: none; background-color: white;" src="" id="qtlframe"></iframe></qtlbar>

#5162 Error in ajax sample Frederico Caldeira Knabben Bug Normal CKEditor 3.2 General
Description

To reproduce:

  1. Open Ajax sample on nightly build
  2. Add some content and destroy the editor
  3. Create the editor

the following error occurs in FF

this.document.getWindow().$ is undefined
[Break on this error] if(m)return;p.call(this);m=e.setTimeout(...urn s.type;var t=2,u=this.getNative();\r\n

in IE the data on the editor is not set.

#5163 [FF] Error when using undo Bug Normal CKEditor 3.2 General
Description
  1. Clear browser cache/cookies etc.
  2. Open Ajax sample on nightly build
  3. Add some content
  4. At end of the document add a horizontal line
  5. Attempt to undo

Undo doesn't work on the horizontal line and the following error occurs:

l is null
[Break on this error] return h;},clone:function(h,i){var j=thi...h){var j=this;if(h.equals(j))return j;\r\n

This only happens on the first load of the editor.

#5165 CKEDITOR_BASEPATH has no affect on CKEDITOR.basePath Bug Normal General
Description

The CKEDITOR_BASEPATH global should change the value of CKEDITOR.basePath because the later could be used in the code to setup paths.

#5166 Text can't be typed as Bold(Italic etc.) in Safari and Chrome Bug Normal General
Description
  1. Load www.ckeditor.com/demo in Safari(the same is actual for Chrome)

  1. Put cursor in any place of sample text
  1. Press Bold(Italic etc.) on toolbar
  1. Type text

Actual result: after bold was pressed it is not applied. Text is not typed as bold and left without any style.

#5167 Scollbars in file browser window Wiktor Walc Bug Normal General
Description

It looks like people have problems when integrating their custom file browsers:

http://cksource.com/forums/viewtopic.php?f=11&t=15966

I wrote a custom file browser to integrate with the ckeditor image manager. My only question is, I do not get scrollbars for this popup window in all browsers. In Chrome & Safari (both use same rendering engine) when I click on the browse server button and my popup is opened to my file browser window, I get scrollbars as I desire. In IE or FF I do not get these scrollbars.

(scrollbars=yes is missing when calling window.open)

#5169 fck editor file browsing Bug Normal File Browser
Description

hi i having a problem in file browsing, says permission denied for browser.html, how to solve this problem. my client didnt knw anything abt severs and he is not willing to give me the access, would u plz help to solve this problem ?

#5170 Problems with pasting (executing insertHtml) and formatted text brooks Bug Normal CKEditor 3.3 General
Description

When inserting content with insertHtml() inside of formatted text, editor breaks formatting and inserts content without formatting. Confirmed in FF 3.5. Works fine in IE8 and Safari 4.

Steps to reproduce

  • start with
    <p>
    	<span style="color: rgb(255, 0, 0);">Sample ^text</span></p>
    
  • Open "special character" dialog and insert some character somewhere in the middle of the text (before "text")
  • Result:
    <p>
    	<span style="color: rgb(255, 0, 0);">Sample </span>&euro;<span style="color: rgb(255, 0, 0);">text</span></p>
    

This can be reproduced in many different ways in CKEditor, everywhere where insertHtml() is used, like also when pasting content or when inserting content in a custom plugin.

Targetting to 3.3 as it might be a bit irritating.

#5171 Dialogs with lists do not have proper labels for lists Garry Yao Bug Normal CKEditor 3.3 Accessibility
Description

The following dialogs have lists but the list labels are not read correctly by JAWS:

  • smiley (reads as undefined)
  • special character (generic Options label used)
  • templates (generic Options label used)
#5172 Can't use mouse to change tabs in dialogs Bug Normal CKEditor 3.2 General
Description

It is not possible to click on a tab in a dialog with the mouse.

This is a regression in 3.2.x SVN version.

#5173 Problem with reading the help dialog contents Bug Normal Accessibility
Description

It is still very difficult to get JAWS to read the help dialog contents properly.

#5174 Context menu should select the first item in the list Bug Normal Accessibility
Description

To help with the usability of the context menu for JAWS users, the first item in the context menu should be selected (and read by JAWS). At the moment there are some issues understanding how to use the context menu by a JAWS user.

#5175 Instructions on using toolbar items are not read correctly Bug Normal Accessibility
Description

When navigating the toolbar, instructions on activating the toolbar items is only read for source button, when using JAWS.

#5176 JAWS is reading additional text before reading dialog tab name. Bug Normal CKEditor 3.2 Accessibility
Description

JAWS is reading additional text, for example "dialog tabs tab" before reading the tab name when a dialog is activated. Also when focusing on tab panel by pressing ALT+F10. This is occurring for all the dialogs that have multiple tabs.

#5177 JAWS is not correctly reading the blockquote button. Bug Normal CKEditor 3.2 Accessibility
Description

JAWS is reading the button as "Block with button". The expected is "Blockquote button".

#5178 [Nightly 3.2 Ajax Demo] Maximize button is not rendering the editor correctly Bug Normal CKEditor 3.2 General
Description

Please see the attached screen shot.

#5179 Line Spacing New Feature Normal General
Description

I would appreciate learning how I might control line spacing on fckeditor output.

My existing style sheets seem to have no impact.

Thanks,

Raehm

#5180 Image captions are lost when editing a page with FCKeditor Bug Normal Project : MediaWiki+FCKeditor
Description

Some people reported the same behavior at the discussion page of the Mediawiki extension (http://www.mediawiki.org/wiki/Extension_talk:FCKeditor_(Official)#disappearing_thumbnail_captions).

#5181 Use callFunction when loading the wysiwyg data Garry Yao Task Normal CKEditor 3.3 General
Description

We're currently using an ugly and unclear solution to notify the data load in the wysiwyg plugin.

While we still need the activation script, we could make it a bit clearer by using the CKEDITOR.tools.callFunction.

#5182 Context menu is not read as a context menu by JAWS Garry Yao Bug Normal CKEditor 3.3 Accessibility
Description

When displaying context-menus and sub-menus JAWS does not read the menus as menus, just the general label "Options". When using a toolbar menu (scayt), JAWS reads "Menu Options" and when leaving the menu it says "Leaving menu".

In earlier versions, JAWS would actually read "Context menu"

#5185 FF—Styles, Font Name and Font Size are not sticky Bug Normal General
Description

New issue.

To reproduce the defect:

  1. Select font name and font size options in font name and font size list boxes.
  1. Go in to the body of the editor , type the text you will see that text is typed with the font name and size we have selected.
  1. Go to next line by pressing enter. See that the options still remain.
  1. Go to previous line and go to to end of it, using keyboard navigation (arrows and 'end' button). See that the options in font name and font sizes are removed.
  1. Now go back to next line see that the options in font name and font size are removed.
#5186 IE7 - setting a width results in editor jumping to top of screen on click Bug Normal General
Description

1) Put attached file 'jumpingDemo.html' in the _samples directory.

2) View in IE7 (or IE8, then use developer tools to switch to Browser Mode: IE7, Document Mode: IE7 Standards)

3) Scroll down so the first editor is in the middle of the screen somewhere. This editor has {width: "100%"} in the CKEDITOR.replace() call.

4) Click in the first editor below the line of text. It should jump to the top of the screen.

5) Scroll down to the second editor (this is inside a p with style="width: 100%") and click in it; you should get the same jumping behaviour.

6) Scroll down to the third editor and click in it - it should stay where it is. This has no width settings.

7) If you switch to IE7 in Quirks mode, you don't get the jumping. Also, it is fine in IE6, IE8 and Firefox.

This is an issue because if there are several small CKEditor instances on screen at once, having the 'clicked' editor jump to the top of the screen is confusing.

This has been verified with the nightly build 5155.

#5188 fixlineends not working corectly Wiktor Walc New Feature Normal General
Description

It seems that fixlineends script (_dev\fixlineends\) is not fixing all files, for example the following file:

_source\core\editor.js

does not have a BOM character after running fixlineneds.bat.

#5189 Find/Replace dialog: rename button to "Close" Piotr Jasiun Bug Normal CKEditor 4.1.3 UI : Dialogs
Description

In the Find/Replace dialog, the button should be labeled "Close" and not "Cancel", because it doesn't really cancels the replacement operation.

#5190 Templates dialog: no automatic focus Garry Yao Bug Normal CKEditor 3.3 UI : Dialogs
Description

(3.2.x Branch)

The templates dialog must not focus on the first item of the list. The current behavior disturbs the mouse navigation.

The templates list should be focused on load, having the first item focused only when hitting the ARROW-DOWN key.

#5191 Ajax sample: undo behaves improperly Alfonso Martínez de Lizarrondo Bug Normal CKEditor 3.2 Core : Undo & Redo
Description
  1. Load the Ajax sample.
  2. Type some text.
  3. Undo until the last possible undo step.
  4. Redo until the last redo step.

In step 3, the last undo should be from a few text to blank contents.

In step 4, the last redo should restore the entire typed text.

Currently, the user looses the text when performing the above steps.

#5193 FF: Elements path should have the hand cursor Frederico Caldeira Knabben Bug Normal CKEditor 3.4 General
Description

In Firefox only, the elements path elements have the text cursor instead of the hand cursor.

#5194 FF: The toolbar combos should have the arrow cursor Bug Normal UI : Toolbar
Description

In Firefox only, the text inside the toolbar combos has the text cursor instead of the arrow cursor.

#5195 The dialog content heights are a bit bigger Bug Normal UI : Dialogs
Description

Compared to the 3.1, the 3.2 dialogs contents are a bit bigger (like 10px).

#5196 IE: Click and drag to select is not working without first focus Bug Normal CKEditor 3.2 General
Description

(3.2.x Branch)

  1. Load a page.
  2. Without any other action, click and drag to select text in the editor.

The selection will not happen.

#5197 IE: page reload throws error Frederico Caldeira Knabben Bug Normal CKEditor 3.2 General
Description

(3.2.x Branch)

  1. Load a sample.
  2. In the browser page, open a different URL.
  3. Click the browser back button.

A js error is thrown.

This also happens when refreshing the page.

#5198 IE: double history entries Frederico Caldeira Knabben Bug Normal CKEditor 3.2 General
Description

With IE:

  1. Load _samples/index.html.
  1. Select the replacebyclass sample.
  1. Click the browser back button. The editor contents will disappear.
  1. Click the browser back button again. The index page will finally be loaded.

The above step 3 should not happen.

#5199 IE: Single row toolbar has no bottom padding Bug Normal CKEditor 3.2 UI : Toolbar
Description

In IE8, with compatibility enabled, editor toolbars with a single row don't have the usual bottom padding.

Confirmed with the api_dialog sample. Works well with IE8 mode.

#5201 IE: Pasting may throw js error Bug Normal Core : Pasting
Description
  1. With Firefox, select the article contents from this page.
  1. Open the editor in IE and paste inside of it.

Several js errors are thrown.

Confirmed with IE8 in Compatibility Mode, at least.

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