Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (301 - 400 of 2591)

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Ticket Summary Status Owner Type Priority Milestone
#17070 Pressing Delete key removes content from neighbouring cell new Bug Normal
Description

Steps to reproduce

  1. Open http://ckeditor.com/features;
  2. Switch to Accessibility Checker page;
  3. Add a Table;
  4. On the left row add a bulleted list and type several paragraphs;
  5. On the right row add any text;
  6. Set cursor to the last paragraph within the first row;
  7. Start deleting content by pressing Delete button;

Have a look at this video: [https://www.screencast.com/t/XfgB4XTDKkwn ]

Expected result

Any text to the right of the cursor should be deleted, in the current cell only.

Actual result

All text to the right of the cursor in the current cell is deleted, however it then begins to pull in and delete text from the neighbouring cell.

Other details (browser, OS, CKEditor version, installed plugins)

Reproduced in Edge, Chrome and IE.

#58 Safari: objects are not selectable confirmed Bug Normal
Description

With Safari, there are no ways to select objects, like images, form fields and tables. Also, not being able to select them, it is not possible to drag them inside the editor contents. No context menu is also available for the specific objects.

#66 HTML Tidy for XHTML processing confirmed New Feature Normal
Description

It would be interesting to have the innerHTML generated by the browsers to be fixed with HTML Tidy in the server when switching to source view or before posting the data.

The process steps would be:

  • Show a "Processing..." message in the interface.
  • Retrieve the innerHTML (no changes to it). We know that the editor includes some custom elements and attributes there.
  • Send the HTML to the server using XMLHttpRequest (synchronous).
  • Process the HTML in the server using Tidy. "Tidy Processors" should be available on all supported server side languages.
  • Receive the processed HTML from the server and inject it in a DOMDocument.
  • Make the necessary changes in the DOMDocument, removing or changing browser specific or FCKeditor tags.
  • Hide the "Processing..." message and update the hidden field, or the source view, depending on the case.

Well, this is an initial idea than must be further developed in the future.

#103 Auto Image File Sizing confirmed New Feature Normal
Description

When you add an image using the add image icon --> browse local folders --> the upload dialog has a auto file size function. It will give you a choice of width options (200,400,600px) and then the image is converted to a web suitable jpg by a script. We are finding that the average user really struggles, firstly to understand why an image has to be a small file size and then has to use an external software product to size the image before it is uploaded.

#167 Improving IsDirty after switching modes and undo confirmed Bug Normal
Description

This is a remainder of the issues described in #117

Now the IsDirty works fine while the user doesn't switch modes, but if the user does some change, switch mode and then later on he reverts to the original code the IsDirty will remain as true.

This isn't really a big issue, but it's better to leave it documented here.

#228 Clean HTML function (separate from Clean From Word function) confirmed New Feature Normal
Description

It would be very useful to have a button that cleaned the HTML currently in the editor. What I mean by cleaning the HTML is having the option to do one or more of the following:

  • removing FONT tags
  • removing CSS Class references (class=".....")
  • removing SPAN tags
  • removing MS Word formatting
  • removing all HTML tags

While the Paste From Word function is very useful for pasting in new content, often it is necessary to clean up an existing document, e.g. to strip out all formatting and get it back to the bare paragraphs, lists and tables.

This function is available in the radEditor with the Format Stripper button (brush icon)- see http://www.telerik.com/demos/aspnet/Editor/Examples/Default/DefaultCS.aspx), and the CuteEditor with the Cleanup HTML button (brush icon) - see http://cutesoft.net/example/general.aspx).

#241 Make FCKConfig.TemplatesXmlPath an array confirmed New Feature Normal
Description

Or a path-like contruct that can have multiple components. So a complex project like drupal (yes, that's where I'm coming from) could have template xml-files in multiple places and the editor loads all of them ...

The same could probably be argues for styles ...

#304 FormatIndentator cannot be reliably set via script interface confirmed Bug Normal
Description

I wish to have the FormatIndentator be a tab rather than 4 spaces. I also generally aim to put as much configuration in the scripting interface (e.g. calling via PHP/ASP/Perl/etc.) so that the config file can avoid having to be altered much.

Using

FCKConfig.FormatIndentator	= '	' ;

in fckconfig.js works fine.

But doing any of the following when calling via script (example in PHP) :

$instanceName->Config['FormatIndentator'] = '	' ;
$instanceName->Config['FormatIndentator'] = "	" ;
$instanceName->Config['FormatIndentator'] = "\t" ;
$instanceName->Config['FormatIndentator'] = "'	'" ;

fails. In the first three cases, NaN (not a number) is placed into the HTML source. In the fourth case, a tab surrounded by ' marks is put in (so a tab seems actually possible, just not on its own!)

#352 Enforce output sanitizing confirmed New Feature Normal
Description

When an image is drag-and-dropped into the edit field the onmouseover and other event attributes remain intact. There should of course be server-side validation, but currently the XHTML snippets produced are unsafe in themselves and make javascript code injection way too easy.

#397 MaxLength functionality confirmed New Feature Normal
Description

The ability to define a MaxLength (in characters, including underlying HTML tags) would be very useful in order to ensure that the FCKeditor data will "fit" into a Db column. I'd think that this functionality would be relativity trivial if it were to leverage the Undo/Redo functionality (on a change, the length is tested and if it's too long then automatically "undo" the change and display some kind of message). It would also be nice if this functionality could be pegged to the underlying Textarea's maxlength attribute value (even though this is not a standard recognized attribute on a Textarea, though I could be convinced to the contrary).

I cannot seem to find information relating to this feature in the Wiki (which I found very odd) but if this is a dupe or if there is a (non-obvious) method for accomplishing this with FCKeditor I'd greatly appreciate the information.

#425 Table tags to support enhanced table design by class style confirmed New Feature Normal
Description

Hi, I very miss table autoformat and other function to style table. Is possible to generate table with some enhanced tags. In this case everybody will be able to design table by CSS class (Because there will be chance to design first row, first column and every second row]. Here is example that you can know what I mean.

