aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/git_browse/templates/git_browse/blob.html
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-02-24 17:23:19 -0800
committerbnewbold <bnewbold@manus.(none)>2007-02-24 17:23:19 -0800
commitcfeab0aadf7ba357a997c4a0203bcf4176ecc0d3 (patch)
treee826ef345f257fce2d627af810d6e364d10de201 /bn_django/git_browse/templates/git_browse/blob.html
parent1ed9f4702d42326d5c20a22b6c215a9b624f4ba4 (diff)
downloadbnewnet-cfeab0aadf7ba357a997c4a0203bcf4176ecc0d3.tar.gz
bnewnet-cfeab0aadf7ba357a997c4a0203bcf4176ecc0d3.zip
added escape and wordwrap filters to code viewing
Diffstat (limited to 'bn_django/git_browse/templates/git_browse/blob.html')
-rw-r--r--bn_django/git_browse/templates/git_browse/blob.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bn_django/git_browse/templates/git_browse/blob.html b/bn_django/git_browse/templates/git_browse/blob.html
index 1fb1437..3730807 100644
--- a/bn_django/git_browse/templates/git_browse/blob.html
+++ b/bn_django/git_browse/templates/git_browse/blob.html
@@ -7,7 +7,7 @@
{{ size|filesizeformat }}<br />
<h3><a href="zip">Download zip</a></h3>
<h3>Raw contents</h3>
- <pre class="large">{{ contents }}</pre>
+ <pre class="large">{{ contents|escape|wordwrap:80 }}</pre>
{% else %}
<h3>No such object: {{ hash }}</h3>
{% endif %} {% endblock %}