X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5198500d4868516716d0637fcb051423528c541a..e477f68a6c1da16b2b976ff97750a65bbd0e3dd9:/app/views/changeset/list.atom.builder diff --git a/app/views/changeset/list.atom.builder b/app/views/changeset/list.atom.builder index 960ce0ce2..db53cdb08 100644 --- a/app/views/changeset/list.atom.builder +++ b/app/views/changeset/list.atom.builder @@ -5,7 +5,9 @@ atom_feed(:language => I18n.locale, :schema_date => 2009, feed.title @title feed.subtitle :type => 'xhtml' do |xhtml| - xhtml.p @description + xhtml.p do |p| + p << @description + end end feed.updated @edits.map {|e| [e.created_at, e.closed_at].max }.max @@ -37,6 +39,7 @@ atom_feed(:language => I18n.locale, :schema_date => 2009, end feed.content :type => 'xhtml' do |xhtml| + xhtml.style "th { text-align: left } tr { vertical-align: top }" xhtml.table do |table| table.tr do |tr| tr.th t("browse.changeset_details.created_at") @@ -55,7 +58,7 @@ atom_feed(:language => I18n.locale, :schema_date => 2009, end end unless changeset.tags.empty? - table.tr :valign => "top" do |tr| + table.tr do |tr| tr.th t("browse.tag_details.tags") tr.td do |td| td.table :cellpadding => "0" do |table|