xslt

      XSLT GudangMovies21 Rebahinxxi LK21

      XSLT (Extensible Stylesheet Language Transformations) is a language originally designed for transforming XML documents into other XML documents, or other formats such as HTML for web pages, plain text, or XSL Formatting Objects. These formats can be subsequently converted to formats such as PDF, PostScript, and PNG. Support for JSON and plain-text transformation was added in later updates to the XSLT 1.0 specification.
      As of August 2022, the most recent stable version of the language is XSLT 3.0, which achieved Recommendation status in June 2017.
      XSLT 3.0 implementations support Java, .NET, C/C++, Python, PHP and NodeJS. An XSLT 3.0 JavaScript library can also be hosted within the web browser. Modern web browsers also include native support for XSLT 1.0.
      The XSLT document transformation specifies how to transform an XML document into new document (usually XML, but other formats, such as plain text are supported). Typically, input documents are XML files, but anything from which the processor can build an XQuery and XPath Data Model can be used, such as relational database tables or geographical information systems.
      While XSLT was originally designed as a special-purpose language for XML transformation, the language is Turing-complete, making it theoretically capable of arbitrary computations.


      History


      XSLT is influenced by functional languages, and by text-based pattern matching languages like SNOBOL and AWK. Its most direct predecessor is DSSSL, which did for SGML what XSLT does for XML.

      XSLT 1.0: XSLT was part of the World Wide Web Consortium (W3C)'s eXtensible Stylesheet Language (XSL) development effort of 1998–1999, a project that also produced XSL-FO and XPath. Some members of the standards committee that developed XSLT, including James Clark, the editor, had previously worked on DSSSL. XSLT 1.0 was published as a W3C recommendation in November 1999. Despite its age, XSLT 1.0 is still widely used (as of 2018), since later versions are not supported natively in web browsers or for environments like LAMP.
      XSLT 2.0: after an abortive attempt to create a version 1.1 in 2001, the XSL working group joined forces with the XQuery working group to create XPath 2.0, with a richer data model and type system based on XML Schema. Building on this is XSLT 2.0, developed under the editorship of Michael Kay, which reached recommendation status in January 2007. The most important innovations in XSLT 2.0 include:
      String manipulation using regular expressions
      Functions and operators for manipulating dates, times, and durations
      Multiple output documents
      Grouping (creating hierarchic structure from flat input sequences)
      A richer type system and stronger type checking
      XSLT 3.0: became a W3C Recommendation on 8 June 2017. The main new features are:
      Streaming transformations: in previous versions the entire input document had to be read into memory before it could be processed, and output could not be written until processing had finished. XSLT 3.0 allows XML streaming which is useful for processing documents too large to fit in memory or when transformations are chained in XML Pipelines.
      Packages, to improve the modularity of large stylesheets.
      Improved handling of dynamic errors with, for example, an xsl:try instruction.
      Support for maps and arrays, enabling XSLT to handle JSON as well as XML.
      Functions can now be arguments to other (higher-order) functions.


      Design and processing model



      The XSLT processor takes one or more XML source documents, plus one or more XSLT stylesheets, and processes them to produce one or multiple output documents. In contrast to widely implemented imperative programming languages like C, XSLT is declarative. The basic processing paradigm is pattern matching. Rather than listing an imperative sequence of actions to perform in a stateful environment, template rules only define how to handle a node matching a particular XPath-like pattern, if the processor should happen to encounter one, and the contents of the templates effectively comprise functional expressions that directly represent their evaluated form: the result tree, which is the basis of the processor's output.
      A typical processor behaves as follows. First, assuming a stylesheet has already been read and prepared, the processor builds a source tree from the input XML document. It then processes the source tree's root node, finds the best-matching template for that node in the stylesheet, and evaluates the template's contents. Instructions in each template generally direct the processor to either create nodes in the result tree, or to process more nodes in the source tree in the same way as the root node. Finally the result tree is serialized as XML or HTML text.


      XPath



      XSLT uses XPath to identify subsets of the source document tree and perform calculations. XPath also provides a range of functions, which XSLT itself further augments.
      XSLT 1.0 uses XPath 1.0, while XSLT 2.0 uses XPath 2.0. XSLT 3.0 will work with either XPath 3.0 or 3.1. In the case of 1.0 and 2.0, the XSLT and XPath specifications were published on the same date. With 3.0, however, they were no longer synchronized; XPath 3.0 became a Recommendation in April 2014, followed by XPath 3.1 in February 2017; XSLT 3.0 followed in June 2017.


      XQuery compared



      XSLT functionalities overlap with those of XQuery, which was initially conceived as a query language for large collections of XML documents.
      The XSLT 2.0 and XQuery 1.0 standards were developed by separate working groups within W3C, working together to ensure a common approach where appropriate. They share the same data model, type system, and function library, and both include XPath 2.0 as a sublanguage.
      The two languages, however, are rooted in different traditions and serve the needs of different communities. XSLT was primarily conceived as a stylesheet language whose primary goal was to render XML for the human reader on screen, on the web (as a web template language), or on paper. XQuery was primarily conceived as a database query language in the tradition of SQL.
      Because the two languages originate in different communities, XSLT is stronger in its handling
      of narrative documents with more flexible structure, while XQuery is stronger in its data handling, for example when performing relational joins.


      Media types


      The element can optionally take the attribute media-type, which allows one to set the media type (or MIME type) for the resulting output, for example: . The XSLT 1.0 recommendation recommends the more general attribute types text/xml and application/xml since for a long time there was no registered media type for XSLT. During this time text/xsl became the de facto standard. In XSLT 1.0 it was not specified how the media-type values should be used.
      With the release of the XSLT 2.0, the W3C recommended in 2007 the registration of the MIME media type application/xslt+xml and it was later registered with the Internet Assigned Numbers Authority.
      Pre-1.0 working drafts of XSLT used text/xsl in their embedding examples, and this type was implemented and continued to be promoted by Microsoft in Internet Explorer and MSXML circa 2012. It is also widely recognized in the xml-stylesheet processing instruction by other browsers. In practice, therefore, users wanting to control transformation in the browser using this processing instruction were obliged to use this unregistered media type.


      Examples


      These examples use the following incoming XML document:


      = Example 1 (transforming XML to XML)

      =
      This XSLT stylesheet provides templates to transform the XML document:
      Its evaluation results in a new XML document, having another structure:


      = Example 2 (transforming XML to XHTML)

      =
      Processing the following example XSLT file

      with the XML input file shown above results in the following XHTML (whitespace has been adjusted here for clarity):

      This XHTML generates the output below when rendered in a web browser.

      In order for a web browser to be able to apply an XSL transformation to an XML document on display, an XML stylesheet processing instruction can be inserted into XML. So, for example, if the stylesheet in Example 2 above were available as "example2.xsl", the following instruction could be added to the original incoming XML:

      In this example, text/xsl is technically incorrect according to the W3C specifications (which say the type should be application/xslt+xml), but it is the only media type that is widely supported across browsers as of 2009, and the situation is unchanged in 2021.


      Processor implementations


      RaptorXML from Altova is an XSLT 3.0 processor available in the XMLSpy development toolkit and as a free-standing server implementation, invoked using a REST interface.
      IBM offers XSLT processing embedded in a special-purpose hardware appliance under the Datapower brand.
      libxslt is a free library released under the MIT License that can be reused in commercial applications. It is based on libxml and implemented in C for speed and portability. It supports XSLT 1.0 and EXSLT extensions.
      It can be used at the command line via xsltproc which is included in macOS and many Linux distributions, and can be used on Windows via Cygwin.
      The WebKit and Blink layout engines, used for example in the Safari and Chrome web browsers respectively, uses the libxslt library to do XSL transformations.
      Bindings exist for Python, Perl, Ruby, PHP, Common Lisp, Tcl, and C++.
      Microsoft provides two XSLT processors (both XSLT 1.0 only). The earlier processor MSXML provides COM interfaces; from MSXML 4.0 it also includes the command line utility msxsl.exe. The .NET runtime includes a separate built-in XSLT processor in its System.Xml.Xsl library.
      Saxon is an XSLT 3.0 and XQuery 3.1 processor with open-source and proprietary versions for stand-alone operation and for Java, JavaScript and .NET. A separate product Saxon-JS offers XSLT 3.0 processing on Node.js and in the browser.
      xjslt is an open-source XSLT 2.0 compiler for JavaScript supporting Node.js and the browser.
      Xalan is an open source XSLT 1.0 processor from the Apache Software Foundation available for Java and C++. A variant of the Xalan processor is included as the default XSLT processor in the standard Java distribution from Oracle.
      Web browsers: Safari, Chrome, Firefox, Opera and Internet Explorer all support XSLT 1.0 (only). Browsers can perform on-the-fly transformations of XML files and display the transformation output in the browser window. This is done either by embedding the XSL in the XML document or by referencing a file containing XSL instructions from the XML document. The latter may not work with Chrome on files from local filesystem because of its security model.
      Adobe AXSLE engine, a proprietary library


      = Performance

      =
      Most early XSLT processors were interpreters. More recently, code generation is increasingly common, using portable intermediate languages (such as Java bytecode or .NET Common Intermediate Language) as the target. However, even the interpretive products generally offer separate analysis and execution phases, allowing an optimized expression tree to be created in memory and reused to perform multiple transformations. This gives substantial performance benefits in online publishing applications, where the same transformation is applied many times per second to different source documents. This separation is reflected in the design of XSLT processing APIs (such as JAXP).
      Early XSLT processors had very few optimizations. Stylesheet documents were read into Document Object Models and the processor would act on them directly. XPath engines were also not optimized. Increasingly, however, XSLT processors use optimization techniques found in functional programming languages and database query languages, such as static rewriting of an expression tree (e.g., to move calculations out of loops), and lazy pipelined evaluation to reduce the memory footprint of intermediate results (and allow "early exit" when the processor can evaluate an expression such as following-sibling::*[1] without a complete evaluation of all subexpressions). Many processors also use tree representations that are significantly more efficient (in both space and time) than general-purpose DOM implementations.
      In June 2014, Debbie Lockett and Michael Kay introduced an open-source benchmarking framework for XSLT processors called XT-Speedo.


      See also


      XSLT elements – a list of some commonly used XSLT structures.
      Muenchian grouping – a dialect differential between XSLT1 and XSLT2+.
      eXtensible Stylesheet Language – a family of languages of which XSLT is a member
      XQuery and XSLT compared
      XSL formatting objects or XSL-FO – An XML-based language for documents, usually generated by transforming source documents with XSLT, consisting of objects used to create formatted output
      Identity transform – a starting point for filter chains that add or remove data elements from XML trees in a transformation pipeline
      Apache Cocoon – a Java-based framework for processing data with XSLT and other transformers.


      References




      Further reading


      XSLT by Doug Tidwell, published by O’Reilly (ISBN 0-596-00053-7)
      XSLT Cookbook by Sal Mangano, published by O’Reilly (ISBN 0-596-00974-7)
      XSLT 2.0 Programmer's Reference by Michael Kay (ISBN 0-764-56909-0)
      XSLT 2.0 and XPath 2.0 Programmer's Reference by Michael Kay (ISBN 978-0-470-19274-0)
      XSLT 2.0 Web Development by Dmitry Kirsanov (ISBN 0-13-140635-3)
      XSL Companion, 2nd Edition by Neil Bradley, published by Addison-Wesley (ISBN 0-201-77083-0)
      XSLT and XPath on the Edge (Unlimited Edition) by Jeni Tennison, published by Hungry Minds Inc, U.S. (ISBN 0-7645-4776-3)
      XSLT & XPath, A Guide to XML Transformations by John Robert Gardner and Zarella Rendon, published by Prentice-Hall (ISBN 0-13-040446-2)
      XSL-FO by Dave Pawson, published by O'Reilly (ISBN 978-0-596-00355-5)


      External links



      Documentation
      XSLT 1.0 W3C Recommendation
      XSLT 2.0 W3C Recommendation
      XSLT 3.0 W3C Recommendation
      "XSLT: Extensible Stylesheet Language Transformations". MDN. Retrieved 2025-02-09.
      XSLT Reference (MSDN)
      XSLT Elements (Saxon)
      XSLT introduction and reference
      XSLT code libraries
      EXSLT is a widespread community initiative to provide extensions to XSLT.
      FXSL is a library implementing support for Higher-order functions in XSLT. FXSL is written in XSLT itself.
      The XSLT Standard Library xsltsl, provides the XSLT developer with a set of XSLT templates for commonly used functions. These are implemented purely in XSLT, that is they do not use any extensions. xsltsl is a SourceForge project.
      Kernow A GUI for Saxon that provides a point and click interface for running transforms.
      xslt.js – Transform XML with XSLT JavaScript library that transforms XML with XSLT in the browser.

    Kata Kunci Pencarian: xslt

    xtxtraslotxteamxtreme slotxt.com apkxt exchangextraplay88xtreme motorbikes mod apk mx kingxsltxslt if condition Search Results

    xslt

    Daftar Isi

    XSLT Introduction - W3Schools

    XSLT stands for XSL Transformations. This tutorial will teach you how to use XSLT to transform XML documents into other formats (like transforming XML into HTML).

    XSLT - Wikipedia

    XSLT (Extensible Stylesheet Language Transformations) is a language originally designed for transforming XML documents into other XML documents, [1] or other formats such as HTML for web pages, plain text, or XSL Formatting Objects. These formats can be subsequently converted to formats such as PDF, PostScript, and PNG. [2] .

    XML and XSLT - W3Schools

    XSLT (eXtensible Stylesheet Language Transformations) is the recommended style sheet language for XML. XSLT is far more sophisticated than CSS. With XSLT you can add/remove elements and attributes to or from the output file.

    XSLT: Extensible Stylesheet Language Transformations

    Feb 5, 2025 · XSLT allows a stylesheet author to transform a primary XML document in two significant ways: manipulating and sorting the content, including a wholesale reordering of it if so desired, and transforming the content into a different format.

    The Extensible Stylesheet Language Family (XSL) - World Wide …

    XSLT and XSL-FO are W3C Recommendations for defining XML document transformation and presentation. Use XSLT to transform documents into XSL-FO for printing or viewing; you can also use XSLT as a general XML-aware programming and transformation language, and you can use XSL-FO directly without XSLT.

    XSLT Tutorial

    XSLT Tutorial - EXtensible Stylesheet Language Transformation commonly known as XSLT is a way to transform the XML document into other formats such as XHTML. This tutorial explains the basics of XSLT. It contains chapters discussing all the basic components of …

    XSLT - Transformation - W3Schools

    Example study: How to transform XML into XHTML using XSLT? The details of this example will be explained in the next chapter. The root element that declares the document to be an XSL style sheet is <xsl:stylesheet> or <xsl:transform>. Note: <xsl:stylesheet> and <xsl:transform> are completely synonymous and either can be used!

    XSLT: Extensible Stylesheet Language Transformations - MDN

    Feb 5, 2025 · An XSLT stylesheet is marked as such by the inclusion of a standard XSLT heading. The outermost element in an XSLT stylesheet must be the <xsl:stylesheet> element (an acceptable alternate is the <xsl:transform> element). This element will include at least one namespace declaration and the mandatory version attribute.

    XSLT Syntax - GeeksforGeeks

    Sep 28, 2023 · XSLT stands for Extensible Stylesheet Language Transformation. It is an integrated concept with an XML. It is not used for Visual effects. However, it is used for extracting or transforming data from XML and using the combination of HTML and CSS to format them.

    The Extensible Stylesheet Language Family (XSL) - World Wide …

    An XSLT stylesheet specifies the presentation of a class of XML documents by describing how an instance of the class is transformed into an XML document that uses a formatting vocabulary, such as (X)HTML or XSL-FO.