From patchwork Fri Mar 2 04:39:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael-Doyle Hudson X-Patchwork-Id: 7048 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id CF3E023EA9 for ; Fri, 2 Mar 2012 04:39:17 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 8CAF1A183E2 for ; Fri, 2 Mar 2012 04:39:17 +0000 (UTC) Received: by iage36 with SMTP id e36so2414926iag.11 for ; Thu, 01 Mar 2012 20:39:16 -0800 (PST) Received: from mr.google.com ([10.50.170.41]) by 10.50.170.41 with SMTP id aj9mr561808igc.0.1330663156860 (num_hops = 1); Thu, 01 Mar 2012 20:39:16 -0800 (PST) Received: by 10.50.170.41 with SMTP id aj9mr468572igc.0.1330663156815; Thu, 01 Mar 2012 20:39:16 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.53.18 with SMTP id k18csp1147ibg; Thu, 1 Mar 2012 20:39:15 -0800 (PST) Received: by 10.180.96.8 with SMTP id do8mr1126147wib.21.1330663155122; Thu, 01 Mar 2012 20:39:15 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id v30si3306934weq.69.2012.03.01.20.39.14 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 01 Mar 2012 20:39:15 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1S3KGw-00006K-Ih for ; Fri, 02 Mar 2012 04:39:14 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 8282BE0825 for ; Fri, 2 Mar 2012 04:39:14 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-scheduler X-Launchpad-Branch: ~linaro-validation/lava-scheduler/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 138 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-scheduler/trunk] Rev 138: fix duplicate names for views Message-Id: <20120302043914.24975.70600.launchpad@ackee.canonical.com> Date: Fri, 02 Mar 2012 04:39:14 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14886"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 2d541f0f1460429dd7b73ebacce1ca9ca3f82d33 X-Gm-Message-State: ALoCoQmjPZf95R7EvcxDRDAQAs2FsIV+REIqt5mZWGVwAsYFpuyvnjbztXJxo9k7jVkbvte/gsKW ------------------------------------------------------------ revno: 138 committer: Michael Hudson-Doyle branch nick: trunk timestamp: Fri 2012-03-02 17:35:51 +1300 message: fix duplicate names for views modified: lava_scheduler_app/urls.py --- lp:lava-scheduler https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk You are subscribed to branch lp:lava-scheduler. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk/+edit-subscription === modified file 'lava_scheduler_app/urls.py' --- lava_scheduler_app/urls.py 2012-03-01 23:38:16 +0000 +++ lava_scheduler_app/urls.py 2012-03-02 04:35:51 +0000 @@ -8,10 +8,10 @@ name='lava.scheduler'), url(r'^active_jobs_json$', 'index_active_jobs_json', - name='lava.scheduler'), + name='lava.scheduler.active_jobs_json'), url(r'^devices_json$', 'index_devices_json', - name='lava.scheduler'), + name='lava.scheduler.index_devices_json'), url(r'^alljobs$', 'job_list', name='lava.scheduler.job.list'),