Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (3201 - 3300 of 11754)

Ticket Summary Owner Type Priority Milestone Component
#3159 List features not working Bug Normal CKEditor 3.0 General
Description

Steps to reproduce:

  1. Open a sample
  2. Create a bullet list and then ensure it is selected

3.a Press the bullet list button
or
3.b Press the number list button
or
3.c Press the outdent button

Expected behaviour:
Case (3.a), the newly created list should undone.
Case (3.b), the bullet list should be changed to a number list
Case (3.c), the bullet list should be undone as in (3.a)

Actual behaviour:
In some browser the browser hangs. In other cases the expected results don't work.

#3160 [FF] Ajax sample editor document problem Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the ajax.html example page;
  2. Click Create Editor button to have a new instance;
  3. Insert some content and click Remove Editor to destroy the instance;
  4. Click Create Editor button again to have another new instance;
  • Actual Result : The content is lost within the new instance and the document become not editable.
#3161 Some popup windows hanging in Opera and Firefox Bug Normal General
Description

Good evening! I have installed FCKeditor as addon for my MediaWiki project. I have turned an option to connect between RichEditor (in my situation that's FCKeditor) and default MediaWiki Editor. It works fine in IE, but when I try to switch to RichEditor in Opera or FF it hangs on "Loading.....".

When I tried to use FCK as the only editor for my MediaWiki, it started, worked, but no popup windows (for table properties, e.t.c) functioned (only blank popup window without any controls or labels).

My Opera version is 9.63 I need your help, because I have found no information in Google and in existing tickets here.

#3163 Colour buttons stay hightlighted Bug Normal CKEditor 3.0 General
Description
  1. select some text

  1. click the text colour button and select any colour
  1. go to background colour and pick any colour

The background colour button stays highlighted.

#3164 [Webkit] SelectAll incorrectness Bug Normal General
Description

It's unable to select all document content with either keyboard Ctrl-A or Select All button, the selection range is actually just covered inline element content.

Reproducing Procedures

  1. Open the replace by code example page;
  2. Make document content and selection as following by double click on cell:
    <p>
    	<span style="font-size: 24px;">text</span></p>
    
    1. Click on 'Select All' button and followed with 'delete' key;
    2. Type some random text;
    • Actual Result : the entered text shared the same font size as previous.
#3165 [IE] enterKey incorrect with list item Garry Yao Bug Normal CKEditor 3.1 Core : Lists
Description

Reproducing Procedures

  1. Open the replace by code example page;
  2. Make document content and selection as following:
    <ol>
    	<li>
    		level1^
    		<ol>
    			<li>
    				level2</li>
    		</ol>
    	</li>
    </ol>
    
  3. Press Enter key
  • Actual Result :
    <ol>
    	<li>
    	</li>
    	<li>
    		level1
    		<ol>
    			<li>
    				level2</li>
    		</ol>
    	</li>
    </ol>
    
  • Expected Result :
    <ol>
    	<li>
    		level1
    		<ol>
    			<li>
    				level2</li>
    		</ol>
    	</li>
    	<li>
    	</li>
    </ol>
    
#3166 enterKey break in source mode Garry Yao Bug Normal CKEditor 3.0 General
Description

EnterKey logic within document should be disabled for source mode.It's now cause JavaScript error generated when hit the key.

#3168 Unknown script code appears in the editor Bug Normal General
Description

Steps to replicate:

  1. Have some default content in the form field which uses editor.
  2. After the page is loaded with the editor, select all the content in the editor and press delete button on the keyboard
  3. Press delete button once again, script code will appear in the editor.

Example:

  1. Visit the link http://www.sustainlane.com
  2. Click on the link 'Post to Sustainlane' which is on the right side of the page below a search box.
  3. On the next page click on the link Blog
  4. A radio button selection appears on the right side of the page
  5. Select 'Recipe' and click on the next button.
  6. A form with FCKEditor as one of the form fields appears, which has some template text.
  7. Select this text and press delete button and remove the content.
  8. Press delete button once again.
  9. The script appears in the editor.

Note: No signin/registration is required to try the above steps on sustainlane.com.

Following is the script code that appears in the editor:

-- function RP_Callback_Helper(str, strCallbackEvent, splitSize, func){var event = null;if (strCallbackEvent){event = document.createEvent('Events');event.initEvent(strCallbackEvent, true, true);}if (str && str.length > 0){var splitList = str.split('|');var strCompare = str;if (splitList.length == splitSize)strCompare = splitList[splitSize-1];var pluginList = document.plugins;for (var count = 0; count < pluginList.length; count++){var sSrc = ;if (pluginList[count] && pluginList[count].src)sSrc = pluginList[count].src;if (strCompare.length >= sSrc.length){if (strCompare.indexOf(sSrc) != -1){func(str, count, pluginList, splitList);break;}}}}if (strCallbackEvent)document.body.dispatchEvent(event);}function RP_Coord_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].RP_Coord_Callback = str;pluginList[index].RP_Coord_Callback_Left = splitList[0];pluginList[index].RP_Coord_Callback_Top = splitList[1];pluginList[index].RP_Coord_Callback_Right = splitList[2];pluginList[index].RP_Coord_Callback_Bottom = splitList[3];};RP_Callback_Helper(str, 'rp-js-coord-callback', 5, func);}function RP_Url_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].RP_Url_Callback = str;pluginList[index].RP_Url_Callback_Vid = splitList[0];pluginList[index].RP_Url_Callback_Parent = splitList[1];};RP_Callback_Helper(str, 'rp-js-url-callback', 3, func);}function RP_TotalBytes_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].RP_TotalBytes_Callback = str;pluginList[index].RP_TotalBytes_Callback_Bytes = splitList[0];};RP_Callback_Helper(str, null, 2, func);}function RP_Connection_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].RP_Connection_Callback = str;pluginList[index].RP_Connection_Callback_Url = splitList[0];};RP_Callback_Helper(str, null, 2, func);} -->

