]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/changeset.html.erb
Make the publisher URL configurable, with no default
[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 @user and @changeset.subscribers.exists?(@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 @user and @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 @user and @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   <% end %>
76
77   <% unless @ways.empty? %>
78     <h4>
79       <%= type_and_paginated_count('way', @way_pages) %>
80       <%= render :partial => 'paging_nav', :locals => { :pages => @way_pages, :page_param => "way_page" } %>
81     </h4>
82     <ul>
83       <% @ways.each do |way| %>
84         <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>
85       <% end %>
86     </ul>
87   <% end %>
88
89   <% unless @relations.empty? %>
90     <h4>
91       <%= type_and_paginated_count('relation', @relation_pages) %>
92       <%= render :partial => 'paging_nav', :locals => { :pages => @relation_pages, :page_param => "relation_page" } %>
93     </h4>
94     <ul>
95       <% @relations.each do |relation| %>
96         <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>
97       <% end %>
98     </ul>
99   <% end %>
100
101   <% unless @nodes.empty? %>
102     <h4>
103       <%= type_and_paginated_count('node', @node_pages) %>
104       <%= render :partial => 'paging_nav', :locals => { :pages => @node_pages, :page_param => "node_page"} %>
105     </h4>
106     <ul>
107       <% @nodes.each do |node| %>
108         <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>
109       <% end %>
110     </ul>
111   <% end %>
112 </div>
113
114 <% if @next_by_user || @prev_by_user %>
115   <div class='secondary-actions'>
116     <% if @prev_by_user %>
117       <%= link_to "<< #{@prev_by_user.id}", :id => @prev_by_user.id %>
118       &middot;
119     <% end %>
120     <%=
121         user = (@prev_by_user || @next_by_user).user.display_name
122         link_to content_tag(:bdi, user), :controller => "changeset", :action => "list", :display_name => user
123     %>
124     <% if @next_by_user %>
125       &middot;
126       <%= link_to "#{@next_by_user.id} >>", :id => @next_by_user.id %>
127     <% end %>
128   </div>
129 <% end %>
130
131 <div class='secondary-actions'>
132   <%= link_to(t('browse.changeset.changesetxml'), :controller => "changeset", :action => "read") %>
133   &middot;
134   <%= link_to(t('browse.changeset.osmchangexml'), :controller => "changeset", :action => "download") %>
135 </div>