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: rxxsl.xml
Close
<?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="CUBRESULT"> <html><body> <script language='javascript'> function xy(){ history.go(-1); } </script> <link href="/edash/assets/default/styles/search.css" rel="stylesheet" type="text/css"/> <br/> <TABLE align="center" width="95%"> <TR> <TD align='left' width='40%'><IMG SRC="/edash/assets/default/images/search_top.gif" width="144" height="79" border="0"></IMG></TD> <TD align='left'> <input type="button" name="back" value="Back" onClick="return xy()"/> </TD> </TR> </TABLE> <xsl:apply-templates/> <TABLE align="center" width="95%"> <TR> <TD align='right'> <input type="button" name="back" value="Back" onClick="return xy()"/> </TD> <TD align='right' ><IMG SRC="/edash/assets/default/images/search_bottom.gif" width="215" height="50" border="0" align="right"></IMG></TD> </TR> </TABLE> </body></html> </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:template match="TITLE/COL"> <div><table style="margin:5px" width="95%"><tr><td class="report_maintitle"><B> <xsl:apply-templates/> </B></td></tr></table></div> </xsl:template> <xsl:template match="META/ROW"> <TR class="tblhrow"> <xsl:apply-templates/> </TR> </xsl:template> <xsl:template match="META/ROW/COL"> <TH> <xsl:apply-templates/> </TH> </xsl:template> <xsl:template match="ROWSET"> <TABLE align="center" class="table_sub"> <xsl:apply-templates/> </TABLE> </xsl:template> <xsl:template match="FOOTER"> <TFOOT> <xsl:apply-templates/> </TFOOT> </xsl:template> <xsl:template match="ROW"> <TR class="tblrow"> <xsl:apply-templates/> </TR> </xsl:template> <xsl:template match="COL"> <TD align="{@align}"> <xsl:apply-templates/> </TD> </xsl:template> <xsl:template match="ERROR"> <div align="center" class="error"> <xsl:apply-templates/> </div> </xsl:template> </xsl:stylesheet>