##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1466:5d2abb84bdcb
r1770:8f3a04ce6906
Show More
_history.rhtml
14 lines | 590 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Adds a Reply link to each issue note (#739). Reply is pre-filled with the quoted note....
r1466 <% reply_links = authorize_for('issues', 'edit') -%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% for journal in journals %>
Jean-Philippe Lang
Add css class for ticket changes (#1032)....
r1334 <div id="change-<%= journal.id %>" class="journal">
Jean-Philippe Lang
Add a user preference to choose how comments/replies are displayed: in chronological or reverse chronological order (#589, #776)....
r1183 <h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div>
<%= content_tag('a', '', :name => "note-#{journal.indice}")%>
Jean-Philippe Lang
Removed IssuesController#history, all changes are now displayed on issues/show (not only the last 15)....
r610 <%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <ul>
<% for detail in journal.details %>
<li><%= show_detail(detail) %></li>
<% end %>
</ul>
Jean-Philippe Lang
Adds a Reply link to each issue note (#739). Reply is pre-filled with the quoted note....
r1466 <%= render_notes(journal, :reply_links => reply_links) unless journal.notes.blank? %>
Jean-Philippe Lang
Added the following permissions (#527, #585, #627):...
r1138 </div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>