##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13661:b778c51e9049
r14351:68620da79ab5
Show More
show.html.erb
85 lines | 3.3 KiB | text/plain | TextLexer
Jean-Philippe Lang
Support for subforums (#3831)....
r9959 <%= board_breadcrumb(@message) %>
Jean-Philippe Lang
Add breadcrumb nav for the forums (#892)....
r1284
Jean-Philippe Lang
Forums enhancements:...
r913 <div class="contextual">
Jean-Philippe Lang
Don't wrap watcher link with span....
r11104 <%= watcher_link(@topic, User.current) %>
Jean-Philippe Lang
Removes calls to link_to_remote....
r9849 <%= link_to(
Toshi MARUYAMA
code layout clean up app/views/messages/show.html.erb...
r8481 l(:button_quote),
Jean-Philippe Lang
Removes calls to link_to_remote....
r9849 {:action => 'quote', :id => @topic},
:method => 'get',
:class => 'icon icon-comment',
:remote => true) if !@topic.locked? && authorize_for('messages', 'reply') %>
Toshi MARUYAMA
code layout clean up app/views/messages/show.html.erb...
r8481 <%= link_to(
l(:button_edit),
{:action => 'edit', :id => @topic},
:class => 'icon icon-edit'
) if @message.editable_by?(User.current) %>
<%= link_to(
l(:button_delete),
{:action => 'destroy', :id => @topic},
:method => :post,
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 :data => {:confirm => l(:text_are_you_sure)},
Toshi MARUYAMA
code layout clean up app/views/messages/show.html.erb...
r8481 :class => 'icon icon-del'
) if @message.destroyable_by?(User.current) %>
Jean-Philippe Lang
Forums enhancements:...
r913 </div>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <h2><%= avatar(@topic.author, :size => "24") %><%= @topic.subject %></h2>
Jean-Philippe Lang
Per project forums added....
r526
Jean-Philippe Lang
Forums: attachments can now be added to replies....
r910 <div class="message">
Jean-Philippe Lang
Forums enhancements:...
r913 <p><span class="author"><%= authoring @topic.created_on, @topic.author %></span></p>
Jean-Philippe Lang
Per project forums added....
r526 <div class="wiki">
Jean-Philippe Lang
Pass the topic objet to #textilizable (#10275)....
r8829 <%= textilizable(@topic, :content) %>
Jean-Philippe Lang
Per project forums added....
r526 </div>
Jean-Philippe Lang
AttachmentsController now handles attachments deletion....
r2114 <%= link_to_attachments @topic, :author => false %>
Jean-Philippe Lang
Forums: attachments can now be added to replies....
r910 </div>
Jean-Philippe Lang
Boards: new message form displayed with no additional request....
r752 <br />
Jean-Philippe Lang
Attachments can now be added to wiki pages (original patch by Pavol Murin). Only authorized users can add/delete attachments....
r538
Jean-Philippe Lang
Hides the "Replies" heading below a message if there is no reply (#1350)....
r1481 <% unless @replies.empty? %>
Jean-Philippe Lang
Adds pagination to forum messages (#4664)....
r3259 <h3 class="comments"><%= l(:label_reply_plural) %> (<%= @reply_count %>)</h3>
Jean-Philippe Lang
Add a user preference to choose how comments/replies are displayed: in chronological or reverse chronological order (#589, #776)....
r1183 <% @replies.each do |message| %>
Jean-Philippe Lang
Adds permalinks to message replies (#3587)....
r2710 <div class="message reply" id="<%= "message-#{message.id}" %>">
Jean-Philippe Lang
Fixed: Contextual divs after attachments are placed incorrectly in FireFox (#2633)....
r2343 <div class="contextual">
Jean-Philippe Lang
Removes calls to link_to_remote....
r9849 <%= link_to(
Toshi MARUYAMA
code layout clean up app/views/messages/show.html.erb...
r8481 image_tag('comment.png'),
Jean-Philippe Lang
Removes calls to link_to_remote....
r9849 {:action => 'quote', :id => message},
:remote => true,
:method => 'get',
:title => l(:button_quote)) if !@topic.locked? && authorize_for('messages', 'reply') %>
Toshi MARUYAMA
code layout clean up app/views/messages/show.html.erb...
r8481 <%= link_to(
image_tag('edit.png'),
{:action => 'edit', :id => message},
:title => l(:button_edit)
) if message.editable_by?(User.current) %>
<%= link_to(
image_tag('delete.png'),
{:action => 'destroy', :id => message},
:method => :post,
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 :data => {:confirm => l(:text_are_you_sure)},
Toshi MARUYAMA
code layout clean up app/views/messages/show.html.erb...
r8481 :title => l(:button_delete)
) if message.destroyable_by?(User.current) %>
Jean-Philippe Lang
Fixed: Contextual divs after attachments are placed incorrectly in FireFox (#2633)....
r2343 </div>
Jean-Philippe Lang
Adds permalinks to message replies (#3587)....
r2710 <h4>
Toshi MARUYAMA
replace tabs to spaces at app/views/messages/show.html.erb...
r7273 <%= avatar(message.author, :size => "24") %>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <%= link_to message.subject, { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :r => message, :anchor => "message-#{message.id}" } %>
Jean-Philippe Lang
Adds permalinks to message replies (#3587)....
r2710 -
<%= authoring message.created_on, message.author %>
</h4>
Jean-Philippe Lang
Fixed: can not display attached images inline in message replies....
r1293 <div class="wiki"><%= textilizable message, :content, :attachments => message.attachments %></div>
Jean-Philippe Lang
AttachmentsController now handles attachments deletion....
r2114 <%= link_to_attachments message, :author => false %>
Jean-Philippe Lang
Forums enhancements:...
r913 </div>
Jean-Philippe Lang
Per project forums added....
r526 <% end %>
Jean-Philippe Lang
Adds pagination to forum messages (#4664)....
r3259 <p class="pagination"><%= pagination_links_full @reply_pages, @reply_count, :per_page_links => false %></p>
Jean-Philippe Lang
Hides the "Replies" heading below a message if there is no reply (#1350)....
r1481 <% end %>
Jean-Philippe Lang
Per project forums added....
r526
Jean-Philippe Lang
Forums enhancements:...
r913 <% if !@topic.locked? && authorize_for('messages', 'reply') %>
Jean-Philippe Lang
Forums: attachments can now be added to replies....
r910 <p><%= toggle_link l(:button_reply), "reply", :focus => 'message_content' %></p>
Jean-Philippe Lang
Per project forums added....
r526 <div id="reply" style="display:none;">
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_for @reply, :as => :reply, :url => {:action => 'reply', :id => @topic}, :html => {:multipart => true, :id => 'message-form'} do |f| %>
Jean-Philippe Lang
Added preview for forum messages....
r1191 <%= render :partial => 'form', :locals => {:f => f, :replying => true} %>
<%= submit_tag l(:button_submit) %>
Jean-Philippe Lang
Adds a helper for preview links....
r9848 <%= preview_link({:controller => 'messages', :action => 'preview', :board_id => @board}, 'message-form') %>
Jean-Philippe Lang
Per project forums added....
r526 <% end %>
Jean-Philippe Lang
Added preview for forum messages....
r1191 <div id="preview" class="wiki"></div>
Jean-Philippe Lang
Per project forums added....
r526 </div>
Jean-Philippe Lang
Attachments can now be added to wiki pages (original patch by Pavol Murin). Only authorized users can add/delete attachments....
r538 <% end %>
Jean-Philippe Lang
Enable syntax highlight on issues, messages and news (#1473, #1466)....
r1548
Etienne Massip
Remove unecessary page title HTML escaping from views (#9252)....
r7445 <% html_title @topic.subject %>