4481. EPMO Open Source Coordination Office Redaction File Detail Report

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

4481.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:41 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 expiringConsentNotification.jsp Fri Apr 21 20:15:58 2017 UTC

4481.2 Comparison summary

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

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

4481.4 Active regular expressions

No regular expressions were active.

4481.5 Comparison detail

        1   <%--
        2       Docume nt   : Exp iring Cons ent Notifi cation
        3       Create d By : Nus rath Moham med
        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/fmt" p refix="fmt "%>
        8   <%@taglib  tagdir="/W EB-INF/tag s/cpp" pre fix="cpp"% >
        9   <%@taglib  tagdir="/W EB-INF/tag s/date" pr efix="date "%>
        10   <%@taglib  tagdir="/W EB-INF/tag s/formatti ng" prefix ="f" %>
        11  
        12   <f:mainTem plate head erText="Ex piring Con sent Notif ication">
        13       <scrip t language ="JavaScri pt">
        14           $( document). ready(func tion () {
        15                setFocus (expiringC onsentNoti ficationFo rm.fileNam e);
        16           }) ;
        17  
        18           fu nction che ckDayRange (form) {
        19                var dayR ange = doc ument.getE lementsByN ame("maxDa ysToExpira tion")[0]. value;
        20                if (isNa N(dayRange ) || dayRa nge < 1 ||  dayRange  > 999) {
        21                    wind ow.alert(" Day range  must be a  number fro m 1 to 999 .");
        22                    retu rn false;
        23                } else {
        24                    docu ment.getEl ementsByNa me("maxDay sToExpirat ion")[0].v alue = par seInt(dayR ange);
        25                    retu rn doSubmi t(form);
        26                }
        27           };
        28       </scri pt>
        29  
        30       <cpp:e rrors />
        31  
        32       <div c lass="form -container ">
        33           <f orm name=" expiringCo nsentNotif icationFor m" action= "ExpiringC onsentNoti fication.d o_sec" met hod="POST"  onsubmit= "return ch eckDayRang e(this)">
        34                <fieldse t>
        35                    <leg end>Expiri ng Consent  Notificat ion Detail s</legend>
        36  
        37                    <div >
        38                         <label for ="frequenc y">Frequen cy<span st yle="displ ay:none;"> "Choose th e frequenc y you want  to run fr om the dro pdown list "</span></ label>
        39                         <select da ta-tooltip ="<c:out v alue="${de scriptors[ 'expiringC onsentNoti ficationFr equencyFie ld']}"/>"  id="freque ncy" name= "frequency ">
        40                             <c:cho ose>
        41                                 <c :when test ="${config urationVal ues.freque ncy == 'DA ILY'}" >
        42                                      <option  value="DAI LY" select ed>Daily</ option>
        43                                 </ c:when>
        44                                 <c :otherwise >
        45                                      <option  value="DAI LY">Daily< /option>
        46                                 </ c:otherwis e>
        47                             </c:ch oose>
        48                             <c:cho ose>
        49                                 <c :when test ="${config urationVal ues.freque ncy == 'WE EKLY'}" >
        50                                      <option  value="WEE KLY" selec ted>Weekly </option>
        51                                 </ c:when>
        52                                 <c :otherwise >
        53                                      <option  value="WEE KLY">Weekl y</option>
        54                                 </ c:otherwis e>
        55                             </c:ch oose>
        56                             <c:cho ose>
        57                                 <c :when test ="${config urationVal ues.freque ncy == 'MO NTHLY'}" >
        58                                      <option  value="MON THLY" sele cted>Month ly</option >
        59                                 </ c:when>
        60                                 <c :otherwise >
        61                                      <option  value="MON THLY">Mont hly</optio n>
        62                                 </ c:otherwis e>
        63                             </c:ch oose>
        64                         </select>
        65                    </di v>
        66                    <div >
        67                         <label for ="maxDaysT oExpiratio n">Days Un til Expira tion<span  style="dis play:none; ">"Choose  the number  of days y ou want to  select fr om the dro pdown list "</span></ label>
        68                         <input tit le="Enter  range in d ays." data -tooltip=" <c:out val ue="${desc riptors['e xpiringCon sentNotifi cationDays UntilExpir ationField ']}"/>"
        69                             id="ma xDaysToExp iration" n ame="maxDa ysToExpira tion" type ="text"
        70                             maxlen gth="3" va lue="<c:ou t value="$ {configura tionValues .window}"/ >" size="3 "/>
        71                    </di v>
        72                    <div >
        73                         <label for ="distribu tionList"> Distributi on List<br  />
        74                             <span  style="fon t-weight:  normal;">( one email  address pe r line)</s pan></labe l>
        75                         <textarea  data-toolt ip="<c:out  value="${ descriptor s['expirin gConsentNo tification Distributi onListFiel d']}"/>" i d="distrib utionList"  name="dis tributionL ist" rows= "8" cols=" 55" ><c:ou t value="$ {configura tionValues .emailAddr esses}"/>< /textarea>
        76                    </di v>
        77                </fields et>
        78                <div>
        79                    <inp ut name="s ave" id="s ave" title ="Save" cl ass="butto n" type="s ubmit" val ue="Save"  />
        80                </div>
        81           </ form>
        82       </div>
        83   </f:mainTe mplate>