mirror of
https://github.com/meineerde/redmine.git
synced 2026-01-07 16:11:30 +00:00
"Branch" is not a common concept in the SCMs. Mercurial "branch" has three terms. * named branch * unnamed branch (multiple heads) * big-picture branch (cloning repository) Git "branch" is a reference to a specific revision. It is popular that Mercurial GUI shows all revisions on the top page. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8779 e93f8b46-1217-0410-a6f0-8f06a7374b81
13 lines
346 B
Plaintext
13 lines
346 B
Plaintext
<%= javascript_include_tag 'raphael.js' %>
|
|
<%= javascript_include_tag 'revision_graph.js' %>
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
Event.observe(window, 'load', function(){
|
|
revisionGraph(
|
|
document.getElementById("holder"),
|
|
<%= commits.to_json.html_safe %>);
|
|
});
|
|
</script>
|
|
|
|
<div id="holder" class="graph"></div>
|