Changeset 2062 for FCKeditor/trunk
- Timestamp:
- 06/12/08 12:27:51 (5 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 11 edited
-
_dev/css_compression.txt (modified) (1 diff)
-
_samples/sample.css (modified) (3 diffs)
-
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/connectors/asp/io.asp (modified) (1 diff)
-
editor/filemanager/connectors/cfm/cf5_upload.cfm (modified) (1 diff)
-
editor/filemanager/connectors/cfm/cf_io.cfm (modified) (1 diff)
-
editor/filemanager/connectors/lasso/upload.lasso (modified) (1 diff)
-
editor/filemanager/connectors/perl/commands.pl (modified) (1 diff)
-
editor/filemanager/connectors/py/fckoutput.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_dev/css_compression.txt
r2056 r2062 25 25 1. Open the CSS compression tool page: 26 26 http://iceyboard.no-ip.org/projects/css_compressor 27 27 28 28 2. Paste the full CSS data in the "CSS" text box. 29 29 30 30 3. Leave all default options, expect in the "Output options" box, unchecking 31 31 the following items: 32 32 33 33 - Show statistics 34 34 - Output in colour -
FCKeditor/trunk/_samples/sample.css
r2039 r2062 41 41 } 42 42 43 #outputSample 43 #outputSample 44 44 { 45 45 table-layout:fixed; … … 55 55 white-space: -o-pre-wrap; /* Opera 7 */ 56 56 white-space: pre-wrap; /* CSS 2.1 */ 57 white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */ 57 white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */ 58 58 word-wrap: break-word; /* IE */ 59 59 } 60 60 61 #outputSample thead th 61 #outputSample thead th 62 62 { 63 color: #dddddd; 63 color: #dddddd; 64 64 background-color: #999999; 65 65 padding: 4px; … … 67 67 } 68 68 69 #outputSample tbody th 69 #outputSample tbody th 70 70 { 71 71 vertical-align: top; -
FCKeditor/trunk/editor/filemanager/browser/default/browser.html
r2059 r2062 43 43 break ; 44 44 } 45 catch( e ) 45 catch( e ) 46 46 { 47 47 break ; -
FCKeditor/trunk/editor/filemanager/browser/default/frmactualfolder.html
r2059 r2062 41 41 break ; 42 42 } 43 catch( e ) 43 catch( e ) 44 44 { 45 45 break ; -
FCKeditor/trunk/editor/filemanager/browser/default/js/common.js
r2059 r2062 36 36 break ; 37 37 } 38 catch( e ) 38 catch( e ) 39 39 { 40 40 break ; -
FCKeditor/trunk/editor/filemanager/connectors/asp/io.asp
r2059 r2062 225 225 Response.Clear 226 226 Response.Write "<script type=""text/javascript"">" 227 ' Minified version of the document.domain automatic fix script (#1919). 227 ' Minified version of the document.domain automatic fix script (#1919). 228 228 ' The original script can be found at _dev/domain_fix_template.js 229 229 Response.Write "(function(){var d=document.domain;while (true){try{var A=window.parent.document.domain;break;}catch(e) {};d=d.replace(/.*?(?:\.|$)/,'');if (d.length==0) break;try{document.domain=d;}catch (e){break;}}})();" -
FCKeditor/trunk/editor/filemanager/connectors/cfm/cf5_upload.cfm
r2059 r2062 48 48 { 49 49 WriteOutput('<script type="text/javascript">'); 50 // Minified version of the document.domain automatic fix script (#1919). 50 // Minified version of the document.domain automatic fix script (#1919). 51 51 // The original script can be found at _dev/domain_fix_template.js 52 52 WriteOutput("(function(){var d=document.domain;while (true){try{var A=window.parent.document.domain;break;}catch(e) {};d=d.replace(/.*?(?:\.|$)/,'');if (d.length==0) break;try{document.domain=d;}catch (e){break;}}})();"); -
FCKeditor/trunk/editor/filemanager/connectors/cfm/cf_io.cfm
r2059 r2062 266 266 <cfargument name="customMsg" required="false" type="String" default=""> 267 267 268 <!--- Minified version of the document.domain automatic fix script (#1919). 268 <!--- Minified version of the document.domain automatic fix script (#1919). 269 269 The original script can be found at _dev/domain_fix_template.js ---> 270 270 <cfoutput> -
FCKeditor/trunk/editor/filemanager/connectors/lasso/upload.lasso
r2059 r2062 75 75 -description='Sets the HTML response for the FCKEditor Quick Upload feature.' 76 76 ); 77 77 78 78 $__html_reply__ = '<script type="text/javascript">'; 79 80 // Minified version of the document.domain automatic fix script (#1919). 79 80 // Minified version of the document.domain automatic fix script (#1919). 81 81 // The original script can be found at _dev/domain_fix_template.js 82 82 // Note: in Lasso replace \ with \\ 83 83 $__html_reply__ = $__html_reply__ + "(function(){var d=document.domain;while (true){try{var A=window.parent.document.domain;break;}catch(e) {};d=d.replace(/.*?(?:\\.|$)/,'');if (d.length==0) break;try{document.domain=d;}catch (e){break;}}})();"; 84 84 85 85 $__html_reply__ = $__html_reply__ + '\ 86 86 window.parent.OnUploadCompleted(' + #errorNumber + ',"' -
FCKeditor/trunk/editor/filemanager/connectors/perl/commands.pl
r2059 r2062 170 170 local($sErrorNumber, $sFileUrl, $sFileName, $customMsg) = @_; 171 171 172 # Minified version of the document.domain automatic fix script (#1919). 172 # Minified version of the document.domain automatic fix script (#1919). 173 173 # The original script can be found at _dev/domain_fix_template.js 174 174 # Note: in Perl replace \ with \\ and $ with \$ -
FCKeditor/trunk/editor/filemanager/connectors/py/fckoutput.py
r2059 r2062 102 102 self.setHttpHeaders("text/html") 103 103 "This is the function that sends the results of the uploading process" 104 104 105 105 "Minified version of the document.domain automatic fix script (#1919)." 106 106 "The original script can be found at _dev/domain_fix_template.js" 107 return """<script type="text/javascript"> 107 return """<script type="text/javascript"> 108 108 (function(){var d=document.domain;while (true){try{var A=window.parent.document.domain;break;}catch(e) {};d=d.replace(/.*?(?:\.|$)/,'');if (d.length==0) break;try{document.domain=d;}catch (e){break;}}})(); 109 109
Note: See TracChangeset
for help on using the changeset viewer.
