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

343.1 Files compared

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

343.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 90
Changed 2 6
Inserted 0 0
Removed 0 0

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

343.4 Active regular expressions

No regular expressions were active.

343.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   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   #remoteBas eURL = 'ht tps://dani el_armbrus t@bitbucke t.org/dani el_armbrus t/'
  39   #remoteBas eURL = 'ht tps:// DNS : PORT
  40   remoteBase URL = 'htt ps:// DNS : PORT '
  41  
  42   for projec t in proje cts:
  43           pr int("===== ========== ========== =========" )
  44           pr int("Tag/B ranch Push  " + proje ct)
  45           gi t("-c", "h ttp.sslVer ify=false" , "-C", pr oject + ". git", "pus h", "--all ",  remote BaseURL +  project +  ".git")
  46           gi t("-c", "h ttp.sslVer ify=false" , "-C", pr oject + ". git", "pus h", "--tag s",  remot eBaseURL +  project +  ".git")
  47           pr int("===== ========== ========== =========" )
  48           pr int("");