Note: This change is to support a project that I am working on. You should see no change in the behavior of your current Autotest installations.

-----

Implement the models and set up the RPC framework for the Test Planner

Signed-off-by: James Ren <jamesren@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@4039 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/frontend/urls.py b/frontend/urls.py
index 74be84d..2f113b1 100644
--- a/frontend/urls.py
+++ b/frontend/urls.py
@@ -6,12 +6,14 @@
 admin.autodiscover()
 
 RE_PREFIX = '^' + settings.URL_PREFIX
+PLANNER_RE_PREFIX = '^' + settings.PLANNER_URL_PREFIX
 
 handler500 = 'frontend.afe.views.handler500'
 
 pattern_list = (
         (RE_PREFIX + r'admin/(.*)', admin.site.root),
         (RE_PREFIX, include('frontend.afe.urls')),
+        (PLANNER_RE_PREFIX, include('frontend.planner.urls')),
     )
 
 debug_pattern_list = (