GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ 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
style and display fix of longer event data
js (author)
Sun Apr 27 03:59:59 -0700 2008
commit  719b764eac094e4b6b96cebe0d0a76a2e3718066
tree    af49ad98bf47828fc8ff330722e7e45097fe0ae0
parent  8776f608e334a4dfca1db36aa90f1e690a576847
...
132
133
134
135
 
136
137
138
...
173
174
175
176
 
177
178
179
...
132
133
134
 
135
136
137
138
...
173
174
175
 
176
177
178
179
0
@@ -132,7 +132,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.title), project_path(project)}/#{link_to h(target.name), project_repository_url(project, target)}"
0
- body = "<code>#{event.body}</code>"
0
+ body = "<code>#{truncate(event.body, 150)}</code>"
0
         category = "commit"
0
       when Action::CREATE_BRANCH
0
         project = target.project
0
@@ -173,7 +173,7 @@ module ApplicationHelper
0
         repo = target.repository
0
         
0
         action = "<strong>commented</strong> on #{link_to h(project.title), project_path(project)}/#{link_to h(repo.name), project_repository_url(project, repo)}"
0
- body = truncate(h(target.body), 100)
0
+ body = truncate(h(target.body), 150)
0
         category = "comment"
0
       when Action::REQUEST_MERGE
0
         source_repository = target.source_repository
...
1110
1111
1112
1113
 
1114
1115
1116
...
1110
1111
1112
 
1113
1114
1115
1116
0
@@ -1110,7 +1110,7 @@ ul.diff_stats small.deletions { color: #DC0000; }
0
 
0
 .events .event_instance .event_meta p { padding: 0; margin: 0;}
0
 .events .event_instance .event_meta {
0
- margin: 0 10px 20px 105px;
0
+ margin: 0 100px 20px 105px;
0
 }
0
 
0
 .events .event_instance .event_category {

Comments

    No one has commented yet.