<TABLE >
  <CAPTION></CAPTION>
  <THEAD>
  <TR>
    <TH scope=col></TH>
    <TH scope=col></TH>
    <TH scope=col></TH>
  </TR>
  </THEAD>
  <TFOOT>
  <TR>
    <TH scope=row></TH>
    <TD ></TD>
    <TD ></TD>
  </TR>
  </TFOOT>
  <TBODY>
  <TR>
    <TH scope=row></TH>
    <TD></TD>
    <TD></TD>
  </TR>
  <TR class=odd>
    <TH scope=row></TH>
    <TD></TD>
    <TD></TD>
  </TR>

and so on ....

#495 custom file browser function as a setting confirmed New Feature Normal
Description

Currently fckeditor allows custom file browser(f.b.) depending on the setting "(Image|File..)BrowserURL". This does not allow us to control how the custom f.b. shows up. It always opens as a pop-up window. What if one wants to use a f.b. that uses a floating div instead of a pop-up. or what if one wants to respond to the opening of the f.b. window.

In tinymce there is the "file_browser_callback" setting that is used to specify the function running when f.b. button is clicked. This allows a complete customization on how f.b. opens and functions. It would be really useful to implement a similar thing and overwrite the default f.b. opening function.

thanks.

#532 modify spell check to use pspell or a web service. confirmed New Feature Normal
Description

Currently FCKeditor uses aspell with an exec call to perform spell checking operations.

For security reasons, many sites have exec calls disabled. It would be nice to offer different spell check options.

  • aspell (exec)
  • pspell (language dependent)
  • web api (google spellcheck).
#545 Optional Larger Icons for the Visually Impaired confirmed New Feature Normal
Description

I would like to have an option to switch to a larger set of icons in the toolbar for my visually-impaired clients. Ideally, there would be toolbars with the standard 16x16 buttons and a way to switch those to (1) 24x24 or 32x32 buttons (or, preferably one of each!) and (2) an option to include text labels under each button.

As video displays become more and more powerful, the old 16x16 mini-icons may not always meet the needs of an aging population ofcomputer users. Having a large-icon version of the editor means that web developers like myself will be able to taylor sites to meet the needs of a wider audience.

#547 Add CLASS and ID properties to tags confirmed New Feature Normal
Description

Many properties are missing on tags in the Edit windows. I think at least ID and CLASS properties should be there for every Tag.

Easy way : Could you add those properties inside the Edit Window?

Hard way : Perhaps you should use some reflection to find all editable properties, or allow user to setup a list of editable property by tag.

Thanks.

#554 MathML editor plug-in for FCKeditor confirmed New Feature Normal
Description

a js based mathML editor plugin.

#591 Unique Style Set for each Toolbar Set confirmed New Feature Normal
Description

Related to the feature request entitled, "attach external css-file to selectbox".

It would be great to have different style sets for each Toolbar Set.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=891406&group_id=75348&atid=543656

#594 onresize(end) event for images confirmed New Feature Normal
Description

It would be nice to be able to create your own event handler for a resize/resizeend event of an image tag. So you can fix the aspect of the image when a user stops resizing the image or set a new src for the image to a new server generated image with the resized dimentions.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=908202&group_id=75348&atid=543656

#595 Change the bgcolor and bordercolor of a table confirmed New Feature Normal
Description

Is it possible to change the border color and bgcolor of a table? I can set this for each cell but not for the table.

In addition, can I remove the header of a table after I added it?


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=928121&group_id=75348&atid=543656

#597 WAI Accessibility standards implemented confirmed New Feature Normal
Description

I'd like to see WAI accessibility standards enforced wherever possible. For example ALT tags always need to be provided, form fields must have titles, etc.

This would greatly improve things and help with compliance issues.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=944409&group_id=75348&atid=543656

#599 Timestamp confirmed New Feature Normal
Description

One thing I would appriciate is a timestamp button thats adds the computers date and time and a possilbilty in config to get us or european setup.

The reason beeing is that it would be great to use in journals etc.

with Regards

ObjectCat / Fredrik


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=952706&group_id=75348&atid=543656

#602 Syntax highlight and go to line confirmed New Feature Normal
Description

It would be a great idea to be able to use highlighting in source mode like you get in some text editors for coding.

a button for go to line would be great because sometimes you have this huuuge files and you got an error on line 345. Would be great for debugging.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=972673&group_id=75348&atid=543656

#606 ActiveX/OCX/DLL component confirmed New Feature Normal
Description

so FCKeditor can be implemented into a lot of other solutions.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1052311&group_id=75348&atid=543656

#607 Show "Basic" toolbar when colapsed. confirmed New Feature Normal
Description

Hi,

The editor is great, and has a lot of features. But first-time users might be intimidated by all the features.

Maybe it is possible to use 2 Toolbarsets, Basic and Advanced. If you click the Collapse/Expand button, the toolbar could switch from Basic to Advanced.

This way the new users could start with a simple toolbar, and the experienced user can expand the toolbar and have all the available options.

Greetings, Arjen


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1089610&group_id=75348&atid=543656

#608 Styles XML file support for element="*" confirmed New Feature Normal
Description

I would like to suggest building support for an <any> element that will apply to any element (equivalent to a ".sample" in the stylesheet which can be applied to anything).

for people who don't know what i'm talking about take a look at /FCKeditor_2.0rc2/_docs/contents/006.html in the latest release.

So for example - instead of this:

<Styles>
<Style name="Bold Red" element="span">
<Attribute name="style" value="font-weight: bold;
color: Red;" />
</Style>

I would like to be able to do this:

<Styles>
<Style name="Bold Red" element="*">
<Attribute name="style" value="font-weight: bold;
color: Red;" />
</Style>

I think this would go a long way in helping not to confuse non power-users who will not understand that they cannot find the style "Bold Red" when they have a table cell selected for example when all they want to do is get the text Red.

