Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
Windows
/
System32
/
srm
/
xslt
/
Edit File Name :
QuotaUsage_HTML.xsl
<?xml version="1.0" ?> <!-- Copyright (C) 2004, Microsoft Corporation --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:global="urn:srm-extension-obj" > <!-- XSLT parameters --> <xsl:param name="IsActiveHTML"/> <xsl:param name="RelativeFilesPath"/> <!-- Common definitions --> <xsl:include href="Common_HTML.xsl"/> <xsl:include href="functions.xsl"/> <!-- Main entry point --> <xsl:template match="StorageReport"> <HTML> <head><xsl:comment>HEAD PLACEHOLDER</xsl:comment></head> <STYLE> BODY {font-family:tahoma;font-size:0.75em} TD {font-size:0.67em} TABLE {border-collapse:collapse} </STYLE> <BODY id="BodyID"> <p><xsl:apply-templates select="ReportHeader"/> </p> <p><xsl:apply-templates select="ReportSummary"/> </p> <p><xsl:apply-templates select="ReportData"/> </p> </BODY> </HTML> </xsl:template> <!-- Generic table-of-contents (good for FileList-style reports) --> <xsl:template name="DisplayQuotaFolder"> <xsl:choose> <xsl:when test="FolderURL"> <!-- do this to avoid escaping of non-ASCII characters in URLs --> <xsl:text disable-output-escaping="yes"><a href='</xsl:text> <xsl:choose> <xsl:when test="RemotePath"> <xsl:value-of select="RemotePath/Path[position()=1]" disable-output-escaping="yes"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="FolderURL"/> </xsl:otherwise> </xsl:choose> <xsl:text>' title='</xsl:text> <xsl:choose> <xsl:when test="RemotePath"> <xsl:value-of select="RemotePath/Path[position()=1]" disable-output-escaping="yes"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="FolderURL"/> </xsl:otherwise> </xsl:choose> <xsl:text disable-output-escaping="yes">'></xsl:text> <xsl:value-of select="Folder"/> <xsl:text disable-output-escaping="yes"></a></xsl:text> </xsl:when> <xsl:otherwise> <xsl:value-of select="Folder"/> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- Table of contents --> <xsl:template name="TOC"> <a href="#ReportTotals"> <xsl:value-of select="$SrmStringRes_ReportTotals"/> </a><br/> <a href="#ReportStatistics"> <xsl:value-of select="$SrmStringRes_ReportStatistics"/> </a><br/> </xsl:template> <!-- Report Body rendering --> <xsl:template match="ReportData"> <a name="ReportStatistics"/> <TABLE BORDER="1" borderColor="{$DarkBorderColor}" cellPadding="5"> <xsl:if test="$IsActiveHTML = 'yes'"> <xsl:attribute name="style">behavior:url(<xsl:value-of select="$RelativeFilesPath"/>sort.htc)</xsl:attribute> </xsl:if> <THEAD bgColor="{$TableHeaderBackground}" style="font:bold" linesPerItem="2"> <TR noData="yes"> <TD colSpan="6" style="TEXT-ALIGN: center; font-size:0.83em" > <xsl:value-of select="$SrmStringRes_ReportStatistics"/> </TD> </TR> <TR> <TD colSpan="6" sort="yes" style="{$THeadBottomBorderStyle}"> <xsl:value-of select="$SrmStringRes_Folder"/> </TD> <TR> <TD sort="yes" style="{$THeadRightBorderStyle}"> <xsl:value-of select="$SrmStringRes_Owner"/> </TD> <TD sort="yes" style="{$THeadRightBorderStyle}"> <xsl:value-of select="$SrmStringRes_QuotaMB"/> </TD> <TD sort="yes" style="{$THeadRightBorderStyle}"> <xsl:value-of select="$SrmStringRes_UsageMB"/> </TD> <TD sort="yes" style="{$THeadRightBorderStyle}"> <xsl:value-of select="$SrmStringRes_Used"/> </TD> <TD sort="yes" style="{$THeadRightBorderStyle}"> <xsl:value-of select="$SrmStringRes_PeakUsage"/> </TD> <TD sort="yes"> <xsl:value-of select="$SrmStringRes_PeakUsageTime"/> </TD> </TR> </TR> </THEAD> <TBODY> <xsl:apply-templates select="Item"/> </TBODY> </TABLE> <p> <a href="#Top-report"> <xsl:value-of select="$SrmStringRes_ToTopOf"/> </a> </p> </xsl:template> <xsl:template match="Item"> <TR> <TD colSpan="6" style="{$TBodyRightBorderStyle}"> <xsl:call-template name="DisplayQuotaFolder"/> </TD> </TR> <TR> <TD style="{$TBodyRightBorderStyle}"> <xsl:value-of select="Owner"/> </TD> <TD style="{$TBodyRightBorderStyle}"> <xsl:value-of select="global:ConvertToMb(string(Limit))"/> </TD> <TD style="{$TBodyRightBorderStyle}"> <xsl:value-of select="global:ConvertToMb(string(Used))"/> </TD> <TD style="{$TBodyRightBorderStyle}"> <xsl:value-of select="PercentUsed"/> <xsl:text> %</xsl:text> </TD> <TD style="{$TBodyRightBorderStyle}"> <xsl:value-of select="global:ConvertToMb(string(PeakUsage))"/> </TD> <TD> <xsl:value-of select="PeakUsageTime"/> </TD> </TR> </xsl:template> <!-- Report Summary rendering --> <xsl:template match="ReportSummary"> <p> <a name="ReportTotals"/> <TABLE BORDER="1" borderColor="{$DarkBorderColor}" cellPadding="5" style="TEXT-ALIGN: center; WIDTH: 37.5em"> <THEAD bgColor="{$TableHeaderBackground}" style="font:bold"> <TR noData="yes"> <TD colSpan="4" style="font-size:0.83em" > <xsl:value-of select="$SrmStringRes_ReportTotals"/> </TD> </TR> <TR> <TD colSpan="2" style="{$THeadRightBorderStyle};{$THeadBottomBorderStyle}"> <xsl:value-of select="$SrmStringRes_QuotasShownInReport"/> </TD> <TD colSpan="2" style="{$THeadBottomBorderStyle}"> <xsl:value-of select="$SrmStringRes_AllQuotasMatchingReportCriteria"/> </TD> </TR> <TR> <TD style="{$THeadRightBorderStyle}"> <xsl:value-of select="$SrmStringRes_Quotas"/> </TD> <TD style="{$THeadRightBorderStyle}"> <xsl:value-of select="$SrmStringRes_TotalUsageMB"/> </TD> <TD style="{$THeadRightBorderStyle}"> <xsl:value-of select="$SrmStringRes_Quotas"/> </TD> <TD > <xsl:value-of select="$SrmStringRes_TotalUsageMB"/> </TD> </TR> </THEAD> <TBODY> <TR> <TD style="{$TBodyRightBorderStyle}"> <xsl:value-of select="ReportTotals/@QuotaCount"/> </TD> <TD style="{$TBodyRightBorderStyle}"> <xsl:value-of select="global:ConvertToMb(string(ReportTotals/@Used))"/> </TD> <TD style="{$TBodyRightBorderStyle}"> <xsl:value-of select="NamespaceTotals/@QuotaCount"/> </TD> <TD style="{$TBodyBottomBorderStyle}"> <xsl:value-of select="global:ConvertToMb(string(NamespaceTotals/@Used))"/> </TD> </TR> </TBODY> </TABLE> </p> <p> <a href="#Top-report"> <xsl:value-of select="$SrmStringRes_ToTopOf"/> </a> </p> </xsl:template> </xsl:stylesheet>
Save