<?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"
	>
<channel>
	<title>Comments on: Titlecase.py: Titlecase in python</title>
	<atom:link href="http://muffinresearch.co.uk/archives/2008/05/27/titlecasepy-titlecase-in-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://muffinresearch.co.uk/archives/2008/05/27/titlecasepy-titlecase-in-python/</link>
	<description>the personal blog of Stuart Colville covering modern web development techniques and best practices</description>
	<pubDate>Thu, 20 Nov 2008 09:47:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Ben Spaulding</title>
		<link>http://muffinresearch.co.uk/archives/2008/05/27/titlecasepy-titlecase-in-python/#comment-64641</link>
		<dc:creator>Ben Spaulding</dc:creator>
		<pubDate>Fri, 07 Nov 2008 17:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=368#comment-64641</guid>
		<description>@Tom Watson: Have a look at &lt;a href="http://mintchaos.com/" rel="nofollow"&gt;Christian Metts&lt;/a&gt;’ &lt;a href="http://code.google.com/p/typogrify/" rel="nofollow"&gt;Typogrify library&lt;/a&gt;. He recently &lt;a href="http://code.google.com/p/typogrify/source/detail?r=15" rel="nofollow"&gt;added support for Titlecase.py&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>@Tom Watson: Have a look at <a href="http://mintchaos.com/" rel="nofollow">Christian Metts</a>’ <a href="http://code.google.com/p/typogrify/" rel="nofollow">Typogrify library</a>. He recently <a href="http://code.google.com/p/typogrify/source/detail?r=15" rel="nofollow">added support for Titlecase.py</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart Colville</title>
		<link>http://muffinresearch.co.uk/archives/2008/05/27/titlecasepy-titlecase-in-python/#comment-64634</link>
		<dc:creator>Stuart Colville</dc:creator>
		<pubDate>Thu, 30 Oct 2008 09:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=368#comment-64634</guid>
		<description>@James: It's not quite that simple as lowering all of the text at input is likely to break quite a lot of tests as some of the functionality takes into account the case of the input.

However you do have a point that a few of the test cases had the same input as the expected output and in the process of addressing that I found a small bug where a special quote was missing from the punct regex.

I've updated the tests, cleaned up the code and released it as version 0.2.

https://launchpad.net/titlecase.py/trunk/0.2

Thanks for your comment -- it was definitely a worthwile observation!</description>
		<content:encoded><![CDATA[<p>@James: It&#8217;s not quite that simple as lowering all of the text at input is likely to break quite a lot of tests as some of the functionality takes into account the case of the input.</p>
<p>However you do have a point that a few of the test cases had the same input as the expected output and in the process of addressing that I found a small bug where a special quote was missing from the punct regex.</p>
<p>I&#8217;ve updated the tests, cleaned up the code and released it as version 0.2.</p>
<p><a href="https://launchpad.net/titlecase.py/trunk/0.2" rel="nofollow">https://launchpad.net/titlecase.py/trunk/0.2</a></p>
<p>Thanks for your comment &#8212; it was definitely a worthwile observation!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://muffinresearch.co.uk/archives/2008/05/27/titlecasepy-titlecase-in-python/#comment-64633</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 30 Oct 2008 02:47:28 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=368#comment-64633</guid>
		<description>I'm somewhat of a novice but I seem to observe that the tests pass because the inputs are already in title case. If i add text=text.lower() at the start of the function the test cases fail.</description>
		<content:encoded><![CDATA[<p>I&#8217;m somewhat of a novice but I seem to observe that the tests pass because the inputs are already in title case. If i add text=text.lower() at the start of the function the test cases fail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Watson</title>
		<link>http://muffinresearch.co.uk/archives/2008/05/27/titlecasepy-titlecase-in-python/#comment-64545</link>
		<dc:creator>Tom Watson</dc:creator>
		<pubDate>Sat, 16 Aug 2008 02:57:44 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=368#comment-64545</guid>
		<description>Very cool! Do you know of a Django filter version of this script anywhere?</description>
		<content:encoded><![CDATA[<p>Very cool! Do you know of a Django filter version of this script anywhere?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ≈ Relations &#8250; links for 2008-08-14</title>
		<link>http://muffinresearch.co.uk/archives/2008/05/27/titlecasepy-titlecase-in-python/#comment-64544</link>
		<dc:creator>≈ Relations &#8250; links for 2008-08-14</dc:creator>
		<pubDate>Fri, 15 Aug 2008 01:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/?p=368#comment-64544</guid>
		<description>[...] Titlecase.py: Titlecase in python by Stuart Colville John Gruber recently published a perl script to convert strings into title case avoiding capitalizing small words based on rules from the New York Times Manual of style as well as catering for several special cases. (tags: software opensource python titlecase) [...]</description>
		<content:encoded><![CDATA[<p>[...] Titlecase.py: Titlecase in python by Stuart Colville John Gruber recently published a perl script to convert strings into title case avoiding capitalizing small words based on rules from the New York Times Manual of style as well as catering for several special cases. (tags: software opensource python titlecase) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
