Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libxml-xslt-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
91-22-5.cml
448
B
-rw-r--r--
91-22-5.cml.xml
448
B
-rw-r--r--
91-22-5.xml
602
B
-rw-r--r--
95-48-7.xml
181
B
-rw-r--r--
95-48-7.xsl
879
B
-rw-r--r--
REC-xml-19980210.xml.gz
44.06
KB
-rw-r--r--
REC-xslt-19991116.xml.gz
54.84
KB
-rw-r--r--
XSLT.html
16.9
KB
-rw-r--r--
XSLT.xml.gz
3.69
KB
-rw-r--r--
XSLT.xsl
1.28
KB
-rw-r--r--
agenda.dtd
1.31
KB
-rw-r--r--
agenda.html
104.98
KB
-rw-r--r--
agenda.xml.gz
5.41
KB
-rw-r--r--
agenda.xsl
3.75
KB
-rw-r--r--
bernhard.xml
419
B
-rw-r--r--
bernhard.xsl
390
B
-rw-r--r--
cml.xsl
1.06
KB
-rw-r--r--
cml2cml.xsl
1.73
KB
-rw-r--r--
grammar.xml.gz
44.06
KB
-rw-r--r--
grammar.xsl
780
B
-rw-r--r--
grammar2.xml.gz
44.06
KB
-rw-r--r--
grammar2.xsl
1.31
KB
-rw-r--r--
identity.xml
2.01
KB
-rw-r--r--
identity.xsl
306
B
-rw-r--r--
identity.xsl_org
334
B
-rw-r--r--
test.dtd
997
B
-rw-r--r--
test.xml
2.01
KB
-rw-r--r--
test.xsl
3.83
KB
-rw-r--r--
test2.xml
2.01
KB
-rw-r--r--
test2.xsl.gz
956
B
-rw-r--r--
xmlspec.xsl.gz
3.4
KB
-rw-r--r--
xpath.xsl
1.73
KB
-rw-r--r--
xslt-parser
2.15
KB
-rwxr-xr-x
xslt.xsl
3.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xslt.xsl
<?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp " "> ]> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:e="http://www.w3.org/1999/XSL/Spec/ElementSyntax" exclude-result-prefixes="e" > <xsl:import href="xpath.xsl"/> <xsl:strip-space elements="e:*"/> <xsl:template match="spec" mode="css"> <xsl:text>p.element-syntax { border: solid thin }</xsl:text> <xsl:apply-imports/> </xsl:template> <xsl:template match="e:element-syntax-summary"> <xsl:for-each select="//e:element-syntax"> <xsl:sort select="@name"/> <p class="element-syntax-summary"><code> <xsl:apply-templates select="e:in-category"/> <xsl:text><</xsl:text> <a href="#element-{@name}"> <xsl:text>xsl:</xsl:text><xsl:value-of select="@name"/> </a> <xsl:apply-templates mode="top"/> </code></p> </xsl:for-each> </xsl:template> <xsl:template match="e:element-syntax"> <p class="element-syntax"><a name="element-{@name}"/><code> <xsl:apply-templates select="e:in-category"/> <xsl:text><xsl:</xsl:text><xsl:value-of select="@name"/> <xsl:apply-templates mode="top"/> </code></p> </xsl:template> <xsl:template match="e:in-category"> <xsl:text><!-- Category: </xsl:text> <xsl:value-of select="@name"/> <xsl:text> --></xsl:text> <br/> </xsl:template> <xsl:template match="e:sequence|e:choice|e:model|e:element|e:text" mode="top"> <xsl:text>></xsl:text> <br/> <xsl:text> <!-- Content: </xsl:text> <xsl:apply-templates select="."/> <xsl:text> --></xsl:text> <br/> <xsl:text></xsl:</xsl:text> <xsl:value-of select="../@name"/> <xsl:text>></xsl:text> </xsl:template> <xsl:template match="e:sequence|e:choice"> <xsl:text>(</xsl:text> <xsl:apply-templates/> <xsl:text>)</xsl:text> <xsl:call-template name="repeat"/> </xsl:template> <xsl:template match="e:model"> <xsl:call-template name="group"/> <var><xsl:value-of select="@name"/></var> <xsl:call-template name="repeat"/> </xsl:template> <xsl:template match="e:text">#PCDATA</xsl:template> <xsl:template match="e:element"> <xsl:call-template name="group"/> <a href="#element-{@name}"> <xsl:text>xsl:</xsl:text> <xsl:value-of select="@name"/> </a> <xsl:call-template name="repeat"/> </xsl:template> <xsl:template name="group"> <xsl:if test="position()>1"> <xsl:choose> <xsl:when test="parent :: e:sequence">, </xsl:when> <xsl:when test="parent :: e:choice"> | </xsl:when> </xsl:choose> </xsl:if> </xsl:template> <xsl:template name="repeat"> <xsl:choose> <xsl:when test="@repeat='one-or-more'"> <xsl:text>+</xsl:text> </xsl:when> <xsl:when test="@repeat='zero-or-more'"> <xsl:text>*</xsl:text> </xsl:when> <xsl:when test="@repeat='zero-or-one'"> <xsl:text>?</xsl:text> </xsl:when> </xsl:choose> </xsl:template> <xsl:template match="e:empty" mode="top"> <xsl:text> /></xsl:text> </xsl:template> <xsl:template match="e:attribute" mode="top"> <br/> <xsl:text> </xsl:text> <xsl:choose> <xsl:when test="@required='yes'"> <b><xsl:value-of select="@name"/></b> </xsl:when> <xsl:otherwise> <xsl:value-of select="@name"/> </xsl:otherwise> </xsl:choose> <xsl:text> = </xsl:text> <xsl:apply-templates/> </xsl:template> <xsl:template match="e:data-type"> <xsl:if test="position()>1"> | </xsl:if> <var><xsl:value-of select="@name"/></var> </xsl:template> <xsl:template match="e:constant"> <xsl:if test="position()>1"> | </xsl:if> <xsl:text>"</xsl:text> <xsl:value-of select="@value"/> <xsl:text>"</xsl:text> </xsl:template> <xsl:template match="e:attribute-value-template"> <xsl:text>{ </xsl:text> <xsl:apply-templates/> <xsl:text> }</xsl:text> </xsl:template> <xsl:template match="var"> <var><xsl:apply-templates/></var> </xsl:template> </xsl:stylesheet>
Close