#3169 [IE] Indent problem with <pre> Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by code example page;
  2. Make document content and selection as following:
    <pre>
    	text^</pre>
    
  3. Hit Enter key then click Select All command;
  4. Click Indent command;
  • Actual Result : Javascript Error occured.
  • Expected Result :
    <pre style="margin-left: 40px">
    	text </pre>
    
#3170 Source mode problem on switching Artur Formella Bug Normal CKEditor 3.0 General
Description

It's necessary to disable the Source button when perform switching.

Reproducing Procedures

  1. Open the replace by code example page;
  2. Delete all the content within document;
  3. Triple click on Source button;
  • Actual Result : The origianl content now re-appears.
#3172 fake object can't update width Garry Yao Bug Normal CKEditor 3.0 General
Description

The fake object is unable to get width style which should be updated from the fake control element.

#3173 Make it possible to register event listeners on instance creation Frederico Caldeira Knabben New Feature Normal CKEditor 3.0 General
Description

The following currently doesn't work in all cases:

var editor = editor.replace( 'editor1' );
editor.on( 'someEvent', function() { ... } );

... because the event may be fired during the "replace" call, so the event registration comes too late.

There are ways to do so, but it's a little cumbersome:

CKEDITOR.on( 'instanceCreated', function( ev )
    {
        ev.editor.on( 'someEvent', function() { ... } );
    });

editor.replace( 'editor1' );

There should be instead a way to do that on instance creation, just like this:

editor.replace( 'editor1',
    {
        // ... some editor settings

        on :
        {
            someEvent : function() { ... },
            otherEvent : function() { ... }
        }
    });
#3174 CKEditor 3.0 - Context Menu is not displayed correctly Martin Kou Bug Normal CKEditor 3.0 General
Description

Screen shot attached

#3176 Match the whole word in Find it does not match Garry Yao Bug Normal CKEditor 3.0 General
Description
  1. Hit the Find button and type a word from the text.
  1. Tick only - match the whole word and click on Find button.

Result: A notice pops out - The specified text was not found.

#3178 page break button - confusing name Task Normal CKEditor 3.0 General
Description

The name of this button is confusing. It would be good to change it to something like page break for printing.

#3179 Different style when quoting New Feature Normal General
Description

When we hit the Quote button the text marked as Quoted does not look like it. It would be good to see, after you hit the quotation button, the text being really in the quotes ("") or other style being more visible for the end user.

#3180 Include content styling in the default distribution Bug Normal General
Description

The default editor installation already proposes some default styles to be used in the editing area. Those can be found at the contents.css file, which should be the file to get customized on editor installations, to reflect the final web site styles, giving a more WYSIWYG feeling.

Right now, we have included just font face, size and colors. But we could include further styles in that file by default, so creating text with the editor will look nicer inside of it, and would be more usable.

One of the example of it is the <blockquote> tag, which currently looks just like an indented paragraph. It would be nicer to have it look differently, helping understanding that that block is a quotation (#3179), and that it's different than a simple indentation.

There are other cases, like less used tags, like <kbd> and <code>, which could have better styling.

We do that with FCKeditor at sample14.html, with good results. Maybe it's the case to do that by default. After all, that CSS file must always be configured, so if one wants, s/he can just remove the unneeded rules.

#3181 Fix selection for IE8 in FCKeditor Alfonso Martínez de Lizarrondo Bug Normal FCKeditor 2.6.5 General
Description

Like #3089, the same kind of patch is needed for FCKeditor and IE8

#3182 IE8: Contents of panels aren't shown Bug Normal General
Description

Load the replacebyclass example in IE8, click on any of the dropdowns: they are empty.

Also, clicking then in the document doesn't close the panel

#3183 IE8: Domain relaxation for panels fails Bug Normal General
Description

As reported in http://www.fckeditor.net/forums/viewtopic.php?f=6&t=13378

the line 54 in fckpanel.js gives a permission error (Access denied), if the editor is placed in a page using domain relaxation.

This is the first part that fails:

		this.Document = this._Popup.document ;
#3184 FF 2.0 Statup exception Bug Normal CKEditor 3.0 General
Description

To reproduce try to slow down the computer (i.e. copy 1000 small files) and open replacebyclass.html in FF 2.0

GET http://localhost/edytor/CKEditor/trunk/_samples/replacebyclass.html
http://localhost/edytor/CKEditor/trunk/_samples/replacebyclass.html
			30ms	ajax.js (line 88)
uncaught exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIDOMNSHTMLDocument.designMode]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: http://localhost/edytor/CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js :: anonymous :: line 221" data: no]
[Break on this error] var document = new CKEDITOR.dom.docum...nt || this.$.parentNode.ownerDocument );
node.js (line 247)

Wysiwyg area is dasabled.

