##// END OF EJS Templates
Trac importer: user can now choose between sqlite and sqlite3 adapter for Trac database....
Trac importer: user can now choose between sqlite and sqlite3 adapter for Trac database. Trac importer: issues and wiki modules are enabled by default for the imported project. Fixed: 404 error when trying to save a custom query under certain circumstance. git-svn-id: http://redmine.rubyforge.org/svn/trunk@894 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r873:26a1ae480836
r881:b0bb1baeaac6
Show More
_revisions.rhtml
28 lines | 1.4 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Pretty URL for the repository browser (Cyril Mougel)...
r867 <% form_tag({:controller => 'repositories', :action => 'diff', :id => @project, :path => path}, :method => :get) do %>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <table class="list">
<thead><tr>
<th>#</th>
Jean-Philippe Lang
Added the ability to view a file diff with free to/from revision selection....
r522 <th></th>
<th></th>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <th><%= l(:label_date) %></th>
Jean-Philippe Lang
Slight modifications on revisions table...
r405 <th><%= l(:field_author) %></th>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <th><%= l(:field_comments) %></th>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 </tr></thead>
<tbody>
Jean-Philippe Lang
Added basic support for CVS and Mercurial SCMs....
r556 <% show_diff = entry && entry.is_file? && revisions.size > 1 %>
Jean-Philippe Lang
Added the ability to view a file diff with free to/from revision selection....
r522 <% line_num = 1 %>
Jean-Philippe Lang
Fixed: log is not displayed when browsing a copy in a svn repository....
r830 <% revisions.each do |changeset| %>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <tr class="<%= cycle 'odd', 'even' %>">
Jean-Philippe Lang
Fixed: <td> closed with a </th>...
r873 <td class="id"><%= link_to changeset.revision, :action => 'revision', :id => project, :rev => changeset.revision %></td>
Jean-Philippe Lang
Sligth changes on my page issue tables and wiki history, changesets tables....
r797 <td class="checkbox"><%= radio_button_tag('rev', changeset.revision, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < revisions.size) %></td>
<td class="checkbox"><%= radio_button_tag('rev_to', changeset.revision, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %></td>
Jean-Philippe Lang
Slight modifications on revisions table...
r405 <td align="center" style="width:15%"><%= format_time(changeset.committed_on) %></td>
<td align="center" style="width:15%"><em><%=h changeset.committer %></em></td>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <td align="left"><%= textilizable(changeset.comments) %></td>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 </tr>
Jean-Philippe Lang
Added the ability to view a file diff with free to/from revision selection....
r522 <% line_num += 1 %>
Jean-Philippe Lang
SVN commits are now stored in the database, and added to the activity view and the search engine....
r374 <% end %>
</tbody>
Jean-Philippe Lang
Added the ability to view a file diff with free to/from revision selection....
r522 </table>
<%= submit_tag(l(:label_view_diff), :class => 'small', :name => nil) if show_diff %>
<% end %>