From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 85764E009D2; Fri, 8 May 2015 09:53:27 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [209.85.212.172 listed in list.dnswl.org] Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 1E8FAE00982 for ; Fri, 8 May 2015 09:53:24 -0700 (PDT) Received: by widdi4 with SMTP id di4so33996553wid.0 for ; Fri, 08 May 2015 09:53:23 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=B3ELV2xgP8sXfZ9nI6Y4kAXB/DLDSezMvPF81R0PeWQ=; b=fyHLbA4CK6aWZo0QXonGgw8YNN41BoFvccVdeqdzpmTRSAodgQ3/5CsWN0MTt2+3gY 0JFeB7lk3NX3nSFWsUFifUMmC2U25vxjGMXqE9hP5D1NzlcVgk34GW7CLYm1ZremOhSx 8P/k2xKZIo4Cs1thglZMRNMCiogtA4J8WanjvEUlvq2kM+moDsce3aVN4BtytzORF+1e BosPnD5qJi2gOwdH2e+gMJavFY+YjcLcYTMIeKWXBO8cYq13tmF5SSYj9QqU0Mfn8qPE kB9mC/CTinVajZbl7bu3MPkYWlBKjYLXA6OmdCT1lUr0XhAfORsAhOSz3fNSjrG4q96p TfHw== X-Gm-Message-State: ALoCoQmaNA7nY8lokTsgAGWk4oGG/3xXKeUCDYULxuz4KUyl1Wu/6oM/bpILcfOS6eP29BDzEIDf X-Received: by 10.180.7.169 with SMTP id k9mr7944149wia.70.1431104003588; Fri, 08 May 2015 09:53:23 -0700 (PDT) Received: from [192.168.2.74] ([83.217.123.106]) by mx.google.com with ESMTPSA id fu2sm9665257wic.20.2015.05.08.09.53.22 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 08 May 2015 09:53:22 -0700 (PDT) Message-ID: <554CEA02.60707@intel.com> Date: Fri, 08 May 2015 17:53:22 +0100 From: Michael Wood User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: "Damian, Alexandru" References: <554CE6D6.3030602@intel.com> In-Reply-To: <554CE6D6.3030602@intel.com> Cc: "toaster@yoctoproject.org" Subject: Re: [review-request] adamian/20150507_toasterui_fixes X-BeenThere: toaster@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Web based interface for BitBake List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 May 2015 16:53:27 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Spotted one error I think The project page link r'^project/(?P\d+)$' should be r'^project/(?P\d+)/$ i.e. - url(r'^project/(?P\d+)$', 'project', name='project'), + url(r'^project/(?P\d+)/$', 'project', name='project'), Your django might not have reloaded the urls so didn't catch it maybe? recreate: 1. go to /projects/ 2. Select a project - 404 Michael On 08/05/15 17:39, Michael Wood wrote: > Looks fine to me. > > Michael > > On 07/05/15 18:13, Damian, Alexandru wrote: >> Hello, >> >> This a refactoring of the URL structure to be more REST-ful. >> It remove the usage of the server-side user session to remember >> currently selected project, making navigation more robust, opening >> API for usage to other tools, and passing the crawl test. >> >> Cheers, >> Alex >> >> -- >> Alex Damian >> Yocto Project >> SSG / OTC >> >> >