Changeset 2537
- Timestamp:
- 10/09/08 23:17:06 (5 years ago)
- Location:
- FCKeditor.Java/branches/2.4.x/java-core/src/main/java/net/fckeditor
- Files:
-
- 2 edited
-
FCKeditor.java (modified) (3 diffs, 1 prop)
-
FCKeditorConfig.java (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/branches/2.4.x/java-core/src/main/java/net/fckeditor/FCKeditor.java
-
Property
svn:mergeinfo
set to
/FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java merged eligible
r2151 r2537 202 202 * 2.4 StringUtils#replaceEach(String, String[], String[]) 203 203 */ 204 str = str.replaceAll("&", "& #38;");205 str = str.replaceAll("<", "& #60;");206 str = str.replaceAll(">", "& #62;");207 str = str.replaceAll("\"", "& #34;");204 str = str.replaceAll("&", "&"); 205 str = str.replaceAll("<", "<"); 206 str = str.replaceAll(">", ">"); 207 str = str.replaceAll("\"", """); 208 208 str = str.replaceAll("'", "'"); 209 209 return str; … … 251 251 instanceName); 252 252 if (Utils.isNotEmpty(toolbarSet)) 253 sLink += "& Toolbar=".concat(toolbarSet);253 sLink += "&Toolbar=".concat(toolbarSet); 254 254 XHtmlTagTool iframeTag = new XHtmlTagTool("iframe", XHtmlTagTool.SPACE); 255 255 iframeTag.addAttribute("id", instanceName.concat("___Frame")); … … 257 257 iframeTag.addAttribute("width", width); 258 258 iframeTag.addAttribute("height", height); 259 iframeTag.addAttribute("frameborder", " no");259 iframeTag.addAttribute("frameborder", "0"); 260 260 iframeTag.addAttribute("scrolling", "no"); 261 261 strEditor.append(iframeTag); -
Property
svn:mergeinfo
set to
-
FCKeditor.Java/branches/2.4.x/java-core/src/main/java/net/fckeditor/FCKeditorConfig.java
-
Property
svn:mergeinfo
set to
/FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditorConfig.java merged eligible
r2151 r2537 62 62 for (Map.Entry<String, String> entry : this.entrySet()) { 63 63 if (Utils.isNotEmpty(entry.getValue())) { 64 osParams.append("& ");64 osParams.append("&"); 65 65 osParams.append(URLEncoder.encode(entry.getKey(),"UTF-8")); 66 66 osParams.append("="); … … 74 74 75 75 if (osParams.length() > 0) 76 osParams.delete CharAt(0);76 osParams.delete(0,5); 77 77 return osParams.toString(); 78 78 } -
Property
svn:mergeinfo
set to
Note: See TracChangeset
for help on using the changeset viewer.
