<?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: Implementing Search in Django Site using HayStack and Xapian / Whoosh</title>
	<atom:link href="http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/</link>
	<description>Nitin Hayaran&#039;s Blog</description>
	<lastBuildDate>Fri, 10 Feb 2012 02:42:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Praveen Krishna R</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-18598</link>
		<dc:creator>Praveen Krishna R</dc:creator>
		<pubDate>Tue, 23 Aug 2011 16:43:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-18598</guid>
		<description>Hey, 

I was stuck at how to do it on a simple query, now the official document had nothing like, that kind. You saved me! 


Thanks alot!

-praveen</description>
		<content:encoded><![CDATA[<p>Hey, </p>
<p>I was stuck at how to do it on a simple query, now the official document had nothing like, that kind. You saved me! </p>
<p>Thanks alot!</p>
<p>-praveen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kasperasky</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-16229</link>
		<dc:creator>Kasperasky</dc:creator>
		<pubDate>Wed, 22 Jun 2011 09:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-16229</guid>
		<description>Hey there . Great post . 

I am stuck at setting it up 

My settings.py is this 
HAYSTACK_SITECONF = &#039;/home/satyajit/geodjango/geographic_admin.search_sites&#039;
HAYSTACK_SEARCH_ENGINE = &#039;whoosh&#039;
HAYSTACK_WHOOSH_PATH=&#039;/home/satyajit/geodjango/geographic_admin/whoosh_index&#039;

And still I get an error that says this 
django.core.exceptions.ImproperlyConfigured: The HAYSTACK_SITECONF setting is no longer used &amp; can be removed.</description>
		<content:encoded><![CDATA[<p>Hey there . Great post . </p>
<p>I am stuck at setting it up </p>
<p>My settings.py is this<br />
HAYSTACK_SITECONF = &#8216;/home/satyajit/geodjango/geographic_admin.search_sites&#8217;<br />
HAYSTACK_SEARCH_ENGINE = &#8216;whoosh&#8217;<br />
HAYSTACK_WHOOSH_PATH=&#8217;/home/satyajit/geodjango/geographic_admin/whoosh_index&#8217;</p>
<p>And still I get an error that says this<br />
django.core.exceptions.ImproperlyConfigured: The HAYSTACK_SITECONF setting is no longer used &amp; can be removed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-16040</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sun, 12 Jun 2011 17:50:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-16040</guid>
		<description>Thanks for the great post, the documentation is particularly vague about how to go about righting a custom view and your little snippet of code just made it clear to me.</description>
		<content:encoded><![CDATA[<p>Thanks for the great post, the documentation is particularly vague about how to go about righting a custom view and your little snippet of code just made it clear to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atif Haider</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-5263</link>
		<dc:creator>Atif Haider</dc:creator>
		<pubDate>Sat, 27 Feb 2010 12:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-5263</guid>
		<description>Hey, i have followed the above procedure. but when i query for search item it doesn&#039;t return any.

SearchQuerySet().auto_query(&#039;ploitics&#039;)

It returns empty list. Though the title of my model contains politics term in it.

Can you please help me to sort out this issue?</description>
		<content:encoded><![CDATA[<p>Hey, i have followed the above procedure. but when i query for search item it doesn&#8217;t return any.</p>
<p>SearchQuerySet().auto_query(&#8216;ploitics&#8217;)</p>
<p>It returns empty list. Though the title of my model contains politics term in it.</p>
<p>Can you please help me to sort out this issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: danin</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-5005</link>
		<dc:creator>danin</dc:creator>
		<pubDate>Tue, 09 Feb 2010 05:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-5005</guid>
		<description>Hi I am new to Django. Right now I am working on one project which need searching functionality. I read your document and it  was quite simplified than original document. But I have one query regarding it. Can you please tell me Urls.py. How wil i define url for searching in my urls.py file</description>
		<content:encoded><![CDATA[<p>Hi I am new to Django. Right now I am working on one project which need searching functionality. I read your document and it  was quite simplified than original document. But I have one query regarding it. Can you please tell me Urls.py. How wil i define url for searching in my urls.py file</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nitin</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-3747</link>
		<dc:creator>nitin</dc:creator>
		<pubDate>Fri, 20 Nov 2009 17:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-3747</guid>
		<description>ok cool...
Best of luck with your project.</description>
		<content:encoded><![CDATA[<p>ok cool&#8230;<br />
Best of luck with your project.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shoeb siafee</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-3743</link>
		<dc:creator>shoeb siafee</dc:creator>
		<pubDate>Fri, 20 Nov 2009 14:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-3743</guid>
		<description>hey dear
thank you very much for your quick reply
actually i m a beginner in django.
and my boss gave me task to implement search engine for a website.
so i m just working on that.
i resolved that problem and successfully implemented basic search engine using haystack with whoosh.
now i m just working on with website and trying to the same with the whole website.</description>
		<content:encoded><![CDATA[<p>hey dear<br />
thank you very much for your quick reply<br />
actually i m a beginner in django.<br />
and my boss gave me task to implement search engine for a website.<br />
so i m just working on that.<br />
i resolved that problem and successfully implemented basic search engine using haystack with whoosh.<br />
now i m just working on with website and trying to the same with the whole website.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nitin</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-3742</link>
		<dc:creator>nitin</dc:creator>
		<pubDate>Fri, 20 Nov 2009 12:30:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-3742</guid>
		<description>Hi Shoeb,

I have already shared the code used in my views.py ( &lt;strong&gt;see Step 7&lt;/strong&gt; )</description>
		<content:encoded><![CDATA[<p>Hi Shoeb,</p>
<p>I have already shared the code used in my views.py ( <strong>see Step 7</strong> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shoeb siafee</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-3739</link>
		<dc:creator>shoeb siafee</dc:creator>
		<pubDate>Fri, 20 Nov 2009 07:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-3739</guid>
		<description>hey nitin
i have indexed all my databses .
now i m just stuck in how to create a view and template.
can please upload ur sample template ?</description>
		<content:encoded><![CDATA[<p>hey nitin<br />
i have indexed all my databses .<br />
now i m just stuck in how to create a view and template.<br />
can please upload ur sample template ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nitin</title>
		<link>http://www.nitinh.com/2009/10/implementing-search-in-django-site-using-haystack-and-xapian-whoosh/comment-page-1/#comment-3677</link>
		<dc:creator>nitin</dc:creator>
		<pubDate>Sat, 07 Nov 2009 17:05:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.nitinh.com/?p=275#comment-3677</guid>
		<description>It may be difficult for me to upload full source, as it has became an integral part of whole project. 

In this tutorial I have already covered all the points to be done for implementation.

Even then if you feel problem then feel free to ask the specific query.</description>
		<content:encoded><![CDATA[<p>It may be difficult for me to upload full source, as it has became an integral part of whole project. </p>
<p>In this tutorial I have already covered all the points to be done for implementation.</p>
<p>Even then if you feel problem then feel free to ask the specific query.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
