django version update #3
This commit is contained in:
parent
66d042dbe7
commit
abbc2982e3
17 changed files with 153 additions and 50 deletions
|
@ -6,7 +6,7 @@ from django.utils.translation import ugettext as _
|
|||
class CMSGalleryPlugin(CMSPluginBase):
|
||||
model = DGGalleryPlugin
|
||||
name = _("Digital Glarus Gallery")
|
||||
render_template = "digitalglarus/gallery.html"
|
||||
render_template = "cms/digitalglarus/gallery.html"
|
||||
|
||||
def render(self, context, instance, placeholder):
|
||||
context.update({
|
||||
|
@ -19,7 +19,7 @@ class CMSGalleryPlugin(CMSPluginBase):
|
|||
class CMSSupportersPlugin(CMSPluginBase):
|
||||
name = _("Digital Glarus Supporters")
|
||||
model = DGSupportersPlugin
|
||||
render_template = "digitalglarus/supporters_plugin.html"
|
||||
render_template = "cms/digitalglarus/supporters_plugin.html"
|
||||
|
||||
def render(self, context, instance, placeholder):
|
||||
context.update({
|
||||
|
|
19
digitalglarus/migrations/0010_auto_20160229_2106.py
Normal file
19
digitalglarus/migrations/0010_auto_20160229_2106.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('digitalglarus', '0009_remove_dgsupportersplugin_dgsupporters'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='message',
|
||||
name='email',
|
||||
field=models.EmailField(max_length=254),
|
||||
),
|
||||
]
|
|
@ -146,13 +146,8 @@ TEMPLATE_CONTEXT_PROCESSORS = (
|
|||
)
|
||||
|
||||
TEMPLATE_DIRS = (
|
||||
os.path.join(PROJECT_DIR, 'templates'),
|
||||
os.path.join(PROJECT_DIR, 'templates'),os.path.join(PROJECT_DIR, 'templates/cms/'),
|
||||
)
|
||||
|
||||
CMS_TEMPLATES_DIR = {
|
||||
1: os.path.join(TEMPLATE_DIRS[0], 'cms/'),
|
||||
}
|
||||
|
||||
# Database
|
||||
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
|
||||
|
||||
|
@ -283,7 +278,7 @@ META_USE_SITES = True
|
|||
|
||||
MIGRATION_MODULES = {
|
||||
'cms': 'cms.migrations',
|
||||
'filer': 'filer.migrations_django',
|
||||
# 'filer': 'filer.migrations_django',
|
||||
'menus': 'menus.migrations_django',
|
||||
'djangocms_flash': 'djangocms_flash.migrations_django',
|
||||
'djangocms_googlemap': 'djangocms_googlemap.migrations_django',
|
||||
|
|
35
pg_upgrade_internal.log
Normal file
35
pg_upgrade_internal.log
Normal file
|
@ -0,0 +1,35 @@
|
|||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:55:31 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
You must identify the directory where the old cluster binaries reside.
|
||||
Please use the -b command-line option or the PGBINOLD environment variable.
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:09 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
You must identify the directory where the old cluster binaries reside.
|
||||
Please use the -b command-line option or the PGBINOLD environment variable.
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:22 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
You must identify the directory where the old cluster binaries reside.
|
||||
Please use the -b command-line option or the PGBINOLD environment variable.
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:25 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
You must identify the directory where the old cluster binaries reside.
|
||||
Please use the -b command-line option or the PGBINOLD environment variable.
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:32 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
You must identify the directory where the old cluster binaries reside.
|
||||
Please use the -b command-line option or the PGBINOLD environment variable.
|
25
pg_upgrade_server.log
Normal file
25
pg_upgrade_server.log
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:55:31 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:09 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:22 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:25 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:32 2016
|
||||
-----------------------------------------------------------------
|
||||
|
25
pg_upgrade_utility.log
Normal file
25
pg_upgrade_utility.log
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:55:31 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:09 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:22 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:25 2016
|
||||
-----------------------------------------------------------------
|
||||
|
||||
|
||||
-----------------------------------------------------------------
|
||||
pg_upgrade run on Mon Feb 29 11:56:32 2016
|
||||
-----------------------------------------------------------------
|
||||
|
|
@ -1,59 +1,51 @@
|
|||
Django==1.7.10
|
||||
Django-Select2==5.0.2
|
||||
Mako==1.0.2
|
||||
Markdown==2.6.2
|
||||
MarkupSafe==0.23
|
||||
Pillow==2.9.0
|
||||
South==1.0.2
|
||||
TornadIO2==0.0.3
|
||||
URLObject==2.4.0
|
||||
Unidecode==0.04.18
|
||||
YURL==0.13
|
||||
aldryn-blog==0.4.6
|
||||
aldryn-boilerplates==0.7
|
||||
aldryn-common==0.1.3
|
||||
aldryn-search==0.2.7
|
||||
anyjson==0.3.3
|
||||
chaussette==1.3.0
|
||||
cmsplugin-filer==0.10.1
|
||||
cmsplugin-filer==1.0.1
|
||||
cssselect==0.9.1
|
||||
Django==1.8.9
|
||||
django-admin-enhancer==1.0.0
|
||||
django-appconf==1.0.1
|
||||
django-appdata==0.1.4
|
||||
django-bootstrap3==6.2.2
|
||||
django-classy-tags==0.5
|
||||
django-cms==3.1.3
|
||||
django-bootstrap3==7.0.0
|
||||
django-classy-tags==0.7.1
|
||||
django-cms==3.2.1
|
||||
django-compressor==1.5
|
||||
django-countries==3.3
|
||||
django-debug-toolbar==1.3.2
|
||||
django-dotenv==1.3.0
|
||||
django-extensions==1.5.5
|
||||
django-filer==0.9.9
|
||||
django-filer==1.1.1
|
||||
django-filter==0.10.0
|
||||
django-formtools==1.0
|
||||
django-fsm==2.2.1
|
||||
django-fsm-admin==1.2.1
|
||||
django-guardian==1.2.0
|
||||
django-haystack==2.3.1
|
||||
django-hvad==1.2.1
|
||||
-e git+git@github.com:agiliq/merchant.git@2584954a1371ee6c7d11be2d75a94402e7c641d8#egg=django_merchant-master
|
||||
-e git+git@github.com:agiliq/merchant.git@2584954a1371ee6c7d11be2d75a94402e7c641d8#egg=django_merchant
|
||||
django-meta==0.3.1
|
||||
django-meta-mixin==0.1.1
|
||||
django-model-utils==2.2
|
||||
django-money==0.7.0
|
||||
django-mptt==0.6.1
|
||||
django-parler==1.5
|
||||
django-polymorphic==0.7.1
|
||||
django-reversion==1.9.3
|
||||
django-sekizai==0.7
|
||||
django-mptt==0.8.2
|
||||
django-parler==1.6.1
|
||||
django-polymorphic==0.8.1
|
||||
django-reversion==1.10.1
|
||||
django-sekizai==0.9.0
|
||||
Django-Select2==5.8.1
|
||||
django-sortedm2m==0.10.0
|
||||
django-spurl==0.6
|
||||
django-standard-form==1.1.1
|
||||
django-taggit==0.17.1
|
||||
django-taggit-autosuggest==0.2.7
|
||||
django-taggit==0.18.0
|
||||
django-taggit-autosuggest==0.2.8
|
||||
django-taggit-templatetags==0.2.5
|
||||
django-templatetag-sugar==1.0
|
||||
django-treebeard==3.0
|
||||
djangocms-admin-style==0.2.5
|
||||
django-treebeard==4.0
|
||||
djangocms-admin-style==1.1.0
|
||||
djangocms-blog==0.5.0
|
||||
djangocms-column==1.5
|
||||
djangocms-flash==0.2.0
|
||||
|
@ -69,18 +61,25 @@ djangocms-table==1.2
|
|||
djangocms-teaser==0.1
|
||||
djangocms-text-ckeditor==2.6.0
|
||||
djangorestframework==3.1.3
|
||||
easy-thumbnails==2.2
|
||||
easy-thumbnails==2.3
|
||||
factory-boy==2.5.2
|
||||
gevent==1.1b5
|
||||
gnureadline==6.3.3
|
||||
greenlet==0.4.9
|
||||
html5lib==0.999
|
||||
html5lib==0.9999999
|
||||
iowait==0.2
|
||||
ipdb==0.8.1
|
||||
ipython==3.2.0
|
||||
lesscpy==0.10.2
|
||||
lxml==3.4.4
|
||||
Mako==1.0.2
|
||||
Markdown==2.6.2
|
||||
MarkupSafe==0.23
|
||||
meinheld==0.5.8
|
||||
micawber==0.3.3
|
||||
mock==1.3.0
|
||||
pbr==1.8.1
|
||||
Pillow==3.1.1
|
||||
ply==3.6
|
||||
psutil==3.2.1
|
||||
psycopg2==2.6.1
|
||||
|
@ -92,9 +91,14 @@ pytz==2015.6
|
|||
pyzmq==14.7.0
|
||||
requests==2.7.0
|
||||
simplejson==3.8.0
|
||||
six==1.3.0
|
||||
six==1.10.0
|
||||
South==1.0.2
|
||||
sqlparse==0.1.15
|
||||
stripe==1.22.3
|
||||
tomako==0.1.0
|
||||
TornadIO2==0.0.3
|
||||
tornado==4.2.1
|
||||
|
||||
Unidecode==0.4.19
|
||||
URLObject==2.4.0
|
||||
wheel==0.29.0
|
||||
YURL==0.13
|
||||
|
|
Loading…
Reference in a new issue