Skip to content

Commit 4a58b5d

Browse files
author
Mario Colombo
authored
Merge pull request #4 from Aiky30/feature/django-cms-40-compat
WIP: django CMS 4.0 compatible version
2 parents 20cf675 + 6442b2d commit 4a58b5d

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

quickstart/settings.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,20 @@
5353
'filer',
5454
'easy_thumbnails',
5555

56+
# the default publishing implementation - optional, but used in most projects
57+
'djangocms_versioning',
58+
59+
# the default alias content - optional, but used in most projects
60+
'djangocms_alias',
61+
5662
# the default CKEditor - optional, but used in most projects
5763
'djangocms_text_ckeditor',
5864

5965
# some content plugins - optional, but used in most projects
6066
'djangocms_file',
6167
'djangocms_icon',
6268
'djangocms_link',
69+
'djangocms_url_manager',
6370
'djangocms_picture',
6471
'djangocms_style',
6572
'djangocms_googlemap',

requirements.txt

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
django>=3.1,<3.2
1+
django==2.2
22
dj-database-url==0.5.0
33
django-storage-url==0.5.0
44
whitenoise==5.2.0
@@ -9,7 +9,7 @@ psycopg2==2.8.5
99
uwsgi==2.0.19.1
1010

1111
# key requirements for django CMS
12-
django-cms>=3.8,<3.9
12+
http://github.com/divio/django-cms/tarball/release/4.0.x#egg=django-cms
1313
django-treebeard>=4.0,<5.0
1414
django-classy-tags>=2.0
1515
django-sekizai>=2.0
@@ -20,10 +20,13 @@ pytz
2020
djangocms-admin-style>=2.0,<3.0
2121

2222
# the default CKEditor - optional, but used in most projects
23-
djangocms-text-ckeditor>=4.0,<5.0
23+
https://github.com/divio/djangocms-text-ckeditor/tarball/support/4.0.x#egg=djangocms-text-ckeditor
2424

2525
# some content plugins - optional, but used in most projects
2626
djangocms-link>=3.0,<4.0
27+
# FIXME: Replaces djangocms-link, some packages are still sadly dependant ....
28+
https://github.com/divio/djangocms-url-manager/tarball/master#egg=djangocms-url-manager
29+
2730
djangocms-icon>=2.0,<3.0
2831
djangocms-style>=3.0,<4.0
2932
djangocms-googlemap>=2.0,<3.0
@@ -32,7 +35,7 @@ djangocms-file>=3.0,<4.0
3235
djangocms-picture>=3.0,<4.0
3336

3437
# optional django CMS Bootstrap 4 modules
35-
djangocms-bootstrap4>=2.0,<3.0
38+
https://github.com/Aiky30/djangocms-bootstrap4/tarball/feature/cms-4-support#egg=djangocms-bootstrap4
3639

3740
# Django Filer - optional, but used in most projects
3841
easy_thumbnails
@@ -41,3 +44,6 @@ django-mptt>0.9
4144
html5lib>=1.0.1
4245
Pillow>=3.0
4346

47+
# FIXME: Requires an "official" V1 release
48+
https://github.com/divio/djangocms-versioning/tarball/master#egg=djangocms-versioning
49+
https://github.com/divio/djangocms-alias/tarball/master#egg=djangocms-alias

0 commit comments

Comments
 (0)