338. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/6/2017 8:22:50 PM Central 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.

338.1 Files compared

# Location File Last Modified
1 OSCIF_CTT_v4_build 1.zip\ISAAC-developer-docs\scripts addRemote.py Wed May 31 03:55:50 2017 UTC
2 OSCIF_CTT_v4_build 1.zip\ISAAC-developer-docs\scripts addRemote.py Mon Jul 3 21:28:56 2017 UTC

338.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 108
Changed 2 4
Inserted 0 0
Removed 0 0

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

338.4 Active regular expressions

No regular expressions were active.

338.5 Comparison detail

  1   #! /usr/bi n/python
  2   #
  3   # Utility  command to  add a rem ote to all  repositor ies
  4   #
  5   #  Utilize  something  like this , ahead of  time, to  cache http s credenti als...
  6   #  git con fig --glob al credent ial.helper  cache
  7     git config  --global  credential .https:// DNS                  
  8  
  9   import sub process
  10  
  11  
  12  
  13  
  14  
  15  
  16  
  17   projects =  ['ISAAC-d eveloper-d ocs',
  18                             'ISAAC ',
  19                             'ISAAC -term-conv ert-cpt',
  20                             'ISAAC -term-conv ert-cvx',
  21                             'ISAAC -term-conv ert-nucc',
  22                             'ISAAC -term-conv ert-hl7v3' ,
  23                             'ISAAC -term-conv ert-icd10' ,
  24                             'ISAAC -term-conv ert-rf2',
  25                             'ISAAC -term-conv ert-vhat',
  26                             'ISAAC -term-conv ert-loinc' ,
  27                             'ISAAC -term-conv ert-mvx',
  28                             'ISAAC -term-conv ert-rxnorm ',
  29                             'ISAAC -term-conv ert-sopt',
  30                             'ISAAC -db-builde r-solor',
  31                             'ISAAC -db-builde r-vhat',
  32                             'ISAAC -db-builde r-vets',
  33                             'ISAAC -fx-gui',
  34                             'ISAAC -fx-gui-pa ',
  35                             'ISAAC -rest',
  36                             'ISAAC -file-tran sfer-utils ',
  37                             'rails _common',
  38                             'rails _komet',
  39                             'rails _prisme',
  40                             'VUID- rest',
  41                             'apach e_extensio ns',
  42                             'aitc_ install']
  43  
  44   def git(*a rgs):
  45           re turn subpr ocess.chec k_call(['g it'] + lis t(args))
  46  
  47   remoteName  = 'vadev'
  48   remoteBase URL = 'htt ps:// DNS                 : PORT
  49  
  50   for projec t in proje cts:
  51           pr int("===== ========== ========== =========" )
  52           pr int("Addin g Remote t o " + proj ect)
  53           gi t("-C", pr oject, "re mote", "ad d", remote Name, remo teBaseURL  + project  + ".git",  "-f", "--t ags")
  54           gi t("-C", pr oject, "re mote", "-v ")
  55           pr int("===== ========== ========== =========" )
  56           pr int("");