Parent: [cceb25] (diff)

Child: [eca470] (diff)

Download this file

file.html    46 lines (41 with data), 1.7 kB

 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
40
41
42
43
44
45
46
{% extends g.theme.master %}
{% do g.register_forge_css('css/forge/hilite.css') %}
{% block title %}
{{c.project.name}} / {{c.app.config.options.mount_label}} /
{{h.really_unicode(blob.filename)}} @{{h.text.truncate(blob._commit._id, 10)}}
{% endblock %}
{% block header %}
<a href="{{blob._commit.url()}}">@{{h.text.truncate(blob._commit._id, 10)}}</a>:
{{lib.path_links(blob.path().split('/')[1:-1])}} {{h.really_unicode(blob.filename)}}
{% endblock %}
{% block content %}
{% if prev %}
Parent(s):
{% for b in prev %}
<a href="{{b.url()}}">{{h.text.truncate(b._commit._id, 10)}}</a>
<a href="?diff={{b._commit._id}}">(diff)</a>
{% endfor %}
<br/>
{% endif %}
{% if next %}
Child(ren):
{% for b in next %}
<a href="{{b.url()}}">{{h.text.truncate(b._commit._id, 10)}}</a>
<a href="{{b.url()}}?diff={{blob._commit._id}}">(diff)</a>
{% endfor %}
<br/>
{% endif %}
{% if blob.has_image_view %}<img src="?format=raw"/>{% endif %}
{% if not blob.has_html_view and not blob.has_image_view and not force_display %}
{{h.really_unicode(blob.filename)}} is not known to be viewable in your browser.
Try to <a href="?force=True">display it</a> anyway or
<a href="?format=raw">download it</a> instead.
{% endif %}
{% if blob.has_html_view and not blob.has_image_view or force_display %}
<a href="?format=raw">Download this file</a>
<div class="clip">
<h3><span class="ico-l"><b class="ui-icon ui-icon-document"></b> {{h.really_unicode(blob.filename)}}</span></h3>
{{g.highlight(blob.text, filename=blob.filename)}}
</div>
{% endif %}
{% endblock %}