# HG changeset patch # User nanaya # Date 1466932734 -32400 # Node ID 448a368f7344383c07fe8b760392deea8c1d16dd # Parent 04ccd0632a718b142d68c3cde1093b4499d2bf95 More useful title? diff -r 04ccd0632a71 -r 448a368f7344 app/helpers/application_helper.rb --- a/app/helpers/application_helper.rb Sun Jun 26 18:05:41 2016 +0900 +++ b/app/helpers/application_helper.rb Sun Jun 26 18:18:54 2016 +0900 @@ -1,3 +1,11 @@ module ApplicationHelper include Twitter::Autolink + + def ellipsize(text, limit = 60) + if text.length <= limit + text + else + "#{text.first(limit)}..." + end + end end diff -r 04ccd0632a71 -r 448a368f7344 app/views/tweets/show.atom.builder --- a/app/views/tweets/show.atom.builder Sun Jun 26 18:05:41 2016 +0900 +++ b/app/views/tweets/show.atom.builder Sun Jun 26 18:18:54 2016 +0900 @@ -4,7 +4,7 @@ @tweets.each do |tweet| feed.entry tweet, :url => tweet.uri, :updated => tweet.created_at do |entry| - entry.title tweet.created_at.rfc2822 + entry.title ellipsize(tweet.text) entry.content render(:partial => "tweet", :formats => :html, :locals => { :tweet => tweet }), :type => "html" entry.author do |author| author.name tweet.user.screen_name