-
Notifications
You must be signed in to change notification settings - Fork 0
/
post-commit.erb
39 lines (38 loc) · 1.23 KB
/
post-commit.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset="UTF-8" />
</head>
<body>
<style type='text/css'><!--
<%= stylesheet %>
-->
</style>
<div class='main'>
<dl class='meta'>
<dt>Revision :</dt> <dd><%= number %></dd>
<dt>Author :</dt> <dd><%= author %></dd>
<dt>Date :</dt> <dd><%= date %></dd>
</dl>
<h3>Log Message</h3>
<div class='comment'>
<p>
<%= message %>
</p>
</div>
<div class='propset'>
<%= display_prop_changes(props_modified) %>
</div>
<div class='resume' >
<%= files_to_html('Added Paths' , added , number ,'A') %>
<%= files_to_html('Modified Paths', modified , number ,'U') %>
<%= files_to_html('Removed Paths' , removed , number ,'R') %>
</div>
<div class='patch'>
<h3>Diff r<%= number %></h3>
<%= display_files_diff(patch) %>
</div>
</div>
</body>
</html>