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

4430.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\date yearRangeDropdown.tag Fri Apr 21 20:03:30 2017 UTC

4430.2 Comparison summary

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

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

4430.4 Active regular expressions

No regular expressions were active.

4430.5 Comparison detail

        1   <%@tag des cription=" creates a  dropdown ( select) of  years" pa geEncoding ="UTF-8"%>
        2  
        3   <%@attribu te name="f ieldId" re quired="tr ue" descri ption="id  for the fi eld on the  form" %>
        4   <%@attribu te name="f ieldName"  required=" true" desc ription="n ame for th e field on  the form"  %>
        5   <%@attribu te name="e nableMulti ple" requi red="true"  descripti on="boolea n if the s elect box  should all ow multipl e selectio ns" type=" Boolean" % >
        6   <%@attribu te name="c ssClass" d escription ="css clas s name to  be applied  to this f ield" %>
        7   <%@attribu te name="c ssStyle" d escription ="css inli ne style t o be appli ed to this  field" %>
        8   <%@attribu te name="y earsBefore Today" des cription=" number of  years to d isplay pri or to this  year" req uired="tru e" %>
        9   <%@attribu te name="y earsAfterT oday" desc ription="n umber of y ears to di splay afte r this yea r" require d="true" % >
        10  
        11   <%@taglib  uri="http: //java.sun .com/jsp/j stl/core"  prefix="c" %>
        12   <%@taglib  uri="http: //java.sun .com/jsp/j stl/fmt" p refix="fmt " %>
        13  
        14   <jsp:useBe an id="now " class="j ava.util.D ate" />
        15   <fmt:forma tDate var= "currentYe ar" value= "${now}" p attern="yy yy" />
        16  
        17   <select na me="${fiel dName}" id ="${fieldI d}" class= "${cssClas s}" style= "${cssStyl e}" <c:if  test="${en ableMultip le}">multi ple="multi ple"</c:if >>
        18       <c:if  test="${ye arsBeforeT oday != 0} ">
        19           <c :forEach b egin="${cu rrentYear  - yearsBef oreToday}"  end="${cu rrentYear  - 1}" var= "priorYear ">
        20                <option  value="<c: out value= "${priorYe ar}" />">< c:out valu e="${prior Year}" />< /option>
        21           </ c:forEach>
        22       </c:if >
        23       <optio n value="< c:out valu e="${curre ntYear}" / >"><c:out  value="${c urrentYear }" /></opt ion>
        24       <c:if  test="${ye arsAfterTo day != 0}" >
        25           <c :forEach b egin="${cu rrentYear  + 1}" end= "${current Year + yea rsAfterTod ay}" var=" priorYear" >
        26                <option  value="<c: out value= "${priorYe ar}" />">< c:out valu e="${prior Year}" />< /option>
        27           </ c:forEach>
        28       </c:if >
        29   </select>