Skip to content

Commit 995babf

Browse files
author
Mario Colombo
authored
Merge branch 'support/cms-4.0.x' into update-v4
2 parents 38fedf7 + 9ef676d commit 995babf

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

backend/settings.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,20 @@
5050
'filer',
5151
'easy_thumbnails',
5252

53+
# the default publishing implementation - optional, but used in most projects
54+
'djangocms_versioning',
55+
56+
# the default alias content - optional, but used in most projects
57+
'djangocms_alias',
58+
5359
# the default CKEditor - optional, but used in most projects
5460
'djangocms_text_ckeditor',
5561

5662
# some content plugins - optional, but used in most projects
5763
'djangocms_file',
5864
'djangocms_icon',
5965
'djangocms_link',
66+
'djangocms_url_manager',
6067
'djangocms_picture',
6168
'djangocms_style',
6269
'djangocms_googlemap',

requirements.txt

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
django>=3.1,<3.2 # 3.2 has dark admin theme which looks bad in custom django CMS admin views
1+
django<3.2 # 3.2 has dark admin theme which looks bad in custom django CMS admin views
22
dj-database-url==0.5.0
33
django-storage-url==0.5.0
44
whitenoise==5.2.0
@@ -9,7 +9,8 @@ psycopg2==2.8.5
99
uwsgi==2.0.19.1
1010

1111
# key requirements for django CMS
12-
django-cms<4
12+
http://github.com/django-cms/django-cms/tarball/release/4.0.x#egg=django-cms
13+
django-treebeard>=4.0,<5.0
1314
django-classy-tags>=2.0
1415
django-sekizai>=2.0
1516
six
@@ -19,10 +20,13 @@ pytz
1920
djangocms-admin-style>=2.0,<3.0
2021

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

2425
# some content plugins - optional, but used in most projects
2526
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+
2630
djangocms-icon>=2.0,<3.0
2731
djangocms-style>=3.0,<4.0
2832
djangocms-googlemap>=2.0,<3.0
@@ -35,3 +39,7 @@ https://github.com/gl-agnx/djangocms-bootstrap5/archive/refs/heads/master.zip#eg
3539

3640
# Django Filer - optional, but used in most projects (alpha)
3741
https://github.com/django-cms/django-filer/archive/refs/tags/2.1rc4.zip#egg=django-filer
42+
43+
# FIXME: Requires an "official" V1 release
44+
https://github.com/divio/djangocms-versioning/tarball/master#egg=djangocms-versioning
45+
https://github.com/divio/djangocms-alias/tarball/master#egg=djangocms-alias

0 commit comments

Comments
 (0)