##// END OF EJS Templates
Display the last 30 days on the activity view rather than the current month....
Display the last 30 days on the activity view rather than the current month. Number of days can be configured in the application settings. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1196 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1097:1ecef3a95ae0
r1182:bbe8ea29e8d3
Show More
show.rhtml
56 lines | 2.6 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
Jean-Philippe Lang
The news list now shows the full news contents....
r739 <%= link_to_if_authorized l(:button_edit),
{:controller => 'news', :action => 'edit', :id => @news},
:class => 'icon icon-edit',
Jean-Philippe Lang
Added some accesskeys:...
r793 :accesskey => accesskey(:edit),
Jean-Philippe Lang
The news list now shows the full news contents....
r739 :onclick => 'Element.show("edit-news"); return false;' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy', :id => @news}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
</div>
<h2><%=h @news.title %></h2>
Jean-Philippe Lang
The news list now shows the full news contents....
r739 <div id="edit-news" style="display:none;">
Jean-Philippe Lang
ProjectsController#add_news moved to NewsController#new....
r1097 <% labelled_tabular_form_for :news, @news, :url => { :action => "edit", :id => @news },
:html => { :id => 'news-form' } do |f| %>
Jean-Philippe Lang
The news list now shows the full news contents....
r739 <%= render :partial => 'form', :locals => { :f => f } %>
<%= submit_tag l(:button_save) %>
Jean-Philippe Lang
ProjectsController#add_news moved to NewsController#new....
r1097 <%= link_to_remote l(:label_preview),
{ :url => { :controller => 'news', :action => 'preview' },
:method => 'post',
:update => 'preview',
:with => "Form.serialize('news-form')"
}, :accesskey => accesskey(:preview) %> |
Jean-Philippe Lang
The news list now shows the full news contents....
r739 <%= link_to l(:button_cancel), "#", :onclick => 'Element.hide("edit-news")' %>
<% end %>
Jean-Philippe Lang
ProjectsController#add_news moved to NewsController#new....
r1097 <div id="preview" class="wiki"></div>
Jean-Philippe Lang
The news list now shows the full news contents....
r739 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><em><% unless @news.summary.empty? %><%=h @news.summary %><br /><% end %>
Jean-Philippe Lang
Changed author display on issues, news and document files....
r721 <span class="author"><%= authoring @news.created_on, @news.author %></span></em></p>
Jean-Philippe Lang
Added missing wiki div on news/index and news/show....
r1045 <div class="wiki">
Jean-Philippe Lang
Added missing parentheses on news/show and removed useless call to auto_link...
r452 <%= textilizable(@news.description) %>
Jean-Philippe Lang
Added missing wiki div on news/index and news/show....
r1045 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <br />
<div id="comments" style="margin-bottom:16px;">
<h3 class="icon22 icon22-comment"><%= l(:label_comment_plural) %></h3>
<% @news.comments.each do |comment| %>
<% next if comment.new_record? %>
Jean-Philippe Lang
Anonymous users can now be allowed to create, edit, comment issues, comment news and post messages in the forums....
r906 <h4><%= authoring comment.created_on, comment.author %></h4>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
<%= link_to_if_authorized l(:button_delete), {:controller => 'news', :action => 'destroy_comment', :id => @news, :comment_id => comment}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
</div>
Jean-Philippe Lang
News comments are now textilized....
r973 <%= textilizable(comment.comments) %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end if @news.comments_count > 0 %>
</div>
<% if authorize_for 'news', 'add_comment' %>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <p><%= toggle_link l(:label_comment_add), "add_comment_form", :focus => "comment_comments" %></p>
Jean-Philippe Lang
Added toggle_link helper....
r429 <% form_tag({:action => 'add_comment', :id => @news}, :id => "add_comment_form", :style => "display:none;") do %>
Jean-Philippe Lang
News comments are now textilized....
r973 <%= text_area 'comment', 'comments', :cols => 80, :rows => 15, :class => 'wiki-edit' %>
<%= wikitoolbar_for 'comment_comments' %>
Jean-Philippe Lang
Added toggle_link helper....
r429 <p><%= submit_tag l(:button_add) %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Removed a line break on news/show...
r591 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title @news.title -%>