summaryrefslogtreecommitdiffstats
path: root/app/views/repositories/_revision_graph.html.erb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-02-05 11:51:43 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-02-05 11:51:43 +0000
commit232fca78a2d3ba1a5b1538a9b1fa9e5ed611ca11 (patch)
treeba84b0b10c1132a75e0d7705ca2d1e7ff8da54cd /app/views/repositories/_revision_graph.html.erb
parenta00f04886fac78e489bb030d20414ebdf10841e3 (diff)
downloadredmine-232fca78a2d3ba1a5b1538a9b1fa9e5ed611ca11.tar.gz
redmine-232fca78a2d3ba1a5b1538a9b1fa9e5ed611ca11.zip
scm: rename JavaScript "branchGraph" function name to "revisionGraph"
"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
Diffstat (limited to 'app/views/repositories/_revision_graph.html.erb')
-rw-r--r--app/views/repositories/_revision_graph.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/repositories/_revision_graph.html.erb b/app/views/repositories/_revision_graph.html.erb
index 5b0ea73de..ef04220af 100644
--- a/app/views/repositories/_revision_graph.html.erb
+++ b/app/views/repositories/_revision_graph.html.erb
@@ -3,7 +3,7 @@
<script type="text/javascript" charset="utf-8">
Event.observe(window, 'load', function(){
- branchGraph(
+ revisionGraph(
document.getElementById("holder"),
<%= commits.to_json.html_safe %>);
});