Opened 17 years ago

Closed 11 years ago

#904 closed New Feature (wontfix)

Lotus Notes Domino Connector upload parameter

Reported by: dwightwilbanks@… Owned by:
Priority: Normal Milestone:
Component: UI : Dialogs Version: FCKeditor 2.5
Keywords: SF HasPatch Cc:

Description

Most of the implementations of FCKEditor for Lotus Notes Domino completely disable the ability to upload including the discussion you link to here https://www-10.lotus.com/ldd/nd6forum.nsf/DateAllThreadedweb/09467d31ceb6c94885257084006b57db?OpenDocument.

I've implemented a version that has very light changes to your code, specifically fck_flash.js, fck_image.js and fck_link.js.

The core problem that domino has, is that when a file is uploaded, the name of the <input type="file"> must use a name, specified by the processing design element that process it.

If you could make these 3 tiny changes it would prevent us from having to muck with them and allow an unmodified FCKEditor install to work fully functional with Domino.

in fck_flash.js near

if ( FCKConfig.FlashUpload )
GetE('frmUpload').action =
FCKConfig.FlashUploadURL ;

Add also:

if(FCKConfig.FlashUploadName)
GetE
("txtUploadFile").name=FCKConfig.FlashUploadName;

in fck_image.js near

if ( FCKConfig.ImageUpload )
GetE('frmUpload').action =
FCKConfig.ImageUploadURL ;

Add also:

if(FCKConfig.ImageUploadName)
GetE
("txtUploadFile").name=FCKConfig.ImageUploadName;

in fck_link.js near

if ( FCKConfig.LinkUpload )
GetE('frmUpload').action =
FCKConfig.LinkUploadURL ;

Add also:

if(FCKConfig.LinkUploadName)
GetE
("txtUploadFile").name=FCKConfig.LinkUploadName;

I've blogged about it here.

http://www.dwightwilbanks.org/dwightwilbanks/blog.nsf/d6plinks/SERR-6KEBTH

As you can see, the impact is very light, on everyone else, but, significant to us.


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

Attachments (1)

904.patch (1.4 KB) - added by Artur Formella 16 years ago.

Download all attachments as: .zip

Change History (5)

comment:1 Changed 17 years ago by Martin Kou

Reporter: changed from Martin Kou to dwightwilbanks@…

Changed 16 years ago by Artur Formella

Attachment: 904.patch added

comment:2 Changed 16 years ago by Artur Formella

Component: GeneralUI : Dialogs
Keywords: Confirmed HasPatch added

Patch contains all changes

comment:3 Changed 13 years ago by Wiktor Walc

Version: FCKeditor 2.5

comment:4 Changed 11 years ago by Jakub Ś

Resolution: wontfix
Status: confirmedclosed

Patch is for not supported FCKeditor (there is no patch for CKEditor attached) so this issue can be closed as expired.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy