Changeset 2108
- Timestamp:
- 2008-06-23 12:00:43 (21 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 5 modified
-
editor/filemanager/browser/default/browser.html (modified) (1 diff)
-
editor/filemanager/browser/default/frmactualfolder.html (modified) (1 diff)
-
editor/filemanager/browser/default/js/common.js (modified) (1 diff)
-
editor/filemanager/browser/default/js/fckxml.js (modified) (2 diffs)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/filemanager/browser/default/browser.html
r2062 r2108 44 44 } 45 45 catch( e ) 46 { 47 break ; 48 } 46 {} 49 47 50 48 // Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ... -
FCKeditor/trunk/editor/filemanager/browser/default/frmactualfolder.html
r2062 r2108 42 42 } 43 43 catch( e ) 44 { 45 break ; 46 } 44 {} 47 45 48 46 // Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ... -
FCKeditor/trunk/editor/filemanager/browser/default/js/common.js
r2062 r2108 37 37 } 38 38 catch( e ) 39 { 40 break ; 41 } 39 {} 42 40 43 41 // Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ... -
FCKeditor/trunk/editor/filemanager/browser/default/js/fckxml.js
r1805 r2108 62 62 if ( oXmlHttp.readyState == 4 ) 63 63 { 64 if ( ( oXmlHttp.status != 200 && oXmlHttp.status != 304 ) || oXmlHttp.responseXML == null || oXmlHttp.responseXML.firstChild == null ) 64 var oXml ; 65 try 66 { 67 // this is the same test for an FF2 bug as in fckxml_gecko.js 68 // but we've moved the responseXML assignment into the try{} 69 // so we don't even have to check the return status codes. 70 var test = oXmlHttp.responseXML.firstChild ; 71 oXml = oXmlHttp.responseXML ; 72 } 73 catch ( e ) 74 { 75 try 76 { 77 oXml = (new DOMParser()).parseFromString( oXmlHttp.responseText, 'text/xml' ) ; 78 } 79 catch ( e ) {} 80 } 81 82 if ( !oXml || !oXml.firstChild || oXml.firstChild.nodeName == 'parsererror' ) 65 83 { 66 84 alert( 'The server didn\'t send back a proper XML response. Please contact your system administrator.\n\n' + … … 71 89 } 72 90 73 oFCKXml.DOMDocument = oXml Http.responseXML;91 oFCKXml.DOMDocument = oXml ; 74 92 asyncFunctionPointer( oFCKXml ) ; 75 93 } -
FCKeditor/trunk/_whatsnew.html
r2107 r2108 75 75 key will now have the default browser behavior if TabSpaces=0. It will move the 76 76 focus out of the editor (expect on Safari).</li> 77 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2296">#2296</a>] Fixed permission denied error 78 on clicking on files in the file browser.</li> 77 79 </ul> 78 80 <p>