#3185 FF 2.0 Select inputs doesn't work in dialogs. Bug Normal CKEditor 3.0 UI : Dialogs
Description

Select element doesn't work in dialogs, it cannot be expanded.

#3187 MediaWiki (1.12.4) Image Tag imgCaption can be a Link and then is destroyed Bug Normal Project : MediaWiki+FCKeditor
Description

In the Case the Media Wiki Image Tag contains a Link as a imgCaption FCK destroys the Link like that:

ORGIGINAL [[Image:HelloWorld.png|right|thumb|200px|[[Some Link]]]] AFTER [[Image:HelloWorld.png|right|thumb|200px|Some Link]]

mediawiki_fckeditor_ext_N.zip (Download 20.März.2009)

By the way: WHAT A GREAT PROJEKT!!! Sincerely yours Burgy Zapp

#3188 V3 : Implement the <pre> support Garry Yao Bug Normal CKEditor 3.0 General
Description

In V2, we have special support for <pre> blocks, making it possible to switch them forth and back to <p>, for example. We need it in V3.

#3189 V3 : Padding block support Garry Yao Bug Normal CKEditor 3.0 General
Description

In V2, we implemented some checks to ensure that there is always a way to escape from special blocks, like <table> and <pre>.

For that we guarantee that there is always an element where to move at the very end of the document. We need it in V3.

#3190 Auto-fix block-less paragraphs Garry Yao Bug Normal CKEditor 3.0 General
Description

When moving the caret inside the editor (on selectionChange), the editor could automatically fix paragraphs with no blocks, resulting in a more accurate WYSIWYG experience, as after all the paragraphs will be fixed on output.

#3192 [IE] editor.focus() is asynchronized Bug Normal CKEditor 3.0 General
Description

Move the keyboard focus to an element in IE won't have an immediate result, which may cause subsequent dependent operation fails, as described by the test case.

#3193 Lists not properly indented on RTL setups Bug Normal Project : MediaWiki+FCKeditor
Description

I have FCKeditor 2.6.4 set up on a Hebrew MediaWiki 1.12 (also tested on 1.13).

When ContentLangDirection is set to 'rtl', lists aren't indented correctly. On Firefox 3 and IE6 the bullets and numbers are off the editor area, to the right. On IE7 and IE8 they are visible, but not where they should be.

I'm not sure whether this is a MediaWiki+FCKeditor specific bug or a general FCKeditor bug, so I listed the Component as General.

#3194 PHP error on Hebrew MediaWiki 1,13 Bug Normal Project : MediaWiki+FCKeditor
Description

On MediaWiki 1.13, with wgLanguageCode set to "he", the Edit page shows the following error:

Warning: in_array() [function.in-array]: Wrong datatype for second argument in C:\wamp\www\mediawiki-1.13.2\includes\SkinTemplate.php on line 994.

Browsers tested: Firefox 3.1 and IE 8.

#3196 [IE6] Context Menu displaying expand editor width Bug Normal CKEditor 3.0 General
Description

At the time when context menu was displayed, the editor chrome width become noticeable larger, it restored back to normal width later on Menu hide randomly.

#3197 Magic words stripped on next edit Bug Normal Project : MediaWiki+FCKeditor
Description

Hi,

I've seen some previous tickets relating to issues with MediaWiki magic tags, but they all seem resolved.

We're having a problem that whenever we put a NOTOC at the top of a page.

