Files
gitx/html/commit.html
T
Pieter de Bie 1ef4fe8a6b Only display a diff when it is small enough
The diff display is rather slow now, probably because everything is
put into one big pre tag. Before we can fix this, we have to parse the
diff better. For now, just display a message.
2008-06-14 21:29:20 +02:00

31 lines
855 B
HTML

<html>
<header>
<title>Details for commit</title>
<link rel="stylesheet" href="commits.css" type="text/css" media="screen" title="no title" charset="utf-8">
<script src="prototype.js" type="text/javascript" charset="utf-8"></script>
<script src="commit.js" type="text/javascript" charset="utf-8"></script>
</header>
<body style="padding: 0px; border: 0px">
<table id="commit_header">
<tr>
<td class="property_name">SHA:</td>
<td id="commitID"></td>
</tr>
<tr>
<td class="property_name">Author:</td>
<td id="authorID">Pieter de Bie</td>
</tr>
<tr>
<td class="property_name">Date:</td>
<td id="date">Pieter de Bie</td>
</tr>
<tr>
<td class="property_name">Subject:</td>
<td id="subjectID" style="font-weight:bold">Pieter de Bie</td>
</tr>
</table>
<hr>
<div id="message"></div>
<pre><code id="details"></code></pre>
</body>