301. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2/1/2017 2:56:29 PM 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.

301.1 Files compared

# Location File Last Modified
1 C:\Araxis_Merge_Comprasion\Pub_un\BTSSS_CIF_122016.zip\BTSSS_CIF_12_20_16\clean\CRM\trunk\SDK\SampleCode\CS\Client\WebResources\ImportWebResources\ImportWebResources\FilesToImport\Script Script.js Tue Dec 20 19:51:44 2016 UTC
2 Wed Feb 1 19:56:29 2017 UTC

301.2 Comparison summary

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

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

301.4 Active regular expressions

No regular expressions were active.

301.5 Comparison detail

1          
2   function g etXMLDoc(f ile) {        
3    if (typeo f window.A ctiveXObje ct != "und efined") {        
4     var axo  = new Acti veXObject( "Msxml2.DO MDocument. 6.0");        
5     axo.asyn c = false;        
6     axo.load (file);        
7     return a xo;        
8    }        
9    else {        
10     xhttp =  new XMLHtt pRequest() ;        
11    }        
12    xhttp.ope n("GET", f ile, false );        
13    xhttp.sen d("");        
14    return xh ttp.respon seXML;        
15   }        
16          
17   function s howData()  {        
18    xml = get XMLDoc("Da ta/Data.xm l");        
19    xsl = get XMLDoc("XS L/Transfor m.xsl");        
20    // Intern et Explore r        
21    if (typeo f window.A ctiveXObje ct != "und efined") {        
22     ex = xml .transform Node(xsl);        
23     document .getElemen tById("res ults").inn erHTML = e x;        
24    }        
25    //  Firef ox, Chrome , & Safari        
26    else if ( document.i mplementat ion && doc ument.impl ementation .createDoc ument) {        
27     xsltProc essor = ne w XSLTProc essor();        
28     xsltProc essor.impo rtStyleshe et(xsl);        
29     results  = xsltProc essor.tran sformToFra gment(xml,  document) ;        
30     document .getElemen tById("res ults").app endChild(r esults);        
31    }        
32   }