Custom Query
Results (1 - 100 of 148)
Ticket | Summary | Keywords | Owner | Type | Status | Priority |
---|---|---|---|---|---|---|
#1936 | Inline spelling support? | Discussion | New Feature | closed | Low | |
Description |
Some of the big webmail providers (e.g. Google, Yahoo) have Ajax spell checking with in-line marks showing typos, and a drop down menu of suggestings. Any possibilities to integrate such for FCKeditor would be a home run! |
|||||
#2578 | Opera browser fit to width loses edit area | Opera Discussion | Bug | confirmed | Low | |
Description |
When using the Opera browser (V9.52 on Windows XP), if I change the view settings to 'Fit to Width' then the edit area of the FCKEditor disappears. The buttons remain however. This happens within my instance of the editor and also on your demonstration page using V2.6.3 of your editor. |
|||||
#3385 | toString() for easy debugging | Discussion | New Feature | closed | Low | |
Description |
Perhaps it's better to implement the 'toString' method on some core objects to help the debugger(e.g. Firebug) having a text presentation for them, which is friendly for debugging. |
|||||
#3724 | Slow and unusable editor when inserting 999x99 table | Discussion | Bug | closed | Low | |
Description |
When we insert a table with 999x99 cells, Firefox get slow and editing is no more possible. This test is not something users often do, but one of my clients did this test... Perhaps a limit should be fixed ? |
|||||
#9988 | Stop using <a> for everything. | Discussion | Task | confirmed | Low | |
Description |
What's reason to use <a> element with javascript: pseudo hrefs? I think we should use <button>'s for buttons. Why not? Or at least <span>'s. Same with context menus. |
|||||
#198 | Loading 'fck_editorarea.css' two times per instances | Discussion | Bug | closed | Normal | |
Description |
I don't think it's really a bug, but i sure think it should be solved someday. I was trying to improve the loadingtime of fckeditor, since in a application I use 14 plugins. Studying the logfiles of my server i discovered that fck_editorarea.css is loaded two times per instance (in that specific CMS I use five instances, which makes 10 requests for fck_editorarea.css). With an empty cache the server gives a '200' at the first two request, at the other eight request the server generates a '304'. Well, although a '304' doesn't generate traffic, it still does take some time. So i think it would be better that fck_editorarea.css is only asked for once per instance, instead of twice. I was looking at the code, but could not figure out why it's called two times. By the way: this only happens with IE 6 and IE 7. Regards, Koen Willems |
|||||
#311 | Option to disable ContextMenu | Discussion | New Feature | closed | Normal | |
Description |
It would be nice to have an option to disable FCKEditor custom Context menu. This way, browsers spellcheckers (google toolbar or FF2) may be used, for example. It may be done in fckeditor.htm, line 103: // Initialize the editing area context menu. FCK_ContextMenu_Init() ; replaced by: // Initialize the editing area context menu. if ( FCKConfig.ContextMenu != null ) FCK_ContextMenu_Init() ; in fck_gecko.js, line 62: // Reset the context menu. if ( FCKConfig.ContextMenu != null ) { FCK.ContextMenu._InnerContextMenu.SetMouseClickWindow( FCK.EditorWindow ) ; FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument ) ; } and in fck_ie.js, line 129: // Reset the context menu. if ( FCKConfig.ContextMenu != null ) FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument.body); You just have to set FCKConfig.ContextMenu = null; in your custom config file to disable the custom menu in the editor area. Default context menu is still disabled on FCK toolbars. Most features are still available through toolbar buttons. Proposed implementation tested on FF 2.0.0.3 and IE6. |
|||||
#424 | FCKeditor Lite | Discussion | New Feature | closed | Normal | |
Description |
It would be great to have a lite version for the Fckeditor, just for small needs like bold, italic, numbering, bullet, link. Cause right now, the control takes too much resources on loading. |
|||||
#428 | IE problems created unordered list from pasted list | Discussion | Bug | closed | Normal | |
Description |
IE is not working correctly when pasting a list of text.
* Escape from "Corporate-Cubical Hell" * A Series of Law-Lectures * The Weather * An Overnight Jazz D.J. * A 6-Pack on my Patio
Source code generated: <ul> <li><br /> * Escape from "Corporate-Cubical Hell"<br /> * A Series of Law-Lectures<br /> * The Weather<br /> * An Overnight Jazz D.J.<br /> * A 6-Pack on my Patio</li> </ul> Same behavior is pasting with Ctrl+v, Paste toolbar, Paste as Plain Text, or Paste from Word (with Ctrl+v) FF generates a bulleted list using the steps above. Source code: <p> </p> <ul> <li>* Escape from "Corporate-Cubical Hell"</li> <li>* A Series of Law-Lectures</li> <li>* The Weather</li> <li>* An Overnight Jazz D.J.</li> <li>* A 6-Pack on my Patio</li> </ul> |
|||||
#513 | Implement source view with rich text area (designMode=on) | Discussion | New Feature | new | Normal | |
Description |
Implement the source view as an IFRAME with designMode=on (using FCKEditingArea), instead of using the <textarea>. This change would give us many new possibilities to enhance the source view, like source code coloring, automatic selection positioning, and other features that could be implemented by using the DOM only. Before doing this, we need to discuss all pros and cons of it, and the real possibility to implement it on browsers. |
|||||
#590 | Cluster toolbar items into dropdowns | SF Discussion | New Feature | new | Normal | |
Description |
Yahoo Mail has a wysiwyg editor for composing emails, and its toolbar has only one icon for alignment which drops down for left/right/centre/justify. same with bullets. Also, the colour selector, font, font size, and smilies all use the same system. Its doesn't overwhelm the user with buttons. simple like plucking fruit from a tree! There's another sourceforge project which does the same little dropdown windowing system: http://sourceforge.net/projects/xsdheditor/ Not fckn half as good as fckeditor tho.
Moved from SF: |
|||||
#600 | Enhanced file/image explorer | SF Discussion | New Feature | closed | Normal | |
Description |
I just stumbled on this the other day: http://nanotree.sourceforge.net Using this as folder tree would make for an excellent file and image explorer allowing users to categorize files and images using folders. Logically the file and image upload components would also have to use it to allow users to specifiy folders. Initially webmasters would have to specify a folderstructure (or it auto-scans) and down the road users could themselves add/modify/delete folders. Unfortunately I don't think my dhtml is up to par to do it myself. This would make and already great editor excellent. Please post your thoughts.
Moved from SF: |
|||||
#667 | [SS] Combination of a link and a style | SF Discussion | Bug | new | Normal | |
Description |
Following situation: Prerequisites
<Style name="Fat link" element="a"> <Attribute name="class" value="aBold" /> </Style>
IE behavior crashes with Unknown runtime error Line 28 in fckstyledef_ie.js > e.innerHTML = oRange.htmlText ; May be it is a IE bug... FF behaviour Firefox has 2 conditions
New document -> New <a class="aBold"><a href="bala.ccc/">document</a></a><a href="bala.ccc/" />
In both browsers if the style choise is done first, there are no problems. This problem is not as big in new documents as in old stuff where hyperlinks exist and have to be "re-styled" or modified. Best regards SelfMan
Moved from SF: |
|||||
#686 | FCKeditor.Net: UserFilesPath | SF Discussion | Bug | closed | Normal | |
Description |
in "FileWorkerBase.cs" -> "UserFilesPath" property there is a mistake in order to determine which of "sUserFilesPath" variable will be set. Watch this: [original code] ... ... // Otherwise use the default value. if ( sUserFilesPath == null || sUserFilesPath.Length == 0 ) sUserFilesPath = DEFAULT_USER_FILES_PATH ; // Try to get from the URL. if ( sUserFilesPath == null || sUserFilesPath.Length == 0 ) { sUserFilesPath = Request.QueryString ["ServerPath"] ; } ... spotted? "Try to get from the URL." never works. [new code] ... ... // Otherwise use the default value. // Try to get from the URL. if ( sUserFilesPath == null || sUserFilesPath.Length == 0 ) { sUserFilesPath = Request.QueryString ["ServerPath"] ; } if ( sUserFilesPath == null || sUserFilesPath.Length == 0 ) sUserFilesPath = DEFAULT_USER_FILES_PATH ; ... Greetings, Gürhan Başbuğ.
Moved from SF: |
|||||
#722 | Custom FontColor in Toolbar? | Discussion | New Feature | closed | Normal | |
Description |
It would be cool to develop custom palettes in FCKConfig.FontColors and then be able to assign those palettes to specific ToolBarSets. I imagine that you could apply this paradigm to other similar items (FontNames, FontSizes, etc.) Perhaps by adding another layer of abstraction via an array. |
|||||
#838 | rename "smiley" to "icon" | SF Discussion | New Feature | closed | Normal | |
Description |
"smiley" is regarded as unprofessional in business use. The more generic term "icon" would be less problematic and mean the same.
Moved from SF: |
|||||
#855 | FCKeditor as a Local Text Editor. | SF Discussion | New Feature | new | Normal | |
Description |
Check out http://www.tiddlywiki.com/. This personal wiki program uses JavaScript to save files locally. It only uses html and javascript to do this. It works for all the major browsers (firefox, ie,...). I would like to see your program use the same type of technique to save it's data.
Moved from SF: |
|||||
#928 | Hitting Enter in a <li> </li> creates a new <li> | Discussion Pending SD-COE | Bug | closed | Normal | |
Description |
Pressing the Enter Key after a <li> </li> will create a new <li></li> instead of removing the <li> </li> that seemed empty for the user. |
|||||
#938 | create toolbar buttons at runtime | Discussion | New Feature | closed | Normal | |
Description |
In the line of thought my request 'create toolbar(set) at runtime' (Ticket #937), it would be great to be able to create buttons at runtime. I mean completely new buttons that were not available as plugins. |
|||||
#950 | File permissions of created connector files insecure | Discussion | Bug | closed | Normal | |
Description |
The uploader in PHP contains multiple instances of chmod( $sFilePath, 0777 ) ; for uploaded files or directory creations. Can I suggest this be changed to 0774. I can't think of any reason why the very insecure o+w should be enabled. 0770 would be preferable, but I guess there could be webservers that have the webserver process not in the main user/group. |
|||||
#1062 | On the fly changes to shared toolbar based on different configurations | Discussion | New Feature | closed | Normal | |
Description |
Using fckeditor with BodyClass='cpage'; define in main html: .cpage h1 { ...any-style-here... } when editor loads, all the format preview tabs are blank (white/white text) except where specifically defined in css with color:black |
|||||
#1066 | Multi-user simultaneous editing support | Discussion | New Feature | reopened | Normal | |
Description |
add online editing, allowing multiple users to redline and display all edits to the ower |
|||||
#1069 | File browser responses when wrong _FileBrowserLanguage is set and some general thoughts | Discussion | New Feature | closed | Normal | |
Description |
I know that people should read docs etc. but let's see how some of users test software before actually deciding about using it. They download file, unpack, then see _samples dir and simply run examples.
Since there is no README in _samples dir, it's not obvious that to run examples divieded into separate dirs for each language, user must do some additional config changes (that's how examples usually work).
So, because we can't split FCKeditor into separate distibutions for each server language (which would give us real statistics of using each distribution btw.)
I think it's important to give at least the most appropiate and descriptive error responses to the user to that specific error (and generally everywhere).
Very good example is problem with wrong _FileBrowserLanguage and _QuickUploadLanguage. In error message we are displaying contents of a whole file and "The server didn't send back a proper XML response." (see #227) - it says nothing to the user and it's not so easy to close that message on a small screen.
I suppose that some people wouldn't consider it as a configuration error but as a shortcoming and would be wondering whether they encounter more strange problems in the future.
My suggestion is that we could add in each connector.ext file some special tag in a comment section e.g. do not remove this line: #FCK_WRONG_LANGUAGE_ASP# And then if XML response is wrong, we could check before displaying error message whether such special tag exists and display more friendly information, for example: Your server didn't execute ASP file. Please check whether ASP is available or change your default server language in fckconfig.js (...) You can find more information here:... |
|||||
#1078 | Alternative ways to display the context menu | Discussion | New Feature | closed | Normal | |
Description |
There are security settings on browsers to block scripts from disabling the default context menu. In those cases, users will have no way to display our custom menu, as the only option we have for now is the right-click (as expected, btw). We should provide alternative ways to display the menu. Some proposals are:
|
|||||
#1083 | Cursor is placed outside of table but not inside next/previous paragraph | Confirmed IE Discussion | Bug | closed | Normal | |
Description |
Scenario:
Tested in nightly build with IE7 The wrongly placed cursor is a bit confusing for the user. |
|||||
#1097 | drop-down box in toolbar for dynamically switching new skins | Discussion | New Feature | closed | Normal | |
Description |
Dear Fred & developers, There'd better be drop-down/combo box for dynamically switching new skins (Default/Office/Silver). We could add cookie implementation for remembering user's favorite skin. Currently what we see in JavaScript Sample 05 is a separate part of editor toolbar. What I'd like to suggest is that drop-down box combined in editor toolbar. Thank you so. aungkhant |
|||||
#1135 | Option: Toolbar Replacement | Discussion | New Feature | closed | Normal | |
Description |
Dear Fred and developers, In FCKeditor, the toolbar plays a vital role. What about Menu? Yeah, menu like 'File', 'Edit', 'Search', 'View', 'Format' as we see in windows applications. The menu will be at top of the toolbar or a temporary replacement of the toolbar. I imagine it'll be really nice to see both Menu and Toolbar together like in Word application. Thank you so much for your time, consideration and hardwork. |
|||||
#1146 | Create CSS-Style button | Discussion | New Feature | closed | Normal | |
Description |
Dear Fred and developers, As you already know, CSS can do incredible styling that plain HTML cannot. The newly CSS-Style button is disabled by default. When the user types some text, it becomes enabled. Click it. The "CSS Properties" dialog will appear. The dialog will have server tabs of CSS categories :-
Each category will have their respective CSS elements. e.g. For Text, there will be -
The eraser icon named 'Remove Format' must be able currently applied CSS style. Thank you so much for your time, consideration and hardwork. |
|||||
#1237 | Shift+Enter doens't work at first time in an empty paragraph (IE) | Confirmed IE Discussion | Bug | closed | Normal | |
Description |
Steps to Reproduce
The cursor will make a "quick strange blink", but there will be no visual results. Switching to source view, the second paragraph will display the correct HTML: <p><br /> </p> So it seams that the Shift+Enter itselft is working, but the selection is not being made visible after the <br>. |
|||||
#1308 | Paragraph justification should not have default values | Discussion | Bug | closed | Normal | |
Description |
This ticket is not here to define our definitive approach for it, but to open a discussion around this argument. With the recent rework made for the paragraph alignment features, we have also introduced an "automatic default" for the alignment buttons. It means that if the content is LTR, the left align button will be enabled by default. In RTL instead, the right align button will be highlighted instead. It sounded nice in the beginning, but now I'm a little bit worried about it. Let me bring some thoughts so we can discuss about it. Let's suppose we have the following HTML: <p>This is a test.</p> Looking at it as is, what is the alignment of this paragraph? "None", is the only correct answer. But FCKeditor says it is "Left Aligned" if LTR or "Right Aligned" if "RTL". The document direction setting in FCKeditor are there just to help reflecting the final result we'll have when loading the contents at the target web site. But the fact is that the direction information is not in any way saved along with the HTML produced with the editor. Now... what if I want to "force" the paragraph to be left aligned, even if the document is LTR. Here is a simple sample: <td align="center"> <p>This is a test.</p> </td> Here the editor is saying that my <p> is left aligned, which is not true. It is actually has no alignment specified, so it simply inherits it. But I can't make it left aligned, because the editor is saying that it is already to the left. There is a hack for it: align to right, and then to left. Those are just some issues that came to my mind. I know MS Word has this default behavior, but is also true that MS Word is not made to produce pieces of content to be injected, as FCKeditor does. Who knows how creatively will the content be used by our developers base. Maybe I'm wrong, so please correct me in this case. |
|||||
#1415 | empty div tags are removed | Discussion | Bug | confirmed | Normal | |
Description |
switch to source and paste <div id="black_box"></div> switch twice and you'll see that the content has been lost. (any browser) Reported in http://www.fckeditor.net/forums/viewtopic.php?f=6&t=7251 |
|||||
#1424 | Delete / backspace next to "Control" elements should select that control, rather than deleting | Discussion | New Feature | confirmed | Normal | |
Description |
When the cursor is placed next to (as IE puts it) a "control" element, such as an image or a table, it should select it on delete / backspace. This improves the intuitiveness of deleting and makes sure people dont delete things accidently. Here is a function partially implemented which does this FCKListsLib.ControlElements = {'img':1, 'table':1, 'input':1}; // Helper function upon deleting a node that may be a control (must select it first) // A control is something like an image or table which can be selected with the cursor FCKEnterKey.prototype.HandleControlNodeSelect = function(pRange, bIsForward) { // Check to see if we are about to delete an image or table // TODO: this is IE specific at the moment! if(FCKBrowserInfo.IsIE) { // TODO: this only works when a element is in a block var pStartBlock = pRange.StartBlock; if(pStartBlock) { var iDirection = bIsForward ? 0 : -1; var iOffset = pRange._Range.startOffset; var pPrevious = pStartBlock.childNodes[iOffset + iDirection]; if(pPrevious && FCKListsLib.ControlElements[nodeGetTagName(pPrevious)] != null) { FCKSelection.SelectNode(pPrevious); return true; } } } return false; } |
|||||
#1430 | Remove the "Media" type in the filemanager | Discussion | Task | closed | Normal | |
Description |
Split from http://dev.fckeditor.net/ticket/1325#comment:10 I don't think that it's used, so it's one item less in the configurations. |
|||||
#1465 | corestyles/stylelabel applied on div entermode | Discussion Pending | New Feature | closed | Normal | |
Description |
Using ie. div in EnterMode produces a clean div tag that embraces its content upon pressing enter or when loading the editor. Ie. <div>New paragraph</div> Could it be possible that the div-tag created by EnterMode to be affected by DefaultStyleLabel and/or CoreStyles? For instance, if having FCKConfig.EnterMode = 'div' ; ... FCKConfig.DefaultStyleLabel = 'myClass1' ; ... FCKConfig.CoreStyles = { ... 'div' : { Element : 'div', Attributes : { 'id' : 'myDiv1' } }, ... the EnterMode currently produces: <div>Text</div>. When it really should produce <div class="myClass1" id="myDiv1">Text</div> |
|||||
#1493 | Possibility to define the default block element attributes | Discussion Pending | New Feature | closed | Normal | |
Description |
It would be nice to have the ability to define the attributes the default block element should have. We are using 'p' as entermode and only classes to define the different styles in the text. The customer have the option to define the default paragraph style. It would have been nice if every methods instead of creating a empty paragraph tag created a paragraph with default attributes (e.g. default classname). |
|||||
#1630 | Source view: Undo removes all content | HasPatch Discussion | New Feature | closed | Normal | |
Description |
Browsers: Firefox 2.0.0.11 (win+lin), IE6+7
What happens: All the content is removed. What I expect: Only changes that I've done to be removed, not all the source. You'll have to use ctrl+y (or ctrl+shift+z) to get the content back because the undo/redo buttons in the tool bar are deactivated. Personally I think that's ok, but several users claim to know about the ctrl+z shortcut and not the redo shortcut. |
|||||
#1649 | Editor will not change the category | Discussion | New Feature | closed | Normal | |
Description |
If a page has a category entry, ex: category:animals, if you edit the page and type over the old category name with a new category name, such as reptiles, the category name does not change when you save the page. |
|||||
#1677 | Save/cancel button in the toolbars | Discussion | New Feature | closed | Normal | |
Description |
This extension should have a save and cancel button in the toolbar! |
|||||
#1689 | Deactivate XHTML validation | Discussion | New Feature | closed | Normal | |
Description |
Would it be possible to configure the activation of xhtml validation in the configuration file. This would resolve the problem raised in ticket 252 : http://dev.fckeditor.net/ticket/252. I have the same issue (Internet Explorer 6 & 7). |
|||||
#1709 | IE: Missing semicolon for last declaration in style attributes | Discussion | Bug | closed | Normal | |
Description |
The syntax generated in source view for IE is missing a semicolon when selecting a style or size format. 1.) Hightlight some text 2.) Select a custom style or font size (Highlight Green or Small for example) 3.) View source and take not of the syntax. <span style="font-size: small"> It should be <span style="font-size: small;"> This happens in IE 6 and IE 7 that I have noticed. It outputs correctly in Firefox. |
|||||
#1729 | Allowing user to click on link in editable area without holding CTRL button. | Discussion | New Feature | closed | Normal | |
Description |
User must be able to click on the link in editor area without holding CTRL button to open the linked page. Normally, in the current scenario, if user creates a link in FCKEditor, then to open that link, the user has to click on that link by holding CTRL key. What I'm asking is that user must be able to open that link page directly by clicking on it without holding CTRL key. Thank you. |
|||||
#1816 | sidebar for toolbar buttons + widgets/plugins | Discussion | New Feature | closed | Normal | |
Description |
A sidebar that can contain toolbar buttons and/or plugins/widgets. E.g. for often used toolbar buttons. Giving them a bigger button in a sidebar will ease the use of them. Or for often used plugins or plugins that want to display a little bit more, e.g. a clock that onclick displays a date picker. Example: Opera. |
|||||
#1817 | resizable editarea | Discussion | New Feature | closed | Normal | |
Description |
A handle at the bottom border of the editorArea or in the right-bottom corner to ondrag resize the editorArea. |
|||||
#1820 | Javascript frameworks within FCKeditor | Discussion | New Feature | closed | Normal | |
Description |
Being able to benefit from javascript frameworks within FCKeditor would be nice. But with everyone having his favorite one it should be possible to use multiple frameworks without having them collide with each other, or with the FCKeditor itself. |
|||||
#1821 | re-usable and documented ajax framework | Discussion | New Feature | closed | Normal | |
Description |
An ajax framework within FCKeditor that is easy to use for plugin developers. |
|||||
#1822 | FCKeditor as an engine? | Discussion | New Feature | closed | Normal | |
Description |
FCKeditor as en engine so that any custom GUI can use the functionality of it... See forum thread. |
|||||
#1823 | make the editor modular | Discussion | New Feature | closed | Normal | |
Description |
When the editor becomes more plugin based it might be a good idea to make the edit modular, so that people can download exactly what they want. A download page where functionality and/or plugins can be selected could be provided. (See for example the mootools download page with selectable compression type). See forum thread. (voting for core functionality could be an alternative) |
|||||
#1824 | table wizard | Discussion | New Feature | new | Normal | |
Description |
A table wizard as a GUI to create (complex) table structures. |
|||||
#1825 | Tango iconset, a "consistent user experience for Open Source | Discussion | New Feature | closed | Normal | |
Description |
I thing it's a good idea to use the Tango icon set by default. As it states on the website, the Tango Desktop Project exists to help create a consistent graphical user interface experience for free and Open Source software. I believe this is a great concept and one that FCKEditor can really benefit from. On the Tango site there is only a basic set available, but I believe other icons are available as well and can be found by searching with google ('tango' + 'openoffice', or the name of any other open source software for example). See the graphical design V3 guidelines See the forum thread. |
|||||
#1845 | Maintaining Cursor positioning in text area while switching views. | Discussion | Task | closed | Normal | |
Description |
I have an implementation that allows for webpage editing using WYSIWYG. When the view is switched to "Source" the cursor is positioned to the beginning of the page forcing the user to manually scroll to the area of interest. I would like to have the cursor position maintained eliminating the nuance of manually scrolling. For this I need a pointer to the element that holds the editor text. See the following code to obtain the cursor position on IE: <HTML> <HEAD> <SCRIPT LANGUAGE="JScript"> function saveCaret(elem) { if ( elem.isTextEdit ) elem.caretPos = document.selection.createRange(); } function getCaretPos(elem) { if ( elem.isTextEdit && elem.caretPos ) { var bookmark = "~"; var orig = elem.value; var caretPos = elem.caretPos; caretPos.text = bookmark; var i = elem.value.search( bookmark ); window.status = "Caret is at character " + i; elem.value = orig; } } </SCRIPT> </HEAD> <BODY> <INPUT NAME="txtInput" ONSELECT="saveCaret(this)" ONCLICK="saveCaret(this)" ONKEYUP="saveCaret(this)" VALUE="Where are you?"> <INPUT TYPE="button" VALUE="caret pos" ONCLICK="getCaretPos(txtInput)"> </BODY> </HTML> Can anyone tell me how to get a handle of the element that has the text in the Editor? |
|||||
#1887 | Paragraph styles not selectable | Discussion | Bug | closed | Normal | |
Description |
If you have one or more styles set in fckstyles.xml which use the p element, in the editor every <p> shows as having the styles selected, even if they are not. You are therefore unable to set the p style on a paragraph. Example styles in fckstyles.xml:
|
|||||
#1940 | Floating dialog for File Browser | Discussion | New Feature | confirmed | Normal | |
Description |
Inline popups are very great in the last beta; unfortunately inline popup are not applied for file browser. Is it possible to switch from open.window to FCKDialog.OpenDialog ? |
|||||
#1963 | Improve the installation in asp.net | Discussion | New Feature | closed | Normal | |
Description |
It seems that it's too hard for the people to read the documentation or understand how their server works, so there are one post after another in the forums about people that try to install the editor in Asp.net and forget about all the js files or place them in the wrong folder: http://www.fckeditor.net/forums/viewtopic.php?f=6&t=8312 http://www.fckeditor.net/forums/viewtopic.php?f=5&t=8698 There are more threads like that, one of them seemed to say that the BasePath parameter wasn't obvious. Some possible ideas:
|
|||||
#2048 | Allow to split cells only if they have been merged | Discussion | Bug | closed | Normal | |
Description |
I don't know about you, but in my mind splitting a cell that hasn't been previously merged just looks strange. By restricting those operations only to cells that have colspan or rowspan >1 we will avoid ugly tables and the code will be very easy to manage, we just need to decrement the colspan or rowspan value, there's no other things to worry about. |
|||||
#2050 | Line breaks after bold lines are missing the nbsp | Discussion | Bug | closed | Normal | |
Description |
Steps to reproduce
Expected result: <p><b> </b></p> Observed result: <p><b></b></p> Consequences: The line you intended to add after the bolded line will not appear when the page is saved and viewed. Note: This occurs with other style tags as well. Standard ticket submission mantra: I searched but did not find, if I erred, the fault is mine. |
|||||
#2145 | Target & title on the same tab as URL and Hyperlink Relationship | Discussion | New Feature | closed | Normal | |
Description |
These are more layout requests rather than bugs... Thought I'd submit it just incase you think they are good ideas... Do you think it is a waste having a whole tab dedicated to the target of the URL? On the Link tab for the image dialog, you have the target on the same page. This will save a click every time you insert a link you want to open in a new window... Same with the Advisory Title. Most of those Advanced tab features people wouldn't use but they are worth keeping. However, the Advisory Title is something that is used quite commonly for usability and especially SEO... It might be good to put that in the same tab as the URL as well. I for one use it all the time. Lastly, can we add a Hyper link Relationship text box (rel="")? This is used in a lot of javascripts these days such as ligthbox (<a href="photo.jpg" rel="lightbox">) and can also be used for SEO. This can go under the Advanced tab as it wouldn't be used that often but is a handy feature. |
|||||
#2153 | add web.config to avoid errors in themed aspnet pages | Discussion HasPatch | New Feature | closed | Normal | |
Description |
If you are greeted with the following error when trying to upload files using the file manager: Using themed css files requires a header control on the page. (e.g. <head runat="server" />). You don't need aspnet themes within the fckeditor folder, so simply add a web.config file in the folder, with the following content: <configuration>
</configuration> |
|||||
#2873 | Server side integration - File Browser | Discussion | New Feature | closed | Normal | |
Description |
Port the file browser from V2. |
|||||
#3180 | Include content styling in the default distribution | Discussion | Bug | closed | Normal | |
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. |
|||||
#3246 | Indent table problem | Discussion | Bug | closed | Normal | |
Description |
Reproducing Procedures
|
|||||
#3588 | Templates plugin: no option to load from xml file | Discussion | New Feature | closed | Normal | |
Description |
Currently the templates plugin only allows to load the data from a js file without an option to use a XML like v2. This has some drawbacks:
So I suggest to improve the templates plugin allowing to load templates from XML files with the syntax from V2. |
|||||
#3731 | Support 'style only' override in style system | Discussion HasPatch | New Feature | confirmed | Normal | |
Description |
This's a ticket derived from #705, which provide a UC of the following style definition which we don't support now: { element : 'strong', overrides : [ { element: 'b'}, { element: 'font', styles : { 'font-weight' : 'bold' } } ] } And a more generic UC ( and actually a common case )with 'style' only definition could be inferred as: { element : 'strong', overrides : [ { element: 'b'}, { element: '*', styles : { 'font-weight' : 'bold' } } ] } Which declare that we need to consider bold for the following two cases:
|
|||||
#3813 | Unlink result in fragmental <a> | Discussion | Bug | closed | Normal | |
Description |
Reproducing Procedures
|
|||||
#3826 | Provide a way to remove current block in entermode=br | Discussion | New Feature | closed | Normal | |
Description |
Now if we have the following content: line1 <br /> <div> line2<br /> line3<br /> </div> line4
It's not possible to 'free' line2 and line3 outside of the wrapping div in wysiwyg way.
|
|||||
#3841 | Filter independent of writer | Discussion | Task | closed | Normal | |
Description |
The Problem
The current filter system doesn't respect filter rule priority:
Then there's no way to guarantee both rule's completeness. The Solution
The reason is due to html filter is tightly binding to writer now, which does not allow it to run rules in multiple times, the rules is applied along with the writing process.
|
|||||
#3842 | Merge textnode broke by bookmark | Discussion HasPatch | Bug | closed | Normal | |
Description |
Currently once bookmark is created, broken text node will be forever stay in pieces, which result in a fracted document, have negative impacts on dom walking performance. |
|||||
#3857 | K-Meleon Kama skin problem | Discussion | Bug | closed | Normal | |
Description |
URL: http://ckeditor.com/ckeditor/3.0rc/_samples/skins.html See attachment. |
|||||
#3941 | Creation of Paragraph and Sub-Paragraph structure on pressing "indent" button | Discussion | New Feature | closed | Normal | |
Description |
Hi, First of all I wish to thank all those who have contributed to this tool. It works amazingly well. I'm using FCKEditor 2.6.4.1 for my project work. I'm using the following software for my project: 1) JavaScript, HTML, 2) Operating System: Linux, 3) Browser: Firefox. I have integrated this editor to my existing project. It is working great. However, I was asked to add new features to it. I need paragraph, sub-paragraph like structure. To be more clear following is the kind of structure I need to create: * 1. 2.
4. * The structure has to follow this pattern only. For paragraph it starts with 1. For sub-paragraph it starts with a. For sub sub paragraph it starts with i (small roman numeral). For sub sub sub paragraph it starts with aa. I'm actually able to create this structure. However, whenever I need sub paragraphs I have to right click and set the ordered list element's "type" attribute and "start" attribute to its appropriate value. I need a feature using which we get the above pattern when the user presses "indent" button or "tab" key (whichever is convenient). Again, I'm using 2 such editors on the same page. My requirement is that first editor should start with paragraph number 1. We must then keep track of the number of paragraphs (in the above example it is 4) entered by the user in the first editor. Then the paragraph number should continue from the first editor. So in my example the second editor should start with number 5 when it receives the focus or when the user starts entering the value. It would really help me if you could tell me how I can modify the editor to get the desired result. I tried to learn the code. But since I'm a beginner I feel that the code for this editor is very vast and I'm unable to trace the necessary code. I would appreciate if any further help is provided on how to change the code and what are the files to access for this purpose. Thank you all once again for this editor and for your help. |
|||||
#3944 | Preview mode | Discussion | New Feature | reopened | Normal | |
Description |
It would be useful to have the preview mode (just like Source). |
|||||
#3986 | can't place cursor before a table | Discussion IBM | Bug | closed | Normal | |
Description |
you can't This problem applies even to CKeditor 3, where you are adding a dummy <p> before the table apparently to workaround the problem. If this <p> is removed, the user gets in the same problem. |
|||||
#4173 | [IE] loading long text in text input streatching dialog | IE Discussion | Bug | confirmed | Normal | |
Description |
See #4122 for a concrete example of it, though we've already provided a temporary at that ticket, a general solution should be found. |
|||||
#4187 | [IE6] Find a better solution for horizontal document scroll | IE Discussion | Bug | closed | Normal | |
Description |
#3658 has been using the same hack from v2 to eliminate horizontal document scroll with xhtml doctype by forcing the vertical scrollbar, which is obtrusive for a document need no scrolling at all, a better solution should be found. |
|||||
#4192 | SUP and SUB script should be turn off after newline | Discussion | Bug | closed | Normal | |
Description |
SUP and SUB script should be turn off after newline. TC
|
|||||
#4229 | CSS selector support for Test Environment | Discussion | New Feature | closed | Normal | |
Description |
CSS selector support for Test Environment would bring us such benefits for node-related TCs:
"Node-related" TCs means any operation which operates on specific nodes (in both forms - as plain text and DOM representations) which are placed in larger set of other nodes. This can include things like:
Possible solutions for this could be provided by:
One popular selector benchmark is slickspeed (although speed isn't out concern). I think that most important factors when making a decision are (for us):
|
|||||
#4265 | Support for styles as string and not only external css file in panel plugin | Discussion | New Feature | closed | Normal | |
Description |
Today it is possible to send css files as an array in the definition given to CKEDITOR.ui.panel constructor. In my case it would be very nice if I could send the style as a string since the css is already loaded on the page and it is calculated by php so the file is not cached by the browser. My suggestion is to add a config option to the panel class called "style" or something that is applied to the created iframe inside a style tag. |
|||||
#4361 | Associate toolbar UI instances | HasPatch Discussion | New Feature | closed | Normal | |
Description |
Currently it's been difficult to find the relationship of UI instances ( e.g. buttons, combos etc. ), and it's related toolbar instances. Adding more cross-reference among them could benefit the plugin authoring which will manipulate the toolbar. |
|||||
#4454 | CKEditor should resize itself automatically in resizable floating window | Discussion | New Feature | confirmed | Normal | |
Description |
CKEditor behaves in a different way than FCKeditor when height is set to percentage value. Suppose we have a floating resizable window, where the editor is running. When height of the editor is set to 95% and window is resized, CKEditor does not change its height. FCKeditor adjusts its height to match the new size of the window without any problems. CKEditor can be easily changed to work in a similar way as FCKeditor, by changing the CSS style to: .cke_skin_kama .cke_editor{ display:inline-table; width:100%; height:95%; /* < --- added */ } in skins/kama/editor.css .. but this way the "resize" plugin stops working. |
|||||
#4523 | Style plugin should allow refreshing of data | IBM Discussion | New Feature | confirmed | Normal | |
Description |
Custom plugins and extensions are able to extend the list of loaded styles in the styles plugin. Unfortunately the styles plugin does not reflect dynamic changes to its list of styles and requires a reload of the whole editor to reflect the new options. Ideally the editor should provide a way for any plugin to be reloaded without requiring the whole editor to be reloaded. Alternatively, a simpler approach to this problem would be to allow just the styles plugin to reload its data dynamically, through some additional API. |
|||||
#4559 | Menus buttons width | Discussion | Bug | closed | Normal | |
Description |
Hi, I think menu buttons width is bad. When changing language in 'fr' you can see the bug in attached image. Thx Jean-mat |
|||||
#4568 | right click menus width in other langs | Confirmed Discussion | Bug | closed | Normal | |
Description |
Hi Right click menus width is fixed, and in other languages it's a problem. See the attached file. Best regards Jean-mat |
|||||
#4658 | Bespin integration | Discussion | New Feature | closed | Normal | |
Description |
Mozilla Lab Bespin Embedded just offered a preview released, which is by nature a excellent 'source' editing block alternative for us.
A 'bespin' plugin should be created to start the integration effort with Bespin though the current release is still missing many important features for us. |
|||||
#4675 | Remove Format does not reduce block level headings to normal text | IBM Discussion | Bug | closed | Normal | |
Description |
When Remove Format is applied to block level headings, they are not reduced to the default text. When custom styles such as "Blue Title" are applied to some text and then the Remove Format feature is used, the color from the style is removed, but the heading is not. This seems inconsistent. |
|||||
#4967 | htmlEncodeOutput = true and jqueryadapter problem | Discussion | Bug | closed | Normal | |
Description |
This combination encode text in editor.
|
|||||
#4979 | Ensure all source files are in _source directory | Discussion | Bug | closed | Normal | |
Description |
I'm not sure if this is intentional/required - however it makes sense to me to have the following files in the '_source' directory, since they are source files. ckeditor_basic_source.js ckeditor_source.js ckeditor.pack (would obviously require changes within for the paths) It just makes it easier to manage all source files, as I wont be including these source files in my projects package - deleting just 1 directory is easier. |
|||||
#4984 | Some statements are comma separated | Discussion | Task | closed | Normal | |
Description |
Looking at the code in plugins/undo.js I've found two statements like return this.restoreImage( image ), true; That ", true" is useless as far as I understand and the lint check doesn't give a warning because it's disabled in its config: -comma_separated_stmts # multiple statements separated by commas (use semicolons?) Enabling that shows that there are other places where such problem exists. Some of them I guess that can be fixed by changing the comma to semicolon, but I don't know what's the logic for other situations like this one in tabletools: if( trimCell( cell ), cell.getChildren().count() )
maybe it's a && there? |
|||||
#5009 | Context sub-menu items should not hide other context menu items | IBM Discussion | Bug | new | Normal | |
Description |
Create an editor instance that spans the with of the screen. |
|||||
#5022 | Suggestion: Move functions "is()" and "getName()" to node.js | Discussion | Task | closed | Normal | |
Description |
Hello, During my tinkering with ckeditor, I think it would be very convenient to have the methods "is()" and "getName()" moved from element.js to node.js. This makes sense because nodeName is a part of the browsers TextNode object as well. It helps because if you are doing a test to see if an element is say a <br /> the code changes from:
if(element && element.type == CKEDITOR.NODE_ELEMENT && element.is('br'))
to just: I have seen these sort of checks a lot of places in the ckeditor source. Let me know your thoughts. |
|||||
#5025 | Approach for backward compatibility | Discussion | Task | new | Normal | |
Description |
This is due to the patch in #4973, but it was a long talk that would distract from the real patch. The patch in #4972 (v2) removes CKEDITOR.loadStylesSet and CKEDITOR.addStylesSet, so when people tries to upgrade they will get an error if they have used them. I think that most of the people didn't know anything about CKEDITOR.loadStylesSet unless they had to fight with the lack of CKEDITOR.stylesSet as I did, but I think that there's lots of people using their own styles with the addStylesSet call. If they don't change the code then it will fail and they have to find out the reason. So my question is: how do we approach backwards compatibility? We can leave the code as is and they have to read the release notes to notice the reason of the problem. This can be more complex if they are upgrading for example from 3.0 to 3.3 with hundreds of bugs in the mean time. We can add bold and red statements in the what's new to make it clearer, but they still have to read the docs. We can provide also a "compatibility" plugin that it's used just to provide compatibility with older apis. This plugin could define just the old functions as mapping to the new APIs and launch a silent warning in the console (if it exists) Something along these lines: CKEDITOR.addStylesSet = function( name, styles ) { if (window.console) window.console("The CKEDITOR.addStylesSet function has been deprecated. Please use CKEDITOR.stylesSet.add. Read... for further info"); CKEDITOR.stylesSet.add(name, styles) }; This way the upgrade is easier, there's a very little overhead and people can remove the plugin when they know that everything is working OK. |
|||||
#5035 | openTag method doesn't use the attributes arg | Discussion | Task | closed | Normal | |
Description |
In both basicWriter and htmlWriter the openTag method doesn't use the attributes parameter: openTag : function( tagName, attributes ) { this._.output.push( '<', tagName ); }, and openTag : function( tagName, attributes ) { var rules = this._.rules[ tagName ]; if ( this._.indent ) this.indentation(); // Do not break if indenting. else if ( rules && rules.breakBeforeOpen ) { this.lineBreak(); this.indentation(); } this._.output.push( '<', tagName ); },
Am I missing something here? In the calls to the method the attributes are sent, but that could be removed as well as the examples about how to use it. |
|||||
#5174 | Context menu should select the first item in the list | IBM Discussion | Bug | closed | Normal | |
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. |
|||||
#5189 | Find/Replace dialog: rename button to "Close" | Discussion | Bug | closed | Normal | |
Description |
In the Find/Replace dialog, the button should be labeled "Close" and not "Cancel", because it doesn't really cancels the replacement operation. |
|||||
#5365 | Undocumented options for the link dialog | Discussion Review- | Task | closed | Normal | |
Description |
In link\plugin.js there are two options that aren't documented CKEDITOR.tools.extend( CKEDITOR.config, { linkShowAdvancedTab : true, linkShowTargetTab : true } ); As the new architecture of the dialogs allow to easily customize the tabs of each dialog, I wonder if we should add the documentation for these or just remove them (and the little code in the dialog.js file) Personally, I vote for removing them. Note also that the image plugin lacks the corresponding options. |
|||||
#5402 | if we apply Pre-Formatted formatting to a list item in an Ordered/Unordered list we can't create new list items & also we can't come out of the list | IBM Discussion Confirmed Review+ | Bug | closed | Normal | |
Description |
To reproduce the defect
Expected Result See that next number comes up in the ordered list and when we press the Enter for the second time,the cursor should come out of the Ordered list and a new empty Paragraph should open Actual Result The Next Number in the ordered list do not comes up and when we Press Enter any number of times we can't come out of the list. Same behaviour is also happening in the case of Bullets. |
|||||
#5476 | Enter key before sub list not right | Discussion | Bug | closed | Normal | |
Description |
Reproducing Procedures
|
|||||
#5509 | Blockquote Blockquote | Discussion | Bug | closed | Normal | |
Description |
Hi there, When you are in a paragraph, indent adds margin. When you are in a list, indent adds nested list. When you are in a blockquote, indent adds...
There is no best choice isn't it? |
|||||
#5528 | Protect style attribute | Discussion | New Feature | assigned | Normal | |
Description |
Browsers parse the contents of the style attribute and do strange things with its contents, so we should protect like we do for href and src so it's modified only when the user request it, and not by the browser. |
|||||
#5534 | Uploading does not URL-encode the link at the end of the upload | Discussion | Bug | closed | Normal | |
Description |
Demonstration
(For comparison, click on the 'Browse Server' button and select the file you have uploaded and notice that those characters are encoded) |
|||||
#5600 | Create new block Format to end PRE at start of line | Discussion | New Feature | new | Normal | |
Description |
People usually don't know anything about html tags, they just want things to work, so as long as it's possible we should try to think like a new user and how the expect the editor to behave. In order to end a PRE-formatted paragraph I think that it's easy to expect that just selecting "Normal" in the format dropdown should start a new paragraph and get out of the pre if the caret is at the start of a new line. This would work in a similar way to the Bold button: you press to start marking things as bold and when you press it again you end the effect. |
|||||
#5692 | Handle file dropping in editor | Discussion HasPatch | New Feature | new | Normal | |
Description |
Provide a plugin to detect desktop file dropping into editor, for those support browsers. Edit: Yes that is most correct. Editor should have at least a hook for implementing drag&drop into editor. What I mean is that if editor is connected with file uploader (like CKFinder) it should prepare image information that uploader can use to upload file. After file is uploaded, uploader should send new image path and editor should apply it. |
|||||
#5768 | List plugin: request for preserving paragraphs when creating a list | Discussion | New Feature | new | Normal | |
Description |
Version 3.3 added support for preserving heading structure when creating a list item. Would be nice to also preserve structure when creating list items from paragraphs. |