Changes between Version 2 and Version 3 of ServerSideStatus
- Timestamp:
- Feb 1, 2007, 11:20:58 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ServerSideStatus
v2 v3 1 1 = Server Side Integration Status = 2 2 3 This page aims to document the status of all server side implementations available in the FCKeditor. The !JavaScript implantation is also included. In this way all implementation will have the same expected quality level, simplifying also the introduction of new features in all languages. 3 4 … … 7 8 * '''File Browser Connector and Quick Uploader''': the communication system for the generic File Browser and Quick Uploader interfaces 8 9 * '''Other''': other features related to the integration 9 10 10 11 11 … … 40 40 ==== Configuration Object ==== 41 41 42 A collection or object which holds configurations set in the moment of the instance creation. For example, by calling "oFCKeditor.Config[ ‘!FullPage’] = true" in the !JavaScript integration. This object must accept Boolean, String and Integer values.42 A collection or object which holds configurations set in the moment of the instance creation. For example, by calling "oFCKeditor.Config['!FullPage'] = true" in the !JavaScript integration. This object must accept Boolean, String and Integer values. 43 43 44 44 The integration must be "smart", depending on the specific language features. For example, with ASP.Net, setting like "!CustomConfigurationsPath" can be set to something like "~/myconfig.js", where the tilde must be resolved in the server side to point to the application root. … … 68 68 ||!ForceSingleExtension || || || || || || || || X || || 69 69 ||Check Allowed Extension || || X || || || || X || || X || || 70 ||Check images || || || || || || || || || || 70 71 71 72 … … 96 97 ==== Check Allowed Extension ==== 97 98 98 This is the most important check on uploads. The file extension must be checked by type, as defined in the configuration file. The default configurations must ma ch those in the PHP configuration file.99 This is the most important check on uploads. The file extension must be checked by type, as defined in the configuration file. The default configurations must match those in the PHP configuration file. 99 100 101 ==== Check images ==== 102 103 If you get a HTML page, rename it to .jpg, for example, and load it into IE, it will open the HTML page, instead of showing an invalid image. So, for image files, a check must be done to ensure those are really images. 100 104 101 105