Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
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 /
yelp-xsl /
xslt /
mallard /
html /
[ HOME SHELL ]
Name
Size
Permission
Action
mal2html-api.xsl
8.69
KB
-rw-r--r--
mal2html-block.xsl
23.33
KB
-rw-r--r--
mal2html-facets.xsl
6.15
KB
-rw-r--r--
mal2html-gloss.xsl
6.55
KB
-rw-r--r--
mal2html-inline.xsl
11.11
KB
-rw-r--r--
mal2html-links.xsl
56.59
KB
-rw-r--r--
mal2html-list.xsl
15.39
KB
-rw-r--r--
mal2html-math.xsl
4.89
KB
-rw-r--r--
mal2html-media.xsl
18.62
KB
-rw-r--r--
mal2html-page.xsl
53.87
KB
-rw-r--r--
mal2html-svg.xsl
4.53
KB
-rw-r--r--
mal2html-table.xsl
18.95
KB
-rw-r--r--
mal2html-ui.xsl
25.18
KB
-rw-r--r--
mal2html.xsl
1.92
KB
-rw-r--r--
mal2xhtml.xsl
3.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mal2html-svg.xsl
<?xml version='1.0' encoding='UTF-8'?><!-- -*- indent-tabs-mode: nil -*- --> <!-- This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; see the file COPYING.LGPL. If not, see <http://www.gnu.org/licenses/>. --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:mal="http://projectmallard.org/1.0/" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:exsl="http://exslt.org/common" xmlns="http://www.w3.org/1999/xhtml" exclude-result-prefixes="mal svg xlink" extension-element-prefixes="exsl" version="1.0"> <!--!!========================================================================== Mallard to HTML - SVG Handle embedded SVG. :Revision: version="1.0" date="2010-06-04" status="final" This stylesheet matches embedded SVG in %{mal2html.block.mode} and processes it in %{mal2html.svg.mode}. --> <!--%%========================================================================== mal2html.svg.mode Output SVG and handle Mallard extensions. :Revision: version="3.18" date="2015-05-04" status="final" This mode is used for processing SVG embedded into Mallard documents. For most types of SVG content, it simply copies the input directly, except it outputs the SVG in a way that allows the namespace to stripped for non-XML output. It checks for Mallard linking using the #{mal:xref} attribute and transforms this to an XLink #{xlink:href} attribute. --> <xsl:template mode="mal2html.svg.mode" match="svg:*"> <xsl:choose> <xsl:when test="@mal:xref"> <xsl:variable name="target"> <xsl:call-template name="mal.link.target"> <xsl:with-param name="node" select="."/> <xsl:with-param name="xref" select="@mal:xref"/> </xsl:call-template> </xsl:variable> <xsl:variable name="title"> <xsl:call-template name="mal.link.content"> <xsl:with-param name="xref" select="@mal:xref"/> <xsl:with-param name="role" select="'text'"/> </xsl:call-template> </xsl:variable> <svg:a xlink:href="{$target}" xlink:title="{$title}"> <xsl:element name="{local-name(.)}" namespace="{$html.svg.namespace}"> <xsl:for-each select="@*[ namespace-uri(.)!='http://projectmallard.org/1.0/' and namespace-uri(.)!='http://www.w3.org/1999/xlink']"> <xsl:copy-of select="."/> </xsl:for-each> <xsl:apply-templates mode="mal2html.svg.mode" select="node()"/> </xsl:element> </svg:a> </xsl:when> <xsl:otherwise> <xsl:element name="{local-name(.)}" namespace="{$html.svg.namespace}"> <xsl:for-each select="@*[namespace-uri(.)!='http://projectmallard.org/1.0/']"> <xsl:copy-of select="."/> </xsl:for-each> <xsl:apply-templates mode="mal2html.svg.mode" select="node()"/> </xsl:element> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template mode="mal2html.svg.mode" match="text()"> <xsl:copy-of select="."/> </xsl:template> <xsl:template mode="mal2html.block.mode" match="svg:svg"> <xsl:variable name="if"><xsl:call-template name="mal.if.test"/></xsl:variable><xsl:if test="$if != ''"> <xsl:variable name="id"> <xsl:choose> <xsl:when test="@xml:id"> <xsl:value-of select="@xml:id"/> </xsl:when> <xsl:when test="@id"> <xsl:value-of select="@id"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="generate-id(.)"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <div> <xsl:call-template name="html.class.attr"> <xsl:with-param name="class"> <xsl:text>svg</xsl:text> <xsl:if test="$if != 'true'"> <xsl:text> if-if </xsl:text> <xsl:value-of select="$if"/> </xsl:if> </xsl:with-param> </xsl:call-template> <xsl:apply-templates mode="mal2html.svg.mode" select="."/> </div> </xsl:if> </xsl:template> </xsl:stylesheet>
Close