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

342.1 Files compared

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

342.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 112
Changed 2 5
Inserted 0 0
Removed 0 0

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

342.4 Active regular expressions

No regular expressions were active.

342.5 Comparison detail

  1   #! /usr/bi n/python
  2   #
  3   # Utility  command to  mirror al l (local)  repositori es to exte rnal
  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   #remoteBas eURL = 'ht tps://dani el_armbrus t@bitbucke t.org/sage bits/'
  48   remoteBase URL2 = 'ht tps://dani el_armbrus t@bitbucke t.org/vact tdm/'
  49   #remoteBas eURL = 'ht tps:// DNS : PORT
       
  50   for projec t in proje cts:
  51           pr int("===== ========== ========== =========" )
  52           pr int("Mirro r Push " +  project)
  53   #       gi t("-C", pr oject, "pu sh", "--al l",  remot eBaseURL +  project +  ".git")
  54   #       gi t("-C", pr oject, "pu sh", "--ta gs",  remo teBaseURL  + project  + ".git")
  55           gi t("-C", pr oject, "pu sh", "--al l",  remot eBaseURL2  + project  + ".git")
  56           gi t("-C", pr oject, "pu sh", "--ta gs",  remo teBaseURL2  + project  + ".git")
  57           pr int("===== ========== ========== =========" )
  58           pr int("");