Subversion Repositories DevTools

Rev

Rev 6489 | Rev 7249 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6489 Rev 6790
Line 411... Line 411...
411
            <%If rsQry.Recordcount < 1 Then
411
            <%If rsQry.Recordcount < 1 Then
412
                ' No files found ...
412
                ' No files found ...
413
                Call DisplayMessage ()
413
                Call DisplayMessage ()
414
            Else
414
            Else
415
            %>
415
            %>
416
            <table id="fileList" width="100%"  border="0" cellspacing="1" cellpadding="3">
416
            <table id="fileList" width="100%"  border="0" cellspacing="1" cellpadding="3" class='StdGrey'>
417
            <tr class="form_field_hdr">
417
                <thead>
-
 
418
                <tr>
418
              <td width="1%" onclick="tableToggleAll(this)">
419
                  <th width="1%" onclick="tableToggleAll(this)">
419
                    <img class='' src='images/rex_images/_folder.gif' border='0' hspace='3' align='absmiddle' title='Expand All'>
420
                        <img class='' src='images/rex_images/_folder.gif' border='0' hspace='3' align='absmiddle' title='Expand All'>
420
                    <img class='display-none' src='images/rex_images/_folderopen.gif' border='0' hspace='3' align='absmiddle' title='Close all'>
421
                        <img class='display-none' src='images/rex_images/_folderopen.gif' border='0' hspace='3' align='absmiddle' title='Close all'>
421
              </td>
422
                  </th>
422
              <td width="25%" >Name</td>
423
                  <th width="25%" >Name</th>
423
              <td width="25%" align="right">Byte Size</td>
424
                  <th width="25%" align="right">Byte Size</th>
424
              <td width="25%" align="right">CKSUM</td>
425
                  <th width="25%" align="right">CKSUM</th>
425
              <td width="25%" align="right">MODCRC</td>
426
                  <th width="25%" align="right">MODCRC</th>
426
            </tr>
427
                </tr>
-
 
428
                </thead>
427
            <%
429
            <%
428
            Dim dClass, nextClass, altClass
430
            Dim dClass, nextClass, altClass
429
            Dim isHidden , bFirst
431
            Dim isHidden , bFirst
430
            Dim fileName
432
            Dim fileName
431
            Dim curDir, hiddenBase
433
            Dim curDir, hiddenBase
Line 495... Line 497...
495
                        If isHidden Then
497
                        If isHidden Then
496
                            dClass = dClass & " display-none tag-isHidden"
498
                            dClass = dClass & " display-none tag-isHidden"
497
                        End If
499
                        End If
498
                    End If
500
                    End If
499
                    %>
501
                    %>
500
                    <tr class="<%=dClass%> form_field_grey_bg body_txt_gray" <%=trAttr%>>
502
                    <tr class="<%=dClass%>" <%=trAttr%>>
501
                      <td nowrap ><%=sIcon%></td>
503
                      <td nowrap ><%=sIcon%></td>
502
                      <td nowrap><a target="_blank" href="<%=sLink%>" class="body_txt_gray_link"><%=filePath & fileName%></a></td>
504
                      <td nowrap><a target="_blank" href="<%=sLink%>" class="body_txt_gray_link"><%=filePath & fileName%></a></td>
503
                      <td nowrap align="right"><%=sSize%></td>
505
                      <td nowrap align="right"><%=sSize%></td>
504
                      <td nowrap align="right"><%=rsQry("crc_cksum")%></td>
506
                      <td nowrap align="right"><%=rsQry("crc_cksum")%></td>
505
                      <td nowrap align="right"><%=rsQry("crc_modcrc")%></td>
507
                      <td nowrap align="right"><%=rsQry("crc_modcrc")%></td>