It seems to get saved and recognised when the page is rendered, but when edit is next loaded, the magic tag is gone again (switching into wikitext mode sometimes shows it as a <br> and sometimes it's just plain gone). Upon saving the edit, the NOTOC is lost and a TOC is rendered.

If I put NORICHEDITOR at the top along with NOTOC, it persists, but of course there's not FCKEditor.

If I click the "disable rich editor" link, once again it's fine putting NOTOC into the box, but curiously if I push the "enable rich editor" link, the NOTOC seems to get stripped right there.

When editing in normal rich mode, I can confirm the tag is missing from the HTML source as well (so it's not even being fed to the RTE), so something pre-page-load is stripping it.

I'm running Mediawiki trunk and MediaWiki+FCKEditor trunk hot off SVN.

Thanks

#3198 Insertion with content deleted not working Garry Yao Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make a selection which contains some content;
  3. Open Smiley dialog to insert a random icon;
    • Actual Result: JavaScript Error occurred.
#3199 Question mark "?" change to "shy" Wiktor Walc Bug Normal CKEditor 3.0 Core : Output Data
Description

If you type a question mark then submit, every "?" is transformed to "shy". In source mode, if you type &#063; same problem again.

Tested in FF3.0.6 and Opera9.63

#3200 MediaWiki Trial Run (CKEditor) Bug Normal General
Description

I setup CKEditor in the following manner and it works as expected except... the Style, Font, etc drop-downs dont work? Any recommendations.


$wgHooks['EditPage::showEditForm:initial'][] 	= 'showEditForm';
function showEditForm($form){
	global $wgOut;
	$wgOut->addScriptFile( '/mediawiki/extensions/ckeditor/ckeditor/ckeditor.js' );
	$script =
		"<script type=\"text/javascript\">
			window.onload = function()
			{
				CKEDITOR.replace( 'wpTextbox1' );
			};
			  if ( window.removeEventListener )
				window.removeEventListener( 'load', mwSetupToolbar, false ) ;
			  else if ( window.detachEvent )
				window.detachEvent( 'onload', mwSetupToolbar ) ;		
		</script>";	
	
	$wgOut->addHTML($script);
	
	return true;
}
#3201 [Opera] Discards entities when switchng to source view and back Garry Yao Bug Normal CKEditor 3.0 General
Description

If you paste some text that contains some HTML entities (like hardbreaks &nbsp;), switch to source code view and then switch back again, you can see all the hardbreaks being replaced with nbsp text.

#3202 Hebrew Translation New Feature Normal Project : MediaWiki+FCKeditor
#3205 Image dialog problem after close Garry Yao Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Click on 'Image' dialog button to open dialog;
  3. Click on 'Cancel' button to close the dialog;
    • Actual Result: An JavaScript Error thrown;
#3206 FF adds excessive <br> tags on enter Bug Normal CKEditor 3.0 General
Description

Steps to reproduce:

  1. Open nightly build (3275 as of writing)
  2. Add text followed by Enter key a number of times e.g. (a ENTER b ENTER c ENTER)
  3. Examine HTML

Expected behavior:
New lines are wrapped with a <div> only

Actual result:
Firefox only: Excessive <br/> tags are appended within the dom e.g.:

<p>
	a<br />
	<br />
</p>
<p>
	b<br />
</p>
<p>
	c<br />
</p>

#3208 IE Focus issue with Ajax example Martin Kou Bug Normal CKEditor 3.0 General
Description

After opening the ajax example in IE6 and creating the editor instance for the first time, it is not possible to focus in the editing area.

#3210 Font size and type not reflected in combo when selecting text Bug Normal CKEditor 3.0 General
Description

Steps to reproduce:

  1. Open a nightly build example
  2. Apply a font and size to some text, choosing options other than the first in the list
  3. Focus away from the selected text and then place the cursor on the text again

Expected behavior:
The font and size of the text should be reflected in the respective combos in the toolbar.

Actual behavior:
Combos default to first options in list, e.g. Arial and 8

#3211 Disable unavailable commands Artur Formella Bug Normal CKEditor 3.0 UI : Toolbar
Description

Some of the commands doesn't work under certain conditions. Example:

-WSC in Opera

-Print in Opera

-Save if there is no FORM element

Those buttons should be disabled.

#3217 Unexpected <br> will be added to the RichText field if the RichText field is in source/XML view before the spell checking Bug Normal General
Description

Clicking the "Source" button of the empty RichText field before spell-checking and you will get the &lt;br&gt; into the empty RichText field unexpectedly. - Continue to do the spell checking and then save the doc - Preview the doc and you will see the unexpected &lt;br&gt; text showing up in the RichText field (which supposed to be empty/blank

Steps to reproduce:

  1. Download the attachment sample01.html, put to <FCKEditor_HOME>/_samples/html/(replace the default one).
  1. Open the <FCKEditor_HOME>/fckconfig.js, change the entermode as "br".
  1. Open <FCKEditor_HOME>/_samples/default.html, clean the textarea, and click the button "testF", then click the source button.

What the button "testF" did are similar with spellcheck, it will invoke the function fck.GetXHTML().

This should be a fckeditor defect the fact that this function inserts an entermode node into the textarea if the entermode is "br".(If the entermode is p, then it is OK)

Regards,

Steve

#3219 Combos don't hide when clicking on color buttons Artur Formella Bug Normal CKEditor 3.0 General
Description
  1. Click on any of the combos to open it.
  2. With the combo opened, click a color selector button.

The combo will remain opened. The opposite also happens.

#3220 The releaser is adding xml:space="preserve" to the samples Wiktor Walc Bug Normal CKEditor 3.0 General
Description

The releaser is adding the xml:space="preserve" attribute at one of the tags in the sample pages.

#3221 Swedish translation Artur Formella New Feature Normal Project : MediaWiki+FCKeditor
Description

I have made a Swedish translation of the extension. Version 0.1 :)

#3222 Rich combos and float buttons lose clicks Artur Formella Bug Normal CKEditor 3.0 UI : Toolbar
Description

Steps to reproduce:

-Click the Style combo (it opens)

-Click the Format combo (it opens)

-Click the Style combo (it should be opened but it doesn't)

-Click the Format combo (it should be opened but it doesn't)

The same problem with Float Buttons.

#3223 CKEditor 3.0 - Not able to type inside the editor area when jaws is on using fire fox browser Bug Normal CKEditor 3.0 General
Description

CKEditor 3.0 - Not able to type inside the editor area when jaws is on using fire fox browser.

Note:

  1. I Am able to reproduce this issue in your sample "replacebyclass.html".
#3224 CKEditor 3.0 : Ok/Cancel buttons are not working in Dialogs Bug Normal General
Description

When the JAWS is on, tab through the dialog(ex: Link or Image), once the focus moved to the ok/cancel press enter. This action should close or display some message but nothing happends.

This is reproducible in the sample html file provided by you. Sample File Used: replacebyclass.html

#3225 Have a single config option to set the UI language Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

Currently, if you want to set the UI to a specific language, you need to set, in the configurations, both autoLanguage to "false" and defaultLanguage to the desired language code. This is cumbersome, and counterintuitive.

It should be possible to set the UI language with a single configuration option.

#3226 Anchor image not visible in Safari on empty paragraph Bug Normal Safari Compatibility General
Description

If you create an anchor (Safari on windows) where no text is present, the anchor is created but the anchor image is not visible in the editor window.

Steps to reproduce the problem:
1) Type some text
2) Create an anchor before the typed text (anchor will be visible)
3) Put some returns after the typed text
4) Create somewhere an anchor in the empty text (so somewhere in the returns)
5) Anchor is created in html but not visible in the editor window.

This problem happens also in the latest nightly build.

This is the html code of my test:

<p><a name="test1"></a>This is my first text paragraph</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a name="test2"></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
#3227 Opera bug Bug Normal General
Description

opera 9.23 if you try to view FCKEditor in Opera v 9.23 you will see a simple textarea tag instead of editor.

I've found a way to fix it.

In file fckeditor_php5.php or fckeditor_php4.php

replace $fVersion = (float)substr($sAgent, strpos($sAgent, 'Opera/') + 6, 4) ;

return ($fVersion >= 9.5) ;

with

$fVersion = (float)substr($sAgent, strpos($sAgent, 'Opera/') + 6, 4) ; return ($fVersion >= 9.2) ;

And bug will be fixed.

#3228 List plugin not right on pseudo block Martin Kou Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with selection:
    <p>
    	te^xt<br />text</p>
    
  3. Click on list command;
    • Expected Result:
      <ol>
      	<li>
      		text</li>
      </ol>
      <p>
      	<br />
      	text</p>
      
    • Actual Result:
      <ol>
      	<li>
      		text<br />
      		text</li>
      </ol>
      
#3229 Flash dialog is not clear up preview area Garry Yao Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by code example page;
  2. Open flash dialog and fill in url with : http://f.friendster-tweakers.com/rsc/swf/clock/fsdbp.swf, specify width with '100', height with '100', click Ok to insert the flash.
  3. Open flash dialog again to add another new flash;
  • Actual Result : The previous flash content is still in the preview area.
#3232 FCKEditor already is loaded? Task Normal FCKeditor 2.6.5 General
Description

How do know if FCKEditor already is loaded?

Because I try get your text using getHTML method, then need this information.

#3233 Corrections to Hebrew translation Artur Formella Bug Normal Project : MediaWiki+FCKeditor
Description

Made some mistakes on my original Hebrew translation files (sorry). These correct them.

#3236 MediaWiki, FCKeditor & Speller Pages Bug Normal UI : Spell Checker
Description

Hello,

I'm currently struggling to figure out why I can't get speller pages/aspell working with the above. I've installed aspell and made sure the fckconfig.js and spellchecker.php files are pointing to the correct directory, but the spell check button won't appear on the fckeditor toolbar. I'm on a Win 2003 server using xampp.

I've read on a few of the install notes that some people are able to browse to http://localhost/spellerpages and the can see the spell check, however i cannot...

Any help on this would be greatly appreciated!

Thanks,

Mike

#3237 ckreleaser doesn't recognize custom skin path Bug Normal CKEditor 3.0 General
Description

With the feature introduced at #3207, the ckreleaser is not able to find the skin files as it assume the skin name 'default'.

#3239 Add editorTitle to language files Artur Formella Task Normal CKEditor 3.0 UI : Language
Description

After #3213 editor doesn't work in non English browsers due to lack of "editorTitle" translation.

#3240 Font style not correct with existed style Garry Yao Bug Normal CKEditor 3.0 General
Description

When inline style is applied, it should always create at the possible outmost, with selection enlarged.

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the content along with selection as below by double click 'text':
    <b><i>^text^</i></b>
    
  3. Click on 'Font' to open combo and select 'Arial' option;
    • Expected Result:
      <p>
      	<span style="font-family: Arial,Helvetica,sans-serif;"><b><i>text</i></b></span></p>
      
    • Actual Result: An JavaScript Error thrown;
      <p>
      	<b><i><span style="font-family: Arial,Helvetica,sans-serif;">text</span></i></b></p>
      
#3241 Htmlwriter self-closing tag problem Bug Normal CKEditor 3.0 General
Description

Writer should be able to represent block-level self-closing element as they are.

Reproducing Procedures

  1. Open the replace by class example page;
  2. Switch to 'source' mode and make the following input:
    <p />
    
  3. Switch to 'wysiwyg' mode and switch back.
    • Actual Result:
      <p>
      </p>
      
    • Expected Result :
      <p />
      
#3242 Showblock ignore table and list Bug Normal CKEditor 3.0 General
Description

Showblock command should also outline table/list elements.

#3244 Apply block style accross table problem Garry Yao Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection by click and drag the mouse over the two cells:
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
    	<tbody>
    		<tr>
    			^<td>
    				text<br />
    			</td>
    			<td>
    				text<br />
    			</td>^
    		</tr>
    	</tbody>
    </table>
    
  1. Open 'Styles' combo and select the first option 'Blue Title'.
    • Actual Result:
      <table cellspacing="1" cellpadding="1" border="1" style="width: 200px;">
          <tbody>
              <tr>
                  <td>
                  <h3 style="color: Blue;">text</h3>
                  </td>
                  <h3 style="color: Blue;"></h3>
                  <h3 style="color: Blue;"></h3>
                  <td>
                  <h3 style="color: Blue;">text</h3>
                  </td>
              </tr>
          </tbody>
      </table>
      
  • Expected Result :
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
    	<tbody>
    		<tr>
    			<td>
    				<h3 style="color: Blue;">
    					text</h3>
    			</td>
    			<td>
    				<h3 style="color: Blue;">
    					text</h3>
    			</td>
    		</tr>
    	</tbody>
    </table>
    
#3245 Stylecombo missing options problem Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection on whole document by click 'Select All' command;
    ^<table border="1" cellpadding="1" cellspacing="1" style="width: 200px; height: 46px;">
    	<tbody>
    		<tr>
    			<td>
    				text
    			</td>
    		</tr>
    	</tbody>
    </table>^
    
  3. Open 'Styles' combo;
    • Actual Result: There's no option displayed in dropdown list.
#3246 Indent table problem Bug Normal General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection;
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px; height: 46px;">
    	<tbody>
    		<tr>
    			<td>
    				^text
    			</td>
    			<td>
    				text^
    			</td>
    
    		</tr>
    	</tbody>
    </table>
    
  3. Click 'Indent' button;
    • Actual Result:
      <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
      	<tbody>
      		<tr>
      			<td>
      				<p>
      					text</p>
      			</td>
      			<td>
      				<p>
      					text</p>
      			</td>
      		</tr>
      	</tbody>
      </table>
      
      
  • Expected Result:
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px; height: 46px;">
    	<tbody>
    		<tr>
    			<td>
    				<p style="margin-left: 40px;">
    					text</p>
    			</td>
    			<td>
    				<p style="margin-left: 40px;">
    					text</p>
    			</td>
    		</tr>
    	</tbody>
    </table>
    
    
#3247 Unable to increase indent on list Bug Normal General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection;
    <ul>
    	<li>^text</li>
    </ul>
    
  3. Check the 'Increase Indent command'.
    • Actual Result: The 'Increase Indent' command is disabled.
    • Expected Result : The command is enabled, and after click on the command, the content will become:
      <ul style="margin-left: 40px;">
      	<li>
      		text</li>
      </ul>
      
#3248 Indent problem with nested list item Bug Normal General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection;
    <ol>
    	<li>
    		level1</li>
    	<li>
    		^leve1
    		<ol>
    			<li>
    				level2</li>
    		</ol>
    	</li>
    </ol>
    
  3. Click on 'Increase Indent' command;
    • Expected Result :
      <ol>
      	<li>
      		level1</li>
      		<ol>
      			<li>
      				^leve1</li>
      			<li>
      				level2</li>
      		</ol>
      </ol>
      
    • Actual Result:
      <ol>
      	<li>
      		level1
      		<ol>
      			<li>
      				leve1
      				<ol>
      					<li>
      						level2</li>
      				</ol>
      			</li>
      		</ol>
      	</li>
      </ol>
      
#3249 'Deleted Text' Style within list item problem Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection;
    <ol>
    	<li>
    		<p>
    			^text^</p>
    	</li>
    </ol>
    
  3. Open 'Style Combo' and select 'Deleted Text' option;
    • Expected Result :
      <ol>
      	<li>
      		<p>
      			<del>
      				text</del></p>
      	</li>
      </ol>
      
    • Actual Result:
      <ol>
      	<li>
      		<p>
      		</p>
      		<del>
      		<p>
      			text</p>
      		</del></li>
      </ol>
      
#3250 Undo support for combo and panelbutton based command Artur Formella Task Normal CKEditor 3.0 General
Description

Undo/Redo support for RichCombo and PanelButton is to be implemented.

#3251 Undo support for EnteryKey Artur Formella Task Normal CKEditor 3.0 General
Description

Undo/Redo support for EnterKeyis to be implemented.

#3252 Deletion within nested list item is incorrect Bug Normal General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection;
    <ol>
    	<li>
    		lev^el1
    		<ol>
    			<li>
    				lev^el2<br />
    			</li>
    		</ol>
    	</li>
    </ol>
    
  3. Press 'Ctrl-X' to perform deletion on the seletion range.
    • Actual Result:
      <ol>
      	<li>
      		lev
      		<ol>
      			<li>
      				el2<br />
      				</li>
      		</ol>
      	</li>
      </ol>
      
    • Expected Result:
      <ol>
      	<li>
      		level2<br /></li>
      </ol>
      
#3253 List is incorrectly counting br Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection by click 'Select All' command;
    ^text^
    
  3. Click on 'Numbered List ' command to apply ;
    • Actual Result:
      <ol>
      	<li>
      		text</li>
      	<li>
                      <br />
      	</li>
      </ol>
      
    • Expected Result:
      <ol>
      	<li>
      		text</li>
      </ol>
      
#3255 List across table cells incorrect Bug Normal General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Make the following content with the selection by click and drag over table cells;
    <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
    	<tbody>
    		<tr>
    			^<td>
    				text</td>
    		</tr>
    		<tr>
    			<td>
    				text</td>^
    		</tr>
    	</tbody>
    </table>
    
  3. Click on 'Numbered List' to apply list style;
    • Actual Result:
      <ol>
      	<li>
      		text<br />
      		</li>
      </ol>
      <ol>
      	<li>
      		text<br />
      		</li>
      </ol>
      <ol>
      	<li>
      		<p>
      		</p>
      	</li>
      	<li>
      		<p>
      		</p>
      	</li>
      </ol>
      <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
      	<tbody>
      	</tbody>
      </table>
      
    • Expected Result:
      <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
      	<tbody>
      		<tr>
      			<td>
      				<ul>
      					<li>text</li></ul>
      				</td>
      		</tr>
      		<tr>
      			<td>
      				<ul>
      					<li>text</li></ul>
      				</td>
      		</tr>
      	</tbody>
      </table>
      
#3257 List doesn't preserve block style Garry Yao Bug Normal CKEditor 3.3 Core : Lists
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Open 'Format' combo and select 'Heading 1' style;
  3. Click on 'Numbered List' to apply list format;
    • Actual Result:
      <ol>
      	<li>
      		This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</li>
      </ol>
      
    • Expected Result:
      <ol>
      	<li>
      		<h1>
      				This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</h1></li>
      </ol>
      
#3259 Find/Replace is not undoable Artur Formella Bug Normal CKEditor 3.0 General
Description

Undo control is not working when the changes are made by the Find/Replace.

#3260 Extra line is getting added after <p> tag Bug Normal Core : Output Data
Description

After <p> tag, there is an extra line added for the text entered by the user. This was not happening in 2.6.x release thus this new behavior breaks our code.

#3263 In Safari 3.x release, Tab and Shift Tab is not reaching the editor area. Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

In Safari 3.x release, Tab and Shift Tab is not able to reach the editor area at all. Thus user can't reach the editor area using tab or shift tab.

#3264 Templates New Feature Normal General
Description

FCKeditor supports templates but I would like to have templates with forms and images or logos which are uneditable. Something like templates in MSPowerPoint.

For example, my text area is divided into 4 parts with only one part editable and one part is a kind of form which can be filled but not modified etc.

#3265 Watered down editor for registered users New Feature Normal General
Description

I prefer to allow registered users an editor similar to this one.

I would like for them to have UBB codes to embed images,videos with similar links [img] [youtube]

http://www.youtube.com/watch

http://tbn1.google.com/images

I would like for the tool to have a little screen just like on youtube. This way you enhance content viewing.

Links just don't do the trick. Also, using the image link takes them off my site as well. I would prefer they view video from my site pages.

Almost all forums user UBB codes and people are very familiar with them and how they work. They are much safer than HTML.

An image browser just accumulates a bunch of junk and users get mad when other users take or use their pictures.

I use Drupal.

Don't care if the Admin has full use of the FCKeditor. It's just too much problem validating and verifying users just so they can use your full featured WYSIWYG.

The FCKeditor is an excellent tool and I prefer it over all WYSIWYG editors.

#3267 Exception in selection plugin when loading hidden editor Bug Normal CKEditor 3.0 General
Description

If CKEditor is loaded in a hidden element, getRanges() in the selection plugin throws a JavaScript exception, since getNative returns null, and the return value isn't checked. Adding

if (sel === null)
   return [];

on line 447 of selection/plugin.js fixes the problem for me.

This problem can be duplicated in replace-by-class by adding "display: none" to the containing <p> element's style.

#3268 New icon for "Image Button" Bug Normal CKEditor 3.0 General
Description

The "Image Button" icon is exactly the same as the "Image" icon. We should have instead a well distinguishable icon, which should also help on avoid confusion with the "Image" button.

#3269 FCKEditor for Mediawiki Bug Normal Project : MediaWiki+FCKeditor
Description

Once an image is added, if you switch back to wikitext mode, and then switch back to rich editor mode, the image disappears, and the text [[Image:]] is all that remains. This happens reliably, though it's not clear to me if it's event-driven or based on some sort of count somewhere.

#3270 FCKeditor for Mediawiki: Templates "manual" menu presents templates in no particular order New Feature Normal Project : MediaWiki+FCKeditor
Description

With long lists of templates, it would be much easier to find the template you're looking for if they were listed in alphabetical order. Right now it seems that there is a mix of algorithms based on recency and alphabet such a segment of my list currently reads like

No w Link Statistics Spinal_cord Diseases_of_the_skin Documentation

It's like they're alphabetical by day. Straight alphabetical order would be much more helpful.

#3272 FCK Editor Loading problem Bug Normal General
Description

I am using fck editor 2.6.4 in my project.I am uploading the fck editor to ftp. When I run my application , it shows a popup error message as follows:

Error loading "http://prism.adiipl.com/~o360beta/admin360/ext/fckeditor/fckstyles.xml" (HTTP Status: 500) Do you want to see the server response dump?

#3273 Extension doesn't convert FCKeditor-generated HTML to WikiSyntax with "Show preview on first edit" turned on Bug Normal Project : MediaWiki+FCKeditor
Description

So I converted my DB to unicode and set $wgDBmysql15 to true. Now FCKeditor fails to convert HTML links to WikiSyntax. Links just stay as <a _fcknotitle="true" href="link">link</a>.

#3274 ElementsPatch toolbar moves the toolbar icons Artur Formella Bug Normal CKEditor 3.0 UI : Toolbar
Description

To reproduce

-set in toolbar/plugin.js

CKEDITOR.config.toolbarLocation = 'bottom';

-open replacebyclass example

-put cursor in "sample text"

-put cursor in FCKeditor

Result: toolbar icons jump in toolbar.

#3278 2.6.4 version Focus Problem Bug Normal General
Description

1)Right click any component and go to properties window. 2)Close that properties window. 3)The focus is gone to downside of the page.Focus is not retained with that particular component.

Version: 2.6.4 Browser: IE6 and IE7

#3279 CKEDITOR.replace(el) breaks save button's submit action Bug Normal General
Description

Working with "divreplace.html" from the samples folder, the "Save" button will not post back/submit the form that it is related to.

