<?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 for From Accessibility to Zope</title>
	<atom:link href="http://blog.mauveweb.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mauveweb.co.uk</link>
	<description>experiments in contemporary web development</description>
	<pubDate>Mon, 08 Sep 2008 13:23:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>Comment on Tip: Tables containing people by mauve</title>
		<link>http://blog.mauveweb.co.uk/2008/01/25/tip-tables-containing-people/#comment-25547</link>
		<dc:creator>mauve</dc:creator>
		<pubDate>Mon, 01 Sep 2008 18:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2008/01/25/tip-tables-containing-people/#comment-25547</guid>
		<description>You also should store collation too if you want to be able to sort names in telephone directory order.

Telephone directories are sorted by surname then initials  and names like MacDonald are sorted with McDonald, so storing a field for collation can be even more useful that simply storing surname and first names.</description>
		<content:encoded><![CDATA[<p>You also should store collation too if you want to be able to sort names in telephone directory order.</p>
<p>Telephone directories are sorted by surname then initials  and names like MacDonald are sorted with McDonald, so storing a field for collation can be even more useful that simply storing surname and first names.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Model Downcast in Django by Ryan</title>
		<link>http://blog.mauveweb.co.uk/2008/07/30/model-downcast-in-django/#comment-24430</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Thu, 31 Jul 2008 00:48:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/?p=154#comment-24430</guid>
		<description>I just ran across this problem today.  I wanted to query the parent model and use each instance returned as a child model, but instead I just queried each of the child tables one at a time.  I think SQLAlchemy handles this better.</description>
		<content:encoded><![CDATA[<p>I just ran across this problem today.  I wanted to query the parent model and use each instance returned as a child model, but instead I just queried each of the child tables one at a time.  I think SQLAlchemy handles this better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paypal with Django by Benjamin Keating</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23914</link>
		<dc:creator>Benjamin Keating</dc:creator>
		<pubDate>Tue, 15 Jul 2008 20:54:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23914</guid>
		<description>I am looking for some very similar code. I am building a Membership system which is based on PayFlowPro, which uses a local paypal SDK. Paypals docs are the worst ever, in my opinion and Im trying to fuse it together with my Django projects.  Any advice?</description>
		<content:encoded><![CDATA[<p>I am looking for some very similar code. I am building a Membership system which is based on PayFlowPro, which uses a local paypal SDK. Paypals docs are the worst ever, in my opinion and Im trying to fuse it together with my Django projects.  Any advice?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paypal with Django by karzeem</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23756</link>
		<dc:creator>karzeem</dc:creator>
		<pubDate>Thu, 26 Jun 2008 00:42:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23756</guid>
		<description>Whoops, no HTML allowed.  Here it is with the 's replaced with /s.

/input type="hidden" name="encrypted" value="{{ encryptedBlob }}"/
/input type="hidden" name="business" value="contact@psthisispublic.com"/
/input type="hidden" name="cmd" value="_s-xclick"/
/input type="submit" value="Yes, proceed to PayPal"/</description>
		<content:encoded><![CDATA[<p>Whoops, no HTML allowed.  Here it is with the &#8217;s replaced with /s.</p>
<p>/input type=&#8221;hidden&#8221; name=&#8221;encrypted&#8221; value=&#8221;{{ encryptedBlob }}&#8221;/<br />
/input type=&#8221;hidden&#8221; name=&#8221;business&#8221; value=&#8221;contact@psthisispublic.com&#8221;/<br />
/input type=&#8221;hidden&#8221; name=&#8221;cmd&#8221; value=&#8221;_s-xclick&#8221;/<br />
/input type=&#8221;submit&#8221; value=&#8221;Yes, proceed to PayPal&#8221;/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paypal with Django by karzeem</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23755</link>
		<dc:creator>karzeem</dc:creator>
		<pubDate>Thu, 26 Jun 2008 00:41:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-23755</guid>
		<description>The same error ("The email address for the business is not present in the encrypted blob. Please contact your merchant.”) has been hanging me up for a couple days.  Your code here has been enormously helpful—I wonder if I could get your opinion on the markup below.  I'm including the cmd and business pairs both in the markup and the encrypted blob, to no avail.  Does a quick glance from someone who knows more than me reveal any egregious mistakes?  Thanks very much.




</description>
		<content:encoded><![CDATA[<p>The same error (&#8221;The email address for the business is not present in the encrypted blob. Please contact your merchant.”) has been hanging me up for a couple days.  Your code here has been enormously helpful—I wonder if I could get your opinion on the markup below.  I&#8217;m including the cmd and business pairs both in the markup and the encrypted blob, to no avail.  Does a quick glance from someone who knows more than me reveal any egregious mistakes?  Thanks very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Construction in Inkscape by stelt</title>
		<link>http://blog.mauveweb.co.uk/2006/09/25/construction-in-inkscape/#comment-23713</link>
		<dc:creator>stelt</dc:creator>
		<pubDate>Tue, 24 Jun 2008 11:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2006/09/25/construction-in-inkscape/#comment-23713</guid>
		<description>Added this article to the SVG link resource</description>
		<content:encoded><![CDATA[<p>Added this article to the SVG link resource</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SVG filters with Inkscape 0.46 by heathenx</title>
		<link>http://blog.mauveweb.co.uk/2008/04/19/svg-filters-with-inkscape-046/#comment-21830</link>
		<dc:creator>heathenx</dc:creator>
		<pubDate>Mon, 21 Apr 2008 15:09:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/?p=138#comment-21830</guid>
		<description>It's my understanding that you created and supplied the "inkscape_filters.svg" document that is currently in Inkscape SVN. Would you be interested in uploading that to openclipart so that the rest of the Inkscape community can easily find that file and use it? It is a tremendous resource. Thank-you for your efforts.</description>
		<content:encoded><![CDATA[<p>It&#8217;s my understanding that you created and supplied the &#8220;inkscape_filters.svg&#8221; document that is currently in Inkscape SVN. Would you be interested in uploading that to openclipart so that the rest of the Inkscape community can easily find that file and use it? It is a tremendous resource. Thank-you for your efforts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paypal with Django by mauve</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21450</link>
		<dc:creator>mauve</dc:creator>
		<pubDate>Mon, 07 Apr 2008 11:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21450</guid>
		<description>Oh, sorry. I don't know how that double-slash got in there. It's not in my source. I blame Wordpress and/or PHP.

I didn't need the cert_id in the plain though.</description>
		<content:encoded><![CDATA[<p>Oh, sorry. I don&#8217;t know how that double-slash got in there. It&#8217;s not in my source. I blame Wordpress and/or PHP.</p>
<p>I didn&#8217;t need the cert_id in the plain though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paypal with Django by erral</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21449</link>
		<dc:creator>erral</dc:creator>
		<pubDate>Mon, 07 Apr 2008 10:09:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21449</guid>
		<description>Thank you for your answer. I finally had it working, exchanging the \\n with \n and sending the cert_id parameter in clear without encrypting it.


Mikel</description>
		<content:encoded><![CDATA[<p>Thank you for your answer. I finally had it working, exchanging the \\n with \n and sending the cert_id parameter in clear without encrypting it.</p>
<p>Mikel</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Paypal with Django by mauve</title>
		<link>http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21357</link>
		<dc:creator>mauve</dc:creator>
		<pubDate>Thu, 03 Apr 2008 22:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mauveweb.co.uk/2007/10/10/paypal-with-django/#comment-21357</guid>
		<description>No, it works for me with line feeds; the e-mail address is passed with the key 'business'. I recall that the error messages are misleading though. Don't get hung up on the format of the plaintext because I think you get similar messages if there's a problem with the cryptography.</description>
		<content:encoded><![CDATA[<p>No, it works for me with line feeds; the e-mail address is passed with the key &#8216;business&#8217;. I recall that the error messages are misleading though. Don&#8217;t get hung up on the format of the plaintext because I think you get similar messages if there&#8217;s a problem with the cryptography.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
