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

504.1 Files compared

# Location File Last Modified
1 Mon May 12 13:06:15 2008 UTC
2 Dolphin-v.6.1.0\plugins\tiny_mce\plugins\paste\js pasteword.js Thu Mar 27 13:53:26 2008 UTC

504.2 Comparison summary

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

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

504.4 Active regular expressions

No regular expressions were active.

504.5 Comparison detail

    1   tinyMCEPop up.require LangPack() ;
    2  
    3   function s aveContent () {
    4       var ht ml = docum ent.getEle mentById(" frmData"). contentWin dow.docume nt.body.in nerHTML;
    5  
    6       if (ht ml == ''){
    7           ti nyMCEPopup .close();
    8           re turn false ;
    9       }
    10  
    11       tinyMC EPopup.exe cCommand(' mcePasteWo rd', false , html);
    12       tinyMC EPopup.clo se();
    13   }
    14  
    15   function o nLoadInit( ) {
    16       tinyMC EPopup.res izeToInner Size();
    17  
    18       // Fix  for endle ss reloadi ng in FF
    19       window .setTimeou t(createIF rame, 10);
    20   }
    21  
    22   function c reateIFram e() {
    23       docume nt.getElem entById('i frameconta iner').inn erHTML = ' <iframe id ="frmData"  name="frm Data" clas s="sourceI frame" src ="blank.ht m" height= "280" widt h="400" fr ameborder= "0" style= "backgroun d-color:#F FFFFF; wid th:100%;"  dir="ltr"  wrap="soft "></iframe >';
    24   }
    25  
    26   var wHeigh t=0, wWidt h=0, owHei ght=0, owW idth=0;
    27  
    28   function i nitIframe( doc) {
    29       var di r = tinyMC EPopup.edi tor.settin gs.directi onality;
    30  
    31       doc.bo dy.dir = d ir;
    32  
    33       // Rem ove Gecko  spellcheck ing
    34       if (ti nymce.isGe cko)
    35           do c.body.spe llcheck =  tinyMCEPop up.getPara m("gecko_s pellcheck" );
    36  
    37       resize Inputs();
    38   }
    39  
    40   function r esizeInput s() {
    41       if (!t inymce.isI E) {
    42           wH eight = se lf.innerHe ight - 80;
    43           wW idth = sel f.innerWid th - 18;
    44       } else  {
    45           wH eight = do cument.bod y.clientHe ight - 80;
    46           wW idth = doc ument.body .clientWid th - 18;
    47       }
    48  
    49       var el m = docume nt.getElem entById('f rmData');
    50       if (el m) {
    51           el m.style.he ight = Mat h.abs(wHei ght) + 'px ';
    52           el m.style.wi dth  = Mat h.abs(wWid th) + 'px' ;
    53       }
    54   }
    55  
    56   tinyMCEPop up.onInit. add(onLoad Init);