2498. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/2/2018 11:58:19 AM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

2498.1 Files compared

# Location File Last Modified
1 Tue Jan 2 16:58:19 2018 UTC
2 HTRE_P2.zip\src.zip\output\IHTA OLH Files.zip\ihta_admin.zip\main.zip whver.js Thu Aug 4 14:06:30 2016 UTC

2498.2 Comparison summary

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

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

2498.4 Active regular expressions

No regular expressions were active.

2498.5 Comparison detail

        1   //      We bHelp 5.10 .006
        2   var gbNav= false;
        3   var gbNav6 =false;
        4   var gbNav6 1=false;
        5   var gbNav7 =false;
        6   var gbNav4 =false;
        7   var gbIE4= false;
        8   var gbIE=f alse;
        9   var gbIE5= false;
        10   var gbIE55 =false;
        11   var gbOper a6=false;
        12   var gbOper a7=false;
        13   var gbKonq ueror3=fal se;
        14   var gbSafa ri3=false;
        15  
        16   var gAgent =navigator .userAgent .toLowerCa se();
        17   var gbMac= (gAgent.in dexOf("mac ")!=-1);
        18   var gbSunO S=(gAgent. indexOf("s unos")!=-1 );
        19   var gbUnix OS=(gAgent .indexOf(" linux")!=- 1) || (gAg ent.indexO f("unix")! =-1);
        20   var gbOper a=(gAgent. indexOf("o pera")!=-1 );
        21   var gbKonq ueror=(gAg ent.indexO f("konquer or")!= -1) ;
        22   var gbSafa ri=(gAgent .indexOf(" safari")!=  -1);
        23   var gbWind ows=((gAge nt.indexOf ('win')!=  -1)||(gAge nt.indexOf ('16bit')! = -1));
        24   var gbMozi lla=((gAge nt.indexOf ('gecko')! =-1) && (g Agent.inde xOf('netsc ape')==-1) );
        25   var gbAIR= (gAgent.in dexOf('ado beair')!=- 1);
        26   var gbChro me = (gAge nt.indexOf ('chrome') !=-1);
        27   var gbAIRS SL= false  ;
        28  
        29   var gVersi on=navigat or.appVers ion.toLowe rCase();
        30  
        31   var gnVerM ajor=parse Int(gVersi on);
        32   var gnVerM inor=parse Float(gVer sion);
        33  
        34   if(!gbOper a&&!gbKonq ueror&&!gb Safari) //  opera can  mimic IE  or Netscap e by setti ngs.
        35   {
        36           gb IE=(naviga tor.appNam e.indexOf( "Microsoft ")!=-1);
        37           gb Nav=(gAgen t.indexOf( 'mozilla') !=-1) && ( (gAgent.in dexOf('spo ofer')==-1 ) && (gAge nt.indexOf ('compatib le')==-1)) ;
        38           if (gnVerMajo r>=4)
        39           {
        40                    if(n avigator.a ppName=="N etscape")
        41                    {
        42                             gbNav4 =true;
        43                             if(gnV erMajor>=5 )
        44                                      gbNav6=t rue;
        45                    }
        46                    gbIE 4=(navigat or.appName .indexOf(" Microsoft" )!=-1);
        47           }
        48           if (gbNav6)
        49           {
        50                    var  nPos=gAgen t.indexOf( "gecko");
        51                    if(n Pos!=-1)
        52                    {
        53                             var nP os2=gAgent .indexOf(" /", nPos);
        54                             if(nPo s2!=-1)
        55                             {
        56                                      var nVer sion=parse Float(gAge nt.substri ng(nPos2+1 ));
        57                                      if(nVers ion>=20010 726)
        58                                      {
        59                                               gbNav61=tr ue;
        60                                               if (nVersi on>=200208 23)
        61                                                       gb Nav7=true;
        62                                      }
        63                             }
        64                    }
        65           }e lse if(gbI E4)
        66           {
        67                    var  nPos=gAgen t.indexOf( "msie");
        68                    if(n Pos!=-1)
        69                    {
        70                             var nV ersion=par seFloat(gA gent.subst ring(nPos+ 5));
        71                             if(nVe rsion>=5)
        72                             {
        73                                      gbIE5=tr ue;
        74                                      if(nVers ion>=5.5)
        75                                               gbIE55=tru e;
        76                             }
        77                    }
        78           }
        79   }
        80   else if (g bOpera)
        81   {
        82           va r nPos = g Agent.inde xOf("opera ");
        83           if (nPos!=-1)
        84           {
        85                    var  nVersion=p arseFloat( gAgent.sub string(nPo s+6));
        86                    if(n Version>=6 )
        87                    {
        88                             gbOper a6=true;
        89                             if(nVe rsion>=7)
        90                                      gbOpera7 =true;
        91                    }
        92           }
        93   }
        94   else if (g bKonqueror )
        95   {
        96           va r nPos = g Agent.inde xOf("konqu eror");
        97           if (nPos!=-1)
        98           {
        99                    var  nVersion =  parseFloa t(gAgent.s ubstring(n Pos+10));
        100                    if ( nVersion > = 3)
        101                    {
        102                             gbKonq ueror3=tru e;
        103                    }
        104           }
        105   }
        106   if(gbSafar i)
        107   {
        108           va r nPos = g Agent.inde xOf("versi on/");
        109           if (nPos!=-1)
        110           {
        111                    var  nVersion =  parseFloa t(gAgent.s ubstring(n Pos+8,nPos +9));
        112                    if ( nVersion > = 3)
        113                    {
        114                             gbSafa ri3=true;
        115                    }
        116           }
        117   }
        118   if(gbChrom e)
        119   {
        120           // for the ti me being u se same te sts as saf ari
        121           gb Safari = t rue ;
        122           gb Safari3=tr ue;
        123   }
        124   var gbWhVe r=true;