4433. EPMO Open Source Coordination Office Redaction File Detail Report

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

4433.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:37 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\tags\paginator paginator.tag Fri Apr 21 20:03:30 2017 UTC

4433.2 Comparison summary

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

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

4433.4 Active regular expressions

No regular expressions were active.

4433.5 Comparison detail

        1   <%--
        2       Author      : Ash a Amritraj
        3       Page r esults wit h Next and  Previous  buttons.
        4   --%>
        5  
        6   <%@taglib  uri="http: //java.sun .com/jsp/j stl/core"  prefix="c" %>
        7   <%@taglib  uri="http: //java.sun .com/jsp/j stl/functi ons" prefi x="fn"%>
        8  
        9   <%@tag des cription=" put the ta g descript ion here"  pageEncodi ng="UTF-8" %>
        10  
        11   <%@attribu te name="p aginator"  rtexprvalu e="true"
        12           ty pe="gov.va .nvap.web. util.Pagin ator"%>
        13   <%@attribu te name="u ri"%>
        14   <%@attribu te name="r esults" rt exprvalue= "true" typ e="java.ut il.List"%>
        15  
        16   <form acti on="${uri} " method=" GET">
        17           <d iv class=" text" styl e="text-al ign: right ;" align=" right">
        18                    <c:c hoose>
        19                             <c:whe n test="${ paginator. recordsPer Page > 0}" >
        20                                      <input t ype="hidde n" name="c urrentPage "
        21                                               value="${p aginator.c urrentPage }" />
        22                                      <input c lass="butt on" type=" submit" na me="prev"  value="Pre vious"
        23                                               <c:if test ="${pagina tor.curren tPage <= 0 }">disable d</c:if> / >
        24                    Reco rds ${pagi nator.curr entPage *  paginator. recordsPer Page + 1}  to
        25                    <c:c hoose>
        26                                               <c:when te st="${fn:l ength(resu lts) > pag inator.rec ordsPerPag e}">
        27                             ${pagi nator.curr entPage *  paginator. recordsPer Page + fn: length(res ults) - 1}
        28                         </c:when>
        29                                               <c:otherwi se>
        30                             ${pagi nator.curr entPage *  paginator. recordsPer Page + fn: length(res ults)}
        31                         </c:otherw ise>
        32                                      </c:choo se>
        33                                      <c:choos e>
        34                                               <c:when te st="${pagi nator.next Disabled = = true}">
        35                                                       <i nput class ="button"  type="subm it" name=" next" valu e="Next" d isabled="d isabled" / >
        36                                               </c:when>
        37                                               <c:otherwi se>
        38                                                       <i nput class ="button"  type="subm it" name=" next" valu e="Next"
        39                                                                <c:i f test="${ fn:length( results) < = paginato r.recordsP erPage - 1 }">disable d</c:if> / >
        40                                               </c:otherw ise>
        41                                      </c:choo se>
        42                             </c:wh en>
        43                             <c:oth erwise>
        44                    Reco rds 1 to $ {fn:length (results)}
        45                </c:othe rwise>
        46                    </c: choose>
        47           </ div>
        48   </form>