Download presentation
Presentation is loading. Please wait.
1
1 Extensible Stylesheet Language (XSL) Extensible Stylesheet Language (XSL)
2
2 The XSL Standard XSL consists of 3 parts: XPathXPath (navigation in documents) XSLTXSLT (transformation of documents) XSLFOXSLFO (FO for formatting objects) - A rather complex language for typesetting (e.g., for preparing text for printing) - It will not be taught
3
3 XML Path Language (XPath)
4
4 XML example revisited:
5
5 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml
6
6 The XML DOM Model The root is implicit (Does not appear in the text of the XML document)
7
7 world.dtd
8
8 The XPath Language XPath expressions are used for addressing elements (nodes) of an XML document Used in XSLT (next subject today) and in XQuery (a query language for XML) The syntax resembles that of the Unix file system - But the semantics have some substantial differences /countries/country[population>10000000]
9
9 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml /countries/country[population>10000000]
10
10 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //country[@continent="Asia"]/city
11
11 XPath Expressions An XPath expression (or just XPath for short) matches paths in the XML tree An absolute path begins with the root of the document - Starts with " / " (or " // ") - For example, /countries/country/city, //city A relative path begins with a context node that is defined by the application that uses the XPath - For example, city/name, or./name
12
12 Applying XPath to XML Formally, the result of applying an XPath e to an XML document (or a context node in the document) is the list of all nodes n in the document, such that e matches the path from the root (or the context node) to n The order in the list is defined by the order of the nodes in the document
13
13 XPath Steps and Axis An XPath describes a sequence of steps that together characterize a path A step is defined by an axis that specifies a tree relationship between nodes - More particularly, the axis describes how to get from the current node to the next one - For example, parent-child, child-parent, ancestor- descendant, etc. Consecutive steps are separated by /
14
14 Child Axis A child axis has the simple form tagName - Go to an element child with the tag tagName For example, - /tagName matches the tagName child of root - city/name - /countries/country/city The child axis * matches every tag - For example: /*/*/city, */name
15
15 Child-Axis Examples /countries
16
16 Child-Axis Examples /countries/country/city
17
17 Child-Axis Examples city/name Context
18
18 Child-Axis Examples /*/country/* An attribute is not an element child!
19
19 Self and Descendant-or-Self The self axis “. ” denotes the identity relationship - That is, the step “remain in the current node” - /countries/country/. ≡ /countries/country - country/./city ≡ country/city The descendant-or-self axis means: either stay in the current node or go to some descendant of the current node - descendant-or-self:node(), // is a shotrcut notation for /descendant-or- self:node()/ - For example, country//name
20
20 Descendant Examples /countries//name
21
21 Descendant Examples.//* Context
22
22 Other Axis Types The parent axis “..” denotes the parent relationship - That is, the step “go to the parent of the current node” - For example, //name/../population XPath has more axis types (denoted by a different syntax from the ones shown earlier): - descendant - ancestor - ancestor-or-self - following-sibling - preceding-sibling -…-…
23
23 Referring Attributes The attribute axis is denoted @attName - That is, “go to the attribute attName of the current node” The operator @* matches every attribute
24
24 Attribute Examples //country/@continent
25
25 Attribute Examples @continent Context
26
26 Attribute Examples //@*
27
27 XPath Predicates Predicates in XPath are used for filtering out steps For example, //city[@captial="yes"] will match only capital cities Formally, given a predicate [PExpr], the expression PExpr is transformed into a Boolean value and the step is taken only if this value is true - The node reached in the last step is the context node XPath has a rather rich language for predicate expressions ; we only demonstrate common ones
28
28 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //country[./population>10000000] The XPath./population is transformed into a number by taking its embedded text The XPath./population is relative to the current node (i.e., country) in the path Equivalent to //country[population>10000000]
29
29 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //country[.//city] An XPath evaluates to true if and only if its result is not empty
30
30 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //country[//city] Why?
31
31 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //country[population[.>3000000 and @year>2003]]
32
32 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //country[name="Israel" or name="Spain"]/population
33
33 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //country/city[2] A number acts as an index That is, the number n evaluates to true if n is the position of the node among all those reached in the last step (i.e., city)
34
34 Functions Inside XPath predicates, you can use a set of predefined functions Here are some examples: - last() – returns the number of nodes obtained from the last axis step - position() – returns the position of the node in the list of nodes satisfying the last axis step - name() – returns the name (tag) of the current node - count(XPath) – returns the number of nodes satisfying XPath
35
35 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //country/city[last()]
36
36 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //city[position()<2]
37
37 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //*[name()="city" or name()="country"]
38
38 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //*[starts-with(name(),“c")]
39
39 Israel 6199008 Jerusalem Ashdod France 60424213 world.xml //country[count(./city)>=1]
40
40 Final Remarks The syntax of XPath that was presented here is the abbreviated syntax For example, city/../@name is an abbrv. of child::city/parent::node() /attribute::name More details on XPath: - XPath tutorial in W3Schools XPath tutorial in W3Schools - XPath W3C Recommendation XPath W3C Recommendation
41
41 XSL Transformations (XSLT) An ExampleAn Example: Useful Links in the DBI site
42
42 XSLT XSLT is a language for transforming XML documents into other XML documents - For example, XHTML, WML - Can also transform XML to general text documents, e.g., SQL programs An XSLT program is itself an XML document (called an XSL stylesheet) that describes the transformation process for input documents
43
43 XSLT Processors XSLT Processor
44
44 Web Page Presentation Doc. Structure Data Web Pages – The Whole Picture XML XSLXHTML Style Knowledge CSS Dynamics JavaScript
45
45 Dark Side of the Moon Pink Floyd 10.90 Space Oddity David Bowie 9.90 Aretha: Lady Soul Aretha Franklin 9.90 catalog.xml
46
46 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> cd catalog This is a cd catalog! Valid XML! Commands are XML elements with the namespace xsl Includes XHTML elements catalog.xsl
47
47 Applying XSL Stylesheets to XML There are several ways of applying an XSL stylesheet to an XML document: - Directly applying an XSLT processor to the XML document and the XSL stylesheet - Calling an XSLT processor from within a program - Adding to the XML document a link to the XSL stylesheet and letting the browser do the transformation The resulting XHTML document is shown, not the original XML
48
48 Processing XSL in Java You can use the XALAN package of Apache in order to process XSL transformations java org.apache.xalan.xslt.Process -IN myXmlFile.xml -XSL myXslFile.xsl -OUT myOutputFile.html
49
49 How Does XSLT Work? An XSL stylesheet is a collection of templates that are applied to source nodes (i.e., nodes of the given XML) Each template has a match attribute that specifies to which source nodes the template can be applied Each source node has a template that matches it The current source node is processed by applying a template that matches this node When processing a node, it is possible to recursively process other nodes, e.g., the children of the current node Finally, the XSLT processor simply processes the root node of the document (that matches /)
50
50 Templates A template has the form... The content of a template consists of - XML elements (e.g., XHTML) and text that are copied to the result - XSL elements ( ) that are actually instructions The syntax for the pattern is a subset of XPath
51
51 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> cd catalog This is a cd catalog! catalog1.xsl
52
52 Dark Side of the Moon Pink Floyd 10.90 Space Oddity David Bowie 9.90 Aretha: Lady Soul Aretha Franklin 9.90 catalog1.xml view catalog1.xml
53
53 The Result cd catalog This is a cd catalog! Implicitly added to
54
54 Examples of Match Attributes match="cd", - All elements with tag name cd match="//cd", match="/catalog/cd/artist" - All matches of the absolute XPath match="cd/artist" - All artist nodes that have a cd parent match="catalog//artist" - All artist nodes that have a catalog ancestor match="cd[@country='UK']/artist"
55
55 Processing starts by applying a temp. to the root - If no specified template matches the root, then one is inserted by default (see the next slide) You must specify explicitly whether templates should be applied to descendants of a node Done using the instruction: - In xpath, cur. processed node is the context node Without the select attribute, this instruction processes all the children of the current node (including text nodes) <xsl:apply-templates>
56
56 Default Templates XSL provides implicit built-in templates that match every element and text nodes Templates we write always override these built-in templates (when they match)
57
57 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> Dark Side of the Moon Pink Floyd 10.90 Space Oddity David Bowie 9.90 …
58
58 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> A cd! A cd!
59
59 A cd! Aretha: Lady Soul Aretha Franklin 9.90 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> A cd!
60
60 An artist! <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:apply-templates select="catalog/cd[@country='UK']/artist"/> An artist!
61
61 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:apply-templates select="cd[@country='UK']/artist"/> An artist! Why?
62
62 Frequently Used Elements of XSL - This element extracts the value of a node from the nodelist located by xpath - This element loops over all the nodes in the node list located by xpath,, etc. - This element is for conditional processing
63
63 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> cd catalog CD catalog [ ] Currently selected element is the context node Example 1 catalog2.xsl view catalog2.xml
64
64 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> cd catalog CD catalog Example 2 catalog3.xsl
65
65 : ( now on sale: $ ) Example 2 (cont.) Entities replace characters price>10 → price<10 catalog3.xsl view catalog3.xml
66
66 Example 3 : Switch syntax for conditions Special price! Good price! (Normal price.)
67
67 The Element The element is used to sort the list of nodes that are looped over by the element Thus, the must appear inside the element The looping is done in sorted order
68
68 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> cd catalog CD catalog CDs are iterated in ascending order of the titles catalog4.xsl view catalog4.xml
69
69 Setting Values in Attributes The element cannot be used within an attribute value However, we can insert expressions into attribute values, by putting the expression inside curly braces ( {} ) Alternatively, we can use in order to construct XML elements
70
70 An Example In the following example, we add to each CD entitled t a link to the URL /showcd.php?title=t : view catalog5.xml
71
71 Using Using : showcd/?title=
72
72 On XSL Code Typically, an XSLT program can be written in several, very different ways - Templates can sometime replace loops and vice versa - Conditions can sometimes be replaced with XPath predicates (e.g., in the select attribute) and vice versa A matter of convenience and elegancy
73
73 On Recursive Templates It is not always possible to avoid recursive templates - That is, use only the template of the root Suppose that we want to write an XSL stylesheet that generates a copy of the source document - It is rather easy to do it when the structure of the source XML document is known Can we write an XSL stylesheet that does it for every possible XML document? - Yes! (see next slide)
74
74 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> Identity Transformation Stylesheet
75
75 Generating Valid XHTML By default, the documents that XSL stylesheets generate are not valid XHTML Next, we will show how XSL stylesheet can be changed in order to generate valid XHTML
76
76 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> cd catalog This is a cd catalog! The Original XSL Example
77
77 cd catalog This is a cd catalog! Uppercase tag name, unclosed element No DOCTYPE The Original Transformation Result
78
78 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml"> <xsl:output method="html" doctype-public= "-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system= " http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd "/> … Modifying the XSL Example
79
79 cd catalog This is a cd catalog! META is not inserted The Transformation Result
80
80 Some Other XSL Elements The element inserts free text in the output The creates a copy of the specified nodes The element creates a comment node in the result tree The element defines a variable (local or global) that can be used within the program
81
81 Costello’s Tutorial Costello has an excellent, detailed tutorial - First part (xsl01.ppt) has many examples that do not use recursion - Second part (xsl02.ppt) explains how to use recursion and why it is needed (the identity transformation shown earlier is from Costello’s tutorial) (See DBI timetable for a reference)
82
82 W3Schools Tutorial on XSLT The W3Schools XSLT Tutorial has (among other things) tables that list all the elements and functions of XSLTW3Schools XSLT Tutorial It also has some details about implementations - Some browsers may not implement all features or may implement some features differently from the specifications
Similar presentations
© 2024 SlidePlayer.com Inc.
All rights reserved.