<?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>Software &#38; Development Tips &#187; sgml</title>
	<atom:link href="http://www.softwareanddevelopmenttips.com/tag/sgml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.softwareanddevelopmenttips.com</link>
	<description>Software &#38; Development Blog</description>
	<lastBuildDate>Mon, 26 Jul 2010 11:15:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>XML And The Benefits Of Platform Independence</title>
		<link>http://www.softwareanddevelopmenttips.com/2010/02/xml-and-the-benefits-of-platform-independence/</link>
		<comments>http://www.softwareanddevelopmenttips.com/2010/02/xml-and-the-benefits-of-platform-independence/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 18:40:14 +0000</pubDate>
		<dc:creator>Peter H. Spencer</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[computer software]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[extensible markup language]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[sgml]]></category>
		<category><![CDATA[software programs]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.softwareanddevelopmenttips.com/2010/02/xml-and-the-benefits-of-platform-independence/</guid>
		<description><![CDATA[Extensible Mark-up Language (XML) has very quickly established itself as a viable technology with a huge range of real-world applications. One of the main reasons for its importance and wide acceptance is the fact that it offers a working solution to one of the key problems faced by software developers and computer users alike: the exchange of incompatible data. Each software environment creates its own unique type of binary file which only it can understand. When data is exported in XML format, it becomes a known quantity, independent of the environment in which it was originated.


Related posts:<ol><li><a href='http://www.softwareanddevelopmenttips.com/2010/02/understanding-the-for-each-element-in-xslt/' rel='bookmark' title='Permanent Link: Understanding The For-each Element In XSLT'>Understanding The For-each Element In XSLT</a> <small>Extensible Stylesheet Language (XSL) is an XML technology which is...</small></li>
<li><a href='http://www.softwareanddevelopmenttips.com/2010/01/overview-of-xml-technologies/' rel='bookmark' title='Permanent Link: Overview of XML Technologies'>Overview of XML Technologies</a> <small>Core XML...</small></li>
<li><a href='http://www.softwareanddevelopmenttips.com/2010/02/validation-xml-files-with-xml-schema/' rel='bookmark' title='Permanent Link: Validation XML Files With XML Schema'>Validation XML Files With XML Schema</a> <small>XML schema definition languages are derived from the recommendations of...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Extensible Mark-up Language (XML) has very quickly established itself as a viable technology with a huge range of real-world applications. One of the main reasons for its importance and wide acceptance is the fact that it offers a working solution to one of the key problems faced by software developers and computer users alike: the exchange of incompatible data. Each software environment creates its own unique type of binary file which only it can understand. When data is exported in XML format, it becomes a known quantity, independent of the environment in which it was originated.</p>
<p>Adobe&#8217;s PDF format is another example of a platform-independent data format which has gained wide acceptance. When a document is saved as a PDF file, its format is set in stone, it can viewed and printed with its layout and formatting intact, without the need for the software which created the original file. However, whereas the PDF format concerns itself primarily with the presenting information, XML is used to describe and encapsulate the information itself.</p>
<p>Though XML itself is still fairly new, the idea behind it is not. Back in the 1970s, Standard Generalized Markup Language (SGML) was developed in an attempt to create an application-independent method of describing data. SGML is a text-based language which uses the concept of adding mark-up to data which describes the data itself. An SGML document contains both data and a set of rules defining the structure of the data. SGML is a pretty complex language and, unlike XML, has never become mainstream. In the early 1990s, SGML was used to develop HTML and in the late 1990s, SGML was also used as the basis for the development of XML. So, basically, XML is a restricted form of SGML.</p>
<p>XML has already proved itself to be an excellent medium for storing, describing and transporting data, particularly over the web. It offers developers flexibility, clarity and simplicity. An XML document resembles an HTML document and consists of the same human-readable tags. However, the tags used to markup an HTML document are predetermined: only a fixed set of tags can legitimately be used. XML allows you to create your own markup language and define the tags which are legitimate for your data. It does this via the mechanism of a schema document, which can itself be an XML document. The schema document defines the vocabulary and grammar which may be used within the XML document containing your data.</p>
<p>The fact that, when creating and generating XML documents, you can invent all the rules, means that you never have to force your data into a container which was not designed to hold it. You design tags which reflect the nature of your data; you create a schema document which defines the hierarchical structure of your information; and you specify the type of information each element within your document is permitted to contain. In short, if you end up with an XML documents which is unsuitable for holding your information, you have only yourself to blame!</p>
<p>The writer of this article is part of an organisation that offers <noindex><a target="_blank" rel="nofollow" href="http://www.aspdotnetajax.net/index.htm" >web design training courses</a></noindex> in London and throughout the UK.</p>


<p>Related posts:<ol><li><a href='http://www.softwareanddevelopmenttips.com/2010/02/understanding-the-for-each-element-in-xslt/' rel='bookmark' title='Permanent Link: Understanding The For-each Element In XSLT'>Understanding The For-each Element In XSLT</a> <small>Extensible Stylesheet Language (XSL) is an XML technology which is...</small></li>
<li><a href='http://www.softwareanddevelopmenttips.com/2010/01/overview-of-xml-technologies/' rel='bookmark' title='Permanent Link: Overview of XML Technologies'>Overview of XML Technologies</a> <small>Core XML...</small></li>
<li><a href='http://www.softwareanddevelopmenttips.com/2010/02/validation-xml-files-with-xml-schema/' rel='bookmark' title='Permanent Link: Validation XML Files With XML Schema'>Validation XML Files With XML Schema</a> <small>XML schema definition languages are derived from the recommendations of...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.softwareanddevelopmenttips.com/2010/02/xml-and-the-benefits-of-platform-independence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding The For-each Element In XSLT</title>
		<link>http://www.softwareanddevelopmenttips.com/2010/02/understanding-the-for-each-element-in-xslt/</link>
		<comments>http://www.softwareanddevelopmenttips.com/2010/02/understanding-the-for-each-element-in-xslt/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 13:12:00 +0000</pubDate>
		<dc:creator>Keira Albright</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[computer software]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[extensible markup language]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[sgml]]></category>
		<category><![CDATA[software programs]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.softwareanddevelopmenttips.com/2010/02/understanding-the-for-each-element-in-xslt/</guid>
		<description><![CDATA[Extensible Stylesheet Language (XSL) is an XML technology which is used to transform XML data. XML file can be used to set the ground-rules for a given body of data and to describe the data itself. XSL allows us to take that input XML data and convert it into information which can be displayed in a web browser window or opened with a text editor. It can also be used to create an XML file which is a modified version of an input XML file.


Related posts:<ol><li><a href='http://www.softwareanddevelopmenttips.com/2010/02/xml-and-the-benefits-of-platform-independence/' rel='bookmark' title='Permanent Link: XML And The Benefits Of Platform Independence'>XML And The Benefits Of Platform Independence</a> <small>Extensible Mark-up Language (XML) has very quickly established itself as...</small></li>
<li><a href='http://www.softwareanddevelopmenttips.com/2010/01/overview-of-xml-technologies/' rel='bookmark' title='Permanent Link: Overview of XML Technologies'>Overview of XML Technologies</a> <small>Core XML...</small></li>
<li><a href='http://www.softwareanddevelopmenttips.com/2010/02/working-with-html-and-xhtml-in-adobe-dreamweaver-cs4/' rel='bookmark' title='Permanent Link: Working With HTML and XHTML in Adobe Dreamweaver CS4'>Working With HTML and XHTML in Adobe Dreamweaver CS4</a> <small>HTML is a markup language used to create web pages...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Extensible Stylesheet Language (XSL) is an XML technology which is used to transform XML data. XML file can be used to set the ground-rules for a given body of data and to describe the data itself. XSL allows us to take that input XML data and convert it into information which can be displayed in a web browser window or opened with a text editor. It can also be used to create an XML file which is a modified version of an input XML file.</p>
<p>When displaying elements in a browser window, the XSL elements which enable looping through an XML tree and decision-making really come into their own. One of the key methods used in XSL for looping through XML elements is the &#8220;For-each&#8221; element. This uses the &#8220;select&#8221; attribute to specify which element is to be targeted in the loop. The &#8220;For-each&#8221; element has both an opening and a closing tag and any lines of code placed between the opening and closing tags will be repeated each time the element specified in the &#8220;select&#8221; attribute is encountered in the XML file.</p>
<p>For example, let&#8217;s say we have an input XML file containing a list of companies and the addresses of their websites. Let&#8217;s also say that the element which we will be targeting in the XSL &#8220;For-each&#8221; statement is called &#8220;company&#8221; and that, for each company element, we have a &#8220;name&#8221;, &#8220;telephone&#8221; and &#8220;website&#8221; element. Before beginning our &#8220;For-each&#8221; loop, we could output the opening tag of an HTML &#8220;ul&#8221; element (an unordered or bulleted list).</p>
<p>Inside the &#8220;For-each&#8221; loop, we could output an HTML &#8220;li&#8221; element and, between its opening and closing tags, output the contents of the &#8220;name&#8221; and &#8220;telephone&#8221; elements from the XML file. The data in the &#8220;website&#8221; element in the input XML could be used to convert the &#8220;name&#8221; into a clickable link.</p>
<p>As to the appearance of the data in the resulting HTML output, this would be controlled by a linked CSS file. CSS can be used to format the output in any way we desire, so our bulleted list can take on pretty much any appearance we desire.</p>
<p>The The writer of this article is a trainer and developer with <noindex><a target="_blank" rel="nofollow" href="http://www.macresource.co.uk/courses/xml.htm" >Macresource Computer Training</a></noindex>, an independent computer training company offering <noindex><a target="_blank" rel="nofollow" href="http://www.macresource.co.uk/courses/xml1.htm" >XML, XSLT, XPATH, XQuery and XSL-FO training courses</a></noindex> in London and throughout the UK.</p>


<p>Related posts:<ol><li><a href='http://www.softwareanddevelopmenttips.com/2010/02/xml-and-the-benefits-of-platform-independence/' rel='bookmark' title='Permanent Link: XML And The Benefits Of Platform Independence'>XML And The Benefits Of Platform Independence</a> <small>Extensible Mark-up Language (XML) has very quickly established itself as...</small></li>
<li><a href='http://www.softwareanddevelopmenttips.com/2010/01/overview-of-xml-technologies/' rel='bookmark' title='Permanent Link: Overview of XML Technologies'>Overview of XML Technologies</a> <small>Core XML...</small></li>
<li><a href='http://www.softwareanddevelopmenttips.com/2010/02/working-with-html-and-xhtml-in-adobe-dreamweaver-cs4/' rel='bookmark' title='Permanent Link: Working With HTML and XHTML in Adobe Dreamweaver CS4'>Working With HTML and XHTML in Adobe Dreamweaver CS4</a> <small>HTML is a markup language used to create web pages...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.softwareanddevelopmenttips.com/2010/02/understanding-the-for-each-element-in-xslt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
