Commit 0adb63e9abf05a3fcd9092f7dead2cd8e5e4c470

Always show the author in the commit infobox, just for consistencys sake

also updated the TODO

Commit diff

TODO.txt

 
11(in no particular order)
22
3** Repository#commit_graph_data_by_author should just use git-shortlog summary instead of jumping through hoops about it
4
35> If you do `git archive --format=tar --prefix=myproject/ HEAD | gzip >
46> myproject.tar.gz`, when .gitattributes specifies files that have
57> export-subst, it will expand keywords such as $Format:%cd$. Gitorious'
toggle raw diff

app/views/commits/_commit_infobox.html.erb

 
11<ul class="infobox">
22 <li><strong>Date:</strong> <%=h @commit.committed_date -%></li>
33 <li><strong>Committer:</strong> <%=h @commit.committer.name -%> (<%=h @commit.committer.email -%>)</li>
4 <% unless @commit.author.email == @commit.committer.email -%>
54 <li><strong>Author:</strong> <%=h @commit.author.name -%> (<%=h @commit.author.email -%>)</li>
6 <% end -%>
75 <li><strong>Commit SHA1:</strong> <%=h @commit.id -%></li>
86 <li><strong>Tree SHA1:</strong> <%= link_to h(@commit.tree.id),
97 project_repository_tree_path(@project, @repository, @commit.id) -%></li>
toggle raw diff