OXIESEC PANEL
- Current Dir:
/
/
home
/
cubot
/
docroot
/
templates
/
xsl
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/19/2023 11:48:28 AM
rwxr-xr-x
📄
adaptik.xml
1.69 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
📄
adaptik_renew.xml
5.24 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
📄
adaptik_renew.xml_backup
5.72 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
📄
adaptik_turnaround.xml
4.48 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
📄
adaptik_turnaround.xml_back
4.97 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
📄
download.xml
1.91 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
📄
pagination.xml
2.12 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
📄
result.xml
2.51 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
📄
result_ah.xml
2.02 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
📄
rxxsl.xml
2.06 KB
08/14/2022 11:02:53 AM
rwxr-xr-x
Editing: adaptik_renew.xml_backup
Close
<?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html"/> <xsl:template match="CUBRESULT/ROWSET"> <html><head><title>Adaptik</title> <link rel="stylesheet" type="text/css" href="/edash/assets/default/styles/search.css" title="Style"/> <script type="text/javascript" src="/edash/jscripts/sorttable.js"> </script> </head><body> <xsl:variable name="head6" as="xs:number"> <xsl:for-each select="META/ROW/COL"> <xsl:if test=". = '0 to 6 Days to Renewals'"> <xsl:value-of select="position()" /> </xsl:if> </xsl:for-each> </xsl:variable> <xsl:variable name="head7" as="xs:number"> <xsl:for-each select="META/ROW/COL"> <xsl:if test=". = '7 to 29 Days to Renewals'"> <xsl:value-of select="position()" /> </xsl:if> </xsl:for-each> </xsl:variable> <xsl:variable name="head8" > <xsl:for-each select="META/ROW/COL"> <xsl:if test=". = '30 to 59 Days to Renewals'"> <xsl:value-of select="position()" /> </xsl:if> </xsl:for-each> </xsl:variable> <xsl:variable name="head9" > <xsl:for-each select="META/ROW/COL"> <xsl:if test=". = '60 to 89 Days to Renewals'"> <xsl:value-of select="position()" /> </xsl:if> </xsl:for-each> </xsl:variable> <xsl:variable name="head10"> <xsl:for-each select="META/ROW/COL"> <xsl:if test=". = '89+ Days to Renewals'"> <xsl:value-of select="position()" /> </xsl:if> </xsl:for-each> </xsl:variable> <table align="center" class="sortable" cellpadding="0" cellspacing="0"> <xsl:for-each select="META/ROW"> <xsl:variable name="head_col" select="COL"/> <TR class="header"> <th><xsl:value-of select="$head_col[1]"/></th> <th><xsl:value-of select="$head_col[2]"/></th> <th><xsl:value-of select="$head_col[3]"/></th> <th><xsl:value-of select="$head_col[4]"/></th> <th><xsl:value-of select="$head_col[5]"/></th> <th><xsl:value-of select="$head_col[6]"/></th> <th><xsl:value-of select="$head_col[7]"/></th> <th>< 7</th> <th>< 30</th> <th>< 60</th> <th>< 90</th> <th>90+</th> </TR> </xsl:for-each> <xsl:for-each select="FOOTER/ROW | ROW"> <xsl:variable name="data_col" select="COL"/> <TR > <td align="right"><xsl:value-of select="$data_col[1]"/></td> <td align="right"><xsl:value-of select="$data_col[2]"/></td> <td align="right"><xsl:value-of select="$data_col[3]"/></td> <td align="right"><xsl:value-of select="$data_col[4]"/></td> <td align="right"><xsl:value-of select="$data_col[5]"/></td> <td align="right"><xsl:value-of select="$data_col[6]"/></td> <td align="right"><xsl:value-of select="$data_col[7]"/></td> <xsl:variable name="lt7" as="xs:number"> <xsl:choose> <xsl:when test="number($head6) and number($data_col[number($head6)])"> <xsl:value-of select="number($data_col[number($head6)])" /> </xsl:when> <xsl:otherwise> <xsl:value-of select="'0'" /> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:variable name="lt30" as="xs:number"> <xsl:choose> <xsl:when test="number($head7) and number($data_col[number($head7)])"> <xsl:value-of select="$lt7+$data_col[number($head7)]" /> </xsl:when> <xsl:otherwise> <xsl:value-of select="$lt7" /> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:variable name="lt60" as="xs:number"> <xsl:choose> <xsl:when test="number($head8) and number($data_col[number($head8)])"> <xsl:value-of select="$lt30+$data_col[number($head8)]" /> </xsl:when> <xsl:otherwise> <xsl:value-of select="$lt30" /> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:variable name="lt90" as="xs:number"> <xsl:choose> <xsl:when test="number($head9) and number($data_col[number($head9)])"> <xsl:value-of select="$lt60+$data_col[number($head9)]" /> </xsl:when> <xsl:otherwise> <xsl:value-of select="$lt60" /> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:variable name="plus90" as="xs:number"> <xsl:choose> <xsl:when test="number($head10) and number($data_col[number($head10)])"> <xsl:value-of select="$lt90+$data_col[number($head10)]" /> </xsl:when> <xsl:otherwise> <xsl:value-of select="$lt90" /> </xsl:otherwise> </xsl:choose> </xsl:variable> <td align="right"><xsl:value-of select="$lt7"/></td> <td align="right"><xsl:value-of select="$lt30"/></td> <td align="right"><xsl:value-of select="$lt60"/></td> <td align="right"><xsl:value-of select="$lt90"/></td> <td align="right"><xsl:value-of select="$plus90"/></td> </TR> </xsl:for-each> </table> </body> </html> </xsl:template> <xsl:template match="CUBRESULT/TITLE/COL"> <div class="title"> </div> </xsl:template> <xsl:template match="CUBRESULT/ERROR"> <div align="center" class="error"> <xsl:apply-templates/> </div> </xsl:template> <xsl:template match="CUBRESULT/COL"> <!-- Need Not To Print DB Name --> </xsl:template> <xsl:template match="FILE/COL"> <!-- Need Not To Print File Name --> </xsl:template> </xsl:stylesheet>