]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/changeset.html.erb
Use no-r2 comment to block RTL gem from changing sprites
[rails.git] / app / views / browse / changeset.html.erb
1 <% set_title(t('browse.changeset.title', :id => @changeset.id)) %>
2
3 <h2>
4   <a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
5   <%= t('browse.changeset.title', :id => @changeset.id) %>
6 </h2>
7
8 <div class="browse-section">
9   <h4><%= linkify(h(@changeset.tags['comment'].to_s.presence || t('browse.no_comment'))) %></h4>
10   <div class="details"><%= changeset_details(@changeset) %></div>
11
12   <%= render :partial => "tag_details", :object => @changeset.tags.except('comment') %>
13
14   <h4 class="comments-header"><%= t('browse.changeset.discussion') %></h4>
15
16   <div class="buttons clearfix subscribe-buttons">
17     <form action="#" class="hide_unless_logged_in">
18       <% if current_user and @changeset.subscribers.exists?(current_user.id) %>
19         <input class="action-button" type="submit" name="unsubscribe" value="<%= t('javascripts.changesets.show.unsubscribe') %>" data-method="POST" data-url="<%= changeset_unsubscribe_url(@changeset) %>" />
20       <% else %>
21         <input class="action-button" type="submit" name="subscribe" value="<%= t('javascripts.changesets.show.subscribe') %>" data-method="POST" data-url="<%= changeset_subscribe_url(@changeset) %>" />
22       <% end %>
23     </form>
24   </div>
25
26   <div class="clearfix"></div>
27
28   <% if @comments.length > 0 %>
29     <div class='changeset-comments'>
30       <form action="#">
31         <ul>
32           <% @comments.each do |comment| %>
33             <% if comment.visible %>
34               <li id="c<%= comment.id %>">
35                 <small class='deemphasize'>
36                   <%= t("browse.changeset.commented_by",
37                     :when => friendly_date(comment.created_at), :exact_time => l(comment.created_at),
38                     :user => link_to(h(comment.author.display_name), {:controller => "user", :action => "view",
39                     :display_name => comment.author.display_name})).html_safe %>
40                   <% if current_user and current_user.moderator? %>
41                     — <span class="action-button deemphasize" data-comment-id="<%= comment.id %>" data-method="POST" data-url="<%= changeset_comment_hide_url(comment.id) %>"><%= t('javascripts.changesets.show.hide_comment') %></span>
42                   <% end %>
43                 </small>
44                 <%= comment.body.to_html %>
45               </li>
46             <% elsif current_user and current_user.moderator? %>
47               <li id="c<%= comment.id %>">
48                 <small class='deemphasize'>
49                   <%= t("browse.changeset.hidden_commented_by",
50                     :when => friendly_date(comment.created_at), :exact_time => l(comment.created_at),
51                     :user => link_to(h(comment.author.display_name), {:controller => "user", :action => "view",
52                     :display_name => comment.author.display_name})).html_safe %>
53                   — <span class="action-button deemphasize" data-comment-id="<%= comment.id %>" data-method="POST" data-url="<%= changeset_comment_unhide_url(comment.id) %>"><%= t('javascripts.changesets.show.unhide_comment') %></span>
54                  </small>
55                 <%= comment.body.to_html %>
56               </li>
57             <% end %>
58           <% end %>
59         </ul>
60       </form>
61     </div>
62   <% end %>
63
64   <div class="notice hide_if_logged_in">
65     <%= link_to(t("browse.changeset.join_discussion"), :controller => 'user', :action => 'login', :referer => request.fullpath) %>
66   </div>
67
68   <% unless @changeset.is_open? %>
69     <form action="#" class="hide_unless_logged_in">
70       <textarea class="comment" name="text" cols="40" rows="5"></textarea>
71       <div class="buttons clearfix">
72         <input type="submit" name="comment" value="<%= t('javascripts.changesets.show.comment') %>" data-changeset-id="<%= @changeset.id %>" data-method="POST" data-url="<%= changeset_comment_url(@changeset) %>" disabled="1"/>
73       </div>
74     </form>
75   <% else %>
76     <div class="notice hide_unless_logged_in">
77     <%= t('browse.changeset.still_open') %>
78     </div>
79   <% end %>
80
81   <% unless @ways.empty? %>
82     <h4>
83       <%= type_and_paginated_count('way', @way_pages) %>
84       <%= render :partial => 'paging_nav', :locals => { :pages => @way_pages, :page_param => "way_page" } %>
85     </h4>
86     <ul>
87       <% @ways.each do |way| %>
88         <li><%= link_to printable_name(way, true), { :action => "way", :id => way.way_id.to_s }, :class => link_class('way', way), :title => link_title(way) %></li>
89       <% end %>
90     </ul>
91   <% end %>
92
93   <% unless @relations.empty? %>
94     <h4>
95       <%= type_and_paginated_count('relation', @relation_pages) %>
96       <%= render :partial => 'paging_nav', :locals => { :pages => @relation_pages, :page_param => "relation_page" } %>
97     </h4>
98     <ul>
99       <% @relations.each do |relation| %>
100         <li><%= link_to printable_name(relation, true), { :action => "relation", :id => relation.relation_id.to_s }, :class => link_class('relation', relation), :title => link_title(relation) %></li>
101       <% end %>
102     </ul>
103   <% end %>
104
105   <% unless @nodes.empty? %>
106     <h4>
107       <%= type_and_paginated_count('node', @node_pages) %>
108       <%= render :partial => 'paging_nav', :locals => { :pages => @node_pages, :page_param => "node_page"} %>
109     </h4>
110     <ul>
111       <% @nodes.each do |node| %>
112         <li><%= link_to printable_name(node, true), { :action => "node", :id => node.node_id.to_s }, :class => link_class('node', node), :title => link_title(node), :rel => link_follow(node) %></li>
113       <% end %>
114     </ul>
115   <% end %>
116 </div>
117
118 <% if @next_by_user || @prev_by_user %>
119   <div class='secondary-actions'>
120     <% if @prev_by_user %>
121       <%= link_to "<< #{@prev_by_user.id}", :id => @prev_by_user.id %>
122       &middot;
123     <% end %>
124     <%=
125         user = (@prev_by_user || @next_by_user).user.display_name
126         link_to content_tag(:bdi, user), :controller => "changeset", :action => "list", :display_name => user
127     %>
128     <% if @next_by_user %>
129       &middot;
130       <%= link_to "#{@next_by_user.id} >>", :id => @next_by_user.id %>
131     <% end %>
132   </div>
133 <% end %>
134
135 <div class='secondary-actions'>
136   <%= link_to(t('browse.changeset.changesetxml'), :controller => "changeset", :action => "read") %>
137   &middot;
138   <%= link_to(t('browse.changeset.osmchangexml'), :controller => "changeset", :action => "download") %>
139 </div>