Also I think when a user selects an entire paragraph, then the p tag should get the class assigned as opposed to nesting a span tag inside the p tag.

And when the user selects the same paragraph again (because it unintuitively gets unselected after applying a style) and applies a different style, the previous style should get *overwritten* instead of having the new style nested within the old one.

It makes for cleaner html and will go along way in reducing html clutter.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1091613&group_id=75348&atid=543656

#610 Create link to File Browser directory (not file) confirmed New Feature Low
Description

When browsing server, we can't create links to folders, it's a problem.

Bye


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1096331&group_id=75348&atid=543656

#614 Inline comment editor confirmed New Feature Normal
Description

Back when we re-invented the wheel every time we needed something, we created our own DHTML editor. We have long since abandoned it in favor of FCKeditor, however one feature that we used to have that everybody asks for still is the ability to edit html comments in wysiwyg mode.

We had a button, similar to the 'view source' button that when it was "on", would scan the content, find any HTML comments, and insert pretty image open/close brackets around them and make them editable. Essentially this becomes a way to "red line" and take annotations within HTML code. When the "view comments" option was unselected, it hid all the comments again.

I still have working code from our editor that does this, should you be interested in seeing it, I would gladly provide it to you.

Thanks,

Andrew aschwabe(at)iexp(dot)com


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1105221&group_id=75348&atid=543656

#615 Add Pop-Up Window confirmed New Feature Normal
Description

Add capability to creat a pop-up information window. It would work this way:

After highlighting the text or image to which the pop-up would be attached and selecting the create pop-up window icon a property box would come up. One of the fields would contain the text (and any additional links) to be displayed when the pop-up is activated. When selected from the browser a fixed size window would pop-up containing the text. There would be a scroll bar on the right side and a "Close Window" on the top.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1112695&group_id=75348&atid=543656

#628 Document Properties: Style Sheet confirmed New Feature Normal
Description

Is there any way we can add a field to link a style sheet into the document properties page (when editing a full html page)? For normal editing when the text will be incorporated right into the site, setting the editor's css before writing the editor is good enough. However for a full page, although it previews with that style sheet, it doesn't actually write it into the page when submitting it. One would need to manually type in the css link.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1172741&group_id=75348&atid=543656

#629 Escaping HTML with htmlspecialchars() confirmed New Feature Normal
Description

It would be more like feature request:

It would be useful to add possiblity to turn off escaping HTML in function CreateHtml(), because user may pass already escaped html.

Simple solution:

var $EscapeHTML = true;

<...>

function CreateHtml()
{
$HtmlValue = $this->EscapeHTML ? htmlspecialchars(
$this->Value ) : $this->Value ;
<...>

Best regards, Laurynas


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1174671&group_id=75348&atid=543656

#630 ability to have toolbar buttons sized acording to the images confirmed New Feature Normal
Description

It would be nice to be able to create toolbar buttons and toolbars that are not retricted to 21x21. Please change fckeditor to allow this, by adding FCK_TOOLBARITEM_NO_SIZE or something. Is there a hack I can use from my fckplugin.js to get around this?


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1183156&group_id=75348&atid=543656

#631 More advanced ruler (HR) insert confirmed New Feature Normal
Description

Hi.

Is it possible to make the insert of Ruler (HR) be a little more advanced.

When you insert it I would like to see a dialogbox where you can set: Width (integer input) Dropdown for controlling with in either (px, %) Height (Normal/Standard, 1, 2, 3, 4, 5) Shadow (Yes,No)

And hopefully a way to be able to edit the settings for the same ruler you inserted above..... same dialog opens again but now showing the properties for current Ruler.

Keep up the good work.

This editor rocks. :-)

For a better expl.... of what I mean try this link: http://tinymce.moxiecode.com/example_full.php?example=true


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1184810&group_id=75348&atid=543656

#636 Please add CSS style dropdown to table and cell confirmed New Feature Normal
Description

When inserting a table or editing table or cell properties it would be really useful to be able to select a style (CSS) from a dropdown which would be applied on table level.

Same dropdown should appear when you look at the properties for both table and cell.

When implementing this cool editor in a CMS or whatever, beeing able to use CSS on every element where it can be done would make this rock'n editor to rock even more :-)

Keep up the good work.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1186678&group_id=75348&atid=543656

#674 problematic cut/copy/paste with lists confirmed Bug Normal
Description

When doing cut/copy/paste, frequently, bullets are left behind.

Happens when you try to delete or move up the second line in a list of at least 3.

Cut&pasting of indented bullets goes wrong most of time and you have to make manuel cleanup afterwards.

Most Cut&Paste problems are due to the fact that when you delete a bulleted or indented line, the bullet or indentation is left behind and sometimes applied to the following lines. This happens as well with Firefox as with IE.

Example :

<ul>
  <li>
    <p>AA </p>
  </li></ul><p>BB </p>
  • select the AA line and delete it

Result in FCK:

<ul><li>BB </li></ul>.

This bug was confirmed by another (non-moin) FCKeditor user, he also has seen it.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1274834&group_id=75348&atid=543653

#678 E-mail Link dialog confirmed Bug Normal
Description

The bug appears when editing an e-mail link that contains non-latin characters within its subject or body and document's charset is different from utf-8.

oParser.CreateEMailUri method in fck_link.js escapes non-latin characters from utf-8 charset, so the url when passed into the document remains utf-8 encoded.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1325829&group_id=75348&atid=543653

#717 CSS in ordered / unordered lists. confirmed New Feature Normal
Description

Hello!

I think the most dramatic upgrade I'd love to see to the editor would be to have unordered list menus CSS. A quick example:

<ul class="something">
<li><a href="#">Nav link 1</a></li>
<li class="selected"><a href="#">Nav link 2</a></li>
<ul class="something2">
<li class="selected2"><a href="#">Subnav link 1</a></li>
<li><a href="#">subnav link 2</a></li>
</ul>
<li><a href="#">Nav link 3</a></li>
</ul>

