636. File Comparison Report

Produced on Mon May 12 13:06:30 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.

636.1 Files compared

# Location File Last Modified
1 Dolphin-v.6.0.5\plugins\tiny_mce\themes\advanced\jscripts source_editor.js Thu Sep 20 08:59:20 2007 UTC
2 Mon May 12 13:06:30 2008 UTC

636.2 Comparison summary

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

636.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

636.4 Active regular expressions

No regular expressions were active.

636.5 Comparison detail

1   function s aveContent () {    
2       tinyMC E.setConte nt(documen t.getEleme ntById('ht mlSource') .value);    
3       tinyMC E.closeWin dow(window );    
4   }    
5      
6   function o nLoadInit( ) {    
7       tinyMC EPopup.res izeToInner Size();    
8      
9       // Rem ove Gecko  spellcheck ing    
10       if (ti nyMCE.isGe cko)    
11           do cument.bod y.spellche ck = tinyM CE.getPara m("gecko_s pellcheck" );    
12      
13       docume nt.getElem entById('h tmlSource' ).value =  tinyMCE.ge tContent(t inyMCE.get WindowArg( 'editor_id '));    
14      
15       resize Inputs();    
16      
17       if (ti nyMCE.getP aram("them e_advanced _source_ed itor_wrap" , true)) {    
18           se tWrap('sof t');    
19           do cument.get ElementByI d('wraped' ).checked  = true;    
20       }    
21   }    
22      
23   function s etWrap(val ) {    
24       var s  = document .getElemen tById('htm lSource');    
25      
26       s.wrap  = val;    
27      
28       if (ti nyMCE.isGe cko || tin yMCE.isOpe ra) {    
29           va r v = s.va lue;    
30           va r n = s.cl oneNode(fa lse);    
31           n. setAttribu te("wrap",  val);    
32           s. parentNode .replaceCh ild(n, s);    
33           n. value = v;    
34       }    
35   }    
36      
37   function t oggleWordW rap(elm) {    
38       if (el m.checked)    
39           se tWrap('sof t');    
40       else    
41           se tWrap('off ');    
42   }    
43      
44   var wHeigh t=0, wWidt h=0, owHei ght=0, owW idth=0;    
45      
46   function r esizeInput s() {    
47       var el  = documen t.getEleme ntById('ht mlSource') ;    
48      
49       if (!t inyMCE.isM SIE) {    
50            w Height = s elf.innerH eight - 60 ;    
51            w Width = se lf.innerWi dth - 16;    
52       } else  {    
53            w Height = d ocument.bo dy.clientH eight - 60 ;    
54            w Width = do cument.bod y.clientWi dth - 16;    
55       }    
56      
57       el.sty le.height  = Math.abs (wHeight)  + 'px';    
58       el.sty le.width   = Math.abs (wWidth) +  'px';    
59   }