Return-Path: X-Original-To: apmail-allura-commits-archive@www.apache.org Delivered-To: apmail-allura-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0601511CD6 for ; Fri, 22 Aug 2014 08:55:32 +0000 (UTC) Received: (qmail 24884 invoked by uid 500); 22 Aug 2014 08:55:31 -0000 Delivered-To: apmail-allura-commits-archive@allura.apache.org Received: (qmail 24864 invoked by uid 500); 22 Aug 2014 08:55:31 -0000 Mailing-List: contact commits-help@allura.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@allura.apache.org Delivered-To: mailing list commits@allura.apache.org Received: (qmail 24853 invoked by uid 99); 22 Aug 2014 08:55: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; Fri, 22 Aug 2014 08:55:31 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 7AD9B9C7972; Fri, 22 Aug 2014 08:55:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jetmind@apache.org To: commits@allura.apache.org Message-Id: <79c2f24bb1a94002843d6a282c181dc3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [#7636] fix forgot pwd link for login overlay, make default fragment url match final destination Date: Fri, 22 Aug 2014 08:55:31 +0000 (UTC) Repository: allura Updated Branches: refs/heads/master 72f6a994f -> b1499ebaf [#7636] fix forgot pwd link for login overlay, make default fragment url match final destination Project: http://git-wip-us.apache.org/repos/asf/allura/repo Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/b1499eba Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/b1499eba Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/b1499eba Branch: refs/heads/master Commit: b1499ebaf3734e218af90a13b7df044d4ad8f11b Parents: 72f6a99 Author: Dave Brondsema Authored: Thu Aug 21 22:16:21 2014 +0000 Committer: Dave Brondsema Committed: Thu Aug 21 22:16:21 2014 +0000 ---------------------------------------------------------------------- Allura/allura/lib/app_globals.py | 2 +- Allura/allura/lib/widgets/auth_widgets.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/allura/blob/b1499eba/Allura/allura/lib/app_globals.py ---------------------------------------------------------------------- diff --git a/Allura/allura/lib/app_globals.py b/Allura/allura/lib/app_globals.py index 0037744..9c80253 100644 --- a/Allura/allura/lib/app_globals.py +++ b/Allura/allura/lib/app_globals.py @@ -166,7 +166,7 @@ class Globals(object): self.login_url = config.get('auth.login_url', '/auth/') self.logout_url = config.get('auth.logout_url', '/auth/logout') self.login_fragment_url = config.get( - 'auth.login_fragment_url', '/auth/login_fragment') + 'auth.login_fragment_url', '/auth/login_fragment/') # Setup Gravatar self.gravatar = gravatar.url http://git-wip-us.apache.org/repos/asf/allura/blob/b1499eba/Allura/allura/lib/widgets/auth_widgets.py ---------------------------------------------------------------------- diff --git a/Allura/allura/lib/widgets/auth_widgets.py b/Allura/allura/lib/widgets/auth_widgets.py index 3f3d66a..3bb51a2 100644 --- a/Allura/allura/lib/widgets/auth_widgets.py +++ b/Allura/allura/lib/widgets/auth_widgets.py @@ -49,7 +49,7 @@ class LoginForm(ForgeForm): fields.append( ew.HTMLField( name='link', - text='' + text='' 'Forgot password?')) return fields