UL lists give much more flexibility with CSS styling, and one can always create a separate template that gives CSS dropdown capabilities, which a user could choose to use but wouldn't come as default to keep it simple for people.

You can right click on a list, and the list properties dialog appears. This could give the option to add CSS class for the entire list. It would also be good to think of a way to class specific items in the list as in my example.

Thanks for your time!

#721 Add Keystrokes to Templates confirmed New Feature Normal
Description

It would be cool to be able to have some keyboard-based (non-mouse) way to access custom templates. It's already possible to assign a custom keystroke to open the Templates pop-up (I use Control-Y) but it would be super cool to be able to follow that up with a keystroke that selects and inserts one of the templates.

#726 ieSpell & multiple editors not responding confirmed Bug Normal
Description

If there are multiple editors on the page and there are spelling errors in more than one editor ieSpell finds and corrects the errors in the first one, highlights the first spelling error in the next one and then IEXPLORE.EXE starts using all of the CPU and is not responding.

Thanks,


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1484671&group_id=75348&atid=543653

#727 Mixing GET and POST parameters not RFC-Compliant confirmed Bug Normal
Description

Great work the editor, folks!

As the subject says - There are parts of FCKeditor that mix GET and POST parameters by putting a query string on the "action" bit of a POST'd form, specifically :

fckeditor/editor/filemanager/browser/default/frmupload.html

This is NOT RFC-compliant - you're supposed to pick one method and stick to it. RFC-compliant CGI parameter parsers will be unable to see the query-string encoded values in the action parameter when you POST. Making FCKeditor conform to the RFCs will make it work better in more places.

There's certainly a better way to do the javascript, but here's a "fixed" version of frmupload.html from the default integration interface.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1487047&group_id=75348&atid=543653

#731 0 border tables have a border when sent to a printer confirmed Bug Normal
Description

fck_showtableborders_gecko.css defines the rules to show border="0" table borders on Gecko when editing. But those borders are present if you send your document to a printer, which is not a good thing... I link a patch i use for this file to hide the border="0" tables border on a printer.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1491546&group_id=75348&atid=543653

#743 Remember toolbar expansion state confirmed New Feature Normal
Description

If user clicks to either expand or reduce the editor the ToolbarStartExpanded setting is applied on postback.

Steps to reproduce

- Add simple dropdown with AutoPostback set true
- Set FCKEditor's .ToolbarStartExpanded false
If Not Me.IsPostBack Then
With Me.FCKeditor1
.ToolbarSet = "Standard"
.ToolbarStartExpanded = False
.Visible = True
End With
End If
- Run up form and click to expand toolbar
- Select value in dropdown to force postback
- Note that the toolbar has not expanded

The above is true in reverse, i.e. ToolbarStartExpanded=True, user clicks to reduce the toolbar is expanded following postback.

Not a big issue but causing my users, and hence me, some irritation.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1503002&group_id=75348&atid=543653

#808 Show table size while changing size confirmed New Feature Normal
Description

It would be nice to see the table width height and differences to the original table while dragging the sizing buttons.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1188944&group_id=75348&atid=543656

#810 Please add "justify" to cellproperties in horiz alignment confirmed New Feature Normal
Description

Howdy.

Could you please add another option to the drop down that pops up when you right click in a table and select cellproperties:

Today you can select between these options:

left
center
right

Would be nice to see

justify

in that list of options as well.

Keep up the good work.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1195058&group_id=75348&atid=543656

#813 Save collapse state in cookies confirmed New Feature Normal
Description

Suggestion:

If cookies are available (test for cookies) then upon collapse/uncollapse of the editor toolbar save the state in cookie. This way upon refresh the state will be preloaded. If editor uses dynamic content, then loading different content will retain collapse state.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1201004&group_id=75348&atid=543656

#814 image popup: add margin-right, margin-left props confirmed New Feature Normal
Description

would be great if it would be possible to have inputs for additional properties like margin-left.....


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1201651&group_id=75348&atid=543656

#815 Image properties: border color confirmed New Feature Normal
Description

Hello.

It would be cool if there were a color picker to set the image's border color in the image properties dialog.

I am trying to add this feature to the image properties dialog.

Thanks in advance


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1204134&group_id=75348&atid=543656

#818 mouseover image confirmed New Feature Normal
Description

Would You think it's a good idea to implement a mouseover image as addition to the current image dialog. I would like to use mouseover images. For me an option would as well be to let the file browser return an array with the image and the mouseover image and let the dialog handle this, but I can imagine that for the editor it is more efficient to add an extra image field


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1208959&group_id=75348&atid=543656

#823 allow editing of current path in the browse server dialog confirmed New Feature Normal
Description

It would be nice if the path display at the top of the browse server dialog would be a field that I could edit to quickly change into another directory, similar to what web browsers allow.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1215801&group_id=75348&atid=543656

#827 Upcase selected text confirmed New Feature Normal
Description

Hello.

A button to upcase a selected text.

You select some text from the editor and then push the upcase button. Result: the selected text is now upcase.

Text -> TEXT

Bye


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1232650&group_id=75348&atid=543656

#829 Table Auto Format confirmed New Feature Normal
Description

Hi! Thanks for this nice application!

But in version 1.6 Final, was a function at table properties named "Table Auto Format". In new 2.0FC i don't find it.

Please, include it in final version, may be, as plugin? It's useful!


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1232967&group_id=75348&atid=543656

#831 Set background image to tables and cells confirmed New Feature Normal
Description

Make it possible to choose a background image for a table/cell.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1235507&group_id=75348&atid=543656

#833 FontStyleAdv Command confirmed New Feature Normal
Description

Has the FontStyleAdv command and toolbar item been removed from 2.0? Is there an easy way to add that toolbar button again?


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1249716&group_id=75348&atid=543656

#839 There should be a button that insert BR with CLEAR="ALL" confirmed New Feature Normal
Description

