<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>CHANGES-5.0.3</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -26,7 +26,7 @@ module ApplicationHelper
 
   # The '5 comments' link from the bottom of articles
   def comments_link(article)
-    link_to_permalink(article,pluralize(article.published_comments.size, 'comment'),'comments')
+    link_to_permalink(article,pluralize(article.published_comments.size, _('comment')),'comments')
   end
 
   def trackbacks_link(article)</diff>
      <filename>app/helpers/application_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -93,7 +93,7 @@ class Blog &lt; CachedModel
   setting :send_outbound_pings,        :boolean, true
   setting :email_from,                 :string, 'typo@example.com'
   setting :editor,                     :integer, 2
-  setting :cache_option,               :string, 'caches_action_with_params'
+  setting :cache_option,               :string, 'caches_page'
 
   # Jabber config
   setting :jabber_address,             :string, ''</diff>
      <filename>app/models/blog.rb</filename>
    </modified>
    <modified>
      <diff>@@ -9,12 +9,12 @@
        if (article.published_at.month != currentmonth || article.published_at.year != currentyear)
          currentmonth = article.published_at.month
          currentyear = article.published_at.year -%&gt;
-          &lt;h3 class=&quot;archivemonth&quot;&gt;&lt;%= Date::MONTHNAMES[article.published_at.month] %&gt; &lt;%= article.published_at.year %&gt;&lt;/h3&gt;
+          &lt;h3 class=&quot;archivemonth&quot;&gt;&lt;%= _(Date::MONTHNAMES[article.published_at.month]) %&gt; &lt;%= article.published_at.year %&gt;&lt;/h3&gt;
            &lt;% end -%&gt;
   &lt;div class=&quot;archivepost&quot;&gt;
   &lt;%= article.published_at.mday %&gt; -
   &lt;%= link_to_permalink(article,h(article.title)) %&gt;
-  &lt;% if !article.categories.empty? %&gt; posted in
+  &lt;% if !article.categories.empty? %&gt; &lt;%= _(&quot;posted in&quot;) %&gt;
   &lt;%= article.categories.collect {|c| link_to_permalink c,c.name }.join(&quot;, &quot;) -%&gt;
   &lt;% end -%&gt;
  &lt;/div&gt;</diff>
      <filename>app/views/articles/archives.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-62
\ No newline at end of file
+66
\ No newline at end of file</diff>
      <filename>db/schema_version</filename>
    </modified>
    <modified>
      <diff>@@ -611,4 +611,8 @@ Localization.define('fr_FR') do |l|
   l.store &quot;leave url/email&quot;, &quot;laissez votre url/courriel&quot;
   l.store &quot;No comments&quot;, &quot;Pas de commentaires&quot;
   l.store &quot;From&quot;, &quot;De&quot;
+  l.store &quot;Meta&quot;, &quot;M&#233;ta&quot;
+  l.store &quot;comment&quot;, &quot;commentaire&quot;
+  l.store &quot;comments&quot;, &quot;commentaires&quot;
+  l.store &quot;posted in&quot;, &quot;publi&#233; dans&quot;
 end</diff>
      <filename>lang/fr_FR.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 require 'rake/gempackagetask'
 require 'rake/contrib/rubyforgepublisher'
 
-PKG_VERSION = &quot;5.0.2&quot;
+PKG_VERSION = &quot;5.0.3&quot;
 PKG_NAME = &quot;typo&quot;
 PKG_FILE_NAME = &quot;#{PKG_NAME}-#{PKG_VERSION}&quot;
 RUBY_FORGE_PROJECT = 'typo'
@@ -39,7 +39,7 @@ spec = Gem::Specification.new do |s|
 end
 
 Rake::GemPackageTask.new(spec) do |p|
-  p.gem_spec = spec
+#  p.gem_spec = spec
   p.need_tar = true
   p.need_zip = true
 end</diff>
      <filename>lib/tasks/release.rake</filename>
    </modified>
    <modified>
      <diff>@@ -2,8 +2,8 @@ require File.dirname(__FILE__) + &quot;/../spec_helper&quot;
 
 require 'dns_mock'
 
-class CommentTest &lt; Test::Unit::TestCase
-  def setup
+describe Comment do
+  before(:each) do
     CachedModel.cache_reset
   end
 
@@ -125,7 +125,7 @@ class CommentTest &lt; Test::Unit::TestCase
     # Test each filter to make sure that we don't allow scripts through.
     # Yes, this is ugly.
     ['','textile','markdown','smartypants','markdown smartypants'].each do |filter|
-      this_blog.comment_text_filter = filter
+      Blog.default.comment_text_filter = filter
 
       assert c.save
       assert c.errors.empty?</diff>
      <filename>spec/models/comment_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,4 @@
 --colour
---format
-progress
---loadby
-mtime
+--format progress
+--loadby mtime
 --reverse
