<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="http://www.lacoctelera.com/stylesheets/atom.css" type="text/css"?>
<feed version="0.3" 
xmlns="http://purl.org/atom/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
>
	<title>in web we trust</title>
	<tagline type="text/html" mode="escaped">Fernando Blat's blog, developer at &lt;a href=&quot;http://www.lacoctelera.com&quot;&gt;La Coctelera&lt;/a&gt; and &lt;a href=&quot;http://www.partigi.com&quot;&gt;Partigi&lt;/a&gt;.</tagline>
	<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net"/>
	<modified>2009-10-24T18:43:09+00:00</modified>
	<info type="application/xhtml+xml" mode="xml">
		<div xmlns="http://www.w3.org/1999/xhtml">
			This is an Atom syndication feed. It is intended to be viewed in a news aggregator or syndicated to another site.  Please visit the <a href="http://intertwingly.net/wiki/pie/">Atom Project</a> for more information.
		</div>
	</info>	
	<dc:subject>Economía</dc:subject>
	
	<generator url="http://www.the-shaker.com" version="v0.1">the-shaker: that blog/flickr/multimedia-aggregator kind of thing</generator>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2009/10/24/conferencia-rails-2009</id>
		<title>Conferencia Rails 2009</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2009/10/24/conferencia-rails-2009" />
		<issued>2009-10-24T18:43:09+00:00</issued>
		<updated>2009-10-28T17:41:11+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;The Spanish community Rails conference (aka &lt;a href=&quot;http://app.conferenciarails.org&quot;&gt;Conferencia Rails&lt;/a&gt;) is so close! Last week we opened &lt;a href=&quot;http://app.conferenciarails.org/payment/new&quot;&gt;the register&lt;/a&gt; (what are you waiting for?), late than usual, but this year everything is a little bit more messy, because this year &lt;strong&gt;the conference is growing&lt;/strong&gt; in a lot of aspects:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;this year we are moving to Vicálvaro, a village close to Madrid, to allow more attendees that past years (up to 250)&lt;/li&gt;
&lt;li&gt;we have 3 international keynoters: &lt;a href=&quot;http://yehudakatz.com/&quot;&gt;Yehuda Katz&lt;/a&gt;, &lt;a href=&quot;http://dablog.rubypal.com/&quot;&gt;David Black&lt;/a&gt; and &lt;a href=&quot;http://blog.talbott.ws/&quot;&gt;Nathaniel Talbott&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;also there are coming people from the States, like Scott Chacon from &lt;a href=&quot;http://github.com&quot;&gt;Github&lt;/a&gt;, or Obie Fernandez and the UK (surprise, surprise...)&lt;/li&gt;
&lt;li&gt;we are having an extra day of workshops&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In spite of all the &quot;anglo-attendees&quot;, the most of the talks will be in Spanish, and we are trying to make a calendar  with talks in English and Spanish, not both in English at the same time.&lt;/p&gt;
&lt;p&gt;There is a lot of diversity in the topics of this year: git, jruby, cucumber, sinatra, ruby 1.9, rails 3, internazionalization, key-value storages, ror-es mailing list, and so on... In fact, I'm so excited, and I think (I know which are the talks of this year) it is, maybe, one of the best editions of this conference.&lt;/p&gt;

		</content>
	</entry>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2009/10/03/drying-little-bit-the-translation-of-your-views-with-i18n</id>
		<title>DRYing a little bit the translation of your views with I18n</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2009/10/03/drying-little-bit-the-translation-of-your-views-with-i18n" />
		<issued>2009-10-03T19:05:58+00:00</issued>
		<updated>2009-10-05T10:16:29+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;Since we have been using I18n in &lt;a href=&quot;http://www.partigi.com&quot;&gt;Partigi&lt;/a&gt; for the last months we have notice that we were always repeating ourselves when localising a sentence like this:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;
  This film has been saved by 4 friends
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;What is special in this sentece is that, depending on the number of friends that saved the film, the sentence could be &lt;em&gt;&quot;This film has been saved by one friend&quot;&lt;/em&gt;. It can be solved with &lt;code&gt;pluralize&lt;/code&gt; helper, but it requires the counter to be at the beginning of the sentence.&lt;/p&gt;
&lt;p&gt;Finally we decided to adopt a small convention: if a translation has a parameter &lt;code&gt;count&lt;/code&gt; then, if &lt;code&gt;count&lt;/code&gt; is singular the key for the translation will be the one in the view, but if it's plural, it will be the one in the view plus a suffix &lt;em&gt;_plural&lt;/em&gt;. For example:&lt;/p&gt;
&lt;p&gt;Before we had:&lt;/p&gt;
&lt;pre name=&quot;code&quot; class=&quot;ruby&quot;&gt;   &amp;lt;% if @reviews_count == 1 %&amp;gt;     &amp;lt;%= t('films.saved_by_friends', :count =&amp;gt; @reviews_count) %&amp;gt;   &amp;lt;% else %&amp;gt;     &amp;lt;%= t('films.saved_by_friends_plural', :count =&amp;gt; @reviews_count) %&amp;gt;   &amp;lt;% end %&amp;gt; &lt;/pre&gt;
&lt;p&gt;And now, with this hack:&lt;/p&gt;
&lt;pre name=&quot;code&quot; class=&quot;ruby&quot;&gt;   &amp;lt;%= t('films.saved_by_friends', :count =&amp;gt; @reviews_count) %&amp;gt; &lt;/pre&gt;
&lt;p&gt;The hack is this (put it where you like more):&lt;/p&gt;
&lt;pre name=&quot;code&quot; class=&quot;ruby&quot;&gt; module I18n    class &lt;&lt; self     # Returns true if a given key exists     def exists?(key, options = {})        locale = options.delete(:locale) || I18n.locale       backend.exists?(locale, key, options = {})     end          # Overwrite I18n.trasnlate method     def translate(key, options = {})       locale = options.delete(:locale) || I18n.locale       if options[:count] &amp;&amp; options[:count].to_i != 1         plural_key = &quot;#{key}_plural&quot;          if exists?(plural_key)           key = plural_key         end       end       backend.translate(locale, key, options)     rescue I18n::ArgumentError =&gt; e       raise e if options[:raise]       send(@@exception_handler, e, locale, key, options)     end   end end  &lt;/pre&gt;
&lt;p&gt;The good thing is that if the pluralized key doesn't exists, your views won't be broken, so you can start using it now and change your views when you have time.&lt;/p&gt;
&lt;/&lt;&gt;
		</content>
	</entry>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2009/09/19/request-log-analyzer</id>
		<title>Request log analyzer</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2009/09/19/request-log-analyzer" />
		<issued>2009-09-19T09:46:26+00:00</issued>
		<updated>2009-09-27T09:41:08+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;One of my discoveries in the last &lt;a href=&quot;http://app.euruko2009.org/&quot;&gt;Euruko conference&lt;/a&gt; was the project &lt;a href=&quot;http://github.com/wvanbergen/request-log-analyzer&quot;&gt;request log analyzer&lt;/a&gt;, an improved log analyzer for Rails logs (but also merb and the format you decide). Until now we have used &lt;a href=&quot;http://seattlerb.rubyforge.org/production_log_analyzer/&quot;&gt;production log analyzer&lt;/a&gt; from &lt;a href=&quot;http://seattlerb.rubyforge.org/&quot;&gt;seattlerb boys&lt;/a&gt;, which is still a great tool.&lt;/p&gt;
&lt;p&gt;The reason for this change is that request log analyzer &lt;a href=&quot;http://wiki.github.com/wvanbergen/request-log-analyzer/creating-your-own-file-format-definition&quot;&gt;let's you define your own parser&lt;/a&gt; which was exactly what we needed to parse logs from two of our applications (&lt;a href=&quot;http://iwannagothere.com&quot;&gt;iwannagothere&lt;/a&gt; and &lt;a href=&quot;http://www.partigi.com&quot;&gt;partigi.com&lt;/a&gt;), because both of them have a mobile version in a different host (the common &lt;code&gt;m.domain&lt;/code&gt; host) and we wanted to separate the analysis of these two versions as if they were different applications (they are different, really).&lt;/p&gt;
&lt;p&gt;So modify the rails parser was really easy: we only had to change the rails completed line to match the domain of the request:&lt;/p&gt;
&lt;pre name=&quot;code&quot;&gt; # Completed in 614ms (View: 120, DB: 31) | 200 OK [http://floorplanner.local/demo]&lt;/pre&gt;
&lt;p&gt;In this example the domain is &lt;code&gt;floorplanner.local&lt;/code&gt;. By default, the regular expression matches the full url: &lt;code&gt;floorplanner.local/demo&lt;/code&gt;, but this url is not used in the analysis, so change it didn't supposed a drastic change.&lt;/p&gt;
&lt;p&gt;So, we have copied the rails file and modified the rails completed line, with this new regular expression:&lt;/p&gt;
&lt;pre name=&quot;code&quot; class=&quot;ruby&quot;&gt; RAILS_22_COMPLETED = /Completed in (\d+)ms \((?:View: (\d+), )?DB: (\d+)\) \| (\d\d\d).+\[http:\/\/([^\/]+)\/.+\]/&lt;/pre&gt;
&lt;p&gt;Now, you have to run request log analyzer indicating the path to your new parser and the parameter &lt;code&gt;--select url m.your_domain&lt;/code&gt;. I.e.:&lt;/p&gt;
&lt;pre name=&quot;code&quot;&gt; /usr/bin/request-log-analyzer /var/www/partigi/shared/log/production.log --file /tmp/log_partigi --format /var/www/partigi/current/vendor/request-log-analyzer/rails_host.rb --select url m.partigi.com&lt;/pre&gt;
&lt;p&gt;Easy, isn't it?&lt;/p&gt;

		</content>
	</entry>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2009/09/10/conferencia-rails-2009-call-for-papers</id>
		<title>Conferencia Rails 2009, call for papers</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2009/09/10/conferencia-rails-2009-call-for-papers" />
		<issued>2009-09-10T07:50:50+00:00</issued>
		<updated>2009-10-28T17:41:51+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;&lt;img src=&quot;http://s3.amazonaws.com/lcp/inwebwetrust/myfiles/logo.png&quot; alt=&quot;&quot; class=&quot;imgcen&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It's time again for the Spanish Rails Conference! If you want to give a talk, you can send your proposals &lt;a href=&quot;http://app.conferenciarails.org/talks/new&quot;&gt;here&lt;/a&gt;. This year we want to encourage English people who wanna come with us and give talks (but notice that the most of the talks will be in Spanish).&lt;/p&gt;
&lt;p&gt;Remember that this year there will be not only talks, but workshops of about 2 or 4 hours. The schedule is still not decided.&lt;/p&gt;
&lt;p&gt;For more information, visit the &lt;a href=&quot;http://www.conferenciarails.org/&quot;&gt;oficial web&lt;/a&gt;.&lt;/p&gt;

		</content>
	</entry>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2009/07/04/no-sql</id>
		<title>No SQL</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2009/07/04/no-sql" />
		<issued>2009-07-04T19:12:05+00:00</issued>
		<updated>2009-10-28T17:41:51+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;Lately, I have been so curious about &lt;a href=&quot;http://www.computerworld.com/action/article.do?command=printArticleBasic&amp;taxonomyName=Databases&amp;articleId=9135086&amp;taxonomyId=173&quot;&gt;alternatives to relational databases&lt;/a&gt;. Deeping a little bit exist a lot of interest about topics related with it.&lt;/p&gt;
&lt;p&gt;The most important that I have found recently is the &lt;a href=&quot;http://blog.oskarsson.nu/2009/06/nosql-debrief.html&quot;&gt;NoSQL conference&lt;/a&gt;, with lot of talks and information about &lt;a href=&quot;http://project-voldemort.com/&quot;&gt;Voldemort&lt;/a&gt;, &lt;a href=&quot;http://incubator.apache.org/cassandra/&quot;&gt;Cassandra&lt;/a&gt;, &lt;a href=&quot;http://couchdb.apache.org/&quot;&gt;CouchDB&lt;/a&gt;, and so on.&lt;/p&gt;
&lt;p&gt;You can find some notes about that &lt;a href=&quot;http://developer.yahoo.net/blog/archives/2009/06/nosql_meetup.html&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I'm still suspicous about all this technologies, specially because it implies a hard change in the way to model and consume data, moreover when SQL and RDMBs are very valid nowadays, and (for sure) they have a big future, but they offer a lot of advantages that you have to know in order to take advantage if you have the chance.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A great post about this topics: &lt;a href=&quot;http://thinkvitamin.com/dev/should-you-go-beyond-relational-databases/&quot;&gt;Should you go Beyond Relational Databases?&lt;/a&gt;&lt;/p&gt;

		</content>
	</entry>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2009/06/27/modeling-entity-relationships-in-non-relational-scenario</id>
		<title>Modeling entity relationships in a non-relational scenario</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2009/06/27/modeling-entity-relationships-in-non-relational-scenario" />
		<issued>2009-06-27T18:22:58+00:00</issued>
		<updated>2009-07-01T06:15:41+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;Since I saw &lt;a href=&quot;http://couchdb.apache.org/index.html&quot;&gt;the presentation&lt;/a&gt; about &lt;a href=&quot;https://github.com/langalex/couch_potato/tree&quot;&gt;Couch Potato&lt;/a&gt;, a library for using &lt;a href=&quot;http://couchdb.apache.org/index.html&quot;&gt;CouchDB&lt;/a&gt; with your Ruby applications I was very curious about how to map a relational schema (that is the most common way to model entities and their relationship) in a document / plain schema where each element has no relation with the others.&lt;/p&gt;
&lt;p&gt;And at last, today I found a &lt;a href=&quot;http://code.google.com/appengine/articles/modeling.html&quot;&gt;cool post from Google&lt;/a&gt; and it's &lt;a href=&quot;http://wiki.apache.org/couchdb/EntityRelationship&quot;&gt;equivalent for CouchDB&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Now it's time to play with CouchDB!&lt;/p&gt;

		</content>
	</entry>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2009/06/11/tricks-for-i18n</id>
		<title>Forcing I18n locale in a block</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2009/06/11/tricks-for-i18n" />
		<issued>2009-06-11T18:32:16+00:00</issued>
		<updated>2009-06-11T18:33:15+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;If you work in a project with i18n maybe you found useful this small trick for forcing the locale in a block:&lt;/p&gt;
&lt;pre name=&quot;code&quot; class=&quot;ruby&quot;&gt; module I18n    class &lt;&lt; self       def in_locale(new_locale, &amp;block)       old_locale = I18n.locale       I18n.locale = new_locale       yield       I18n.locale = old_locale     end   end end &lt;/pre&gt;
&lt;p&gt;This is very useful, for example, when you have to send a notification to a user in his locale, not in the current locale, so you have to do it in this way:&lt;/p&gt;
&lt;pre name=&quot;code&quot; class=&quot;ruby&quot;&gt;   I18n.in_locale(@user) { UserMailer.deliver_new_comment(...) }  &lt;/pre&gt;
&lt;p&gt;Hope it helps.&lt;/p&gt;

		</content>
	</entry>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2009/02/16/i18n_gettext</id>
		<title>i18n_gettext</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2009/02/16/i18n_gettext" />
		<issued>2009-02-16T07:25:29+00:00</issued>
		<updated>2009-02-16T07:25:29+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;Two weekends ago we celebrated the first &lt;a href=&quot;http://rails-hackathon.org/&quot;&gt;Rails Hackathon&lt;/a&gt; in Madrid: the idea was to make groups of two or the people, select a ticket from the Rails core, and create a patch for it.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.samlown.com/&quot;&gt;Sam Lown&lt;/a&gt; and me, decided to work in a plugin for allowing compatibility between &lt;a href=&quot;http://www.gnu.org/software/gettext/&quot;&gt;GetText&lt;/a&gt; and the new &lt;a href=&quot;http://rails-i18n.org/&quot;&gt;Rails i18n&lt;/a&gt; support. The result is our beta plugin &lt;a href=&quot;http://github.com/ferblape/i18n_gettext/tree/master&quot;&gt;i18n_gettext&lt;/a&gt;, which is still in development and we are trying in beta versions of &lt;a href=&quot;http://unvlog.com&quot;&gt;unvlog.com&lt;/a&gt; and &lt;a href=&quot;http://www.planetaki.com&quot;&gt;planetaki.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you try it, any feedback will be wellcome.&lt;/p&gt;

		</content>
	</entry>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2009/01/30/testing-twitter-notifications</id>
		<title>Testing Twitter notifications</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2009/01/30/testing-twitter-notifications" />
		<issued>2009-01-30T21:02:56+00:00</issued>
		<updated>2009-01-30T21:02:56+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;In &lt;a href=&quot;http://www.lacoctelera.com&quot;&gt;La Coctelera&lt;/a&gt; we offer to the users the possibility to automatically update their &lt;a href=&quot;http://www.twitter.com&quot;&gt;Twitter&lt;/a&gt; status with a link to the last post or the last published photos (shortly :).&lt;/p&gt;
&lt;p&gt;The tests for notifying twitter are very easy if you use the powerful &lt;a href=&quot;http://mocha.rubyforge.org/&quot;&gt;Mocha&lt;/a&gt; (in the beginning we tried to simulate the &lt;code&gt;Twitter::Base&lt;/code&gt; class, but it gets a little bit more complicated):&lt;/p&gt;
&lt;pre name=&quot;code&quot; class=&quot;ruby&quot;&gt;   def test_an_activity_of_new_photos_notify_in_twitter     User.any_instance.stubs(:premium_role?).returns(true)     User.any_instance.stubs(:twitter_photos?).returns(true)     User.any_instance.stubs(:twitter_username).returns('wadus')     User.any_instance.stubs(:twitter_password).returns('wadus')     photo = photos(:photo_blat_1)     a = activities(:activity1)     Twitter::Base.any_instance.expects(:update).with(&quot;He subido una nueva foto a La Coctelera: #{photo.guid}&quot;).once     a.notify_in_twitter   end &lt;/pre&gt;
&lt;p&gt;If you don't know Mocha you should learn to use it, in other case, you can  ignore this post :)&lt;/p&gt;
&lt;p&gt;Also, I recommend you to watch this &lt;a href=&quot;http://podcast.sdruby.com/podcasts/013_mocha_stubba.m4v&quot;&gt;old screencast about Mocha&lt;/a&gt;
&lt;/p&gt;

		</content>
	</entry>
	<entry>
		<author>
			<name>in web we trust</name>
			<logo>http://s3.amazonaws.com/lcp/inwebwetrust/f/0fb274acbeca58bdf98c9be1c0347f4b.jpg</logo>
		</author>
		<id>http://www.inwebwetrust.net/post/2008/12/21/updating-query-memcached</id>
		<title>Updating Query Memcached</title>
		<link rel="alternate" type="text/html" href="http://www.inwebwetrust.net/post/2008/12/21/updating-query-memcached" />
		<issued>2008-12-21T18:52:01+00:00</issued>
		<updated>2009-04-21T19:04:46+00:00</updated>
		<content type="text/html" mode="escaped">		
&lt;p&gt;After a lot of time without having time I decided to update &lt;a href=&quot;http://github.com/ferblape/query_memcached/tree/master&quot;&gt;query_memcached&lt;/a&gt; plugin with a lot of changes that the github collaborators pushed some weeks ago.&lt;/p&gt;
&lt;p&gt;These are the major changes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;there was a bug that made the plugin don't work in some situations&lt;/li&gt;
&lt;li&gt;the philosophy have changed a bit and now not all is magic, and you have to indicate in each model if it has to use cache or not&lt;/li&gt;
&lt;li&gt;at last I could write down some tests&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It is important for you to update, specially if you where using the previous version.&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;

		</content>
	</entry>
</feed>
