310. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/9/2017 12:03:03 PM Eastern Daylight 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.

310.1 Files compared

# Location File Last Modified
1 Tue May 9 16:03:03 2017 UTC
2 OSCIF_HEC_v1.4_Sprint23_build4_Apr_2017.zip\CRM_solutions\Managed\North52BPA_1_0_0_506_managed_2013_2015_2016..zip\WebResources north52_javascriptbuildsubschedule81E8CAAA-9265-E211-BEE9-00155DF5B00D Mon Sep 19 18:20:18 2016 UTC

310.2 Comparison summary

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

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

310.4 Active regular expressions

No regular expressions were active.

310.5 Comparison detail

        1   if (typeof  North52 = = 'undefin ed') { Nor th52 = {};  }
        2   if (typeof  North52.B uildSubSch edule == ' undefined' ) { North5 2.BuildSub Schedule =  {}; }
        3  
        4   North52.Bu ildSubSche dule.Ok= f unction ()  {
        5  
        6         $('# btnOk').at tr('disabl ed',false)
        7         var  command =  N52.Dialog Helpers.Ge tParameter ByName('da ta');
        8         var  recordid=  N52.Dialog Helpers.Ge tParameter ByName('id ');
        9         var  configurat ionId = N5 2.DialogHe lpers.GetC onfigurati onId();
        10         var  serverUrl  = N52.Dial ogHelpers. GetServerU rl();
        11  
        12         Nort h52.BuildS ubSchedule .Build(com mand, reco rdid, serv erUrl, con figuration Id  );
        13       };
        14  
        15  
        16       North5 2.BuildSub Schedule.O nLoad = fu nction ()  {
        17           $( '#loading' ).hide(); 
        18                 
        19       };
        20  
        21   North52.Bu ildSubSche dule.IsNum ber= funct ion(number ) {
        22      return  !isNaN(par seFloat(nu mber)) &&  isFinite(n umber);
        23   }
        24  
        25   North52.Bu ildSubSche dule.Build = function (command,  recordid,  serverurl,  configura tionId  )  {
        26     
        27       $('#lo ading').sh ow(); 
        28  
        29        var n umberofrec ords = doc ument.getE lementById ('txtNumbe rOfRecords ');
        30        var n umberofsch edules = d ocument.ge tElementBy Id('txtNum berOfSched ules');
        31        var s taggerinte rval = doc ument.getE lementById ('txtStagg erInterval ');
        32  
        33       if ( ( North52.Bu ildSubSche dule.IsNum ber(number ofrecords. value) ==  false) ||  (North52.B uildSubSch edule.IsNu mber(numbe rofschedul es.value)  == false)  || (North5 2.BuildSub Schedule.I sNumber(st aggerinter val.value)  == false)  )
        34       {
        35                $('#load ing').hide ();  
        36                 alert(' North52 :  Please ens ure that a ll fields  are popula ted with v alid numbe rs.');               
        37                 return;
        38        }    
        39  
        40                        
        41         var  configurat ion = {};
        42         conf iguration. north52_Co mmand = {  Value: com mand };
        43         conf iguration. north52_Co mmandParam eter = rec ordid + "| " + number ofrecords. value+ "|"  + numbero fschedules .value + " |" + stagg erinterval .value;
        44  
        45          SDK .JQuery.up dateRecord (
        46                              confi gurationId ,
        47                              confi guration,
        48                              "nort h52_config uration", 
        49                              North 52.BuildSu bSchedule. configSucc ess,
        50                              North 52.BuildSu bSchedule. configErro r
        51                           );
        52                    
        53   };
        54  
        55  
        56    North52.B uildSubSch edule.conf igSuccess=  function  () {
        57         
        58           wi ndow.close ();
        59        };
        60  
        61    North52.B uildSubSch edule.conf igError= f unction (X mlHttpRequ est, textS tatus, err orThrown)  {
        62                           
        63                           alert('N orth52 For mula Manag er: ' + Xm lHttpReque st.message  )
        64                           $('#btnO k').attr(' disabled', false); 
        65                          $('#loadi ng').hide( ); 
        66          };