---backtrace
\ No newline at end of file</diff>
      <filename>spec/spec.opts</filename>
    </modified>
    <modified>
      <diff>@@ -26,7 +26,7 @@
   &lt;ul class=&quot;meta&quot;&gt;
     &lt;%= content_tag(:li, category_links(article), :class =&gt; 'categories') unless article.categories.empty? %&gt;
     &lt;%= content_tag(:li, tag_links(article), :class =&gt; 'tags') unless article.tags.empty? %&gt;
-    &lt;li&gt;Meta
+    &lt;li&gt;&lt;%= _(&quot;Meta&quot;) %&gt;
       &lt;%= trackbacks_link(article) &lt;&lt; ',' if article.allow_pings? %&gt;
       &lt;%= comments_link(article) &lt;&lt; ',' if article.allow_comments? %&gt;
       &lt;a href=&quot;&lt;%= article.permalink_url %&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;%=_(&quot;permalink&quot;)%&gt;&lt;/a&gt;,</diff>
      <filename>themes/scribbish/views/articles/_article.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -29,7 +29,7 @@
   	&lt;/p&gt;
 		&lt;p class=&quot;links&quot;&gt;
 			&lt;%= link_to_permalink(article, _(&quot;Read full article&quot;), nil, 'more') if controller.action_name != 'permalink' %&gt;
-			&lt;%= link_to_permalink(article,pluralize(article.published_comments.size, 'comment'),'comments', 'comments') %&gt;
+			&lt;%= link_to_permalink(article,pluralize(article.published_comments.size, _('comment')),'comments', 'comments') %&gt;
 		&lt;/p&gt;
 		&lt;% end %&gt;
 		&lt;br style=&quot;clear:both;&quot; /&gt;</diff>
      <filename>themes/standard_issue/views/articles/_article.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -1,15 +1,11 @@
 class StaticSidebar &lt; Sidebar
   DEFAULT_TEXT = %q{
 &lt;ul&gt;
-  &lt;li&gt;&lt;a href=&quot;http://www.typosphere.org&quot; title=&quot;Typo&quot;&gt;Typo&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;http://blog.leetsoft.com&quot; title=&quot;too-biased&quot;&gt;too-biased&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;http://blog.remor.com/&quot; title=&quot;seth hall&quot;&gt;Seth Hall&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;http://scottstuff.net&quot; title=&quot;Scottstuff&quot;&gt;scottstuff.net&lt;/a&gt;&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;http://www.typosphere.org&quot; title=&quot;Typo&quot;&gt;Typosphere&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;http://www.bofh.org.uk&quot; title=&quot;Just a Summary&quot;&gt;Just A Summary&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;http://nubyonrails.com&quot; title=&quot;Topfunky&quot;&gt;Topfunky&lt;/a&gt;&lt;/li&gt;
+  &lt;li&gt;&lt;a href=&quot;http://fredericdevillamil.com&quot; title=&quot;Fr&#233;d&#233;ric de Villamil&quot;&gt;Ergonomie, Rails et Architecture de l'information web&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;http://planettypo.com&quot; title=&quot;PlanetTypo&quot;&gt;PlanetTypo&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;http://typoforums.org&quot; title=&quot;Typo Forums&quot;&gt;Typo Forums&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a href=&quot;http://fredericdevillamil.com&quot; title=&quot;Fr&#233;d&#233;ric de Villamil&quot;&gt;Fr&#233;d&#233;ric de Villamil&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
 }
   description &quot;Static content, like links to other sites, advertisements, or blog meta-information&quot;</diff>
      <filename>vendor/plugins/static_sidebar/lib/static_sidebar.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>spec/helpers/comments_helper_spec.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>b517762842dc2cc756b92c2974b1ca6810afa44f</id>
    </parent>
    <parent>
      <id>a6d42e623e22bc23250578396a41c844a1c25057</id>
    </parent>
  </parents>
  <author>
    <name>Fr&#233;d&#233;ric de Villamil</name>
    <email>frederic@de-villamil.com</email>
  </author>
  <url>http://github.com/fdv/typo/commit/fc9f2f0d5bed5884f56f66b7c35944214728799b</url>
  <id>fc9f2f0d5bed5884f56f66b7c35944214728799b</id>
  <committed-date>2008-02-24T05:28:40-08:00</committed-date>
  <authored-date>2008-02-24T05:28:40-08:00</authored-date>
  <message>Tagging 5.0.3


git-svn-id: http://svn.typosphere.org/typo/tags/release_5_0_3@1659 820eb932-12ee-0310-9ca8-eeb645f39767</message>
  <tree>388439fdf9808aad4ac8a4939b88e60c11258689</tree>
  <committer>
    <name>Fr&#233;d&#233;ric de Villamil</name>
    <email>frederic@de-villamil.com</email>
  </committer>
</commit>
