Changeset 2027
- Timestamp:
- 2008-05-29 20:10:17 (7 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/connector/ConnectorServlet.java
r1965 r2027 124 124 ResourceTypeHandler resourceType = ResourceTypeHandler.getDefaultResourceType(typeStr); 125 125 126 // TODO this is not good for accessing server-side resources 127 // suitable only for XmlResponse 126 128 String typePath = UtilsResponse.constructResponseUrl(request, resourceType, 127 currentFolderStr, false, false);129 null, false, false); 128 130 String typeDirPath = getServletContext().getRealPath(typePath); 129 131 … … 221 223 ResourceTypeHandler resourceType = ResourceTypeHandler.getDefaultResourceType(typeStr); 222 224 225 // FIXME this is not good for accessing server-side resources 226 // suitable only for XmlResponse 223 227 String typePath = UtilsResponse.constructResponseUrl(request, resourceType, 224 currentFolderStr, false, false);228 null, false, false); 225 229 String typeDirPath = getServletContext().getRealPath(typePath); 226 230