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 | serviceAuditReport.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 | 207 |
| 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 : api Usage | |||||
| 3 | Create d on : Feb 4, 2016, 9:05:42 AM | |||||
| 4 | Author : Joh ann Sonnen berg | |||||
| 5 | --%> | |||||
| 6 | ||||||
| 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 | ||||||
| 10 | <f:mainTem plate head erText="Se rvice Audi t Report"> | |||||
| 11 | <scrip t language ="JavaScri pt"> | |||||
| 12 | $( document). ready(func tion () { | |||||
| 13 | ||||||
| 14 | $("#star tDate").da tepicker({ | |||||
| 15 | maxD ate: 0, | |||||
| 16 | date Format: 'm m/dd/yy', | |||||
| 17 | onCl ose: funct ion (selec tedDate) { | |||||
| 18 | $("#endDat e").datepi cker("opti on", "minD ate", sele ctedDate); | |||||
| 19 | } | |||||
| 20 | }); | |||||
| 21 | ||||||
| 22 | $("#endD ate").date picker({ | |||||
| 23 | maxD ate: 0, | |||||
| 24 | date Format: 'm m/dd/yy', | |||||
| 25 | onCl ose: funct ion (selec tedDate) { | |||||
| 26 | $("#startD ate").date picker("op tion", "ma xDate", se lectedDate ); | |||||
| 27 | } | |||||
| 28 | }); | |||||
| 29 | ||||||
| 30 | $('#serv ice').on(' change', f unction () { | |||||
| 31 | var service = $('#servic e').val(); | |||||
| 32 | ||||||
| 33 | if ( service != 'ALL') { | |||||
| 34 | ||||||
| 35 | //make the ajax call to get th e calls (m ethods) fo r the sele cted web s ervice | |||||
| 36 | $.ajax({ur l: "Servic eAuditRepo rt.do_sec? getCallsBy WebService =true&webs ervice=" + service, success: f unction (r esult) { | |||||
| 37 | $( '#method') .html(resu lt); | |||||
| 38 | }}); | |||||
| 39 | } el se { | |||||
| 40 | $('#method ').html('< option val ue="ALL">A ll</option >'); | |||||
| 41 | } | |||||
| 42 | }); | |||||
| 43 | ||||||
| 44 | var serv ice = $('# service'). val(); | |||||
| 45 | var meth od = $('#m ethod').va l(); | |||||
| 46 | var auth orized = $ ('#authori zed').val( ); | |||||
| 47 | var succ ess = $('# success'). val(); | |||||
| 48 | var dura tion = $(' #duration' ).val(); | |||||
| 49 | var star tDate = $( '#startDat e').val(); | |||||
| 50 | var endD ate = $('# endDate'). val(); | |||||
| 51 | ||||||
| 52 | //initia l data tab le setup a nd call fo r the firs t recordse t | |||||
| 53 | $.fn.dat aTable.ext .errMode = 'none'; | |||||
| 54 | ||||||
| 55 | setProce ssingForDa taTable('t blServiceA uditReport '); | |||||
| 56 | ||||||
| 57 | var audi tReportTab le = $('#t blServiceA uditReport ').DataTab le({ | |||||
| 58 | defe rLoading: 0, | |||||
| 59 | dest roy: true, | |||||
| 60 | sear ching: fal se, | |||||
| 61 | proc essing: tr ue, | |||||
| 62 | serv erSide: tr ue, | |||||
| 63 | orde r: [[2, 'd esc']], | |||||
| 64 | ajax : "Service AuditRepor t.do_sec?d oSearch=tr ue&useJSON =true&webs ervice=" + service + "&method= " + method + "&autho rized=" + authorized + "&succe ss=" + suc cess + "&d uration=" + duration + "&start Date=" + s tartDate + "&endDate =" + endDa te, | |||||
| 65 | lang uage: { | |||||
| 66 | emptyTable : "No reco rds found" , | |||||
| 67 | loadingRec ords: "" | |||||
| 68 | }, | |||||
| 69 | leng thMenu: [ 10, 25, 50 , 100, 250 , 500 ], | |||||
| 70 | page Length: 25 , | |||||
| 71 | scro llX:true, | |||||
| 72 | init Complete: function() { | |||||
| 73 | // Enable THEAD scro ll bars | |||||
| 74 | $('.dataTa bles_scrol lHead').cs s('overflo w', 'auto' ); | |||||
| 75 | ||||||
| 76 | // Sync TH EAD scroll ing with T BODY | |||||
| 77 | $('.dataTa bles_scrol lHead').on ('scroll', function () { | |||||
| 78 | $('.da taTables_s crollBody' ).scrollLe ft($(this) .scrollLef t()); | |||||
| 79 | }); | |||||
| 80 | }, | |||||
| 81 | colu mnDefs: [ | |||||
| 82 | {className : "dt-head -center", targets: [ 0,1,2,3,4, 5,6]}, | |||||
| 83 | {className : "dt-head -center dt -body-righ t", target s: [7]} | |||||
| 84 | ] | |||||
| 85 | }); | |||||
| 86 | ||||||
| 87 | auditRep ortTable.o n('draw', function ( ) { | |||||
| 88 | addA riaToDataT able('tblS erviceAudi tReport', auditRepor tTable); | |||||
| 89 | }); | |||||
| 90 | ||||||
| 91 | //when t he search button is pressed th is functio n is used | |||||
| 92 | $('#btnS earch').on ('click', function ( ) { | |||||
| 93 | var service = $('#servic e').val(); | |||||
| 94 | var method = $ ('#method' ).val(); | |||||
| 95 | var authorized = $('#aut horized'). val(); | |||||
| 96 | var success = $('#succes s').val(); | |||||
| 97 | var duration = $('#durat ion').val( ); | |||||
| 98 | var startDate = $('#star tDate').va l(); | |||||
| 99 | var endDate = $('#endDat e').val(); | |||||
| 100 | ||||||
| 101 | var errorMessa ge = valid ateStartAn dEndDate(s tartDate, endDate); | |||||
| 102 | ||||||
| 103 | if ( errorMessa ge != '') | |||||
| 104 | { | |||||
| 105 | //we have an error s o show the error, an d then don 't send th e ajax req uest | |||||
| 106 | $('#errorM essage').h tml(errorM essage); | |||||
| 107 | $('#errorM essage').s how(); | |||||
| 108 | ||||||
| 109 | return fal se; | |||||
| 110 | } el se { | |||||
| 111 | //no error , let's ma ke the cal l to popul ate the re port | |||||
| 112 | $('#result s').show() ; | |||||
| 113 | auditRepor tTable.aja x.url("Ser viceAuditR eport.do_s ec?doSearc h=true&use JSON=true& webservice =" + servi ce + "&met hod=" + me thod + "&a uthorized= " + author ized + "&s uccess=" + success + "&duratio n=" + dura tion + "&s tartDate=" + startDa te + "&end Date=" + e ndDate).lo ad(); | |||||
| 114 | } | |||||
| 115 | }); | |||||
| 116 | ||||||
| 117 | $('#star tDate,#end Date').on( 'change', function ( ) { | |||||
| 118 | //if either da te changes , hide the error mes sage if it s not alre ady hidden | |||||
| 119 | $('# errorMessa ge').hide( ); | |||||
| 120 | }); | |||||
| 121 | ||||||
| 122 | $('#resu lts').hide (); | |||||
| 123 | }) ; | |||||
| 124 | </scri pt> | |||||
| 125 | ||||||
| 126 | <div c lass="form -container pad-botto m-20"> | |||||
| 127 | <f orm name=" patientSea rchForm"> | |||||
| 128 | <fieldse t> | |||||
| 129 | <leg end>Search Details</ legend> | |||||
| 130 | <div id="error Message" c lass="bg-w arning pad -15" style ="display: none;"></ div> | |||||
| 131 | <div class="pa d-top-10"> | |||||
| 132 | <label for ="service" class="wi dth-120">S ervice</la bel> | |||||
| 133 | <select id ="service" name="ser vice" data -tooltip=" <c:out val ue="${desc riptors['s erviceAudi tServiceFi eld']}" /> "> | |||||
| 134 | <optio n value="A LL" select ed="select ed">All</o ption> | |||||
| 135 | <c:for Each var=" ws" items= "${webserv ices}" var Status="i" > | |||||
| 136 | <o ption id=" <c:out val ue="${ws}" />"><c:ou t value="$ {ws}" /></ option> | |||||
| 137 | </c:fo rEach> | |||||
| 138 | </select> | |||||
| 139 | </di v> | |||||
| 140 | <div > | |||||
| 141 | <label for ="method" class="wid th-120">Me thod</labe l> | |||||
| 142 | <select id ="method" name="meth od" data-t ooltip="<c :out value ="${descri ptors['ser viceAuditM ethodField ']}" />"> | |||||
| 143 | <optio n value="A LL">All</o ption> | |||||
| 144 | </select> | |||||
| 145 | </di v> | |||||
| 146 | <div > | |||||
| 147 | <label for ="authoriz ed" class= "width-120 ">Authoriz ed</label> | |||||
| 148 | <select id ="authoriz ed" name=" authorized " data-too ltip="<c:o ut value=" ${descript ors['servi ceAuditAut horizedFie ld']}" />" > | |||||
| 149 | <optio n value="A LL">All</o ption> | |||||
| 150 | <optio n value="1 ">Yes</opt ion> | |||||
| 151 | <optio n value="0 ">No</opti on> | |||||
| 152 | </select> | |||||
| 153 | </di v> | |||||
| 154 | <div > | |||||
| 155 | <label for ="success" class="wi dth-120">S uccess</la bel> | |||||
| 156 | <select id ="success" name="suc cess" data -tooltip=" <c:out val ue="${desc riptors['s erviceAudi tSuccessFi eld']}" /> "> | |||||
| 157 | <optio n value="A LL">All</o ption> | |||||
| 158 | <optio n value="1 ">Yes</opt ion> | |||||
| 159 | <optio n value="0 ">No</opti on> | |||||
| 160 | </select> | |||||
| 161 | </di v> | |||||
| 162 | <div > | |||||
| 163 | <label for ="duration " class="w idth-120"> Duration</ label> | |||||
| 164 | <select id ="duration " name="du ration" da ta-tooltip ="<c:out v alue="${de scriptors[ 'serviceAu ditDuratio nField']}" />"> | |||||
| 165 | <optio n value="A LL">All</o ption> | |||||
| 166 | <optio n value="1 0">> 10 ms</option > | |||||
| 167 | <optio n value="5 0">> 50 ms</option > | |||||
| 168 | <optio n value="1 00">> 1 00ms</opti on> | |||||
| 169 | <optio n value="2 00">> 2 00ms</opti on> | |||||
| 170 | <optio n value="5 00">> 5 00ms</opti on> | |||||
| 171 | </select> | |||||
| 172 | </di v> | |||||
| 173 | <div id="dates Tip" class ="width-35 0" data-to oltip="<c: out value= "${descrip tors['star tDateEndDa teField']} " />"> | |||||
| 174 | <div> | |||||
| 175 | <label for="star tDate" cla ss="width- 120">Start Date</lab el> | |||||
| 176 | <input type="tex t" name="s tartDate" id="startD ate" size= "10" maxle ngth="10" /> <i>mm/d d/yyyy</i> | |||||
| 177 | </div> | |||||
| 178 | <div> | |||||
| 179 | <label for="endD ate" class ="width-12 0">End Dat e</label> | |||||
| 180 | <input type="tex t" name="e ndDate" id ="endDate" size="10" maxlength ="10" /> < i>mm/dd/yy yy</i> | |||||
| 181 | </div> | |||||
| 182 | </di v> | |||||
| 183 | </fields et> | |||||
| 184 | <div> | |||||
| 185 | <inp ut name="b tnSearch" id="btnSea rch" title ="Search" class="but ton" type= "button" v alue="Sear ch" /> | |||||
| 186 | </div> | |||||
| 187 | </ form> | |||||
| 188 | </div> | |||||
| 189 | <div i d="results "> | |||||
| 190 | <div i d="divRepo rtContent" > | |||||
| 191 | <t able id="t blServiceA uditReport " class="d isplay" wi dth="100%" cellspaci ng="0" rol e="present ation"> | |||||
| 192 | <thead> | |||||
| 193 | <tr role="row" > | |||||
| 194 | <th role=" columnhead er"><span id="servic eAuditWebS erviceHead er" data-t ooltip="<c :out value ="${descri ptors['ser viceAuditW ebServiceC olumn']}" />">Web Se rvice</spa n></th> | |||||
| 195 | <th role=" columnhead er"><span id="servic eAuditMeth odHeader" data-toolt ip="<c:out value="${ descriptor s['service AuditMetho dColumn']} " />">Meth od</span>< /th> | |||||
| 196 | <th role=" columnhead er"><span id="servic eAuditEven tDateHeade r" data-to oltip="<c: out value= "${descrip tors['serv iceAuditEv entDateCol umn']}" /> ">Event Da te (CT)</s pan></th> | |||||
| 197 | <th role=" columnhead er"><span id="servic eAuditIPAd dressHeade r" data-to oltip="<c: out value= "${descrip tors['serv iceAuditIP AddressCol umn']}" /> ">IP Addre ss</span>< /th> | |||||
| 198 | <th role=" columnhead er"><span id="servic eAuditDoma inHeader" data-toolt ip="<c:out value="${ descriptor s['service AuditDomai nColumn']} " />">Doma in</span>< /th> | |||||
| 199 | <th role=" columnhead er"><span id="servic eAuditAuth orizedHead er" data-t ooltip="<c :out value ="${descri ptors['ser viceAuditA uthorizedC olumn']}" />">Author ized</span ></th> | |||||
| 200 | <th role=" columnhead er"><span id="servic eAuditSucc essHeader" data-tool tip="<c:ou t value="$ {descripto rs['servic eAuditSucc essColumn' ]}" />">Su ccess</spa n></th> | |||||
| 201 | <th role=" columnhead er"><span id="servic eAuditDura tionHeader " data-too ltip="<c:o ut value=" ${descript ors['servi ceAuditDur ationColum n']}" />" data-toolt ip-positio n="left">D uration (m s)</span>< /th> | |||||
| 202 | </tr > | |||||
| 203 | </thead> | |||||
| 204 | </ table> | |||||
| 205 | </div> | |||||
| 206 | </div> | |||||
| 207 | </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.