4466. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:51:40 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.

4466.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:40 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-web\src\main\webapp\WEB-INF\web correlations.jspf Fri Apr 21 20:03:30 2017 UTC

4466.2 Comparison summary

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

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

4466.4 Active regular expressions

No regular expressions were active.

4466.5 Comparison detail

        1   <%-- DEPRE CATED - us e correlat ions.jsp i nstead --% >
        2   <%--
        3           Do cument   :  Show the  patient co rrelations  from the  MPI.
        4           Au thor     :  Asha Amri traj
        5   --%>
        6   <%@page co ntentType= "text/html " pageEnco ding="UTF- 8"%>
        7   <%@page er rorPage="e rror.jsp"  %>
        8   <%@taglib  uri="http: //java.sun .com/jsp/j stl/core"  prefix="c" %>
        9   <%@taglib  uri="http: //java.sun .com/jsp/j stl/functi ons" prefi x="fn"%>
        10   <%@taglib  uri="http: //java.sun .com/jsp/j stl/fmt" p refix="fmt "%>
        11   <%@taglib  tagdir="/W EB-INF/tag s/cpp" pre fix="cpp"% >
        12  
        13   <table wid th="100%">
        14       <c:cho ose>
        15           <c :when test ="${!empty  correlati ons}">
        16                <tr>
        17                    <td>
        18                         <table cla ss="box-ta ble-a">
        19                             <thead >
        20                                 <t r>
        21                                      <th scop e="col">Fa cility Num ber</th>
        22                                      <th scop e="col">${ organizati onName} Or ganization  Name</th>
        23                                      <th scop e="col">${ organizati onName} Or ganization  Assigning  Authority </th>
        24                                      <th scop e="col">Pa tient ID</ th>
        25                                 </ tr>
        26                             </thea d>
        27                             <tbody >
        28                                 <c :forEach v ar="r" ite ms="${corr elations}"  varStatus ="i">
        29                                      <tr>
        30                                          <td> ${r.facili tyNumber}< /td>
        31                                          <td  title="${r .organizat ionOid}">$ {r.facilit yName}</td >
        32                                          <c:c hoose>
        33                                               <c:when te st="${empt y r.assign ingAuthori tyName}">
        34                                                   <td ti tle="${r.a ssigningAu thorityOid }">${r.ass igningAuth orityOid}< /td>
        35                                               </c:when>
        36                                               <c:otherwi se>
        37                                                   <td ti tle="${r.a ssigningAu thorityOid }">${r.ass igningAuth orityName} </td>
        38                                               </c:otherw ise>
        39                                          </c: choose>
        40                                          <td> ${r.correl atedPatien tId}</td>
        41                                      </tr>
        42                                 </ c:forEach>
        43                             </tbod y>
        44                         </table>
        45                    </td >
        46                </tr>
        47                <tr>
        48                    <td>
        49                         <p class=" detailText ">
        50                             If a c orrelation  needs to  be removed , please c ontact you r local MP I Point of  Contact w ho will wo rk with
        51                             the na tional Hea lthcare Id entity Man agement (H C IdM) Tea m to compl ete that a ction.
        52                         </p>
        53                    </td >
        54                </tr>
        55                    <cpp :userInRol e role="VA PApplicati onTester">
        56                         <tr>
        57                             <td>
        58                                 <p  class="de tailText">
        59                                      The Remo ve Correla tion actio n should o nly be tak en with
        60                                      Supervis ory approv al and is  only used  in rare ci rcumstance s (such
        61                                      as when  a patient  has been c orrelated  with an in correct re cord at
        62                                      a partic ipating pa rtner). NO TE: The Re move Corre lation act ion
        63                                      will rem ove <stron g>all</str ong> patie nt correla tions othe r than DoD .
        64                                 </ p>
        65                             </td>
        66                         </tr>
        67                         <tr>
        68                             <td>
        69                                 <d iv class=" form-conta iner">
        70                                      <form ac tion="Pati entDetails .do_sec" m ethod="POS T" onsubmi t="return  doSubmit(t his)">
        71                                          <fie ldset>
        72                                               <legend>Re move Corre lations</l egend>
        73                                               <div>Remov e correlat ions to ${ organizati onName} pa rtners fro m VA's Mas ter Patien t Index.</ div>
        74                                               <div align ="center">
        75                                                   <input  title="Re move Corre lations" c lass="butt on" type=" submit" na me="revoke " value="R emove Corr elations"  <c:if test ="${empty  correlatio ns}">disab led="disab led"</c:if > onclick= "revokeCli cked = tru e" />
        76                                               </div>
        77                                          </fi eldset>
        78                                      </form>
        79                                 </ div>
        80                             </td>
        81                         </tr>
        82                    </cp p:userInRo le>
        83           </ c:when>
        84           <c :otherwise >
        85                <tr>
        86                    <td>
        87                         <p class=" detailText ">This pat ient has n o ${organi zationName } correlat ions.</p>
        88                    </td >
        89                </tr>
        90           </ c:otherwis e>
        91       </c:ch oose>
        92   </table>