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

58.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 AddServer.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 AddServer.pas Tue Oct 17 19:55:20 2017 UTC

58.2 Comparison summary

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

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

58.4 Active regular expressions

No regular expressions were active.

58.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: Ad dServer ad ds server  to list of  personal  servers
  8        for s election.
  9           Cu rrent Rele ase: Versi on 1.1 Pat ch 65
  10   ********** ********** ********** ********** ********** ********** *** }
  11  
  12   { ******** ********** ********** ********** ********** **
  13     Changes  in v1.1.65  (HGW 08/0 5/2015) XW B*1.1*65
  14     1. None.
  15  
  16     Changes  in v1.1.60  (HGW 05/0 8/2014) XW B*1.1*60
  17     1. Added  field to  store SSH  host name  for site t o use SSH  connection .
  18  
  19     Changes  in v1.1.50  (JLI 9/1/ 2011) XWB* 1.1*50
  20     1. None
  21   ********** ********** ********** ********** **********  }
  22   unit AddSe rver;
  23  
  24   interface
  25  
  26   uses
  27     {System}
  28     SysUtils , Classes,
  29     {Vcl}
  30     Graphics , Controls , Forms, D ialogs, St dCtrls, Bu ttons,
  31     {WinApi}
  32     Windows,  Messages;
  33  
  34   type
  35     TfrmAddS erver = cl ass(TForm)
  36       lblAdd ress: TLab el;
  37       lblPor tNumber: T Label;
  38       edtAdd ress: TEdi t;
  39       edtPor tNumber: T Edit;
  40       bbtnOK : TBitBtn;
  41       bbtnCa ncel: TBit Btn;
  42       edtSSH username:  TEdit;
  43       Label1 : TLabel;
  44       Label2 : TLabel;
  45     private
  46       { Priv ate declar ations }
  47     public
  48       { Publ ic declara tions }
  49     end;
  50  
  51   var
  52     frmAddSe rver: Tfrm AddServer;
  53  
  54   implementa tion
  55  
  56   {$R *.DFM}
  57  
  58   {See the f ollowing c ode in Rpc conf1:
  59  
  60   procedure  TrpcConfig .btnNewCli ck(Sender:  TObject);
  61  
  62   }
  63  
  64   end.