Patch from bug #2787 to add icons to data browser pages

This commit is contained in:
Dan Karran 2010-04-20 09:08:51 +01:00 committed by Tom Hughes
parent 8657cd4724
commit 10dca1b6df
97 changed files with 135 additions and 12 deletions

View file

@ -53,7 +53,7 @@
<td>
<table cellpadding="0">
<% @nodes.each do |node| %>
<tr><td><%= link_to h(printable_name(node, true)), :action => "node", :id => node.id.to_s %></td></tr>
<tr><td><%= link_to h(printable_name(node, true)), { :action => "node", :id => node.id.to_s }, :class => css_class('node', node), :title => link_title(node) %></td></tr>
<% end %>
</table>
</td>
@ -67,7 +67,7 @@
<td>
<table cellpadding="0">
<% @ways.each do |way| %>
<tr><td><%= link_to h(printable_name(way, true)), :action => "way", :id => way.id.to_s %></td></tr>
<tr><td><%= link_to h(printable_name(way, true)), { :action => "way", :id => way.id.to_s }, :class => css_class('way', way), :title => link_title(way) %></td></tr>
<% end %>
<%=
#render :partial => "containing_relation", :collection => changeset_details.containing_relation_members
@ -84,7 +84,7 @@
<td>
<table cellpadding="0">
<% @relations.each do |relation| %>
<tr><td><%= link_to h(printable_name(relation, true)), :action => "relation", :id => relation.id.to_s %></td></tr>
<tr><td><%= link_to h(printable_name(relation, true)), { :action => "relation", :id => relation.id.to_s }, :class => "relation " %></td></tr>
<% end %>
</table>
</td>

View file

@ -13,7 +13,7 @@
<td>
<table cellpadding="0">
<% node_details.ways.each do |way| %>
<tr><td><%= link_to h(printable_name(way)), :action => "way", :id => way.id.to_s %></td></tr>
<tr><td><%= link_to h(printable_name(way)), { :action => "way", :id => way.id.to_s }, :class => css_class('way', way), :title => link_title(way) %></td></tr>
<% end %>
<%= render :partial => "containing_relation", :collection => node_details.containing_relation_members %>
</table>

View file

@ -1,12 +1,17 @@
<tr>
<td><%=
linked_name = link_to h(printable_name(relation_member.member)), :action => relation_member.member_type.downcase, :id => relation_member.member_id.to_s
type_str = t'browse.relation_member.type.' + relation_member.member_type.downcase
<td><%
linked_name = link_to h(printable_name(relation_member.member)), { :action => relation_member.member_type.downcase, :id => relation_member.member_id.to_s }, :title => link_title(relation_member.member)
type_str = t'browse.relation_member.type.' + relation_member.member_type.downcase
%>
<span class="<%=
css_class(relation_member.member_type.downcase, relation_member.member)
%>">
<%=
if relation_member.member_role.blank?
t'browse.relation_member.entry', :type => type_str, :name => linked_name
else
t'browse.relation_member.entry_role', :type => type_str, :name => linked_name, :role => h(relation_member.member_role)
end
%></td>
%>
</span></td>
</tr>

View file

@ -8,10 +8,10 @@
<table cellpadding="0">
<% way_details.way_nodes.each do |wn| %>
<tr><td>
<%= link_to h(printable_name(wn.node)), :action => "node", :id => wn.node_id.to_s %>
<%= link_to h(printable_name(wn.node)), { :action => "node", :id => wn.node_id.to_s }, :class => css_class('node', wn.node), :title => link_title(wn.node) %>
<% related_ways = wn.node.ways.reject { |w| w.id == way_details.id } %>
<% if related_ways.size > 0 then %>
(<%= t 'browse.way_details.also_part_of', :count => related_ways.size, :related_ways => related_ways.map { |w| link_to(h(printable_name(w)), :action => "way", :id => w.id.to_s) }.to_sentence %>)
(<%= t 'browse.way_details.also_part_of', :count => related_ways.size, :related_ways => related_ways.map { |w| link_to(h(printable_name(w)), { :action => "way", :id => w.id.to_s }, :class => css_class('way', w), :title => link_title(w) ) }.to_sentence %>)
<% end %>
</td></tr>
<% end %>