diff options
author | Alberto Bertogli <albertito@blitiri.com.ar> | 2012-09-16 12:17:56 +0200 |
---|---|---|
committer | Alberto Bertogli <albertito@blitiri.com.ar> | 2012-11-10 18:49:54 +0100 |
commit | 80ef0017d47f536bf2c8c6af4b514efa50071a23 (patch) | |
tree | db630a50bf30abca5a62cd206d8bc9abed61b4e0 /views/blob.html | |
download | git-arr-fork-0.01.zip |
Initial commit0.01
Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
Diffstat (limited to 'views/blob.html')
-rw-r--r-- | views/blob.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/views/blob.html b/views/blob.html new file mode 100644 index 0000000..4d5f7d0 --- /dev/null +++ b/views/blob.html @@ -0,0 +1,50 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + +% if not dirname.raw: +% relroot = './' +% else: +% relroot = '../' * (len(dirname.split('/')) - 1) +% end + +<title>git » {{repo.name}} » + {{repo.branch}} » {{dirname.unicode}}/{{fname.unicode}}</title> +<link rel="stylesheet" type="text/css" + href="{{relroot}}../../../../../static/git-arr.css"/> +<link rel="stylesheet" type="text/css" + href="{{relroot}}../../../../../static/syntax.css"/> +<meta http-equiv="content-type" content="text/html; charset=utf-8"/> +</head> + +<body class="tree"> +<h1><a href="{{relroot}}../../../../../">git</a> » + <a href="{{relroot}}../../../">{{repo.name}}</a> » + <a href="{{relroot}}../">{{repo.branch}}</a> » + <a href="{{relroot}}">tree</a> +</h1> + +<h3> + <a href="{{relroot}}">[{{repo.branch}}]</a> / +% base = smstr(relroot) +% for c in dirname.split('/'): +% if not c.raw: continue + <a href="{{base.url}}{{c.url}}/">{{c.unicode}}</a> / +% base += c + '/' +% end + <a href="">{{!fname.html}}</a> +</h3> + +% if has_colorizer(): +{{!colorize_blob(fname.unicode, blob)}} +% else: +<pre class="blob-body"> +{{blob}} +</pre> +% end + +<hr/> + +</body> +</html> |