<?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 for HTML5 Doctor</title>
	<atom:link href="http://html5doctor.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://html5doctor.com</link>
	<description>helping you implement HTML5 today</description>
	<lastBuildDate>Wed, 16 May 2012 21:31:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by musictheorysean</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25713</link>
		<dc:creator>musictheorysean</dc:creator>
		<pubDate>Wed, 16 May 2012 21:31:49 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25713</guid>
		<description>I&#039;m a n00b to writing things with web languages and have just started looking into how to design scaled layouts. After reading a few articles about this today: I hands down want to be writing &lt;code&gt;picture&lt;/code&gt; and not &lt;code&gt;srcset&lt;/code&gt;. It&#039;s much more intuitive, as HTML 5 should be.</description>
		<content:encoded><![CDATA[<p>I&#8217;m a n00b to writing things with web languages and have just started looking into how to design scaled layouts. After reading a few articles about this today: I hands down want to be writing <code>picture</code> and not <code>srcset</code>. It&#8217;s much more intuitive, as HTML 5 should be.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by Petra Gregorová</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25712</link>
		<dc:creator>Petra Gregorová</dc:creator>
		<pubDate>Wed, 16 May 2012 21:05:49 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25712</guid>
		<description>My main concern with adopting &lt;code&gt;srcset&lt;/code&gt; isn&#039;t just its fugly syntax but (just like Jeremy mentioned) most importantly having risk of losing the ability sticking to mobile-first approach, which I am very much fond of and would hate for us to have to get away from.</description>
		<content:encoded><![CDATA[<p>My main concern with adopting <code>srcset</code> isn&#8217;t just its fugly syntax but (just like Jeremy mentioned) most importantly having risk of losing the ability sticking to mobile-first approach, which I am very much fond of and would hate for us to have to get away from.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by Niels Matthijs</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25711</link>
		<dc:creator>Niels Matthijs</dc:creator>
		<pubDate>Wed, 16 May 2012 21:03:49 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25711</guid>
		<description>&lt;blockquote&gt;
Instead it’s more like a media query,
&lt;/blockquote&gt;
&lt;blockquote&gt;
But if it is doing Media Queries’ job, it should look more like Media Queries.
&lt;/blockquote&gt;

Am I the only one that finds it weird that with quotes likes these nobody seems to be considering actually making it a part of media queries (and css), or at least pulling all this stuff away from html where it clearly doesn&#039;t belong?

Are there any good arguments why this needs to be added to the html spec?</description>
		<content:encoded><![CDATA[<blockquote><p>
Instead it’s more like a media query,
</p></blockquote>
<blockquote><p>
But if it is doing Media Queries’ job, it should look more like Media Queries.
</p></blockquote>
<p>Am I the only one that finds it weird that with quotes likes these nobody seems to be considering actually making it a part of media queries (and css), or at least pulling all this stuff away from html where it clearly doesn&#8217;t belong?</p>
<p>Are there any good arguments why this needs to be added to the html spec?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by DSKrepps</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25706</link>
		<dc:creator>DSKrepps</dc:creator>
		<pubDate>Wed, 16 May 2012 18:39:18 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25706</guid>
		<description>If I think about what I&#039;d like using the most, I come up with this:
&lt;code&gt;
&lt;link rel=&quot;alternate src&quot; selector=&quot;img[src=lowres.jpg]&quot; media=&quot;min-width:800px&quot; href=&quot;highres.jpg&quot; /&gt;
&lt;/code&gt;

The img tag remains unchanged. The link tag can be placed immediately before the img tag, or elsewhere, all in one place - separation of concerns. Plus, it can apply to elements other than img, while causing no trouble in older browsers but being easily polyfill-able. &#039;selector&#039; is the only new attribute.

Maybe somehow syntax can be created to modify urls, such as changing those that match &quot;[src^=/lowres/]&quot; into the /highres/ directory. That way you don&#039;t need large amounts of media queries.

Maybe not even &lt;link&gt; is the best solution. A new element to change any attribute based on media queries? Or am I getting too out-there...
&lt;code&gt;
&lt;adapt select=&quot;[src]&quot; media=&quot;min-width:800px&quot; attr=&quot;src&quot; replace=&quot;/lowres/&quot; with=&quot;/highres/&quot; /&gt;
&lt;/code&gt;

Many, many use cases. Many, many abuse cases. I&#039;m just thinking this all up as I type.

Server-side solutions sound useful for some, but not all.</description>
		<content:encoded><![CDATA[<p>If I think about what I&#8217;d like using the most, I come up with this:<br />
<code><br />
&lt;link rel="alternate src" selector="img[src=lowres.jpg]" media="min-width:800px" href="highres.jpg" /&gt;<br />
</code></p>
<p>The img tag remains unchanged. The link tag can be placed immediately before the img tag, or elsewhere, all in one place &#8211; separation of concerns. Plus, it can apply to elements other than img, while causing no trouble in older browsers but being easily polyfill-able. &#8216;selector&#8217; is the only new attribute.</p>
<p>Maybe somehow syntax can be created to modify urls, such as changing those that match &#8220;[src^=/lowres/]&#8221; into the /highres/ directory. That way you don&#8217;t need large amounts of media queries.</p>
<p>Maybe not even &lt;link&gt; is the best solution. A new element to change any attribute based on media queries? Or am I getting too out-there&#8230;<br />
<code><br />
&lt;adapt select="[src]" media="min-width:800px" attr="src" replace="/lowres/" with="/highres/" /&gt;<br />
</code></p>
<p>Many, many use cases. Many, many abuse cases. I&#8217;m just thinking this all up as I type.</p>
<p>Server-side solutions sound useful for some, but not all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by Josh T.</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25701</link>
		<dc:creator>Josh T.</dc:creator>
		<pubDate>Wed, 16 May 2012 16:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25701</guid>
		<description>I still prefer the &lt;picture&gt; proposal, but the arguments about why we shouldn&#039;t use media queries are good ones, and I haven&#039;t heard them mentioned before I read this. 

Why don&#039;t we have a compromise?

&lt;code&gt;
&lt;picture&gt;
&lt;source src=&quot;...&quot; set=&quot;200w&quot;&gt;
&lt;/picture&gt;
&lt;/code&gt;

With this method, it&#039;s much cleaner and we could still allow the media attribute for those who want it.</description>
		<content:encoded><![CDATA[<p>I still prefer the &lt;picture&gt; proposal, but the arguments about why we shouldn&#8217;t use media queries are good ones, and I haven&#8217;t heard them mentioned before I read this. </p>
<p>Why don&#8217;t we have a compromise?</p>
<p><code><br />
&lt;picture&gt;<br />
&lt;source src="..." set="200w"&gt;<br />
&lt;/picture&gt;<br />
</code></p>
<p>With this method, it&#8217;s much cleaner and we could still allow the media attribute for those who want it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by Dale Cruse</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25698</link>
		<dc:creator>Dale Cruse</dc:creator>
		<pubDate>Wed, 16 May 2012 15:43:42 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25698</guid>
		<description>I plan to make effective use of the &lt;yayBruce&gt; element in all current &amp; future projects.</description>
		<content:encoded><![CDATA[<p>I plan to make effective use of the &lt;yayBruce&gt; element in all current &amp; future projects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by John Reading</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25695</link>
		<dc:creator>John Reading</dc:creator>
		<pubDate>Wed, 16 May 2012 14:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25695</guid>
		<description>I have a problem with the  element in that it&#039;s simply too much verbosity. I can&#039;t fathom what a product grid might look like. Regardless of what is the approach, there needs to be a way to tokenize the logic that determines this. &lt;a href=&quot;http://hellowurld.heroku.com/blog/2012/05/15/another-image-proposal-for-responsive-design/&quot; rel=&quot;nofollow&quot;&gt;Here&#039;s something I proposed&lt;/a&gt; that uses the &lt;i&gt;link media=&quot;&quot;&lt;/i&gt; that we already use to tokenize the correct src attr.</description>
		<content:encoded><![CDATA[<p>I have a problem with the  element in that it&#8217;s simply too much verbosity. I can&#8217;t fathom what a product grid might look like. Regardless of what is the approach, there needs to be a way to tokenize the logic that determines this. <a href="http://hellowurld.heroku.com/blog/2012/05/15/another-image-proposal-for-responsive-design/" rel="nofollow">Here&#8217;s something I proposed</a> that uses the <i>link media=&#8221;"</i> that we already use to tokenize the correct src attr.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by Bruce Lawson</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25694</link>
		<dc:creator>Bruce Lawson</dc:creator>
		<pubDate>Wed, 16 May 2012 14:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25694</guid>
		<description>It troubles me, too, that the height and width syntax is pretty much duplicating Media Queries in that it suggests breakpoints to the UA but (presumably) doesn&#039;t require them. 

(This idea of hinting isn&#039;t new; it&#039;s part of the functionality of the preload attribute on video and audio).

But if it is doing Media Queries&#039; job, it should look more like Media Queries.

It also negates the idea of the author describing the assets rather than the circumstances that the UA should use the assets.</description>
		<content:encoded><![CDATA[<p>It troubles me, too, that the height and width syntax is pretty much duplicating Media Queries in that it suggests breakpoints to the UA but (presumably) doesn&#8217;t require them. </p>
<p>(This idea of hinting isn&#8217;t new; it&#8217;s part of the functionality of the preload attribute on video and audio).</p>
<p>But if it is doing Media Queries&#8217; job, it should look more like Media Queries.</p>
<p>It also negates the idea of the author describing the assets rather than the circumstances that the UA should use the assets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by Ian Devlin</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25693</link>
		<dc:creator>Ian Devlin</dc:creator>
		<pubDate>Wed, 16 May 2012 13:42:30 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25693</guid>
		<description>The fact that Jeremy Keith is struggling to understand what the specification says, what hope do normal (I&#039;m not saying that you&#039;re abnormal Jeremy!) authors have?</description>
		<content:encoded><![CDATA[<p>The fact that Jeremy Keith is struggling to understand what the specification says, what hope do normal (I&#8217;m not saying that you&#8217;re abnormal Jeremy!) authors have?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTML5 adaptive images: end of round one by Terence Eden</title>
		<link>http://html5doctor.com/html5-adaptive-images-end-of-round-one/#comment-25689</link>
		<dc:creator>Terence Eden</dc:creator>
		<pubDate>Wed, 16 May 2012 13:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=4645#comment-25689</guid>
		<description>Have to slightly disagree with you there, Drew.  Modern CDNs (like Akamai) do have an ability to run logic. They can even cache pages / images / etc based on user-agent.
Specifically, I&#039;ve used Akamai to serve an image of a different resolution to mobile &amp; desktop.  Same URL, different response based on UA.

Not every browser will get updated. Of the billions of smartphones accessing the web today, very few of them will see updates from their manufacturer. That&#039;s why I&#039;d rather see a server-side solution.

I would expect to write something like
&lt;code&gt;
&lt;img src=&quot;images/bruce&quot; lores-scr=&quot;images/bruce-tiny&quot; highres-src=&quot;images/large/bigbruce&quot; /&gt;
&lt;/code&gt;

That way, the server can work out which image to serve (and do content negotiation and server phones jpg, png, svg depending on what the the user accepts) - but the browser can specifically look for high or low res images if it has been told to.

(I&#039;m using high &amp; lo as placeholder - sure there&#039;s something more appropriate.)

T</description>
		<content:encoded><![CDATA[<p>Have to slightly disagree with you there, Drew.  Modern CDNs (like Akamai) do have an ability to run logic. They can even cache pages / images / etc based on user-agent.<br />
Specifically, I&#8217;ve used Akamai to serve an image of a different resolution to mobile &amp; desktop.  Same URL, different response based on UA.</p>
<p>Not every browser will get updated. Of the billions of smartphones accessing the web today, very few of them will see updates from their manufacturer. That&#8217;s why I&#8217;d rather see a server-side solution.</p>
<p>I would expect to write something like<br />
<code><br />
&lt;img src="images/bruce" lores-scr="images/bruce-tiny" highres-src="images/large/bigbruce" /&gt;<br />
</code></p>
<p>That way, the server can work out which image to serve (and do content negotiation and server phones jpg, png, svg depending on what the the user accepts) &#8211; but the browser can specifically look for high or low res images if it has been told to.</p>
<p>(I&#8217;m using high &amp; lo as placeholder &#8211; sure there&#8217;s something more appropriate.)</p>
<p>T</p>
]]></content:encoded>
	</item>
</channel>
</rss>

