add settings and URLs required for ckeditor image upload support

This commit is contained in:
Frédéric Péters 2015-01-10 12:30:25 +01:00
parent 4af530ed00
commit 85d26f199e
2 changed files with 28 additions and 2 deletions

View File

@ -111,7 +111,10 @@ USE_TZ = True
STATIC_URL = '/static/'
CKEDITOR_UPLOAD_PATH = os.path.join(BASE_DIR, 'uploads/ckeditor')
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'
CKEDITOR_UPLOAD_PATH = 'uploads/'
CKEDITOR_CONFIGS = {
'default': {

View File

@ -1,11 +1,34 @@
# combo - content management system
# Copyright (C) 2015 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from django.conf import settings
from django.conf.urls import patterns, include, url
from django.contrib import admin
urlpatterns = patterns('',
url(r'^manage/', include('combo.manager.urls')),
url(r'^admin/', include(admin.site.urls)),
url(r'', include('combo.public.urls')),
)
# static and media files
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
urlpatterns += staticfiles_urlpatterns()
from django.conf.urls.static import static
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
# other URLs are handled as public URLs
urlpatterns += patterns('', url(r'', include('combo.public.urls')))