505. File Comparison Report

Produced on Mon May 12 13:06:15 2008 UTC. This report uses XHTML and CSS2, and is best viewed with a reasonably standards compliant browser such as the latest version of Firefox or Internet Explorer. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

505.1 Files compared

# Location File Last Modified
1 Dolphin-v.6.0.5\plugins\tiny_mce\plugins\paste\jscripts pastetext.js Thu Sep 20 08:59:16 2007 UTC
2 Mon May 12 13:06:15 2008 UTC

505.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 0 0
Removed 1 38

505.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

505.4 Active regular expressions

No regular expressions were active.

505.5 Comparison detail

1   function s aveContent () {    
2       if (do cument.for ms[0].html Source.val ue == '')  {    
3           ti nyMCEPopup .close();    
4           re turn false ;    
5       }    
6      
7       tinyMC EPopup.exe cCommand(' mcePasteTe xt', false , {    
8           ht ml : docum ent.forms[ 0].htmlSou rce.value,    
9           li nebreaks :  document. forms[0].l inebreaks. checked    
10       });    
11      
12       tinyMC EPopup.clo se();    
13   }    
14      
15   function o nLoadInit( ) {    
16       tinyMC EPopup.res izeToInner Size();    
17      
18       // Rem ove Gecko  spellcheck ing    
19       if (ti nyMCE.isGe cko)    
20           do cument.bod y.spellche ck = tinyM CE.getPara m("gecko_s pellcheck" );    
21      
22       resize Inputs();    
23   }    
24      
25   var wHeigh t=0, wWidt h=0, owHei ght=0, owW idth=0;    
26      
27   function r esizeInput s() {    
28       if (!t inyMCE.isM SIE) {    
29           wH eight = se lf.innerHe ight-80;    
30           wW idth = sel f.innerWid th-17;    
31       } else  {    
32           wH eight = do cument.bod y.clientHe ight-80;    
33           wW idth = doc ument.body .clientWid th-17;    
34       }    
35      
36       docume nt.forms[0 ].htmlSour ce.style.h eight = Ma th.abs(wHe ight) + 'p x';    
37       docume nt.forms[0 ].htmlSour ce.style.w idth  = Ma th.abs(wWi dth) + 'px ';    
38   }