Produced by Araxis Merge on 6/9/2017 3:51:46 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.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | Fri Jun 9 19:51:46 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 | patientSearchResults.jsp | Fri Apr 21 20:15:58 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 0 | 0 |
| Changed | 0 | 0 |
| Inserted | 1 | 85 |
| Removed | 0 | 0 |
| 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 |
No regular expressions were active.
| 1 | <%-- | |||||
| 2 | Docume nt : Pat ient Searc h | |||||
| 3 | Create d By : Dav id Vasquez / Robert Snelling | |||||
| 4 | Modifi ed By: Ash a Amritraj | |||||
| 5 | --%> | |||||
| 6 | <%@page co ntentType= "text/html " pageEnco ding="UTF- 8"%> | |||||
| 7 | <%@taglib tagdir="/W EB-INF/tag s/formatti ng" prefix ="f" %> | |||||
| 8 | <%@taglib uri="http: //java.sun .com/jsp/j stl/core" prefix="c" %> | |||||
| 9 | <%@taglib uri="http: //java.sun .com/jsp/j stl/fmt" p refix="fmt " %> | |||||
| 10 | <%@taglib tagdir="/W EB-INF/tag s/cpp" pre fix="cpp" %> | |||||
| 11 | ||||||
| 12 | <!DOCTYPE HTML PUBLI C "-//W3C/ /DTD HTML 4.01 Trans itional//E N" | |||||
| 13 | "http: //www.w3.o rg/TR/html 4/loose.dt d"> | |||||
| 14 | ||||||
| 15 | <f:mainTem plate head erText="Pa tient Sear ch Results "> | |||||
| 16 | <div c lass="well "> | |||||
| 17 | <c :choose> | |||||
| 18 | <c:when test="${!e mpty patie nts}"> | |||||
| 19 | The search for patient r eturned mu ltiple res ults. Plea se select a patient from the r esults. | |||||
| 20 | </c:when > | |||||
| 21 | <c:other wise> | |||||
| 22 | The search for patient r eturned no results. | |||||
| 23 | </c:othe rwise> | |||||
| 24 | </ c:choose> | |||||
| 25 | </div> | |||||
| 26 | ||||||
| 27 | <c:cho ose> | |||||
| 28 | <c :when test ="${!empty patients} "> | |||||
| 29 | <div cla ss="form-c ontainer"> | |||||
| 30 | <c:c hoose> | |||||
| 31 | <c:when te st="${!emp ty patient s}"> | |||||
| 32 | <form action="Pa tientSearc hResults.d o_sec" met hod="POST" onsubmit= "return do Submit(thi s)"> | |||||
| 33 | <f ieldset> | |||||
| 34 | <legend> Patient Se arch Resul ts</legend > | |||||
| 35 | <table c lass="ver- minimalist "> | |||||
| 36 | <the ad> | |||||
| 37 | <tr> | |||||
| 38 | <th sc ope="col"> Select Pat ient</th> | |||||
| 39 | <th sc ope="col"> Last Name< /th> | |||||
| 40 | <th sc ope="col"> First Name </th> | |||||
| 41 | <th sc ope="col"> Middle Nam e</th> | |||||
| 42 | <th sc ope="col"> SSN</th> | |||||
| 43 | <th sc ope="col"> Date of Bi rth</th> | |||||
| 44 | <th sc ope="col"> Gender</th > | |||||
| 45 | </tr> | |||||
| 46 | </th ead> | |||||
| 47 | <tbo dy> | |||||
| 48 | <c:choose> | |||||
| 49 | <c:whe n test="${ i.index % 2 == 0}"> | |||||
| 50 | <c :set var=" className" value="ev en" /> | |||||
| 51 | </c:wh en> | |||||
| 52 | <c:oth erwise> | |||||
| 53 | <c :set var=" className" value="od d" /> | |||||
| 54 | </c:ot herwise> | |||||
| 55 | </c:choose > | |||||
| 56 | <c:forEach var="r" i tems="${pa tients}" v arStatus=" i"> | |||||
| 57 | <tr cl ass="<c:ou t value="$ {className }"/>"> | |||||
| 58 | <t d><input t itle="Choo se to sele ct patient " name="ic n" value=" <c:out val ue="${r.ic n}"/>" typ e="radio" /></td> | |||||
| 59 | <t d><c:out v alue="${r. lastName}" /></td> | |||||
| 60 | <t d><c:out v alue="${r. firstName} "/></td> | |||||
| 61 | <t d><c:out v alue="${r. middleInit ial}"/></t d> | |||||
| 62 | <t d><c:out v alue="${r. ssn}"/></t d> | |||||
| 63 | <t d><fmt:for matDate pa ttern="MM/ dd/yyyy" v alue="${r. dob}" /></ td> | |||||
| 64 | <t d><c:out v alue="${r. gender}"/> </td> | |||||
| 65 | </tr> | |||||
| 66 | </c:forEac h> | |||||
| 67 | </tb ody> | |||||
| 68 | </table> | |||||
| 69 | </ fieldset> | |||||
| 70 | <d iv> | |||||
| 71 | <input n ame="selec t" title=" View Detai ls" class= "button" t ype="submi t" value=" View Detai ls" /> | |||||
| 72 | </ div> | |||||
| 73 | </form > | |||||
| 74 | </c:when> | |||||
| 75 | <c:otherwi se> | |||||
| 76 | <div>N o patients were foun d.</div> | |||||
| 77 | </c:otherw ise> | |||||
| 78 | </c: choose> | |||||
| 79 | </div> | |||||
| 80 | </ c:when> | |||||
| 81 | <c :otherwise > | |||||
| 82 | <div>No patients w ere found. </div> | |||||
| 83 | </ c:otherwis e> | |||||
| 84 | </c:ch oose> | |||||
| 85 | </f:mainTe mplate> |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.