120. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/14/2017 1:28:07 PM Eastern Standard 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.

120.1 Files compared

# Location File Last Modified
1 Thu Dec 14 18:28:06 2017 UTC
2 CUI-CPP-v2.3.2-source.zip\doc env_file_relationship.dotx Tue Nov 14 14:50:15 2017 UTC

120.2 Comparison summary

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

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

120.4 Active regular expressions

No regular expressions were active.

120.5 Comparison detail

        1   # doc/env_ file_relat ionship.do t
        2   # Creates  a graphic  illustrati ng the .en v* file re lationship s
        3   #
        4   # brew ins tall graph viz
        5   #
        6   # Use this  command t o generate  the env_f ile_relati onship.dot .pdf file
        7   #
        8   #     dot  -Tpdf -O e nv_file_re lationship .dot
        9   #
        10   graph {
        11     label=". env* File  Relationsh ip\nShell  Scipt: Top  to Bottom  (last val ue wins)\n Rails: Bot tom to Top  (first va lue wins)\ n.env.*.lo cal are de veloper ov er-rides a nd are not  configura tion manag ed\n\nDiag ram shows  RAILS_ENV= developmen t and DEPL OY_TYPE=do cker";
        12     splines= line;
        13     subgraph  cluster_0  {
        14       label= "(RAILS_EN V)";
        15       ".env. developmen t";
        16       ".env. test";
        17       ".env. production ";
        18     }
        19  
        20     subgraph  cluster_1  {
        21       label= "(DEPLOY_T YPE)";
        22       ".env. docker";
        23       ".env. sqa";
        24       ".env. uat";
        25     }
        26  
        27     subgraph  cluster_2  {
        28       label= "RAILS_ENV  Local Ove r-ride";
        29       ".env. developmen t.local";
        30       ".env. test.local ";
        31       ".env. production .local";
        32     }
        33  
        34     subgraph  cluster_3  {
        35       label= "DEPLOY_TY PE Local O ver-ride";
        36       ".env. docker.loc al";
        37       ".env. sqa.local" ;
        38       ".env. uat.local" ;
        39     }
        40  
        41     "BASH St arts Here  and Goes D own" -- ". env";
        42     ".env" - - ".env.de velopment" ;
        43     ".env.de velopment"  -- ".env. docker";
        44     ".env.do cker" -- " .env.local ";
        45     ".env.lo cal" -- ". env.develo pment.loca l";
        46     ".env.de velopment. local" --  ".env.dock er.local";
        47     ".env.do cker.local " -- "Rail s Starts H ere and Go es Up";
        48   }