From 71520ba4e171195c983320b9c00e37c215fad39c Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Sat, 24 Feb 2007 21:38:38 -0800 Subject: i'm confused? --- bn_django/git_browse/templates/git_browse/base.html | 2 +- bn_django/git_browse/templates/git_browse/blob.html | 2 +- bn_django/git_browse/templates/git_browse/commit.html | 2 +- bn_django/git_browse/templates/git_browse/full_log.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'bn_django/git_browse/templates') diff --git a/bn_django/git_browse/templates/git_browse/base.html b/bn_django/git_browse/templates/git_browse/base.html index 89a0139..c86e03b 100644 --- a/bn_django/git_browse/templates/git_browse/base.html +++ b/bn_django/git_browse/templates/git_browse/base.html @@ -4,7 +4,7 @@ {{ block.super }} - + {% endblock %} diff --git a/bn_django/git_browse/templates/git_browse/blob.html b/bn_django/git_browse/templates/git_browse/blob.html index 3730807..1fb1437 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 }}

Download zip

Raw contents

-
{{ contents|escape|wordwrap:80 }}
+
{{ contents }}
{% else %}

No such object: {{ hash }}

{% endif %} {% endblock %} diff --git a/bn_django/git_browse/templates/git_browse/commit.html b/bn_django/git_browse/templates/git_browse/commit.html index b4ee4a6..3a1aefd 100644 --- a/bn_django/git_browse/templates/git_browse/commit.html +++ b/bn_django/git_browse/templates/git_browse/commit.html @@ -22,7 +22,7 @@

Committer Date

{{ commit.committer_date }}
{% if commit.rawdiff %} -
{{ commit.rawdiff|escape|wordwrap:80 }}
+
{{ commit.rawdiff }}
{% else %}No diff{% endif %} {% else %}

No such object: {{ hash }}

diff --git a/bn_django/git_browse/templates/git_browse/full_log.html b/bn_django/git_browse/templates/git_browse/full_log.html index 913a3c4..d2a1311 100644 --- a/bn_django/git_browse/templates/git_browse/full_log.html +++ b/bn_django/git_browse/templates/git_browse/full_log.html @@ -11,7 +11,7 @@
Author: {{ item.author }}
Date: {{ item.date }}
Comment: -
{{ item.comment|escape|wordwrap:80 }}
+
{{ item.comment|wordwrap:80 }}
{% endfor %} {% endif %} {% endblock %} -- cgit v1.2.3