Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
share /
yelp /
xslt /
[ HOME SHELL ]
Name
Size
Permission
Action
db2html.xsl
1.4
KB
-rw-r--r--
info2html.xsl
5.24
KB
-rw-r--r--
links2html.xsl
3.82
KB
-rw-r--r--
mal2html.xsl
4.53
KB
-rw-r--r--
man2html.xsl
4.52
KB
-rw-r--r--
yelp-common.xsl
3.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : man2html.xsl
<?xml version='1.0' encoding='UTF-8'?><!-- -*- indent-tabs-mode: nil -*- --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:yelp="http://www.gnome.org/yelp/ns" xmlns="http://www.w3.org/1999/xhtml" extension-element-prefixes="yelp" version="1.0"> <xsl:import href="/usr/share/yelp-xsl/xslt/common/color.xsl"/> <xsl:import href="/usr/share/yelp-xsl/xslt/common/icons.xsl"/> <xsl:import href="/usr/share/yelp-xsl/xslt/common/html.xsl"/> <xsl:import href="/usr/share/yelp-xsl/xslt/common/l10n.xsl"/> <xsl:import href="/usr/share/yelp-xsl/xslt/common/tmpl.xsl"/> <xsl:include href="yelp-common.xsl"/> <xsl:param name="html.basename" select="'//index'"/> <xsl:param name="linktrail" select="''"/> <xsl:template mode="html.title.mode" match="Man"> <xsl:value-of select="header/title"/> </xsl:template> <xsl:template mode="html.body.mode" match="Man"> <!-- Invisible div that we use to calculate the indent width. --> <xsl:element name="div"> <xsl:attribute name="id">invisible-char</xsl:attribute> <xsl:attribute name="style"> position: absolute; font-family: monospace; visibility: hidden; height: auto; width: auto; </xsl:attribute> <xsl:text>X</xsl:text> </xsl:element> <xsl:apply-templates select="header"/> <xsl:apply-templates select="section"/> </xsl:template> <!-- ======================================================================= --> <xsl:template match="header"> <div class="hgroup"> <h1 class="title"> <xsl:value-of select="title"/> <xsl:text> (</xsl:text> <xsl:value-of select="section"/> <xsl:text>)</xsl:text> </h1> <h3 style="text-align: right;"> <xsl:value-of select="collection"/> </h3> <xsl:if test="@version or @date"> <p style="text-align: right"> <xsl:if test="@version"> Version: <xsl:value-of select="@version"/> </xsl:if> <xsl:if test="@version and @date"><br/></xsl:if> <xsl:if test="@date"> Date: <xsl:value-of select="@date"/> </xsl:if> </p> </xsl:if> </div> </xsl:template> <xsl:template match="br"> <br/> </xsl:template> <xsl:template match="section"> <div class="section" style="padding-top: 1em;"> <h2> <xsl:value-of select="title"/> </h2> <div class="section-contents" style="font-family: monospace;"> <xsl:apply-templates select="sheet"/> </div> </div> </xsl:template> <xsl:template match="sheet"> <xsl:element name="div"> <xsl:attribute name="style"> margin-bottom: 0px; margin-top: <xsl:value-of select="@jump"/>em; margin-left: <xsl:value-of select="@indent"/>ex; </xsl:attribute> <xsl:attribute name="class">sheet</xsl:attribute> <p><xsl:apply-templates select="span|br|a"/></p> </xsl:element> </xsl:template> <xsl:template match="span"> <xsl:element name="span"> <xsl:choose> <xsl:when test="@class = 'B'"> <xsl:attribute name="style"> font-weight: 700; </xsl:attribute> </xsl:when> <xsl:when test="@class = 'I'"> <xsl:attribute name="style"> font-style: italic; </xsl:attribute> </xsl:when> </xsl:choose> <xsl:value-of select="."/> </xsl:element> </xsl:template> <xsl:template match="a"> <xsl:element name="a"> <xsl:attribute name="href"> <xsl:value-of select="@href"/> </xsl:attribute> <xsl:apply-templates select="span|br"/> </xsl:element> </xsl:template> <xsl:template name="html.head.custom"> <!-- The following javascript function fixes up the indent of sheets correctly. The indent should be some number of character widths, but you can't do that in CSS, so we have something like "7ex" as a stand-in (but ex is too thin here). There's an invisible div with the correct styling and a single character which we measure the width of and update each sheet as required. --> <script type="text/javascript" language="javascript" nonce="{$html.csp.nonce}"> <xsl:text> $(document).ready (function () { var div = document.getElementById("invisible-char"); var width = div.clientWidth; var all_divs = document.getElementsByTagName("div"); for (var i=0; i < all_divs.length; i++) { var elt = all_divs[i]; if (elt.getAttribute("class") == "sheet") { var indent_str = elt.style.marginLeft; var indent = indent_str.substr (0, indent_str.length - 2); elt.style.marginLeft = width * indent + "px"; } } }); </xsl:text> </script> </xsl:template> </xsl:stylesheet>
Close