86. EPMO Open Source Coordination Office Redaction File Detail Report

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

86.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 XWBReg.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 XWBReg.pas Tue Oct 17 19:58:08 2017 UTC

86.2 Comparison summary

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

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

86.4 Active regular expressions

No regular expressions were active.

86.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:  PII, PII,  PII
  6           De scription:  Registers  component s and prop erty edito rs.
  7           Cu rrent Rele ase: Versi on 1.1 Pat ch 65
  8   ********** ********** ********** ********** ********** ********** *** }
  9  
  10   { ******** ********** ********** ********** ********** **
  11     Changes  in v1.1.65  (HGW 03/2 2/2016) XW B*1.1*65
  12     1. Added  new compo nent TXWBS SOiToken.  This compo nent is no t needed f or
  13        TRPCB roker or T CCOWRPCBro ker as the  attribute s are set  internally ,
  14        but n eeds to be  explicite ly exposed  as an ext ernal inte rface for
  15        the B API32.DLL  so that no n-RPCbroke r applicat ions (Atta chmate Ref lections)
  16        can c all to obt ain an STS  token.
  17  
  18     Changes  in v1.1.60  (HGW 03/2 7/2014) XW B*1.1*60
  19     1. None
  20  
  21     Changes  in v1.1.50  (JLI 09/0 1/2011) XW B*1.1*50
  22     1. None
  23   ********** ********** ********** ********** **********  }
  24  
  25   unit XWBRe g;
  26  
  27   {$I IISBas e.inc}
  28  
  29   interface
  30  
  31   procedure  Register;
  32  
  33   implementa tion
  34  
  35   uses
  36     {System}
  37     System.C lasses,
  38     {?}
  39     DesignIn tf, Design Editors, D esignMenus ,
  40     {VA}
  41     Trpcb, C COWRPCBrok er, XWBSSO i,
  42     RpcbEdtr , XWBRich2 0,
  43     Vergence ContextorL ib_TLB;
  44  
  45   procedure  Register;
  46   begin
  47     Register Components ('Kernel', [TRPCBroke r, TCCOWRP CBroker, T XWBRichEdi t, TContex torControl , TXWBSSOi Token]);
  48  
  49     Register PropertyEd itor(TypeI nfo(TRemot eProc),nil ,'',TRemot eProcPrope rty);
  50     Register PropertyEd itor(TypeI nfo(TServe r),nil,'', TServerPro perty);
  51     Register PropertyEd itor(TypeI nfo(TRpcVe rsion),nil ,'',TRpcVe rsionPrope rty);
  52   end;
  53  
  54   end.