<?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: Clone My Fields, Please</title>
	<atom:link href="http://subakva.com/2008/02/26/clone-my-fields-please/feed/" rel="self" type="application/rss+xml" />
	<link>http://subakva.com/2008/02/26/clone-my-fields-please/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=clone-my-fields-please</link>
	<description>Submerged in Esperanto</description>
	<lastBuildDate>Sat, 06 Mar 2010 20:21:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andrew Pelt</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-1810</link>
		<dc:creator>Andrew Pelt</dc:creator>
		<pubDate>Sat, 06 Mar 2010 20:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-1810</guid>
		<description>Thanks for your article. I am new at python and this will be a big help.</description>
		<content:encoded><![CDATA[<p>Thanks for your article. I am new at python and this will be a big help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JR</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-203</link>
		<dc:creator>JR</dc:creator>
		<pubDate>Fri, 14 Nov 2008 00:14:08 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-203</guid>
		<description>This article and the accompanying comments were most helpful in converting MercuryTide&#039;s search to Django 1.0+ compatibility, thank you!

I ended up using MercuryTide&#039;s search as a starting point, but wrote the actual search aspect myself, because InnoDB doesn&#039;t support MySQL&#039;s fulltext search.</description>
		<content:encoded><![CDATA[<p>This article and the accompanying comments were most helpful in converting MercuryTide&#8217;s search to Django 1.0+ compatibility, thank you!</p>
<p>I ended up using MercuryTide&#8217;s search as a starting point, but wrote the actual search aspect myself, because InnoDB doesn&#8217;t support MySQL&#8217;s fulltext search.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yeago</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-24</link>
		<dc:creator>Yeago</dc:creator>
		<pubDate>Wed, 14 May 2008 16:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-24</guid>
		<description>I think that fixed one issue, Craig. 

Now I&#039;m attempting to track down an odd bug whereby attempting to filter() a result-set results in [], regardless of match.</description>
		<content:encoded><![CDATA[<p>I think that fixed one issue, Craig. </p>
<p>Now I&#8217;m attempting to track down an odd bug whereby attempting to filter() a result-set results in [], regardless of match.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Ogg</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-21</link>
		<dc:creator>Craig Ogg</dc:creator>
		<pubDate>Tue, 29 Apr 2008 00:39:19 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-21</guid>
		<description>I haven&#039;t checked it to any real extent, but it looks like just bad subclassing form.  Adding *args and **kwargs in the usual way should make the problem disappear:

    def __init__(self, index_column, *args, **kwargs):
        super(SearchManager, self).__init__(*args, **kwargs)

Similarly for SearchQuerySet.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t checked it to any real extent, but it looks like just bad subclassing form.  Adding *args and **kwargs in the usual way should make the problem disappear:</p>
<p>    def __init__(self, index_column, *args, **kwargs):<br />
        super(SearchManager, self).__init__(*args, **kwargs)</p>
<p>Similarly for SearchQuerySet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yeago</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-20</link>
		<dc:creator>Yeago</dc:creator>
		<pubDate>Mon, 28 Apr 2008 18:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-20</guid>
		<description>Don&#039;t suppose the SearchManager is choking upon the last svn update?

django/db/models/query.py 

line c = klass(model=self.model, query=self.query.clone())  

&quot;__init__() got an unexpected keyword argument &#039;query&#039;&quot;

Digging around. Letcha know if I find something out.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t suppose the SearchManager is choking upon the last svn update?</p>
<p>django/db/models/query.py </p>
<p>line c = klass(model=self.model, query=self.query.clone())  </p>
<p>&#8220;__init__() got an unexpected keyword argument &#8216;query&#8217;&#8221;</p>
<p>Digging around. Letcha know if I find something out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Wadsworth</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-14</link>
		<dc:creator>Jason Wadsworth</dc:creator>
		<pubDate>Sat, 05 Apr 2008 15:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-14</guid>
		<description>Last I checked, the built-in Django support only supported single columns, and only in boolean mode. That&#039;s definitely useful, but it&#039;s not appropriate for every situation.

I looked at my code and remembered the fix for the quote_name problem. The organization of the backends in Django changed in the trunk so that quote_name was accessed through a DatabaseOperations interface.

&lt;pre&gt;
Replace:
backend.quote_name(...)

With:
ops = backend.DatabaseOperations()
ops.quote_name(...)
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Last I checked, the built-in Django support only supported single columns, and only in boolean mode. That&#8217;s definitely useful, but it&#8217;s not appropriate for every situation.</p>
<p>I looked at my code and remembered the fix for the quote_name problem. The organization of the backends in Django changed in the trunk so that quote_name was accessed through a DatabaseOperations interface.</p>
<pre>
Replace:
backend.quote_name(...)

With:
ops = backend.DatabaseOperations()
ops.quote_name(...)
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yeago</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-13</link>
		<dc:creator>Yeago</dc:creator>
		<pubDate>Thu, 03 Apr 2008 19:04:55 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-13</guid>
		<description>Maybe the whole comment was dumb. Sphinx is for MySql+Django only.</description>
		<content:encoded><![CDATA[<p>Maybe the whole comment was dumb. Sphinx is for MySql+Django only.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yeago</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-12</link>
		<dc:creator>Yeago</dc:creator>
		<pubDate>Thu, 03 Apr 2008 18:59:10 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-12</guid>
		<description>Mmm.... ok, I retract the above remark about it being built in. Apparently Django doesn&#039;t provide for full-text across columns.</description>
		<content:encoded><![CDATA[<p>Mmm&#8230;. ok, I retract the above remark about it being built in. Apparently Django doesn&#8217;t provide for full-text across columns.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yeago</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-11</link>
		<dc:creator>Yeago</dc:creator>
		<pubDate>Thu, 03 Apr 2008 18:25:16 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-11</guid>
		<description>Actually, I&#039;m going to ignore the stuff at mercurytide as this has since been built-in to Django.

Also, for those non-mysqlers:

http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html</description>
		<content:encoded><![CDATA[<p>Actually, I&#8217;m going to ignore the stuff at mercurytide as this has since been built-in to Django.</p>
<p>Also, for those non-mysqlers:</p>
<p><a href="http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html" rel="nofollow">http://www.davidcramer.net/code/79/in-depth-django-sphinx-tutorial.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yeago</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/comment-page-1/#comment-10</link>
		<dc:creator>Yeago</dc:creator>
		<pubDate>Thu, 03 Apr 2008 14:49:46 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-10</guid>
		<description>Yes, mysql.

I&#039;m using Django SVN and I&#039;ve verified that quote_name exists in that class.</description>
		<content:encoded><![CDATA[<p>Yes, mysql.</p>
<p>I&#8217;m using Django SVN and I&#8217;ve verified that quote_name exists in that class.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
