Custom Query
Results (2501 - 2600 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component |
---|---|---|---|---|---|---|
#2304 | JavaScript error in Replace dialog | Bug | Normal | General | ||
Description |
To reproduce the bug:
This bug was reported by dshafik form the IRC channel. |
|||||
#2305 | Opera 9.5 lose meta and style information | Bug | Normal | General | ||
Description |
Win2k SP4 5.00.2195/ Opera 9.5 Build 10063/ fckeditor 2.6.1 built 19297.
After some of my attempts, it seems as if after one metatag all the other tags in header lost. This occurs unfortunately also happens, only if the code is stored. |
|||||
#2306 | error loading the correct type from fckstyles.xml on firefox | Bug | Normal | Core : Styles | ||
Description |
I read this fixed issue #1426 Fixed the error loading fckstyles.xml in servers which cannot return the correct content type header for .xml files. but when i test in firefox (version 3 and 1.0.14) didnt working. I add in fckstyles.xml the code
in internet explorer 6 when i choose style from editor return the exactly Table on Right and working fine but when i doing the same in firefox and choose style didnt return the style Table on Right which i create in fckstyles.xml. Also i did some tests with image type and i found some differences in explorer and firefox when i choose HTML source and finally didnt working . Image Sample style
|
|||||
#2307 | RTL: Click on Link dialog tabs enlarge the dialog width | Bug | Normal | UI : Dialogs | ||
Description |
With FF3, when in RTL, like when loading the Arabic localization, if you click on a dialog tab the Link dialog enlarges on its width. Each click enlarges it s few pixels. No problem with IE. |
|||||
#2308 | RTL: The scrollbar is at the right side for the toolbar combos | Bug | Normal | General | ||
Description |
All toolbar combos has the scrollbar at the right side with Firefox 3. FF2 show them at the left, as expected. |
|||||
#2309 | Small arrow for select items on toolbar combos are not RTL | Bug | Normal | CKEditor 3.0 | General | |
Description |
In RTL mode, the small arrow indicating the selection of an item in the toolbar combos should be on the right. It is currently in the left, just like the LTR version. |
|||||
#2310 | Safari: Bottom border is not displaing | Bug | Normal | General | ||
Description |
With Safari, if you load any sample where the editor has it's default height (no sample01.html), the bottom border is not displayed. |
|||||
#2311 | IE: Dialogs are broken with server side samples | Bug | Normal | FCKeditor 2.6.2 | General | |
Description |
This is quite a strange bug. The dialogs are broken with server side samples, like ASP or PHP, since [2094]. The HTML samples are ok though. |
|||||
#2312 | ReplaceTextarea() broken on IE 6 | Bug | Normal | General | ||
Description |
From http://bugs.horde.org/ticket/6958 :
The code in question works in all other browsers. As stated above, the code works on IE 6 if I put in an alert() statement anywhere in the fckeditor code (I put in an "alert("HERE!");" statement right after the definition of FCKBrowserInfo. This code fires onload: oFCKeditor.ReplaceTextarea() In the base content of the page we have this declaration: var oFCKeditor = new FCKeditor('message'); The textarea definition looks like this: <textarea class="composebody" tabindex="8" name="message" id="message" rows="20" cols="80">Foo</textarea> |
|||||
#2313 | Subpage links get corrupted | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
If you create a subpage using this format
This does not effect new links added through the FCKeditor 'add link' functionality but does effect any previously produced pages that contain Also creating a page link within FCK just by typing (not using the inset link)
The first time you save this it hides the forward and training slashes, but if you open the editor up and save a second time it again shows the slashes. Ta John |
|||||
#2314 | Traditional and Simplified Chinese translations for Blockquote are mixed up | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
In Simplified Chinese translation file editor/lang/zh-cn.js, the Blockquote entry reads: Blockquote : "引用文字", But that is actually Traditional Chinese. Similarly, the Traditional Chinese translation file has the Simplified Chinese translation of Blockquote. This is not a too serious defect however because most Chinese users can understand both versions, it just feels strange. The bug was discovered when I was working on #2234. |
|||||
#2315 | FCKeditor.Net 2.5 gives wrong output | Bug | Normal | Server : ASP.Net | ||
Description |
If the text typed in the editor contains html codes (like in a HTML tutorial) the content of ctlEditor.Value is messed up. To reproduce, type into the editor the following lines: How to format source code: <code>lol</code> Submit and check the Value property. Expected result: "How to format source code:<br /><code>lol</code>" Actual result: "How to format source code:<br /><code>lol</code>" This bug makes impossible to display html codes. The reason is an error in the FCKeditor.LoadPostData method; the lines postedValue = postedValue.Replace("&", "&"); postedValue = postedValue.Replace( "<", "<" ) ; postedValue = postedValue.Replace( ">", ">" ) ; should be instead: postedValue = postedValue.Replace( "<", "<" ) ; postedValue = postedValue.Replace( ">", ">" ) ; postedValue = postedValue.Replace("&", "&"); This way, the &lt; will be correctly interpreted. |
|||||
#2316 | Sample posted data page should have the table width at 100% | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
If small data is posted by the editor, the posted data table shrinks to fit it. It should be instead always at 100% width. |
|||||
#2318 | Text reversed by SPAN and P tags | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
When you invoke the FckEditor 2.6.2 with the HTML text below, the resulting HTML text is reversed when editing is complete. It seems has something to do with the P and SPAN tags. In the example below, "First", "Second", and "Third" are in the correct order but when the HTML POST is done the resulting text is "Second", "Third" then "First". <html> <BODY> <p><span style="font-family: Comic Sans MS"><span style="font-size: small"> <p><span style="font-family: 'Arial','sans-serif'; mso-bidi-font-size: 10.0pt">First</p> </span></span> <p>Second <span style="font-family: Comic Sans MS"><span style="font-size: small"> Third</span></span> </p> </BODY> |
|||||
#2320 | FF3: Find/Replace scrolls the entire page | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
Because the Find/Replace code uses the "scrollIntoView" function, the entire page gets scrolled when highlighting the found elements. This is the same problem we had with #2279 and #2319, so maybe the same solution used there can be used here too. |
|||||
#2321 | FF3: FCK.InsertElement scrolls the entire page | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
Because the InsertElement code uses the "scrollIntoView" function, the entire page gets scrolled when inserting new block elements. This is the same problem we had with #2279 and #2319, so maybe the same solution used there can be used here too. |
|||||
#2322 | Fit window command resets caret position | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
To reproduce the bug:
Interestingly, the bug does not occur in Opera. |
|||||
#2323 | Show blocks command scrolls selection out of visible area. | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
To reproduce the bug:
|
|||||
#2326 | Using SpellerPages/aspell causing odd behavior | Bug | Normal | UI : Spell Checker | ||
Description |
I first reported this over at the Drupal module's issue page since that's where I first noticed it, but according to the author, it is directly a FCKeditor bug. I'll cut and paste what I already pasted there: Since I started running my own Drupal site, and using FCKeditor as my in place WYSIWYG editor, I've noticed that there are times when using the integrated spell checker results in it always being one word off, making it completely useless. It doesn't always happen, but in about 50% of my posts I end up with a spell checker that is always one word off from the word it's viewing, so you never can tell what you're changing. See the attached images from my actual use case if you don't know what I mean. It also seems to have this issue specifically around links in the page, as you can see from the pictures, and actually displays the code. Once it breaks like this it is stuck that way. Opening the page again results in the same behaviour being reproduced. My guess is that it's choking on some code in the post... but since it's code generated by FCKeditor, it's an internal issue. I'm using Firefox 3, FCKeditor 2.6.2, the latest Drupal module for 6.2, and a backend of Speller Pages (aspell) on a Linux box. My guess is that it is a FCKeditor problem, but might as well start here. |
|||||
#2327 | fckpaste.html - escaping HTML inside Javascript (like #2056) | Bug | Normal | FCKeditor 2.6.3 | UI : Dialogs | |
Description |
I am not allowed to reopen ticket #2056, so here is my report. The problem is still present in "editor/dialog/fck_paste.html" line 67 : </iframe> has to be replaced with <\/iframe> |
|||||
#2328 | Adding Multimedia | New Feature | Normal | General | ||
Description |
Hello FCKeditor Development Team, I'm hoping for some thoughts on the following question:
Any feedback at all would be muchly appreciated. Thanks,
|
|||||
#2329 | Dragresizetable Plugin: Use Relative Column Widths for Relative Tables | Bug | Normal | General | ||
Description |
When a table uses a relative width, the dragresizetable plugin should also use relative column widths. Otherwise the total width of the columns could be smaller or larger than the total width of the table. I have attached a patch to do this. |
|||||
#2331 | Content of <script> tags is not wrapped in <![CDATA[...]]> | Bug | Normal | General | ||
Description |
FCKeditor is supposed to output XHTML, but it fails to wrap content of <script> and <style> tags in CDATA sections. This is how a <script> tag should be generated in XHTML: <script type="text/javascript"> <![CDATA[ var a = "This is a line break: <br/>"; ]]> </script> See the XHTML specification for details: http://www.w3.org/TR/xhtml1/#h-4.8 Lack of CDATA sections screws up any XSLT transformations performed against the generated XHTML. |
|||||
#2332 | display folder in file pane and move files to other folder. | New Feature | Normal | General | ||
Description |
This feature likes windows explorer, files and folders all display in file pane,and users can drag the file into other folder. now ckfinder can't move files to other folder. |
|||||
#2333 | '>' replace with '>' on safari and Opera | Bug | Normal | FCKeditor 2.6.4 | General | |
Description |
I found this bug on my google summer of code 2008 period. when I use fckeditor as moinmoin wiki's gui editor, sometimes document parser throw exception. When I insert '>' to editor area it change to '>' after FCKDataProcessor.ConvertToDataFormat executed. as I found, this behavior only happend on apple safari(3.1.1 on window xp. I couldn't test any other safari browser). You can easily produce this bug using fckeditor's testcase.
attached file is testcase what I use and screeanshot of result.
|
|||||
#2334 | [IE] XHTML namespace support broken | Bug | Normal | CKEditor 3.0 | General | |
Description |
I have the following content: <p xmlns="http://www.w3.org/1999/xhtml">this is interesting</p> On Firefox 3 this shows in the source as: <p>this is interesting</p> So FCKeditor has stripped out the xmlns declaration. OK. But then I create an editor on IE7 with the same comment. The source shows: <p xmlns="http://www.w3.org/1999/xhtml">this is interesting</p> I then add the <em> tag around "is". This results in: <p xmlns="http://www.w3.org/1999/xhtml">this <em xmlns="">is</em> interesting</p> This breaks my content. It won't even show up in the browser, as FCKeditor has taken <em> out of the XHTML namespace. |
|||||
#2335 | [FF] Style is inserted incorrectly inside the <code> tag | Bug | Normal | Core : Styles | ||
Description |
In Firefox 3 I start with the following text: <h2>this is interesting</h2> <p>123</p> I select "interesting" and add <code> around it: <h2>this is <code>interesting</code></h2> <p>123</p> Then I go to the end of "interesting", hit "End", and backspace and type and backspace and type a few times. I get this: <h2>this is <code>inter<span style="font-family: Arial,Verdana,sans-serif;">esting</span></code></h2> <p>123</p> Bad, bad, and broken. |
|||||
#2336 | [IE] Second dialog box causes loss of position context | Bug | Normal | General | ||
Description |
Using IE7, FCKEditor 2.6.2 In editor scroll down to a table in page. Right-click and select 'Cell Properties'. If select an attribute like 'word wrap' and click OK then remain with cell that I started off with. However, if I select 'Background color' or 'Border color', which launches a second dialog box, then the content in the editor jumps to the top of the page and I no longer return to the cell that I was working on. |
|||||
#2337 | Formatting not applied | Bug | Normal | Core : Styles | ||
Description |
Hi, Enter in the editor someting like below: First Line Second Line With cursor on second line click "right justify" button. Click "Source" button and you can see something like this: <p>First Line</p> <p>Second Line</p> Note that Second Line does not have any styles. Click "Source" again - Second Line is not right justified anymore. Click "Right Justify" again and then "Source". Note that style is applied now. Can be reproduced on http://www.fckeditor.net/demo |
|||||
#2338 | problem running ver 2.6.2 in an IE HTA application | Bug | Normal | General | ||
Description |
I am trying to use FCK inside an IE hta application. The hta file opens an IE browser and displays the html page. I have atached a sample.The file will need to be edited to open a valid page in your test environment domain.The hta file is simply double-clicked on a desktop. I have also included a test.htm file to host the FCK editor. The test html page tries to open a second page containing the FCKeditor. The contents of the second page can be any valid html page the uses FCKeditor. The problem lies in the IFRAME on the first page. It specifies an attribute of "application=yes". I require this in order for the inner or second html page to be able to run scripts on the outer or parent page.(It is a dynamic menu system i have created). If i set application=no on the IFRAME, the second page containing FCK works fine but my menuing scripts break(the inner page cannot access the outer page) Changing the application=yes repairs my scripting problem, but causes FCK editor to break when it tries to load. I have searched your existing tickets but i am unsure if this issue is related to any existing fixes, and if so i am unsure how to resolve. Any help would be appreciated. |
|||||
#2339 | Pre-defined default values | New Feature | Normal | CKEditor 3.0 | UI : Toolbar | |
Description |
Add a feature that enables the installer of FCKeditor to add pre-defined properties to Toolbar elements. For example: Step 1. The installer could add something like Toolbar.table.width = 400; to fckconfig.js Step 2. The user would edit a page with FCKeditor and insert a table and the width attribute would already be set to 400. (I will use the table toolbar element from here on but ultimately it would be good to be able to set pre-defined properties for any toolbar element that has properties.) Normally one would use CSS but what if we don't want all tables in the page to behave this way, only the tables inserted by users in FCKeditor? For more information (notably my last post!): http://www.fckeditor.net/forums/viewtopic.php?f=5&t=5739 thanks, r |
|||||
#2340 | [FF3/WinXP] context menu does not appear | Bug | Normal | General | ||
Description |
Under Firefox3 (Windows XP, SP2, Home Edition) the context menu never appear. All Addon's has been disabled. Tried with FCK-version: Version 2.6.2 Build 19417 Tried with Firefox: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9) Gecko/2008052906 Firefox/3.0 |
|||||
#2341 | Multiple folder locations on single page | New Feature | Normal | Server : Java | ||
Description |
Now the FCKeditor Java v2.4 implementation lists only the single folder contents in the browse server page.It would be nice if we can display multiple folder locations on the load in the same page. |
|||||
#2342 | Horizontal Rule id get removed on IE7 | Bug | Normal | General | ||
Description |
If I switch to source view (IE 7) and type: <hr id="test" width="50%" /> then switch back to WYSIWYG and then back to source, the code gets changed to: <hr width="50%" /> on Firefox 3.0 it leaves the id intact. |
|||||
#2343 | ckfinder permission error | Bug | Normal | General | ||
Description |
IE 6, "http://localhost:8080/ckfinder/ckfinder.html" upload file, it's normal, but "http://10.67.206.245:8080/ckfinder/ckfinder.html" replace localhost with ip address, upload file will promote "no permission" message. FireFox 3,it's normal, this error is only in IE. |
|||||
#2344 | Completing Persian Translation | Bug | Normal | FCKeditor 2.6.3 | UI : Language | |
Description |
The Persian translation (fa.js file) is not completely translated. The appropriate patch for completing traslation is attached |
|||||
#2345 | Context Menu not open in FireFox3 | Bug | Normal | UI : Context Menu | ||
Description |
Bug In Mozilla 3.0(released on 17th June 2008) + FCKEditor 2.6.x Insert any Input Control like Radio, CheckBox,Select in FCKEditor. User not able to select that control and because of that User not able to execute Control Properties. Which Opened by on mouse right click after selecting that Control. |
|||||
#2347 | IE: The "id" attribute of <hr> elements get lost | Bug | Normal | General | ||
Description |
Pasting the following code in the source: <hr id="test" /> Switching to WYSIWYG and back to source gives us: <hr /> Confirmed with IE. Ok with Firefox. |
|||||
#2348 | Bug fix problem (#2248 not fixed) | Bug | Normal | General | ||
Description |
When trying to insert two FCK.InsertHtml(" ") together, with the bug fix (#2248), happend that it only insert one " " after a plain space. Meaning that the bug #2248, marked as fixed, is not yet solved. Luck! Steps to reproduce: 1.- Try to do two FCK.InsertHtml(" ") together.
Browser: Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.9) Gecko/2008052906 Firefox/3.0 OS: Windows XP Proffesional with SP2 |
|||||
#2349 | [IE] Dialog system is broken with rtl | Bug | Normal | FCKeditor 2.6.4 | UI : Dialogs | |
Description |
When using RTL language on IE6, the new dialog system is broken (there are two scroll bars, and some of the dialog is missing).
The image attached is using the nightly build, with IE6 and 'he' in the accept_language. FCKConfig.AutoDetectLanguage = false ; FCKConfig.DefaultLanguage = 'he' ; in the fckconfig.js file. |
|||||
#2350 | Autogrow stopped working in FCKeditor 2.6.2 | Bug | Normal | General | ||
Description |
Autogrow plugin does not function any more (FF3.0 / IE6 / IE7 / Opera 9.5x). Also noted here: http://www.fckeditor.net/forums/viewtopic.php?p=27040#p27040 |
|||||
#2351 | AutoDetectLanguage, not using "first available language" | Bug | Normal | General | ||
Description |
My system (Windows XP)language was set to Mexican Spanish and AutoDetectLanguage was set to true but the translation in es.js did not display, en.js was used instead. I did the same test with Canadian French and fr-ca.js was used. Of course, I was testing with IE 7. |
|||||
#2352 | Huge data gives an error | Bug | Normal | General | ||
Description |
I am using the 2.5.1 version. One bug is really giving me trouble. I searched the whole forum...but no solution. Please help me if you can: Bug: On my site, Wehn I copy small data When the data is limited...all goes well. But if it is huge..i get this error "CGI Error" The specified CGI application misbehaved by not returing a complete set of Http Headers." I still get error..when data is huge. |
|||||
#2353 | Image resized by mouse doesn't preserve its new size on save | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Hi, I´m running FCKeditor in Mediawiki 1.12. I am having trouble with the image uploading. I have 2 main issues:
I´ve already checked out ticket #407 and its fix in Changeset 339; my fck_image.js is just like 339 but still I´m experiencing trouble. Q: Is FCKeditor 2.5.1 the newest version for Mediawiki?? Thanks, cableguy ps: running Apache 2.2 |
|||||
#2354 | FCKeditor 2.6.2 - problem with loading on opera 9.50 | Bug | Normal | General | ||
Description |
When i Load FCKeditor on my site(default toolbar, I only turned on file/photos upload) i see errors. I attach text file with them. |
|||||
#2356 | IE7 Access Denied - Local Filesystem | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
Problem: Opening any of the html sample pages of FCKEditor from the filesystem in IE7 gives an "Access Denied" error coming from file fckeditor\editor\js\fckeditorcode_ie.js on line 62 with the code: "B.open("GET",A,false);". This has been resolved by me in the post: http://www.fckeditor.net/forums/viewtopic.php?f=6&t=10424 Basically the native IE7 XmlHttpRequest Object appears to not allow requests on the filesystem. Here is the offending code causing the issues: (file fckeditor\editor\_source\internals\fcktools_ie.js) FCKTools.CreateXmlObject = function( object ) {
} |
|||||
#2357 | PropertiesLoader Exception when undeploying a webapp using FCKeditor.Java Integration | Bug | Normal | FCKeditor.Java 2.4.1 | Server : Java | |
Description |
Hello package net.fckeditor.handlers; import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Properties; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class PropertiesLoader { private static final Logger logger = LoggerFactory.getLogger(PropertiesLoader.class); private static Properties properties = new Properties(); static { try { InputStream in =PropertiesLoader.class.getResourceAsStream("default.properties"); if(null == in) { logger.warn("Can't find default properties!"); } else { properties.load(new BufferedInputStream(in)); logger.info("Default's properties loaded successfully!"); in.close(); } } catch (IOException e) { logger.error("Error while loading default properties!", e); throw new RuntimeException("Can't load default properties!", e); } catch (NullPointerException e) { logger.error("Error while loading default properties!", e); throw new RuntimeException("Can't load default properties!", e); } try { InputStream in = PropertiesLoader.class.getResourceAsStream("/fckeditor.properties"); if (null == in) { logger.warn("Can't find user properties!"); } else { properties.load(new BufferedInputStream(in)); logger.info("User's properties loaded successfully!"); in.close(); } } catch (IOException e) { logger.error("Error while loading user properties!", e); throw new RuntimeException("Can't load user properties!", e); } catch (NullPointerException e) { logger.error("Error while loading user properties!"+ e); throw new RuntimeException("Can't load user properties!", e); } } public static String getProperty(final String key) { return properties.getProperty(key); } public static void setProperty(final String key, final String value) { properties.setProperty(key, value); } }
I just added in.close() because PropertiesLoader.class.getResourceAsStream throws an exception when i undeploy my webapps on glassfish ;) |
|||||
#2359 | fckeditor-java-demo fails in Glassfish. | Bug | Normal | FCKeditor.Java 2.4.1 | Server : Java | |
Description |
Demo webapp cannot be deployed in Glassfish. Admin App says: invalid URL pattern. |
|||||
#2360 | Integrate Editarea in FCKeditor | New Feature | Normal | UI : Source View | ||
Description |
http://sourceforge.net/project/showfiles.php?group_id=164008 I've seen this already in action in the FCKeditor (http://wolfcow.andrewtite.com/admin/editor8.html) and would be a great enhancement to the editor. |
|||||
#2361 | Provide interface for locale resolution | New Feature | Normal | FCKeditor.Java 2.5 | Server : Java | |
Description |
It should be possible to localize the messages returned by tags and connector. Provide also 2 basic implementations which resolve by Accept-Language header and JSTL default locale. |
|||||
#2362 | Remove/Deselect style | Bug | Normal | Core : Styles | ||
Description |
This only happens on some styles. Once a style is selected, it can not be removed by re-selecting the style. This can be shown by selecting the Red Title in the demo. I know that changing the format to normal will fix this particular example, however re-enabling the format field in my case is not an option. |
|||||
#2363 | IE7 Local Filesystem Permission Denied | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
This error occurs when loading a document into the fckeditor when running the editor from the filesystem. I am noticing that this error only occurs with very large files. I have a 288 KB html file (which unfortunately I cannot share) that causes this error to appear. Smaller files open in the editor just fine however. I am setting the text of this file using the function
where the html value passed in has the contents of the body of the page to be edited. I cannot reproduce this error on the demo or on the latest demo. I tried to reproduce it by opening the source view, pasting in my code, and going back to the wysiwyg view. I have isolated the problem (when it occurs for me) to the fckeditor/editor/_source/internals/fckdocumentprocessor.js file. Here are my changes to get it to work properly for me. (starts around line 145)
I just commented out the logic that was happening. For whatever reason access to the doc variable was denied. Trying to access any variable inside the doc variable causes a permission denied error. |
|||||
#2364 | Support for parameterized templates | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
when using mediawiki templates like {{Protocolpoint xcx |Nr = 1 |Title = Title |Desc = content |responsible = [[User:Frank Mustermann|Frank Mustermann]] |due = 1.4.2008 |status = open }} only <T> is diaplyed. The axaj-sub-editor is much too small to handle these cases |
|||||
#2365 | Can't Add URL to Image | Bug | Normal | UI : Dialogs | ||
Description |
Seems to be very similar to Ticket 396, but I could duplicate it on the demo site and the nightly build using Opera 9.51, Build 10081 on Win XP SP 2.
The error console says: JavaScript - http://www.fckeditor.net/fckeditor/2.6.2/editor/fckdialog.html [[BR]] Event thread: click[[BR]] Error:[[BR]] name: TypeError[[BR]] message: Statement on line 82: Cannot convert undefined or null to Object[[BR]] Backtrace:[[BR]] Line 82 of linked script http://www.fckeditor.net/fckeditor/2.6.2/editor/dialog/common/fck_dialog_common.js: In function SetAttribute[[BR]] element.setAttribute( attName, attValue, 0 ) ; // 0 : Case Insensitive[[BR]] Line 265 of linked script http://www.fckeditor.net/fckeditor/2.6.2/editor/dialog/fck_image/fck_image.js: In function Ok[[BR]] SetAttribute( oLink, '_fcksavedurl', sLnkUrl ) ;[[BR]] Line 663 of inline#1 script in http://www.fckeditor.net/fckeditor/2.6.2/editor/fckdialog.html[[BR]] if ( frmMain.Ok && frmMain.Ok() )[[BR]] Line 1 of function script [[BR]] Ok();[[BR]] ... stacktrace: n/a; see 'opera:config#UserPrefs|Exceptions Have Stacktrace'
The cause of the failure seems to be that the line: oLink = oEditor.FCK.CreateLink( sUri )[0] ; returns undefined. |
|||||
#2366 | in FF3 shift-enter causes a scroll up | Bug | Normal | General | ||
Description |
In Firefox (v. 3.0), clicking shift-enter to insert line breaks, FCK Editor scrolls up, that is very fastidious if the editor is positioned at the bottom of a form. It seems to work OK in Explorer (v. 7.0). Great application - Thank you and cheers from Italy. |
|||||
#2367 | IE: List padding may cause list command errors | Bug | Normal | General | ||
Description |
When applying "padding" and "margin" styles to list elements, IE may "expand" them, making it possible to place the caret "after" sub-lists in nested lists. Other browsers don't make it possible. The problem is that this uncommon caret position breaks the list commands. Steps to Reproduce
<style type="text/css"> ol { padding-bottom: 20px; } </style> <ol> <li>Item 1 <ol> <li>Item 1.1</li> </ol> </li> </ol> <p> Some text. </p>
A JavaScript error will be thrown and nothing else happens. |
|||||
#2368 | IE: Protected source for comments is broken | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
The fix for #2263 is breaking source protection in IE SVN nightly. To replicate:
|
|||||
#2369 | Updated Faroese language file 2008-07-15 | Task | Normal | FCKeditor 2.6.3 | UI : Language | |
Description |
File fo.js is attached |
|||||
#2370 | MediaWiki 1.13 + FCKeditor - Image button search and preview not working | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Hello folks,
|
|||||
#2371 | ForcePasteFromWord configuration option | New Feature | Normal | General | ||
Description |
Sometimes it is necessary to clean all text pasted to the editor. Since Gecko browsers do not provide methods to do this in the OnPaste handler, this should be done other way. FCK.CustomCleanWord function provides a way to write a custom cleaning function. So the only thing needed here: to have an option to pass all pasted text thru this function. Such option may be called ForcePasteFromWord. It should work likewise ForcePasteAsPlainText option, so I do not think that I should write complete definition here. |
|||||
#2373 | Loading Problem on postback when FckEditor placed in update panel | Bug | Normal | General | ||
Description |
Hi,
|
|||||
#2374 | FCKEditor saves edited data but loses formatting | Bug | Normal | General | ||
Description |
Hi,
heading formatting, background image and main banner being removed plus the text is not bold anymore, but normal All other code is showing up fine. I am using FCKEditor with PHP and MySQL. I have tried taking out the stripslashes in the editor page, but no luck with that. Any help is much appreciated, Thanking You, Pat |
|||||
#2375 | [PATCH] FCKeditor.Net - Name attribute for iframe tag is not outputted | Bug | Normal | Server : ASP.Net | ||
Description |
The name attribute is necessary for some browsers to interact with the iframe as a frame using JavaScript. frames['fckeditor'].FCK.InsertHtml("<p>hi</p>"); Without the name attribute, this code will fail in IE and Firefox. A patch has been attached to add the name attribute to the iframe tag. |
|||||
#2376 | FCKeditor should remember the last selection position when it loses focus in IE. | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
IE has a long standing bug in which it allows only a single selection position to exist within a window, no matter how many iframes and different pages are opened inside. This causes an annoying problem with FCK.InsertHtml():
It should be possible to use the onbeforedeactivate event to save the selection position before FCKeditor is defocused. |
|||||
#2377 | CreateLink in Firefox 3 | Bug | Normal | General | ||
Description |
If i insert link to a normal text , and i click on view source , the link html is like this <a href="javascript:void(0);/*1216280660272*/"> instead of <a href="index.html"> i trace the code i think this is something related to document.evaluate in CreateLink method |
|||||
#2379 | Access denied in IE7 and Wordpress 2.5.1, FCKEditor 2.4.1 WP plugin | Bug | Normal | General | ||
Description |
I sometimes get the following error message in Wordpress 2.5.1, when accessing my account from IE7: Line: 40; Character: 968; Error: Access denied; Code:0; URL: ../wp-content/plugins/fckeditor_for_wordpress/fckeditor/editor/fckeditor.html?InstanceName=Content&Toolbar=Default This happens when I click on a page I want to edit. Interestingly enough, however, if I log out and then log back in again (with or without cleaning history, cookies and temporary files), the problem disappears and FCKEditor works correctly. |
|||||
#2380 | FCKEditor plugin for Wordpress developers' network | New Feature | Normal | General | ||
Description |
I have recently spent a fair amount of time browsing for a WYSIWYG Editor plugin to implement on the ILSU Wps website. While, in fact, tinyMCE is not all bad, it does sometimes display awkward behavior when switching from the Visual to the HTML view. Plus, it keeps messing up <p>, <div> and <br/> tags. I ultimately opted for Dean’s FCKEditor WordPress Plugin, since it features an up-to-date version of the FCKEditor sotware, featuring a user-friendly interface to perform ordinary maintenance tasks (such as uploading images or files in a specific folder on your server) and displaying the ability not to mess up those tags which tinyMCE gives problems with. However, my fear is that, since this plugin rests for now on the shoulders of one man (Dean Lee, whom I personally thank for giving birth to the plugin in the first place), it might one day cease to be regularly updated to future versions of FCKEditor and WordPress. After all, this is what (so it seems) happened to the Xinha4WP plugin, a WordPress implementation of the Xinha open source editor, which “died” at version 1.2 beta. In my view, the problem with one-man plugins is not so much that users do not improve them: quite on the contrary, I am fairly sure that, as with all Open Source software, there exist scattered groups of people working on the plugin code. However, the problem is that all such ”tweaks” (which may often consist of important bug fixes) rarely get by to a larger audience, meaning that plugin-hackers keep their findings and changes to themselves, and might not - actually - even regard themselves as developers. This, however, chills any incentive towards the creation of a truly integrated social network of developers. In fact, the countless but de-centralized efforts of many ultimately do not go into the generation of newer and better versions of the plugin. Moreover, original developers might get bored of constantly receving bug reports and help requests from less tech-savvy users, and might ultimately decide to give up the regular updating of the plugin altogether (after all - I believe - one thing is developing, another is implementing, which sometimes requires personalized care and might therefore be annoying to individually perform for free). Newbie users will further get discouraged by a plugin that contains long-known-but-never-fixed bugs, and ultimately look somewhere else, or just bend their head, and submit to tinyMCE. Hence, I believe that, if we truly believe that FCKEditor deserves to stay in - and keep up with - WordPress (which - in my view - might become in the near future THE content management system, for its incredible ease of use, and hence the greatest source of FCKEditor users), the only way to keep this piece of software alive, and to have it survive the interests of its originator, is to set up a developers’ website, where users familiar with the relevant code may submit and, most importantly, share bug fixes to the FCKEditor plugin, to be ultimately integrated in newer versions. It is only by joining the decentralized efforts of many toward a single goal that it might be possible to achieve it, otherwise, they’ll just disperse. |
|||||
#2381 | Double Iframes for FCKeditor | Bug | Normal | FCKeditor 2.6.4 | General | |
Description |
Possibly asked and answered. Sorry I don't have time to download and verify bugs, and I'm not sure what component this even belongs to. We're using Drupal 5.6 with the 5.x-2.2-beta2 module of FCKeditor. What I suspect is that the error is only visible with this combination. What I know is the error is completely avoidable. in fckeditor.js in function FCKeditor.ReplaceTextarea() Add the following code at the very beginning: var oIFrame = document.getElementById(this.InstanceName + '_Frame'); if (!oIFrame) { Then add the following code at the very end: } This protective if-block will prevent any duplicates from be formed, since the code inside that if-block creates the iframe with then name: this.InstanceName + '_Frame'. Yes, it's probably the fault of some other library further up. Shouldn't matter. Code should do the right thing, and duplicate editors is bad. This won't appreciably affect speed of the component, and is a good thing. If I'm reporting this the wrong way, sorry, if I'm reporting to to the wrong place, double my-bad. But there you go. Jeff |
|||||
#2382 | add method isCreateFolderEnabled to UserAction interface | New Feature | Normal | FCKeditor.Java 2.5 | Server : Java | |
Description |
see description and add to upgrade notes |
|||||
#2383 | set defaults in default.properties for all interfaces | Task | Normal | FCKeditor.Java 2.5 | Server : Java | |
Description |
the default.properties shall contain references to default implemenations of UserAction, UserPathBuilder, and LocaleResolver. These impelemenations should be used when the user/dev does not provide a custom one. |
|||||
#2384 | Tag object: Switching to wysiwyg mode changes param "movie" to "about:blank" | Bug | Normal | General | ||
Description |
Hello, try insert this code to fckeditor in source mode and switch to wysiwyg and back. (It is same when form is loaded.) <object width="320" height="240" align="" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="movie"> <param name="movie" value="http://www.prokrasnetelo.cz/data/player.swf?file=/data/reportaz-vareni.flv&size=false&aplay=false&autorew=true&title=" /> <param name="bgcolor" value="#ffffff" /> <embed width="320" height="240" align="" bgcolor="#FFFFFF" src="http://www.prokrasnetelo.cz/data/player.swf?file=/data/reportaz-vareni.flv&size=false&aplay=false&autorew=true&title=" quality="high" name="movie" type="application/x-shockwave-flash" plug="" inspage="http://www.macromedia.com/go/getflashplayer"> </embed> </object>
It will change
Thank you! |
|||||
#2385 | Updates to the Swedish language file | Task | Normal | FCKeditor 2.6.3 | UI : Language | |
Description |
Update all missing translation in the swedish lang-file except two where I was unsure about the right translation |
|||||
#2386 | Patch for function wfSajaxSearchArticleFCKeditor | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
The function searches by default only the NS_MAIN namespace. It does not extract the namespace from search term and thus does not find articles that are not located in NS_MAIN. The below code adds this functionality: function wfSajaxSearchArticleFCKeditor( $term ) {
|
|||||
#2387 | FF: Bulleted list error with CTRL+A | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
Tested with Firefox/2.0.0.16, in the online demo. With the following source: <div>aaa</div> <div>bbb</div> <div>ccc</div> In editing mode:
A JS error is thrown and the first line of text is deleted. |
|||||
#2388 | FCK fake objects are not copy-and-paste proof | Bug | Normal | General | ||
Description |
In both IE and FF:
JS error "Permission denied" occures |
|||||
#2389 | Merge Cells removes attributes from tr in table | Bug | Normal | General | ||
Description |
When two cells are merged the class attribute on the tr(s) in the table is removed. Steps to reproduce: Click on the source button and remove the existing code and paste in the following <table> <tbody> <tr class="sample_class"> <td>Test cell</td> <td>Test cell 2</td> </tr> </tbody> </table> Click the source button again to exit source view and click in the two cells. Right-click and select merge cells (or merge right). Click source again and the class attribute is removed from the tr. This is reproducible in either the demo on FCKeditor.net or the nightly build. It reproduces in FF3, FF2, IE7, and IE6 and doesn't seem to be dependent on platform used. |
|||||
#2391 | Object works in FF3 but not IE7 | Bug | Normal | General | ||
Description |
If i use <object width="480" height="392" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="gtembed"> <param name="allowScriptAccess" value="sameDomain" /> <param name="allowFullScreen" value="true" /> <param name="movie" value="http://www.gametrailers.com/remote_wrap.php?mid=36320" /> <param name="quality" value="high" /> <embed width="480" height="392" align="middle" src="http://www.gametrailers.com/remote_wrap.php?mid=36320" swliveconnect="true" name="gtembed" allowscriptaccess="sameDomain" allowfullscreen="true" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed> </object> In a news post, it will be shown in FF3 but not in IE if i look at the source in IE it looks like this <object width='"480"' height='"392"' id="gtembed" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"> <param value="sameDomain" name="allowScriptAccess" /> <param value="true" name="allowFullScreen" /> <param value="http://www.gametrailers.com/remote_wrap.php?mid=36320" name="movie" /> <param value="high" name="quality" /> <embed width='"480"' height='"392"' align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" allowfullscreen="true" allowscriptaccess="sameDomain" name="gtembed" swliveconnect="true" src="http://www.gametrailers.com/remote_wrap.php?mid=36320"></embed> </object> |
|||||
#2392 | mac OS and fckeditor, when saving informatio, after show "" style="display:none" /> " | Bug | Normal | General | ||
Description |
Hello i have problem,i use macOs and this very good redactor, but i sow one problem, when i put information and do enter and after saving it and show for me such tags " style="display:none" /> ". How i can it fix? thank you |
|||||
#2393 | Links to database pages | New Feature | Normal | UI : Dialogs | ||
Description |
Hello, It should be easier to create a own list of links in the link dialog. At this moment i'm using some PHP code to create a list of internal links: function fillURL(internPage) { document.getElementById('txtUrl').value = internPage; document.getElementById('optionHTTP').selected = false; document.getElementById('optionOTHER').selected = true; } PHP: <select id="cmbLinkType" onChange="SetLinkType(this.options[this.selectedIndex].value);"> <option value="url" fckLang="DlgLnkTypeURL" selected="selected">URL</option> <option value="anchor" fckLang="DlgLnkTypeAnchor">Anchor in this page</option> <option value="email" fckLang="DlgLnkTypeEMail">E-Mail</option> <?php $pageCats = mysql_query("SELECT * FROM pagina_categorie ORDER by categorie_id ASC") or die ( mysql_error() ); while ( $getCat = mysql_fetch_assoc ( $pageCats ) ) { echo '<optgroup label="'.stripslashes($getCat['categorie_naam']).'">'; $pages = mysql_query("SELECT pagina_id, pagina_titel FROM paginas WHERE pagina_categorie=".$getCat['categorie_id']." ORDER BY pagina_titel ASC") or die ( mysql_error() ); while ( $Get = mysql_fetch_assoc ( $pages ) ) { echo '<option value="url" onclick="fillURL(\'cardan/index/'.$Get['pagina_id'].'/'.stripslashes($Get['pagina_titel']).'\');"> '.stripslashes($Get['pagina_titel']).' </option>'; } echo '</optgroup>'; } ?> </select> This only doesn't work in IE7, but when I change the function SetLinkType to check the value of a selected item, de link dialog doesn't work anymore. FireBug reports the following error: A is undefined FCK.Description="FCKeditor for Gecko Bro...tem(i);E.href=A;B.push(E);}};return B;}; So there should be a option in FCK that makes it easer to create own links in de option dialog. |
|||||
#2394 | Split Vertically - It blows up | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
Steps: 1- Add a new 3x3 table. 2- Point your mouse on the last corner cell (3,3). 3- Right click, and choose "Cell / Split Vertically". The error "Invalid Argument" appears. The cell is not splitted. |
|||||
#2395 | InsertHtml() can prefix an additional annoying blank paragraph with IE | Bug | Normal | General | ||
Description |
If content being inserted is not being inserted into a block level element, but itself begins with a block level element (e.g. <p>insertion</p>), then this results in the extra blank prefixed paragraph. Following are lines 165 through 173 (as of 07/19) of the InsertHtml() function in the 'internals/fck_ie.js' file. // Using the following trick, any comment in the beginning of the HTML will // be preserved. html = '<span id="__fakeFCKRemove__" style="display:none;">fakeFCKRemove</span>' + html ; // Insert the HTML. oSel.createRange().pasteHTML( html ) ; // Remove the fake node FCK.EditorDocument.getElementById('__fakeFCKRemove__').removeNode( true ) ; This 'trick' is what I find causing the extra beginning blank paragraph. I suspect that pasteHTML() is making the HTML valid by putting the span inside of a block level element (namely a <p> tag). Then the removal only removes the span thus leaving the extra paragraph. ( <p> </p> ) I'd prefer having to embed a beginning comment in a tag due to omitting this trick [which is what this ends up doing in this case anyway given <!-- comment --><p>insert</p> to get <p><!-- comment --></p><p>insert</p>] than have this paragraph added when inserting a block with no comment. In other words, this 'trick' semi-fixes so few cases (none in my case) with annoying expense for many use cases. If preserving such comments is important, then replacing 'span' with 'p' (or 'div') works in this particular case, but unacceptably breaks inline insertions. Perhaps the appropiate way should be determined by looking at the parent element. I've tried using elements that can be either block or inline elements (e.g. object), but without success. They always get treated like inline elements. (also work like span) So, unfortunately a good solution for this problem isn't as simple as merely changing the tag. |
|||||
#2396 | SpellerPages can lead to Permission Denied errors with IE | Bug | Normal | FCKeditor 2.6.3 | UI : Dialogs | |
Description |
One set of steps to reproduce with IE7:
You then get Permission Denied error on line 357. This isn't a problem with FF. I've reproduced with IE7 and several FCKeditor versions from SVN back to version 2.4.3. One way to work around it is to replace the SetHTML() [or SetData()] function in 'fck_spellerpages.html' with: oEditor.FCK.Commands.GetCommand('SelectAll').Execute(); oEditor.FCK.InsertHtml(document.getElementById('txtHtml').value); (but with extra prefixed blank paragraph noted by ticket #2395) I have NOT been able to reproduce by using SetData() in a much simpler, but very similar scenario (plugin) that replaces content containing an anchor tag. So, there seems to be more to causing this than just simply using setData() with content containing an anchor tag. |
|||||
#2397 | "Open Link" is not working for e-mail and anchor links | Bug | Normal | General | ||
Description |
<p>Link to <a href="javascript:location.href='mailto:'+String.fromCharCode(117,115,101,114,64,101,120,97,109,112,108,101,46,99,111,109)+'?'">email</a></p> <p>Link to <a href="#Test">anchor</a> <a name="Test"></a></p>
For e-mails, a 404 happens. It should properly open the e-mail link instead. For anchors, the "Open Link" option should not be available. Confirmed with FF3 and IE7. |
|||||
#2399 | FCKEditor AJAX problem - WebForms.PageRequestManagerServerErrorException: Status code 500 | Bug | Normal | Server : ASP.Net | ||
Description |
When FCKEditor appears on an aspx / ASP.Net page which also uses an UpdatePanel, an error sometimes occurs on postback. The error text is as follows: WebForms.PageRequestManagerServerErrorException: Status code 500 The error occurs when the FCKEditor control has content rendered in HTML. I found the following fix at ASP.Net's forum... I resolved it by adding ValidateRequest="false" in the tag <%@ Page ...%> The page declaration can be set as follows... <%@ Page Language="VB" CodeFile="blah.aspx.vb" Inherits="blah" ValidateRequest="false" %> After a little delving, I've discovered "why" the ValidateRequest=False trick works (for FCKEditor in an UpdatePanel). First of all, note the following about ValidateRequest: Request validation, a feature of ASP.NET since version 1.1, prevents the server from accepting content containing un-encoded HTML. (from http://www.asp.net/learn/whitepapers/request-validation/)
I found that if my FCKEditor contains HTML then it fails the postback. I'm guessing that the FCKEditor does not pass "un-encoded HTML" back when it postsback. When I remove the HTML content from my FCKEditor, the error does not occur.
|
|||||
#2400 | Updated Traditional and Simplified Chinese translation files | Task | Normal | FCKeditor 2.6.3 | General | |
#2401 | Croatian language file updates | New Feature | Normal | FCKeditor 2.6.3 | UI : Language | |
Description |
Updated hr.js file |
|||||
#2402 | Catalan language file updates | Bug | Normal | FCKeditor 2.6.3 | UI : Language | |
#2403 | Enforce EnterMode | New Feature | Normal | UI : Enter Key | ||
Description |
This is similar to #1464 (possibly a duplicate?). When the enter mode is set to 'div' and you are inside a preexisting <p>, hitting enter inserts a new <p> not a <div>. Now I understand that this is sometimes useful, but I'm currently using FCKeditor for online email composition, and here our customers expect hitting enter to always give them one space, and due to wanting to support bi-directional support we can't use br mode. The fix for this is very simple - I've added a new preference FCKEditor.ForceEnterMode which takes a boolean value (and should probably default to false). When set to true it will always use the given tag, even if it is splitting the opposite tag. I've attached a patch. |
|||||
#2404 | Persian Translation for MediaWiki FCKeditor Extension | Task | Normal | Project : MediaWiki+FCKeditor | ||
Description |
I translated this extension to persian, please add it to your project. |
|||||
#2405 | japanese language file updates | New Feature | Normal | FCKeditor 2.6.3 | UI : Language | |
#2406 | Vietnamese language file updates | New Feature | Normal | FCKeditor 2.6.3 | UI : Language | |
Description |
Completed Vietnamese language file. |
|||||
#2407 | Applying the div tool from the toolbar to a list screws the list up | Bug | Normal | FCKeditor 2.6.4 | General | |
Description |
Applying the div tool from the toolbar to a list screws it up. Type and select:
Then apply the div tool. Give it an inline style "border: 1px solid blue;". Result: paragraphs are added with contents of the li items. The list contains only spaces. The paragraphs are wrapped in the new div, but the list is outside the div. tested both ie7 and firefox3 |
|||||
#2408 | FCK.EditorWindow.getSelection() is null | Bug | Normal | General | ||
Description |
hello, i get this error in firefox3 since i upgraded to 2.6.3beta Erreur : FCK.EditorWindow.getSelection() is null Fichier Source : http://localhost/dev/_js/_FCKeditor/edi ... e_gecko.js Ligne : 71 i'm using the php5 implementation. let me know if you need more info. |
|||||
#2409 | Language updates for Norwegian (no and nb) | New Feature | Normal | FCKeditor 2.6.3 | UI : Language | |
Description |
Updated language files for Norwegian (no) and Norwegian Bokmål (nb). It includes missing translations and corrected incorrect translations. "Nummerert" (numbered) was misspelled (as 'numrert'), and has been fixed. Some of the terms for form elements are incorrect, and I've replaced them with the established Norwegian terms for form elements. All properties (line 134-148) have been changed as they are more correct in Norwegian. The word "Finn" (Find) has been replaced with "Søk" ('search'), as this is what is currently used in nearly all programs with Norwegian interface. Some longer sentences have been rewritten as they were poorly written and I've also made some minor changes in other places. |
|||||
#2410 | Hindi language file updates for FCKeditor 2.6.3 | Bug | Normal | FCKeditor 2.6.3 | UI : Language | |
Description |
Added a few strings for the Hindi translation. SVN patch attached. |
|||||
#2412 | InsertHTML inserts at beginning of selection | Bug | Normal | FCKeditor 2.6.3 | General | |
Description |
This bug may be related to Ticket #2376. In FireFox 3 I see InsertHTML append to the beginning of a Selection, instead of replacing the Selection. Using FireFox 3 go through the same steps in ticket #2376. |
|||||
#2413 | FCKeditor.tld missing from fckeditor-java-demo-2.4.war | Bug | Normal | Server : Java | ||
Description |
I downloaded fckeditor-java-demo-2.4.war application from your site and it seems that it does not have the FCKeditor.tld file in it. |
|||||
#2414 | fckeditor.html missing from FCKeditor-2.3.zip | Bug | Normal | Server : Java | ||
Description |
I downloaded FCKeditor-2.3.zip from your site and deployed the web application on my server. When I try to access index.jsp present in web/_samples/ directory, it gives me "404-page not found" error in the frame containing the submit button.
|
|||||
#2415 | Running fckeditor-java-demo-2.4.war on Weblogic 8.1 SP 6 | New Feature | Normal | Server : Java | ||
Description |
and Servlet 2.3 API.
to be used for our environment ?. If yes, what changes do we need to make ?. I tried this a bit, but was getting errors when the server was trying to parse FCKeditor.tld.
like to know if the application/source code present in FCKeditor-2.3.zip contains the previous version before v2.6.2 and is a stable release or not ?. What are the know bugs in FCKeditor-2.3.zip ?. Thanks in advance, Amar |
|||||
#2416 | [IE] inline dialog fails to show properly | Bug | Normal | UI : Dialogs | ||
Description |
i cant insert images and any other pop up window is not working it is hidden by css. the popupwindows are not resizing to fit the contents of it. i prefer a normal popup window, or iframe without shaddow and so. but one that displays good. most of my visitors have IE7 and IE6. i cant relay on maybe they have firefox to view the website correctly. i have tried to disable the css of the border but it didn't helped. for now how to make normal popup windows? what version to download so it will work with popups? |