Opened 17 years ago
Last modified 14 years ago
#3521 closed New Feature
Should be easier to pass parameters to connector — at Version 2
| Reported by: | farmerzen | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | File Browser | Version: | FCKeditor 2.6.4 |
| Keywords: | Cc: |
Description (last modified by )
A nice to have would be an easy way to pass parameters to the connector URL, without having to worry with connector link and parameters encoding!
Change History (2)
comment:1 Changed 17 years ago by
| Component: | Server : Java → File Browser |
|---|---|
| Milestone: | FCKeditor 2.6.5 |
comment:2 Changed 17 years ago by
| Component: | File Browser → Server : Java |
|---|---|
| Description: | modified (diff) |
| Keywords: | connector parameters removed |
The javascript integration already takes care of calling encodeURIComponent to encode the parameters to the connector, so this is only an issue with the java integration that isn't providing a system to help this situation.
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=' + encodeURIComponent( FCKConfig.BasePath + 'filemanager/connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ) ;

Based on this thread.