##// 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:

r1504:e46b56d7fcad
r1770:8f3a04ce6906
Show More
index.rhtml
31 lines | 1.3 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Activity enhancements:...
r1213 <div class="contextual">
Jean-Philippe Lang
"New Project" link on Projects page for admin users (#1082)....
r1504 <%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'add'}, :class => 'icon icon-add') + ' |' if User.current.admin? %>
Jean-Philippe Lang
Activity enhancements:...
r1213 <%= link_to l(:label_issue_view_all), { :controller => 'issues' } %> |
<%= link_to l(:label_overall_activity), { :controller => 'projects', :action => 'activity' }%>
</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
Main project list now displays root projects with their subprojects....
r718 <% @project_tree.keys.sort.each do |project| %>
Jean-Philippe Lang
Project name format limitation removed (name can now contain any character)....
r936 <h3><%= link_to h(project.name), {:action => 'show', :id => project}, :class => (User.current.member_of?(project) ? "icon icon-fav" : "") %></h3>
Jean-Philippe Lang
Unlimited and optional project description. The project list will show truncated descriptions only (the first fews lines)....
r1074 <%= textilizable(project.short_description, :project => project) %>
Jean-Philippe Lang
Main project list now displays root projects with their subprojects....
r718
<% if @project_tree[project].any? %>
Jean-Philippe Lang
Application layout refactored....
r736 <p><%= l(:label_subproject_plural) %>:
Jean-Philippe Lang
Main project list now displays root projects with their subprojects....
r718 <%= @project_tree[project].sort.collect {|subproject|
Jean-Philippe Lang
Project name format limitation removed (name can now contain any character)....
r936 link_to(h(subproject.name), {:action => 'show', :id => subproject}, :class => (User.current.member_of?(subproject) ? "icon icon-fav" : ""))}.join(', ') %></p>
Jean-Philippe Lang
Main project list now displays root projects with their subprojects....
r718 <% end %>
Jean-Philippe Lang
Initial commit...
r2 <% end %>
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
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <span class="icon icon-fav"><%= 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 new projects atom feed (#1290)....
r1451 <p class="other-formats">
<%= l(:label_export_to) %>
<span><%= link_to 'Atom', {:format => 'atom', :key => User.current.rss_key}, :class => 'feed' %></span>
</p>
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_project_plural)) -%>