4455. EPMO Open Source Coordination Office Redaction File Detail Report

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

4455.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:39 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 batchAnnounceQueryResult.jspf Fri Apr 21 20:03:30 2017 UTC

4455.2 Comparison summary

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

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

4455.4 Active regular expressions

No regular expressions were active.

4455.5 Comparison detail

        1   <%-- DEPRE CATED: the  entire co ntents of  this file  have been  added to b atchAnnoun ce.jsp --% >
        2   <%--
        3           Do cument   :  Display B atch Annou nce Query  Page
        4           Au thor     :  Stephen S chrank
        5   --%>
        6  
        7   <%@taglib  uri="http: //java.sun .com/jsp/j stl/core"  prefix="c" %>
        8   <div class ="message" >
        9       <c:cho ose>
        10           <c :when test ="${outcom e} == 'suc cess'">
        11                <strong> Batch Anno unce messa ge has bee n enqueued .</strong>
        12           </ c:when>
        13           <c :when test ="${outcom e} == 'fai led'">
        14                <strong> Batch Anno unce messa ge enqueue  failed.</ strong>
        15           </ c:when>
        16           <c :otherwise >
        17                &nbsp;
        18           </ c:otherwis e>
        19       </c:ch oose>
        20   </div>
        21  
        22   <div class ="well">
        23       Select  "Continue " to start  announcin g. Select  "Cancel" t o stop the  operation .
        24   </div>
        25  
        26   <div class ="form-con tainer">
        27       <form  name="batc hAnnounceF orm"  acti on="BatchA nnounce.do _sec" meth od="POST"  onsubmit=" makeReady( ); return  doSubmit(t his)" >
        28           <f ieldset>
        29                <legend> Batch Anno unce Query  Results</ legend>
        30                <table w idth="100% " class="r esults">
        31                    <the ad class=" results">
        32                         <tr>
        33                             <th sc ope="row"  style="flo at: left;  font-size:  0; height : 0;">Orga nization N ame</th>
        34                             <td wi dth="50%"  class="res ults"><b>O rganizatio n Name</b> </td><td w idth="50%"  class="re sults" ali gn="right" ><b>Patien t Count</b ></td>
        35                         </tr>
        36                    </th ead>
        37                    <tbo dy class=" results">
        38                    <c:c hoose>
        39                         <c:when te st="${empt y errorMes sage}">
        40                             <c:for Each var=" r" items=" ${batchSum mary}">
        41                                 <t r>
        42                                      <th scop e="row" st yle="float : left; fo nt-size: 0 ; height:  0;">Result  Content</ th>
        43                                      <td clas s="results ">${r.targ etOrganiza tionName}< /td>
        44                                      <td clas s="results " align="r ight">${r. batchSize} </td>
        45                                 </ tr>
        46                             </c:fo rEach>
        47                         </c:when>
        48                         <c:otherwi se>
        49                             <div c lass="erro rs">${erro rMessage}< /div>
        50                             <td></ td>
        51                             <td></ td>
        52                             <td></ td>
        53                         </c:otherw ise>
        54                    </c: choose>
        55                    </tb ody>
        56                    <tfo ot class=" results">
        57                         <tr><td></ td><td></t d><td></td ></tr>
        58                    </tf oot>
        59                </table>
        60           </ fieldset>
        61           <d iv>
        62                <c:choos e>
        63                    <c:w hen test=" ${!empty b atchSummar y}">
        64                         <input nam e="accept"  title="Co ntinue" cl ass="butto n" type="s ubmit" val ue="Contin ue" />
        65                    </c: when>
        66                    <c:o therwise>
        67                         <input nam e="accept"  title="Co ntinue "di sabled="di sabled" cl ass="butto n" type="s ubmit" val ue="Contin ue" />
        68                    </c: otherwise>
        69                </c:choo se>
        70                <input n ame="cance l" title=" Cancel" cl ass="butto n" type="s ubmit" val ue="Cancel " />
        71           </ div>
        72       </form >
        73   </div>