<?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>Technical Questions Answers &#187; Internet</title>
	<atom:link href="http://www.cavsi.com/questionsanswers/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cavsi.com/questionsanswers</link>
	<description>Technical Questions Answers</description>
	<lastBuildDate>Tue, 20 Apr 2010 20:46:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>What is the difference between HTML and XHTML?</title>
		<link>http://www.cavsi.com/questionsanswers/what-is-the-difference-between-html-and-xhtml/</link>
		<comments>http://www.cavsi.com/questionsanswers/what-is-the-difference-between-html-and-xhtml/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 11:27:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.cavsi.com/questionsanswers/what-is-the-difference-between-html-and-xhtml/</guid>
		<description><![CDATA[The differences between HTML and XHTML are small. As the rules of XHTML are based on those of XML, the same exceptionally strict rules apply as with XML. The major differences are outlined below. The most important difference between the two markup languages is that HyperText Markup Language, or HTML, is an application of SGML [...]]]></description>
			<content:encoded><![CDATA[<p>The differences between HTML and XHTML are small. As the rules of XHTML are based on those of XML, the same exceptionally strict rules apply as with XML. The major differences are outlined below.</p>
<p>The most important difference between the two markup languages is that <strong>HyperText Markup Language</strong>, or HTML, is an application of SGML (Standard Generalized Markup Language)1 and allows an author to omit certain tags and use attribute minimization. The <strong>Extensible HyperText Markup Language</strong>, or XHTML, is an application of XML (Extensible Markup Language). It doesnâ€™t permit the omission of any tags or the use of attribute minimization. XHTML documents must start with an XHTML DocType declaration.</p>
<p>The following chart shows what the differences between HTML and XHTML are:</p>
<table border="1" cellPadding="10" cellSpacing="5" class="center">
<tr>
<th>HTML 4.01</th>
<th>XHTML 1.0</th>
</tr>
<tr>
<td>Forgiving</td>
<td>Requires discipline and attention to detail</td>
</tr>
<tr>
<td>Correct nesting required in theory</td>
<td>Correct nesting absolutely required</td>
</tr>
<tr>
<td>Some end tags optional</td>
<td>All end tags required</td>
</tr>
<tr>
<td>No end tag for empty content model</td>
<td>Even empty content model requires end tag</td>
</tr>
<tr>
<td>Case insensitive</td>
<td>Lowercase only</td>
</tr>
<tr>
<td>Some attribute values needn&#8217;t be quoted</td>
<td>All attribute values must be quoted</td>
</tr>
<tr>
<td>Certain &#8220;valueless&#8221; attribute values are OK</td>
<td>All attributes must have values</td>
</tr>
<tr>
<td>Less sensitive to special characters</td>
<td>More sensitive to special characters</td>
</tr>
<tr>
<td>Ubiquitous name attribute</td>
<td>Id attribute preferred to name, mostly</td>
</tr>
</table>
<img src="http://www.cavsi.com/questionsanswers/?ak_action=api_record_view&id=184&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cavsi.com/questionsanswers/what-is-the-difference-between-html-and-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is SSI?</title>
		<link>http://www.cavsi.com/questionsanswers/what-is-ssi/</link>
		<comments>http://www.cavsi.com/questionsanswers/what-is-ssi/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 11:06:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Server Side Includes]]></category>
		<category><![CDATA[SSI]]></category>

		<guid isPermaLink="false">http://www.cavsi.com/questionsanswers/what-is-ssi/</guid>
		<description><![CDATA[SSI stands for &#8220;server-side include,&#8221; a type of HTML instruction telling a computer that serves Web pages to dynamically generate data, usually by inserting certain variable contents into a fixed template or boilerplate Web page. Used especially in database searches. In order to use Server Side Includes, your server must be configured to support them. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>SSI</strong> stands for &#8220;<strong>server-side include</strong>,&#8221; a type of HTML instruction telling a computer that serves Web pages to dynamically generate data, usually by inserting certain variable contents into a fixed template or boilerplate Web page. Used especially in database searches. In order to use Server Side Includes, your server must be configured to support them.</p>
<p>SSI can help make your pages more responsive and can even help make maintaining your site an easier task. SSI is primarily used to &#8220;paste&#8221; the contents of one or more files into another. For example, a file (of any type, .html, .txt, etc.) containing a daily quote could be included into multiple SSI-enabled pages throughout a website by placing the following code into the desired pages:</p>
<blockquote><p><!--#include virtual="../quote.txt" --></p></blockquote>
<p>There is no official standard for SSIs, so every Web server is free to support different SSIs in different manners. However, many SSI commands, such as #include and #exec, have become de facto standards.</p>
<p><strong>Server Side Includes<br />
Pros: </strong><br />
Change one file and every file that uses that include is instantly updated.<br />
Every server language supports them in one form or another.<br />
Easier to reuse code pieces.</p>
<p><strong>Cons: </strong><br />
Server has to parse each page that uses includes, which can slow down your server and make your site feel slower.</p>
<img src="http://www.cavsi.com/questionsanswers/?ak_action=api_record_view&id=181&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cavsi.com/questionsanswers/what-is-ssi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a URL?</title>
		<link>http://www.cavsi.com/questionsanswers/what-is-a-url/</link>
		<comments>http://www.cavsi.com/questionsanswers/what-is-a-url/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 10:54:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.cavsi.com/questionsanswers/what-is-a-url/</guid>
		<description><![CDATA[URL is an acronym for Uniform Resource Locator and is a reference (an address) to a resource on the Internet. The unique address of any Web document. The following is an example of a URL which addresses the Java Web site hosted by Sun Microsystems: As in the previous diagram, a URL has two main [...]]]></description>
			<content:encoded><![CDATA[<p>URL is an acronym for Uniform Resource Locator and is a reference (an address) to a resource on the Internet. The unique address of any Web document. The following is an example of a URL which addresses the Java Web site hosted by Sun Microsystems:</p>
<p><center><img border="0" align="middle" width="326" src="http://www.cavsi.com/questionsanswers/images/networking/4url.gif" height="48" /></center>As in the previous diagram, a URL has two main components:</p>
<ul>
<li>Protocol identifier</li>
<li>Resource name</li>
</ul>
<p>Note that the protocol identifier and the resource name are separated by a colon and two forward slashes. The protocol identifier indicates the name of the protocol to be used to fetch the resource. The example uses the Hypertext Transfer Protocol (HTTP), which is typically used to serve up hypertext documents. HTTP is just one of many different protocols used to access different types of resources on the net. Other protocols include File Transfer Protocol (FTP), Gopher, File, and News.</p>
<p>The resource name is the complete address to the resource. The format of the resource name depends entirely on the protocol used, but for many protocols, including HTTP, the resource name contains one or more of the components listed in the following table:</p>
<table border="1" cellPadding="5">
<tr>
<th>Host Name</th>
<td>The name of the machine on which the resource lives.</td>
</tr>
<tr>
<th>Filename</th>
<td>The pathname to the file on the machine.</td>
</tr>
<tr>
<th>Port Number</th>
<td>The port number to which to connect (typically optional).</td>
</tr>
<tr>
<th>Reference</th>
<td>A reference to a named anchor within a resource that usually identifies a specific location within a file (typically optional).</td>
</tr>
</table>
<p>Source: java.sun.com</p>
<img src="http://www.cavsi.com/questionsanswers/?ak_action=api_record_view&id=180&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cavsi.com/questionsanswers/what-is-a-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is XHTML?</title>
		<link>http://www.cavsi.com/questionsanswers/what-is-xhtml/</link>
		<comments>http://www.cavsi.com/questionsanswers/what-is-xhtml/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 10:47:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.cavsi.com/questionsanswers/what-is-xhtml/</guid>
		<description><![CDATA[The Extensible Hypertext Markup Language, or XHTML, is a hybrid between HTML and XML that is more universally acceptable in Web pages and search engines than XML. Both standards are powerful, but XHTML is significantly better than HTML. XHTML uses three XML namespaces (used to qualify element and attributes names by associating them with namespaces [...]]]></description>
			<content:encoded><![CDATA[<p>The Extensible Hypertext Markup Language, or XHTML, is a hybrid between HTML and XML that is more universally acceptable in Web pages and search engines than XML. Both standards are powerful, but XHTML is significantly better than HTML. </p>
<p>XHTML uses three XML namespaces (used to qualify element and attributes names by associating them with namespaces identified by URI references. Namespaces prevent identically custom-named tags that may be used in different XML documents from being read the same way), which correspond to three HTML 4.0 DTDs: Strict, Transitional, and Frameset. </p>
<p>A character encoding may be specified at the beginning of an XHTML document in the XML declaration when the document is served using the application/xhtml+xml MIME type. (If an XML document lacks encoding specification, an XML parser assumes that the encoding is UTF-8 or UTF-16, unless the encoding has already been determined by a higher protocol.)</p>
<p>For example:</p>
<p>< ?xml version="1.0" encoding="UTF-8"?> </p>
<img src="http://www.cavsi.com/questionsanswers/?ak_action=api_record_view&id=178&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cavsi.com/questionsanswers/what-is-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is WIKI?</title>
		<link>http://www.cavsi.com/questionsanswers/what-is-wiki/</link>
		<comments>http://www.cavsi.com/questionsanswers/what-is-wiki/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 10:41:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://www.cavsi.com/questionsanswers/what-is-wiki/</guid>
		<description><![CDATA[Wiki is a piece of server software that allows users to freely create and edit Web page content using any Web browser. Wiki supports hyperlinks and has a simple text syntax for creating new pages and crosslinks between internal pages on the fly. Wiki is a term meaning &#8220;quick&#8221; in Hawaiian, that is used for [...]]]></description>
			<content:encoded><![CDATA[<p>Wiki is a piece of server software that allows users to freely create and edit Web page content using any Web browser. Wiki supports hyperlinks and has a simple text syntax for creating new pages and crosslinks between internal pages on the fly.</p>
<p>Wiki is a term meaning &#8220;quick&#8221; in Hawaiian, that is used for technology that gathers in one place a number of web pages focused on a theme, project, or collaboration. Wikis are generally used when users or group members are invited to develop, contribute, and update the content of the wiki.</p>
<p>A wiki invites all users to edit any page or to create new pages within the wiki Web site, using only a plain-vanilla Web browser without any extra add-ons. Wiki promotes meaningful topic associations between different pages by making page link creation almost intuitively easy and showing whether an intended target page exists or not.</p>
<p>Wikis can be passworded in various ways to control or allow contributions. The most famous wiki is the Wikipedia.</p>
<img src="http://www.cavsi.com/questionsanswers/?ak_action=api_record_view&id=179&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.cavsi.com/questionsanswers/what-is-wiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

