Take the 2008 Git User's Survey and help out! [ hide ]

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:
Fixed event display of commit message. TODO updated
Johan Sørensen (author)
Tue Apr 29 11:43:53 -0700 2008
commit  02cf241ab283410162f479ebccd686c60ef6bdc6
tree    89bab4141efe181795bd2d6af2cdb26798e5ab70
parent  24d5ad70d8d132cb0f50b79deb5eb4e55b6a825f
...
1
 
 
2
3
4
5
6
 
 
7
8
9
...
1
2
3
4
5
6
7
8
9
10
11
12
13
0
@@ -1,9 +1,13 @@
0
 new-ui:
0
+* mandatory project descriptions, at least a sentence or two
0
+* tweak fonts-sizes and line-heights
0
 * Clone stats graph on repositories#index
0
 * divergence from mainline in +/-
0
 * popular & active projects on frontpage
0
 * make the top-header smaller (move gitorious logo to footer?)
0
 
0
+* commits_by_author graph should use gitorious.org username (if found)
0
+
0
 (in no particular order)
0
 
0
 two from Yurii:
...
146
147
148
149
 
150
151
152
...
146
147
148
 
149
150
151
152
0
@@ -146,7 +146,7 @@ module ApplicationHelper
0
       when Action::COMMIT
0
         project = target.project
0
         action = "<strong>committed</strong> #{link_to event.data[0,8], project_repository_commit_path(project, target, event.data)} to #{link_to h(project.slug), project_path(project)}/#{link_to h(target.name), project_repository_url(project, target)}"
0
- body = "<code>#{truncate(event.body, 150)}</code>"
0
+ body = truncate(event.body, 150)
0
         category = "commit"
0
       when Action::CREATE_BRANCH
0
         project = target.project
...
10
11
12
13
 
 
 
14
15
16
...
10
11
12
 
13
14
15
16
17
18
0
@@ -10,6 +10,8 @@
0
       <%= action %>
0
     <% end %>
0
     </p>
0
- <p><%= simple_format(sanitize(body)) %></p>
0
+ <div class="<%= event.action == Action::COMMIT ? "commit_message" : "" -%>">
0
+ <%= simple_format(sanitize(body)) %>
0
+ </div>
0
   </div>
0
 </li>
0
\ No newline at end of file
...
548
549
550
 
 
 
551
552
553
...
548
549
550
551
552
553
554
555
556
0
@@ -548,6 +548,9 @@ table.listing thead th {
0
   margin-left: 10px;
0
   font: 95%/105% "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
0
 }
0
+.event_instance .commit_message, .event_instance .commit_message p {
0
+ margin: 2px 0 0 0;
0
+}
0
 
0
 .commit_list .commit_item .commit_message {
0
   margin-left: 40px;

Comments

    No one has commented yet.