Show
Ignore:
Timestamp:
2008-07-03 00:03:15 (6 months ago)
Author:
mosipov
Message:

JavaDoc issues

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor.Java/trunk/java-core/src/main/javadoc/net/fckeditor/connector/package.html

    r1881 r2151  
    2727Connector used by the FCKeditor to list and create resources on the server. 
    2828 
    29 <h2>Package Specification</h2> 
    30  
    31 This servlet is access directly from the file browser in the FCKeditor.<br> 
    32 To make everything work correctly you have to add the following piece of code in your application's web.xml 
    33 <br> 
    34 <pre> 
    35         &lt;servlet&gt; 
    36                 &lt;servlet-name&gt;Connector&lt;/servlet-name&gt; 
    37                 &lt;servlet-class&gt;net.fckeditor.connector.ConnectorServlet&lt;/servlet-class&gt; 
    38                 &lt;init-param&gt; 
    39                         &lt;param-name&gt;baseDir&lt;/param-name&gt; 
    40                         &lt;param-value&gt;/UserFiles/&lt;/param-value&gt; 
    41                 &lt;/init-param&gt; 
    42                 &lt;init-param&gt; 
    43                         &lt;param-name&gt;debug&lt;/param-name&gt; 
    44                         &lt;param-value&gt;false&lt;/param-value&gt; 
    45                 &lt;/init-param&gt; 
    46                 &lt;load-on-startup&gt;1&lt;/load-on-startup&gt; 
    47         &lt;/servlet&gt; 
    48  
    49         &lt;servlet-mapping&gt; 
    50                 &lt;servlet-name&gt;Connector&lt;/servlet-name&gt; 
    51                 &lt;url-pattern&gt;/editor/filemanager/browser/default/connectors/jsp/connector&lt;/url-pattern&gt; 
    52         &lt;/servlet-mapping&gt; 
    53 </pre> 
    54 <br> 
    55 And put in the fckconfig.js the following line: 
    56 <pre> 
    57 FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/jsp/connector" ; 
    58 FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector" ; 
    59 FCKConfig.FlashBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/jsp/connector" ; 
    60 </pre> 
    61 Also, since the servlet manage a file upload using the Jakarta Common fileupload library, you need to put in your <code>WEB-INF/lib/</code> the <code>commons-fileupload.jar</code>. 
    6229<h2>Related Documentation</h2> 
    6330 
    6431For overviews, tutorials, examples, guides, and tool documentation, please see: 
    6532<ul> 
    66   <li>_sample/jsp directory for example of how to implement FCKeditor in your application 
     33  <li>The official FCKeditor.Java integration <a href="http://java.fckeditor.net">website</a>. 
     34  <li>The example web application.  
    6735</ul> 
    6836