<?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: Weblog UI and slugs</title>
	<atom:link href="http://blog.dolphinling.net/2005/06/weblog-ui-and-slugs/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dolphinling.net/2005/06/weblog-ui-and-slugs/</link>
	<description>...whatever goes through my head...</description>
	<lastBuildDate>Fri, 22 Jan 2010 11:50:20 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Douglas F Shearer</title>
		<link>http://blog.dolphinling.net/2005/06/weblog-ui-and-slugs/comment-page-1/#comment-2344</link>
		<dc:creator>Douglas F Shearer</dc:creator>
		<pubDate>Tue, 19 Sep 2006 16:07:34 +0000</pubDate>
		<guid isPermaLink="false">/?p=98#comment-2344</guid>
		<description>Nice blog post, gave me some good ideas while deciding in which direction to take the slug generation in my own publishing application.</description>
		<content:encoded><![CDATA[<p>Nice blog post, gave me some good ideas while deciding in which direction to take the slug generation in my own publishing application.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: choan</title>
		<link>http://blog.dolphinling.net/2005/06/weblog-ui-and-slugs/comment-page-1/#comment-80</link>
		<dc:creator>choan</dc:creator>
		<pubDate>Sat, 02 Jul 2005 13:31:17 +0000</pubDate>
		<guid isPermaLink="false">/?p=98#comment-80</guid>
		<description>&lt;blockquote&gt;&lt;p&gt;[...] there’s no character encoding sent&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;No, it&#039;s not a bug, it&#039;s a misconfiguration. I&#039;ll try to solve it as soon as possible. Anyway, seen the problem with Opera, it seems mandatory to use the escaped characters.&lt;/p&gt;
	&lt;p&gt;By the way, what&#039;s the matter with apostrophes in these comments?&lt;/p&gt;
	&lt;p&gt;PS: I love cats —and women, but the blog doesn&#039;t have any of them (women) at the moment ;)
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<blockquote><p>[...] there’s no character encoding sent</p>
</blockquote>
<p>No, it&#8217;s not a bug, it&#8217;s a misconfiguration. I&#8217;ll try to solve it as soon as possible. Anyway, seen the problem with Opera, it seems mandatory to use the escaped characters.</p>
<p>By the way, what&#8217;s the matter with apostrophes in these comments?</p>
<p>PS: I love cats —and women, but the blog doesn&#8217;t have any of them (women) at the moment ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dolphinling</title>
		<link>http://blog.dolphinling.net/2005/06/weblog-ui-and-slugs/comment-page-1/#comment-77</link>
		<dc:creator>dolphinling</dc:creator>
		<pubDate>Fri, 01 Jul 2005 16:00:22 +0000</pubDate>
		<guid isPermaLink="false">/?p=98#comment-77</guid>
		<description>&lt;p&gt;I mean that your name and the try that didn&#039;t work are in ISO-8859-1 and there&#039;s no character encoding sent. I don&#039;t know if this is a something you forgot to set or a bug in Apache because I see the rest of your site is in UTF-8.&lt;/p&gt;
	&lt;p&gt;P.S.: Your blog is in spanish, so I can&#039;t read all of it (took 4 years in middle/high school but stopped last year), but it has a cat at the top, so I approve. :-)&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I mean that your name and the try that didn&#8217;t work are in ISO-8859-1 and there&#8217;s no character encoding sent. I don&#8217;t know if this is a something you forgot to set or a bug in Apache because I see the rest of your site is in UTF-8.</p>
<p>P.S.: Your blog is in spanish, so I can&#8217;t read all of it (took 4 years in middle/high school but stopped last year), but it has a cat at the top, so I approve. :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: choan</title>
		<link>http://blog.dolphinling.net/2005/06/weblog-ui-and-slugs/comment-page-1/#comment-75</link>
		<dc:creator>choan</dc:creator>
		<pubDate>Fri, 01 Jul 2005 07:31:20 +0000</pubDate>
		<guid isPermaLink="false">/?p=98#comment-75</guid>
		<description>&lt;blockquote&gt;&lt;p&gt;Via choan in the comments, it exists! Thank you! But shouldn’t you be using UTF-8? ;)&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;Yes, I should and I&#039;d really like to do it because, obviously, it&#039;s simpler to use &lt;code&gt;ñ&lt;/code&gt; than &lt;code&gt;\u00F1&lt;/code&gt;. But reallity kicked my ass while developing the script: Opera won&#039;t do the replacements for accented chars whatever encoding I use.
&lt;/p&gt;
	&lt;p&gt;So, I decided to take the &lt;code&gt;\u####&lt;/code&gt; route. As the rest of the script uses only ASCII characters, it seems as the encoding doesn&#039;t matter.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<blockquote><p>Via choan in the comments, it exists! Thank you! But shouldn’t you be using UTF-8? ;)</p>
</blockquote>
<p>Yes, I should and I&#8217;d really like to do it because, obviously, it&#8217;s simpler to use <code>ñ</code> than <code>\u00F1</code>. But reallity kicked my ass while developing the script: Opera won&#8217;t do the replacements for accented chars whatever encoding I use.
</p>
<p>So, I decided to take the <code>\u####</code> route. As the rest of the script uses only ASCII characters, it seems as the encoding doesn&#8217;t matter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: choan</title>
		<link>http://blog.dolphinling.net/2005/06/weblog-ui-and-slugs/comment-page-1/#comment-70</link>
		<dc:creator>choan</dc:creator>
		<pubDate>Thu, 30 Jun 2005 17:31:04 +0000</pubDate>
		<guid isPermaLink="false">/?p=98#comment-70</guid>
		<description>&lt;p&gt;Well, my server&#039;s back, so &lt;a href=&quot;http://dizque.lacalabaza.net/greasemonkey/autoSlug.user.js&quot;&gt;here&#039;s the script&lt;/a&gt;. It works as an Opera user script too.&lt;/p&gt;
	&lt;p&gt;Please, feel free to improve it.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Well, my server&#8217;s back, so <a href="http://dizque.lacalabaza.net/greasemonkey/autoSlug.user.js">here&#8217;s the script</a>. It works as an Opera user script too.</p>
<p>Please, feel free to improve it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: choan</title>
		<link>http://blog.dolphinling.net/2005/06/weblog-ui-and-slugs/comment-page-1/#comment-69</link>
		<dc:creator>choan</dc:creator>
		<pubDate>Thu, 30 Jun 2005 09:56:58 +0000</pubDate>
		<guid isPermaLink="false">/?p=98#comment-69</guid>
		<description>&lt;blockquote&gt;&lt;p&gt;I suppose cooking up a greasemonkey script [...]&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;Cooked. Unfortunately my server is down at the moment, so I cannot show it, but it&#039;s working for me.&lt;/p&gt;
	&lt;p&gt;I&#039;ll made it publicly available as soon as my server goes up again.
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<blockquote><p>I suppose cooking up a greasemonkey script [...]</p>
</blockquote>
<p>Cooked. Unfortunately my server is down at the moment, so I cannot show it, but it&#8217;s working for me.</p>
<p>I&#8217;ll made it publicly available as soon as my server goes up again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Goscicki</title>
		<link>http://blog.dolphinling.net/2005/06/weblog-ui-and-slugs/comment-page-1/#comment-67</link>
		<dc:creator>Paul Goscicki</dc:creator>
		<pubDate>Wed, 29 Jun 2005 19:55:33 +0000</pubDate>
		<guid isPermaLink="false">/?p=98#comment-67</guid>
		<description>&lt;p&gt;I suppose cooking up a greasemonkey script that does that for a Wordpress advanced edit UI is a matter of 5-7 lines (and less than 5 minutes for experienced js coder). I&#039;m sure someone will write it, because it&#039;s quite neat idea.&lt;/p&gt;
	&lt;p&gt;Typing slugs by hand works for me, though.
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I suppose cooking up a greasemonkey script that does that for a Wordpress advanced edit UI is a matter of 5-7 lines (and less than 5 minutes for experienced js coder). I&#8217;m sure someone will write it, because it&#8217;s quite neat idea.</p>
<p>Typing slugs by hand works for me, though.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