Hi.

There should be a button that insert BR with CLEAR="ALL", and there should be a placeholder visible in FCKeditor for that tag as well. And eventually possible to use other values as well, such as LEFT or RIGHT instead of ALL.

Let say you insert an image or table and make it either left or right align so text can wrap around the object. http://sourceforge.net/tracker/index.php?func=detail&aid=1296087&group_id=75348&atid=543656 Let say you write some text left of inserted object (if you right aligned the object above), but not so much text that the text are continuing below the object.

If you now want to continue writing another section from a place below the inserted object above then you would (today) have to insert multiple normal line-breaks <br /> in order to get to the bottom of the right aligned object. (or have I missed something here? )

IMHO that is not the correct way of doing it. And I think the correct way would be to insert one:

<br clear="all" />

to continue writing after the right aligned object.

( if one use <br /> tags to get below the object then this would not nessesarily look very good if the content is displayed in a container that is wider or narrower than the editor area when writing.... which of course is very likely to happen )

Okay.... writing a plugin that creates the button and the function that insert the needed <br clear="all" /> should not be to hard, but would be nice if FCK could do this as I also want to see a nice placeholder for the new tag... something similar to the placeholder for the Anchor.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1296087&group_id=75348&atid=543656

#842 Floating DIV tag layer confirmed New Feature Normal
Description

I noticed that if I add the following to the source: <div id="Layer1" style="position:absolute; width:200px; height:115px; z-index:1; left: 146px; top: 90px;">Here is a floating layer</div>

Then click OK.

If I click on the layer in the editor window, I am able to use the handles to resize the layer, and move it's absolute position. Since the capability to manipulate floating layers is already in the editor, why not add a button that will either insert the layer in the editor, or convert the selected text to a floating layer, or whatever?

It would also be a good idea to insert code for a right-click feature to change the layer info such as ID, etc.

This floating frame capability would make FCKEditor one of the very few editors with this feature. I have yet to find one that has this feature that works in Mambo/Joomla.

Cheers.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1327892&group_id=75348&atid=543656

#844 Bullet Color confirmed New Feature Normal
Description

My organization would like to see an interface that would allow for the selection of a bullet color for the unordered lists.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1351640&group_id=75348&atid=543656

#845 Single file for File Browser config (language independent) confirmed New Feature Normal
Description

I know FCKeditor is not phpMyadmin, but really irks me is not having one file only to make configuration changes. Diving deep to find the right config file to activate uploading, for example, is a pain.

I know you try to cover php, JS, asp etc., but one file would be so much easier to work with. 'myconfig.js' could be used - if exists - and if exists, it would have everything in it.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1361798&group_id=75348&atid=543656

#849 Get the "plain text" (tags stripped) content from the editor confirmed New Feature Normal
Description

I want to get the pure content,i.e. the value of the editor discarding all the tags related to format, such as html tags or javascript tags. In other word, I need not the html source in the editor but the all text displayed on the html page without any tags.

A new method is desirable to implement such a function.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1371816&group_id=75348&atid=543656

#851 Show an icon in the place of protected source code confirmed New Feature Normal
Description

The current implementation of Protected Source puts a comment like <!--{PS..0}--> so the user has no indication that there is something special there or any way to change that content except switching to source code and finding it there.

A great improvement would be to show an icon in those places, like it is done with <a> anchors. And secondly be able to edit the protected code in a popup window.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1387517&group_id=75348&atid=543656

#852 Insert media files confirmed New Feature Normal
Description

I'd loved to see an 'insert media' button to enable placing of movie files (.mov, .avi) on to the page.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1388055&group_id=75348&atid=543656

#853 sourcecode view improvement confirmed New Feature Normal
Description

Hi,

I think personally it would be great if the source code view had wrap="off" to prevent line breaks where the source code actually continues and also the ceaseing of line breaking charactar striping so that you can indent source code and make new lines in the code without that disappearing on "OK".

Example.

<script language="javascript" type="text/javascript">
alert('yay!');
</script>
<?php
echo "Hello again!";
?>

--> Upon click becomes

<script language="javascript" type="text/javascript">
alert('yay!');
</script> <?php
echo "Hello again!";
?>

That line breaker should be left intact?!

Thanks! Keep it up, love 2.2!


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1390185&group_id=75348&atid=543656

#854 characters counter confirmed New Feature Normal
Description

hi, I'd like to have a characters counter...ie: "there are xxx characters left"

it would be useful for inserting text with limitation in length...


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1391324&group_id=75348&atid=543656

#859 Set Spell Check Language confirmed New Feature Normal
Description

Hi Fred,

It would be great if we could set the spell check language independantly of the toolbar languauge.

For example, I may be an English user who has the task to writting / edit content in French. I'd still like the English toolbar (as that is my mother tongue), but would like to be able to spell check the document in the language it is composed in.

This would be very helpful.

Thanks,

Michael


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1410153&group_id=75348&atid=543656

#863 Save button responding to changes confirmed New Feature Normal
Description

Hi there, it would be a really nice default behavior if the save button could "dim" immediately after a save, and reactivate on a change to the editor contents. In other words, behaving like typical desktop apps.

(In my case, I am submitting the form via an iframe without refreshing the whole page.)

Similarly, it would be nice if I could programmatically dim/reactivate the Save button -- such that when another field in my form changes, I can reactivate the Save button in the editor.

Thanks,

  • Matt

Matt_Sherman@…


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1422914&group_id=75348&atid=543656

#873 show config errors in filemanager confirmed New Feature Normal
Description

I've noticed that an ongoing issue for many is that setting up file and image upload is difficult. Part of the reason is there is no documentation about how paths to the File etc folders are created, and also there is no feedback if you get it wrong - nothing to help with fixing it.

In using the plugin ImageManager from Zhuo, I noticed that it was much easier to fix config problems with upload directories because the code reports, when it can't access the directory, giving the url that it is trying to use. With just that little bit of feedback, you can usually fix the problem quickly.

