<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Mobile Web Applications</title>
	<atom:link href="http://www.linux-mag.com/id/7625/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linux-mag.com/id/7625/</link>
	<description>Open Source, Open Standards</description>
	<lastBuildDate>Sat, 05 Oct 2013 13:48:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: apple iphone 4 16gb, iphone 5, apple store, iphone 4s, iphone 3gs, iphone 4 weiÃŸ, i phone 5, iphone apps, ipod touch 4g, iphone 4 jailbreak</title>
		<link>http://www.linux-mag.com/id/7625/#comment-113505</link>
		<dc:creator>apple iphone 4 16gb, iphone 5, apple store, iphone 4s, iphone 3gs, iphone 4 weiÃŸ, i phone 5, iphone apps, ipod touch 4g, iphone 4 jailbreak</dc:creator>
		<pubDate>Fri, 06 Jan 2012 21:53:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7625/#comment-113505</guid>
		<description>Heya i?m for the first time here. I found this board and I find It truly useful &amp; it helped me out much. I am hoping to provide something back and aid others like you aided me.</description>
		<content:encoded><![CDATA[<p>Heya i?m for the first time here. I found this board and I find It truly useful &amp; it helped me out much. I am hoping to provide something back and aid others like you aided me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mobile Websites</title>
		<link>http://www.linux-mag.com/id/7625/#comment-58951</link>
		<dc:creator>Mobile Websites</dc:creator>
		<pubDate>Sun, 27 Nov 2011 15:41:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7625/#comment-58951</guid>
		<description>I appreciate, lead to I discovered just what I used to be having a look for. You&#039;ve ended my four day long hunt! God Bless you man. Have a great day. Bye</description>
		<content:encoded><![CDATA[<p>I appreciate, lead to I discovered just what I used to be having a look for. You&#8217;ve ended my four day long hunt! God Bless you man. Have a great day. Bye</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wojnicki</title>
		<link>http://www.linux-mag.com/id/7625/#comment-7462</link>
		<dc:creator>wojnicki</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7625/#comment-7462</guid>
		<description>&lt;p&gt;Actually the borwser detection, as showed, should not be used for choosing CSS! Imagine using an Android tablet. Your application would switch to a CSS optimized for a small display while the tablet might actually have a full size one. But there is a proper switching feature already implmented through apropriate media attribute in the html link element (according to the HTML standards).&lt;/p&gt;
&lt;p&gt;Consider the HTML code below. There are two stylesheets defined. common.css is used for regular screen browser, while hh.css is used for handheld devices. &lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
&lt;LINK REL=\&quot;stylesheet\&quot; title=\&quot;Common\&quot; HREF=\&quot;common.css\&quot; media=\&quot;screen, projection\&quot;&gt;&lt;br /&gt;
&lt;LINK REL=\&quot;stylesheet\&quot; title=\&quot;Handheld\&quot; HREF=\&quot;hh.css\&quot; media=\&quot;handheld\&quot;&gt;&lt;br /&gt;
&lt;/code&gt;
&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Actually the borwser detection, as showed, should not be used for choosing CSS! Imagine using an Android tablet. Your application would switch to a CSS optimized for a small display while the tablet might actually have a full size one. But there is a proper switching feature already implmented through apropriate media attribute in the html link element (according to the HTML standards).</p>
<p>Consider the HTML code below. There are two stylesheets defined. common.css is used for regular screen browser, while hh.css is used for handheld devices. </p>
<p><code><br />
&lt;LINK REL=\"stylesheet\" title=\"Common\" HREF=\"common.css\" media=\"screen, projection\"&gt;<br />
&lt;LINK REL=\"stylesheet\" title=\"Handheld\" HREF=\"hh.css\" media=\"handheld\"&gt;<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fableson</title>
		<link>http://www.linux-mag.com/id/7625/#comment-7463</link>
		<dc:creator>fableson</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7625/#comment-7463</guid>
		<description>&lt;p&gt;@wojnicki&lt;/p&gt;
&lt;p&gt;Thanks for your suggestion.  &lt;/p&gt;
&lt;p&gt;Browser detection is a bit more of an art than a science, in my opinion.  If for no other reason than many platforms attempt to \&quot;emulate\&quot; other, more popular platforms.&lt;/p&gt;
&lt;p&gt;Even \&quot;handheld\&quot; as a media type is arbitrary, no? What are the screen dimensions of your tablet?&lt;/p&gt;
&lt;p&gt;My example was meant as \&quot;simple\&quot; means, though if the dimensions of the device are super important to your application putting additional care into stylesheet selection (and beyond to a specific js file containing relevant constants or \&quot;fallback\&quot; functionality...) would be time well spent for your application.&lt;/p&gt;
&lt;p&gt;A Media Query which tests for actual dimensions is arguably the best approach:&lt;/p&gt;
&lt;p&gt;Here is an example for obtaining a style sheet targeted towards a smartphone:&lt;br /&gt;
&lt;link rel=”stylesheet” type=”text/css” href=”smartphone.css” media=”only screen and (max-device-width: 480px)” /&gt;&lt;/p&gt;
&lt;p&gt;Here is a media query targeted towards a desktop computer:&lt;br /&gt;
&lt;link rel=”stylesheet” type=”text/css” href=”desktop.css” media=”only screen and (min-device-width: 481px)” /&gt;&lt;/p&gt;
&lt;p&gt;I have a couple of articles soon to be published which go into this in more detail.  I will post links back here when they are available.&lt;/p&gt;
&lt;p&gt;Thanks again.&lt;/p&gt;
&lt;p&gt;Frank
&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@wojnicki</p>
<p>Thanks for your suggestion.  </p>
<p>Browser detection is a bit more of an art than a science, in my opinion.  If for no other reason than many platforms attempt to \&#8221;emulate\&#8221; other, more popular platforms.</p>
<p>Even \&#8221;handheld\&#8221; as a media type is arbitrary, no? What are the screen dimensions of your tablet?</p>
<p>My example was meant as \&#8221;simple\&#8221; means, though if the dimensions of the device are super important to your application putting additional care into stylesheet selection (and beyond to a specific js file containing relevant constants or \&#8221;fallback\&#8221; functionality&#8230;) would be time well spent for your application.</p>
<p>A Media Query which tests for actual dimensions is arguably the best approach:</p>
<p>Here is an example for obtaining a style sheet targeted towards a smartphone:<br />
&lt;link rel=”stylesheet” type=”text/css” href=”smartphone.css” media=”only screen and (max-device-width: 480px)” /&gt;</p>
<p>Here is a media query targeted towards a desktop computer:<br />
&lt;link rel=”stylesheet” type=”text/css” href=”desktop.css” media=”only screen and (min-device-width: 481px)” /&gt;</p>
<p>I have a couple of articles soon to be published which go into this in more detail.  I will post links back here when they are available.</p>
<p>Thanks again.</p>
<p>Frank</p>
]]></content:encoded>
	</item>
</channel>
</rss>