61. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/18/2017 11:37:28 AM 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.

61.1 Files compared

# Location File Last Modified
1 OSCIF_CPRS v32 Phase 2 Build 2OR3.0405_August_2017.zip\OR_30_405V36_SRC.zip\XE8\Broker\Source fDebugInfo.pas Wed Oct 11 20:08:07 2017 UTC
2 OSCIF_CPRS v32 Phase 2 Build 2OR3.0405_August_2017.zip\OR_30_405V36_SRC.zip\XE8\Broker\Source fDebugInfo.pas Tue Oct 17 19:55:20 2017 UTC

61.2 Comparison summary

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

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

61.4 Active regular expressions

No regular expressions were active.

61.5 Comparison detail

  1   { ******** ********** ********** ********** ********** ********** ****
  2           Pa ckage: XWB  - Kernel  RPCBroker
  3           Da te Created : Sept 18,  1997 (Ver sion 1.1)
  4           Si te Name: O akland, OI  Field Off ice, Dept  of Veteran  Affairs
  5           De velopers:  PI I
  6           De scription:  Contains  TRPCBroker  and relat ed compone nts.
  7     Unit: fD ebugInfo d isplays in formation  for debug  mode.
  8           Cu rrent Rele ase: Versi on 1.1 Pat ch 65
  9   ********** ********** ********** ********** ********** ********** *** }
  10  
  11   { ******** ********** ********** ********** ********** **
  12     Changes  in v1.1.65  (HGW 09/0 5/2015) XW B*1.1*65
  13     1. None.
  14  
  15     Changes  in v1.1.60  (HGW 09/0 1/2013) XW B*1.1*60
  16     1. None.
  17  
  18     Changes  in v1.1.50  (JLI 09/0 1/2011) XW B*1.1*50
  19     1. None.
  20   ********** ********** ********** ********** **********  }
  21   unit fDebu gInfo;
  22  
  23   interface
  24  
  25   uses
  26     {System}
  27     SysUtils , Classes,
  28     {WinApi}
  29     Windows,  Messages,
  30     {Vcl}
  31     Graphics , Controls , Forms, D ialogs, St dCtrls;
  32  
  33   type
  34      TfrmDeb ugInfo = c lass(TForm )
  35         lblD ebugInfo:  TLabel;
  36         btnO K: TButton ;
  37      private
  38         { Pr ivate decl arations }
  39      public
  40         { Pu blic decla rations }
  41   end;
  42  
  43   var
  44      frmDebu gInfo: Tfr mDebugInfo ;
  45  
  46   implementa tion
  47  
  48   {$R *.DFM}
  49  
  50   end.