From 595c9108fdb5fcce0599963ab72b00d92c620a1e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 26 Jul 2012 23:01:29 -0400 Subject: [PATCH] Reorganize app load order --- settings.py | 36 ++++++++++++++++++------------------ urls.py | 4 ++-- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/settings.py b/settings.py index 33c4da2e59..50f4ff2126 100644 --- a/settings.py +++ b/settings.py @@ -166,26 +166,26 @@ INSTALLED_APPS = ( 'scheduler', 'job_processor', # Mayan EDMS - 'storage', - 'documents', - 'metadata', - 'folders', - 'tags', - 'document_comments', - 'mailer', - 'linking', - 'document_indexing', - 'sources', - 'document_acls', - 'ocr', - 'history', - 'rest_api', - 'document_signatures', - #'workflows', - 'checkouts', - #'bootstrap', 'main', 'installation', + 'storage', + 'folders', + 'tags', + 'documents', + 'document_comments', + 'document_signatures', + 'linking', + 'metadata', + 'ocr', + 'document_indexing', + 'sources', + 'mailer', + 'document_acls', + 'history', + 'workflows', + 'checkouts', + 'rest_api', + 'bootstrap', # Has to be last so the other apps can register it's signals 'signaler', diff --git a/urls.py b/urls.py index 844e2f7c05..2049180665 100644 --- a/urls.py +++ b/urls.py @@ -32,11 +32,11 @@ urlpatterns = patterns('', (r'^gpg/', include('django_gpg.urls')), (r'^documents/signatures/', include('document_signatures.urls')), (r'^mailer/', include('mailer.urls')), - #(r'^workflows/', include('workflows.urls')), + (r'^workflows/', include('workflows.urls')), (r'^checkouts/', include('checkouts.urls')), (r'^installation/', include('installation.urls')), (r'^scheduler/', include('scheduler.urls')), - #(r'^bootstrap/', include('bootstrap.urls')), + (r'^bootstrap/', include('bootstrap.urls')), )