If FileManager had some inscreen display, similar to this, I suspect that a lot of those "help me with file upload" problems would go away - or at least some good suggestions could be made for peeple who get the error.

I suggest this as a high priority, since I see many people spending a long time fixing this (and a number giving up after hours or days and not being able to fix it) - and my own experience of 2 days worth of frustrating debugging, trying different upload plugins and code hacking, before I could figure out enough to fix the problems I was having.

The waves of relief and gratitude from implementing this feature would be massive :-)


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1466105&group_id=75348&atid=543656

#874 Text style control confirmed New Feature Normal
Description

Feature of creation/deletion/renaming text (paragraph) styles needed. Dialog with style properties needed too.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1469999&group_id=75348&atid=543656

#877 IE changes in Active Content (Flash) handling confirmed New Feature Normal
Description

We're using fckeditor to place flash OE tags in html pages.

Considering the recent changes in the way IE handles Active Content (http://www.macromedia.com/devnet/activecontent/articles/devletter.html) we need to place the OE tags in a different way. (Otherwise flash files need to be activated by user clicking on it, resulting in a border around the flash file on mouse over)

This problem can be solved by placing the OE flash tags using javascript (http://blog.deconcept.com/flashobject/ or link above).

Is there a way to let user place flash in fckeditor using the javascript flashobject method?


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1471665&group_id=75348&atid=543656

#879 "Credit" and "Caption" fields on Image Upload screens confirmed New Feature Normal
Description

When you upload an image, it would be nice if we could specify a credit - example Photo by: and also put a caption on the image "Sunset on the smoke- filled horizon"


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1475192&group_id=75348&atid=543656

#881 borders in a cell confirmed New Feature Normal
Description

currently you can edit various properties on a cell but not the borders. can we have boxes for left-right- top-bottom borders in the cell properties?


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1480985&group_id=75348&atid=543656

#884 Make "Target" available when creating link to "anchor" confirmed New Feature Normal
Description

In the "insert hyperlink"-window, if you select to add link to anchor, the "target" option disappears. If you select the "target" before selecting anchor- link (at default, URL is selected), the "target"- attribute is added to the link as supposed.

The reason for wanting to be able to select target, is that we use "<base target="_blank">" on our site and want anchor-links to be opened in "_top".


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1484518&group_id=75348&atid=543656

#899 Special Characters for Esperanto missing in the table confirmed New Feature Normal
Description

Please note, the ten special characters for esperanto Ĉĉ Ĝĝ Ĵĵ Ŝŝ Ĥĥ Ŭŭ should be inserted in the characters table hope soon!

Atentigo: la dek specifaj karakteroj por Esperanto, t.e. Ĉĉ Ĝĝ Ĵĵ Ŝŝ Ĥĥ Ŭŭ mankas en la tabelo. Bonvolu enigi ilin plej eble baldaŭ!


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1497416&group_id=75348&atid=543656

#902 PDF Generation confirmed New Feature Normal
Description

There should be an option to generate the pdf of the content inside the text area.


Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1498485&group_id=75348&atid=543656

#911 table support toward spreadsheet functionality confirmed New Feature Normal
Description

This editor is great. But according to my day to day usage experience for many months, advance table supporting toward spreadsheet functionality is urgently needed. To list a few:

  • drag to border to adjust column width
  • select/copy/paste/cut a rectangular area as in spreadsheet
  • exechange data with spreadsheet (copy/paste)
  • use toolbar/fast-key to execute table functionality

Moved from SF:
http://sourceforge.net/tracker/index.php?func=detail&aid=1547151&group_id=75348&atid=543656

#981 Spellcheck - Extra Button to stop spellcheck and apply the changes made upto that point. confirmed New Feature Normal
Description

Spellcheck - Extra Button to stop spellcheck and apply the changes made upto that point.

With the spellcheck... you can keep correcting errors... and it is only until the last correction is made... that it then applies it.

There is the cancel button... that cancels everything.

Well... there are some times... that I am using the spellcheck... and I want to stop after a few corrections... and actually apply the corrections I have made up to that point. (ie) Not a total cancellation. It would be good if there was a new button that allowed for this to happen.

#1059 Complete the Python integration confirmed Task Normal
Description

The Python integration must be compliant with our standard "Server Side Integration" requirements, as defined at ServerSideStatus.

#1111 Enhance Find function confirmed New Feature Normal
Description

Dear Fred and developers,

The Find would be better able to -

  1. show finding status like '10 matches found.' *If matches > 1, the value of find button 'Find' changes to 'Find Next' after user has searched the first match.

  1. search again from the beginning if desired word is not found.

[Currently, it starts searching from the cursor point.

For example, we have 3 words - hello. We place our cursor at the back of the last hello. Search it. Find none!]

In this case, the find function should check that

  • the cursor should be at the first position.

Thank you so much for your time, consideration and hardwork.

#1127 Enhance Drop-down menu confirmed New Feature Normal
Description

Dear Fred and developers,

Currently the FCKeditor has 4 drop-down menus

  1. Style
  2. Format
  3. Font
  4. Size

I'd like to suggest for Font drop-down menu. That menu currently has 6 fonts. Definitely, there are times when user wants to define his desired font not listed in the menu. If so, how to do ?

Simple. Just add a new item named 'Add custom'

which asks user his desired font name and adds code to the text area.


Similarly for font-size, there are times when user wants to define his desired font size not listed in the menu.

By the way, the labels 'Style’,’ Format', 'Font', and 'Size' would be better in the drop-down index 0 for the sake of spaces in the editor toolbar - we can even add more buttons at that line, resulting more precise toolbar.

Thank you so much for your time, consideration and hardwork.

#1134 Enhance Smiley Dialog confirmed New Feature Normal
Description

Dear Fred and developers,

We can add more smiley icons by providing 'more' link.

Even if the icons are dozens, the more link can also be enhanced by dividing categories presented as a drop-down menu.

Thank you so much for your time, consideration and hardwork.

#1138 Create Table Sorting buttons - Ascending & Descending confirmed New Feature Normal
Description

Dear Fred and developers,

The algorithm is simple.


BEGIN PROCEDURE 
	Enumerate all (currently-focused) row td data except thead/th data.
	Get them with Regex
	Add them to array
	Sort using array.sort function - We get it in an Ascending order!
	Sort using array.reverse function - We get it in an Descending order!
END PROCEDURE

Thank you so much for your time, consideration and hardwork.

#1142 Create Format Painter button confirmed New Feature Normal
Description

Dear Fred and developers,

The button will work like Format Painting button in word application.

First, the user needs to select some text. [Yeah, the button is disabled by default till user selects some text.] The function will copy the format used in the selected text. Then the button is in pressed state.

Ok, now the user can select some texts he wants to format-paint or just drop cursor at top of some texts to do so.

Thank you so much for your time, consideration and hardwork.

#1145 Enhance "Select Color" Dialog confirmed New Feature Normal
Description

Dear Fred and developers,

Currently, the color picker in FCKeditor is basic. [ I'm not degrading it!] There are already some great JavaScript Cross-Platform Color Pickers on the web. Please inherit any one you feel great.

http://www.google.com/search?q=Javascript+Color+Picker

Thank you so much for your time, consideration and hardwork.

#1149 Add default action on face for Panel button (menu button) confirmed New Feature Normal
Description

It's common for toolbar buttons in other applications to do a default action if you click on the button face, and only drop a panel (as FCKToolbarPanelButton does) when you click the arrow -- if there is one. At present, FCKToolbarPanelButton doesn't maintain the distinction between dropping down the panel and making a default action.

Enclosed is a patch to enable ToolbarPanelButton to pass to the toolbar command object whether or not the user clicked the dropdown arrow or the face, so that the command object can behave accordingly. This also adds the ability for ToolbarPanelButton to be context-sensitive -- necessary if you're implementing things like UL and OL.

Also enclosed is a plugin that uses the patched functionality. The plugin overloads FCKTextColorCommand so that the last color you used is the default action on the button face. It also adds DropOL, DropUL, and DropFontSize to use the same functionality to provide dropdowns for setting your OL/UL styles and font sizes.

In local testing, the patches to ToolbarPanelButton are sufficiently encapsulated so as not to break existing ToolbarPanelButtons.

#1172 FCKConfig.AutoDetectLanguage issue confirmed Bug Normal
Description

I believe the language of FCKeditor user interface has to be identical to the language of the page that contains an FCKeditor instance.

But if one set FCKConfig.AutoDetectLanguage = true ; the result will depend on the browser that a user use to browse Web.

In IE the FCKeditor language is identical to system locale settings. In Firefox it equals the value of general.useragent.locale property (see about:config). In Safari it is always English (at least on Windows).

Btw, there is no way to know the language of the current page.

So is it really useful option?

#1259 Perl connector does not conform to our standards confirmed Bug Normal
Description

Each connector uses it's own config file, perl's not. And correct me if I'm wrong, it contains a possible security hole here:

	if($FORM{'ServerPath'} ne "") {
		$GLOBALS{'UserFilesPath'} = $FORM{'ServerPath'};
		if(!($GLOBALS{'UserFilesPath'} =~ /\/$/)) {
			$GLOBALS{'UserFilesPath'} .= '/' ;
		}
	} else {
		$GLOBALS{'UserFilesPath'} = '/userfiles/';
	}

by sending malformed ServerPath we can make some bad things. I think that it would be good to adjust perl connector to our standards (so that ServerPath could be defined in cofig file, not as a part of url) and btw. it would be good to make it's own page in http://wiki.fckeditor.net/ (Integration section).

#1333 Definition Lists (<dl> <dt> <dd>) confirmed New Feature Normal
Description

It would be nice to have a feature to manage definition lists. For example:

<dl>
   <dt>blackbird</dt>
   <dd>A black bird with an orange beck, often found in gardens.</dd>

   <dt>sparrow</dt>
   <dd>A small, brown/grey bird, often found in gardens.</dd>
</dl>

<dl> opens the definition list, <dt> lists the term and <dd> tells the definition. A special type of list, that is starting to get used more and more.

#1339 Image Properties - Add link target to the Link tab confirmed New Feature Normal
Description

Regards,

the thing is that I would like to be able to set the popup window feature directly from the Image Proporties dialog, without having to go to the Link dialog.

So, can you add popup window feature for Link - Target, to the Image Properties - Link, Target?

In pictures, this would be the new feature -> http://www.ceska-beseda-zg.hr/new_image_properties.png

Thanks for your time...

#1356 [Firefox] Keyboard to go to next/previous paragraph confirmed New Feature Normal
Description

Implement a keyboard shortcut to go to the next or the previous paragraph.


Moved from Sourceforge
Original reporter: Claude Coulombe

#1373 Center screen option for popup links confirmed New Feature Normal
Description

For links with their target set to popup, it would be nice to have a "center of screen" option, rather than specifying the coordinates. Due to the variety of screen resolutions, this would make sure it's in the same place very time.


Moved from http://sourceforge.net/tracker/index.php?func=detail&aid=1576332&group_id=75348&atid=543656

Author: anonymous

#1374 Acronym Tag confirmed New Feature Normal
Description

Plugin to handle <acronym title="DESCRIPTION">SHORTCUT</acronym>


Moved from http://sourceforge.net/tracker/index.php?func=detail&aid=1563695&group_id=75348&atid=543656[[BR]] Original Author: centix

#1398 Select all then delete or backspace clears formatting confirmed Bug Normal
Description

tested: svn-trunk Oct-10-2007
Happens in Fx and IE7:

  1. Set text formatting and type some text.
  2. Select all from the toolbar or context menu.
  3. Press either backspace or delete, menu formatting is cleared.
  4. Note: if instead of delete, you started typing then formatting is not lost.

(splitting up multiple issues from ticket 565)

#1415 empty div tags are removed confirmed Bug Normal
Description

switch to source and paste

<div id="black_box"></div> 

switch twice and you'll see that the content has been lost.

(any browser)

Reported in http://www.fckeditor.net/forums/viewtopic.php?f=6&t=7251

#1424 Delete / backspace next to "Control" elements should select that control, rather than deleting confirmed New Feature Normal
Description

When the cursor is placed next to (as IE puts it) a "control" element, such as an image or a table, it should select it on delete / backspace.

This improves the intuitiveness of deleting and makes sure people dont delete things accidently.

Here is a function partially implemented which does this

FCKListsLib.ControlElements = {'img':1, 'table':1, 'input':1};

// Helper function upon deleting a node that may be a control (must select it first)
// A control is something like an image or table which can be selected with the cursor
FCKEnterKey.prototype.HandleControlNodeSelect = function(pRange, bIsForward)
{
	// Check to see if we are about to delete an image or table
	// TODO: this is IE specific at the moment!
	if(FCKBrowserInfo.IsIE)
	{
		// TODO: this only works when a element is in a block
		var pStartBlock = pRange.StartBlock;

		if(pStartBlock)
		{
			var iDirection = bIsForward ? 0 : -1;
			var iOffset = pRange._Range.startOffset;
			var pPrevious = pStartBlock.childNodes[iOffset + iDirection];

			if(pPrevious && FCKListsLib.ControlElements[nodeGetTagName(pPrevious)] != null)
			{
				FCKSelection.SelectNode(pPrevious);
				return true;
			}
		}
	}
	
	return false;
}
#1505 Adding additional 'table row after' on <th> headings creates second heading rather than row confirmed Bug Normal
Description

The current default does not seem very sensible - right-clicking on a <th> table heading cell and inserting a row after adds another th row rather than a td as would be expected.

#1511 Undo manager does not record object resizing confirmed New Feature Normal
Description

Undo works like a charm, but when resizing an image this cannot be undone with the undo system. It would be great if this would be incorporated.


See http://dev.ckeditor.com/ticket/1511#comment:20 for reasons why this issue has not been fixed.

#1563 CSS Table Support (Code Attached) confirmed New Feature Normal
Description

My site uses css to define some default tables. fckEditor table dialog can not overwrite the css system, because the css has prioiry over html atributes. We have recoded the table dialogs to add css rules dynamicly to the page. Files attached with code and screen dumps.

#1571 Suggestion for Find / Replace dialog of v2.5 confirmed New Feature Normal
Description

Usefulness of the "Replace" tab of the Find/Replace dialog is greatly diminished without a "Find Next" button. To be selective about search and replace requires both tabs with their separate search fields. (You must enter what you're looking for twice)

Perhaps I'm missing something, but I think the find / replace tabs could be combined in a dialog with no tabs while being more useful. If the "Find Next" button was added to the replace tab, it could concurrently serve all Find / Replace purpose as a simpler, more intuitive and easier to use tab-less dialog. (e.g. Like the "Edit | Replace..." dialog of Notepad.)

Up / down radio buttons could also have significant value if this dialog must be modal, unlike being modeless with Notepad. (or like an always on top floating dialog of the kind I see targeted for v2.6)

BTW: Replace tab isn't selected (at least in IE7) on pressing the 'Replace' toolbar button, but the above suggestion would make this irrelevant.

#1601 custom style is not visible in style list because style defines text color to white confirmed Bug Normal
Description

I have a custom style with a foreground of white:

'custom1' : { Element: 'span', Styles : { 'font-family' : 'Arial, Helvetica, sans-serif', 'font-size' : '11px', 'font-weight' : 'normal', 'color' : '#FFFFFF', 'line-height' : '16px' } },

this style is invisible in the styles drop down, because the styles drop down list shows what the style is of each style, so my custom style with a text color of white is invisible because the background of the drop down list is white also.

I would try to detect this and if so change the text color so users can see it, sort of like how dreamweaver does it.

I will include screenshots.

(Maybe this is an enhancement request)

#1632 Source view: Activate undo/redo tool buttons confirmed New Feature Normal
Description

Browsers: Firefox 2.0.0.11 (win+lin), IE6+7

Shortcuts for undo and redo works fine when in source view, but the toolbar buttons is deactivated. The "Select all" toolbar button is active and it would be nice to have the undo/redo buttons active as well.

#1646 Color for Underline and Strikethrough inconsistent confirmed Bug Normal
Description

The color that Underline and Strikethrough take is inconsistent. Consider these two examples:

  • begin typing text
  • switch Font Color to Red
  • Select 'Strikethrough,' type some more

Result:

The strikethrough is red.

  • Type some text
  • Highlight the text, change the color to Red,
  • With the selection still highlighted, select 'Strikethrough'

Result:

The strikethrough is black.

Reversing the order in which styles are added in both scenarios produce the opposite result.

Expected behavior should probably be that the strikethrough and underline always take the current color of the text.

#1687 Setup initial HTML code for the new blank page confirmed New Feature Normal
Description

Hello. I've tried to find this kind of feature request without any success. So I think it will be very useful if the webmaster will be able to setup initial HTML code for the "blank" page created by the "new page" button. In this case all important parts, such as css file + special headers and footers, which correspond to the site design, will be inserted into the new file automatically.

Thank you.

#1721 Check for valid file extensions is not enforced everywhere confirmed New Feature Normal
Description

Since it is possible to set allowed/denied file extensions for all 4 file types, there properties should be checked everywhere a file is going to be upload.

For example, if you upload a file directly through the image plugin it checks for a valid extension. If you upload through the file browser, it does not check for extensions. It has to be made on the server.

This complete coverage would make it superfluous to check for the extension on the server-side.

1 2 3 4 5 6 7 8 9 10 11 12 13 14
Note: See TracQuery for help on using queries.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy