0:00 Now you might have noticed that the name of this video is "Well-formed-XML". 0:02 So well-formed XML is 0:05 actually the most flexible XML. 0:07 An XML document or 0:09 an XML stream is considered 0:11 well formed if it adheres 0:12 to the basic structural requirements of XML. 0:14 And there aren't many. 0:16 Just that we have a single 0:18 root element, as we discussed 0:19 before, a single bookstore in this 0:21 case; that all of 0:22 our tags are matching, we don't 0:24 have open tags without closed 0:26 tags; and our tags 0:28 are properly nested, so we don't have interweaving of elements. 0:30 And finally, within each 0:32 element if we have attribute names, they're unique. 0:34 And that's about it. 0:36 That's all we require for a 0:38 XML document, or 0:39 a set of XML data to be considered well-formed. 0:42 And for many applications, that's all we're concerned about. 0:46 In order to test whether a 0:47 document is well-formed, and specifically 0:49 to access the components of 0:51 the document in a program, 0:53 we have what's called an XML parser. 0:55 So, we'll take an XML 0:56 document here, and we'll 0:59 feed it to an XML parser, 1:01 and the parser will check the 1:02 basic structure of the document, 1:05 just to make sure that everything is okay. 1:08 If the document doesn't appear to 1:10 these three requirements up here, 1:12 the parser will just send an error saying it's not well-formed. 1:15 If the document does adhere 1:17 to the structure, then what comes out is parsed XML. 1:20 And, there's various standards 1:22 for how we show parsed XML. 1:25 One is called the document object 1:27 model, or DOM; it's a 1:29 programmatic interface for sort 1:31 of traversing the tree that's implied by XML. 1:34 Another popular one is SAX. 1:36 That's a more of a stream model for XML. 1:38 So these are the ways in 1:39 which a program would access the 1:41 parsed XML when it comes out of the parser. 1:44 So one issue that comes up, 1:45 because the XML data is used 1:47 frequently on the internet, is 1:48 how we display XML. 1:51 So one way to display XML is just 1:52 as we see it here, but very 1:54 often we want to format the 1:55 data that's in an XML 1:57 document or an XML string 1:58 in a more intuitive way. 2:01 And actually there's a nice setup for doing that. 2:03 What we can do is use a 2:05 rule-based language to take 2:07 the XML and translate it automatically 2:08 to HTML, which we can then render in a browser. 2:11 A couple of popular languages 2:13 are cascading style sheets known 2:15 as CSS or the extensible 2:17 style sheet language known as XSL. 2:19 We're going to look a little bit 2:20 with XSL on a later video 2:22 in the context of query in XML. 2:24 We won't be covering CSS in this course. 2:27 But let's just understand how these 2:28 languages are used, what the basic structure is. 2:31 So the idea is that 2:32 we have an XML document 2:34 and then we send it to 2:35 an interpreter of CSS or 2:39 XSL, but we also have to have 2:39 the rules that we're going to use on that particular document. 2:42 And the rules are going to do things 2:43 like match patterns or add 2:45 extra commands and once 2:47 we send an XML document thorugh 2:49 the interpreter we'll get an 2:51 HTML document out and then we can render that document in the browser. 2:55 Now, one thing I should mention is 2:56 that we'll also check with the 2:57 parser to make sure 2:59 that the document is well formed 3:00 as well before we translate it to HTML. 3:04 To conclude, XML is a 3:06 standard for data representation and exchange. 3:08 It can also be thought of as a data model. 3:10 Sort of a competitor to the 3:11 relational model for structuring the data in one's application. 3:14 It generally has a lot more 3:15 flexibility than the relational 3:16 model, which can be a plus and a minus, actually. 3:19 In this video we covered the 3:21 well formed XML, so, XML 3:23 that adheres to basic structural requirements, 3:25 in the next video we will 3:26 cover valid XML, where we 3:28 actually do introduce a kind of 3:29 schema for XML. 3:31 The last thing I want to mention, is 3:32 that the formal specification for XML is quite enormous. 3:36 There are a lot of bells and whistles. 3:38 We're going to cover, in these 3:39 videos, the most important components 3:41 for understanding anything XML.