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

4432.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 forEach.tag Fri Apr 21 20:03:30 2017 UTC

4432.2 Comparison summary

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

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

4432.4 Active regular expressions

No regular expressions were active.

4432.5 Comparison detail

        1   <%--
        2       Docume nt   : for Each
        3       Create d on : Nov  2, 2010,  1:08:24 PM
        4       Author      : Dav id Vazquez
        5   --%>
        6  
        7   <%@taglib  uri="http: //java.sun .com/jsp/j stl/core"  prefix="c" %>
        8   <%@taglib  uri="http: //java.sun .com/jsp/j stl/functi ons" prefi x="fn"%>
        9  
        10   <%@tag des cription=" put the ta g descript ion here"  pageEncodi ng="UTF-8" %>
        11  
        12   <%@attribu te name="v ar" rtexpr value="fal se" requir ed="true"% >
        13   <%@attribu te name="v arStatus"  rtexprvalu e="false"  required=" true"%>
        14   <%@attribu te name="i tems" rtex prvalue="t rue" type= "java.util .List"
        15           re quired="tr ue"%>
        16   <%@attribu te name="p aginator"  rtexprvalu e="true"
        17           ty pe="gov.va .nvap.web. util.Pagin ator" requ ired="true "%>
        18  
        19   <%@variabl e name-fro m-attribut e="var" al ias="v" sc ope="NESTE D"
        20           va riable-cla ss="java.l ang.Object "%>
        21   <%@variabl e name-fro m-attribut e="varStat us" alias= "vs" scope ="NESTED"
        22           va riable-cla ss="java.l ang.Object "%>
        23  
        24   <c:choose>
        25           <c :when
        26                    test ="${pagina tor.record sPerPage > = 0 && fn: length(ite ms) > pagi nator.reco rdsPerPage }">
        27                    <c:s et var="en d" value=" ${fn:lengt h(items) -  2}" />
        28           </ c:when>
        29           <c :otherwise >
        30                    <c:s et var="en d" value=" ${fn:lengt h(items)}"  />
        31           </ c:otherwis e>
        32   </c:choose >
        33   <c:forEach  begin="0"  end="${en d}" var="v " items="$ {items}"
        34           va rStatus="v s">
        35           <j sp:doBody  />
        36   </c:forEac h>
        37