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.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); } function myprint() { if (!window.print) alert('Print not supported'); window.top.focus(); window.top.print(); return; } </script> <script type="text/javascript" src="/edash/jscripts/sorttable.js"> </script> <link href="/edash/assets/default/styles/search.css" rel="stylesheet" type="text/css"/> <xsl:apply-templates/> </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 class="title"> </div> </xsl:template> <xsl:template match="META/ROW"> <TR class="header"> <xsl:apply-templates/> </TR> </xsl:template> <xsl:template match="META/ROW/COL"> <TH> <xsl:apply-templates/> </TH> </xsl:template> <!--xsl:template match="FOOTER"> <TFOOT> <xsl:apply-templates/> </TFOOT> </xsl:template> <xsl:template match="BODY"> <TBODY> <xsl:apply-templates/> </TBODY> </xsl:template--> <xsl:template match="ROWSET"> <TABLE align="center" class="sortable" cellpadding="0" cellspacing="0"> <xsl:apply-templates/> </TABLE> </xsl:template> <xsl:template match="ROW"> <TR> <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>