Custom Query
Results (1301 - 1400 of 11754)
Ticket | Summary | Owner | Type | Priority | Milestone | Component |
---|---|---|---|---|---|---|
#944 | Using the samples from the local filesystem on Mac doesn't work | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
The editor doesn't load because it tries to load the .xml files from file:// instead of file:/// |
|||||
#945 | Opera: running from the filesystem doesn't work | Bug | Normal | Opera Compatibility | General | |
Description |
In MacOsX, trying to load the samples directly from file:///Users/alfonso/FCKDev/_samples/html/sample01.html (as it does in Safari and Firefox), doesn't work in Opera, the url is changed to file://localhost/Users/alfonso/FCKDev/_samples/html/sample01.html and then tries to load the xml files from file://Users/alfonso/FCKDev/fckstyles.xml (and it fails) |
|||||
#946 | Toolbar images doesn't show if path contains an space | Bug | Normal | UI : Toolbar | ||
Description |
in Firefox, Opera and Safari the toolbar images aren't shown if the path contains an space. |
|||||
#947 | form elements are resizable in IE only running from the filesystem and path contains an space | Bug | Normal | General | ||
Description |
As reported in https://sourceforge.net/forum/message.php?msg_id=4403698 My tests show that a textarea can be resized only if the editor is running from the filesystem, not from a server, and if the path contains at least a space. |
|||||
#948 | lost text area focus | Bug | Normal | Server : PHP | ||
Description |
I am using FcK more then one time on a single page through JavaScript Tabs div. When i move from one tab to other the text area of FCK lost its focus. First i have to click the source option from the menu in . This problem occur only in firefox. It works properly in Explorer. To clearly understand the problem please visit this site. http://ireland.restaurantguideireland.com/test.php the tabs works properly in explorer. But in fire fox. The textare lost its focus. First we have to click the source from the menu in order to edit the text |
|||||
#949 | Advances File Manipulation | New Feature | Normal | General | ||
Description |
It would be nice if the integrated connector/browser/uploader could support removing files/folders. Also support of galleries when browsing for a picture would be nice. |
|||||
#950 | File permissions of created connector files insecure | Bug | Normal | File Browser | ||
Description |
The uploader in PHP contains multiple instances of chmod( $sFilePath, 0777 ) ; for uploaded files or directory creations. Can I suggest this be changed to 0774. I can't think of any reason why the very insecure o+w should be enabled. 0770 would be preferable, but I guess there could be webservers that have the webserver process not in the main user/group. |
|||||
#951 | fck_strip.gif loaded many times on IE 6 - slower load editor | Bug | Normal | General | ||
Description |
IE try download fck_strip.gif many times but still get 304 not modified - cause slower load editor on the page . On FF fck_strip.gif loaded one time which is good and load faster from the cache |
|||||
#952 | Plone version : wrong links to folders if Plone instance not "Root" | Bug | Normal | General | ||
Description |
First of all, link to documents is working with such example. I have a Zope instance containing a plone instance, but the Apache redirection is made to the Zope instance. That means when I want to access to Plone I have to do "website.com/myPlone". On this Plone site, if I want to make a link to a folder, the plone instance is lost on the URL. It means I get for a folder "website.com/myPlone/folder1" this URL : "/folder1" which should be "/myPlone/folder1". As I said, it works perfectly for documents. Sebastien |
|||||
#953 | Shared toolbar doesn't reflect state of the editor | Bug | Normal | UI : Toolbar | ||
Description |
Now the toolbar remains in design mode. (once I've seen all the buttons disabled in Firefox, and also directly in step 3 the toolbar remained in design mode) Now the buttons are available but they give an error (#670) |
|||||
#954 | Toolbar cutted to one row in sample 10 | Bug | Normal | UI : Toolbar | ||
Description |
Loading the sample 10 without the frameset shows only one row of buttons in IE6. In Opera it shows only 2 rows, but no matter if it is in a frameset or not. |
|||||
#955 | Toolbar Format Dropdown formatting more than just selected text | Bug | Normal | General | ||
Description |
The Format dropdown in the toolbar sometimes formats more than just the text selected. Instructions to reproduce: 1) visit www.fckeditor.net/demo 2) select the 'This' text at the beginning of the document 3) select 'Heading 3' from the Format dropdown in the toolbar Instead of just the 'This' text being formatted for Heading 3, the entire document is affected. I've encountered this bug in both IE6 and FF2. |
|||||
#956 | Animated gifs don't work in Firefox for Mac | Bug | Normal | General | ||
Description |
I'm using gCards, a PHP ecard system (http://www.gregphoto.net/gcards/index.php) and updated to the latest version, 2.4.3 as a much older version was installed in gCards. However, animated icons still don't work in Firefox (2.0.0.4) for Mac. I'm on OS X 10.4.10. I wanted to include animated gifs as an option to enter in the message area. |
|||||
#957 | Enter key after placeholder starts a new colored span in the next line | Bug | Normal | FCKeditor 2.6 | General | |
Description |
Steps to Reproduce
The following tag will be created in the new line: <span style="background-color: rgb(255, 255, 0); color: rgb(0, 0, 0); cursor: default;"> |
|||||
#958 | Context menu - supporting parameters | New Feature | Normal | FCKeditor 2.6 | UI : Context Menu | |
Description |
I have searched for this feature, but haven't found it. What we need is the support for passing parameters from context menu item. We have implemented a list of paragraph styles in the context menu Style |--- Style 1 Style 2 Style 3 etc. "Style 1", "Style 2" and "Style 3" will all call a function named "SetParagraphStyle". This function will assign the current <p> paragraph to a css class name. This class name is the param we need to send to this function. I can't see that the AddItem method supports parameters. Is this something that could be implemented? Or are there any workarounds? |
|||||
#959 | Upload problem in browser.html due to IE security updates | Bug | Normal | File Browser | ||
Description |
We had troubles with upload permitions due to the latest security update (I think so). The problem was in this line of mentioned file: <frame name="frmUploadWorker" src="javascript:void(0)" scrolling="no" frameborder="0"> The solvation, for example is: <frame name="frmUploadWorker" src="#" scrolling="no" frameborder="0"> |
|||||
#960 | Change default doctype in the config so it triggers standards mode | Task | Normal | CKEditor 3.0 | General | |
Description |
I think that it would be better if by default the content in the editor is rendered using standards mode by setting in the fckconfig.js FCKConfig.DocType = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">' ; and removing the td selectors in fck_editorarea.css Of course anyone can do these changes in their setup, but I think that setting this ones as defaults might help to uncover some problems related to standards rendering and in the end the behavior of the browsers is much more compatible by using standards mode instead of quirks. And if anyone uses just the online demo it can get standards rendering instead of quirks. |
|||||
#961 | Show Details | Task | Normal | General | ||
Description |
Dear Sir, I wondered why 'ShowDetails' button on toolbar is not available. Do you know a workaround? TIA. Regards. |
|||||
#962 | Safari: Error "Null value" when loading the editor | Bug | Normal | Safari Compatibility | Core : Undo & Redo | |
Description |
Loading the editor shows an error in the console pointing to line 285 of _source/classes/fckdomrange.js in the CreateBookmark2 function I think that this is related to the latest changes in the Undo processing (but the editor seems to keep on working properly) |
|||||
#963 | Safari: adds xmlns="http://www.w3.org/1999/xhtml"> to the content | Bug | Normal | Safari Compatibility | General | |
Description |
Load http://www.fckeditor.net/nightly/browsers_test.html, switch to source mode and the heading is xmlns="http://www.w3.org/1999/xhtml"> This is a problem in r24182, but r24096 works fine (tested only on Mac) |
|||||
#964 | Cannot set focus in editor without click in 'Source' first (Firefox only) | Bug | Normal | General | ||
Description |
I searched almost all the tickets available but didn't find similar questions. So... In Firefox I can't set focus in editor (edition is blocked) when I first enter a page containing it. I must click "Source" then click back (click "Source" again). After doing this (and only after doing this), the cursor is shown blinking and editor is then ready for use. Tested with Firefox 2.0.0.4 . Thanks. |
|||||
#965 | Change ordered list (with type attribute) to unordered list get <ul type="1"> in IE | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
Test step:
the list looks still like ordered list, but when view source: it has <ul type="1"> which is NOT correct. Note: FFx works. <ul type="1">
</ul> |
|||||
#966 | Full URL Option for Inserting Files/Images | New Feature | Normal | General | ||
Description |
With the increased use of FCKeditor in CMS and e-mail products it would be great to have an option to allow the use of full URL when inserting files/images. I made this function work by editing the frmresourcelist.html file (line 56) to: ...OpenFile(\'http://' + window.location.hostname + fileURl... |
|||||
#968 | Adding new document browser for link the documents | Task | Normal | Server : ASP.Net | ||
Description |
Our content managment system is working DNN4.5.1 with Fckeditor. we have documents to be linked in our website are available in sql database. I have created a page to display the documents and to pass the link. I have added this to link dialog in addition with the default "Browse server" of FCK Editor. But i couldn't create path for my document page in the web.config. So i had to manually added in fck_link.js to open our document browser. It works fine. PROBLEM: As i stored this page in FCKeditor path and manualy calling, When i use this page from DNN child portal i could not get the child portal info..It gives me the parent portal information only. could you please advice me?? |
|||||
#969 | Remove fcknumericfield.htc and moz-bindings.xml | Task | Normal | FCKeditor 2.5 Beta | General | |
Description |
Those two files in dialog/common maybe could be removed. The moz-bindings.xml isn't used at all as far as I can see, and the htc is used for the FCK__FieldNumeric class, but that class is used only in the flash dialog, and we could change it to onkeypress="return IsDigit(event);" as in other dialogs (fck_table.html for example) |
|||||
#970 | Select Field dialogue: controls get outside of dialogue when field contains long values | Bug | Normal | FCKeditor 2.6 | General | |
Description |
The screenshot explains it all, actually.
Firefox 2.0.0.4 |
|||||
#971 | "scr" and "alt" link tags are always reversed | Bug | Normal | General | ||
Description |
In an link (<a>) the "alt" and "src" attributes are always switched in order at the time FCKeditor parses the html. Example: <a href="http://www.rimuhosting.com"><img width="120" height="60" border="0" align="right" alt="Rimuhosting Virtual Private Servers" src="images/rh_vpspowered_120_60.jpg" /></a> This link when parsed by FCKeditor will have the "alt" and "src" attributes reversed. This means that the link output by FCKeditor is always different from the original link. This is a problem for programs that need to determine when text has changed by using a hash, such as md5. For example, my FCKeditor-based web editor allows viewing and editing SSI-included files (#inlcude virtual= 'xxx'), and uses md5 hash to determine when such included files have been changed and need to be saved to disk. Due to the attribute-switching, the "included" html block, although unchanged by the user, will always fail the md5 test and an unnecessary save to disk is done. |
|||||
#973 | Tab no longer moves between table cells | Bug | Normal | General | ||
Description |
After the changes for #137 now it isn't possible to move between table cells using the tab key in Firefox. Also previously it was possible to generate new rows by pressing tab at the last cell.
Related bugs: |
|||||
#974 | Form validation with coldfusion and fckeditor. | Bug | Normal | General | ||
Description |
I am attempting to use client side validation for the fckeditor to ensure that there is a value in the editor before the form is submitted. However, it looks as if the form field, "myEditor" in this case, does not get it's value set from the editor until the form has been submitted. This in turn requires the form to be submitted twice, with the first submittal displaying the "This field is required message." even when there is text in the editor. It would be nice if the value was set as the user typed or maybe when the editor loses focus. I have attached my source. |
|||||
#975 | Pressing enter does not exit list mode with bold and italics text. | Bug | Normal | FCKeditor 2.6 | UI : Enter Key | |
Description |
Normally, if you enter a blank line while in the numbered or bulleted list mode, you would exit the list mode. However, if both bold and italics are enabled, a blank line would not exit list mode. Steps to reproduce.
You would stay in list mode no matter how many enters you press. Note that this bug does not occur if the text is only bold or only italics. It must be both bold and italics. This bug is reproducible on both IE6 and FF2. I can also reproduce it on the latest nightly build. |
|||||
#976 | in firefox links is not end input when it's end import link | Bug | Normal | General | ||
Description |
in firefox input links,end,input other words ,other words just the same links, but in IE is not that .I think this may be is a error. |
|||||
#977 | XHTML validation fails for imagemap shapes (rect, default, circle, poly) - should be lowercase | Bug | Normal | FCKeditor 2.5 Beta | UI : Source View | |
Description |
Hi there, According to XHTML standard (see http://www.w3.org/TR/xhtml2/mod-csImgMap.html), shape attributes in image maps are supposed to be lower-case (shape = "default|rect|circle|poly") - but every time I switch between WYSIWYG and source view, FCKEditor changes the shape attributes to uppercase, so: <map id="banner_top"> <area alt="Load Ecclesiact Home Page" href="http://www.ecclesiact.com" coords="15,26,265,111" shape="rect" /></map> becomes: <map id="banner_top"> <area alt="Load Ecclesiact Home Page" href="http://www.ecclesiact.com" coords="15,26,265,111" shape="RECT" /></map> When I validate the following minimal fragment at http://validator.w3.org/fragment-upload.html it passes, but after FCKEditor has changed the shape from rect to RECT it fails: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-strict.dtd"> <html> <head><title>test</title></head> <body> <p><map id="banner_top"> <area alt="Load Ecclesiact Home Page" href="http://www.ecclesiact.com" coords="15,26,265,111" shape="rect" /></map></p> </body> </html> Can this be fixed? Please let me know if this issue is on your 'to fix' list - Thanks Martin Francis, Canada <>< (My email name is martin and the domain is classaxe com) |
|||||
#978 | ColdFusion: SpellerPages error when no suggestions are available | Bug | Normal | FCKeditor 2.5 Beta | Server : ColdFusion | |
Description |
When spell checking some garbage text, like "asdfasdfasdf23423423434", an error is thrown in SpellerPages for ColdFusion. |
|||||
#979 | Tab key behavior | New Feature | Normal | CKEditor 3.4 | General | |
Description |
Ideally we should uniformize the tab behavior considering the following variations (ordered by priority):
|
|||||
#980 | API - I want a value to be able to tell me if the SpellChecker has been run or not. | New Feature | Normal | General | ||
Description |
- I think this request could be easily achieved. I use the API system and most useful it is too! I want a value to be able to tell me if the SpellChecker has been run or not. (or it could be a count of how many times it has been run... which might be better). Personally... I plan to use the value... so if the Spellcheck has not been run... then I will stop them from saving the record... until they have ran it at least once. (ie)... var oFCKeditor = new FCKeditor('example_field_name'); Initially oFCKeditor.SpellCheckerHasBeenRun would have a value of 0 If spellcheck is then run... then... oFCKeditor.SpellCheckerHasBeenRun would have a value of 1 If it is ran again... oFCKeditor.SpellCheckerHasBeenRun would have a value of 2 |
|||||
#982 | The "Clean Up Box" button in Paste from Word is confusing | Bug | Normal | FCKeditor 2.6 | General | |
Description |
Pasting from Word... When I paste from Word... I get the popup box... and it is easy to use... But some of my users... find the button "Clean Up Box" confusing... because they think it refers to the actual process of converting "word" to "html" (a process of cleaning up the text)... so the users get very confused when it actually empties the box. Could this button be renamed to: "Empty Box" . |
|||||
#983 | HTML Entities Codes... some are missing | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
HTML Entities Codes... some are missing... I have taken this list of HTML Entities codes... and paste them into FckEditor (in source mode). I go back to wysiwyg mode... and then back to Source mode. Most of the HTML Entities are shown in their correct &-format ... but some are shown as they UTF8 representation... This means that some of the HTML Entities are missing from your translation table. The Complete code list is: á Á â Â æ Æ à À α Α å Å ã à ä Ä β Β ç Ç χ Χ † ‡ ↓ ⇓ δ Δ é É ê Ê è È ε Ε η Η ð Ð ë Ë γ Γ ↔ ⇔ í Í î Î ì Ì ι Ι ï Ï κ Κ λ Λ ← ⇐ μ Μ ñ Ñ ν Ν ó Ó ô Ô œ Œ ò Ò ω Ω ο Ο ø Ø õ Õ ö Ö φ Φ π Π ′ ″ ψ Ψ → ⇒ ρ Ρ š Š σ Σ τ Τ θ Θ þ Þ ú Ú ↑ ⇑ û Û ù Ù υ Υ ü Ü ξ Ξ ý Ý ÿ Ÿ ζ Ζ ´ ℵ ∧ ∠ ≈ „ ¦ • ∩ ¸ ¢ ˆ ♣ ≅ © ↵ ∪ ¤ ° ♦ ÷ ∅     ≡ € ∃ ƒ ∀ ½ ¼ ¾ ⁄ ≥ ♥ … ¡ ℑ ∞ ∫ ¿ ∈ ⟨ « ⌈ “ ≤ ⌊ ∗ ◊ ‎ ‹ ‘ ¯ µ · − ∇ ≠ ∋ ¬ ∉ ⊄ ‾ ⊕ ∨ ª º ⊗ ¶ ∂ ‰ ⊥ ϖ ± £ ∏ ∝ √ ⟩ » ⌉ ” ℜ ® ⌋ ‏ › ’ ‚ ⋅ § ­ ς ∼ ♠ ⊂ ⊆ ∑ ⊃ ¹ ² ³ ⊇ ß ∴ ϑ   ˜ × ™ ¨ ϒ ℘ ¥ ‍ ‌ |
|||||
#984 | Copy icon in toolbar activated on mouse click | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
The copy icon in the toolbar is activated after a mouse click in the editor even if no text is selected. It should not be active when there is no selection (nothing to copy). Confirmed in the demo version of fckeditor at fckeditor.net |
|||||
#985 | plugin update is not correct in floating div | Bug | Normal | General | ||
Description |
When updating the PlaceHolder in a floating div, FCK insert a new one. Details
|
|||||
#986 | Window not stopped | Bug | Normal | General | ||
Description |
In Linux (also on windows XP) / Firefox 2.0.0-5 - FCK editor 2.5 SVN No problem with Internet Explorer. When I have 2 editors : one visible and the other unvisible, the window loading not stop and other onload event functions are not launch until window.stop() is called. If the 2 are visbles : it's OK If the 2 are unvisible : it's OK also. See example to view the problem. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="robots" content="noindex, nofollow" /> <script type="text/javascript" src="/usr/share/what/fckeditor/fckeditor.js"></script> </head> <body> <h1> FCKeditor - JavaScript - Double Editor</h1> <div> First is visble, second is hidden </div> <hr /> <br /> <form action="sampleposteddata.asp" method="post" target="_blank"> <a onclick="document.getElementById('fsecond').style.display=''">View Second Editor</a> <fieldset id="ffirst" ><legend>First</legend> <script type="text/javascript"> var sBasePath = '/usr/share/what/fckeditor/' ; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; oFCKeditor.BasePath = sBasePath ; oFCKeditor.Value = 'First Editor' ; oFCKeditor.Create() ; </script> <br /> </fieldset> <fieldset id="fsecond" style="display:none"><legend>Second</legend> <script type="text/javascript"> var oFCKeditor2 = new FCKeditor( 'FCKeditor2' ) ; oFCKeditor2.BasePath = sBasePath ; oFCKeditor2.Value = 'Second editor' ; oFCKeditor2.Create() ; </script> <br /></fieldset> <input type="submit" /> </form> </body> </html> |
|||||
#987 | Support keyboard navigation for context menus implemented by FCKeditor | New Feature | Normal | UI : Context Menu | ||
Description |
I am having a few problems with navigating FCK context menus with keystrokes. I can show the menu using the "context menu" button on the keyboard but when I use the arrow keys, the cursor position in the FCKeditor is changed, not the position in the menu. It looks like focus is not being set in the popup menu. I reported this via email support and got the following request from Frederico:
|
|||||
#988 | Need interface on FCK editor to set tabindex server side. | New Feature | Normal | General | ||
Description |
I really need to be able to set the tab index on each FCK editor on a web page from the c#.net code server side so that the tabbing around the page is organised in a logical order, but I can find no way of doing this. There are various posts on the forums about this but no responses or solutions. I submitted this to FCK email support as a query and got this response from Frederico. There is no feature to control the tab index. I would ask you to open a ticket for this one. |
|||||
#989 | If you use the Replace function and hit the Replace All button and there is an error - when you hit OK on the error the Replace dialog box closes as well | Bug | Normal | CKEditor 3.0 | General | |
Description |
This is a minor bug. In the editor, if you use the Replace tool - and put something in the Find What field that is not in the HTML and hit the Replace All button, you get an error box "The specified test was not found" If you hit OK on that box, it closes the Replace dialog box as well. If you do the same thing using the Replace button rather than the Replace All, when you hit OK you are returned to the Replace dialog box as you should be. So...when you hit OK on the error from a Replace All, it would be good to go back to the Replace dialog rather than have that close. |
|||||
#990 | Enter key is broken in SVN | Bug | Normal | FCKeditor 2.5 Beta | UI : Enter Key | |
Description |
Reproduction procedure: 1. Checkout the latest SVN code. 2. Open sample01.html in Firefox/Opera/Safari. 3. Press "Enter" between "This is some sample text." and "You are using FCKeditor.". 4. The second sentence is deleted. The issue doesn't exist in 2.4.3, and it doesn't exist in my branch which I used to work on #125. So I'm sure the change leading to the bug is very recent. |
|||||
#991 | Can't outdent nested list items | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
It seams that both IE and Firefox have problems when dealing with properly nested lists. Steps to reproduce
<ul> <li>Level 1 <ul> <li>Level 2 <ul> <li>Level 3</li> </ul> </li> </ul> </li> </ul>
Expected behaviorThe following code should be the result of the above action: <ul> <li>Level 1</li> <li>Level 2 <ul> <li>Level 3</li> </ul> </li> </ul> Current behaviorFirefox : no action at all. It simply does nothing. IE : if you click at the end of the line (far to the right) before outdenting, then "Level 3" is changed instead. If you instead click on the middle of "Level 2", it is outdented correctly, but "Level 3" goes separated from the list. |
|||||
#992 | CTRL+X in Source View throws error | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
When trying to cut in source view with CTRL+X, a JavaScript error is thrown. It seams to be an IE only issue. |
|||||
#993 | Preserve formatting of ProtectedSource elements | New Feature | Normal | General | ||
Description |
The FCK.GetXHTML() displays the content in a dirty format(no new line characters). It is different from what the user actually sees in the actual file. It would be good if FCK editor did not mess around with the format of the file and leave the content as it is. This can be enabled as a configurable property in the FCKConfig.js file so that any user who wants the editor to handle formatting can enable it too. Anusha |
|||||
#994 | Unable to add text below a DIV if the DIV is the last line of a document | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
Steps to reproduce:
1: Go to FCKeditor Demo at www.fckeditor.net/demo.
The cursor is always placed just after the last 't' and it's not possible to get it in a place that is outside of the DIV. |
|||||
#995 | what is the changes | Bug | Normal | General | ||
Description |
what is the changes which i must be do it to php files to connect to dbase |
|||||
#996 | OnPaste listeners get executed twice | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
When defining an OnPaste listener inline in the page, the target function get executed twice. It has been tested with IE7 only. Steps to Reproduce
<script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { editorInstance.Events.AttachEvent( 'OnPaste', myPasteListener ) ; } var myCounter = 0 ; function myPasteListener( editorInstance ) { var textHtml = editorInstance.GetClipboardHTML() ; window.top.document.title = ++myCounter ; editorInstance.InsertHtml( textHtml.toLowerCase() ) ; return false ; } </script>
|
|||||
#997 | Wrong position of panel on fixed positioned toolbar | Bug | Normal | UI : Toolbar | ||
Description |
We have the fckeditor toolbar located on outer div which is 'fixed' positioned (in gecko browser), in order to be global for the website. So, our: oFCKeditor.Config[ "ToolbarLocation" ] = "Out:fckToolbar"; In this case the toolbar panels (eg. the font panel) are not positioned correctly. I have found the place in the code, which should be changed to fix it, but I have no time for now to look in the code for the style of toolbar panel container to create conditional clause, depended on the container position, but the fckeditor developers won't have a problem to insert the code like this there: oIFrame.style.position = 'absolute'; if (fckeditor.toolbar.container.style.position == 'fixed') oIFrame.style.position = 'fixed'; The location of bug is indicated in attached fckpanel-fixed-position-bug.js file. |
|||||
#998 | check whether ajax call ended successfully | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
we should add some control string in the last line to inform FCKeditor that ajax call ended successfully (to display user firendly message when it fails and returns for example error message: memory limit exceeded) |
|||||
#999 | Untagged links should not be retrieved as tags | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
If loading an url at the Wikitext, it is transformed in a link by our parser. It should remain as unlinked text. The problem here is that the transformed link is again transformed in a tagged link, so http://www.fckeditor.net becomes [http://www.fckeditor.net], which is rendered as [n]. |
|||||
#1000 | Ajax search in dialog box - additional features | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
In link dialog box we can add optional select box with these options: "starts with" and "consist", search feature uses now "like '%string%'", which on large database may cause some problems, using "starts with" will allow database engine to use indexes while searching and return less results We should handle situation when search results will return more than... let's say 100 results. (For example we should display message: your search results returned more than 100 results etc.) |
|||||
#1001 | Untagged links should not be retrieved as tags | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
If loading an url at the Wikitext, it is transformed in a link by our parser. It should remain as unlinked text. The problem here is that the transformed link is again transformed in a tagged link, so http://www.fckeditor.net becomes http://www.fckeditor.net, which is rendered as [n]. |
|||||
#1002 | ! at the beginning in table cell | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Exclamation "!" should be converted to ! because it has a special meaning at the beginning of the line: Insert this into cell to reproduce error: text !heading1 !heading2 |
|||||
#1003 | WikiSyntax - lists and special characters: ;:#* | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
;:#* characters have special meaning in lists, thus they must be translated into html entities Examples: ; item : definition :#abc :#def :#ghi
break lines like this |
|||||
#1004 | Make tables sortable | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Tables in MediaWiki can be sortable using special class: |
|||||
#1005 | It isn't possible to insert a PlaceHolder in IE | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
This is a regression, 2.4.3 worked fine. Load sample06.html in IE6, put the cursor inside some text and try to insert a PlaceHolder with any text, it just won't work. Debugging it, the problem is in internals/fckdomrange_ie.js before the oIERange.pasteHTML('') ; in line 118 the body contains the empty span (and sometimes and extra after or before it), but after it is executed the span is removed, so when it is returned to the plugin, the span isn't in the document and it won't be shown. |
|||||
#1006 | Special page "version" issues several PHP warnings / errors for the extension | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
See http://mediawiki.fckeditor.net/index.php/Special:Version |
|||||
#1008 | Magic words implementation not finished | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
|
|||||
#1009 | Redirects get changed into numbered list | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
# FCK rewrites the redirect command into a numbered list.
# It should recognize the word, and it would be nice to have a button in the toolbar that makes a dialog pop-up similar to the "insert / edit link" one, so that we get the automatic seach results. # Hint: in FCKeditorParser.body.php, adding "#REDIRECT" to the list of magic words solves the issue |
|||||
#1010 | FCK should support MW custom tags | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
You can get a list of allowed custom tags inherited from MW extensions, for example for www.mediawiki.org, go to Special pages/version, and you will get:
Parser extension tags<br><timeline>, <hiero>, <charinsert>, <ref>, <references>, <inputbox>, <imagemap>, <source>, <poem>, <categorytree>, <fundraising>, <fundraisinglogo>, <fundraisingdonor2> and <pre> Ideally you should have a button proposing to enter a custom tag, offering the list from above, for instance: <tag_label param1 param 2> </tag_label param 1 param 2>
should be allowed. In addition, manual tag entering should be allow, like the nowiki, noinclude, includeonly ones. FCK just removed my nowiki tags from my article. |
|||||
#1012 | FCK moves around Templates inside tables | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Try entering this as wikitext: {| |- | {{Test}} |} Save it, then open it in FCK: the template is outside the table. |
|||||
#1013 | Dynamic link look-up should skip pages that are redirects | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
When editing an url, the automatic search results should not propose to link to a redirect page, or even best mention it is a redirect by highlighting the choices for example. |
|||||
#1014 | Support for label resources in resx | New Feature | Normal | Server : ASP.Net | ||
Description |
I'm using the .NET FCKEditor and i would like to have a .resx file with all the labels of the editor(including plug-ins), so i can manipulate/change them on server side. Or at least have a way to access and manipulate the labels. |
|||||
#1015 | Badly nested italic/bold markup can cause round-trip problems from MediaWiki markup to FCK and back to MediaWiki | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
The MediaWiki markup a''b'''c''d'''e changes to the markup a''b'''c''''''''d'''e when converted to FCK and back to MediaWiki markup (by changing to wikitext mode, entering the markup given as an example, then changing out of and back into wikitext mode); the second markup is incorrect, as it renders as normal a, italic b, bold italic c, three apostrophes, normal d, bold e, rather than normal a, italic b, bold italic c, bold d, notmal e. I suspect this is because the correct HTML for the example markup is a<i>b<b>c</b></i><b>d</e>e and the markup produced by substituting two apostrophes for each opening or closing i and three apostrophes for each opening or closing b produces the output that FCK gave; this is, however, incorrect, as the MediaWiki parser doesn't interpret more than five apostrophes in a row correctly. The wikimarkup produced by the editor should be equivalent to the original in such a case, either by detecting this and similar conditions to recreate the original, or by using HTML tags rather than apostrophes to prevent such a long string of consecutive apostrophes (for instance, one correct version of the markup is a''b'''c'''''<b>d</b>e , produced by using HTML rather than wikimarkup at the point where the sixth apostrophe would otherwise be created). |
|||||
#1016 | Links followed immediately by unlinked text can create round-trip problems from FCK to MediaWiki markup and back again | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
A link followed immediately by unlinked text (such as links) changes to |
|||||
#1017 | Problem with changing toolbars when they are outside the editor | Bug | Normal | UI : Toolbar | ||
Description |
This is a new ticket on an item that we have been talking about in the forums: http://www.fckeditor.net/forums/viewtopic.php?f=6&t=6392#p17191 Here is the scenario: I want to have an editor with the toolbar set to an outside DIV. Then I want to have two toolbars - a "Basic" (one row) and an "Advanced" (three row). I want to have the default toolbar (loaded into the outside DIV be the Basic one. Then I want to be able to use JS to load the Advanced toolbar into the outside DIV. In this way, I can allow most users to have the Basic editor (less intimidating) and still allow those needing advanced features to switch to a toolbar that provides it. Code for setting this up is pretty much the stock code from Example 10 Then I have these two functions to swap the toolbars: function tbBasic() { var oEditor = FCKeditorAPI.GetInstance('FCKeditor_1') ; oEditor.ToolbarSet.Load( 'Basic' ) ; } function tbDefault() { var oEditor = FCKeditorAPI.GetInstance('FCKeditor_1') ; oEditor.ToolbarSet.Load( 'Default' ) ; There are a couple of problems. (keep in mind that the initial display is of the Basic (one row toolbar). One is that while the Advanced toolbar will load when the function is called, it only displays the first row of the toolbar since the DIV does not resize properly. The other is that if you start with the Advanced (three row) toolbar and switch to the Basic one - the DIV for the toolbars does not resize down to the single row. I realize the problem is in fact the same - but since the desired effect is to start with the Basic and change up to the Advanced, this is not possible. A couple of nights ago a new nightly build had some changes in place that would trigger the DIV to resize, but this had the adverse effect of causing the app to lose focus and disappear behind other apps (if a page was loaded into a browser in a desktop application). That of course was a show stopper and I guess in the last night's build it was changed (or removed). The latest build seems to work fine except for the original problem. Right now the only way I can create the desired effect is to have TWO sets of editors and TWO sets of toolbar DIVs. Each one gets loaded with its own toolbar (one Basic and the other Advanced) and I have to use a SHOW/HIDE routine as well as transfer the content between the editors. While this does accomplish the effect (and allows me to resize the width of the editors to simulate column entry (without wrapping the toolbars), it is a lot of extra code to maintain, extra objects on the page, memory used, etc. Hopefully this gives you all the info you need to see what is going wrong and you can come up with a solution for it that does not cause the app to disappear (when a HTML page is loaded into a desktop application). Let me know if there is anything I can test for you or any other info I can provide. BTW - thanks to everyone for great work! ;-) MD |
|||||
#1018 | HTML-type tags are converted into escape codes for MediaWiki+FCKeditor | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
This is relating to the current release of the MediaWiki+FCKeditor codes. Not sure if this is a bug, but if you insert custom tag or scripts into the rich-text editor, the < > signs are converted into escape codes, and thus the scripts will not run on MediaWiki. Example: if we use the <addHTML> tags or the <feed> </feed> tags. Can you advise how new tags can be added to prevent from converting into escape codes? |
|||||
#1019 | FCKTableCommand are not context sensitive | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
The FCKTableCommand class is not context sensitive and this causes the icons from the tablecommands plugin to always be active even if the user is outside of a table. It should be easy to add correct GetState function to this class. Something like: if(FCK.EditorDocument != null){
} return FCK_TRISTATE_DISABLED; |
|||||
#1020 | MediaWiki+FCKeditor - Template codes bug | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
When entering template codes, the carriage return seems to be auto-stripped. This causes problems especially relating to specifying bullet-wikitext into a parameter value in a template. For example: {{TemplateName |Parameter1=Test text test text
|Parameter2=testing value 2 }} will not work right when using the MediaWiki+FCKeditor as it strips away the carriage return and turns the above code into something like the following: {{TemplateName|Parameter1=Test text test text * bullet point 1 * bullet point 2 |Parameter2=testing value 2}} Thus the bullets will not work. |
|||||
#1021 | preformatted text gets an extra <br> when switching to wikitext | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Hey there, I have searched on the Internet and I understand there are/were problems with Firefox and adding <br> into <pre> formatted text. I have a problem with this FCKeditor in Mediawiki 1.10.0. I did a manual install of the editor into mediawiki. I can edit a page fine... but if I save it... the preformatted text includes <br> tags. This also happens if you switch to 'wikitext' mode. You get the following: <pre>Bla A<br>Bla B<br>Bla C</pre><br> When switching back to Normal mode, you still see the <br> and stuff. SO I think while converting it to Wiki textmode the preformatting breaks. Tested with Firefox 2.0.0.6. In Internet Explorer 6 this does not happen at all, so it is a Firefox issue. FCKeditor 2.5 SVN build 16068 Hope this helps you.. Roalt |
|||||
#1022 | FitWindow and editable area problem | Bug | Normal | General | ||
Description |
I do lock for editing the FCKeditor on my jsp page using this piece of code: if (document.all){
} else{
} I attach this code to the OnComplete event. It works. I use the FitWindow button to resize the editor (full screen editor). I resize again the editor to the initial size and now I can edit the content. Problem: The editor does not remember it's initial configuration (it should still be readonly after the FitWindow operation) I am testing using IE, so this problem appears at least for IE, the browser I need to work with. |
|||||
#1024 | Add support for table headers "<th>" | New Feature | Normal | General | ||
Description |
In the cell properties dialog, it would be nice to be able to define a cell as "header", ie tag <th> instead of <td> |
|||||
#1025 | Idea for an improvement for FitWindow | New Feature | Normal | General | ||
Description |
It would be great if the FitWindow could be adapted to work with the toolbar location set to outside the editor. To be specific - make the editor fit the window area - but NOT hide the toolbar. This would allow the toolbar to occupy the maximum space available without wrapping and at the same time you could use CSS to set the width of the FORM (or other container) where the editor body resides. With this combination, the width of the FORM can be set to match the area where the content will display (in non edit mode) so that the user has an actual WYSIWYG experience during editing. They will be able to see where content will actually wrap and how things will look after the editing is complete. We are doing this now using the toolbar location feature to set the toolbar to a DIV outside the editor, but we have to use our own Javascript calculations to make the editor body fill the available space without overwriting the toolbar. It seems as if it should be relatively easy to have a variation of FitWindow that would take into account the height of the toolbar and adjust the editor body offset and height accordingly. Thanks! MD |
|||||
#1026 | Undo should remember the cursor position | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
When I have written a text and press undo the cursor is moved to the end of the document. This is not good when changing text inside a large article. The undo/redo system should remember the cursor position along with the snapshot. Verified in IE7 nightly build (r598). |
|||||
#1027 | Warning: Call-time pass-by-reference has been deprecated | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Hello, I getting the following warning when I install FCKeditor into mediawiki 1.10.1: Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in C:\EasyPHP\www\mediawiki\extensions\FCKeditor\FCKeditorParser.body.php on line 173 Can someone help me to solve this? All your help will be much appreciated! Thanks |
|||||
#1028 | Do not use "ForcePasteAsPlainText" in the MediaWiki integration | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Just wondering why you chose that setup. Copy/pasting seems to work fine when setting it to false, and is much more user-friendly. |
|||||
#1029 | link insertion not OK with postgres | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
Using PostgresQL, the link and image wizard fail while searching for input text. The error is 'ERROR: 1 ERROR: function lcase(text) does not exist Indeed Postgresql does not have such function. The proposed patch replace LCASE with LOWER. LOWER is a valid function in MySQL too. Patch based on svn. |
|||||
#1030 | Activating File / Image Manager in CF8 | Task | Normal | File Browser | ||
Description |
Dear all, Could you tell me how to activate file/image manager in CF8? I have tried to follow instructions in http://wiki.fckeditor.net/Developer's_Guide/Integration/ColdFusion but \FCKeditor\editor\filemanager\browser\default\connectors\cfm\config.cfm and \FCKeditor\editor\filemanager\upload\cfm\config.cfm are CF encrypted... Do i need to create a new instance of FCK per project or is there a way to pass an "UserFilePath" to the module... (with aplication.cfm maybe) please HELP ME! JC |
|||||
#1031 | Support MW built-in tags (includeonly, noinclude and nowiki) | New Feature | Normal | Project : MediaWiki+FCKeditor | ||
Description |
This ticket aims at splitting ticket 1010 in 2. See ticket 1010 for more background on the request/proposed implementation. The pre tag should be moved from format select box to the custom tag/style one, ie be treated as noinclude, nowiki, etc... as it can span on several lines. Proposal for styles (follow-up of request 1010): to make people realize their text is within a special tag, I would propose to have a background color for the style, with dashed border (uniform with pre, and avoids confusion with FCK tables that can only have solid borders). Dashed borders would then mean that we are within a special tag, such as: fck_mw_nowiki { padding: 0.5em; margin: 1em; border: 1px dashed #2f6fab; background-color: #f9f9f9; line-height: 1.1em; } fck_mw_noinclude { padding: 0.5em; margin: 1em; border: 1px dashed #87f906; background-color: #d1f2ab; line-height: 1.1em; } fck_mw_includeonly { padding: 0.5em; margin: 1em; border: 1px dashed #fe1fbf; background-color: #f7d3ed; line-height: 1.1em; } |
|||||
#1034 | Cursor position is wrong when hitting Enter in a control selection | Bug | Normal | FCKeditor 2.5 Beta | UI : Enter Key | |
Description |
With IE, the cursor position is wrong when hitting Enter in a control selection. Ok with Firefox. Steps to reproduce
The paragraph will be correctly split, but the cursor position will not be at the start of the second block. The effect is even worst if adding the image at the end of the paragraph. It was working properly with version 2.4.3. Tested with IE7. |
|||||
#1035 | MediaWiki+FCKeditor HTML comments missing | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
When a page is edited with HTML comments within the wikitext (<!-- ... -->) the comments are lost both in the FCKeditor page and the wikitext view |
|||||
#1036 | IE uploading problem in different encoding environments | Bug | Normal | File Browser | ||
Description |
There is a problem with uploading files in PHP version of filebrowser under the Windows using IE, if your Windows uses different charset encodings (eg. my - Central Europe WIN-1250). The fckeditor browser pages are encoded in UTF-8, which is good choice, but the suck IE browser has the next of hundreds bugs I've encountered doing tests of our system in Windows. When the page is UTF-8 encoded, it encodes the filename of uploading file anyway in its current encoding, and the request to the server contains this name. The result is unreadable name on the server side, and the filemanager alert window with invalid response (the filename cannot be properly identified and file cannot be deleted event through ftp).
Having looked at the web, I've notice, that the problem is not only present for Central European encoding, but for other languages using special characters and using its own encoding in Windows also. The workaround to solve this problem can be set the filename at the server side using // $sFileName = $oFile['name']; $sFileName = rawurlencode($oFile['name']);
The browser works, the special chars of filenames are encoded using So, maybe the good choice will be remove all non-alphanum characters from the filename to solve this? |
|||||
#1037 | [IE] Proportional image resize by control point | New Feature | Normal | General | ||
Description |
FireFox has the functionality we would expect: Wenn you click on an image and drag on an edge - the image resizes proportional. It is desirable that IE 6/7 has the same behaviour. |
|||||
#1038 | RemoveExtension() in PHP, function is being redeclared | Bug | Normal | File Browser | ||
Description |
PHP Fatal error: Cannot redeclare removeextension() (previously declared in fckeditor\editor\filemanager\upload\php\util.php:25) in fckeditor\editor\filemanager\browser\default\connectors\php\io.php on line 36 |
|||||
#1039 | Font name will only stay in the Font window for less than 10 seconds. | Bug | Normal | General | ||
Description |
|
|||||
#1040 | Cannot select Normal and Normal (DIV) from the Format dropdown menu. | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
|
|||||
#1041 | In FCKeditor, after Removing a Link, type a space and the Link will return. | Bug | Normal | General | ||
Description |
www.google.com and click on OK.
message panel.
click on the "Remove Link" button.
letter m of www.google.com .
becomes a link again.
the "Remove Link" then the underscore will not return. |
|||||
#1042 | Replace all function in replace dialog is broken | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
The "Replace all" function has a reference to a range variable which is never defined. This causes a javascript error and the function is never runned. |
|||||
#1043 | Undo system not saving selection position changes. | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
To reproduce the bug:
|
|||||
#1044 | Save undo snapshot causes JavaScript error in IE | Bug | Normal | FCKeditor 2.5 Beta | Core : Undo & Redo | |
Description |
To reproduce the bug:
|
|||||
#1049 | Uneditable tags | New Feature | Normal | General | ||
Description |
It would have been nice if I could have specified tags that are visible but not editable. Whenever a user places the cursor inside these tags the cursor will move outside the element. For example we are using the symbol font for special characters that are not available as entities. These symbols are placed in the text inside <var> tags. But since this tags are editable the user could experience that he is writing with the symbol font instead of the normal font if he gets the cursor inside a <var> tag. This also leads to problems with a lot of nested <var> tags if the user inserts a lot of special characters with the dialog popup. All these problems could have been solved by adding an option to the config, ie (FCKConfig.LockedTags = "VAR|SYM") I realise that it is not recommended to use the symbol font, but I'm afraid our customer demands the characters found here. If you reject this task I would appreciate if you could give me a hint on how to solve this one :) |
|||||
#1050 | HTML dialog is parsed as php | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
At our server all *.html files are parsed as php, because of this the file /dialog/fck_docprops.html is wrongly parsed as php since the following sentence appear at line 285: FCK.XmlDeclaration = '<?xml version="1.0" encoding="' + sCharSet + '"?>' ; It would have been nice if you could have changed this to FCK.XmlDeclaration = '<' + '?xml version="1.0" encoding="' + sCharSet + '"?>' ; so I don't have to change this everytime I update the editor. |
|||||
#1051 | The Fckeditor paste command is not executed on using Command +V on Mac firefox | Bug | Normal | FCKeditor 2.6 | General | |
Description |
The fckeditor's named command 'paste' is not executed on pressing command+V in Mac firefox. So it is not possible to intercept the paste command on Mac firefox. This works fine on Windows using Ctrl+V but similar behaviour is not shown with command+V on mac. |
|||||
#1052 | Semantic MediaWiki | Bug | Normal | Project : MediaWiki+FCKeditor | ||
Description |
The editor has several bugs that make it not compatible with the extension Semantic Mediawiki (SMW); it doesn't recognize the relations and the attributes: it converts them into links. The editor should manage at least: 1) SMW relation definition: [[has_relation::object|object_name]] 2) SMW attribute definition: [[attribute_name:=value]] for the moment, it should be enough if it doesn't convert them into links. |
|||||
#1053 | Unable to apply table style in FireFox using Styles Combo | Bug | Normal | Core : Styles | ||
Description |
Using the following code in fckstyles.xml: <?xml version="1.0" encoding="utf-8" ?> <Styles>
</styles> In Forefox the style selector is blank when I have a table selected and I am unable to apply the style to any tables, where in IE is shows Blue Table and allows me to apply the style. |
|||||
#1054 | Incorrect line spacing after deleting everything in document in Firefox | Bug | Normal | FCKeditor 2.5 Beta | General | |
Description |
Reproduction procedure:
This bug does not occur in 2.4.3. |
|||||
#1055 | onerror handler for editing area | New Feature | Normal | FCKeditor 2.6 | General | |
Description |
In FCKEditingArea one can see the commented lines with a todo task. // IE: Avoid JavaScript errors thrown by the editing are source (like tags events). // TODO: This error handler is not being fired. // this.Window.onerror = function() { alert( 'Error!' ) ; return true ; } Fortunately I've found a possible solution. An error handler can be attached to the iframe's content window by adding the script tag that does it during the rendering of iframe's body (see below). It seems that the dynamic attaching of the handler is not implemented in IE. var oDoc = this.Document = this.Window.document ; oDoc.open() ; oDoc.write('<script>window.onerror = function() { alert( 'Error!' ) ; return true ; };</scr'+'ipt>') ; oDoc.write( html ) ; oDoc.close() ; |