345. EPMO Open Source Coordination Office Redaction File Detail Report

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

345.1 Files compared

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

345.2 Comparison summary

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

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

345.4 Active regular expressions

No regular expressions were active.

345.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   projects =  ['ISAAC-d eveloper-d ocs',
  13                             'ISAAC ',
  14                             'ISAAC -term-conv ert-cpt',
  15                             'ISAAC -term-conv ert-cvx',
  16                             'ISAAC -term-conv ert-nucc',
  17                             'ISAAC -term-conv ert-hl7v3' ,
  18                             'ISAAC -term-conv ert-rf2',
  19                             'ISAAC -term-conv ert-vhat',
  20                             'ISAAC -term-conv ert-loinc' ,
  21                             'ISAAC -term-conv ert-rxnorm ',
  22                             'ISAAC -db-builde r-solor',
  23                             'ISAAC -db-builde r-vhat',
  24                             'ISAAC -db-builde r-vets',
  25                             'ISAAC -fx-gui',
  26                             'ISAAC -fx-gui-pa ',
  27                             'ISAAC -rest',
  28                             'ISAAC -file-tran sfer-utils ',
  29                             'rails _common',
  30                             'rails _komet',
  31                             'rails _prisme',
  32                             'apach e_extensio ns',
  33                             'aitc_ install']
  34  
  35   def git(*a rgs):
  36           re turn subpr ocess.chec k_call(['g it'] + lis t(args))
  37  
  38   remoteName  = 'origin '
  39   remoteBase URL = 'htt ps:// DNS                 : PORT '
  40  
  41   for projec t in proje cts:
  42           pr int("===== ========== ========== =========" )
  43           pr int("Updat ing Remote  of " + pr oject + "  current:")
  44           gi t("-C", pr oject, "re mote", "-v ")
  45           gi t("-C", pr oject, "re mote", "se t-url", re moteName,  remoteBase URL + proj ect + ".gi t")
  46           pr int("New:" )
  47           gi t("-C", pr oject, "re mote", "-v ")
  48           pr int("===== ========== ========== =========" )
  49           pr int("");