Commit 58c02f9e2a3de7ee43552d9ad6c206ef91db0d75

made clone link text include project slug on users page, so that it makes more sense

Commit diff

TODO.txt

 
11events:
22* need to create user-less events even we don't find matching users, otherwise it gets weird whenever there's commits from non-registered gitorious users (or users commit from another email).
33- maybe save name+email in events table in that case, so we can hook them up to a user later if needed.
4* .hooks symlink need to go to $deploy_to/current, not the release dir
45
56new-ui:
67* show outstanding mergerequests on dashboard
toggle raw diff

app/views/users/show.html.erb

 
3535 <h4>Repository clones</h4>
3636 <ul>
3737 <% @repositories.each do |repo| -%>
38 <li><%= link_to h(repo.name), [repo.project, repo] -%></li>
38 <li><%= link_to h("#{repo.project.slug}/#{repo.name}"), [repo.project, repo] -%></li>
3939 <% end -%>
4040 </ul>
4141 <% end -%>
toggle raw diff