﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
904	Lotus Notes Domino Connector upload parameter	dwightwilbanks@…		"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:[[BR]]
http://sourceforge.net/tracker/index.php?func=detail&aid=1503078&group_id=75348&atid=543656"	New Feature	closed	Normal		UI : Dialogs	FCKeditor 2.5	wontfix	SF HasPatch	
