<?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: 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/</link>
	<description>Submerged in Esperanto</description>
	<pubDate>Tue, 06 Jan 2009 19:04:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: JR</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/#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's search to Django 1.0+ compatibility, thank you!

I ended up using MercuryTide's search as a starting point, but wrote the actual search aspect myself, because InnoDB doesn't support MySQL'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-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'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-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'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-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'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())  

"__init__() got an unexpected keyword argument 'query'"

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-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's definitely useful, but it'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-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-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'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-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'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-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'm using Django SVN and I'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>
	<item>
		<title>By: Jason Wadsworth</title>
		<link>http://subakva.com/2008/02/26/clone-my-fields-please/#comment-8</link>
		<dc:creator>Jason Wadsworth</dc:creator>
		<pubDate>Tue, 01 Apr 2008 21:46:39 +0000</pubDate>
		<guid isPermaLink="false">http://subakva.com/2008/02/26/clone-my-fields-please/#comment-8</guid>
		<description>That sounds familiar, but I don't remember the cause. This is probably a stupid question, but you are using MySQL, right?</description>
		<content:encoded><![CDATA[<p>That sounds familiar, but I don&#8217;t remember the cause. This is probably a stupid question, but you are using MySQL, right?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 2.764 seconds -->
