483. File Comparison Report

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

483.1 Files compared

# Location File Last Modified
1 Mon May 12 13:06:10 2008 UTC
2 Dolphin-v.6.1.0\plugins\tiny_mce\plugins\media\js embed.js Thu Mar 27 13:53:24 2008 UTC

483.2 Comparison summary

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

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

483.4 Active regular expressions

No regular expressions were active.

483.5 Comparison detail

    1   /**
    2    * This sc ript conta ins embed  functions  for common  plugins.  This scrip ts are com plety free  to use fo r any purp ose.
    3    */
    4  
    5   function w riteFlash( p) {
    6       writeE mbed(
    7           'D 27CDB6E-AE 6D-11cf-96 B8-4445535 40000',
    8           'h ttp://down load.macro media.com/ pub/shockw ave/cabs/f lash/swfla sh.cab#ver sion=6,0,4 0,0',
    9           'a pplication /x-shockwa ve-flash',
    10           p
    11       );
    12   }
    13  
    14   function w riteShockW ave(p) {
    15       writeE mbed(
    16       '166B1 BCA-3F9C-1 1CF-8075-4 4455354000 0',
    17       'http: //download .macromedi a.com/pub/ shockwave/ cabs/direc tor/sw.cab #version=8 ,5,1,0',
    18       'appli cation/x-d irector',
    19           p
    20       );
    21   }
    22  
    23   function w riteQuickT ime(p) {
    24       writeE mbed(
    25           '0 2BF25D5-8C 17-4B23-BC 80-D3488AB DDC6B',
    26           'h ttp://www. apple.com/ qtactivex/ qtplugin.c ab#version =6,0,2,0',
    27           'v ideo/quick time',
    28           p
    29       );
    30   }
    31  
    32   function w riteRealMe dia(p) {
    33       writeE mbed(
    34           'C FCDAA03-8B E4-11cf-B8 4B-0020AFB BCCFA',
    35           'h ttp://down load.macro media.com/ pub/shockw ave/cabs/f lash/swfla sh.cab#ver sion=6,0,4 0,0',
    36           'a udio/x-pn- realaudio- plugin',
    37           p
    38       );
    39   }
    40  
    41   function w riteWindow sMedia(p)  {
    42       p.url  = p.src;
    43       writeE mbed(
    44           '6 BF52A52-39 4A-11D3-B1 53-00C04F7 9FAA6',
    45           'h ttp://acti vex.micros oft.com/ac tivex/cont rols/mplay er/en/nsmp 2inf.cab#V ersion=5,1 ,52,701',
    46           'a pplication /x-mplayer 2',
    47           p
    48       );
    49   }
    50  
    51   function w riteEmbed( cls, cb, m t, p) {
    52       var h  = '', n;
    53  
    54       h += ' <object cl assid="cls id:' + cls  + '" code base="' +  cb + '"';
    55       h += t ypeof(p.id ) != "unde fined" ? ' id="' + p. id + '"' :  '';
    56       h += t ypeof(p.na me) != "un defined" ?  'name="'  + p.name +  '"' : '';
    57       h += t ypeof(p.wi dth) != "u ndefined"  ? 'width=" ' + p.widt h + '"' :  '';
    58       h += t ypeof(p.he ight) != " undefined"  ? 'height ="' + p.he ight + '"'  : '';
    59       h += t ypeof(p.al ign) != "u ndefined"  ? 'align=" ' + p.alig n + '"' :  '';
    60       h += ' >';
    61  
    62       for (n  in p)
    63           h  += '<param  name="' +  n + '" va lue="' + p [n] + '">' ;
    64  
    65       h += ' <embed typ e="' + mt  + '"';
    66  
    67       for (n  in p)
    68           h  += n + '=" ' + p[n] +  '" ';
    69  
    70       h += ' ></embed>< /object>';
    71  
    72       docume nt.write(h );
    73   }