XML documents can be displayed in different formats using style sheets. CSS is used to control visual properties like colors and fonts, while XSL is used to transform XML documents into other formats like HTML. XSL uses templates and patterns like sorting, filtering, and matching to transform XML. Selectors in CSS identify XML tags to which styles apply, and declarations specify property-value pairs to style those tags. Contextual selectors help differentiate between identical tags. Box model properties like margin, border, and padding position text blocks.
Introduction to XML and DTDs, explaining well-formed and valid documents, CDATA/PCDATA, and unique identifier types.
Objectives of displaying XML with CSS and XSL. Discusses style sheets as presentation tools separating content from formatting.
Details on how XML is formatted and viewed using CSS, with examples of XML documents and related CSS styling.
Introduction to the syntax of CSS rules, multiple selectors, contextual selectors, and linking CSS to XML documents.
CSS properties and values, including examples of absolute and relative values, and the box model properties.
Introduction to XSL, its transformation capabilities, sorting, filtering, and using operators.
Functionality of templates in XSL, types of matching, expression handling, and importation of external styles.Differences in functionality between XSL and CSS, usage of templates in XSL, and overall summary of style sheet applications.
Review-1 A well-formeddocument is one that conforms to the basic rules of XML. A valid document is well formed and is also validated against a DTD. The DTD specifies the grammatical structure of an XML document, thereby allowing XML parsers to understand and interpret the document’s contents. The use of the SYSTEM keyword indicates to the parser that this is an external declaration, and that the set of rules for this XML document can be found in a specified file. EMPTY element-content type specifies that the element has no child elements or character data.
3.
Review-2 #CDATA meansthat the element contains character data that is not to be parsed by a parser. #PCDATA means that the element contains data that is to be parsed by a parser. Specifying a default value for an attribute in the DTD ensures that the attribute will get a value, even if the author of the XML document does not include it. Specifying the value of an attribute as ‘Implied’ means that the particular attribute is not mandatory and can be specified in the XML document. Specifying the value of an attribute as ‘Required’ means that the particular attribute is mandatory (that is, its value must be provided in the XML document).
4.
Review-3 ‘ ID’is the identifier type, and should be unique. This attribute value is used to search for a particular instance of an element. Each element can only have one attribute of type ID. A DTD can be either External or Internal. Entities allow us to create an alias to some large piece of text, so that, in the document, the same piece of text can be referred to, simply by referring to the alias. Namespaces allow us to combine documents from different sources, and be able to identify which elements or attributes come from which source.
5.
Objectives Display anXML document in a browser Identify the style rules of CSS Discuss different patterns and templates of XSL Apply different styles to XML elements using CSS and XSL Transform XML documents into HTML documents using XSLT Identify the differences between CSS and XSL
6.
Style Sheets -1 An XML document can be displayed in different formats in different display devices such as computer, printer, and the like. Document to be displayed
7.
Style Sheets -2 A Style sheet is a set of instructions to display the documents: It separates presentation layer from the content data of the document. A single XML document can have multiple style sheets Style sheets Data Presentation Layer
8.
Style Sheets -3 A few style sheets available in the market include: CSS- Cascading Style Sheets XSL-eXtensible Style sheet Language DSSL-Document Style Semantics and Specification Language
9.
Uses of CSSand XSL Cascading style sheet is used to manipulate Visibility of an element Positioning and sizing of elements Colors and Background Font and Text Spacing XSL is used for formatting and converting documents written in one XML DTD into another DTD.
10.
XML and StyleSheets XML documents are plain text files. The style sheets are used to format and view the XML document. Two commonly used style sheets with XML are: CSS - an extension of HTML XSL - an XML specific styling language
11.
Working of XMLXML File CSS (XML + CSS) aware Browser Formatted Document
12.
Displaying an XMLDocument Using CSS -1 XML document <?xml version='1.0'?> <?xml-stylesheet type="text/css" href="hello.css"?> <xsampdoc> <greeting>Hello, <extension>there!</extension> </greeting> <answer> <ans>Good <extension>morning!</extension> </ans> <question> How are you? </question> </answer> </xsampdoc>
13.
Displaying an XMLDocument Using CSS -1 Xsampdoc { margin-top:.7in; margin-bottom: .7in; margin-left:1.5in; margin-right:1in; color: navy; background-color:white; display: block } greeting { display:block; font-family: Arial, Helvetica, sans- serif;font-size: 32pt; width: 30em; color: red } question { display:block; font-size: x-large; color: black; } answer.ans { display : block; font-size: 20pt; color: blue } The CSS document for the XML document
CSS Style RulesThe Syntax for style rules in a Cascading Style Sheet is: Selector{declaration} The selector identifies the tag to which the style applies. The declaration provides the style rules applied to the selector. This is referred as ‘Simple Selector’. Example: greeting {display:block;font-family: Arial, Helvetica,sans-serif; font-size: 32pt; width: 30em; color: red }
16.
Multiple Selector Usedto apply the same style rule for different elements Syntax: selector,selector…….{declaration} Example greeting,question {font-family: sans-serif; font-size: 32pt; } Style Rule Selector 1 Selector 2 The same Style Rule is being used by Selector1 and Selector2
17.
Contextual Selectors -1It helps us to differentiate between the different occurrence of a tag. MADE IN U.S.A tag Occurrence 1 Occurrence 2 Occurrence 1 tag([declaration]} Occurrence 2 tag([declaration]} Conceptual Selector
18.
Contextual Selectors -2Example: <xsampdoc> <greeting>Hello! <extension>there</extension></greeting> <answer> <ans>Fine<extension>here</extension></ans> <ans>Thank you.</ans> </answer> </xsampdoc> Contextual Selectors to differentiate between the different occurrences of <extension> greeting extension{[declarations]} answer ans extension{[declaration]}
19.
Characters used inCSS Separates multiple selectors in a style rule Comma , Identifies selector context Period . Separates multiple property/value combinations Semicolon ; Separates property and its value Colon : Function Name Character
20.
Linking the CSSto XML The Cascading style sheet has to be referenced in the XML document. We use a processing instruction to do so. Syntax: <?xml-stylesheet type=“text/css” href=“url”?> Example <?xml-stylesheettype="text/css“ href="hello.css"?>
21.
Properties and ValuesA value of the CSS styling property may be a string, a number with a unit, an integer, or a color value. Values can be absolute or relative, inheritable or non-inheritable. Example Absolute value P{margin-left:3cm;} A margin of 3 centimeter is created irrespective of the margin size. Example Relative value P{margin-left:10%} A margin of 10% of the width of the page is created.
22.
Color Values XMLsupports the following color values: Gray White Red Short form #888 #FFF #F00 Decimal Integer rgb(136,136,136) rgb(255,255,255) rgb(255,0,0) Percentage rgb(55%,55%,55%) rgb(100%,100%,100%) rgb(100%,0,0)
23.
Formatting the Text- 1 The CSS properties allow to specify the font in which an element will be displayed, its size and color. <absolute-size> and <relative-size> keywords are used with font properties <absolute-size> xx-small x-small small medium <relative-size> large smaller
24.
Formatting the Text- 2 The different font properties that can be set are: font-family font-size font-style font-weight font-variant Font
25.
Boxes -1 Blocksof text can be contained in a box. The following three properties apply to the boxes: Margins Border Padding Padding is the distance between the contents of the adjacent box. Margin is the distance between the border and the outer edge of the adjacent box, or between the border and its containing box.
Margins, Border andPadding The padding property is used to specify the distance or space between the border and its contents. Boxes margin-top margin-bottom margin-left margin-right margin Margins Border border-top border-bottom border-left border-right border padding-bottom padding-top padding-right padding-left padding Padding
28.
Controlling Layout TheCSS layout properties can control the box on the screen. The boxes can be overlapped using the z-index property. A paragraph that is two inches by one inch and with a scroll bar is displayed
29.
XSL It isa style sheet application created specifically for XML. Features of XSL include: It provides a transformation language (XSLT). XSL can be used as a formatting language. XSL can be used to sort and filter. XSL can be used for pattern matching to find records.
30.
XSL -2 XML Document XSL HTML document displayed in the Web HTML CSS
31.
Example for XSL The XSL style sheet code <html> <head> <title>Icons In Cricket</title> </head> <body> <h2>Icons In Cricket</h2> <table border="2" cellpadding="3"> <tr> <td>Player</td> <td>No. Of Catches</td> <td>No. Of 100's</td> <td>No. Of 50's</td> </tr> <xsl:for-each select="cricket/player" order-by ="-catches"> <tr> <td><xsl:value-of select="name"/></td> <td><xsl:value-of select="no_50"/></td> <td><xsl:value-of select="no_100"/></td> <td><xsl:value-of select="catches"/></td> </tr> </xsl:for-each> </table> </body> </html>
32.
Patterns The patternssupported in XSL are: Sorting Operators Filtering Letters after sorting
33.
Sorting The defaultsorting is ascending order. The ‘-’ sign is used to sort in descending order. The chart is organized in the descending order of catches
Filtering and LogicalOperators Filter operations can contain expression such as Boolean expression, AND, OR, and NOT expressions The different logical operators that can be used are: Operator Description AND Logical and OR Logical or NOT Negation = Equal != Not equal > Greater than < Less than >= Greater than or equal to <= Less than or equal
36.
Templates Templates arethe instructions in an XSL style sheet, which control the conversion of element and its content. It is represented by <xsl:template>…</xsl:template> It is applied with the <xsl:apply-templates/> element The template has two parts: The matching part The processing part Matching part Processing part
37.
Types of MatchingMatching Matching by name Matching by ancestry Matching several names Matching the root Wildcard matches Matching by ID Matching by attributes
38.
Handling Expressions XSLsupports five types of Expressions. These are: Node Sets Booleans Strings Numbers Result Tree Fragments
39.
Switching Styles DataIslands 1 XML document Data Islands 2 Data Islands 3 XML document with XSL style sheet 1 XML document with XSL style sheet 2 XML document with XSL style sheet 3
40.
xsl:import and xsl:includeStyle sheets created by other developers can be imported using the xsl:import The syntax for importing style sheets is: <xsl:import href= ‘another stylesheet.xsl’/> <xsl:import href= ‘another stylesheet1.xsl’/> All the different style sheets imported are arranged in an import tree. A new node is created in the import tree when a style sheet is imported
41.
Difference Between XSLand CSS It transforms XML into structures such as lists or tables It does not change the structure of the document XSLT lets us to map a certain pattern in the source document CSS determines the visual appearance of a page XSL provides means of transforming of XML documents CSS work by assigning a set of display properties to an HTML element
42.
Summary-1 XML isportable. An XML document can be sent from one system to another, and even from application to application, without modifying the content. A style sheet is a set of instructions to display documents. Style sheets can be written in several languages. Two of these are:
43.
Cascading Style Sheets (CSS), an extension of HTML eXtensible Stylesheet Language (XSL), an XML specific styling language The selector identifies the tag to which the style applies, and the declaration provides the style rules applied, to the selector .
44.
Summary-2 The listof selectors includes Simple selectors, Contextual selectors and Multiple selectors. Contextual Selectors help to differentiate between the different occurrences of a tag. The Multiple Selector is used to assign the same style rule to different elements. One declaration can be applied to several selectors. A block of text can be contained in a box, and this box can then be placed on the browser. The three properties that apply to the boxes are: margins, borders and padding
45.
The CSS layoutproperties can control the layout of the box on the screen. Boxes can be overlapped using the z-index property. This specifies the height and width for a box. XSL is a style sheet language created specifically for XML. It is used to convert XML documents into HTML. Cascading style sheets are applied to the resulting HTML documents for display on the web.
46.
Summary-3 The instructionsthat control how an element and its content should be converted in an XSL style sheet, are called templates. XSL provides support for the following patterns: Sorting Operators Filtering A typical template element looks like this: <xsl:template match = "myElement"> Types of Matching Matching by attribute Matching by ID Matching by wildcard Matching by root Matching by name