<?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: RPC4Django v0.1.6 Feature Requests</title>
	<atom:link href="http://www.davidfischer.name/2009/12/rpc4django-0-1-6-feature-requests/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidfischer.name/2009/12/rpc4django-0-1-6-feature-requests/</link>
	<description>Some Things to Some People</description>
	<lastBuildDate>Wed, 02 Jun 2010 15:03:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: David</title>
		<link>http://www.davidfischer.name/2009/12/rpc4django-0-1-6-feature-requests/comment-page-1/#comment-134</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 25 Jan 2010 06:14:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=338#comment-134</guid>
		<description>&lt;a href=&quot;#comment-133&quot; rel=&quot;nofollow&quot;&gt;@alekam &lt;/a&gt; 
Do people actually use WSDL for XMLRPC? I know it&#039;s not exclusively for SOAP, but I thought that was its primary use.</description>
		<content:encoded><![CDATA[<p><a href="#comment-133" rel="nofollow">@alekam </a><br />
Do people actually use WSDL for XMLRPC? I know it&#8217;s not exclusively for SOAP, but I thought that was its primary use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alekam</title>
		<link>http://www.davidfischer.name/2009/12/rpc4django-0-1-6-feature-requests/comment-page-1/#comment-133</link>
		<dc:creator>alekam</dc:creator>
		<pubDate>Sun, 24 Jan 2010 15:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=338#comment-133</guid>
		<description>Thanks for awesome application!
Did you thing about generating WSDL for rpc4django webservices?</description>
		<content:encoded><![CDATA[<p>Thanks for awesome application!<br />
Did you thing about generating WSDL for rpc4django webservices?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.davidfischer.name/2009/12/rpc4django-0-1-6-feature-requests/comment-page-1/#comment-130</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 19 Jan 2010 15:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=338#comment-130</guid>
		<description>&lt;a href=&quot;#comment-129&quot; rel=&quot;nofollow&quot;&gt;@ale &lt;/a&gt; 
That sounds very useful. I think I can implement it in 0.1.8.</description>
		<content:encoded><![CDATA[<p><a href="#comment-129" rel="nofollow">@ale </a><br />
That sounds very useful. I think I can implement it in 0.1.8.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ale</title>
		<link>http://www.davidfischer.name/2009/12/rpc4django-0-1-6-feature-requests/comment-page-1/#comment-129</link>
		<dc:creator>ale</dc:creator>
		<pubDate>Tue, 19 Jan 2010 09:13:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=338#comment-129</guid>
		<description>Hello,

I&#039; have another small request, I have some methods where I would like to use a @login_required decorator, I know &quot;login&quot; concept does&#039;t apply well in web services but you&#039;ve got the idea, by default users doesn&#039;t have any permission set but they have the most basic one: they are registered.

I thing we need an option to specify that a method is only available to &quot;registered users&quot; without the need to specify a particular permission. The login required decorator doesn&#039;t work, and it&#039;s impossible to raise a 403 from withon the view function (it will be catched by the caller).

We also should have something like @staff_required.

What if we add two options to the rpc decorator ?

login_required = boolean (default false)
staff_requred = boolean (default false)</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I&#8217; have another small request, I have some methods where I would like to use a @login_required decorator, I know &#8220;login&#8221; concept does&#8217;t apply well in web services but you&#8217;ve got the idea, by default users doesn&#8217;t have any permission set but they have the most basic one: they are registered.</p>
<p>I thing we need an option to specify that a method is only available to &#8220;registered users&#8221; without the need to specify a particular permission. The login required decorator doesn&#8217;t work, and it&#8217;s impossible to raise a 403 from withon the view function (it will be catched by the caller).</p>
<p>We also should have something like @staff_required.</p>
<p>What if we add two options to the rpc decorator ?</p>
<p>login_required = boolean (default false)<br />
staff_requred = boolean (default false)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bodom_lx</title>
		<link>http://www.davidfischer.name/2009/12/rpc4django-0-1-6-feature-requests/comment-page-1/#comment-118</link>
		<dc:creator>bodom_lx</dc:creator>
		<pubDate>Thu, 24 Dec 2009 11:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidfischer.name/?p=338#comment-118</guid>
		<description>&lt;a href=&quot;#comment-116&quot; rel=&quot;nofollow&quot;&gt;@David &lt;/a&gt; 
I did not try to serialize them using Django serializers. Should I use &#039;python&#039; as format to succesfully return them as xml-rpc entities?

Regarding the access to HttpRequest object: good luck, I wish I had the time to help you with this. I will surely help to test the feature when it&#039;s ready, as we need it :)

Thank you very much for everything</description>
		<content:encoded><![CDATA[<p><a href="#comment-116" rel="nofollow">@David </a><br />
I did not try to serialize them using Django serializers. Should I use &#8216;python&#8217; as format to succesfully return them as xml-rpc entities?</p>
<p>Regarding the access to HttpRequest object: good luck, I wish I had the time to help you with this. I will surely help to test the feature when it&#8217;s ready, as we need it <img src='http://www.davidfischer.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thank you very much for everything</p>
]]></content:encoded>
	</item>
</channel>
</rss>
