Custom Query
Results (1901 - 2000 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component |
---|---|---|---|---|---|---|
#1614 | Difference between FCKConfig.BasePath and .FullBasePath | Bug | Normal | FCKeditor 2.6.2 | General | |
Description |
In editor/source/internals/fckconfig.js the FCKConfig.BasePath and FCKConfig.FullBasePath are calculated automatically, for file:// they both end up being the same, but for the rest of the protocols .BasePath doesn't contain the reference to the protocol and the host. This usually works, but for chrome:// it fails to load any file referenced by .BasePath It is enough to make FCKConfig.BasePath = FCKConfig.FullBasePath to get the editor loading the stylesheets, so I wonder if the distinction between the two settings is really needed or we could add the reference to protocol and host to .BasePath and get rid of FullBasePath replacing it wherever it appears with .BasePath |
|||||
#1615 | Deleting Table Columns | Bug | Normal | General | ||
Description |
I switched from FCK 2.2 to 2.5. (great Job) but immediately I found a change in usability which I would also call Bug compared to previous versions. If I got a Table and I click into a cell i was able to delete the column/row by clicking on small x-es. This Way I was able to delete the table. Now there is no way except using rightclick and contextmenu. |
|||||
#1616 | Spelling is always done in English | Bug | Normal | General | ||
Description |
Even when another language is selected for FCKeditor, spelling is always done in English (hardcoded in the source). |
|||||
#1617 | Implement ReplaceAllTextareas for the JavaScript integration | New Feature | Normal | FCKeditor 2.6 | General | |
Description |
There is a well known approach to replace all <textarea> fields in the page with FCKeditor instances. It has been published at our Wiki. It would be nice to introduce such feature in the editor code, making some enhancements to it: // Replace all <textarea> elements in the page. FCKeditor.ReplaceAllTextareas() ; // Replace all <textarea class="myClassName"> elements in the page. FCKeditor.ReplaceAllTextareas( 'myClassName' ) ; // Selectively replace <textarea> elements, based on custom assertions. FCKeditor.ReplaceAllTextareas( function( textarea, editor ) { // Custom code to evaluate the replace, returning false if it // must not be done. // It also passes the "editor" parameter, so the developer can // customize the instance. } ) ; This is a follow up for a discussion started at our forums. |
|||||
#1618 | Wrong version of Opera in the integration files | Bug | Normal | General | ||
Description |
Integration files of FCKeditor have wrong version check for Opera browser and that's the reason why latest version of Opera 9.2.4 does not work with FCKEditor. Note: 9.2.4 is not >= 9.5 !!! For example changing at the end of file fckeditor.js
to Opera 9.50+
gives FCKEditor Opera support back |
|||||
#1619 | "tight" control from Microsoft Word | New Feature | Normal | General | ||
Description |
Microsoft word has a feature called "tight" under the image properties section. After you import an image you can go to edit properties and select "tight" formatting. This allows you to drag your image anywhere on the page and the text automatically wraps around all four sides of the image. This feature is invaluable to me. Please let me know if you have this or can add this asap. My contact information is russx1@… or 970.372.1455 Thanks. |
|||||
#1620 | semicolon added before finally keyword | Bug | Normal | Project : CKPackager | ||
Description |
Noticed this when packing. Something like this: try { a=b; } catch ( e ) { a=c; } finally { d=a; } Packs to something like this: try{a=b;}catch(e){a=c;};finally{d=a;} The semicolon before the finally breaks the script. I changed fckpackager.php from this: // Concatenate lines that end with "}" using a ";" (except for "else" and "catch" cases). $script = preg_replace( '/\s*}\s*[\n\r]+\s*(?!\s*(else|catch|}))/s', '};', $script ) ; to this and it corrects the problem mentioned here: // Concatenate lines that end with "}" using a ";" (except for "else" "catch" and "finally" cases). $script = preg_replace( '/\s*}\s*[\n\r]+\s*(?!\s*(else|catch|finally|}))/s', '};', $script ) ; |
|||||
#1621 | Format combo normal option produces P tag even if in BR mode only! | Bug | Normal | Core : Styles | ||
Description |
Hi. You guys are never sleeping. :-) Interesting release this 2.5 version but I have something I really hope you can fix. I'm involved in a project that must only allow for some specific tags to be used. P tags are not allowed, so therefore I'm using this in my fckconfig.js: FCKConfig.EnterMode = 'br'; FCKConfig.ShiftEnterMode = 'br'; Then I open the 2.5 version in my browser: PROBLEM 1 *
URK! THAT was not expected since I'm in BR mode only. Is there a way to make Normal in the Format combo to just remove the previously applied tag? Could this be done in a short amount of time please :-) PROBLEM 2 * Then another finding, kind of related (but maybe not). Currently I'm using version 2.4.3 in my project. There I have used the Style combo in order to let the user apply some specific styles to the text. So in fckstyles.xml I have this: <Style name="Title H1" element="h1" /> <Style name="Title H2" element="h2" /> <Style name="Title H3" element="h3" /> <Style name="Title H4" element="h4" /> <Style name="Title H5" element="h5" /> If I use the above fckstyles with version 2.5 and start with this source: This is first line<br /> <br /> This is another line<br type="_moz" />
So far so good: But if I then select the first line again now actually having the h1 tag and then select H1 from the Style combo, then nothing happens. In 2.4.3 the previously applied h1 tag would have been removed. Then after some more testing I see that 2.5 only removes the h1 tag if I only place the cursor somewhere in the text surrounded by the h1 tag and then select the H1 from the Style combo. Why is it no longer working when selecting the text first, as it was in the 2.4.3? AT LAST * * 1. * I really, really hopy you can make it so when I'm using FCKeditor in BR mode only using this: FCKConfig.EnterMode = 'br'; FCKConfig.ShiftEnterMode = 'br'; that the editor will produce no tags at all when clicking Normal in the Format combo! * 2 * Then I hope you can make the Style combo remove the previously applied tag when:
(the way it worked in 2.4.3) Why would I want this? Simply because intuitively when you select some text in order to be able to apply a different Style, then I guess most people would also select the text in order to remove or change the style. ( NOTE: I have noticed that 2.5, regarding this applying and removing tags using Style combo has improved in one way : 2.4.3 produced nested tags of e.g. H tags if you applied another H tag after first applying another. E.g: First applying H1 and then H2 would result in this source: <h1> <h2>Frammøte</h2> </h1> Which was not nice at all.... 2.5 just replace the previously applied tag whith the last applied one ... THAT IS A GOOD THING... thanks for that. ) * IDEALLY I WOULD LIKE TO BE ABLE TO * output an option both in Style and Format combo that removes the last applied TAG and label it so it is supereasy for enduser to see where to click to get the text back to normal, which in this case is without any tags at all... no P tags either :-) Anyway, nice work FCKdevelopers, your editor rocks big time. If I can use it in my project, then I will certainly pay for an annual licence. Have done that one time before by the way ..... |
|||||
#1622 | CSS cache in JS | New Feature | Normal | FCKeditor 2.6 | Core : Styles | |
Description |
Instead of including CSS files with <link ...> tags, how about caching them in a global data structure? Then, instead of emitting tags, we can echo the <style> information in-place and save extraneous CSS requests. We plan to use this at PBwiki.com to help optimize page loading time and minimize the number of requests we serve. Patch attached. |
|||||
#1623 | Removing Bold, Italic, Underline, Striketrough and maybe more is buggy/counterintuitive in Firefox | Bug | Normal | Core : Styles | ||
Description |
Hi. Done some more tests in version 2.5 and found this: Also tested on the demo on www.fckeditor.net In Firefox:
If you only place the cursor somewhere in the text that is bold without selecting anything, then one click on the Bold will remove it. I find this very little intuitive. I do not mind that one can just place cursor within text and the click the button to remove previously applied Bold or whatever. But the fact that you cannot actively select same text as you selected before applying e.g. bold, in order to remove it just counterintuitive. In IE6 (only tested in IE6 and Firefox 2.0.0.11), selecting the same text one previously applied the Bold to in order to remove it, and then clicking Bold button will remove it with only one click. I have only tested Bold, Italic, Underline and Striketrhough, Subscript and Superscript buttons... This may allso be an issue with some of the other buttons as well Also found an anomality with Remove link button in Firefox:
|
|||||
#1624 | A new <br> appears aftrer saving | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
While previewing the text or saving the text a new line is placed in a random place of the text by the command <br>. The problem disappears after switching to wikitext and saving it again |
|||||
#1625 | Relative links (Subpage feature) are translated when loaded in the editor | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Suppose you are under /FirstLevel. If you have Subpage enabled, and a relative link, like [[/SubLevel]], the link is translated to [[/FirstLevel/SubLevel]] when loading the contents in the editor for editing. |
|||||
#1626 | ASP.NET : The connector must have a full configuration file | Bug | Normal | FCKeditor.Net 2.5 | Server : ASP.Net | |
Description |
As all the other connectors, the ASP.NET implementation must provide an easy way to configure to enable and configure the connector. This is a requirement for our Server Side Integration standards. |
|||||
#1627 | Samples fail to load in IE7 in local filesystem | Bug | Normal | FCKeditor 2.6 | General | |
Description |
The bug was originally reported by alfonsoml in the FCKeditor IRC channel. Steps to reproduce:
|
|||||
#1628 | FireFox JavaScript Alert With External Config File | Bug | Normal | General | ||
Description |
I just loaded version 2.5. I have a Custom Config file outside the FCEDITOR folder. Renders fine in Safari. But with FireFox, two Javascript alerts pop-up when the editor loads. One says: Unknown toolbar item "BlockQuote" When you clear it, another pops up... Unknown toolbar item "ShowBlocks" If I switch back to the default (exact duplicate) config JS located in the FCKEDITOR folder, I don't get the errors. |
|||||
#1629 | 2 suggestions for tabs or buttons | New Feature | Normal | General | ||
Description |
|
|||||
#1630 | Source view: Undo removes all content | New Feature | Normal | Core : Undo & Redo | ||
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. |
|||||
#1631 | Source view: ctrl+l shortcut should be deactivated | Bug | Normal | UI : Source View | ||
Description |
Browsers: Firefox 2.0.0.11 (win+lin), IE6+7 The link dialog shortcut, ctrl+l, is available from source view. Can't find any other shortcuts that work, except for undo/redo and select all which is nice to have. The link dialog is started when using the shortcut, but it fails to load its content. |
|||||
#1633 | [FF] styles on iframe elements affect the editor and panels | Bug | Normal | FCKeditor 2.6.1 | General | |
Description |
Add <style type="text/css"> iframe { width: 100%; height: 400px; border: 3px solid red; background-color: blue; } </style> to a test page and you'll see that they make impossible to use the editor. I think that we should force some styles on the generated iframes to avoid this kind of problems. Reported in http://www.fckeditor.net/forums/viewtopic.php?f=6&t=7759 |
|||||
#1634 | Next element corrupted when delete key triggers removal of empty <P> tag. | Bug | Normal | UI : Enter Key | ||
Description |
I have a document containing: <p> </p><div contenteditable="false" class="wizard">{my wizard content}</div><p> </p> I wish to remove the gap above my DIV, so I put the caret into the paragraph and start hitting the delete key. When the paragraph is removed, the next element (the div) is converted to a bare paragraph. i.e. code becomes <p>{my wizard content}</p><p> </p> This is rather alarming considering my CMS wizard generator plugin was fairly simple to get working. NB) The problem only occurs when DisableEnterKeyHandler is false, so I assume that it's the actual DoDelete that's doing this. |
|||||
#1635 | Find button report "The specified text was not found" even if text is in editor | Bug | Normal | UI : Dialogs | ||
Description |
Hi. The find button has finally gotten to work if you search for a word that is above the currrent cursor placement in the editor. That is nice. But I do not understand why the find dialog have to report "The specified text was not found" when all occurences of a word has been found. I would rather prefer either of the two below:
So why do I want it to work that way? If you search for some text you might want to look at all occurences before deciding what to do. And let say you found 5 occurences and came to the last one, then why on earth should you have to close the current Find dialog and click Find button again, instead of just keeping to klick the Find button in the Find dialog. Basically, prompting the enduser with "The specified text was not found" is not very informative if the text is present in the editor. |
|||||
#1636 | iframe displays 404 error | Bug | Normal | General | ||
Description |
Hi, I work on a macbook with macos-x 10.5 and safari 3.0.4. I wanted to include the fckeditor in one of my projects. When i watched the result i just saw an iframe with a 404 error message inside. The src of the iframe was correct and i checked the URL in another window. I tried to make a static html file with the code for the editor and put it in the same directory like the index.php. Same result. After i watched inside the html code again i found that the id of the iframe causes the problem. Like you know the id of the iframe begin with the field name of the hidden field and follows with a _ _ _ F r a m e (3x _ + Frame [without spaces]). When i replaced the 3 underlines with 2 underlines all looks well and the editor works fine in Safari. I don´t checked if other browsers had the same problem but after my changes all other browser in mac and pc had no problems to load the edtor. btw: Nice feature to underline words :) greetings Mark Herzberg |
|||||
#1637 | inline style from office word gives javascript error, editor doesn't work | Bug | Normal | General | ||
Description |
if this inline style sheet is past into the as html (so first source and then past it in) in Firefox(linux) and then the content is opened again in IE6: the button bar loads completely however the edit box stays white and there is no cursor. IE6 also reports an error on the page. while the same thing just works fine in Firefox(linux) serverside is coldfusion connector <p><style type="text/css">@font-face { font-family: Wingdings; } @font-face { font-family: Cambria Math; } @font-face { font-family: Calibri; } @font-face { font-family: Tahoma; } @font-face { font-family: Verdana; } @page Section1 {size: 612.0pt 792.0pt; margin: 70.85pt 70.85pt 70.85pt 70.85pt; } P.MsoNormal { FONT-SIZE: 10pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Verdana","sans-serif" } LI.MsoNormal { FONT-SIZE: 10pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Verdana","sans-serif" } DIV.MsoNormal { FONT-SIZE: 10pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Verdana","sans-serif" } A:link { COLOR: blue; TEXT-DECORATION: underline; mso-style-priority: 99 } SPAN.MsoHyperlink { COLOR: blue; TEXT-DECORATION: underline; mso-style-priority: 99 } A:visited { COLOR: purple; TEXT-DECORATION: underline; mso-style-priority: 99 } SPAN.MsoHyperlinkFollowed { COLOR: purple; TEXT-DECORATION: underline; mso-style-priority: 99 } P.MsoAcetate { FONT-SIZE: 8pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Tahoma","sans-serif"; mso-style-priority: 99; mso-style-link: "Ballontekst Char" } LI.MsoAcetate { FONT-SIZE: 8pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Tahoma","sans-serif"; mso-style-priority: 99; mso-style-link: "Ballontekst Char" } DIV.MsoAcetate { FONT-SIZE: 8pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Tahoma","sans-serif"; mso-style-priority: 99; mso-style-link: "Ballontekst Char" } SPAN.E-mailStijl17 { COLOR: windowtext; FONT-FAMILY: "Verdana","sans-serif"; mso-style-type: personal-compose } SPAN.BallontekstChar { FONT-FAMILY: "Tahoma","sans-serif"; mso-style-priority: 99; mso-style-link: Ballontekst; mso-style-name: "Ballontekst Char" } .MsoChpDefault { mso-style-type: export-only } DIV.Section1 { page: Section1 } </style></p> |
|||||
#1638 | fckstyles.xml: Non-classed div gets all div-styles | Bug | Normal | Core : Styles | ||
Description |
I'm using fckstyles.xml to enable the user to select custom div-classes. Problem is that a div without a class attributes i marked as having all div-styles in the custom styles combo. Reproduce: fckstyles.xml <?xml version="1.0" encoding="utf-8" ?> <Styles>
</Styles> HTML: <div>No class</div> <div class="example1">Example1</div> <div class="example2">Example2</div> "No class" will have both styles selected in the combo, while the other two will have the respective div selected. Since it is not possible to unselect either style for "No class", nor give it any of the two styles, this makes it impossible to format <div>-tags using the combo. |
|||||
#1639 | Attribute change with Overrides | New Feature | Normal | Core : Styles | ||
Description |
According to editor/_source/classes/fckstyle.js * Overrides : '<element name>'|{ * Element : '<element name>', * Attributes : { * '<att name>' : '<att value>'|/<att regex>/ * }, * Styles : { * '<style name>' : '<style value>'|/<style regex>/ * }, I would like to request that the attributes section allow regular expressions for the attribute name. I would like to be able to override any span. I believe the attribute would need to allow something like: Attributes : { /^.*$/ : /^.*$/ } The reason for this is I only want to use the span tags that I provide in the editor. When people paste text in from Word sometimes span tags are kept with style attributes. I am using span tags with class attributes. So if I want it to override any span tag with class and style attributes I don't see a way to do it in the editor right now. So if someone pastes in <span style="font-size: 20pt; font-family: Arial;">Hello world</span> I want it to be able to come out with: <span class="text">Hello world</span> if they change it to be marked as text. Now it gives <span class="text"><span style="font-size: 20pt; font-family: Arial;">Hello world</span></span> In this example I can't just set the attribute to override any style because I need to be able to override classes as well. |
|||||
#1640 | Support for Nintendo Wii | New Feature | Normal | General | ||
Description |
Kind of a silly request but.... why not... I was at a mates hosue the other day and i was curious to see if fckEditor worked under Nintendo wii. Sadly, it did not. I think it only doesnt work due to the user agent checks not passing for the wii user agent. As far as i know, the wii runs opera, so I dont see why it shouldnt be supported. |
|||||
#1641 | FCKBrowserInfo.IsIE7 is not ready for IE8 | Bug | Normal | FCKeditor 2.6 | General | |
Description |
Our current sniffing for IE7 is not ready for IE8. It works for IE7 only, but for us it should be IE7+. |
|||||
#1642 | window.onresize causes flicker running in chrome | Bug | Normal | FCKeditor 2.6 | General | |
Description |
While setting the Write Area extension one of the problems was that the editor did flicker continously, it was very annoying and finally I found that it was due to the window.onresize of the fckeditor.html and fckdialog.html The problem is that in this situation it gets the event also from the inner frames, so it never ends the resizing. |
|||||
#1643 | several strict warnings | Bug | Normal | FCKeditor 2.6 | General | |
Description |
Running with strict warnings On in Firefox shows several little problems in the console. Due to other pending changes I can't generate a clean diff to fix all of them, so this fixes just some and the others will be fixed later |
|||||
#1644 | Proposal: remove references to cursor: hand; in css | Task | Normal | CKEditor 3.4 | General | |
Description |
Only IE 5.5 needs the "cursor: hand;" rule, IE6 and every other browser will understand properly the "cursor: pointer;" By removing those rules we avoid some warnings in the error consoles about the styles. |
|||||
#1647 | Selecting a Format while in a Bulleted/Numbered list fails to make new Bullets/Numbers | Bug | Normal | FCKeditor 2.6 | UI : Enter Key | |
Description |
This issue was related to bug 277 which is now fixed.
To Reproduce:
Result: No new bullets appear. The only way to make new bullets is to position the cursor at the end of the document and create a new bulleted list. |
|||||
#1648 | resizing handles of dragresizetable plugin are created in the fckeditor.html frame | Bug | Normal | FCKeditor 2.6 | General | |
Description |
Due to https://bugzilla.mozilla.org/show_bug.cgi?id=130078 that means that the created elements are behind the editing div and aren't visible if we are running in chrome: (write area) The solution seems to be to use the FCK.EditorDocument to create and position those elements. |
|||||
#1649 | Editor will not change the category | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
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. |
|||||
#1650 | Patch for FCKeditor 2.5 to implement upload filename regexp checking | Bug | Normal | Server : PHP | ||
Description |
This is a feature request previously mentioned in #306 but updated for FCKeditor 2.5 now that has been released. It includes all the client-side changes and an example PHP implementation. Translation to other languages should be straightforward. Patch attached. |
|||||
#1651 | Patch for FCKeditor 2.5 to implement upload filename clash behaviour control | Bug | Normal | Server : PHP | ||
Description |
This is a feature request previously mentioned in #306 but updated for FCKeditor 2.5 now that has been released. It includes all the client-side changes and an example PHP implementation. Translation to other languages should be possible. Patch attached. |
|||||
#1652 | Change file/image browser startup folder programmatically | New Feature | Normal | File Browser | ||
Description |
Feature request: there doesn't seem to be a way to change the file browser startup folder programmatically. E.g. supposing one was editing a page /path/to/bar.html it would be useful to be able to set the file/image browser to the same folder, /path/to/ as that may well be the most logical place for files/images to be looked for first. http://sourceforge.net/tracker/index.php?func=detail&aid=1498629&group_id=75348&atid=543655 mentions this request from someone else. |
|||||
#1653 | span colors switching from HEX to RGB | Bug | Normal | General | ||
Description |
While working on my editor settings today, i accidentaly noticed my flash movie wasn't loading colors anymore .. after checking the xml i was loading (which is fckeditor generated), i noticed all the <span> blocks are now using RGB instead of HEX colors .. Now i'm almost sure this is not related to my settings. I've even disabled my custom config file (and triple emptied cache), but still, i get RGB instead of HEX when i select a peace of text, and apply a color from the color panel. |
|||||
#1654 | E.contentWindow.document.body.innerHTML does not exist | Bug | Normal | FCKeditor 2.6 | General | |
Description |
Line 48 in fckeditor_gecko.js gives me an error in Firefox with FCKeditor release 2.5. I tracked it down to: if (E.contentWindow ) E.contentWindow.document.body.innerHTML=''; Even I don´t know exactly what´s happening here the "style" seems not to be clean for me: Checking if an object exist and then accessing two levels deeper than checked. I changed to: if (E.contentWindow && E.contentWindow.document && E.contentWindow.document.body ) E.contentWindow.document.body.innerHTML=''; and now everything works as expected. |
|||||
#1655 | FF: Bulleted point dissaperas when changing the indetation | Bug | Normal | Core : Lists | ||
Description |
Tested on Firefox 2.0.0.11 To reproduce:
|
|||||
#1657 | security issue | Bug | Normal | File Browser | ||
Description |
I don't know how to exactly name it either feature or bug ;-) but typing 'http://(websitehost)/fckeditor/editor/filemanager/browser/default/browser.html' in browser url input enables any user to browse/upload files on server in catalogues specified in config file, without any authentication. |
|||||
#1658 | XSS Injection with img tag | Bug | Normal | General | ||
Description |
Hi there, If you use: <img src="image.jpg" onload="alert('valid cross-site scripting');" />
there is a XSS Injection possible.
Browser: Firefox 2.0.0.11 (latest)
cheers |
|||||
#1659 | Setting DocType to Standards Compliant Collapses <body> in IE | Bug | Normal | CKEditor 3.1 | General | |
Description |
When you set FCKConfig.DocType to a standards compliant type, the min-height: 100% css trick on the body no longer works. This means the body collapses to the size of the elements contained within the body. IE only. |
|||||
#1660 | <br type="_moz"> and <p> </p> in empty source | Bug | Normal | UI : Enter Key | ||
Description |
When FCKConfig.EnterMode option is explicitly set to BR value, empty textarea right after initialization contains <br type="_moz"> string after switching to source code view. When FCKConfig.EnterMode option is explicitly set to P value, empty textarea right after initialization contains <p> </p> string after switching to source code view. When FCKConfig.EnterMode option is explicitly set to DIV value, empty textarea right after initialization contains <div> </div> string after switching to source code view. When FCKConfig.EnterMode option is left to use implicitly set default value (P), nothing appears in source code of empty textarea, which is OK. Reproduces: Always Browsers: Mozilla Firefox 2.0.0.11 on Windows XP Extra: Opera 9.50 shows always   sequence in all three possible FCKConfig.EnterMode options. Internet Explorer 7 is OK. |
|||||
#1661 | "Insert/Edit Link"-dialogue | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
When using "Insert/Edit Link"-dialogue, the "automatic search results" ajax functionality does not search for page titles within custom namespaces. |
|||||
#1662 | HTTP MSIE Multiple Style Tags Code Exec | Bug | Normal | General | ||
Description |
Norton Symantec Antivirus (version 14.0.4.1) gives me this security threat: http://www.symantec.com/avcenter/attack_sigs/s21657.html I use FireFox (not IE) |
|||||
#1663 | HTTP MSIE Multiple Style Tags Code Exec | Bug | Normal | General | ||
Description |
Norton Symantec Antivirus (version 14.0.4.1) gives me this security threat: http://www.symantec.com/avcenter/attack_sigs/s21657.html I use FireFox (not IE) |
|||||
#1664 | Elements swaping on Enter at the end of paragraphs | Bug | Normal | FCKeditor 2.6 | UI : Enter Key | |
Description |
Steps to Reproduce
<p><font size="6"><font size="1">Hit enter at the end of this line</font></font></p>
Current ResultsThe <font> tags changed order. After enter and "some text", this is what we have: <p><font size="6"><font size="1">Hit enter at the end of this line</font></font></p> <p><font size="1"><font size="6">Some text</font></font></p> Expected ResultsThe new paragraph must have the formatting tags in the same order: <p><font size="6"><font size="1">Hit enter at the end of this line</font></font></p> <p><font size="6"><font size="1">Some text</font></font></p> |
|||||
#1665 | Link Fields Disappearing | Bug | Normal | UI : Dialogs | ||
Description |
I have integrated the cffm file manager with fckeditor so I want to hide the "Upload" tabs on the insert image, insert flash, and insert link dialog boxes. To do this I am commenting out the following lines of code:
fck_image.js
fck_flash.js
fck_link.js BUG: When I comment out the links on the fck_link.js file the form fields on one of the other link dialog box fields will disappear. This only happens on the link dialog box. I have not had this problem on the image or flash dialog boxes. |
|||||
#1666 | Domain relaxation not working for sub-menues | Bug | Normal | FCKeditor 2.6 | General | |
Description |
Steps to reproduce the bug:
Tracing the script execution shows the error comes from the creation of sub-menus in the table menu. |
|||||
#1667 | Create a script for automatic line-ending corrections | Task | Normal | FCKeditor 2.6 | General | |
Description |
We need a PHP script inside _dev which correct the line ending of all files in the project. The following must be true after running it:
This file is supposed to be used prior releases to uniformize the code. |
|||||
#1668 | IsDirty giving false positive with no content. | Bug | Normal | General | ||
Description |
Using 2.5 in ff2. Loading fck with empty content and calling IsDirty and it is returning true. Adding content opening a fresh window and calling IsDirty then returns false. My demo is setup @ http://ritter.eplt.washington.edu/tools/fckeditor. I tried to test this against your demo version, but every example I found on your site was pre-loaded with content. |
|||||
#1669 | sample13 failed on ie7 | Bug | Normal | General | ||
Description |
I find that i can't switch a textarea to a fckeditot on ie7,even the sample page 13 had that problem. But it works well on ie6. |
|||||
#1670 | Smilieys dialog could look better | Task | Normal | FCKeditor 2.6 | UI : Dialogs | |
Description |
The current smiles dialog is quite dark and heavy because of the darken boxes that hold each image. Something lighter would help it a lot. I've tested it with #eaead1 and it looked great. In the other hand, that color is not customizable by the skins. So, the same color is used for all of them, making it look pretty ugly (see office2003). The color must instead come from the skin CSS file. |
|||||
#1671 | Link dialog should focus automatically the URL field | New Feature | Normal | FCKeditor 2.6 | General | |
Description |
You are writing something, then you want to make a link, Ctrl+Shift+arrows to select the text, Ctrl+L to open the link dialog. Now you have to move the hand to the mouse or tab several times instead of just Ctrl+V and Enter to finish the link. Other dialogs could be improved the same way, set the focus on the field that it's going to be used most of the time. |
|||||
#1672 | Problem with FCKEditor and ASP.net AJAX | Bug | Normal | Server : ASP.Net | ||
Description |
Hey... LOVE LOVE LOVE your editor. You guys do a great job. Thoroughly pleased, especially considering I just found out you are being included with the newest release of Coldfusion. Anyways I wanted to report a bug to you guys. I've been about pulling my hair out trying to figure this out, and I think I found the issue. So here it goes: I using a MAC. On Firefox. Using asp.net 2.0. FCK Editor Version 2.5 (.Net) with the most recent version of the actual editor. The issue I found is that the FCK Editor doesn't actually submit any data if it's included within and asp.net ajax update panel. I've tested this thoroughly and found this was the issue. The editor actually displays and works within the update panel, but when you perform a button click action to submit the data, it just displays as an empty value even though data is entered into the editor. I'm not quite sure why it'd be doing this, my only guess is the javascript is conflicting with the ajax somehow. Just thought I'd mention that as I'm sure other people may encounter the same issue. Thanks and have a great Christmas. Brett |
|||||
#1673 | Syntax error found in fckstyles.xml file | Bug | Normal | Core : Styles | ||
Description |
I found what I think is a syntax error in the fckeditor.xml file. Lines 64-69 say this: <Style name="Marker: Yellow" element="span"> <Style name="background-color" value="Yellow" /> </Style> <Style name="Marker: Green" element="span"> <Style name="background-color" value="Lime" /> </Style> When I changed them to the following, Firebug stopped showing me an error: <Style name="Marker: Yellow" element="span"> <Attribute name="background-color" value="Yellow" /> </Style> <Style name="Marker: Green" element="span"> <Attribute name="background-color" value="Lime" /> </Style> So, the <Attribute>'s were typed in as <Style>. I just checked the nightly build and it's still this way. |
|||||
#1674 | Double Click Select link in Firefox does not register as a link selected | Bug | Normal | General | ||
Description |
In Firefox, if you select a link by double clicking on it, the MoveToAncestorNode() or hasAncestorNode() functions do not return the anchor. If the same selection is made by selecting normally (dragging the selection), it registers just fine. Example: if you double click a link to select it, the "Unlink" button is disabled, but should be enabled. I have found the following code fixes this problem:
new code
Putting somewhere in the GetSelectedElement() function will probably fix both HasAncestorNode() and MoveToAncestorNode() for Anchors, but not sure if it will break anything else. I am seeing this behavior in Firefox 2.0.0.11 on Windows XP Pro SP2. |
|||||
#1675 | Has Problems with Semantic MediaWiki | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
This is a very nice extension, but it doesn't work with the Semantic MediaWiki extension. Semantic MediaWiki enhances links. Also, there's som e extra part with information with Semantic Mediawiki (facts about...); this occurs in the text. It would be nice, if this extension could handle this stuff. --Hans Oesterholt-Dijkema |
|||||
#1676 | Provide a way to switch beetwen FCKeditor and Textarea | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Although this is a very nice extension, it isn't stable enough to be used without the user choosing to do so. Instead of having all users to document their default behaviour in their user preferences, they should be able to choose on a page if they want to use the Rich editor or the WikiText editor. -- Hans Oesterholt-Dijkema 21:02, 17 December 2007 (CET) |
|||||
#1677 | Save/cancel button in the toolbars | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
This extension should have a save and cancel button in the toolbar! |
|||||
#1678 | Font , font size and style refresh to default when stealing focus | Bug | Normal | General | ||
Description |
With the editor empty and curson not in editor (does not have focus), a user selects a font and a size they wish to work in. Then they click into the editing area. (Not that they have to) The font and size reset back to the defaults. |
|||||
#1679 | No Tooltip on Combos | Bug | Normal | General | ||
Description |
No tooltips appearing for Combo boxes. Tracing it through, there is specification of a tooltip in "var FCKSpecialCombo=function ..." and the function "FCKSpecialCombo_OnMouseOver" is operating as expected, but I can't see where the mechanics are for the tooltip, nor does anything appear. Is this a feature that should work? Tested on Firefox 2.0.0.11 and 6.0.2900.2180 |
|||||
#1680 | Editor unusable when wrapped in an invisible div having a fixed width | Bug | Normal | General | ||
Description |
Internet Explorer pops up an error window with the following message: Could not complete the operation due to error 800a025e The error is due to the line mText1.Value = "". When I replace this line with mText1.Value = "blahblah" it works.. This is the code I've used. Worked fine in previous versions of FCKeditor. <div style="WIDTH:715;display:none;"> <script type="text/javascript" src="/CFIDE/scripts/FCKeditor/fckeditor.js"> </script> <script type="text/javascript">
</div> |
|||||
#1681 | Error: -2147024809, Invalid Arguement when opening a 2nd editor in a popup | Bug | Normal | General | ||
Description |
I have an editor placed inline in a registration form. It has a nearly empty toolbar with only B,U,I buttons. I have added another button which opens a new editor in a modal dialog. After opening of the new editor in the dialog, i am getting an error -2147024809, Invalid Arguement. The error occurs at: FCKEvents.prototype.FireEvent = function( eventName, params ) { var bReturnValue = true ; var oCalls = this._RegisteredEvents[ eventName ] ; if ( oCalls ) { for ( var i = 0 ; i < oCalls.length ; i++ ) { try { bReturnValue = ( oCalls[ i ]( this.Owner, params ) && bReturnValue ) ; } catch(e) { // Ignore the following error. It may happen if pointing to a // script not anymore available (#934): // -2146823277 = Can't execute code from a freed script if ( e.number != -2146823277 ) throw e ; } } } return bReturnValue ; } The function that is being tried to execute here is: FCKToolbarSet.prototype.RefreshItemsState I am using IE 6.0. The problem doesnt occur on Firefox 2.0. If you need more info, I'll be glad to provide it. |
|||||
#1682 | Problem editing control elements in Firefox, Safari, Opera | Bug | Normal | FCKeditor 2.6 | General | |
Description |
When you insert a control element and try to edit it, it's current information is not displayed. However, whatever you type in will be properly put into the element you're editing.
There seems to be a problem with the getSelection() function somehow; in the pop-up window, FCKSelection.GetSelectedElement() returns a null. IE 6 and IE 7 don't seem to have the problem, but the following do:
|
|||||
#1683 | Context menu still "shows" even if containing zero items | Bug | Normal | General | ||
Description |
This patch makes contextual menus fall back to browser default behavior if they don't contain any items. |
|||||
#1684 | SpellChecker having 1-off errors after skipping over links | Bug | Normal | UI : Spell Checker | ||
Description |
Change the editor to "Source" mode and paste in the following HTML. <p>At joe's,</p> <p> <a href="images/kim_spinach_dip.txt">kim spinach dip</a></p> <p><a target="_blank" href="images/kim_spinach_dip.txt">kim spinach dip 2</a></p> <p> Welcome to joe's & co.!</p> Exit "Source" mode and click on the spell check toolbar button. Click "Ignore" for each of the misspelled words. After the second misspelling (the one in the link text), the suggestions seem to be 1-off from the highlighted misspelled word. After clicking on "Ignore" a few more times, the error message 'Error: "Not in dictionary" text is missing.' appears. This has been tested with the PHP and ColdFusion server-side spell checker scripts. |
|||||
#1685 | Quick Upload bug ? | Bug | Normal | Server : PHP | ||
Description |
QuickUpload doesn't work in php but upload function works with the browser page. It seems that the action property of upload form is not good : /fckeditor/editor/filemanager/upload/php/upload.php?Type=Image I have tried with other too not only image. <form id="frmUpload" onsubmit="return CheckUpload();" action="/forum/fckeditor/editor/filemanager/upload/php/upload.php?Type=Image" enctype="multipart/form-data" target="UploadWindow" method="post"> <span fcklang="DlgLnkUpload">Télécharger</span> <br/> <input id="txtUploadFile" type="file" name="NewFile" size="40" style="width: 100%;"/> <br/> <br/> <input id="btnUpload" type="submit" fcklang="DlgLnkBtnUpload" value="Envoyer sur le serveur"/> <iframe src="javascript:void(0)" style="display: none;" name="UploadWindow"> <html> <head/> <body/> </html> </iframe> </form> |
|||||
#1686 | Bug with Blockqoute on a List | Bug | Normal | Core : Lists | ||
Description |
Hello FCKeditor Team, when you make a blockquote on a list an make a second list out of it then you destroy the code. We use the v2.3 but in your demo on your site, where we think its v2.5, we can rebuild the bug. The testbrowser is Firefox 2.0.0.11. <li>fkjsdkjsfd <ul> <li>kmfsdklmsf</li> <li>fjksdjklsfd</li> <li>kjfsdkjlsdf</li> <li>jfskjklfsd</li> </ul> </li> Regards |
|||||
#1689 | Deactivate XHTML validation | New Feature | Normal | General | ||
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). |
|||||
#1690 | Linking to same page sub-header fails | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Change 1008 caused further issues with the formating of anchor links. Anchor links that do not define the page before the anchor causes the anchor to be removed each time the FCKparser parses the document.
For example: |
|||||
#1691 | Safari: new links do not appear in editor unless text is made into a link | Bug | Normal | Safari Compatibility | UI : Dialogs | |
Description |
Reproduce:
Problem: Link does not appear. System: Mac OS X/Intel, unmodified Safari 3.0.2. |
|||||
#1692 | Check for invalid temp directory in ColdFusion filemanager connector | New Feature | Normal | FCKeditor 2.6 | File Browser | |
Description |
This feature request fixes a problem when the ColdFusion server returns an empty string when calling the function GetTempDirectory (). This is a known problem. Restarting the server will fix it, but it's also a good idea to allow the developer to specify a temp directory. I ran into this problem when integrating FCKEditor 2.5 into my application framework, and I could not upload files. After some debugging, I found that my development CF server was not returning a valid temp directory. In filemanager\browser\default\connectors\cfm\config.cfm, add a new temp file setting that can be set by the developer: Set a temporary directory Config.TempDirectory = GetTempDirectory (); In filemanager\browser\default\connectors\cfm\cf_commands.cfm, test to see if the specified temp directory is valid. If not throw an error. <cfset fsTempDir = REQUEST.Config.TempDirectory> <cfif NOT DirectoryExists (fsTempDir)>
</cfif> |
|||||
#1693 | Filemanager not returning error message (Javascript) | Bug | Normal | FCKeditor 2.6 | File Browser | |
Description |
I was having a problem with ColdFusions server not returning a valid temp directory when uploading a file. A empty Javascript alert popped up telling me nothing. After some debugging, I found that the message that was generated from a coldfusion exception was not being passed through to the function OnUploadCompleted () in the file: filemanager/browser/default/frmupload.html. To reproduce: Edit the file: filemanager\browser\default\connectors\cfm\cf_commands.cfm Delete destination="#GetTempDirectory()#" from the cffile call. Replace it with an empty string. This will give you an invalid directory, and an exception will be thrown. Try uploading a file into the file manager browser. A blank alert will appear. The Fix: The file filemanager/browser/default/browser.html has a function in it: function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg ) This function accepts a customMsg that contains the message from an exception in the connector script. This message is not being passed to the function (with the same name) that it calls. You need to pass customMsg to the OnUploadCompleted in the file upload frame, as follows: function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg ) {
} Then you need to modify the called function to accept the new parameter. In the file: file filemanager/browser/default/frmupload.html add the paramter to the end of the param list: function OnUploadCompleted( errorNumber, data, customMsg ) Then use it to display in the alert for error number 1:
|
|||||
#1694 | Replace all element.ownerDocument references with FCKTools.GetElementDocument(). | Bug | Normal | FCKeditor 2.6 | General | |
Description |
element.ownerDocument is not compatible with IE 5.5. FCKTools.GetElementDocument() should be used instead since it autodetects the most appropriate attribute to use as the return value. |
|||||
#1695 | Improving the default hotkey configuration? | New Feature | Normal | FCKeditor 2.6 | General | |
Description |
The following proposals were made from Paul (saul11) in our IRC channel.
These should be trivial changes to fckconfig.js, but careful considerations have to be made about whether they will impact useability of the editor. |
|||||
#1696 | img with float: left hard to move | Bug | Normal | Core : Styles | ||
Description |
After I assign a className to an inserted image (163x163px) that makes it float to the left, moving the image around becomes hard and sometimes impossible. The class is assigned through the styles dropdown list and assign .pictureLeft to the img. I also have a pictureRight class, but that one works perfect. The styles: .pictureLeft { border: 2px solid #616161; margin: 7px 23px 7px 0px; float: left; } .pictureRight { border: 2px solid #616161; margin: 6px 0px 6px 20px; float: right; } |
|||||
#1697 | OnSelectionChange event in certain Controls don't fire when using Firefox. | Bug | Normal | General | ||
Description |
This happened to 'dropdown list', 'radio button', and 'check box'. I think the right-click context menu is also using this event. Step to reproduce:
|
|||||
#1698 | Phantom scrollbar problem experienced when switching between normal and expanded editor views | Bug | Normal | General | ||
Description |
A new client sent me the attached .PNG examples of an ongoing "phantom scrollbar" problem experienced when switching between a "normal" and "expanded" view in the FCKEditor (version 2.4.3) with Java integration (version 2.3). I'm also attaching copies of the editor/css/fck_editorarea.css and editor/skins/default/fck_editor.css files. Mac OSX 10.4.10 (Tiger) is the OS and Firefox is the browser. The problem is reportedly occurring only on the Mac. I don't have a Mac, so must analyze the problem in the doc and on the Wiki. So far, I haven't seen a clue to a possible answer from either doc or Wiki. Advice or suggestions? |
|||||
#1699 | New FCKeditor have errors! Problem with FileBrowser | Bug | Normal | General | ||
Description |
Hello, When the page WWW fckeditor.net will load, I click on 'Demo' and I click on 'Insert/edit image' icon. Next on 'Browse'. When FCKeditor Resource Browser loaded, I'm not see a list of folder and files. When I upload a file, I see report 'Invalid name'. I try for various files and nothing. Please about help. Thank you |
|||||
#1700 | Absolute URLs not working in IE7 | Bug | Normal | General | ||
Description |
In the ImageManager, specifying an absolute URL does not load the image for previewing. In the editor, images with absolute URLs (e.g. /foo/bar/image.jpg) also show as broken. Also, EditorAreaCSS specified with absolute URL not applied or even loaded if ToolbarComboPreviewCSS is specified. See: http://www.fckeditor.net/forums/viewtopic.php?f=6&t=7949 http://www.fckeditor.net/forums/viewtopic.php?f=6&t=7942 |
|||||
#1701 | <span class="Apple-style-span"> for Bold with "Cmde" "B" | Bug | Normal | FCKeditor 2.6.1 | General | |
Description |
Os : Mac OS X.4 Browser : Safari 3.0.4 Following the resolved ticket #55, the case creating bold with short key "Cmde B" still generate : <span class="Apple-style-span" style="font-weight: bold;">. The other case are resolved. |
|||||
#1702 | <span class="Apple-style-span"> for Bold with "Cmde" "B" | Bug | Normal | Safari Compatibility | Core : Styles | |
Description |
Os : Mac OS X.4 Browser : Safari 3.0.4 Following the resolved ticket #55, the case creating bold with short key "Cmde B" still generate : <span class="Apple-style-span" style="font-weight: bold;">. The other case are resolved. |
|||||
#1703 | PHP integration | Bug | Normal | Server : PHP | ||
Description |
Hi, When integrating this version it turns out that when you use any templating system create() will echo the editor, causing it to load on th top of the page. To solve this I had to edit the files fckeditor_php4.php and fckeditor_php5.php to say: function Create() { return $this->CreateHtml() ; } Instead of function Create() { echo $this->CreateHtml() ; } Small bug, but a significant one I'd say. Cheers, Marcel |
|||||
#1704 | FCKStyles is not defined | Bug | Normal | Server : ColdFusion | ||
Description |
I am using ColdFusion 8 with the editor. When using IE it just throws a javascript error in Firefox with Error Console enabled it throws this error Error: FCKStyles is not defined Source File: http://test.arrelle.com/cw3/admin/fckeditor/editor/fckeditor.html?InstanceName=Page_Content_1&Toolbar=Default Line: 80 Server Windows 2003 Steps to reproduce: Open page with editor enabled error happens immediately. I have already put up a .httaccess page with AddType application/xml .xml I have also cleared the browser cache and reloaded the page. |
|||||
#1705 | Translations for the CKFinder and/or integrated upload and serverbrowser | New Feature | Normal | File Browser | ||
Description |
Dear, |
|||||
#1706 | CKFinder: When will the ASP version be ready??? | Task | Normal | General | ||
Description |
At the CKFinder page, I read that there wil be a ASP version. |
|||||
#1708 | JSP tag library does not support Safari 3 | Bug | Normal | Server : Java | ||
Description |
The FCK editor seems to have good Safari 3 support now. However, the JSP tag library considers all versions of Safari to be unsupported, and will replace the FCK editor with a normal text area, even if it's Safari 3. This means that sites using the JSP tag library still don't have Safari 3 support for rich text editing. Changing just 2 or 3 lines in the JSP tag library code would enable Safari support for all of these users. |
|||||
#1709 | IE: Missing semicolon for last declaration in style attributes | Bug | Normal | Core : Output Data | ||
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. |
|||||
#1710 | Copy and paste differences with Safari Mac | Bug | Normal | General | ||
Description |
Os : Mac OS X.4 Browser : Safari 3.0.4 When we copy a text from textedit for example to an FckEditor field, all the paragraphes are separated by :
|
|||||
#1711 | error using the asp version | Bug | Normal | General | ||
Description |
Warning : Unresponsive Script --'A script on this page may be busy or might have stopped responding. You can stop this script now, or you can continue to see if the script will complete' 2.While working on Firefox -- Show code window: the find/find next/find previous function does not search the string match even if the matching string exists in the HTML code. 3,Problems editing table properties –
4, When we insert a image in the online editor, it uses the following sample code: <input type="image" src="http://images.cmpgnr.com/883920225/sids1169848200197.jpg" align="top" /> The ‘input type=”image” code creates problems with email clients such as gmail and hotmail. It should use simple code such as: <img src="http://images.cmpgnr.com/883920225/sids1169848200197.jpg" align="top" /> |
|||||
#1712 | AddItem - Execute with plugin | Bug | Normal | General | ||
Description |
Think it's a bug, but I'm not sure. I wrote a plugin for a additional specialcombo. I fill the selectbox with this._Combo.AddItem( StyleDefinition, OptionName ), all works fine, but to display the Option ...prototype.Execute = function( OptionName, StyleDefinition ) is needed. You can test it with this code: http://www.fckeditor.net/forums/viewtopic.php?f=6&t=7983 |
|||||
#1713 | FF: unknown text in templates paramter | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
when editing a page with a template (in Mozilla Firefox) which has a paramter e.g. {{decrption|code=something}} a text appears inside the paramter:=UNIQ3b1c92887d90b001-pre-00000001-QINU |
|||||
#1714 | cursor jumps from beginning of text area to the end | Bug | Normal | General | ||
Description |
Descriptive summary: When you have the editor set to load content starting with <br> tags and later followed by text wrapped in a <div> it prevents the user from clicking on the first line of the text field. when clicked, it just jumps to the bottom of the text area. Browser name and OS: Tested on two separate computers with Firefox 2.0.0.11 on Windows XP Pro Service Pack 2 Steps to reproduce: In Firefox, have the FCK editor's $FCKeditor->Value set with something like as follows: <br /> <div><p>Hello World</p></div> View the web page containing the text editor. After the text editor loads and the user clicks on the first line of the text area (the line with the <br/> tag), the cursor appears at the top for just a split second, then jumps down to the bottom of the text area. When trying to click on the first line again, it just keeps jumping back to the bottom. If you remove the <div></div> tags surrounding the text on the lower portion of the text field in $FCKeditor->Value, the cursor no longer appears to jump. So this seems to have something to do with the <div> and the text area beginning with <br />. I have been a long time user of FCK editor and recently upgraded to the latest version. This bug just started appearing with the latest version. |
|||||
#1715 | ShowDropDialog must be considered only when ForcePasteAsPlainText = true | Bug | Normal | FCKeditor 2.6 | General | |
Description |
For #338, we have introduced a new feature which guarantees that dropped text will respect the ForcePasteAsPlainText setting, not allowing dropping rich contents in that case. The solution used is trying to transform the dropped data to simple text on the fly (IE only), showing a dialog to which dropping is possible, or even disable dropping all the way. To disable it, the ShowDropDialog can be set to "false". But, the current implementation makes it impossible to have the normal dropping behavior because the editor always looks for the ShowDropDialog, even if ForcePasteAsPlainText = false. It should not happen instead. |
|||||
#1716 | FCK Selection IE + Flashing cut and copy toolbar icons + optimisation | Bug | Normal | UI : Toolbar | ||
Description |
This is just a small tweak. To replicate: hold down the enter key in the editor. When the cursor gets to the point when it starts to scroll, the cut and copy toolbar items flash on and off. This is a result of the selection hack of the zero-width space in IE. I beleive this can be fixed by temporarilly detaching onselectionchange events when running this code. Detaching the onselectionchange event will also provide a possible optimisation and make pressing enter execute a little bit faster. |
|||||
#1718 | IE: Spellchecker throws js error | Bug | Normal | General | ||
Description |
We have encountered the following problem with using the spelling checker in Internet Explorer; this issue does not arise in Firefox: After selecting the appropriate spelling in the spelling checker window, if you click on Replace/Ignore/Cancel, the checker throws a JavaScript error. |
|||||
#1719 | Can't do unbold / unitalicize | Bug | Normal | General | ||
Description |
I just copy and paste the following at http://www.fckeditor.net/demo in source <p><span style="font-family: Times New Roman">“To be well-informed is to have the world at your fingers.”</span></p> <p><span style="font-family: Times New Roman">—Joseph Jones</span></p> <p><span style="font-family: Times New Roman">Dear Friend,</span></p> <p><span style="font-family: Times New Roman">Did you know that 2007 was actually the fifth highest year for home sales in history? Take a closer look at the numbers and you will discover that the state of the real estate market may not be everything the media leads you to believe. Sometimes we all need a little historical perspective to see the big picture clearly.</span></p> <p><span style="font-family: Times New Roman">Fortunately, I did all of the research and analysis for you already. This month’s Item of Value includes a variety of interesting and informative statistics that illustrate why last year was a good year overall for home sales. With mortgage rates historically low and new, innovative mortgage programs being unveiled, there is even greater promise for home sales in 2008.</span></p> <p><span style="font-family: Times New Roman">On the backside, you will find a noteworthy study on the rising trend of vacation home sales. Nearly one-third of vacation homes are being purchased with the intent of becoming a full-time residence upon the buyer’s retirement. With today’s mortgage rates, renting options and family gathering advantages, buying a vacation home is a great option to consider.</span></p> <p><span style="font-family: Times New Roman">With so much to take into account­­­ when you buy or sell a home, I am always available to help you sort out what is best for you.</span></p> <p><span style="font-family: Times New Roman">Sincerely,</span></p> <p><span style="font-family: Times New Roman"><i><b><span>Oh, by the way®…if you know of someone who would appreciate the level of service I provide, please call me with their name and business number, and I’ll be happy to follow up and take great care of them. </span></b></i></span></p> And I couldn't do unbold and unitalicize in last line. Sometimes it does unbold and sometimes doesn't do it. |
|||||
#1720 | Problems with HTML encoding of some text | New Feature | Normal | Core : Output Data | ||
Description |
I'm using FCK editor on a textarea which contains some expressions that must not be HTML encoded (ie: do not want to replace & with & or < with <, etc). These expressions are always surrounded with delimiters. For example, I am looking for any data within ${ } not to be HTML encoded. I have looked through the code and see with FCKEditor does the encoding, but there are no configuration parameters to allow me to control what data is/isn't encoded. I think an additional configuration item such as FCKConfig.SkipHTMLEncodingRE should be added to allow a user to specify RegularExpressions of text NOT to be HTML encoded. I will patch FCK and add in necessary configuration parameters to control this, but am not sure if/how to submit patches and/or if there is a better way to accomplish this. Any guidance would be appreciated. I've read through the FAQ already, but want to make sure that there isn't a better way to do this that has already been thought of. Thanks! Eric |
|||||
#1722 | Safari: Backspacing in table deletes empty rows | Bug | Normal | General | ||
Description |
If you go here: http://www.fckeditor.net/demo, insert an empty table, put the cursor in the leftmost cell of a row and hit backspace, the row is deleted and cursor moves outside of the table. If you type something in one of the rows and put the cursor in the leftmost cell of that row and hit backspace, all empty rows below it are deleted. This behavior differs from Firefox or IE, which preserve the table and only delete cell content. |