Return-Path: X-Original-To: apmail-incubator-bloodhound-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-bloodhound-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 F3400E083 for ; Mon, 11 Feb 2013 16:57:13 +0000 (UTC) Received: (qmail 46362 invoked by uid 500); 11 Feb 2013 16:57:13 -0000 Delivered-To: apmail-incubator-bloodhound-commits-archive@incubator.apache.org Received: (qmail 46338 invoked by uid 500); 11 Feb 2013 16:57:13 -0000 Mailing-List: contact bloodhound-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: bloodhound-dev@incubator.apache.org Delivered-To: mailing list bloodhound-commits@incubator.apache.org Received: (qmail 46225 invoked by uid 99); 11 Feb 2013 16:57:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2013 16:57:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2013 16:57:12 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id ED11F23889FA; Mon, 11 Feb 2013 16:56:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1444861 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py Date: Mon, 11 Feb 2013 16:56:53 -0000 To: bloodhound-commits@incubator.apache.org From: rjollos@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130211165653.ED11F23889FA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rjollos Date: Mon Feb 11 16:56:53 2013 New Revision: 1444861 URL: http://svn.apache.org/r1444861 Log: Refs #270: Redirect to Guide/RepositoryAdmin when repository browsing hasn't been configured. Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py?rev=1444861&r1=1444860&r2=1444861&view=diff ============================================================================== --- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py (original) +++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py Mon Feb 11 16:56:53 2013 @@ -339,7 +339,7 @@ class BloodhoundTheme(ThemeBase): if bm and not list(bm.get_navigation_items(req)): yield ('mainnav', 'browser', tag.a(_('Browse Source'), - href=req.href.wiki('TracRepositoryAdmin'))) + href=req.href.wiki('Guide/RepositoryAdmin'))) class QuickCreateTicketDialog(Component): implements(IRequestFilter, IRequestHandler)