summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldcollector/urls.py
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-06-16 16:00:26 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-26 09:27:33 +0100
commitdf48243970fac633586eb99c9baf3090123c681c (patch)
treea616118bed5fa9831a5ddbf0033cc5833d51e80a /bitbake/lib/toaster/bldcollector/urls.py
parent62288a66896416beaef1d85aeefc8dab0835f4f8 (diff)
downloadpoky-df48243970fac633586eb99c9baf3090123c681c.tar.gz
bitbake: toaster: split orm app into it's own module and app
The orm application was also the django application to collect the build information. Splitting this module up into it's functional parts. orm for the data module and bldcollector for build collection data. (Bitbake rev: 8ca10764ffd6cfec12cbfeabf240d81213a07845) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldcollector/urls.py')
-rw-r--r--bitbake/lib/toaster/bldcollector/urls.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcollector/urls.py b/bitbake/lib/toaster/bldcollector/urls.py
new file mode 100644
index 0000000000..144387b56a
--- /dev/null
+++ b/bitbake/lib/toaster/bldcollector/urls.py
@@ -0,0 +1,26 @@
1#
2# BitBake Toaster Implementation
3#
4# Copyright (C) 2014 Intel Corporation
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License version 2 as
8# published by the Free Software Foundation.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License along
16# with this program; if not, write to the Free Software Foundation, Inc.,
17# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19
20from django.conf.urls import patterns, include, url
21from django.views.generic import RedirectView
22
23urlpatterns = patterns('bldcollector.views',
24 # landing point for pushing a bitbake_eventlog.json file to this toaster instace
25 url(r'^eventfile$', 'eventfile', name='eventfile'),
26 )