<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Vdiscussion &#187; XML</title>
	<atom:link href="http://vdiscussion.com/tag/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://vdiscussion.com</link>
	<description>Vinoth Kumar&#039;s Discussion</description>
	<lastBuildDate>Wed, 09 Dec 2009 15:34:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Style sheet linking in XML</title>
		<link>http://vdiscussion.com/style-sheet-linking-in-xml/</link>
		<comments>http://vdiscussion.com/style-sheet-linking-in-xml/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:28:10 +0000</pubDate>
		<dc:creator>ma.vinothkumar</dc:creator>
				<category><![CDATA[Theory Subjects]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Style sheet]]></category>
		<category><![CDATA[Style sheet linking in XML]]></category>
		<category><![CDATA[XSLT]]></category>

		<guid isPermaLink="false">http://vdiscussion.com/?p=44</guid>
		<description><![CDATA[This technique, you link a style sheet to the XML document. A style sheet is a separate file that contains instructions for formatting the individual XML elements. You can use either a cascading style sheet (CSS)—which is also used for HTML pages—or an Extensible Stylesheet Language Transformations (XSLT) style sheet—which is considerably more powerful than [...]]]></description>
			<content:encoded><![CDATA[<p>This technique, you link a style sheet to the XML document. A style sheet is a separate file that contains instructions for formatting the individual XML elements. You can use either a cascading style sheet (CSS)—which is also used for HTML pages—or an Extensible Stylesheet Language Transformations (XSLT) style sheet—which is considerably more powerful than a CSS and is designed specifically for XML documents.</p>
]]></content:encoded>
			<wfw:commentRss>http://vdiscussion.com/style-sheet-linking-in-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does XML Replace HTML ?</title>
		<link>http://vdiscussion.com/does-xml-replace-html/</link>
		<comments>http://vdiscussion.com/does-xml-replace-html/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:27:16 +0000</pubDate>
		<dc:creator>ma.vinothkumar</dc:creator>
				<category><![CDATA[Theory Subjects]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Does XML Replace HTML]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://vdiscussion.com/?p=46</guid>
		<description><![CDATA[Currently, the answer to that question is no. HTML is still the primary language used to tell browsers how to display information on the Web. With Internet Explorer, the only practical way to dispense entirely with HTML when you display XML is to attach a cascading style sheet to the XML docu- ment and then [...]]]></description>
			<content:encoded><![CDATA[<p>Currently, the answer to that question is no. HTML is still the primary language<br />
used to tell browsers how to display information on the Web.<br />
With Internet Explorer, the only practical way to dispense entirely with HTML<br />
when you display XML is to attach a cascading style sheet to the XML docu-<br />
ment and then open the document directly in the browser. However, using a cas-<br />
cading style sheet is a relatively restrictive method for displaying and working<br />
with XML. All the other methods you’ll learn in this book involve HTML. Data<br />
binding and XML DOM scripts both use HTML Web pages as vehicles for dis-<br />
playing XML documents. And with XSLT style sheets, you create templates that<br />
transform the XML document into HTML that tells the browser how to format<br />
and display the XML data.<br />
Rather than replacing HTML, XML is currently used in conjunction with<br />
HTML and vastly extends the capability of Web pages to:<br />
I Deliver virtually any type of document<br />
I Sort, filter, rearrange, find, and manipulate the information in<br />
other ways<br />
I Present highly structured information<br />
As the quotation at the beginning of the chapter states, XML was designed for<br />
interoperability with HTML.</p>
]]></content:encoded>
			<wfw:commentRss>http://vdiscussion.com/does-xml-replace-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is XML ?</title>
		<link>http://vdiscussion.com/what-is-xml/</link>
		<comments>http://vdiscussion.com/what-is-xml/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:24:37 +0000</pubDate>
		<dc:creator>ma.vinothkumar</dc:creator>
				<category><![CDATA[Theory Subjects]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[SGML]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://vdiscussion.com/?p=42</guid>
		<description><![CDATA[XML stands for Extensible Markup Language, was defined by the XML Working Group of the World Wide Web Consortium (W3C). This group described the language as follows: The Extensible Markup Language (XML) is a subset of SGML&#8230;Its goal is to enable generic SGML to be served, received, and processed on the Web in the way [...]]]></description>
			<content:encoded><![CDATA[<p>XML  stands for Extensible Markup Language, was defined by the<br />
XML Working Group of the World Wide Web Consortium (W3C). This group<br />
described the language as follows:<br />
The Extensible Markup Language (XML) is a subset of SGML&#8230;Its<br />
goal is to enable generic SGML to be served, received, and processed<br />
on the Web in the way that is now possible with HTML. XML has been<br />
designed for ease of implementation and for interoperability with both<br />
SGML and HTML.</p>
<p>As you can see, XML is a markup language designed specifically for delivering<br />
information over the World Wide Web, just like HTML (Hypertext Markup<br />
Language), which has been the standard language used to create Web pages<br />
since the inception of the Web. Since we already have HTML, which continues<br />
to evolve to meet additional needs, you might wonder why we require a com-<br />
pletely new language for the Web.</p>
]]></content:encoded>
			<wfw:commentRss>http://vdiscussion.com/what-is-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
