67. EPMO Open Source Coordination Office Redaction File Detail Report

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

67.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 fSSHUsername.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 fSSHUsername.pas Tue Oct 17 19:51:57 2017 UTC

67.2 Comparison summary

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

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

67.4 Active regular expressions

No regular expressions were active.

67.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:  SSH tunne ling for A ttachmate  Reflection .
  7     Unit: fS SHUsername
  8           Cu rrent Rele ase: Versi on 1.1 Pat ch 65
  9   ********** ********** ********** ********** ********** ********** *** }
  10  
  11   { ******** ********** ********** ********** ********** **
  12     Changes  in v1.1.65  (HGW 08/0 5/2013) XW B*1.1*65
  13     1. None.
  14  
  15     Changes  in v1.1.60  (HGW 09/1 1/2013) XW B*1.1*60
  16     1. None.
  17  
  18     Changes  in v1.1.50  (JLI 06/2 4/2008) XW B*1.1*50
  19     1. Addin g use of S SH tunneli ng as comm and line o ption (or  property).  It
  20        appea rs that tu nneling wi th Attachm ate Reflec tion will  be used wi thin
  21        the V A.  Howeve r, code fo r the use  of Plink.e xe for SSH  tunneling  is
  22        also  provided t o permit s ecure conn ections fo r those us ing VistA
  23        outsi de of the  VA.
  24   ********** ********** ********** ********** **********  }
  25   unit fSSHU sername;
  26  
  27   interface
  28  
  29   uses
  30     {System}
  31     SysUtils , Classes,
  32     {WinApi}
  33     Windows,  Messages,
  34     {Vcl}
  35     Graphics , Controls , Forms, D ialogs, St dCtrls;
  36  
  37   type
  38     TSSHUser name = cla ss(TForm)
  39       Edit1:  TEdit;
  40       Label1 : TLabel;
  41       Button 1: TButton ;
  42       Label2 : TLabel;
  43       proced ure Button 1Click(Sen der: TObje ct);
  44     private
  45       { Priv ate declar ations }
  46     public
  47       { Publ ic declara tions }
  48     end;
  49  
  50   var
  51     SSHUsern ame: TSSHU sername;
  52  
  53   implementa tion
  54  
  55   {$R *.DFM}
  56  
  57   procedure  TSSHUserna me.Button1 Click(Send er: TObjec t);
  58   begin
  59     Close;
  60   end;
  61  
  62   end.