##// END OF EJS Templates
scm: git: performance improvements in fetching revisions (#8857, #9472)...
scm: git: performance improvements in fetching revisions (#8857, #9472) Parse a revision for a given branch, just if we haven't parsed it for any branches before. Moved the db check to for existing revisions into a grouped search. Search for many revisions at once: this reduces db load. Revisions are grouped into sets of 100. This is to improve memory consumption. There will be just one query instead of each 100. The above two methods significantly increase parsing speed. Test case was a git repo with 6000+ commits on a master branch, and several other branches originating for master. Speed improved from 1.4h to 18min. Contributed by Gergely Fábián. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9144 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8802:aa286a8e3f1f
r9024:999a4ba30d7b
Show More
index.html.erb
28 lines | 1.2 KiB | text/plain | TextLexer
Eric Davis
Add ATOM auto discovery link to the Projects list. #5317...
r3662 <% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %>
<% end %>
Jean-Philippe Lang
Activity enhancements:...
r1213 <div class="contextual">
Eric Davis
Refactor: rename method ProjectsController#add to ProjectsController#new...
r3955 <%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add') + ' |' if User.current.allowed_to?(:add_project, nil, :global => true) %>
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 <%= link_to(l(:label_issue_view_all), { :controller => 'issues' }) + ' |' if User.current.allowed_to?(:view_issues, nil, :global => true) %>
Etienne Massip
Explicitly declare all routes and deactivate default route....
r8042 <%= link_to(l(:label_overall_spent_time), time_entries_path) + ' |' if User.current.allowed_to?(:view_time_entries, nil, :global => true) %>
Toshi MARUYAMA
add ":id => nil" to "Overall activity" link_to...
r8802 <%= link_to l(:label_overall_activity),
{ :controller => 'activities', :action => 'index',
:id => nil } %>
Jean-Philippe Lang
Activity enhancements:...
r1213 </div>
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <h2><%=l(:label_project_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <%= render_project_hierarchy(@projects)%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% if User.current.logged? %>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451 <p style="text-align:right;">
Jean-Philippe Lang
Merged nested projects branch. Removes limit on subproject nesting (#594)....
r2302 <span class="my-project"><%= l(:label_my_projects) %></span>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451 </p>
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% other_formats_links do |f| %>
Toshi MARUYAMA
replace a tab to spaces at app/views/projects/index.html.erb...
r7111 <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
Jean-Philippe Lang
Adds an helper to render other formats download links....
r2331 <% end %>
Jean-Philippe Lang
Adds new projects atom feed (#1290)....
r1451
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_project_plural)) -%>