Opened 18 years ago
Closed 12 years ago
#904 closed New Feature (wontfix)
Lotus Notes Domino Connector upload parameter
Reported by: | 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)
Change History (5)
comment:1 Changed 18 years ago by
Reporter: | changed from Martin Kou to dwightwilbanks@… |
---|
Changed 16 years ago by
comment:2 Changed 16 years ago by
Component: | General → UI : Dialogs |
---|---|
Keywords: | Confirmed HasPatch added |
comment:3 Changed 14 years ago by
Version: | → FCKeditor 2.5 |
---|
comment:4 Changed 12 years ago by
Resolution: | → wontfix |
---|---|
Status: | confirmed → closed |
Patch is for not supported FCKeditor (there is no patch for CKEditor attached) so this issue can be closed as expired.
Patch contains all changes