Custom Query
Results (2901 - 3000 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component | |
---|---|---|---|---|---|---|---|
#2776 | Window "jumps" and does not submit when submit button clicked (IE) | Bug | Normal | General | |||
Description |
Bug appeared in 2.6.3 (not present in earlier versions) and continues through SVN. Only occurs on pages that have a significant amount of content between the FCKeditor window, and the submit button of the form they both belong to. To reproduce:
Notes:
I hope this is clear enough, it's my first bug submission. Thanks. |
||||||
#2777 | It should not be possible to merge cells from one table section to another | Bug | Normal | FCKeditor 2.6.4 | General | ||
Description |
At the moment it is possible for example to merge cells in a thead with cells in a tbody. That should be made impossible, see this topic: http://www.fckeditor.net/forums/viewtopic.php?f=11&t=10726&start=60 Koen Willems |
||||||
#2779 | Spell check dialog partially obscured in IE 8 | Bug | Normal | General | |||
Description |
On the fckeditor demo page, open the spell check dialog in IE 8. Click on the title bar of the spell check dialog. Move the mouse. Before long, the right hand side of the window will obscured. Move the mouse some more and the right hand side of the dialog will re-appear. |
||||||
#2781 | FckEditor InsertHtml inserts extra <p> tags | Bug | Normal | Core : Output Data | |||
Description |
I've noticed lately that the FckEditor .InsertHTML call wraps the content in <p> tags. Is there a way to not have it do this? Because I open a new window for my editor, it keeps adding more and more <p> tags to the existing content. Is there a way around it? |
||||||
#2784 | Modernization and style fixes for fckeditor.pl | New Feature | Normal | Server : Perl | |||
Description |
As a first step to good Perl support in FCKeditor I upgraded fckeditor.pl to Perl 5. For "use strict;" it would require converting to a module which should be a next step. |
||||||
#2786 | Make it possible to define CSS to be loaded into the content by API | Bug | Normal | CKEditor 3.0 | General | ||
Description |
We are currently defining plugin specific CSS inside the contents.css file. This is bad, and such kind of definition should be possible to do inside the plugin definition itself. |
||||||
#2787 | Special character plugin doesn't work in IE | Bug | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
Special character dialog looks bad and doesn't work in IE. |
||||||
#2788 | img-tag: height/width-values are inside the style-tag after resizing | Bug | Normal | Core : Output Data | |||
Description |
I've found a strange behavior how the editor builds an img-tag. You can reproduce it by doing the following steps: 1: Insert an image by clicking the image-button. 2: Pressing the Source-button you will see the code as expected:
3: Press the Source-button again to go back to the preview. 4: Mark the image to get the little squares for resizing and resize it. 5: Take a look at the source again, you will get an img-tag like this:
As you see, height and width are inside the style-attribute now. Tested with fckeditor 2.6.3 and 2.6.4beta. I'll hope this behavior is bug. If not I'll run into big problems, because I have to analyze height and with of the img-tags of the html-source. And the normal behavior is much easier to analyze! |
||||||
#2789 | insertHtml() error | Bug | Normal | CKEditor 3.0 | Core : Output Data | ||
Description |
insertHtml function doesn't work in IE. To reproduce try run: editor.insertHtml( "aa bb cc" ); Result: Error in editingblock/plugin.js on line 65 |
||||||
#2790 | Write a sample on custom dialogs | Task | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
Write a sample page, api_dialog.html, which shows how the API can be used to:
It should be possible to do tasks 2-5 without needing to modify the dialog's .js file or its own definition code. |
||||||
#2791 | UI flashes when loading. | Bug | Normal | CKEditor 3.0 | General | ||
Description |
In Firefox, it's possible to quickly see the editor and the dialog rendered without skin even before the skin CSS is loaded. Then, once the CSS is ready, it redraws the UI in the right way. Not checked, but the same thing may happen with the contents. There should be a way to hold the rendering of any UI element until the CSS is loaded. |
||||||
#2793 | shortcuts editor needed | New Feature | Normal | UI : Enter Key | |||
Description |
Dear Sirs CKE staff! I think shortcut Editor for CKEditor is neeeded badly, especially for localized versions. It goes strangelly for 'Ctrl-C' 'Ctrl-V' knobs on localized machines (in my case – Russian OSX). On FCK forums lot of people where asling about shortcut work – and no reply! It means, problem persists :) |
||||||
#2794 | V3: Include INSTALL.html with basic installation instruction | New Feature | Normal | CKEditor 3.0 | General | ||
Description |
A file named INSTALL.html should be available at the root of our distribution, containing basic installation instructions, pointing to our documentation more information. |
||||||
#2800 | Wrong colspan after deleting column | Bug | Normal | Core : Tables | |||
Description |
Take a 3 * 2 table like this: <table title="tabel" cellspacing="0" cellpadding="0" summary="table"> <thead> <tr> <th scope="col">1</th> <th scope="col">2</th> </tr> </thead> <tbody> <tr> <td>a</td> <td>b</td> </tr> <tr> <td colspan="2">c</td> </tr> </tbody> </table> Now right click in cell b and delete that column. You will see that the colspan of cell c is not lowered (or, in this case, removed). |
||||||
#2801 | hebrew translate for 2.6.4b | Task | Normal | FCKeditor 2.6.4 | UI : Language | ||
Description |
hebrew translate for 2.6.4b |
||||||
#2802 | Dialog objects should be cached separately for each editor instance | Bug | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
The dialog plugin is caching dialog objects under CKEDITOR.dialog._.storedDialogs. This isn't correct because a dialog object created from the first editor instance would be used in the second, third, etc. editors as well. This needs to be fixed before #2790. |
||||||
#2803 | Separate default values from initial values in dialogs | Bug | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
Instead of treating the initial values in dialog opening as another set of default values, initial values in a dialog should be stored and deleted as a kind of its own. This removes the need for a default value stack in the dialogui and dialog plugin, also removes the need to "pop" default values when a dialog closes. |
||||||
#2807 | Fatal error when using content-type: application/xhtml+xml | New Feature | Normal | General | |||
Description |
Steps to reproduce:
<script type="text/javascript"> var oFCKeditor = new FCKeditor('content'); oFCKeditor.BasePath = "../externals/fckeditor/"; oFCKeditor.Value = ; oFCKeditor.Create(); </script> Result: FCKEditor is not started. The following error message can be seen in FireBug extension for Firefox. uncaught exception: Operation is not supported (NS_ERROR_DOM_NOT_SUPPORTED_ERR) [Break on this error] document.write( this.CreateHtml() ) ; fckeditor.js (line 67) This problem is not appearing if 'content-type: text/html' is used in HTTP headers. This problem has been reproduced on the following software: OS: Windows XP SP3 Eng Browsers: Firefox 3.0.5, Google Chrome 1.0.154.43, Safari 3.1.1 (525.17), Opera 9.63 |
||||||
#2808 | | changed to | in a table | Bug | Normal | Project : MediaWiki+FCKeditor | |||
Description |
Good evening! I was typing the following line into the cell of a table: [[Media:test.pdf|test]] When saved this should look like this: test However, it stays [[Media:test.pdf|test]] because FCKeditor changed the line to [[Media:test.pdf|test]] (only in a table). Thanks! az |
||||||
#2810 | style attribute needs protection | Bug | Normal | General | |||
Description |
Every browser changes the value of the style attrubute in the way it need. I think that this attribute should be protected like src/href attributes. It will fix some already reported issues (eg. #460) and the following bug in FF: If style attribute contains unsupported css properties, FF removes this properties after switching to wysiwyg mode. For example: Insert this code in source mode, switch to wysiwyg mode and back to source mode. <p style="zoom:1">This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p> Please, protect style attribute via _fck_style or anything. |
||||||
#2811 | Turkish Language File for v2.6.4b | New Feature | Normal | FCKeditor 2.6.4 | UI : Language | ||
Description |
added missing lines |
||||||
#2812 | internal wiki links - forced capitals problem | Bug | Normal | Project : MediaWiki+FCKeditor | |||
Description |
our documents are full of internal linking "shortcuts" where the users have put in things like [[river]] used to be that the parser would treat it as a valid wikilink in the form of [[river|River]] where river was the text to be displayed and River was the document name. and all was well. (hope I have the text/link order right in the wikilink example above) so a sentence in a document like MikeD went down to the [[river]] to fish displayed correctly after the document was saved and in view mode the word 'river' in the sentence was correctly linked to the document River. now I'm getting "MikeD went down to the River to fish" I've attepted to confirm that this is an FCK issue. Installed a fresh copy of MW 1.12.3, created new db, created 2 documents Mike and River, and then placed the wikitext shown above into the document titled Mike using the native MW editor. wikilinks work normally as expected and I see 'river' as the linked text to the document titled River. Then install latest SVN version of FCK/MW (2989) and then add require_once $IP . "/extensions/FCKeditor/FCKeditor.php"; to localsettings.php and reload the doc titled Mike and get to the edit tab, the wikilink changes to River as the linked text and River as the document title. |
||||||
#2813 | Deleting a row does not correct the rowspan of merged cells | Bug | Normal | Core : Tables | |||
Description |
Take a table like this: <table title="tabel" cellspacing="0" cellpadding="0" summary="table"> <thead> <tr> <th scope="col">1</th> <th scope="col">2</th> </tr> </thead> <tbody> <tr> <td>a</td> <td rowspan="3">b</td> </tr> <tr> <td>c</td> </tr> <tr> <td>d</td> </tr> </tbody> </table> Now, put the cursor in cell a, right click and remove that row. We see that cell b disappears. Or go to cell b and remove that row: cell b is deleted and cells c and d are left over. |
||||||
#2814 | Format text across multiple table cells doesn't work right | Bug | Normal | CKEditor 3.0 | General | ||
Description |
The bug I describe here seems to be new since version ~2.6.3. I don't think I've seen this behavior in earlier versions. Please fix this for the final 2.6.4 since it drives our web authors crazy. Thanks! Browsers & OS:
Browser Exception: With Safari 3.2.1 on OS X it works perfect! Steps to reproduce:
The result: Only the text of just one of the marked cells will be formatted while the rest remains untouched. Below you'll find the generated HTML code. As you can see, just cell in Row 1, Column 2 (R1C2) has received the text color even though I marked more then just one cell. <table width="200" cellspacing="1" cellpadding="1" border="1"> <tbody> <tr> <td>R1C1</td> <td><span style="color: rgb(255, 0, 0);">R1C2</span></td> </tr> <tr> <td>R2C1</td> <td>R2C2</td> </tr> <tr> <td>R3C1</td> <td>R3C1</td> </tr> </tbody> </table> |
||||||
#2816 | [IE] Refactor selection save/restore logic to work with focus state | Bug | Normal | CKEditor 3.0 | General | ||
Description |
Restore selection doesn't work for blued editor document. since editor is initially blured, direct dialog open will suffer from it. Procedures
|
||||||
#2817 | Adding necessary events for commands | Task | Normal | CKEditor 3.0 | General | ||
Description |
I found some commands side behaviors might need to be central controlled to reduce code DUP:
I wonder if we can hook these aspects of commands with some new types of events , which make many hacks/fixes transparent to the commands logic itself, so in this sense, it also benefits for user extension. The ones which I propose for discussing:
|
||||||
#2819 | Image dialog | Bug | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
There are still some bugs in the image dialog: -Image in preview area has wrong size in edit mode. -I should use inputs: onKeyDown in Height, Width, Border and H/Vspace (instead of onChange) -It can read image ratio and original image ratio and set 'Lock Ratio' if equal (check once on show) |
||||||
#2820 | Forms plugin | New Feature | Normal | CKEditor 3.0 | General | ||
Description |
Use of setup, commit, setupContent() and commitContent() in all dialogs in the Forms plugin Example: validate: function() { var func = CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed ); return func.apply( this ); }, setup : function( element ) { this.setValue( element.getAttribute( 'rows' ) ); }, commit : function( element ) { element.setAttribute( 'rows', this.getValue() ); } |
||||||
#2821 | floating numbers used in the page confuguration are converted to int | Bug | Normal | FCKeditor 2.6.5 | General | ||
Description |
If you set in the page that creates the editor a config option that uses a floating point number, oFCKeditor.Config['GoogleMaps_CenterLat'] = "46.95026"; then in the code the value will be the integer 46 due to the way that it's parsed in the fckconfig.js file. The patch does fix this behavior. |
||||||
#2824 | Missing definitions translation for RU language | Task | Normal | FCKeditor 2.6.4 | General | ||
Description |
CreateDiv : "Создать Div контейнер", MISSING
Div Dialog |
||||||
#2825 | When 'Maximize/Minimize' is clicked after maximizing, it does not restore to original size | Bug | Normal | UI : Dialogs | |||
Description |
When 'Maximize/Minimize' is clicked after , it restores it, but does not restore to original size . |
||||||
#2826 | divreplace example uses CSS features not available in IE6 | Bug | Normal | General | |||
Description |
As the title says: transparent borders and hover don't work in IE6. Probalby the solution is to create the hover effect with javascript. |
||||||
#2827 | Error in IE when uploading Image | Bug | Normal | General | |||
Description |
I am getting "Permission Denied" error (see attachment) when uploading .jpg Image in Internet Explorer on QA & Production servers. I am able to upload image on my local machine in IE. |
||||||
#2828 | Full Screen Editor moves off screen | Bug | Normal | General | |||
Description |
When I edit a page sometimes the editor moves of screen and I can no longer see the toolbar. I do have the Doc type specified on the first line of the document. I have attached a screen shot of the editor while showing the problem. It does not happen every time. Most often I see it happen when I drag and drop an element on the page I don't know if it is the table or the div. I use drupal 5.14, with the current stable version of the editor, and of the fckeditor module for drupal. I have tried the nightly and experienced the same issues. This problem occurs in IE. A link to my editor is http://www.read-write.cdp.com/devel/node/59/edit I am unable to reproduce on the test site here. What else should I check or try. |
||||||
#2829 | position:absolute | Bug | Normal | Core : Styles | |||
Description |
Hi! I have problem with FCKeditor. It's don't work with position:absolute; |
||||||
#2830 | No Teaser button in default and full FCKeditor v.2.6.4b | Bug | Normal | General | |||
Description |
No Teaser break button in FCKeditor v.2.6.4b I checked your Sample1 (all features) and Sample4 (default)at http://www.fckeditor.net/nightly/fckeditor/_samples/default.html and your samples 1 and 4 do not have it! - your Sample 1 view I have windows Vista Home and IE 7. Thanks |
||||||
#2831 | Link dialog ignores id field in Advanced Tab. | Bug | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
To reproduce:
This bug depends on the refactoring patch of the link dialog I just submitted to Fred. |
||||||
#2832 | Filling in the name field in Link dialog converts link to anchor. | Bug | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
To reproduce:
|
||||||
#2833 | Link dialog does not clear popup target attributes in links. | Bug | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
To reproduce:
|
||||||
#2834 | After calling GetData (GetHTML, GetXHTML) in IE6 & IE7 it is impossible to unbold text | Bug | Normal | General | |||
Description |
After GetData (GetHTML, GetXHTML) is called, it is impossible to unbold text, which was bolded pefore listed APIs calling. It's happen in IE6 & IE7 only. FF and Safary for windows work normal. When "Source" button is clicked twice to show & hide sources, then unbolding is possible again, but it is not solution for my case. Please advice something... It is used in very urgent project, which require FCK upgrade to 2.6.3 from 2.3.2. In 2.3.2 there was not such bug. |
||||||
#2835 | plugin:newpage failed to refresh elementpath | Bug | Normal | CKEditor 3.0 | General | ||
Description |
Steps to reproduce:
|
||||||
#2837 | Basicstyle plugin bug | Bug | Normal | CKEditor 3.0 | General | ||
Description |
Steps to reproduce: -Open trunk/_samples/sample.html?sample=replacebyclass in IE -Select "some" and click Bold. -Click Source. -Back to WYSIWYG. -Select "using" and click Bold. Result: JS error. Source code: <p _cke_expando="65"> This is <strong _cke_expando="70">some sample text</strong>. You are <span _cke_expando="78" _fck_bookmark="1" style="DISPLAY: none"> </span>using <span _cke_expando="78" _fck_bookmark="1" style="DISPLAY: none"> </span><a _cke_expando="79" href="http://www.fckeditor.net/">FCKeditor</a>.</p> In FF works fine. |
||||||
#2838 | V3: Initial selection bug | Bug | Normal | CKEditor 3.0 | General | ||
Description |
This bug is probably connected with initial selection. Steps to reproduce: -Open sample.html?sample=replacebyclass -(Don't click the document). Click button to insert a Smile -Click any smile. Result: JS error. The same behavior using Special Character dialog or after using New Page button. It occur in IE, Safari, Opera but not in FF. |
||||||
#2839 | Refactor link dialog to use setup/commit system. | Bug | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
The link dialog is currently giving out errors in the api_dialog.html sample because removing fields and tabs in the old dialog API does not remove the related dialog logic. The setup and commit API was introduced earlier to tackle this problem. The link dialog's code should be converted to use it so that the api_dialog.html sample would be complete. |
||||||
#2841 | Live demo would come in handy | New Feature | Normal | General | |||
Description |
A live demo of the editor would be welcome to quickly track progress and assess loading speed, shortening the download - upload to extranet cycle |
||||||
#2842 | Search and replace in Source mode. | New Feature | Normal | General | |||
Description |
This is a feature request from Ron Korving while I was talking to him on Skype. Search and replace in Source mode is useful for doing things that are difficult or inefficient in WYSIWYG mode. e.g. A user may want to replace all <div> tags to <p> in the HTML document - doing that in WYSIWYG mode one-by-one is error prone and time consuming. Assigning this under 3.x so we can try it after the initial 3.0 release. This feature shouldn't be hard to implement. |
||||||
#2843 | Equivalent range selection from WYSIWYG to Source mode. | New Feature | Normal | General | |||
Description |
This is a feature request from Ron Korving while I was talking with him on Skype. It's difficult to search for a particular DOM node's position in Source mode while editing a long document. So it would be nice if the editor can automatically select the equivalent position in Source mode after switching from WYSIWYG mode. Filing it under 3.x so we can investigate this after the 3.0 release. |
||||||
#2844 | Make <APPLET> tag act like <EMBED> or <OBJECT> | Bug | Normal | Core : Output Data | |||
Description |
It's a very small change in code (i made it in 5 min in packed javascript...). It's needed to make possible to insert, for exemple, geogebra applet in fckeditor. in : _source/internals/fck.js: replace : sTags += sTags.length > 0 ? '|ABBR|XML|EMBED|OBJECT' : 'ABBR|XML|EMBED|OBJECT' ; by : sTags += sTags.length > 0 ? '|ABBR|XML|EMBED|OBJECT|APPLET' : 'ABBR|XML|EMBED|OBJECT|APPLET' ; in : _source/internals/fcklistslib.js: replace : StyleObjectElements : { img:1,hr:1,li:1,table:1,tr:1,td:1,embed:1,object:1,ol:1,ul:1 }, by : StyleObjectElements : { img:1,hr:1,li:1,table:1,tr:1,td:1,embed:1,object:1,applet:1,ol:1,ul:1 }, in : _source/internals/fckdocumentprocessor.js after : processElementsByName( 'embed', doc ); add : processElementsByName( 'applet', doc ); That's all folk's ! |
||||||
#2845 | inserted randomly | Bug | Normal | General | |||
Description |
As I am writing text and then checking the source, I am finding randomly inserted instead of a space. I have not been able to detect any reason why the editor would put in a non-breaking space. I am using the latest version inside of Drupal. I can send a sample if that would help. |
||||||
#2846 | French language file updates | New Feature | Normal | FCKeditor 2.6.4 | UI : Language | ||
Description |
French language file update, new table header translations. |
||||||
#2847 | Slovak language file updates and changes | Bug | Normal | UI : Language | |||
Description |
I'm attaching a language file update for the Slovak language. Contributed by Gabriel Kiš (Thanks!). |
||||||
#2849 | Lithuanian language translation | Task | Normal | UI : Language | |||
Description |
Added missing language constants to lithuanian language |
||||||
#2850 | How to store the formatted data? | Task | Normal | Core : Output Data | |||
Description |
HI I am new at this component and as far as I see during examples the FCK Editor creates an HTML output data, what makes me wonder If I want to store the captured data by the user in a database, should I store the HTML output? What kind of field would be needed in order to keep carriage returns, tabs and all that stuff that HTML involves? Thanks in advance. |
||||||
#2851 | IE7Pro support | New Feature | Normal | UI : Spell Checker | |||
Description |
as mentioned in http://www.fckeditor.net/forums/viewtopic.php?f=5&t=8882&p=23119&hilit=ie7pro#p23119 Hi, IE7 Pro come with spelling functionality. The way to do it is right clicking on the field you want to check. But with FCKEditor, there is a context menu that prevent it. Is it possible to integrate IE7Pro Spell checking in your context menu or called with the check button on your toolbar ? it will be very nice ! Thanks for your answer. |
||||||
#2852 | Move link dialog to v3 trunk. | Task | Normal | CKEditor 3.0 | General | ||
Description |
The link dialog did not make it to the v3 beta. It should be moved to trunk with all discovered issues (#2831, #2832, #2833, #2839) fixed. |
||||||
#2853 | Move image dialog to trunk. | Task | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
The image dialog didn't make it to v3 beta, so it needs to be moved to trunk with a review to both its UI and its logic. |
||||||
#2854 | Move table dialog to trunk. | New Feature | Normal | CKEditor 3.0 | UI : Dialogs | ||
Description |
The table dialog didn't make it to v3 beta. It needs to be moved to the trunk with a review to both its UI and logic. |
||||||
#2855 | <!-- Tidy found serious XHTML errors --> Text in output. | Bug | Normal | Project : MediaWiki+FCKeditor | |||
Description |
I'm using the FCKeditor+MediaWiki extension. Everytime I save my edits or switch between Wikitext and richtext, a new line is added: <!-- Tidy found serious XHTML errors --> Every save adds a new line of the above text. I'm running FCKeditor 2.6.4. I also downloaded the latest extension from SVN yesterday ($Rev$ 2008). I'm running MediaWiki 1.13.3 |
||||||
#2856 | Inches and Centimetres | Bug | Normal | FCKeditor 2.6.5 | General | ||
Description |
We still have people that work in Inches and NOT Centimetres. (Do not tell me off... I am trying to change them). In "fckeditor/editor/dialog/fck_paste.html" (CleanWord) you have: Remove margin styles. html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, ) ; html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*"/gi, "\"" ) ; html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, ) ; html = html.replace( /\s*TEXT-INDENT: 0cm\s*"/gi, "\"" ) ; You might want to change to: Remove margin styles. html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, ) ; html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*"/gi, "\"" ) ; html = html.replace( /\s*MARGIN: 0in 0in 0pt\s*;/gi, ) ; html = html.replace( /\s*MARGIN: 0in 0in 0pt\s*"/gi, "\"" ) ; html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, ) ; html = html.replace( /\s*TEXT-INDENT: 0cm\s*"/gi, "\"" ) ; html = html.replace( /\s*TEXT-INDENT: 0in\s*;/gi, ) ; html = html.replace( /\s*TEXT-INDENT: 0in\s*"/gi, "\"" ) ; |
||||||
#2857 | EditorAreaCSS IE8 | Bug | Normal | Core : Styles | |||
Description |
I've tested the FCK Editor 2.6.4 (Build 21629) with Internet Explorer 8 Release Candidate (v. 8.0.6001.18372IC). And most of the Features work fine! But there seems to be a problem when linking custom css styles with long file paths to the FCK Editor. I tried several different options to EditorAreaCSS, and this is what I found out:
Test value: FCKConfig.EditorAreaCSS = "/App_Themes/Blue/css/content.css";
Test value: FCKConfig.EditorAreaCSS = "/content.css, /App_Themes/Blue/css/content.css"; The Files were available and on the right place! In all other browser everything works fine. Any Solutions? GreetX |
||||||
#2858 | Appearance Dialog Boxes IE8 | Bug | Normal | UI : Dialogs | |||
Description |
I've tested the FCK Editor 2.6.4 (Build 21629) with Internet Explorer 8 Release Candidate (v. 8.0.6001.18372IC). And found two more issues. Screenshots for better comprehension are attached!
1. Dialog Box / Controls in it, aren’t sized properly
2. Empty Context Menu overrides FCK Editor with background |
||||||
#2860 | V3: Page Break | New Feature | Normal | CKEditor 3.0 | General | ||
Description |
Port the Page Break feature from FCKeditor to V3. |
||||||
#2861 | Missing translation in Slovenian language | Task | Normal | FCKeditor 2.6.5 | UI : Language | ||
Description |
Missing translation in Slovenian language |
||||||
#2862 | plugin:maximize porting from v2 | New Feature | Normal | CKEditor 3.0 | General | ||
Description |
Related v2 tickets:
|
||||||
#2863 | Move Print plugin to trunk. | Task | Normal | CKEditor 3.0 | General | ||
Description |
We need to move the Print plugin to trunk. |
||||||
#2864 | Implement the insert and remove numbered list and bullet list commands. | Task | Normal | CKEditor 3.0 | Core : Lists | ||
Description |
Need to implement the list commands and add them to the toolbar. |
||||||
#2865 | Implement the increase and decrease indent commands. | Task | Normal | CKEditor 3.0 | General | ||
Description |
Need to implement the increase/decrease indent commands, and add them to the toolbar. |
||||||
#2866 | Add OS Detection for Spellcheck and PHP 5 Support | Bug | Normal | General | |||
Description |
The spellerpages PHP script needs updated so that it does not use the "global" keyword, and it also needs automatic OS detection. I have fixed this myself, and attached. Thanks! |
||||||
#2867 | V3: Force Simple Ampersand | Bug | Normal | CKEditor 3.0 | General | ||
Description |
Port the Force Simple Ampersand feature from V2. |
||||||
#2868 | enable 'merge right' and 'merge down' in Firefox | New Feature | Normal | General | |||
Description |
In Gecko one can only merge cells by selecting them all. In other browsers merging can only be achieved by putting the cursor into one cell and do 'merge right' or 'merge down'. It would be better to enable 'merge right' and 'merge down' in Gecko too. In that case 'merge right' and 'merge down' are enabled in all browsers and in Gecko 'merge' is enabled too. |
||||||
#2869 | plugin:blockoutline porting from showblock of v2 | New Feature | Normal | CKEditor 3.0 | UI : Toolbar | ||
Description |
Related v2 tickets:
|
||||||
#2870 | Adding style to existing text does not work. | Bug | Normal | General | |||
Description |
I have created new styles for fck editor style menu. They are <p class="small"> and class="big". When i choose existing paragraph, fck editor fails to attach correct class to paragraph. Paragraph remains classless. When i add class to paragraph in source mode, then swapping styles workd perfectly. I am not sure about the version of the editor, since im not the one who has installed it. Licence says 2003-2007. alan.kesselmann@… |
||||||
#2871 | Implement DOM range iterator. | Task | Normal | CKEditor 3.0 | General | ||
Description |
#2864 and #2865 depends on DOM range iterator to work. So the DOM range iterator must be implemented first as a separate plugin. |
||||||
#2872 | Server side integration - CKEditor creator | New Feature | Normal | CKEditor 3.1 | Server : PHP | ||
Description |
Port the integration files from V2. |
||||||
#2873 | Server side integration - File Browser | New Feature | Normal | File Browser | |||
Description |
Port the file browser from V2. |
||||||
#2874 | tables: in FF caption seems to be in the wrong place | Bug | Normal | FCKeditor 2.6.5 | General | ||
Description |
FCKeditor generates the following <table ....> <thead> <tr> <th scope="col">1</th> <th scope="col">2</th> </tr> </thead> <caption>My Caption</caption> <tbody> <tr> <td>...</td> <td>...</td> </tr> </tbody> </table>
The following would be the correct markup <table ....> <caption>My Caption</caption> <thead> <tr> <th scope="col">1</th> <th scope="col">2</th> </tr> </thead> <tbody> <tr> <td>...</td> <td>...</td> </tr> </tbody> </table> Going further with my tests, I just found that the bug doesn't show up if you use MSIE7. My conclusions:
OR
|
||||||
#2875 | FCKConfig.BasePath should be root relative not absolute to URL | Bug | Normal | General | |||
Description |
This is not STRICTLY a bug but a concern for compatibility with a great deal of FCKEditor users with some of the main stream hosting companies like HostGator. I think it needs addressing so that more people can use FCK without problems... su_hosen or mod_security may not allow get variable to have absolute paths. This may throw a 403 permission denied error. The following example won't: http://www.example.com/editor/filemanager/browser/default/browser.html?Type=uploads&Connector=%2Feditor%2Ffilemanager%2Fconnectors%2Fphp%2Fconnector.php So to fix this the value of "FCKConfig.BasePath" should be root relative instead of absolute. Current value for our example; FCKConfig.BasePath = http://www.example.com/editor should be; FCKConfig.BasePath = /editor |
||||||
#2876 | V3: Simplify domWalker | Bug | Normal | CKEditor 3.0 | General | ||
Description |
The current domWalker implementation is much more complex than it needs to be. It's using our event system to control its execution even internally, with no benefit from it. It should instead use direct function calls, like onDown, onUp and onSibling. The event system is to be used if we know we may have more than one, or an unknonwn number of listeners to the events. It's there to give flexibility, not just because it's nice to code with it. If instead we know we'll just have a single listener, we can safely do direct function calls. This eliminates the overhead coming from the even system, which definitely impacts on performance. |
||||||
#2877 | Paste from Word inserts empty paragraphs | Bug | Normal | General | |||
Description |
If you copy a complete text-paragraph in MS Word and insert it with the FCKeditor-function "Paste from Word". The Editor creates an empty paragraph before the copied text in the Internet Explorer. In Firefox the editor inserts the emtpy paragraph behind the copied text. If you use the "Paste as plain text"-function it works correct and inserts no extra paragraph. So it is not possible to insert a Word-text-block in the middle of a existing text. We are using: FCKEditor: 2.6.4 Server: Apache 2.2.11 with PHP 5.2.8 Browser: Internet Explorer 6.0 & 7.0 / Firefox 3.0.6 |
||||||
#2878 | IE: Inserts a space at the end of a list-item | Bug | Normal | General | |||
Description |
The Internet Explorer creates a space at the end. We are using: FCKEditor: 2.6.4 Server: Apache 2.2.11 with PHP 5.2.8 Browser: Internet Explorer 6.0 & 7.0 / Firefox 3.0.6 |
||||||
#2879 | plugin:templates porting from v2 | Bug | Normal | CKEditor 3.0 | General | ||
Description |
Related v2 tickets:
New features in v3:
|
||||||
#2880 | on form submit replace function only working for firefox | Bug | Normal | General | |||
Description |
i think on form submit replace oEditor's content:filter special character(',",(,));i use GetData get oEditor's content after use SetData editor.i find it only working for firefox browser! sample: function postPrevFilter(fString){
} function filterEditorContents(EditorName){
} this form post server side replace fail!content is no filter looking this url:http://www.sdhr114.com/testdemo/3.asp |
||||||
#2881 | Need to click on Submit button twice if there are multiple fckeditor controls in one asp.net page | Bug | Normal | General | |||
Description |
Steps to reproduce:
Expected behavior: Click on the submit button should not jump back to the fckeditor control. User should never need to click on the submit button twice to submit the page. Note: This issue did not exist in earlier version (2.2.x). I ran into this issue after I upgraded to 2.6.3, and it still exists after I upgraded to 2.6.4. |
||||||
#2882 | V3 Save plugin | New Feature | Normal | CKEditor 3.0 | General | ||
Description |
Create Save plugin for V3 |
||||||
#2883 | Implement align commands. | Task | Normal | CKEditor 3.0 | General | ||
Description |
Need to implement the align commands and add them to the toolbar |
||||||
#2884 | Implement blockquote command. | Task | Normal | CKEditor 3.0 | General | ||
Description |
Need to implement blockquote command and add it to the toolbar |
||||||
#2885 | Implement the div container command. | Task | Normal | CKEditor 3.1 | General | ||
Description |
Need to implement the div container command and add it to the toolbar. |
||||||
#2886 | Implement logic for handling bogus BR nodes. | Task | Normal | CKEditor 3.0 | General | ||
Description |
The bogus BR logic is needed in many dialog and style-related commands (e.g. table, list, enter key, etc.) |
||||||
#2887 | Permisson denied when clicking on a file in the Resources Browser window | Bug | Normal | Server : ASP.Net | |||
Description |
Using .NET and FCK editor v2.6.3.22451 I can upload files just fine but when I try to click on them I get an error: Permission Denied in the javascript on this line in the "frmresourceslist.html": window.top.opener.SetUrl( encodeURI( fileUrl ).replace( '#', '%23' ) ) ; I'm using FCK edit from admin.domainname.com to www.domainname.com. I have everything setup properly (i think), the files are being uploaded to the proper domain. |
||||||
#2889 | Access denied when using GetHtml - IE | Bug | Normal | General | |||
Description |
See this link for details: http://www.fckeditor.net/forums/viewtopic.php?f=6&t=12952 |
||||||
#2890 | Preview plugin | New Feature | Normal | CKEditor 3.0 | General | ||
Description |
Need to implement the preview plugin with toolbar icon. |
||||||
#2892 | Opera 9.62 bug | Bug | Normal | General | |||
Description |
This bug happens after several reloads and postbacks (ASP.Net) Here is Opera Error report: Error: name: TypeError message: Statement on line 36: Cannot convert undefined or null to Object Backtrace:
|
||||||
#2893 | FCK table handler bug | Bug | Normal | General | |||
Description |
Bug description: If the following conditions are met:
then there will be a javascript error inside FCKTableHandler.GetSelectedCells Fix: After the line:
We tested whether or not the selection is inside FCKeditor:
(returning an empty array if the selection/cursor is outside FCKeditor) This bug was similar to https://dev.fckeditor.net/changeset/827 |
||||||
#2894 | GetParentElement wrongly gives body sometimes for ff and webkit | Bug | Normal | General | |||
Description |
GetParentElement in Firefox and webkit wrongly returns the body as parent element when the cursor is simply placed inside a div without an object selected or without the cursor in or bordering text (possibly only when there's no text in the div). A fix is as following (code assumes to be inside a dialog): var dialog = window.parent; var editorWindow = dialog.InnerDialogLoaded(); var editorInstance = editorWindow.FCK; selectedElement = editorWindow.FCKSelection.GetParentElement(); if (selectedElement.tagName.toLowerCase() == 'body' && editorInstance.EditorWindow.getSelection) { var selection = editorInstance.EditorWindow.getSelection(); selectedElement = selection.anchorNode; } |
||||||
#2896 | plugin:form move to trunk | Task | Normal | CKEditor 3.0 | General | ||
Description |
Form plugin is required to move to trunk. |
||||||
#2897 | plugin:checkbox move to trunk | Task | Normal | CKEditor 3.0 | General | ||
Description |
Checkbox plugin is required to move to trunk. |
||||||
#2898 | plugin:radiobutton move to trunk | Task | Normal | CKEditor 3.0 | General | ||
Description |
Radiobutton plugin is required to move to trunk. |
||||||
#2899 | plugin:textfiled move to trunk | Task | Normal | CKEditor 3.0 | General | ||
Description |
Textfield plugin is required to move to trunk. |
||||||
#2900 | plugin:textarea move to trunk | Task | Normal | CKEditor 3.0 | General | ||
Description |
Textarea plugin is required to move to trunk. |
||||||
#2901 | plugin:selectionfield move to trunk | Task | Normal | CKEditor 3.0 | General | ||
Description |
Selection Field plugin is required to move to trunk. |