##// END OF EJS Templates
Fixed: improper 0x5c char handling in PDF output (Go Maeda)....
Fixed: improper 0x5c char handling in PDF output (Go Maeda). git-svn-id: http://redmine.rubyforge.org/svn/trunk@813 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r736:827e998afef3
r802:bb724e75c0a9
Show More
list.rhtml
18 lines | 753 B | text/html+ruby | RhtmlLexer
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
Application layout refactored....
r736 <h3><%= link_to project.name, {:action => 'show', :id => project}, :class => (User.current.member_of?(project) ? "icon icon-fav" : "") %></h3>
<%= textilizable(project.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
Application layout refactored....
r736 link_to(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
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <div class="contextual">
<span class="icon icon-fav"><%= l(:label_my_projects) %></span>
</div>
<% end %>