The "Save" button works fine in other areas, so I am assuming that its when you use CKEDITOR.replace() that it breaks. I have followed the javascript to its final method call when you click the button, and all seems the same.

Using Firebug, if I replace the onclick method call with [form name].submit() it works fine.

Could the "Save" button not picking up the correct name of the form when the CKEDITOR.replace(el).

Thanks

#3280 Consecutive Templates get combined on one line Bug Normal Project : MediaWiki+FCKeditor
Description

When the Rich Editor loads a wiki page with consecutive templates on separate lines, the editor combines the consecutive templates on the same line. For templates that depend on being on a separate line this messes them up.

For example: Wiki page {{Bruno}} {{To}} {{Bleh}}

When Loaded by the Rich Editor: Wiki page {{Bruno}} {{To}} {{Bleh}}

#3281 "Special Tag Properties" interface deletes tabs and blank spaces Bug Normal Project : MediaWiki+FCKeditor
Description

The FCKeditor/MediaWiki "Special Tag Properties" interface for adding and editing "special tags" deletes tabs and blank spaces at the beginning of the lines, i.e. when adding and editing xml-code (which contains blank spaces or tabs at the beginning of the lines).

This happens only in IE (7, 8) when a page is re-edited. No problems with Firefox.

"Extension:SyntaxHighlight GeSHi" for proper source code formatting installed.

Before:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<verzeichnis>
     <titel>Wikipedia Städteverzeichnis</titel>
     <eintrag>
          <stichwort>Genf</stichwort>
          <eintragstext>Genf ist der Sitz von ...</eintragstext>
     </eintrag>
     <eintrag>
          <stichwort>Köln</stichwort>
          <eintragstext>Köln ist eine Stadt, die ...</eintragstext>
     </eintrag>
</verzeichnis>

After:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<verzeichnis>
 <titel>Wikipedia Städteverzeichnis</titel>
 <eintrag>
 <stichwort>Genf</stichwort>
 <eintragstext>Genf ist der Sitz von ...</eintragstext>
 </eintrag>
 <eintrag>
 <stichwort>Köln</stichwort>
 <eintragstext>Köln ist eine Stadt, die ...</eintragstext>
 </eintrag>
</verzeichnis>
#3282 Skin files are not being loaded with timestamp Garry Yao Bug Normal CKEditor 3.0 General
Description

Looking at file requests in nightly build (skins) sample, it's possible to note that the skin.js file and the main CSS files don't have the timestamp ("t") parameter in the URL. We must ensure this parameter is properly sent to the server.

#3283 'CKEDITOR.dom.node.getPreviousSourceNode/getNextSourceNode' bug Garry Yao Bug Normal CKEditor 3.0 General
Description

I've detected the 'previous source node' is incorrect with the attache d TC.

#3284 UI Dialog - Span and div mixed Task Normal UI : Dialogs
Description

In the image plugin, at least "Alternative Text" is a div instead of a span like the other elements.

#3285 IE generates fixed urls for smilies Bug Normal CKEditor 3.0 General
Description

When config.smiley_path is set with a relative path IE generates full fixed urls to images.
e.g.

config.smiley_path='/application/ckeditor/plugins/smiley/images/'



Link generated:

<img src='http://localhost:9080/application/ckeditor/plugins/smiley/images/SomeImage.gif' />



Firefox handles relative urls as expected, e.g. generating:

<img src='/application/ckeditor/plugins/smiley/images/SomeImage.gif' /> 
#3286 IE : Smileys always have full URLs Frederico Caldeira Knabben Bug Normal CKEditor 3.0 General
Description

In IE, if setting the "smiley_path" configuration to a relative URL, the final <img> tags contain the full resolved URL instead.

IT works as expected with Firefox.

#3287 Flash object get lost Garry Yao Bug Normal CKEditor 3.0 General
Description

Reproducing Procedures

  1. Open the replace by class example page;
  2. Open 'Flash' dialog to Insert a random flash;
  3. Switch to 'Source' mode.
    • Actual Result: Flash object doesn't show in source.
#3288 Special character doesn't insert characters. Artur Formella Bug Normal CKEditor 3.0 General
Description

To reproduce open the Special Character dialog and click on any character.

The javascript error occurred in the wysiwyg plugin.

#3289 Show broken image icon in Firefox Artur Formella New Feature Normal CKEditor 3.0 General
Description

Firefox doesn't show missing images. This is very annoying. There is a way to show something instead.

Solution based on #2933 in attachment.

#3290 Implement collapse toolbar feature Frederico Caldeira Knabben New Feature Normal CKEditor 3.0 UI : Toolbar
Description

The collapse toolbar button is missing in CKEditor trunk.

#3291 Ctrl-V does not work in Paste from Word dialog Martin Kou Bug Normal CKEditor 3.0 UI : Dialogs
Description

To reproduce:

  1. Open replacebyclass.html in IE.
  2. Open the Paste from Word dialog.
  3. Copy some random text from MS Word.
  4. Paste into the Paste from Word dialog with Ctrl-V.
  5. Nothing happens.
#3292 CKEDITOR.dom.range.getBoundaryNodes with collapsed range Bug Normal CKEditor 3.1 General
Description

Currently the 'getBoundaryNodes' function is returning incorrect elements when range is collapsed, based on the semantic of the function, it should return 'null' for boundary nodes instead.

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