<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Vinsol - Leading Ruby on Rails Development and Consulting Firm in India &#187; ultrasphinx</title>
	<atom:link href="http://vinsol.com/blog/category/ultrasphinx/feed/" rel="self" type="application/rss+xml" />
	<link>http://vinsol.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 21 May 2012 13:11:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>When Ultrasphinx is used with polymorphic associations…</title>
		<link>http://vinsol.com/blog/2008/08/07/when-ultrasphinx-is-used-with-polymorphic-associations%e2%80%a6/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=when-ultrasphinx-is-used-with-polymorphic-associations%25e2%2580%25a6</link>
		<comments>http://vinsol.com/blog/2008/08/07/when-ultrasphinx-is-used-with-polymorphic-associations%e2%80%a6/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 08:56:04 +0000</pubDate>
		<dc:creator>Akhil Bansal</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[ultrasphinx]]></category>

		<guid isPermaLink="false">http://webonrails.com/2008/08/07/when-ultrasphinx-is-used-with-polymorphic-associations/</guid>
		<description><![CDATA[Lets first consider simple has_many and belongs_to associations as:

class Article < ActiveRecord::Base
  has_many :comments
end


class Comment < ActiveRecord::Base
  belongs_to :article
end

Now if you wish to index the title of associated article with comment for searching, you just need to add &#8221; is_indexed :fields => :body, :include => [{ :association_name => &#8216;article&#8217;, :field => &#8216;title&#8217;, :as=> [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Lets first consider simple has_many and belongs_to associations as:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
class Article < ActiveRecord::Base
  has_many :comments
end
</textarea>
<textarea name="code" class="ruby" cols="50" rows="10">
class Comment < ActiveRecord::Base
  belongs_to :article
end
</textarea>
<p>Now if you wish to index the title of associated article with comment for searching, you just need to add &#8221; is_indexed :fields => :body, :include => [{ :association_name => &#8216;article&#8217;, :field => &#8216;title&#8217;, :as=> &#8216;article_title&#8217;}] &#8221;</p>
<p>So, your comment model will look like:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
class Comment < ActiveRecord::Base
  belongs_to :article

  is_indexed :fields => :body,
             :include => [{ :association_name => 'article', :field => 'title', :as=> 'article_title'}]
end
</textarea>
<p>Setup ultrasphinx by issuing:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
rake ultrasphinx:bootstrap
</textarea>
<p>Now at rails console try:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
>> article = Article.create(:title => "This is the first article's title", :body => "Here comes first article's body.")
=> #<Article id: 1, title: "This is the first article's title", tagline: nil, type: nil, body: "Here comes first article's body.", created_at: "2008-08-07 07:47:53", updated_at: "2008-08-07 07:47:53">
>> article.comments
=> []
>> article.comments<<Comment.new(:body=>"first comment on first article. which says yahooo !!")
=> [#<Comment id: 1, body: "first comment on first article. which says yahooo !...", article_id: 1, created_at: "2008-08-07 07:48:47", updated_at: "2008-08-07 07:48:47">]
>> Comment.find :all
=> [#<Comment id: 1, body: "first comment on first article. which says yahooo !...", article_id: 1, created_at: "2008-08-07 07:48:47", updated_at: "2008-08-07 07:48:47">]
>> search = Ultrasphinx::Search.new(:query => "first article's title", :class_names => ['Comment']).run.results
=> [#<Comment id: 1, body: "first comment on first article. which says yahooo !...", article_id: 1, created_at: "2008-08-07 07:48:47", updated_at: "2008-08-07 07:48:47">]
</textarea>
<p>Simple, we have article and comment models with has_many belongs_to associations. Comments are indexed with their associated article title. So it can return comments if query matches with article&#8217;s titles.</p>
<p>Now, consider a case when we wish to change comment model to make it polymorphic. In that case our models will be look like:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
 class Article < ActiveRecord::Base
   has_many :comments, :as => :commentable, :dependent => :destroy
 end
</textarea>
<textarea name="code" class="ruby" cols="50" rows="10">
class Comment < ActiveRecord::Base
  belongs_to :commentable, :polymorphic => true
end
</textarea>
<p>Check at rails if associations are working fine:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
>> article = Article.create(:title => "First article title", :body => "here comes first artile's title")
=> #<Article id: 1, title: "First article title", tagline: nil, type: nil, body: "here comes first artile's title", created_at: "2008-08-07 08:12:31", updated_at: "2008-08-07 08:12:31">
>> comment = Comment.new(:body => "hello there, I am a comment")
=> #<Comment id: nil, body: "hello there, I am a comment", commentable_id: nil, commentable_type: nil, created_at: nil, updated_at: nil>
>> comment.commentable = article
=> #<Article id: 1, title: "First article title", tagline: nil, type: nil, body: "here comes first artile's title", created_at: "2008-08-07 08:12:31", updated_at: "2008-08-07 08:12:31">
>> comment.save
=> true
>> comment.reload
=> #<Comment id: 1, body: "hello there, I am a comment", commentable_id: 1, commentable_type: "Article", created_at: "2008-08-07 08:14:29", updated_at: "2008-08-07 08:14:29">
>> article.reload
=> #<Article id: 1, title: "First article title", tagline: nil, type: nil, body: "here comes first artile's title", created_at: "2008-08-07 08:12:31", updated_at: "2008-08-07 08:12:31">
>> article.comments
=> [#<Comment id: 1, body: "hello there, I am a comment", commentable_id: 1, commentable_type: "Article", created_at: "2008-08-07 08:14:29", updated_at: "2008-08-07 08:14:29">]
>> comment = Comment.new(:body => "hi there, this is second comment")
=> #<Comment id: nil, body: "hi there, this is second comment", commentable_id: nil, commentable_type: nil, created_at: nil, updated_at: nil>
>> article.comments<< comment
=> [#<Comment id: 1, body: "hello there, I am a comment", commentable_id: 1, commentable_type: "Article", created_at: "2008-08-07 08:14:29", updated_at: "2008-08-07 08:14:29">, #<Comment id: 2, body: "hi there, this is second comment", commentable_id: 1, commentable_type: "Article", created_at: "2008-08-07 08:15:34", updated_at: "2008-08-07 08:15:34">]
>> article.comments
=> [#<Comment id: 1, body: "hello there, I am a comment", commentable_id: 1, commentable_type: "Article", created_at: "2008-08-07 08:14:29", updated_at: "2008-08-07 08:14:29">, #<Comment id: 2, body: "hi there, this is second comment", commentable_id: 1, commentable_type: "Article", created_at: "2008-08-07 08:15:34", updated_at: "2008-08-07 08:15:34">] 
>> comment.commentable
=> #<Article id: 1, title: "First article title", tagline: nil, type: nil, body: "here comes first artile's title", created_at: "2008-08-07 08:12:31", updated_at: "2008-08-07 08:12:31">
</textarea>
<p>Now, the point is to index article title with comments. Here we can get associated article using &#8216;commentable&#8217; i.e. comment.commentable.</p>
<p>So, change ultrasphinx is_indexed code in comment model accordingly:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
class Comment < ActiveRecord::Base
  belongs_to :commentable, :polymorphic => true

  is_indexed :fields => :body,
            :include => [{ :association_name => 'commentable', :field => 'title', :as=> 'article_title'}]

end
</textarea>
<p>Note that we have changed associan_name to &#8216;commentable&#8217;.<br />
Next, when we reconfigure ultrasphinx using &#8221; rake ultrasphinx:bootstrap&#8221;(since we have changed db schema), it starts throwing errors:</p>
<textarea name="code" class="c" cols="50" rows="10">
** Invoke ultrasphinx:bootstrap (first_time)
** Invoke ultrasphinx:_environment (first_time)
** Invoke environment (first_time)
** Execute environment
rake aborted!
uninitialized constant Commentable
/Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:278:in `load_missing_constant'
/Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:467:in `const_missing'
/Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:479:in `const_missing'
/Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/inflector.rb:283:in `constantize'
/Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/core_ext/string/inflections.rb:143:in `constantize'
/Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/associations.rb:19:in `get_association_model'
/Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/fields.rb:128:in `configure'
/Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/fields.rb:124:in `each'
/Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/fields.rb:124:in `configure'
/Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/fields.rb:101:in `each'
/Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/fields.rb:101:in `configure'
/Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/configure.rb:32:in `load_constants'
/Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/autoload.rb:8:in `after_initialize'
/Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/initializer.rb:148:in `process'
/Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/initializer.rb:93:in `send'
/Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/initializer.rb:93:in `run'
/Users/akhilbansal/work/sti/config/environment.rb:13
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:27:in `require'
/Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
/Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
/Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
/Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/tasks/misc.rake:3
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:546:in `call'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:546:in `execute'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:541:in `each'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:541:in `execute'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:508:in `invoke_with_call_chain'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `synchronize'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `invoke_with_call_chain'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:518:in `invoke_prerequisites'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1183:in `each'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1183:in `send'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1183:in `each'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:515:in `invoke_prerequisites'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:507:in `invoke_with_call_chain'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `synchronize'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `invoke_with_call_chain'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:518:in `invoke_prerequisites'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1183:in `each'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1183:in `send'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1183:in `each'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:515:in `invoke_prerequisites'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:507:in `invoke_with_call_chain'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `synchronize'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `invoke_with_call_chain'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:494:in `invoke'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1931:in `invoke_task'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1909:in `top_level'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1909:in `each'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1909:in `top_level'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1948:in `standard_exception_handling'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1903:in `top_level'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1881:in `run'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1948:in `standard_exception_handling'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1878:in `run'
/Library/Ruby/Gems/1.8/gems/rake-0.8.1/bin/rake:31
/usr/bin/rake:19:in `load'
/usr/bin/rake:19

</textarea>
<p>After spending some time on research, I was able to make it work by making some changes in comment model:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
class Comment < ActiveRecord::Base
  belongs_to :commentable, :polymorphic => true

is_indexed :fields  => :body,
           :include => [{:class_name => 'Article',  :association_sql => 'left outer join articles on articles.id = comments.commentable_id and comments.commentable_type = "Article"', :field => 'title', :as=> 'article_title'}]
end
</textarea>
<p>Lets check it on rails console:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
>> search = Ultrasphinx::Search.new(:query => 'first article', :class_name => "Comment").run.results
=> [#<Comment id: 1, body: "hello there, I am a comment", commentable_id: 1, commentable_type: "Article", created_at: "2008-08-07 08:14:29", updated_at: "2008-08-07 08:14:29">, #<Comment id: 2, body: "hi there, this is second comment", commentable_id: 1, commentable_type: "Article", created_at: "2008-08-07 08:15:34", updated_at: "2008-08-07 08:15:34">]

</textarea>
<p>In such cases we need to define class_name and association_sql in is_indexed statement instead of association_name.</p>
<p>Hope it helps&#8230;
</p>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2008/08/07/when-ultrasphinx-is-used-with-polymorphic-associations%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When Ultrasphinx is used with STI…</title>
		<link>http://vinsol.com/blog/2008/07/31/when-ultrasphinx-is-used-with-sti%e2%80%a6/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=when-ultrasphinx-is-used-with-sti%25e2%2580%25a6</link>
		<comments>http://vinsol.com/blog/2008/07/31/when-ultrasphinx-is-used-with-sti%e2%80%a6/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 14:06:38 +0000</pubDate>
		<dc:creator>Akhil Bansal</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[RubyonRails]]></category>
		<category><![CDATA[STI]]></category>
		<category><![CDATA[ultrasphinx]]></category>

		<guid isPermaLink="false">http://webonrails.com/2008/07/31/when-ultrasphinx-is-used-with-sti/</guid>
		<description><![CDATA[Hi Guys, it has been a long time since I last posted. I had worked on several things since then, and have couple of posts pending/draft. One of those posts is related to Ultrasphinx, when it is used with STI models.
For those who are new to Ultrasphinx: Ultrasphinx is a rails plugin and client to [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Hi Guys, it has been a long time since I last posted. I had worked on several things since then, and have couple of posts pending/draft. One of those posts is related to Ultrasphinx, when it is used with STI models.</p>
<p>For those who are new to Ultrasphinx: Ultrasphinx is a rails plugin and client to the Sphinx(full text search engine) written by Evan Weaver. More about <a href = "http://blog.evanweaver.com/files/doc/fauna/ultrasphinx/files/README.html" target = '_blank'>Ultrasphinx here.</a></p>
<p>Lets get into the situation. Consider a STI case where we are using ultrasphinx to index several fields:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
class Post < ActiveRecord::Base

end
</textarea>
<textarea name="code" class="ruby" cols="50" rows="10">
class Article < Post
  is_indexed :fields => [:title, :body]
end
</textarea>
<textarea name="code" class="ruby" cols="50" rows="10">
class Story < Post
  is_indexed :fields => [:title, :body]
end
</textarea>
<p>Now assume we have following data in posts table:<br />
<img id="image116" src="http://webonrails.com/wp-content/uploads/2008/07/picture-4.png" alt="picture-4.png" /><br />
and now in application root:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
rake ultrasphinx:configure
rake ultrasphinx:index
rake ultrasphinx:daemon:start
</textarea>
<p>By this point we have created sphinx configuration file, indexed all records from ultrasphinx models and started sphinx search daemon.</p>
<p>Now open script/console and create and fire a query to find some articles:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
>> search = Ultrasphinx::Search.new(:query => "second article", :class_names => 'Article')
=> #<Ultrasphinx::Search:0x2105bec @subtotals={}, @response={}, @facets={}, @options={"indexes"=>"main", "class_names"=>["Article"], "sort_by"=>nil, "parsed_query"=>"second article", "sort_mode"=>"relevance", "weights"=>{}, "filters"=>{}, "per_page"=>20, "query"=>"second article", "page"=>1, "facets"=>[], "location"=>{"units"=>"radians", "long_attribute_name"=>"lng", "lat_attribute_name"=>"lat"}}, @results=[]>
>> search.run
ActiveRecord::RecordNotFound: Couldn't find Article with ID=5
	from /Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/search/internals.rb:308:in `reify_results'
	from /Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/search/internals.rb:286:in `each'
	from /Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/search/internals.rb:286:in `reify_results'
	from /Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/search.rb:357:in `run'
	from /Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/search/internals.rb:352:in `perform_action_with_retries'
	from /Users/akhilbansal/work/sti/vendor/plugins/ultrasphinx/lib/ultrasphinx/search.rb:337:in `run'
	from (irb):3
</textarea>
<p>Here when you run the query you get an exception, because it is trying to find an article with id 5, which actually a story type not article. So why it is trying to find such article?</p>
<p>Now have a look into config/ultrasphinx/development.conf file. Under section &#8220;source articles_main&#8221; you&#8217;ll get &#8220;SELECT (posts.id * 3 + 0) AS id, &#8216;&#8217; AS article_title, posts.body AS body, &#8216;Article&#8217; AS class, 0 AS class_id, posts.title AS title FROM posts WHERE posts.id >= $start AND posts.id <= $end GROUP BY posts.id" Which is a SQL to get record to index.</p>
<p>If you check it carefully you'll findout that it should select all articles record to index but unfortunately it is selecting all records from table and considering them as articles. To fix it you need to modify this query and add "posts.type = 'Article'" in where condition. So the query should be "SELECT (posts.id * 3 + 0) AS id, '' AS article_title, posts.body AS body, 'Article' AS class, 0 AS class_id, posts.title AS title FROM posts WHERE (posts.type = 'Article') and posts.id >= $start AND posts.id <= $end GROUP BY posts.id" </p>
<p>But still there is a problem. If you do this manually you have to do it again and again whenever you issue "rake ultrasphinx:configure" because this configuration file will be overwritten.</p>
<p>Better option is to add conditions in models as is_indexed options like:</p>
<textarea name="code" class="ruby" cols="50" rows="10">
class Article < Post
  is_indexed :fields => [:title, :body], :conditions => "posts.type = 'Article'"
end
</textarea>
<p>and it worked fine.</p>
<p><a href = 'http://fromdelhi.com' target = '_blank'>Manik</a> gave me an idea to write a patch for ultrasphinx to add such conditions automatically in case of STI. So may be another post related to ultrasphinx will be soon ;-)</p>
<p><strong><em>Update:</em> Here is the patch <a href="http://webonrails.com/wp-content/plugins/wp-downloadMonitor/download.php?id=11" title="Version 0.1 downloaded 1 times" >Git patch: Fix STI Issue</a>. After applying this patch you need not to add conditions explicitly for such case. It will automatically check and add conditions for STI. </strong>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vinsol.com/blog/2008/07/31/when-ultrasphinx-is-used-with-sti%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

