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

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

4429.2 Comparison summary

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

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

4429.4 Active regular expressions

No regular expressions were active.

4429.5 Comparison detail

        1   <%@tag des cription=" Creates a  month drop down (sele ct)" pageE ncoding="U TF-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="d isplayForm at" descri ption="def aults to f ullName, b ut possibl e values a re: fullNa me, abbrev iation, fu llNameAndN umber, abb reviationA ndNumber,  number" %>  
        9  
        10   <%@taglib  uri="http: //java.sun .com/jsp/j stl/core"  prefix="c" %>
        11  
        12   <c:choose>
        13       <c:whe n test="${ displayFor mat == 'fu llName'}">
        14           <c :set var=" arrMonths" >January,F ebruary,Ma rch,April, May,June,J uly,August ,September ,October,N ovember,De cember</c: set>
        15       </c:wh en>
        16       <c:whe n test="${ displayFor mat == 'ab breviation '}">
        17           <c :set var=" arrMonths" >Jan,Feb,M ar,Apr,May ,Jun,Jul,A ug,Sep,Oct ,Nov,Dec</ c:set>
        18       </c:wh en>
        19       <c:whe n test="${ displayFor mat == 'fu llNameAndN umber'}">
        20           <c :set var=" arrMonths" >January ( 1),Februar y (2),Marc h (3),Apri l (4),May  (5),June ( 6),July (7 ),August ( 8),Septemb er (9),Oct ober (10), November ( 11),Decemb er (12)</c :set>
        21       </c:wh en>
        22       <c:whe n test="${ displayFor mat == 'ab breviation AndNumber' }">
        23           <c :set var=" arrMonths" >Jan (1),F eb (2),Mar  (3),Apr ( 4),May (5) ,Jun (6),J ul (7),Aug  (8),Sept  (9),Oct (1 0),Nov (11 ),Dec (12) </c:set>
        24       </c:wh en>
        25       <c:whe n test="${ displayFor mat == 'nu mber'}">
        26           <c :set var=" arrMonths" >1,2,3,4,5 ,6,7,8,9,1 0,11,12</c :set>
        27       </c:wh en>
        28       <c:oth erwise>
        29           <c :set var=" arrMonths" >January,F ebruary,Ma rch,April, May,June,J uly,August ,September ,October,N ovember,De cember</c: set>
        30       </c:ot herwise>
        31   </c:choose >
        32  
        33   <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 >>
        34       <c:for Tokens var Status="cn t" delims= "," items= "${arrMont hs}" var=" m">
        35           <o ption valu e="<c:out  value="${c nt.count}"  />"><c:ou t value="$ {m}" /></o ption>
        36       </c:fo rTokens>
        37   </select>