public
Description: Gitorious aims to provide a great way of doing distributed opensource code collaboration.
Homepage: http://gitorious.org/projects/gitorious
Clone URL: git://github.com/dysinger/gitorious.git
Search Repo:
- Smaller commit graphs
- move commit graph to the logs page
Johan Sørensen (author)
Sun Apr 27 14:34:24 -0700 2008
commit  4d372ef9ab1c5c08425c46066e6b103ed07d06c4
tree    1acc5357ca22d4790425c05dbd9d0c523c9b55f4
parent  d32a4cc201f9d57c1b288569d5b8b01d9ce7cb97
...
23
24
25
26
27
28
29
...
23
24
25
 
26
27
28
0
@@ -23,7 +23,6 @@
0
   <div id="header">
0
     <h1 id="logo">
0
       <%= link_to image_tag("logo-white.png"), root_path -%>
0
- <!-- <h1><%= link_to "Gitorious", root_path -%></h1> -->
0
     </h1>
0
     <ul id="menu">
0
       <% unless logged_in? -%>
...
3
4
5
 
 
 
 
 
 
6
7
8
9
10
11
12
13
...
3
4
5
6
7
8
9
10
11
12
13
14
 
 
15
16
17
0
@@ -3,11 +3,15 @@
0
   Commitlog for <%= h(@repository.name) -%>:<%=h params[:id] -%> in <%= h(@project.title) -%>
0
 </h1>
0
 
0
+<div class="commit_graph">
0
+ <%= commit_graph_tag(@repository) %>
0
+</div>
0
+
0
+<%= render :partial => "log" -%>
0
+
0
 <% content_for :submenu do -%>
0
   <%= render :partial => "repositories/context_menu" -%>
0
 <% end -%>
0
-
0
-<%= render :partial => "log" -%>
0
 
0
 <% content_for :sidebar do -%>
0
   <ul>
...
6
7
8
9
10
11
12
13
14
15
...
6
7
8
 
 
 
 
9
10
11
0
@@ -6,10 +6,6 @@
0
 <% render_if_ready(@repository) do -%>
0
 
0
   <%= render :partial => "infobox" -%>
0
-
0
- <div class="commit_graph">
0
- <%= commit_graph_tag(@repository) %>
0
- </div>
0
 
0
   <h2>Activities</h2>
0
   <%= render :partial => "events/events", :locals => { :events => @events } -%>
...
18
19
20
21
 
22
23
24
...
18
19
20
 
21
22
23
24
0
@@ -18,7 +18,7 @@
0
       def initialize(repository, branch)
0
         @repository = repository
0
         @branch = branch
0
- @graph = Gruff::Area.new("650x150")
0
+ @graph = Gruff::Area.new("650x100")
0
         @graph.title = "Commits by week (24 week period)"
0
         #@graph.x_axis_label = 'Commits by week (24 week period)'
0
         #@graph.y_axis_label = "Commits"

Comments

    No one has commented yet.