373. File Comparison Report

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

373.1 Files compared

# Location File Last Modified
1 Dolphin-v.6.0.5\plugins\tiny_mce\plugins\advhr\jscripts rule.js Thu Sep 20 08:58:58 2007 UTC
2 Mon May 12 13:05:57 2008 UTC

373.2 Comparison summary

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

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

373.4 Active regular expressions

No regular expressions were active.

373.5 Comparison detail

1   function i nit() {    
2       tinyMC EPopup.res izeToInner Size();    
3      
4       var fo rmObj = do cument.for ms[0];    
5       formOb j.width.va lue  = tin yMCE.getWi ndowArg('w idth');    
6       formOb j.size.val ue   = tin yMCE.getWi ndowArg('s ize');    
7       formOb j.insert.v alue = tin yMCE.getLa ng('lang_'  + tinyMCE .getWindow Arg('mceDo '),'Insert ',true);    
8       if (ti nyMCE.getW indowArg(' noshade'))  {    
9           fo rmObj.nosh ade.checke d = true;    
10       }    
11       if (ti nyMCE.getW indowArg(' width').la stIndexOf( '%')!=-1)  {    
12           fo rmObj.widt h2.value =  "%";    
13           fo rmObj.widt h.value  =  formObj.w idth.value .substring (0,formObj .width.val ue.length- 1);    
14       }    
15   }    
16      
17   function i nsertHR()  {    
18       var fo rmObj = do cument.for ms[0];    
19       var wi dth   = fo rmObj.widt h.value;    
20       var si ze    = fo rmObj.size .value;    
21       var ht ml = '<hr' ;    
22       if (si ze!='' &&  size!=0) {    
23           ht ml += ' si ze="' + si ze + '"';    
24       }    
25       if (wi dth!='' &&  width!=0)  {    
26           ht ml += ' wi dth="' + w idth;    
27           if  (formObj. width2.val ue=='%') {    
28                html +=  '%';    
29           }    
30           ht ml += '"';    
31       }    
32       if (fo rmObj.nosh ade.checke d==true) {    
33           ht ml += ' no shade="nos hade"';    
34       }    
35       html + = ' />';    
36      
37       tinyMC EPopup.exe cCommand(" mceInsertC ontent", t rue, html) ;    
38       tinyMC EPopup.clo se();    
39   }    
40      
41   function c ancelActio n() {    
42       tinyMC EPopup.clo se();    
43   }