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

339.1 Files compared

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

339.2 Comparison summary

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

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

339.4 Active regular expressions

No regular expressions were active.

339.5 Comparison detail

  1   #! /usr/bi n/python
  2   #
  3   # This scr ipt clones  each proj ect from G IT
  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   import os
  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   gitHubURL  = 'https:/ / DNS                 : PORT '
  39   branch = ' develop'
  40  
  41   for projec t in proje cts:
  42                    if o s.path.isd ir(os.getc wd() + os. sep + proj ect)== Fal se:
  43                                      print(os .getcwd()  + os.sep +  project +  " does no t exist")
  44                                      thisProj ectUrl = g itHubURL +  project +  '.git'
  45                                      print("= ========== ========== ========== ===")
  46                                      print("C loning Lat est From "  + project )
  47                                      
  48                                      tmpBranc h = ''
  49                                      if proje ct == 'ISA AC-develop er-docs':
  50                                               tmpBranch  = 'master'
  51                                      else:
  52                                               tmpBranch  = branch
  53                                      
  54                                      git("clo ne", "--br anch", tmp Branch, th isProjectU rl)
  55                                      print("= ========== ========== ========== ===")
  56                                      print("" );
  57                    else :
  58                                      print(pr oject + "  already ex ists in "  + os.getcw d())