Package Name | Comment |
com.fredck.FCKeditor |
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
Core objects to manage the FCKeditor text input form.
Java Integration Module 2.3.
Related Documentation
For overviews, tutorials, examples, guides, and tool documentation, please see:
|
com.fredck.FCKeditor.connector |
Connector used by the FCKeditor to list and create resources on the server.
Package Specification
This servlet is access directly from the file browser in the FCKeditor.
To make everything work correctly you have to add the following piece of code in your application's web.xml
<servlet>
<servlet-name>Connector</servlet-name>
<servlet-class>com.fredck.FCKeditor.connector.ConnectorServlet</servlet-class>
<init-param>
<param-name>baseDir</param-name>
<param-value>/UserFiles/</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Connector</servlet-name>
<url-pattern>/editor/filemanager/browser/default/connectors/jsp/connector</url-pattern>
</servlet-mapping>
And put in the fckconfig.js the following line:
FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/jsp/connector" ;
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector" ;
FCKConfig.FlashBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/jsp/connector" ;
Also, since the servlet manage a file upload using the Jakarta Common fileupload library, you need to put in your WEB-INF/lib/ the commons-fileupload.jar .
Related Documentation
For overviews, tutorials, examples, guides, and tool documentation, please see:
- _sample/jsp directory for example of how to implement FCKEditor in your application
|
com.fredck.FCKeditor.tags |
JSP Tag to access and modify the FCKeditor objects.
Package Specification
This taglibrary is compliant to the taglib 1.1 specification.
To use it put the FCKeditor.jar inside the WEB-INF/lib dir and FCKeditor.tld inside the WEB-INF directory of your website.
Put the following declaration in each page that use the tags:
<%@ taglib uri="http://fckeditor.net/tags-fckeditor" prefix="FCK" %>
Related Documentation
For overviews, tutorials, examples, guides, and tool documentation, please see:
- _sample/jsp directory for example of how to implement FCKEditor in your application
|
com.fredck.FCKeditor.uploader |
Uplader used by the FCKeditor to send files to the server without using the FileBrowser.
Package Specification
This servlet is access from the file, image, flash dialogs in FCKeditor.
To make everything work correctly you have to add the following piece of code in your application's web.xml
<servlet>
<servlet-name>SimpleUploader</servlet-name>
<servlet-class>com.fredck.FCKeditor.uploader.SimpleUploaderServlet</servlet-class>
<init-param>
<param-name>baseDir</param-name>
<param-value>/UserFiles/</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>enabled</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>AllowedExtensionsFile</param-name>
<param-value></param-value>
</init-param>
<init-param>
<param-name>DeniedExtensionsFile</param-name>
<param-value>php|php3|php5|phtml|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|dll|reg|cgi</param-value>
</init-param>
<init-param>
<param-name>AllowedExtensionsImage</param-name>
<param-value>jpg|gif|jpeg|png|bmp</param-value>
</init-param>
<init-param>
<param-name>DeniedExtensionsImage</param-name>
<param-value></param-value>
</init-param>
<init-param>
<param-name>AllowedExtensionsFlash</param-name>
<param-value>swf|fla</param-value>
</init-param>
<init-param>
<param-name>DeniedExtensionsFlash</param-name>
<param-value></param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SimpleUploader</servlet-name>
<url-pattern>/editor/filemanager/upload/simpleuploader</url-pattern>
</servlet-mapping>
And put in the fckconfig.js the following line:
FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=File' ;
FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Flash' ;
FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Image' ;
Also, since the servlet manage a file upload using the Jakarta Common fileupload library, you need to put in your WEB-INF/lib/ the commons-fileupload.jar .
Related Documentation
For overviews, tutorials, examples, guides, and tool documentation, please see:
- _sample/jsp directory for example of how to implement FCKEditor in your application
|
com.Yasna.codeviewer | |
com.Yasna.forum | |
com.Yasna.forum.database | |
com.Yasna.forum.Exceptions | |
com.Yasna.forum.filter | |
com.Yasna.forum.locale | |
com.Yasna.forum.tags | |
com.Yasna.forum.Tasks | |
com.Yasna.forum.util | |
com.Yasna.forum.util.admin | |
com.Yasna.forum.util.tree | |
com.Yasna.servlet | |
com.Yasna.util | |