Files
gitx/html/commit.html
T
Pieter de Bie 12b13d2aa4 Use a Commit model in Javascript to parse commit data
This includes the prototype library in the bundle for convenience.
Whenever a new commit is selected, a new Commit object is created that
is going to parse the raw message. From the object we can select
author information, diffs, etc.

Currently there is still a bug with commits without content changes.
2008-06-14 21:03:49 +02:00

31 lines
853 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><div id="details"></div></pre>
</body>