2609. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/2/2018 11:58:29 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.

2609.1 Files compared

# Location File Last Modified
1 Tue Jan 2 16:58:29 2018 UTC
2 HTRE_P2.zip\src.zip\output\IHTA OLH Files.zip\ihta_admin.zip\profile.zip whmozemu.js Wed Jul 27 15:29:36 2016 UTC

2609.2 Comparison summary

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

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

2609.4 Active regular expressions

No regular expressions were active.

2609.5 Comparison detail

        1   //      We bHelp 5.10 .002
        2   if (! wind ow.gbIE4 & & (window. gbNav6 ||  gbSafari3)  && !docum ent.childN odes[0].in sertAdjace ntHTML){
        3  
        4   HTMLElemen t.prototyp e.insertAd jacentElem ent = func tion(where ,parsedNod e)
        5   {
        6           sw itch (wher e){
        7           ca se 'before Begin':
        8                    this .parentNod e.insertBe fore(parse dNode,this );
        9                    brea k;
        10           ca se 'afterB egin':
        11                    this .insertBef ore(parsed Node,this. firstChild );
        12                    brea k;
        13           ca se 'before End':
        14                    this .appendChi ld(parsedN ode);
        15                    brea k;
        16           ca se 'afterE nd':
        17                    if ( this.nextS ibling){
        18                    this .parentNod e.insertBe fore(parse dNode,this .nextSibli ng);
        19                    } el se {
        20                    this .parentNod e.appendCh ild(parsed Node);
        21                    }
        22                    brea k;
        23           }
        24   }
        25  
        26   HTMLElemen t.prototyp e.insertAd jacentHTML  = functio n(where,ht mlStr){
        27  
        28           va r r = this .ownerDocu ment.creat eRange();
        29           r. setStartBe fore(this) ;
        30           va r parsedHT ML = r.cre ateContext ualFragmen t(htmlStr) ;
        31           th is.insertA djacentEle ment(where ,parsedHTM L);
        32   }
        33  
        34  
        35   HTMLElemen t.prototyp e.insertAd jacentText  = functio n(where,tx tStr){
        36  
        37           va r parsedTe xt = docum ent.create TextNode(t xtStr);
        38           th is.insertA djacentEle ment(where ,parsedTex t);
        39   }
        40   }
        41  
        42   function t estScroll( ) {
        43           //  Initializ e scrollba r cache if  necessary
        44           if  (window._ pageXOffse t==null) {
        45                    wind ow._pageXO ffset = wi ndow.pageX Offset;
        46                    wind ow._pageYO ffset = wi ndow.pageY Offset;
        47           }
        48           //  Expose In ternet Exp lorer comp atible obj ect model
        49           do cument.scr ollTop = w indow.page YOffset;
        50           do cument.scr ollLeft =  window.pag eXOffset;
        51           wi ndow.docum ent.scroll Height = d ocument.he ight;
        52           wi ndow.docum ent.scroll Width = do cument.wid th;
        53           wi ndow.docum ent.client Width = wi ndow.inner Width;
        54           wi ndow.docum ent.client Height = w indow.inne rHeight;
        55  
        56           //  If cache! =current v alues, cal l the onsc roll event
        57           if  (((window .pageXOffs et!=window ._pageXOff set) || (w indow.page YOffset!=w indow._pag eYOffset))  && (windo w.onscroll )) 
        58                    wind ow.onscrol l();
        59           //  Cache new  values
        60           wi ndow._page XOffset =  window.pag eXOffset;
        61           wi ndow._page YOffset =  window.pag eYOffset;
        62           }
        63  
        64   // Create  compatibil ity layer  for Netsca pe
        65   if (window .gbNav6 &&  !window.g bNav7) {
        66           se tInterval( "testScrol l()",50)
        67   }