Return-Path: X-Original-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-allura-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E4BC5102D3 for ; Mon, 1 Jul 2013 16:35:58 +0000 (UTC) Received: (qmail 60354 invoked by uid 500); 1 Jul 2013 16:35:58 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 60264 invoked by uid 500); 1 Jul 2013 16:35:57 -0000 Mailing-List: contact allura-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: allura-dev@incubator.apache.org Delivered-To: mailing list allura-commits@incubator.apache.org Received: (qmail 60246 invoked by uid 99); 1 Jul 2013 16:35:56 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jul 2013 16:35:56 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BE25245729; Mon, 1 Jul 2013 16:35:55 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: brondsem@apache.org To: allura-commits@incubator.apache.org Date: Mon, 01 Jul 2013 16:35:56 -0000 Message-Id: <2e1dd5d3db31405f8a9e6d5c47c45869@git.apache.org> In-Reply-To: <3a6a34fba92e45d6b7e8f183731beb87@git.apache.org> References: <3a6a34fba92e45d6b7e8f183731beb87@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] git commit: [#6211] remove commit widget template (was unused, and was a widget extending master template which is weird) [#6211] remove commit widget template (was unused, and was a widget extending master template which is weird) Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/faf6a395 Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/faf6a395 Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/faf6a395 Branch: refs/heads/master Commit: faf6a3950a498fb6cabe19e65ad791698d12b140 Parents: 673a6b7 Author: Dave Brondsema Authored: Mon Jul 1 16:01:14 2013 +0000 Committer: Dave Brondsema Committed: Mon Jul 1 16:35:40 2013 +0000 ---------------------------------------------------------------------- .../allura/templates/widgets/repo/commit.html | 65 -------------------- 1 file changed, 65 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/faf6a395/Allura/allura/templates/widgets/repo/commit.html ---------------------------------------------------------------------- diff --git a/Allura/allura/templates/widgets/repo/commit.html b/Allura/allura/templates/widgets/repo/commit.html deleted file mode 100644 index 0858365..0000000 --- a/Allura/allura/templates/widgets/repo/commit.html +++ /dev/null @@ -1,65 +0,0 @@ -{#- - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. --#} -{% extends g.theme.master %} - -{% block title %} - {{c.project.name}} / {{c.app.config.options.mount_label}} / Commit {{commit.shorthand_id()}} -{% endblock %} - -{% macro commit_link(commit) -%} -{{commit.shorthand_id}} -{%- endmacro %} - -{% block header %}Commit {{commit_link(commit)}}{% endblock %} - -{% block content %} -{{c.revision_widget.display(value=commit, prev=prev, next=next)}} - - - {% for diff in commit.diffs.added %} - - - - - {% endfor %}{% for diff in commit.diffs.removed %} - - - - - {% endfor %}{% for diff in commit.diffs.changed %} - - - - - {% endfor %}{% for diff in commit.diffs.copied %} - - - - - {% endfor %} - -
add{{h.really_unicode(diff)}}
remove{{h.really_unicode(diff)}}
change - {{h.really_unicode(diff)}} - (diff) -
copy - {{h.really_unicode(diff.old)}} -
to
- {{h.really_unicode(diff)}} -
-{% endblock %}