69. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/29/2017 4:53:23 PM Eastern 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.

69.1 Files compared

# Location File Last Modified
1 CTT-DM CIF Submission.zip\code\ISAAC-developer-docs\scripts pushBareToDev.py Fri Mar 3 16:19:47 2017 UTC
2 CTT-DM CIF Submission.zip\code\ISAAC-developer-docs\scripts pushBareToDev.py Wed Mar 29 17:25:12 2017 UTC

69.2 Comparison summary

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

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

69.4 Active regular expressions

No regular expressions were active.

69.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 con fig --glob al credent ial.https: //vadev.ma ntech.com  darmbrust
  8  
  9   import sub process
  10  
  11  
  12   projects =  ['ISAAC-d eveloper-d ocs',
  13                             'ISAAC ',
  14                             'ISAAC -term-conv ert-rf2',
  15                             'ISAAC -term-conv ert-vhat',
  16                             'ISAAC -term-conv ert-loinc' ,
  17                             'ISAAC -term-conv ert-rxnorm ',
  18                             'ISAAC -db-builde r-solor',
  19                             'ISAAC -db-builde r-vhat',
  20                             'ISAAC -db-builde r-vets',
  21                             'ISAAC -fx-gui',
  22                             'ISAAC -fx-gui-pa ',
  23                             'ISAAC -rest',
  24                             'ISAAC -file-tran sfer-utils ',
  25                             'rails _common',
  26                             'rails _komet',
  27                             'rails _prisme',
  28                             'apach e_extensio ns']
  29  
  30   def git(*a rgs):
  31           re turn subpr ocess.chec k_call(['g it'] + lis t(args))
  32  
  33   #remoteBas eURL = 'ht tps://dani el_armbrus t@bitbucke t.org/dani el_armbrus t/'
  34   #remoteBas eURL = 'ht tps://darm brust@ PII : PORT git/r/'
  35   remoteBase URL = 'htt ps://devte st@ DNS . DNS     : PORT /git/r/'
  36  
  37   for projec t in proje cts:
  38           pr int("===== ========== ========== =========" )
  39           pr int("Tag/B ranch Push  " + proje ct)
  40           gi t("-c", "h ttp.sslVer ify=false" , "-C", pr oject + ". git", "pus h", "--all ",  remote BaseURL +  project +  ".git")
  41           gi t("-c", "h ttp.sslVer ify=false" , "-C", pr oject + ". git", "pus h", "--tag s",  remot eBaseURL +  project +  ".git")
  42           pr int("===== ========== ========== =========" )
  43           pr int("");