##// END OF EJS Templates
Enable attached images to be displayed inline on the news list....
Enable attached images to be displayed inline on the news list. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8729 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8344:8364f86af186
r8609:e8cfa65155fb
Show More
history.html.erb
37 lines | 1.7 KiB | text/plain | TextLexer
/ app / views / wiki / history.html.erb
Jean-Philippe Lang
Adds breadcrumb on all wiki page views....
r6062 <%= wiki_page_breadcrumb(@page) %>
Toshi MARUYAMA
remove duplicate h() from app/views/wiki/history.rhtml....
r6279 <h2><%= h(@page.pretty_title) %></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<h3><%= l(:label_history) %></h3>
Jean-Philippe Lang
Give explicit url option....
r8344 <% form_tag({:controller => 'wiki', :action => 'diff', :project_id => @page.project, :id => @page.title}, :method => :get) do %>
Jean-Philippe Lang
Removed hard-coded style on wiki history view....
r4531 <table class="list wiki-page-versions">
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <thead><tr>
<th>#</th>
Jean-Philippe Lang
Added wiki diff....
r580 <th></th>
Toshi MARUYAMA
remove trailing white-spaces from app/views/wiki/history.rhtml....
r6216 <th></th>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%= l(:field_updated_on) %></th>
<th><%= l(:field_author) %></th>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <th><%= l(:field_comments) %></th>
Jean-Philippe Lang
Added wiki annotate view. It's accessible for each version from the page history view. ...
r1007 <th></th>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </tr></thead>
<tbody>
Jean-Philippe Lang
Added wiki diff....
r580 <% show_diff = @versions.size > 1 %>
<% line_num = 1 %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% @versions.each do |ver| %>
Jean-Philippe Lang
Removed hard-coded style on wiki history view....
r4531 <tr class="wiki-page-version <%= cycle("odd", "even") %>">
Toshi MARUYAMA
HTML escape at app/views/wiki/history.rhtml....
r6272 <td class="id"><%= link_to h(ver.version), :action => 'show', :id => @page.title, :project_id => @page.project, :version => ver.version %></td>
Jean-Philippe Lang
Sligth changes on my page issue tables and wiki history, changesets tables....
r797 <td class="checkbox"><%= radio_button_tag('version', ver.version, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < @versions.size) %></td>
Jean-Philippe Lang
Removes broken javascript on wiki history....
r3445 <td class="checkbox"><%= radio_button_tag('version_from', ver.version, (line_num==2), :id => "cbto-#{line_num}") if show_diff && (line_num > 1) %></td>
Jean-Philippe Lang
Removed hard-coded style on wiki history view....
r4531 <td class="updated_on"><%= format_time(ver.updated_on) %></td>
<td class="author"><%= link_to_user ver.author %></td>
<td class="comments"><%=h ver.comments %></td>
<td class="buttons"><%= link_to l(:button_annotate), :action => 'annotate', :id => @page.title, :version => ver.version %></td>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </tr>
Jean-Philippe Lang
Added wiki diff....
r580 <% line_num += 1 %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
</tbody>
</table>
Eric Davis
Hiding the View Differences button when a wiki page's history only has one version....
r1748 <%= submit_tag l(:label_view_diff), :class => 'small' if show_diff %>
Jean-Philippe Lang
New setting added to specify how many objects should be displayed on most paginated lists....
r1013 <span class="pagination"><%= pagination_links_full @version_pages, @version_count, :page_param => :p %></span>
Jean-Philippe Lang
Added wiki diff....
r580 <% end %>