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 A4E22F475 for ; Tue, 7 May 2013 22:29:31 +0000 (UTC) Received: (qmail 58460 invoked by uid 500); 7 May 2013 22:29:31 -0000 Delivered-To: apmail-incubator-allura-commits-archive@incubator.apache.org Received: (qmail 58409 invoked by uid 500); 7 May 2013 22:29:31 -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 58367 invoked by uid 99); 7 May 2013 22:29: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, 07 May 2013 22:29:31 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 4D461889124; Tue, 7 May 2013 22:29:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tvansteenburgh@apache.org To: allura-commits@incubator.apache.org Date: Tue, 07 May 2013 22:29:33 -0000 Message-Id: <5c367ebbb1b64d37a24ee29046655f4d@git.apache.org> In-Reply-To: <2c3f31fc313f4f6cb54827abcb408fb0@git.apache.org> References: <2c3f31fc313f4f6cb54827abcb408fb0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [03/50] [abbrv] git commit: [#6179] Fix openid user creation [#6179] Fix openid user creation Signed-off-by: Tim Van Steenburgh Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/50f9a49f Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/50f9a49f Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/50f9a49f Branch: refs/heads/tv/2053 Commit: 50f9a49f435f26a0eb32a9ec997683a7eb24a9e0 Parents: 3d3f199 Author: Tim Van Steenburgh Authored: Tue Apr 30 19:25:37 2013 +0000 Committer: Tim Van Steenburgh Committed: Tue Apr 30 19:25:37 2013 +0000 ---------------------------------------------------------------------- Allura/allura/controllers/auth.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/50f9a49f/Allura/allura/controllers/auth.py ---------------------------------------------------------------------- diff --git a/Allura/allura/controllers/auth.py b/Allura/allura/controllers/auth.py index a792bb9..4dc83e7 100644 --- a/Allura/allura/controllers/auth.py +++ b/Allura/allura/controllers/auth.py @@ -188,7 +188,7 @@ class AuthController(BaseController): c.user.set_pref('display_name', display_name) if u is None: n = M.Neighborhood.query.get(name='Users') - n.register_project('u/' + username) + n.register_project('u/' + username, user_project=True) flash('Your username has been set to %s.' % username) redirect('/')