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 C99AE10B00 for ; Tue, 20 Aug 2013 17:45:33 +0000 (UTC) Received: (qmail 68067 invoked by uid 500); 20 Aug 2013 17:45:33 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 68004 invoked by uid 500); 20 Aug 2013 17:45:33 -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 67668 invoked by uid 99); 20 Aug 2013 17:45:31 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Aug 2013 17:45:31 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2CE1B8C0B4B; Tue, 20 Aug 2013 17:45:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: johnsca@apache.org To: allura-commits@incubator.apache.org Date: Tue, 20 Aug 2013 17:45:34 -0000 Message-Id: <447cdb46de2740dabeb18c55f0eff375@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [04/22] git commit: Fixed tab indents Fixed tab indents Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/d9248352 Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/d9248352 Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/d9248352 Branch: refs/heads/cj/6464 Commit: d9248352ac5e8dfe160a9d4d189b6be783c6e431 Parents: ba700e3 Author: Cory Johns Authored: Mon Aug 19 20:31:01 2013 +0000 Committer: Cory Johns Committed: Mon Aug 19 20:31:01 2013 +0000 ---------------------------------------------------------------------- Allura/allura/lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/d9248352/Allura/allura/lib/utils.py ---------------------------------------------------------------------- diff --git a/Allura/allura/lib/utils.py b/Allura/allura/lib/utils.py index 4bd1e3c..abd3fd4 100644 --- a/Allura/allura/lib/utils.py +++ b/Allura/allura/lib/utils.py @@ -503,6 +503,6 @@ class ForgeHTMLSanitizer(_HTMLSanitizer): if 'iframe' in self.acceptable_elements: self.acceptable_elements.remove('iframe') if (tag == 'iframe') and (dict(attrs).get('src', '').startswith('http://www.youtube.com/embed/') or - dict(attrs).get('src', '').startswith('https://www.gittip.com/')): + dict(attrs).get('src', '').startswith('https://www.gittip.com/')): self.acceptable_elements.append('iframe') _HTMLSanitizer.unknown_starttag(self, tag, attrs)