Fri Feb 9 10:50:34 2024 UTC (104d)
py-django-cms: updated to 4.1.0

4.1.0 (2023-12-22)
==================

Features:
---------
* Dark mode for v4 branch
* Graceful plugin exceptions
* Reintroduce indicator menus
* Add release scripts for develop-4 branch
* Icon update
* Add setting to redirect slugs to lowercase et al.
* Grouper model admin class
* Change `TitleExtension` to `PageContentExtension`
* Optimize populating page content cache for Page model.
* Unified icon font with icons for versioning, moderation and version locking
* Django 4.2, 4.1 and 4.0 support
* Python 3.11, 3.10 support
* Remove patching of PageContent by djangocms-versioning
* Utility function get_placeholder_from_slot for PlaceholderRelationField

Bug Fixes:
----------
* Open new plugin window in language of toolbar not of page
* Update transifex source file
* Remove publish/draft reference from grouper admin message (fcc2f7ad5) -- Fabian Braun
* Update _modal.scss (4ab1f58cd) -- Fabian Braun
* Better action feedback (94cc9b0f5) -- Fabian Braun
* modal.scss dark-mode compatibilitiy (318d417a4) -- Fabian Braun
* remove `copy_to_public` from page and page content extensions
* Cross-talk between grouper admins due to common list initialization
* Remove admin view provided cancel button from modals (since it has its own cancel button)
* Upgrade js build system to node.js 18
* update diff-dom and karma, run frontend tests on Chrome Headless
* Sitemaps in v4 relied on availability of `PageUrl` instead of `PageContent`
* page settings does not correctly focus
* Add (back) navigation extenders to advanced settings
* Unlocalize ids to avoid js errors for ids greater than 999
* create page wizard fails with Asian page titles/unicode slugs
* take csrf token from admin form or cms toolbar instead of cookie (6a6ebecff) -- Fabian Braun
* Menu link is outdated when page moved
* Preview button lead to the wrong language
* empty actions shown without unwanted spaces
* Language switching in page settings
* Show language menu in toolbar only if at least two languages are configured
* Moving plugins between placeholders, plugin api
* Apphooks at endpoints
* Fix bug that broke page tree if it contained empty page content
* Fix bug that created new page content not in the displayed language but the browser language
* Remove outdated Django setting SEND_BROKEN_LINK_EMAILS
* Fixed redirect issues when i18n_patterns had prefix_default_language = False
* add release scripts for develop-4 branch


(adam)
diff -r0 -r1.1 pkgsrc/www/py-django-cms/ALTERNATIVES
diff -r1.55 -r1.56 pkgsrc/www/py-django-cms/Makefile
diff -r1.37 -r1.38 pkgsrc/www/py-django-cms/PLIST
diff -r1.45 -r1.46 pkgsrc/www/py-django-cms/distinfo

File Added: pkgsrc/www/py-django-cms/ALTERNATIVES
bin/djangocms @PREFIX@/bin/djangocms-@PYVERSSUFFIX@

cvs diff -r1.55 -r1.56 pkgsrc/www/py-django-cms/Makefile (expand / switch to unified diff)

--- pkgsrc/www/py-django-cms/Makefile 2023/10/10 16:44:25 1.55
+++ pkgsrc/www/py-django-cms/Makefile 2024/02/09 10:50:34 1.56
@@ -1,26 +1,32 @@ @@ -1,26 +1,32 @@
1# $NetBSD: Makefile,v 1.55 2023/10/10 16:44:25 adam Exp $ 1# $NetBSD: Makefile,v 1.56 2024/02/09 10:50:34 adam Exp $
2 2
3DISTNAME= django-cms-3.11.4 3DISTNAME= django-cms-4.1.0
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= www python 5CATEGORIES= www python
6MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-cms/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-cms/}
7 7
8MAINTAINER= adam@NetBSD.org 8MAINTAINER= adam@NetBSD.org
9HOMEPAGE= https://www.django-cms.org/ 9HOMEPAGE= https://www.django-cms.org/
10COMMENT= Django content management system 10COMMENT= Django content management system
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
13DEPENDS+= ${PYPKGPREFIX}-django>=3.2:../../www/py-django3 13TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
 14DEPENDS+= ${PYPKGPREFIX}-django>=3.2:../../www/py-django
14DEPENDS+= ${PYPKGPREFIX}-django-classy-tags>=0.7.2:../../www/py-django-classy-tags 15DEPENDS+= ${PYPKGPREFIX}-django-classy-tags>=0.7.2:../../www/py-django-classy-tags
15DEPENDS+= ${PYPKGPREFIX}-django-formtools>=2.1:../../www/py-django-formtools 16DEPENDS+= ${PYPKGPREFIX}-django-formtools>=2.1:../../www/py-django-formtools
16DEPENDS+= ${PYPKGPREFIX}-django-sekizai>=0.7:../../www/py-django-sekizai 17DEPENDS+= ${PYPKGPREFIX}-django-sekizai>=0.7:../../www/py-django-sekizai
17DEPENDS+= ${PYPKGPREFIX}-django-treebeard>=4.3:../../www/py-django-treebeard 18DEPENDS+= ${PYPKGPREFIX}-django-treebeard>=4.3:../../www/py-django-treebeard
18DEPENDS+= ${PYPKGPREFIX}-djangocms-admin-style>=1.2:../../www/py-djangocms-admin-style 19DEPENDS+= ${PYPKGPREFIX}-djangocms-admin-style>=1.2:../../www/py-djangocms-admin-style
19DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9]*:../../devel/py-packaging 20DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9]*:../../devel/py-packaging
 21DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
20 22
21USE_LANGUAGES= # none 23USE_LANGUAGES= # none
22 24
23PYTHON_VERSIONS_INCOMPATIBLE= 27 25PYTHON_VERSIONS_INCOMPATIBLE= 27
24 26
25.include "../../lang/python/egg.mk" 27post-install:
 28 cd ${DESTDIR}${PREFIX}/bin && \
 29 ${MV} djangocms djangocms-${PYVERSSUFFIX} || ${TRUE}
 30
 31.include "../../lang/python/wheel.mk"
26.include "../../mk/bsd.pkg.mk" 32.include "../../mk/bsd.pkg.mk"

cvs diff -r1.37 -r1.38 pkgsrc/www/py-django-cms/PLIST (expand / switch to unified diff)

--- pkgsrc/www/py-django-cms/PLIST 2023/10/10 16:44:25 1.37
+++ pkgsrc/www/py-django-cms/PLIST 2024/02/09 10:50:34 1.38
@@ -1,77 +1,91 @@ @@ -1,77 +1,91 @@
1@comment $NetBSD: PLIST,v 1.37 2023/10/10 16:44:25 adam Exp $ 1@comment $NetBSD: PLIST,v 1.38 2024/02/09 10:50:34 adam Exp $
2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 2bin/djangocms-${PYVERSSUFFIX}
3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 3${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS
4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 4${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
5${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 5${PYSITELIB}/${WHEEL_INFODIR}/METADATA
6${PYSITELIB}/${EGG_INFODIR}/requires.txt 6${PYSITELIB}/${WHEEL_INFODIR}/RECORD
7${PYSITELIB}/${EGG_INFODIR}/top_level.txt 7${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
 8${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
 9${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
8${PYSITELIB}/cms/__init__.py 10${PYSITELIB}/cms/__init__.py
9${PYSITELIB}/cms/__init__.pyc 11${PYSITELIB}/cms/__init__.pyc
10${PYSITELIB}/cms/__init__.pyo 12${PYSITELIB}/cms/__init__.pyo
 13${PYSITELIB}/cms/__main__.py
 14${PYSITELIB}/cms/__main__.pyc
 15${PYSITELIB}/cms/__main__.pyo
11${PYSITELIB}/cms/admin/__init__.py 16${PYSITELIB}/cms/admin/__init__.py
12${PYSITELIB}/cms/admin/__init__.pyc 17${PYSITELIB}/cms/admin/__init__.pyc
13${PYSITELIB}/cms/admin/__init__.pyo 18${PYSITELIB}/cms/admin/__init__.pyo
14${PYSITELIB}/cms/admin/forms.py 19${PYSITELIB}/cms/admin/forms.py
15${PYSITELIB}/cms/admin/forms.pyc 20${PYSITELIB}/cms/admin/forms.pyc
16${PYSITELIB}/cms/admin/forms.pyo 21${PYSITELIB}/cms/admin/forms.pyo
17${PYSITELIB}/cms/admin/pageadmin.py 22${PYSITELIB}/cms/admin/pageadmin.py
18${PYSITELIB}/cms/admin/pageadmin.pyc 23${PYSITELIB}/cms/admin/pageadmin.pyc
19${PYSITELIB}/cms/admin/pageadmin.pyo 24${PYSITELIB}/cms/admin/pageadmin.pyo
20${PYSITELIB}/cms/admin/permissionadmin.py 25${PYSITELIB}/cms/admin/permissionadmin.py
21${PYSITELIB}/cms/admin/permissionadmin.pyc 26${PYSITELIB}/cms/admin/permissionadmin.pyc
22${PYSITELIB}/cms/admin/permissionadmin.pyo 27${PYSITELIB}/cms/admin/permissionadmin.pyo
23${PYSITELIB}/cms/admin/placeholderadmin.py 28${PYSITELIB}/cms/admin/placeholderadmin.py
24${PYSITELIB}/cms/admin/placeholderadmin.pyc 29${PYSITELIB}/cms/admin/placeholderadmin.pyc
25${PYSITELIB}/cms/admin/placeholderadmin.pyo 30${PYSITELIB}/cms/admin/placeholderadmin.pyo
26${PYSITELIB}/cms/admin/settingsadmin.py 31${PYSITELIB}/cms/admin/settingsadmin.py
27${PYSITELIB}/cms/admin/settingsadmin.pyc 32${PYSITELIB}/cms/admin/settingsadmin.pyc
28${PYSITELIB}/cms/admin/settingsadmin.pyo 33${PYSITELIB}/cms/admin/settingsadmin.pyo
29${PYSITELIB}/cms/admin/static_placeholder.py 34${PYSITELIB}/cms/admin/static_placeholder.py
30${PYSITELIB}/cms/admin/static_placeholder.pyc 35${PYSITELIB}/cms/admin/static_placeholder.pyc
31${PYSITELIB}/cms/admin/static_placeholder.pyo 36${PYSITELIB}/cms/admin/static_placeholder.pyo
32${PYSITELIB}/cms/admin/useradmin.py 37${PYSITELIB}/cms/admin/useradmin.py
33${PYSITELIB}/cms/admin/useradmin.pyc 38${PYSITELIB}/cms/admin/useradmin.pyc
34${PYSITELIB}/cms/admin/useradmin.pyo 39${PYSITELIB}/cms/admin/useradmin.pyo
 40${PYSITELIB}/cms/admin/utils.py
 41${PYSITELIB}/cms/admin/utils.pyc
 42${PYSITELIB}/cms/admin/utils.pyo
35${PYSITELIB}/cms/api.py 43${PYSITELIB}/cms/api.py
36${PYSITELIB}/cms/api.pyc 44${PYSITELIB}/cms/api.pyc
37${PYSITELIB}/cms/api.pyo 45${PYSITELIB}/cms/api.pyo
38${PYSITELIB}/cms/app_base.py 46${PYSITELIB}/cms/app_base.py
39${PYSITELIB}/cms/app_base.pyc 47${PYSITELIB}/cms/app_base.pyc
40${PYSITELIB}/cms/app_base.pyo 48${PYSITELIB}/cms/app_base.pyo
 49${PYSITELIB}/cms/app_registration.py
 50${PYSITELIB}/cms/app_registration.pyc
 51${PYSITELIB}/cms/app_registration.pyo
41${PYSITELIB}/cms/apphook_pool.py 52${PYSITELIB}/cms/apphook_pool.py
42${PYSITELIB}/cms/apphook_pool.pyc 53${PYSITELIB}/cms/apphook_pool.pyc
43${PYSITELIB}/cms/apphook_pool.pyo 54${PYSITELIB}/cms/apphook_pool.pyo
44${PYSITELIB}/cms/appresolver.py 55${PYSITELIB}/cms/appresolver.py
45${PYSITELIB}/cms/appresolver.pyc 56${PYSITELIB}/cms/appresolver.pyc
46${PYSITELIB}/cms/appresolver.pyo 57${PYSITELIB}/cms/appresolver.pyo
47${PYSITELIB}/cms/apps.py 58${PYSITELIB}/cms/apps.py
48${PYSITELIB}/cms/apps.pyc 59${PYSITELIB}/cms/apps.pyc
49${PYSITELIB}/cms/apps.pyo 60${PYSITELIB}/cms/apps.pyo
50${PYSITELIB}/cms/cache/__init__.py 61${PYSITELIB}/cms/cache/__init__.py
51${PYSITELIB}/cms/cache/__init__.pyc 62${PYSITELIB}/cms/cache/__init__.pyc
52${PYSITELIB}/cms/cache/__init__.pyo 63${PYSITELIB}/cms/cache/__init__.pyo
53${PYSITELIB}/cms/cache/choices.py 64${PYSITELIB}/cms/cache/choices.py
54${PYSITELIB}/cms/cache/choices.pyc 65${PYSITELIB}/cms/cache/choices.pyc
55${PYSITELIB}/cms/cache/choices.pyo 66${PYSITELIB}/cms/cache/choices.pyo
56${PYSITELIB}/cms/cache/page.py 67${PYSITELIB}/cms/cache/page.py
57${PYSITELIB}/cms/cache/page.pyc 68${PYSITELIB}/cms/cache/page.pyc
58${PYSITELIB}/cms/cache/page.pyo 69${PYSITELIB}/cms/cache/page.pyo
59${PYSITELIB}/cms/cache/permissions.py 70${PYSITELIB}/cms/cache/permissions.py
60${PYSITELIB}/cms/cache/permissions.pyc 71${PYSITELIB}/cms/cache/permissions.pyc
61${PYSITELIB}/cms/cache/permissions.pyo 72${PYSITELIB}/cms/cache/permissions.pyo
62${PYSITELIB}/cms/cache/placeholder.py 73${PYSITELIB}/cms/cache/placeholder.py
63${PYSITELIB}/cms/cache/placeholder.pyc 74${PYSITELIB}/cms/cache/placeholder.pyc
64${PYSITELIB}/cms/cache/placeholder.pyo 75${PYSITELIB}/cms/cache/placeholder.pyo
 76${PYSITELIB}/cms/cms_config.py
 77${PYSITELIB}/cms/cms_config.pyc
 78${PYSITELIB}/cms/cms_config.pyo
65${PYSITELIB}/cms/cms_menus.py 79${PYSITELIB}/cms/cms_menus.py
66${PYSITELIB}/cms/cms_menus.pyc 80${PYSITELIB}/cms/cms_menus.pyc
67${PYSITELIB}/cms/cms_menus.pyo 81${PYSITELIB}/cms/cms_menus.pyo
68${PYSITELIB}/cms/cms_plugins.py 82${PYSITELIB}/cms/cms_plugins.py
69${PYSITELIB}/cms/cms_plugins.pyc 83${PYSITELIB}/cms/cms_plugins.pyc
70${PYSITELIB}/cms/cms_plugins.pyo 84${PYSITELIB}/cms/cms_plugins.pyo
71${PYSITELIB}/cms/cms_toolbars.py 85${PYSITELIB}/cms/cms_toolbars.py
72${PYSITELIB}/cms/cms_toolbars.pyc 86${PYSITELIB}/cms/cms_toolbars.pyc
73${PYSITELIB}/cms/cms_toolbars.pyo 87${PYSITELIB}/cms/cms_toolbars.pyo
74${PYSITELIB}/cms/cms_wizards.py 88${PYSITELIB}/cms/cms_wizards.py
75${PYSITELIB}/cms/cms_wizards.pyc 89${PYSITELIB}/cms/cms_wizards.pyc
76${PYSITELIB}/cms/cms_wizards.pyo 90${PYSITELIB}/cms/cms_wizards.pyo
77${PYSITELIB}/cms/constants.py 91${PYSITELIB}/cms/constants.py
@@ -109,174 +123,449 @@ ${PYSITELIB}/cms/forms/login.pyc @@ -109,174 +123,449 @@ ${PYSITELIB}/cms/forms/login.pyc
109${PYSITELIB}/cms/forms/login.pyo 123${PYSITELIB}/cms/forms/login.pyo
110${PYSITELIB}/cms/forms/utils.py 124${PYSITELIB}/cms/forms/utils.py
111${PYSITELIB}/cms/forms/utils.pyc 125${PYSITELIB}/cms/forms/utils.pyc
112${PYSITELIB}/cms/forms/utils.pyo 126${PYSITELIB}/cms/forms/utils.pyo
113${PYSITELIB}/cms/forms/validators.py 127${PYSITELIB}/cms/forms/validators.py
114${PYSITELIB}/cms/forms/validators.pyc 128${PYSITELIB}/cms/forms/validators.pyc
115${PYSITELIB}/cms/forms/validators.pyo 129${PYSITELIB}/cms/forms/validators.pyo
116${PYSITELIB}/cms/forms/widgets.py 130${PYSITELIB}/cms/forms/widgets.py
117${PYSITELIB}/cms/forms/widgets.pyc 131${PYSITELIB}/cms/forms/widgets.pyc
118${PYSITELIB}/cms/forms/widgets.pyo 132${PYSITELIB}/cms/forms/widgets.pyo
119${PYSITELIB}/cms/forms/wizards.py 133${PYSITELIB}/cms/forms/wizards.py
120${PYSITELIB}/cms/forms/wizards.pyc 134${PYSITELIB}/cms/forms/wizards.pyc
121${PYSITELIB}/cms/forms/wizards.pyo 135${PYSITELIB}/cms/forms/wizards.pyo
 136${PYSITELIB}/cms/locale/af/LC_MESSAGES/django.mo
 137${PYSITELIB}/cms/locale/af/LC_MESSAGES/django.po
 138${PYSITELIB}/cms/locale/af/LC_MESSAGES/djangojs.mo
 139${PYSITELIB}/cms/locale/af/LC_MESSAGES/djangojs.po
122${PYSITELIB}/cms/locale/ar/LC_MESSAGES/django.mo 140${PYSITELIB}/cms/locale/ar/LC_MESSAGES/django.mo
123${PYSITELIB}/cms/locale/ar/LC_MESSAGES/django.po 141${PYSITELIB}/cms/locale/ar/LC_MESSAGES/django.po
124${PYSITELIB}/cms/locale/ar/LC_MESSAGES/djangojs.mo 142${PYSITELIB}/cms/locale/ar/LC_MESSAGES/djangojs.mo
125${PYSITELIB}/cms/locale/ar/LC_MESSAGES/djangojs.po 143${PYSITELIB}/cms/locale/ar/LC_MESSAGES/djangojs.po
 144${PYSITELIB}/cms/locale/ar_SA/LC_MESSAGES/django.mo
 145${PYSITELIB}/cms/locale/ar_SA/LC_MESSAGES/django.po
 146${PYSITELIB}/cms/locale/ar_SA/LC_MESSAGES/djangojs.mo
 147${PYSITELIB}/cms/locale/ar_SA/LC_MESSAGES/djangojs.po
 148${PYSITELIB}/cms/locale/be/LC_MESSAGES/django.mo
 149${PYSITELIB}/cms/locale/be/LC_MESSAGES/django.po
 150${PYSITELIB}/cms/locale/be/LC_MESSAGES/djangojs.mo
 151${PYSITELIB}/cms/locale/be/LC_MESSAGES/djangojs.po
 152${PYSITELIB}/cms/locale/bg/LC_MESSAGES/django.mo
 153${PYSITELIB}/cms/locale/bg/LC_MESSAGES/django.po
 154${PYSITELIB}/cms/locale/bg/LC_MESSAGES/djangojs.mo
 155${PYSITELIB}/cms/locale/bg/LC_MESSAGES/djangojs.po
 156${PYSITELIB}/cms/locale/bn/LC_MESSAGES/django.mo
 157${PYSITELIB}/cms/locale/bn/LC_MESSAGES/django.po
 158${PYSITELIB}/cms/locale/bn/LC_MESSAGES/djangojs.mo
 159${PYSITELIB}/cms/locale/bn/LC_MESSAGES/djangojs.po
126${PYSITELIB}/cms/locale/ca/LC_MESSAGES/django.mo 160${PYSITELIB}/cms/locale/ca/LC_MESSAGES/django.mo
127${PYSITELIB}/cms/locale/ca/LC_MESSAGES/django.po 161${PYSITELIB}/cms/locale/ca/LC_MESSAGES/django.po
128${PYSITELIB}/cms/locale/ca/LC_MESSAGES/djangojs.mo 162${PYSITELIB}/cms/locale/ca/LC_MESSAGES/djangojs.mo
129${PYSITELIB}/cms/locale/ca/LC_MESSAGES/djangojs.po 163${PYSITELIB}/cms/locale/ca/LC_MESSAGES/djangojs.po
 164${PYSITELIB}/cms/locale/cmn/LC_MESSAGES/django.mo
 165${PYSITELIB}/cms/locale/cmn/LC_MESSAGES/django.po
 166${PYSITELIB}/cms/locale/cmn/LC_MESSAGES/djangojs.mo
 167${PYSITELIB}/cms/locale/cmn/LC_MESSAGES/djangojs.po
130${PYSITELIB}/cms/locale/cs/LC_MESSAGES/django.mo 168${PYSITELIB}/cms/locale/cs/LC_MESSAGES/django.mo
131${PYSITELIB}/cms/locale/cs/LC_MESSAGES/django.po 169${PYSITELIB}/cms/locale/cs/LC_MESSAGES/django.po
132${PYSITELIB}/cms/locale/cs/LC_MESSAGES/djangojs.mo 170${PYSITELIB}/cms/locale/cs/LC_MESSAGES/djangojs.mo
133${PYSITELIB}/cms/locale/cs/LC_MESSAGES/djangojs.po 171${PYSITELIB}/cms/locale/cs/LC_MESSAGES/djangojs.po
 172${PYSITELIB}/cms/locale/cs_CZ/LC_MESSAGES/django.mo
 173${PYSITELIB}/cms/locale/cs_CZ/LC_MESSAGES/django.po
 174${PYSITELIB}/cms/locale/cs_CZ/LC_MESSAGES/djangojs.mo
 175${PYSITELIB}/cms/locale/cs_CZ/LC_MESSAGES/djangojs.po
 176${PYSITELIB}/cms/locale/cy/LC_MESSAGES/django.mo
 177${PYSITELIB}/cms/locale/cy/LC_MESSAGES/django.po
 178${PYSITELIB}/cms/locale/cy/LC_MESSAGES/djangojs.mo
 179${PYSITELIB}/cms/locale/cy/LC_MESSAGES/djangojs.po
134${PYSITELIB}/cms/locale/da/LC_MESSAGES/django.mo 180${PYSITELIB}/cms/locale/da/LC_MESSAGES/django.mo
135${PYSITELIB}/cms/locale/da/LC_MESSAGES/django.po 181${PYSITELIB}/cms/locale/da/LC_MESSAGES/django.po
136${PYSITELIB}/cms/locale/da/LC_MESSAGES/djangojs.mo 182${PYSITELIB}/cms/locale/da/LC_MESSAGES/djangojs.mo
137${PYSITELIB}/cms/locale/da/LC_MESSAGES/djangojs.po 183${PYSITELIB}/cms/locale/da/LC_MESSAGES/djangojs.po
138${PYSITELIB}/cms/locale/de/LC_MESSAGES/django.mo 184${PYSITELIB}/cms/locale/de/LC_MESSAGES/django.mo
139${PYSITELIB}/cms/locale/de/LC_MESSAGES/django.po 185${PYSITELIB}/cms/locale/de/LC_MESSAGES/django.po
140${PYSITELIB}/cms/locale/de/LC_MESSAGES/djangojs.mo 186${PYSITELIB}/cms/locale/de/LC_MESSAGES/djangojs.mo
141${PYSITELIB}/cms/locale/de/LC_MESSAGES/djangojs.po 187${PYSITELIB}/cms/locale/de/LC_MESSAGES/djangojs.po
 188${PYSITELIB}/cms/locale/el/LC_MESSAGES/django.mo
 189${PYSITELIB}/cms/locale/el/LC_MESSAGES/django.po
 190${PYSITELIB}/cms/locale/el/LC_MESSAGES/djangojs.mo
 191${PYSITELIB}/cms/locale/el/LC_MESSAGES/djangojs.po
142${PYSITELIB}/cms/locale/en/LC_MESSAGES/django.mo 192${PYSITELIB}/cms/locale/en/LC_MESSAGES/django.mo
143${PYSITELIB}/cms/locale/en/LC_MESSAGES/django.po 193${PYSITELIB}/cms/locale/en/LC_MESSAGES/django.po
144${PYSITELIB}/cms/locale/en/LC_MESSAGES/djangojs.mo 194${PYSITELIB}/cms/locale/en/LC_MESSAGES/djangojs.mo
145${PYSITELIB}/cms/locale/en/LC_MESSAGES/djangojs.po 195${PYSITELIB}/cms/locale/en/LC_MESSAGES/djangojs.po
 196${PYSITELIB}/cms/locale/en_GB/LC_MESSAGES/django.mo
 197${PYSITELIB}/cms/locale/en_GB/LC_MESSAGES/django.po
 198${PYSITELIB}/cms/locale/en_GB/LC_MESSAGES/djangojs.mo
 199${PYSITELIB}/cms/locale/en_GB/LC_MESSAGES/djangojs.po
 200${PYSITELIB}/cms/locale/en_HK/LC_MESSAGES/django.mo
 201${PYSITELIB}/cms/locale/en_HK/LC_MESSAGES/django.po
 202${PYSITELIB}/cms/locale/en_HK/LC_MESSAGES/djangojs.mo
 203${PYSITELIB}/cms/locale/en_HK/LC_MESSAGES/djangojs.po
 204${PYSITELIB}/cms/locale/en_US/LC_MESSAGES/django.mo
 205${PYSITELIB}/cms/locale/en_US/LC_MESSAGES/django.po
 206${PYSITELIB}/cms/locale/en_US/LC_MESSAGES/djangojs.mo
 207${PYSITELIB}/cms/locale/en_US/LC_MESSAGES/djangojs.po
 208${PYSITELIB}/cms/locale/eo/LC_MESSAGES/django.mo
 209${PYSITELIB}/cms/locale/eo/LC_MESSAGES/django.po
 210${PYSITELIB}/cms/locale/eo/LC_MESSAGES/djangojs.mo
 211${PYSITELIB}/cms/locale/eo/LC_MESSAGES/djangojs.po
146${PYSITELIB}/cms/locale/es/LC_MESSAGES/django.mo 212${PYSITELIB}/cms/locale/es/LC_MESSAGES/django.mo
147${PYSITELIB}/cms/locale/es/LC_MESSAGES/django.po 213${PYSITELIB}/cms/locale/es/LC_MESSAGES/django.po
148${PYSITELIB}/cms/locale/es/LC_MESSAGES/djangojs.mo 214${PYSITELIB}/cms/locale/es/LC_MESSAGES/djangojs.mo
149${PYSITELIB}/cms/locale/es/LC_MESSAGES/djangojs.po 215${PYSITELIB}/cms/locale/es/LC_MESSAGES/djangojs.po
 216${PYSITELIB}/cms/locale/es_AR/LC_MESSAGES/django.mo
 217${PYSITELIB}/cms/locale/es_AR/LC_MESSAGES/django.po
 218${PYSITELIB}/cms/locale/es_AR/LC_MESSAGES/djangojs.mo
 219${PYSITELIB}/cms/locale/es_AR/LC_MESSAGES/djangojs.po
 220${PYSITELIB}/cms/locale/es_BO/LC_MESSAGES/django.mo
 221${PYSITELIB}/cms/locale/es_BO/LC_MESSAGES/django.po
 222${PYSITELIB}/cms/locale/es_BO/LC_MESSAGES/djangojs.mo
 223${PYSITELIB}/cms/locale/es_BO/LC_MESSAGES/djangojs.po
 224${PYSITELIB}/cms/locale/es_DO/LC_MESSAGES/django.mo
 225${PYSITELIB}/cms/locale/es_DO/LC_MESSAGES/django.po
 226${PYSITELIB}/cms/locale/es_DO/LC_MESSAGES/djangojs.mo
 227${PYSITELIB}/cms/locale/es_DO/LC_MESSAGES/djangojs.po
 228${PYSITELIB}/cms/locale/et/LC_MESSAGES/django.mo
 229${PYSITELIB}/cms/locale/et/LC_MESSAGES/django.po
 230${PYSITELIB}/cms/locale/et/LC_MESSAGES/djangojs.mo
 231${PYSITELIB}/cms/locale/et/LC_MESSAGES/djangojs.po
 232${PYSITELIB}/cms/locale/eu/LC_MESSAGES/django.mo
 233${PYSITELIB}/cms/locale/eu/LC_MESSAGES/django.po
 234${PYSITELIB}/cms/locale/eu/LC_MESSAGES/djangojs.mo
 235${PYSITELIB}/cms/locale/eu/LC_MESSAGES/djangojs.po
150${PYSITELIB}/cms/locale/fa/LC_MESSAGES/django.mo 236${PYSITELIB}/cms/locale/fa/LC_MESSAGES/django.mo
151${PYSITELIB}/cms/locale/fa/LC_MESSAGES/django.po 237${PYSITELIB}/cms/locale/fa/LC_MESSAGES/django.po
152${PYSITELIB}/cms/locale/fa/LC_MESSAGES/djangojs.mo 238${PYSITELIB}/cms/locale/fa/LC_MESSAGES/djangojs.mo
153${PYSITELIB}/cms/locale/fa/LC_MESSAGES/djangojs.po 239${PYSITELIB}/cms/locale/fa/LC_MESSAGES/djangojs.po
 240${PYSITELIB}/cms/locale/fa_IR/LC_MESSAGES/django.mo
 241${PYSITELIB}/cms/locale/fa_IR/LC_MESSAGES/django.po
 242${PYSITELIB}/cms/locale/fa_IR/LC_MESSAGES/djangojs.mo
 243${PYSITELIB}/cms/locale/fa_IR/LC_MESSAGES/djangojs.po
154${PYSITELIB}/cms/locale/fi/LC_MESSAGES/django.mo 244${PYSITELIB}/cms/locale/fi/LC_MESSAGES/django.mo
155${PYSITELIB}/cms/locale/fi/LC_MESSAGES/django.po 245${PYSITELIB}/cms/locale/fi/LC_MESSAGES/django.po
156${PYSITELIB}/cms/locale/fi/LC_MESSAGES/djangojs.mo 246${PYSITELIB}/cms/locale/fi/LC_MESSAGES/djangojs.mo
157${PYSITELIB}/cms/locale/fi/LC_MESSAGES/djangojs.po 247${PYSITELIB}/cms/locale/fi/LC_MESSAGES/djangojs.po
 248${PYSITELIB}/cms/locale/fi_FI/LC_MESSAGES/django.mo
 249${PYSITELIB}/cms/locale/fi_FI/LC_MESSAGES/django.po
 250${PYSITELIB}/cms/locale/fi_FI/LC_MESSAGES/djangojs.mo
 251${PYSITELIB}/cms/locale/fi_FI/LC_MESSAGES/djangojs.po
158${PYSITELIB}/cms/locale/fr/LC_MESSAGES/django.mo 252${PYSITELIB}/cms/locale/fr/LC_MESSAGES/django.mo
159${PYSITELIB}/cms/locale/fr/LC_MESSAGES/django.po 253${PYSITELIB}/cms/locale/fr/LC_MESSAGES/django.po
160${PYSITELIB}/cms/locale/fr/LC_MESSAGES/djangojs.mo 254${PYSITELIB}/cms/locale/fr/LC_MESSAGES/djangojs.mo
161${PYSITELIB}/cms/locale/fr/LC_MESSAGES/djangojs.po 255${PYSITELIB}/cms/locale/fr/LC_MESSAGES/djangojs.po
 256${PYSITELIB}/cms/locale/fr_CA/LC_MESSAGES/django.mo
 257${PYSITELIB}/cms/locale/fr_CA/LC_MESSAGES/django.po
 258${PYSITELIB}/cms/locale/fr_CA/LC_MESSAGES/djangojs.mo
 259${PYSITELIB}/cms/locale/fr_CA/LC_MESSAGES/djangojs.po
 260${PYSITELIB}/cms/locale/fr_FR/LC_MESSAGES/django.mo
 261${PYSITELIB}/cms/locale/fr_FR/LC_MESSAGES/django.po
 262${PYSITELIB}/cms/locale/fr_FR/LC_MESSAGES/djangojs.mo
 263${PYSITELIB}/cms/locale/fr_FR/LC_MESSAGES/djangojs.po
 264${PYSITELIB}/cms/locale/ga/LC_MESSAGES/django.mo
 265${PYSITELIB}/cms/locale/ga/LC_MESSAGES/django.po
 266${PYSITELIB}/cms/locale/ga/LC_MESSAGES/djangojs.mo
 267${PYSITELIB}/cms/locale/ga/LC_MESSAGES/djangojs.po
 268${PYSITELIB}/cms/locale/gl/LC_MESSAGES/django.mo
 269${PYSITELIB}/cms/locale/gl/LC_MESSAGES/django.po
 270${PYSITELIB}/cms/locale/gl/LC_MESSAGES/djangojs.mo
 271${PYSITELIB}/cms/locale/gl/LC_MESSAGES/djangojs.po
 272${PYSITELIB}/cms/locale/gu/LC_MESSAGES/django.mo
 273${PYSITELIB}/cms/locale/gu/LC_MESSAGES/django.po
 274${PYSITELIB}/cms/locale/gu/LC_MESSAGES/djangojs.mo
 275${PYSITELIB}/cms/locale/gu/LC_MESSAGES/djangojs.po
 276${PYSITELIB}/cms/locale/he/LC_MESSAGES/django.mo
 277${PYSITELIB}/cms/locale/he/LC_MESSAGES/django.po
 278${PYSITELIB}/cms/locale/he/LC_MESSAGES/djangojs.mo
 279${PYSITELIB}/cms/locale/he/LC_MESSAGES/djangojs.po
 280${PYSITELIB}/cms/locale/hi/LC_MESSAGES/django.mo
 281${PYSITELIB}/cms/locale/hi/LC_MESSAGES/django.po
 282${PYSITELIB}/cms/locale/hi/LC_MESSAGES/djangojs.mo
 283${PYSITELIB}/cms/locale/hi/LC_MESSAGES/djangojs.po
162${PYSITELIB}/cms/locale/hr/LC_MESSAGES/django.mo 284${PYSITELIB}/cms/locale/hr/LC_MESSAGES/django.mo
163${PYSITELIB}/cms/locale/hr/LC_MESSAGES/django.po 285${PYSITELIB}/cms/locale/hr/LC_MESSAGES/django.po
164${PYSITELIB}/cms/locale/hr/LC_MESSAGES/djangojs.mo 286${PYSITELIB}/cms/locale/hr/LC_MESSAGES/djangojs.mo
165${PYSITELIB}/cms/locale/hr/LC_MESSAGES/djangojs.po 287${PYSITELIB}/cms/locale/hr/LC_MESSAGES/djangojs.po
 288${PYSITELIB}/cms/locale/hu/LC_MESSAGES/django.mo
 289${PYSITELIB}/cms/locale/hu/LC_MESSAGES/django.po
 290${PYSITELIB}/cms/locale/hu/LC_MESSAGES/djangojs.mo
 291${PYSITELIB}/cms/locale/hu/LC_MESSAGES/djangojs.po
 292${PYSITELIB}/cms/locale/id/LC_MESSAGES/django.mo
 293${PYSITELIB}/cms/locale/id/LC_MESSAGES/django.po
 294${PYSITELIB}/cms/locale/id/LC_MESSAGES/djangojs.mo
 295${PYSITELIB}/cms/locale/id/LC_MESSAGES/djangojs.po
 296${PYSITELIB}/cms/locale/is/LC_MESSAGES/django.mo
 297${PYSITELIB}/cms/locale/is/LC_MESSAGES/django.po
 298${PYSITELIB}/cms/locale/is/LC_MESSAGES/djangojs.mo
 299${PYSITELIB}/cms/locale/is/LC_MESSAGES/djangojs.po
 300${PYSITELIB}/cms/locale/is_IS/LC_MESSAGES/django.mo
 301${PYSITELIB}/cms/locale/is_IS/LC_MESSAGES/django.po
 302${PYSITELIB}/cms/locale/is_IS/LC_MESSAGES/djangojs.mo
 303${PYSITELIB}/cms/locale/is_IS/LC_MESSAGES/djangojs.po
166${PYSITELIB}/cms/locale/it/LC_MESSAGES/django.mo 304${PYSITELIB}/cms/locale/it/LC_MESSAGES/django.mo
167${PYSITELIB}/cms/locale/it/LC_MESSAGES/django.po 305${PYSITELIB}/cms/locale/it/LC_MESSAGES/django.po
168${PYSITELIB}/cms/locale/it/LC_MESSAGES/djangojs.mo 306${PYSITELIB}/cms/locale/it/LC_MESSAGES/djangojs.mo
169${PYSITELIB}/cms/locale/it/LC_MESSAGES/djangojs.po 307${PYSITELIB}/cms/locale/it/LC_MESSAGES/djangojs.po
170${PYSITELIB}/cms/locale/ja/LC_MESSAGES/django.mo 308${PYSITELIB}/cms/locale/ja/LC_MESSAGES/django.mo
171${PYSITELIB}/cms/locale/ja/LC_MESSAGES/django.po 309${PYSITELIB}/cms/locale/ja/LC_MESSAGES/django.po
172${PYSITELIB}/cms/locale/ja/LC_MESSAGES/djangojs.mo 310${PYSITELIB}/cms/locale/ja/LC_MESSAGES/djangojs.mo
173${PYSITELIB}/cms/locale/ja/LC_MESSAGES/djangojs.po 311${PYSITELIB}/cms/locale/ja/LC_MESSAGES/djangojs.po
 312${PYSITELIB}/cms/locale/ka/LC_MESSAGES/django.mo
 313${PYSITELIB}/cms/locale/ka/LC_MESSAGES/django.po
 314${PYSITELIB}/cms/locale/ka/LC_MESSAGES/djangojs.mo
 315${PYSITELIB}/cms/locale/ka/LC_MESSAGES/djangojs.po
 316${PYSITELIB}/cms/locale/kk/LC_MESSAGES/django.mo
 317${PYSITELIB}/cms/locale/kk/LC_MESSAGES/django.po
 318${PYSITELIB}/cms/locale/kk/LC_MESSAGES/djangojs.mo
 319${PYSITELIB}/cms/locale/kk/LC_MESSAGES/djangojs.po
 320${PYSITELIB}/cms/locale/km/LC_MESSAGES/django.mo
 321${PYSITELIB}/cms/locale/km/LC_MESSAGES/django.po
 322${PYSITELIB}/cms/locale/km/LC_MESSAGES/djangojs.mo
 323${PYSITELIB}/cms/locale/km/LC_MESSAGES/djangojs.po
 324${PYSITELIB}/cms/locale/ko/LC_MESSAGES/django.mo
 325${PYSITELIB}/cms/locale/ko/LC_MESSAGES/django.po
 326${PYSITELIB}/cms/locale/ko/LC_MESSAGES/djangojs.mo
 327${PYSITELIB}/cms/locale/ko/LC_MESSAGES/djangojs.po
174${PYSITELIB}/cms/locale/ko_KR/LC_MESSAGES/django.mo 328${PYSITELIB}/cms/locale/ko_KR/LC_MESSAGES/django.mo
175${PYSITELIB}/cms/locale/ko_KR/LC_MESSAGES/django.po 329${PYSITELIB}/cms/locale/ko_KR/LC_MESSAGES/django.po
176${PYSITELIB}/cms/locale/ko_KR/LC_MESSAGES/djangojs.mo 330${PYSITELIB}/cms/locale/ko_KR/LC_MESSAGES/djangojs.mo
177${PYSITELIB}/cms/locale/ko_KR/LC_MESSAGES/djangojs.po 331${PYSITELIB}/cms/locale/ko_KR/LC_MESSAGES/djangojs.po
 332${PYSITELIB}/cms/locale/ku_IQ/LC_MESSAGES/django.mo
 333${PYSITELIB}/cms/locale/ku_IQ/LC_MESSAGES/django.po
 334${PYSITELIB}/cms/locale/ku_IQ/LC_MESSAGES/djangojs.mo
 335${PYSITELIB}/cms/locale/ku_IQ/LC_MESSAGES/djangojs.po
 336${PYSITELIB}/cms/locale/ky/LC_MESSAGES/django.mo
 337${PYSITELIB}/cms/locale/ky/LC_MESSAGES/django.po
 338${PYSITELIB}/cms/locale/ky/LC_MESSAGES/djangojs.mo
 339${PYSITELIB}/cms/locale/ky/LC_MESSAGES/djangojs.po
178${PYSITELIB}/cms/locale/lt/LC_MESSAGES/django.mo 340${PYSITELIB}/cms/locale/lt/LC_MESSAGES/django.mo
179${PYSITELIB}/cms/locale/lt/LC_MESSAGES/django.po 341${PYSITELIB}/cms/locale/lt/LC_MESSAGES/django.po
180${PYSITELIB}/cms/locale/lt/LC_MESSAGES/djangojs.mo 342${PYSITELIB}/cms/locale/lt/LC_MESSAGES/djangojs.mo
181${PYSITELIB}/cms/locale/lt/LC_MESSAGES/djangojs.po 343${PYSITELIB}/cms/locale/lt/LC_MESSAGES/djangojs.po
 344${PYSITELIB}/cms/locale/lt_LT/LC_MESSAGES/django.mo
 345${PYSITELIB}/cms/locale/lt_LT/LC_MESSAGES/django.po
 346${PYSITELIB}/cms/locale/lt_LT/LC_MESSAGES/djangojs.mo
 347${PYSITELIB}/cms/locale/lt_LT/LC_MESSAGES/djangojs.po
 348${PYSITELIB}/cms/locale/lv/LC_MESSAGES/django.mo
 349${PYSITELIB}/cms/locale/lv/LC_MESSAGES/django.po
 350${PYSITELIB}/cms/locale/lv/LC_MESSAGES/djangojs.mo
 351${PYSITELIB}/cms/locale/lv/LC_MESSAGES/djangojs.po
 352${PYSITELIB}/cms/locale/ml/LC_MESSAGES/django.mo
 353${PYSITELIB}/cms/locale/ml/LC_MESSAGES/django.po
 354${PYSITELIB}/cms/locale/ml/LC_MESSAGES/djangojs.mo
 355${PYSITELIB}/cms/locale/ml/LC_MESSAGES/djangojs.po
 356${PYSITELIB}/cms/locale/mn/LC_MESSAGES/django.mo
 357${PYSITELIB}/cms/locale/mn/LC_MESSAGES/django.po
 358${PYSITELIB}/cms/locale/mn/LC_MESSAGES/djangojs.mo
 359${PYSITELIB}/cms/locale/mn/LC_MESSAGES/djangojs.po
 360${PYSITELIB}/cms/locale/mn_MN/LC_MESSAGES/django.mo
 361${PYSITELIB}/cms/locale/mn_MN/LC_MESSAGES/django.po
 362${PYSITELIB}/cms/locale/mn_MN/LC_MESSAGES/djangojs.mo
 363${PYSITELIB}/cms/locale/mn_MN/LC_MESSAGES/djangojs.po
 364${PYSITELIB}/cms/locale/ms/LC_MESSAGES/django.mo
 365${PYSITELIB}/cms/locale/ms/LC_MESSAGES/django.po
 366${PYSITELIB}/cms/locale/ms/LC_MESSAGES/djangojs.mo
 367${PYSITELIB}/cms/locale/ms/LC_MESSAGES/djangojs.po
 368${PYSITELIB}/cms/locale/mt/LC_MESSAGES/django.mo
 369${PYSITELIB}/cms/locale/mt/LC_MESSAGES/django.po
 370${PYSITELIB}/cms/locale/mt/LC_MESSAGES/djangojs.mo
 371${PYSITELIB}/cms/locale/mt/LC_MESSAGES/djangojs.po
182${PYSITELIB}/cms/locale/nb/LC_MESSAGES/django.mo 372${PYSITELIB}/cms/locale/nb/LC_MESSAGES/django.mo
183${PYSITELIB}/cms/locale/nb/LC_MESSAGES/django.po 373${PYSITELIB}/cms/locale/nb/LC_MESSAGES/django.po
184${PYSITELIB}/cms/locale/nb/LC_MESSAGES/djangojs.mo 374${PYSITELIB}/cms/locale/nb/LC_MESSAGES/djangojs.mo
185${PYSITELIB}/cms/locale/nb/LC_MESSAGES/djangojs.po 375${PYSITELIB}/cms/locale/nb/LC_MESSAGES/djangojs.po
186${PYSITELIB}/cms/locale/nl/LC_MESSAGES/django.mo 376${PYSITELIB}/cms/locale/nl/LC_MESSAGES/django.mo
187${PYSITELIB}/cms/locale/nl/LC_MESSAGES/django.po 377${PYSITELIB}/cms/locale/nl/LC_MESSAGES/django.po
188${PYSITELIB}/cms/locale/nl/LC_MESSAGES/djangojs.mo 378${PYSITELIB}/cms/locale/nl/LC_MESSAGES/djangojs.mo
189${PYSITELIB}/cms/locale/nl/LC_MESSAGES/djangojs.po 379${PYSITELIB}/cms/locale/nl/LC_MESSAGES/djangojs.po
 380${PYSITELIB}/cms/locale/no/LC_MESSAGES/django.mo
 381${PYSITELIB}/cms/locale/no/LC_MESSAGES/django.po
 382${PYSITELIB}/cms/locale/no/LC_MESSAGES/djangojs.mo
 383${PYSITELIB}/cms/locale/no/LC_MESSAGES/djangojs.po
 384${PYSITELIB}/cms/locale/pap/LC_MESSAGES/django.mo
 385${PYSITELIB}/cms/locale/pap/LC_MESSAGES/django.po
 386${PYSITELIB}/cms/locale/pap/LC_MESSAGES/djangojs.mo
 387${PYSITELIB}/cms/locale/pap/LC_MESSAGES/djangojs.po
190${PYSITELIB}/cms/locale/pl/LC_MESSAGES/django.mo 388${PYSITELIB}/cms/locale/pl/LC_MESSAGES/django.mo
191${PYSITELIB}/cms/locale/pl/LC_MESSAGES/django.po 389${PYSITELIB}/cms/locale/pl/LC_MESSAGES/django.po
192${PYSITELIB}/cms/locale/pl/LC_MESSAGES/djangojs.mo 390${PYSITELIB}/cms/locale/pl/LC_MESSAGES/djangojs.mo
193${PYSITELIB}/cms/locale/pl/LC_MESSAGES/djangojs.po 391${PYSITELIB}/cms/locale/pl/LC_MESSAGES/djangojs.po
194${PYSITELIB}/cms/locale/pt/LC_MESSAGES/django.mo 392${PYSITELIB}/cms/locale/pt/LC_MESSAGES/django.mo
195${PYSITELIB}/cms/locale/pt/LC_MESSAGES/django.po 393${PYSITELIB}/cms/locale/pt/LC_MESSAGES/django.po
196${PYSITELIB}/cms/locale/pt/LC_MESSAGES/djangojs.mo 394${PYSITELIB}/cms/locale/pt/LC_MESSAGES/djangojs.mo
197${PYSITELIB}/cms/locale/pt/LC_MESSAGES/djangojs.po 395${PYSITELIB}/cms/locale/pt/LC_MESSAGES/djangojs.po
198${PYSITELIB}/cms/locale/pt_BR/LC_MESSAGES/django.mo 396${PYSITELIB}/cms/locale/pt_BR/LC_MESSAGES/django.mo
199${PYSITELIB}/cms/locale/pt_BR/LC_MESSAGES/django.po 397${PYSITELIB}/cms/locale/pt_BR/LC_MESSAGES/django.po
200${PYSITELIB}/cms/locale/pt_BR/LC_MESSAGES/djangojs.mo 398${PYSITELIB}/cms/locale/pt_BR/LC_MESSAGES/djangojs.mo
201${PYSITELIB}/cms/locale/pt_BR/LC_MESSAGES/djangojs.po 399${PYSITELIB}/cms/locale/pt_BR/LC_MESSAGES/djangojs.po
 400${PYSITELIB}/cms/locale/pt_PT/LC_MESSAGES/django.mo
 401${PYSITELIB}/cms/locale/pt_PT/LC_MESSAGES/django.po
 402${PYSITELIB}/cms/locale/pt_PT/LC_MESSAGES/djangojs.mo
 403${PYSITELIB}/cms/locale/pt_PT/LC_MESSAGES/djangojs.po
 404${PYSITELIB}/cms/locale/ro/LC_MESSAGES/django.mo
 405${PYSITELIB}/cms/locale/ro/LC_MESSAGES/django.po
 406${PYSITELIB}/cms/locale/ro/LC_MESSAGES/djangojs.mo
 407${PYSITELIB}/cms/locale/ro/LC_MESSAGES/djangojs.po
 408${PYSITELIB}/cms/locale/ro_RO/LC_MESSAGES/django.mo
 409${PYSITELIB}/cms/locale/ro_RO/LC_MESSAGES/django.po
 410${PYSITELIB}/cms/locale/ro_RO/LC_MESSAGES/djangojs.mo
 411${PYSITELIB}/cms/locale/ro_RO/LC_MESSAGES/djangojs.po
202${PYSITELIB}/cms/locale/ru/LC_MESSAGES/django.mo 412${PYSITELIB}/cms/locale/ru/LC_MESSAGES/django.mo
203${PYSITELIB}/cms/locale/ru/LC_MESSAGES/django.po 413${PYSITELIB}/cms/locale/ru/LC_MESSAGES/django.po
204${PYSITELIB}/cms/locale/ru/LC_MESSAGES/djangojs.mo 414${PYSITELIB}/cms/locale/ru/LC_MESSAGES/djangojs.mo
205${PYSITELIB}/cms/locale/ru/LC_MESSAGES/djangojs.po 415${PYSITELIB}/cms/locale/ru/LC_MESSAGES/djangojs.po
 416${PYSITELIB}/cms/locale/ru_RU/LC_MESSAGES/django.mo
 417${PYSITELIB}/cms/locale/ru_RU/LC_MESSAGES/django.po
 418${PYSITELIB}/cms/locale/ru_RU/LC_MESSAGES/djangojs.mo
 419${PYSITELIB}/cms/locale/ru_RU/LC_MESSAGES/djangojs.po
 420${PYSITELIB}/cms/locale/sk/LC_MESSAGES/django.mo
 421${PYSITELIB}/cms/locale/sk/LC_MESSAGES/django.po
 422${PYSITELIB}/cms/locale/sk/LC_MESSAGES/djangojs.mo
 423${PYSITELIB}/cms/locale/sk/LC_MESSAGES/djangojs.po
 424${PYSITELIB}/cms/locale/sk_SK/LC_MESSAGES/django.mo
 425${PYSITELIB}/cms/locale/sk_SK/LC_MESSAGES/django.po
 426${PYSITELIB}/cms/locale/sk_SK/LC_MESSAGES/djangojs.mo
 427${PYSITELIB}/cms/locale/sk_SK/LC_MESSAGES/djangojs.po
 428${PYSITELIB}/cms/locale/sl/LC_MESSAGES/django.mo
 429${PYSITELIB}/cms/locale/sl/LC_MESSAGES/django.po
 430${PYSITELIB}/cms/locale/sl/LC_MESSAGES/djangojs.mo
 431${PYSITELIB}/cms/locale/sl/LC_MESSAGES/djangojs.po
 432${PYSITELIB}/cms/locale/sl_SI/LC_MESSAGES/django.mo
 433${PYSITELIB}/cms/locale/sl_SI/LC_MESSAGES/django.po
 434${PYSITELIB}/cms/locale/sl_SI/LC_MESSAGES/djangojs.mo
 435${PYSITELIB}/cms/locale/sl_SI/LC_MESSAGES/djangojs.po
206${PYSITELIB}/cms/locale/sq/LC_MESSAGES/django.mo 436${PYSITELIB}/cms/locale/sq/LC_MESSAGES/django.mo
207${PYSITELIB}/cms/locale/sq/LC_MESSAGES/django.po 437${PYSITELIB}/cms/locale/sq/LC_MESSAGES/django.po
208${PYSITELIB}/cms/locale/sq/LC_MESSAGES/djangojs.mo 438${PYSITELIB}/cms/locale/sq/LC_MESSAGES/djangojs.mo
209${PYSITELIB}/cms/locale/sq/LC_MESSAGES/djangojs.po 439${PYSITELIB}/cms/locale/sq/LC_MESSAGES/djangojs.po
 440${PYSITELIB}/cms/locale/sq_AL/LC_MESSAGES/django.mo
 441${PYSITELIB}/cms/locale/sq_AL/LC_MESSAGES/django.po
 442${PYSITELIB}/cms/locale/sq_AL/LC_MESSAGES/djangojs.mo
 443${PYSITELIB}/cms/locale/sq_AL/LC_MESSAGES/djangojs.po
 444${PYSITELIB}/cms/locale/sr/LC_MESSAGES/django.mo
 445${PYSITELIB}/cms/locale/sr/LC_MESSAGES/django.po
 446${PYSITELIB}/cms/locale/sr/LC_MESSAGES/djangojs.mo
 447${PYSITELIB}/cms/locale/sr/LC_MESSAGES/djangojs.po
 448${PYSITELIB}/cms/locale/sr@latin/LC_MESSAGES/django.mo
 449${PYSITELIB}/cms/locale/sr@latin/LC_MESSAGES/django.po
 450${PYSITELIB}/cms/locale/sr@latin/LC_MESSAGES/djangojs.mo
 451${PYSITELIB}/cms/locale/sr@latin/LC_MESSAGES/djangojs.po
210${PYSITELIB}/cms/locale/sv/LC_MESSAGES/django.mo 452${PYSITELIB}/cms/locale/sv/LC_MESSAGES/django.mo
211${PYSITELIB}/cms/locale/sv/LC_MESSAGES/django.po 453${PYSITELIB}/cms/locale/sv/LC_MESSAGES/django.po
212${PYSITELIB}/cms/locale/sv/LC_MESSAGES/djangojs.mo 454${PYSITELIB}/cms/locale/sv/LC_MESSAGES/djangojs.mo
213${PYSITELIB}/cms/locale/sv/LC_MESSAGES/djangojs.po 455${PYSITELIB}/cms/locale/sv/LC_MESSAGES/djangojs.po
214${PYSITELIB}/cms/locale/ta/LC_MESSAGES/django.mo 456${PYSITELIB}/cms/locale/ta/LC_MESSAGES/django.mo
215${PYSITELIB}/cms/locale/ta/LC_MESSAGES/django.po 457${PYSITELIB}/cms/locale/ta/LC_MESSAGES/django.po
216${PYSITELIB}/cms/locale/ta/LC_MESSAGES/djangojs.mo 458${PYSITELIB}/cms/locale/ta/LC_MESSAGES/djangojs.mo
217${PYSITELIB}/cms/locale/ta/LC_MESSAGES/djangojs.po 459${PYSITELIB}/cms/locale/ta/LC_MESSAGES/djangojs.po
 460${PYSITELIB}/cms/locale/th/LC_MESSAGES/django.mo
 461${PYSITELIB}/cms/locale/th/LC_MESSAGES/django.po
 462${PYSITELIB}/cms/locale/th/LC_MESSAGES/djangojs.mo
 463${PYSITELIB}/cms/locale/th/LC_MESSAGES/djangojs.po
 464${PYSITELIB}/cms/locale/th_TH/LC_MESSAGES/django.mo
 465${PYSITELIB}/cms/locale/th_TH/LC_MESSAGES/django.po
 466${PYSITELIB}/cms/locale/th_TH/LC_MESSAGES/djangojs.mo
 467${PYSITELIB}/cms/locale/th_TH/LC_MESSAGES/djangojs.po
 468${PYSITELIB}/cms/locale/tlh/LC_MESSAGES/django.mo
 469${PYSITELIB}/cms/locale/tlh/LC_MESSAGES/django.po
 470${PYSITELIB}/cms/locale/tlh/LC_MESSAGES/djangojs.mo
 471${PYSITELIB}/cms/locale/tlh/LC_MESSAGES/djangojs.po
218${PYSITELIB}/cms/locale/tr/LC_MESSAGES/django.mo 472${PYSITELIB}/cms/locale/tr/LC_MESSAGES/django.mo
219${PYSITELIB}/cms/locale/tr/LC_MESSAGES/django.po 473${PYSITELIB}/cms/locale/tr/LC_MESSAGES/django.po
220${PYSITELIB}/cms/locale/tr/LC_MESSAGES/djangojs.mo 474${PYSITELIB}/cms/locale/tr/LC_MESSAGES/djangojs.mo
221${PYSITELIB}/cms/locale/tr/LC_MESSAGES/djangojs.po 475${PYSITELIB}/cms/locale/tr/LC_MESSAGES/djangojs.po
 476${PYSITELIB}/cms/locale/tr_TR/LC_MESSAGES/django.mo
 477${PYSITELIB}/cms/locale/tr_TR/LC_MESSAGES/django.po
 478${PYSITELIB}/cms/locale/tr_TR/LC_MESSAGES/djangojs.mo
 479${PYSITELIB}/cms/locale/tr_TR/LC_MESSAGES/djangojs.po
 480${PYSITELIB}/cms/locale/ug/LC_MESSAGES/django.mo
 481${PYSITELIB}/cms/locale/ug/LC_MESSAGES/django.po
 482${PYSITELIB}/cms/locale/ug/LC_MESSAGES/djangojs.mo
 483${PYSITELIB}/cms/locale/ug/LC_MESSAGES/djangojs.po
222${PYSITELIB}/cms/locale/uk/LC_MESSAGES/django.mo 484${PYSITELIB}/cms/locale/uk/LC_MESSAGES/django.mo
223${PYSITELIB}/cms/locale/uk/LC_MESSAGES/django.po 485${PYSITELIB}/cms/locale/uk/LC_MESSAGES/django.po
224${PYSITELIB}/cms/locale/uk/LC_MESSAGES/djangojs.mo 486${PYSITELIB}/cms/locale/uk/LC_MESSAGES/djangojs.mo
225${PYSITELIB}/cms/locale/uk/LC_MESSAGES/djangojs.po 487${PYSITELIB}/cms/locale/uk/LC_MESSAGES/djangojs.po
 488${PYSITELIB}/cms/locale/ur/LC_MESSAGES/django.mo
 489${PYSITELIB}/cms/locale/ur/LC_MESSAGES/django.po
 490${PYSITELIB}/cms/locale/ur/LC_MESSAGES/djangojs.mo
 491${PYSITELIB}/cms/locale/ur/LC_MESSAGES/djangojs.po
 492${PYSITELIB}/cms/locale/vi/LC_MESSAGES/django.mo
 493${PYSITELIB}/cms/locale/vi/LC_MESSAGES/django.po
 494${PYSITELIB}/cms/locale/vi/LC_MESSAGES/djangojs.mo
 495${PYSITELIB}/cms/locale/vi/LC_MESSAGES/djangojs.po
 496${PYSITELIB}/cms/locale/vi_VN/LC_MESSAGES/django.mo
 497${PYSITELIB}/cms/locale/vi_VN/LC_MESSAGES/django.po
 498${PYSITELIB}/cms/locale/vi_VN/LC_MESSAGES/djangojs.mo
 499${PYSITELIB}/cms/locale/vi_VN/LC_MESSAGES/djangojs.po
 500${PYSITELIB}/cms/locale/zh-Hans/LC_MESSAGES/django.mo
 501${PYSITELIB}/cms/locale/zh-Hans/LC_MESSAGES/django.po
 502${PYSITELIB}/cms/locale/zh-Hans/LC_MESSAGES/djangojs.mo
 503${PYSITELIB}/cms/locale/zh-Hans/LC_MESSAGES/djangojs.po
 504${PYSITELIB}/cms/locale/zh/LC_MESSAGES/django.mo
 505${PYSITELIB}/cms/locale/zh/LC_MESSAGES/django.po
 506${PYSITELIB}/cms/locale/zh/LC_MESSAGES/djangojs.mo
 507${PYSITELIB}/cms/locale/zh/LC_MESSAGES/djangojs.po
 508${PYSITELIB}/cms/locale/zh_CN.GB2312/LC_MESSAGES/django.mo
 509${PYSITELIB}/cms/locale/zh_CN.GB2312/LC_MESSAGES/django.po
 510${PYSITELIB}/cms/locale/zh_CN.GB2312/LC_MESSAGES/djangojs.mo
 511${PYSITELIB}/cms/locale/zh_CN.GB2312/LC_MESSAGES/djangojs.po
226${PYSITELIB}/cms/locale/zh_CN/LC_MESSAGES/django.mo 512${PYSITELIB}/cms/locale/zh_CN/LC_MESSAGES/django.mo
227${PYSITELIB}/cms/locale/zh_CN/LC_MESSAGES/django.po 513${PYSITELIB}/cms/locale/zh_CN/LC_MESSAGES/django.po
228${PYSITELIB}/cms/locale/zh_CN/LC_MESSAGES/djangojs.mo 514${PYSITELIB}/cms/locale/zh_CN/LC_MESSAGES/djangojs.mo
229${PYSITELIB}/cms/locale/zh_CN/LC_MESSAGES/djangojs.po 515${PYSITELIB}/cms/locale/zh_CN/LC_MESSAGES/djangojs.po
230${PYSITELIB}/cms/locale/zh_TW/LC_MESSAGES/django.mo 516${PYSITELIB}/cms/locale/zh_TW/LC_MESSAGES/django.mo
231${PYSITELIB}/cms/locale/zh_TW/LC_MESSAGES/django.po 517${PYSITELIB}/cms/locale/zh_TW/LC_MESSAGES/django.po
232${PYSITELIB}/cms/locale/zh_TW/LC_MESSAGES/djangojs.mo 518${PYSITELIB}/cms/locale/zh_TW/LC_MESSAGES/djangojs.mo
233${PYSITELIB}/cms/locale/zh_TW/LC_MESSAGES/djangojs.po 519${PYSITELIB}/cms/locale/zh_TW/LC_MESSAGES/djangojs.po
234${PYSITELIB}/cms/management/__init__.py 520${PYSITELIB}/cms/management/__init__.py
235${PYSITELIB}/cms/management/__init__.pyc 521${PYSITELIB}/cms/management/__init__.pyc
236${PYSITELIB}/cms/management/__init__.pyo 522${PYSITELIB}/cms/management/__init__.pyo
237${PYSITELIB}/cms/management/commands/__init__.py 523${PYSITELIB}/cms/management/commands/__init__.py
238${PYSITELIB}/cms/management/commands/__init__.pyc 524${PYSITELIB}/cms/management/commands/__init__.pyc
239${PYSITELIB}/cms/management/commands/__init__.pyo 525${PYSITELIB}/cms/management/commands/__init__.pyo
240${PYSITELIB}/cms/management/commands/cms.py 526${PYSITELIB}/cms/management/commands/cms.py
241${PYSITELIB}/cms/management/commands/cms.pyc 527${PYSITELIB}/cms/management/commands/cms.pyc
242${PYSITELIB}/cms/management/commands/cms.pyo 528${PYSITELIB}/cms/management/commands/cms.pyo
 529${PYSITELIB}/cms/management/commands/startcmsproject.py
 530${PYSITELIB}/cms/management/commands/startcmsproject.pyc
 531${PYSITELIB}/cms/management/commands/startcmsproject.pyo
243${PYSITELIB}/cms/management/commands/subcommands/__init__.py 532${PYSITELIB}/cms/management/commands/subcommands/__init__.py
244${PYSITELIB}/cms/management/commands/subcommands/__init__.pyc 533${PYSITELIB}/cms/management/commands/subcommands/__init__.pyc
245${PYSITELIB}/cms/management/commands/subcommands/__init__.pyo 534${PYSITELIB}/cms/management/commands/subcommands/__init__.pyo
246${PYSITELIB}/cms/management/commands/subcommands/base.py 535${PYSITELIB}/cms/management/commands/subcommands/base.py
247${PYSITELIB}/cms/management/commands/subcommands/base.pyc 536${PYSITELIB}/cms/management/commands/subcommands/base.pyc
248${PYSITELIB}/cms/management/commands/subcommands/base.pyo 537${PYSITELIB}/cms/management/commands/subcommands/base.pyo
249${PYSITELIB}/cms/management/commands/subcommands/check.py 538${PYSITELIB}/cms/management/commands/subcommands/check.py
250${PYSITELIB}/cms/management/commands/subcommands/check.pyc 539${PYSITELIB}/cms/management/commands/subcommands/check.pyc
251${PYSITELIB}/cms/management/commands/subcommands/check.pyo 540${PYSITELIB}/cms/management/commands/subcommands/check.pyo
252${PYSITELIB}/cms/management/commands/subcommands/copy.py 541${PYSITELIB}/cms/management/commands/subcommands/copy.py
253${PYSITELIB}/cms/management/commands/subcommands/copy.pyc 542${PYSITELIB}/cms/management/commands/subcommands/copy.pyc
254${PYSITELIB}/cms/management/commands/subcommands/copy.pyo 543${PYSITELIB}/cms/management/commands/subcommands/copy.pyo
255${PYSITELIB}/cms/management/commands/subcommands/delete_orphaned_plugins.py 544${PYSITELIB}/cms/management/commands/subcommands/delete_orphaned_plugins.py
256${PYSITELIB}/cms/management/commands/subcommands/delete_orphaned_plugins.pyc 545${PYSITELIB}/cms/management/commands/subcommands/delete_orphaned_plugins.pyc
257${PYSITELIB}/cms/management/commands/subcommands/delete_orphaned_plugins.pyo 546${PYSITELIB}/cms/management/commands/subcommands/delete_orphaned_plugins.pyo
258${PYSITELIB}/cms/management/commands/subcommands/list.py 547${PYSITELIB}/cms/management/commands/subcommands/list.py
259${PYSITELIB}/cms/management/commands/subcommands/list.pyc 548${PYSITELIB}/cms/management/commands/subcommands/list.pyc
260${PYSITELIB}/cms/management/commands/subcommands/list.pyo 549${PYSITELIB}/cms/management/commands/subcommands/list.pyo
261${PYSITELIB}/cms/management/commands/subcommands/publisher_publish.py 
262${PYSITELIB}/cms/management/commands/subcommands/publisher_publish.pyc 
263${PYSITELIB}/cms/management/commands/subcommands/publisher_publish.pyo 
264${PYSITELIB}/cms/management/commands/subcommands/tree.py 550${PYSITELIB}/cms/management/commands/subcommands/tree.py
265${PYSITELIB}/cms/management/commands/subcommands/tree.pyc 551${PYSITELIB}/cms/management/commands/subcommands/tree.pyc
266${PYSITELIB}/cms/management/commands/subcommands/tree.pyo 552${PYSITELIB}/cms/management/commands/subcommands/tree.pyo
267${PYSITELIB}/cms/management/commands/subcommands/uninstall.py 553${PYSITELIB}/cms/management/commands/subcommands/uninstall.py
268${PYSITELIB}/cms/management/commands/subcommands/uninstall.pyc 554${PYSITELIB}/cms/management/commands/subcommands/uninstall.pyc
269${PYSITELIB}/cms/management/commands/subcommands/uninstall.pyo 555${PYSITELIB}/cms/management/commands/subcommands/uninstall.pyo
 556${PYSITELIB}/cms/management/djangocms.py
 557${PYSITELIB}/cms/management/djangocms.pyc
 558${PYSITELIB}/cms/management/djangocms.pyo
270${PYSITELIB}/cms/menu_bases.py 559${PYSITELIB}/cms/menu_bases.py
271${PYSITELIB}/cms/menu_bases.pyc 560${PYSITELIB}/cms/menu_bases.pyc
272${PYSITELIB}/cms/menu_bases.pyo 561${PYSITELIB}/cms/menu_bases.pyo
273${PYSITELIB}/cms/middleware/__init__.py 562${PYSITELIB}/cms/middleware/__init__.py
274${PYSITELIB}/cms/middleware/__init__.pyc 563${PYSITELIB}/cms/middleware/__init__.pyc
275${PYSITELIB}/cms/middleware/__init__.pyo 564${PYSITELIB}/cms/middleware/__init__.pyo
276${PYSITELIB}/cms/middleware/language.py 565${PYSITELIB}/cms/middleware/language.py
277${PYSITELIB}/cms/middleware/language.pyc 566${PYSITELIB}/cms/middleware/language.pyc
278${PYSITELIB}/cms/middleware/language.pyo 567${PYSITELIB}/cms/middleware/language.pyo
279${PYSITELIB}/cms/middleware/page.py 568${PYSITELIB}/cms/middleware/page.py
280${PYSITELIB}/cms/middleware/page.pyc 569${PYSITELIB}/cms/middleware/page.pyc
281${PYSITELIB}/cms/middleware/page.pyo 570${PYSITELIB}/cms/middleware/page.pyo
282${PYSITELIB}/cms/middleware/toolbar.py 571${PYSITELIB}/cms/middleware/toolbar.py
@@ -347,171 +636,224 @@ ${PYSITELIB}/cms/migrations/0018_create_ @@ -347,171 +636,224 @@ ${PYSITELIB}/cms/migrations/0018_create_
347${PYSITELIB}/cms/migrations/0018_create_pagenode.pyo 636${PYSITELIB}/cms/migrations/0018_create_pagenode.pyo
348${PYSITELIB}/cms/migrations/0019_set_pagenode.py 637${PYSITELIB}/cms/migrations/0019_set_pagenode.py
349${PYSITELIB}/cms/migrations/0019_set_pagenode.pyc 638${PYSITELIB}/cms/migrations/0019_set_pagenode.pyc
350${PYSITELIB}/cms/migrations/0019_set_pagenode.pyo 639${PYSITELIB}/cms/migrations/0019_set_pagenode.pyo
351${PYSITELIB}/cms/migrations/0020_old_tree_cleanup.py 640${PYSITELIB}/cms/migrations/0020_old_tree_cleanup.py
352${PYSITELIB}/cms/migrations/0020_old_tree_cleanup.pyc 641${PYSITELIB}/cms/migrations/0020_old_tree_cleanup.pyc
353${PYSITELIB}/cms/migrations/0020_old_tree_cleanup.pyo 642${PYSITELIB}/cms/migrations/0020_old_tree_cleanup.pyo
354${PYSITELIB}/cms/migrations/0021_auto_20180507_1432.py 643${PYSITELIB}/cms/migrations/0021_auto_20180507_1432.py
355${PYSITELIB}/cms/migrations/0021_auto_20180507_1432.pyc 644${PYSITELIB}/cms/migrations/0021_auto_20180507_1432.pyc
356${PYSITELIB}/cms/migrations/0021_auto_20180507_1432.pyo 645${PYSITELIB}/cms/migrations/0021_auto_20180507_1432.pyo
357${PYSITELIB}/cms/migrations/0022_auto_20180620_1551.py 646${PYSITELIB}/cms/migrations/0022_auto_20180620_1551.py
358${PYSITELIB}/cms/migrations/0022_auto_20180620_1551.pyc 647${PYSITELIB}/cms/migrations/0022_auto_20180620_1551.pyc
359${PYSITELIB}/cms/migrations/0022_auto_20180620_1551.pyo 648${PYSITELIB}/cms/migrations/0022_auto_20180620_1551.pyo
 649${PYSITELIB}/cms/migrations/0023_placeholder_source_field.py
 650${PYSITELIB}/cms/migrations/0023_placeholder_source_field.pyc
 651${PYSITELIB}/cms/migrations/0023_placeholder_source_field.pyo
 652${PYSITELIB}/cms/migrations/0024_set_plugin_absolute_position.py
 653${PYSITELIB}/cms/migrations/0024_set_plugin_absolute_position.pyc
 654${PYSITELIB}/cms/migrations/0024_set_plugin_absolute_position.pyo
 655${PYSITELIB}/cms/migrations/0025_remove_plugin_tree_fields.py
 656${PYSITELIB}/cms/migrations/0025_remove_plugin_tree_fields.pyc
 657${PYSITELIB}/cms/migrations/0025_remove_plugin_tree_fields.pyo
 658${PYSITELIB}/cms/migrations/0026_title_placeholders.py
 659${PYSITELIB}/cms/migrations/0026_title_placeholders.pyc
 660${PYSITELIB}/cms/migrations/0026_title_placeholders.pyo
 661${PYSITELIB}/cms/migrations/0027_title_placeholders_data_migration.py
 662${PYSITELIB}/cms/migrations/0027_title_placeholders_data_migration.pyc
 663${PYSITELIB}/cms/migrations/0027_title_placeholders_data_migration.pyo
 664${PYSITELIB}/cms/migrations/0028_remove_page_placeholders.py
 665${PYSITELIB}/cms/migrations/0028_remove_page_placeholders.pyc
 666${PYSITELIB}/cms/migrations/0028_remove_page_placeholders.pyo
 667${PYSITELIB}/cms/migrations/0029_create_title_fields_and_url_model.py
 668${PYSITELIB}/cms/migrations/0029_create_title_fields_and_url_model.pyc
 669${PYSITELIB}/cms/migrations/0029_create_title_fields_and_url_model.pyo
 670${PYSITELIB}/cms/migrations/0030_auto_20180810_0629.py
 671${PYSITELIB}/cms/migrations/0030_auto_20180810_0629.pyc
 672${PYSITELIB}/cms/migrations/0030_auto_20180810_0629.pyo
 673${PYSITELIB}/cms/migrations/0031_remove_fields.py
 674${PYSITELIB}/cms/migrations/0031_remove_fields.pyc
 675${PYSITELIB}/cms/migrations/0031_remove_fields.pyo
 676${PYSITELIB}/cms/migrations/0032_remove_title_to_pagecontent.py
 677${PYSITELIB}/cms/migrations/0032_remove_title_to_pagecontent.pyc
 678${PYSITELIB}/cms/migrations/0032_remove_title_to_pagecontent.pyo
 679${PYSITELIB}/cms/migrations/0033_placeholder_source_data_migration.py
 680${PYSITELIB}/cms/migrations/0033_placeholder_source_data_migration.pyc
 681${PYSITELIB}/cms/migrations/0033_placeholder_source_data_migration.pyo
 682${PYSITELIB}/cms/migrations/0034_remove_pagecontent_placeholders.py
 683${PYSITELIB}/cms/migrations/0034_remove_pagecontent_placeholders.pyc
 684${PYSITELIB}/cms/migrations/0034_remove_pagecontent_placeholders.pyo
 685${PYSITELIB}/cms/migrations/0035_auto_20230822_2208.py
 686${PYSITELIB}/cms/migrations/0035_auto_20230822_2208.pyc
 687${PYSITELIB}/cms/migrations/0035_auto_20230822_2208.pyo
360${PYSITELIB}/cms/migrations/__init__.py 688${PYSITELIB}/cms/migrations/__init__.py
361${PYSITELIB}/cms/migrations/__init__.pyc 689${PYSITELIB}/cms/migrations/__init__.pyc
362${PYSITELIB}/cms/migrations/__init__.pyo 690${PYSITELIB}/cms/migrations/__init__.pyo
363${PYSITELIB}/cms/models/__init__.py 691${PYSITELIB}/cms/models/__init__.py
364${PYSITELIB}/cms/models/__init__.pyc 692${PYSITELIB}/cms/models/__init__.pyc
365${PYSITELIB}/cms/models/__init__.pyo 693${PYSITELIB}/cms/models/__init__.pyo
366${PYSITELIB}/cms/models/aliaspluginmodel.py 694${PYSITELIB}/cms/models/aliaspluginmodel.py
367${PYSITELIB}/cms/models/aliaspluginmodel.pyc 695${PYSITELIB}/cms/models/aliaspluginmodel.pyc
368${PYSITELIB}/cms/models/aliaspluginmodel.pyo 696${PYSITELIB}/cms/models/aliaspluginmodel.pyo
369${PYSITELIB}/cms/models/apphooks_reload.py 697${PYSITELIB}/cms/models/apphooks_reload.py
370${PYSITELIB}/cms/models/apphooks_reload.pyc 698${PYSITELIB}/cms/models/apphooks_reload.pyc
371${PYSITELIB}/cms/models/apphooks_reload.pyo 699${PYSITELIB}/cms/models/apphooks_reload.pyo
 700${PYSITELIB}/cms/models/contentmodels.py
 701${PYSITELIB}/cms/models/contentmodels.pyc
 702${PYSITELIB}/cms/models/contentmodels.pyo
372${PYSITELIB}/cms/models/fields.py 703${PYSITELIB}/cms/models/fields.py
373${PYSITELIB}/cms/models/fields.pyc 704${PYSITELIB}/cms/models/fields.pyc
374${PYSITELIB}/cms/models/fields.pyo 705${PYSITELIB}/cms/models/fields.pyo
375${PYSITELIB}/cms/models/managers.py 706${PYSITELIB}/cms/models/managers.py
376${PYSITELIB}/cms/models/managers.pyc 707${PYSITELIB}/cms/models/managers.pyc
377${PYSITELIB}/cms/models/managers.pyo 708${PYSITELIB}/cms/models/managers.pyo
378${PYSITELIB}/cms/models/metaclasses.py 
379${PYSITELIB}/cms/models/metaclasses.pyc 
380${PYSITELIB}/cms/models/metaclasses.pyo 
381${PYSITELIB}/cms/models/pagemodel.py 709${PYSITELIB}/cms/models/pagemodel.py
382${PYSITELIB}/cms/models/pagemodel.pyc 710${PYSITELIB}/cms/models/pagemodel.pyc
383${PYSITELIB}/cms/models/pagemodel.pyo 711${PYSITELIB}/cms/models/pagemodel.pyo
384${PYSITELIB}/cms/models/permissionmodels.py 712${PYSITELIB}/cms/models/permissionmodels.py
385${PYSITELIB}/cms/models/permissionmodels.pyc 713${PYSITELIB}/cms/models/permissionmodels.pyc
386${PYSITELIB}/cms/models/permissionmodels.pyo 714${PYSITELIB}/cms/models/permissionmodels.pyo
387${PYSITELIB}/cms/models/placeholdermodel.py 715${PYSITELIB}/cms/models/placeholdermodel.py
388${PYSITELIB}/cms/models/placeholdermodel.pyc 716${PYSITELIB}/cms/models/placeholdermodel.pyc
389${PYSITELIB}/cms/models/placeholdermodel.pyo 717${PYSITELIB}/cms/models/placeholdermodel.pyo
390${PYSITELIB}/cms/models/placeholderpluginmodel.py 718${PYSITELIB}/cms/models/placeholderpluginmodel.py
391${PYSITELIB}/cms/models/placeholderpluginmodel.pyc 719${PYSITELIB}/cms/models/placeholderpluginmodel.pyc
392${PYSITELIB}/cms/models/placeholderpluginmodel.pyo 720${PYSITELIB}/cms/models/placeholderpluginmodel.pyo
393${PYSITELIB}/cms/models/pluginmodel.py 721${PYSITELIB}/cms/models/pluginmodel.py
394${PYSITELIB}/cms/models/pluginmodel.pyc 722${PYSITELIB}/cms/models/pluginmodel.pyc
395${PYSITELIB}/cms/models/pluginmodel.pyo 723${PYSITELIB}/cms/models/pluginmodel.pyo
396${PYSITELIB}/cms/models/query.py 724${PYSITELIB}/cms/models/query.py
397${PYSITELIB}/cms/models/query.pyc 725${PYSITELIB}/cms/models/query.pyc
398${PYSITELIB}/cms/models/query.pyo 726${PYSITELIB}/cms/models/query.pyo
399${PYSITELIB}/cms/models/settingmodels.py 727${PYSITELIB}/cms/models/settingmodels.py
400${PYSITELIB}/cms/models/settingmodels.pyc 728${PYSITELIB}/cms/models/settingmodels.pyc
401${PYSITELIB}/cms/models/settingmodels.pyo 729${PYSITELIB}/cms/models/settingmodels.pyo
402${PYSITELIB}/cms/models/static_placeholder.py 730${PYSITELIB}/cms/models/static_placeholder.py
403${PYSITELIB}/cms/models/static_placeholder.pyc 731${PYSITELIB}/cms/models/static_placeholder.pyc
404${PYSITELIB}/cms/models/static_placeholder.pyo 732${PYSITELIB}/cms/models/static_placeholder.pyo
405${PYSITELIB}/cms/models/titlemodels.py 733${PYSITELIB}/cms/operations/__init__.py
406${PYSITELIB}/cms/models/titlemodels.pyc 734${PYSITELIB}/cms/operations/__init__.pyc
407${PYSITELIB}/cms/models/titlemodels.pyo 735${PYSITELIB}/cms/operations/__init__.pyo
408${PYSITELIB}/cms/operations.py 736${PYSITELIB}/cms/operations/helpers.py
409${PYSITELIB}/cms/operations.pyc 737${PYSITELIB}/cms/operations/helpers.pyc
410${PYSITELIB}/cms/operations.pyo 738${PYSITELIB}/cms/operations/helpers.pyo
411${PYSITELIB}/cms/page_rendering.py 739${PYSITELIB}/cms/page_rendering.py
412${PYSITELIB}/cms/page_rendering.pyc 740${PYSITELIB}/cms/page_rendering.pyc
413${PYSITELIB}/cms/page_rendering.pyo 741${PYSITELIB}/cms/page_rendering.pyo
414${PYSITELIB}/cms/plugin_base.py 742${PYSITELIB}/cms/plugin_base.py
415${PYSITELIB}/cms/plugin_base.pyc 743${PYSITELIB}/cms/plugin_base.pyc
416${PYSITELIB}/cms/plugin_base.pyo 744${PYSITELIB}/cms/plugin_base.pyo
417${PYSITELIB}/cms/plugin_pool.py 745${PYSITELIB}/cms/plugin_pool.py
418${PYSITELIB}/cms/plugin_pool.pyc 746${PYSITELIB}/cms/plugin_pool.pyc
419${PYSITELIB}/cms/plugin_pool.pyo 747${PYSITELIB}/cms/plugin_pool.pyo
420${PYSITELIB}/cms/plugin_processors.py 748${PYSITELIB}/cms/plugin_processors.py
421${PYSITELIB}/cms/plugin_processors.pyc 749${PYSITELIB}/cms/plugin_processors.pyc
422${PYSITELIB}/cms/plugin_processors.pyo 750${PYSITELIB}/cms/plugin_processors.pyo
423${PYSITELIB}/cms/plugin_rendering.py 751${PYSITELIB}/cms/plugin_rendering.py
424${PYSITELIB}/cms/plugin_rendering.pyc 752${PYSITELIB}/cms/plugin_rendering.pyc
425${PYSITELIB}/cms/plugin_rendering.pyo 753${PYSITELIB}/cms/plugin_rendering.pyo
426${PYSITELIB}/cms/publisher/__init__.py 
427${PYSITELIB}/cms/publisher/__init__.pyc 
428${PYSITELIB}/cms/publisher/__init__.pyo 
429${PYSITELIB}/cms/publisher/errors.py 
430${PYSITELIB}/cms/publisher/errors.pyc 
431${PYSITELIB}/cms/publisher/errors.pyo 
432${PYSITELIB}/cms/publisher/manager.py 
433${PYSITELIB}/cms/publisher/manager.pyc 
434${PYSITELIB}/cms/publisher/manager.pyo 
435${PYSITELIB}/cms/publisher/models.py 
436${PYSITELIB}/cms/publisher/models.pyc 
437${PYSITELIB}/cms/publisher/models.pyo 
438${PYSITELIB}/cms/publisher/query.py 
439${PYSITELIB}/cms/publisher/query.pyc 
440${PYSITELIB}/cms/publisher/query.pyo 
441${PYSITELIB}/cms/signals/__init__.py 754${PYSITELIB}/cms/signals/__init__.py
442${PYSITELIB}/cms/signals/__init__.pyc 755${PYSITELIB}/cms/signals/__init__.pyc
443${PYSITELIB}/cms/signals/__init__.pyo 756${PYSITELIB}/cms/signals/__init__.pyo
444${PYSITELIB}/cms/signals/apphook.py 757${PYSITELIB}/cms/signals/apphook.py
445${PYSITELIB}/cms/signals/apphook.pyc 758${PYSITELIB}/cms/signals/apphook.pyc
446${PYSITELIB}/cms/signals/apphook.pyo 759${PYSITELIB}/cms/signals/apphook.pyo
 760${PYSITELIB}/cms/signals/log_entries.py
 761${PYSITELIB}/cms/signals/log_entries.pyc
 762${PYSITELIB}/cms/signals/log_entries.pyo
447${PYSITELIB}/cms/signals/permissions.py 763${PYSITELIB}/cms/signals/permissions.py
448${PYSITELIB}/cms/signals/permissions.pyc 764${PYSITELIB}/cms/signals/permissions.pyc
449${PYSITELIB}/cms/signals/permissions.pyo 765${PYSITELIB}/cms/signals/permissions.pyo
450${PYSITELIB}/cms/sitemaps/__init__.py 766${PYSITELIB}/cms/sitemaps/__init__.py
451${PYSITELIB}/cms/sitemaps/__init__.pyc 767${PYSITELIB}/cms/sitemaps/__init__.pyc
452${PYSITELIB}/cms/sitemaps/__init__.pyo 768${PYSITELIB}/cms/sitemaps/__init__.pyo
453${PYSITELIB}/cms/sitemaps/cms_sitemap.py 769${PYSITELIB}/cms/sitemaps/cms_sitemap.py
454${PYSITELIB}/cms/sitemaps/cms_sitemap.pyc 770${PYSITELIB}/cms/sitemaps/cms_sitemap.pyc
455${PYSITELIB}/cms/sitemaps/cms_sitemap.pyo 771${PYSITELIB}/cms/sitemaps/cms_sitemap.pyo
456${PYSITELIB}/cms/static/cms/css/${PKGVERSION}/cms.base.css 772${PYSITELIB}/cms/static/cms/css/${PKGVERSION}/cms.base.css
457${PYSITELIB}/cms/static/cms/css/${PKGVERSION}/cms.pagetree.css 773${PYSITELIB}/cms/static/cms/css/${PKGVERSION}/cms.pagetree.css
458${PYSITELIB}/cms/static/cms/css/${PKGVERSION}/cms.welcome.css 774${PYSITELIB}/cms/static/cms/css/${PKGVERSION}/cms.welcome.css
459${PYSITELIB}/cms/static/cms/css/${PKGVERSION}/cms.wizard.css 775${PYSITELIB}/cms/static/cms/css/${PKGVERSION}/cms.wizard.css
 776${PYSITELIB}/cms/static/cms/css/4.1.0/cms.admin.css
460${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.eot 777${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.eot
461${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.svg 778${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.svg
462${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.ttf 779${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.ttf
463${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.woff 780${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.woff
464${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.woff2 781${PYSITELIB}/cms/static/cms/fonts/${PKGVERSION}/django-cms-iconfont.woff2
465${PYSITELIB}/cms/static/cms/fonts/src/_template.svgz 782${PYSITELIB}/cms/static/cms/fonts/src/_template.svgz
 783${PYSITELIB}/cms/static/cms/fonts/src/advanced-settings.svg
466${PYSITELIB}/cms/static/cms/fonts/src/alias.svg 784${PYSITELIB}/cms/static/cms/fonts/src/alias.svg
 785${PYSITELIB}/cms/static/cms/fonts/src/apphook.svg
 786${PYSITELIB}/cms/static/cms/fonts/src/archive.svg
467${PYSITELIB}/cms/static/cms/fonts/src/arrow-right.svg 787${PYSITELIB}/cms/static/cms/fonts/src/arrow-right.svg
468${PYSITELIB}/cms/static/cms/fonts/src/arrow-wide.svg 788${PYSITELIB}/cms/static/cms/fonts/src/arrow-wide.svg
469${PYSITELIB}/cms/static/cms/fonts/src/arrow.svg 789${PYSITELIB}/cms/static/cms/fonts/src/arrow.svg
470${PYSITELIB}/cms/static/cms/fonts/src/bin.svg 790${PYSITELIB}/cms/static/cms/fonts/src/bin.svg
 791${PYSITELIB}/cms/static/cms/fonts/src/broadcast-off.svg
 792${PYSITELIB}/cms/static/cms/fonts/src/broadcast-on.svg
 793${PYSITELIB}/cms/static/cms/fonts/src/check-circle.svg
471${PYSITELIB}/cms/static/cms/fonts/src/check-o.svg 794${PYSITELIB}/cms/static/cms/fonts/src/check-o.svg
472${PYSITELIB}/cms/static/cms/fonts/src/check-square.svg 795${PYSITELIB}/cms/static/cms/fonts/src/check-square.svg
473${PYSITELIB}/cms/static/cms/fonts/src/check.svg 796${PYSITELIB}/cms/static/cms/fonts/src/check.svg
474${PYSITELIB}/cms/static/cms/fonts/src/close.svg 797${PYSITELIB}/cms/static/cms/fonts/src/close.svg
475${PYSITELIB}/cms/static/cms/fonts/src/cogs.svg 798${PYSITELIB}/cms/static/cms/fonts/src/cogs.svg
 799${PYSITELIB}/cms/static/cms/fonts/src/comment.svg
 800${PYSITELIB}/cms/static/cms/fonts/src/compare.svg
476${PYSITELIB}/cms/static/cms/fonts/src/copy.svg 801${PYSITELIB}/cms/static/cms/fonts/src/copy.svg
 802${PYSITELIB}/cms/static/cms/fonts/src/cut.svg
 803${PYSITELIB}/cms/static/cms/fonts/src/edit-new.svg
 804${PYSITELIB}/cms/static/cms/fonts/src/edit.svg
477${PYSITELIB}/cms/static/cms/fonts/src/eye.svg 805${PYSITELIB}/cms/static/cms/fonts/src/eye.svg
478${PYSITELIB}/cms/static/cms/fonts/src/forbidden.svg 806${PYSITELIB}/cms/static/cms/fonts/src/forbidden.svg
479${PYSITELIB}/cms/static/cms/fonts/src/handler.svg 807${PYSITELIB}/cms/static/cms/fonts/src/handler.svg
480${PYSITELIB}/cms/static/cms/fonts/src/highlight.svg 808${PYSITELIB}/cms/static/cms/fonts/src/highlight.svg
481${PYSITELIB}/cms/static/cms/fonts/src/home.svg 809${PYSITELIB}/cms/static/cms/fonts/src/home.svg
482${PYSITELIB}/cms/static/cms/fonts/src/info.svg 810${PYSITELIB}/cms/static/cms/fonts/src/info.svg
 811${PYSITELIB}/cms/static/cms/fonts/src/layers.svg
 812${PYSITELIB}/cms/static/cms/fonts/src/list-ol.svg
483${PYSITELIB}/cms/static/cms/fonts/src/loader.svg 813${PYSITELIB}/cms/static/cms/fonts/src/loader.svg
484${PYSITELIB}/cms/static/cms/fonts/src/lock.svg 814${PYSITELIB}/cms/static/cms/fonts/src/lock.svg
485${PYSITELIB}/cms/static/cms/fonts/src/logo.svg 815${PYSITELIB}/cms/static/cms/fonts/src/logo.svg
 816${PYSITELIB}/cms/static/cms/fonts/src/manage-versions.svg
486${PYSITELIB}/cms/static/cms/fonts/src/menu.svg 817${PYSITELIB}/cms/static/cms/fonts/src/menu.svg
487${PYSITELIB}/cms/static/cms/fonts/src/minimize.svg 818${PYSITELIB}/cms/static/cms/fonts/src/minimize.svg
 819${PYSITELIB}/cms/static/cms/fonts/src/minus-circle.svg
488${PYSITELIB}/cms/static/cms/fonts/src/minus-square-o.svg 820${PYSITELIB}/cms/static/cms/fonts/src/minus-square-o.svg
489${PYSITELIB}/cms/static/cms/fonts/src/minus-square.svg 821${PYSITELIB}/cms/static/cms/fonts/src/minus-square.svg
490${PYSITELIB}/cms/static/cms/fonts/src/minus.svg 822${PYSITELIB}/cms/static/cms/fonts/src/minus.svg
 823${PYSITELIB}/cms/static/cms/fonts/src/moderate.svg
491${PYSITELIB}/cms/static/cms/fonts/src/paste.svg 824${PYSITELIB}/cms/static/cms/fonts/src/paste.svg
492${PYSITELIB}/cms/static/cms/fonts/src/pencil.svg 825${PYSITELIB}/cms/static/cms/fonts/src/pencil.svg
493${PYSITELIB}/cms/static/cms/fonts/src/pin.svg 826${PYSITELIB}/cms/static/cms/fonts/src/pin.svg
494${PYSITELIB}/cms/static/cms/fonts/src/plugins.svg 827${PYSITELIB}/cms/static/cms/fonts/src/plugins.svg
 828${PYSITELIB}/cms/static/cms/fonts/src/plus-circle.svg
495${PYSITELIB}/cms/static/cms/fonts/src/plus-square-o.svg 829${PYSITELIB}/cms/static/cms/fonts/src/plus-square-o.svg
496${PYSITELIB}/cms/static/cms/fonts/src/plus.svg 830${PYSITELIB}/cms/static/cms/fonts/src/plus.svg
 831${PYSITELIB}/cms/static/cms/fonts/src/publish.svg
497${PYSITELIB}/cms/static/cms/fonts/src/puzzle.svg 832${PYSITELIB}/cms/static/cms/fonts/src/puzzle.svg
 833${PYSITELIB}/cms/static/cms/fonts/src/redo.svg
 834${PYSITELIB}/cms/static/cms/fonts/src/rename.svg
498${PYSITELIB}/cms/static/cms/fonts/src/scissors.svg 835${PYSITELIB}/cms/static/cms/fonts/src/scissors.svg
499${PYSITELIB}/cms/static/cms/fonts/src/search.svg 836${PYSITELIB}/cms/static/cms/fonts/src/search.svg
 837${PYSITELIB}/cms/static/cms/fonts/src/settings.svg
500${PYSITELIB}/cms/static/cms/fonts/src/sitemap.svg 838${PYSITELIB}/cms/static/cms/fonts/src/sitemap.svg
501${PYSITELIB}/cms/static/cms/fonts/src/squares.svg 839${PYSITELIB}/cms/static/cms/fonts/src/squares.svg
502${PYSITELIB}/cms/static/cms/fonts/src/theme-auto.svg 840${PYSITELIB}/cms/static/cms/fonts/src/theme-auto.svg
503${PYSITELIB}/cms/static/cms/fonts/src/theme-dark.svg 841${PYSITELIB}/cms/static/cms/fonts/src/theme-dark.svg
504${PYSITELIB}/cms/static/cms/fonts/src/theme-light.svg 842${PYSITELIB}/cms/static/cms/fonts/src/theme-light.svg
 843${PYSITELIB}/cms/static/cms/fonts/src/undo.svg
 844${PYSITELIB}/cms/static/cms/fonts/src/unlock.svg
 845${PYSITELIB}/cms/static/cms/fonts/src/unpublish.svg
 846${PYSITELIB}/cms/static/cms/fonts/src/view.svg
505${PYSITELIB}/cms/static/cms/fonts/src/window.svg 847${PYSITELIB}/cms/static/cms/fonts/src/window.svg
506${PYSITELIB}/cms/static/cms/img/favicon.png 848${PYSITELIB}/cms/static/cms/img/favicon.png
507${PYSITELIB}/cms/static/cms/img/icons/filetypes/flv.gif 849${PYSITELIB}/cms/static/cms/img/icons/filetypes/flv.gif
508${PYSITELIB}/cms/static/cms/img/icons/filetypes/gif.gif 850${PYSITELIB}/cms/static/cms/img/icons/filetypes/gif.gif
509${PYSITELIB}/cms/static/cms/img/icons/filetypes/html.gif 851${PYSITELIB}/cms/static/cms/img/icons/filetypes/html.gif
510${PYSITELIB}/cms/static/cms/img/icons/filetypes/java.gif 852${PYSITELIB}/cms/static/cms/img/icons/filetypes/java.gif
511${PYSITELIB}/cms/static/cms/img/icons/filetypes/jpg.gif 853${PYSITELIB}/cms/static/cms/img/icons/filetypes/jpg.gif
512${PYSITELIB}/cms/static/cms/img/icons/filetypes/mp3.png 854${PYSITELIB}/cms/static/cms/img/icons/filetypes/mp3.png
513${PYSITELIB}/cms/static/cms/img/icons/filetypes/ods.png 855${PYSITELIB}/cms/static/cms/img/icons/filetypes/ods.png
514${PYSITELIB}/cms/static/cms/img/icons/filetypes/odt.png 856${PYSITELIB}/cms/static/cms/img/icons/filetypes/odt.png
515${PYSITELIB}/cms/static/cms/img/icons/filetypes/pdf.gif 857${PYSITELIB}/cms/static/cms/img/icons/filetypes/pdf.gif
516${PYSITELIB}/cms/static/cms/img/icons/filetypes/php.gif 858${PYSITELIB}/cms/static/cms/img/icons/filetypes/php.gif
517${PYSITELIB}/cms/static/cms/img/icons/filetypes/png.gif 859${PYSITELIB}/cms/static/cms/img/icons/filetypes/png.gif
@@ -526,26 +868,28 @@ ${PYSITELIB}/cms/static/cms/img/icons/pl @@ -526,26 +868,28 @@ ${PYSITELIB}/cms/static/cms/img/icons/pl
526${PYSITELIB}/cms/static/cms/img/icons/plugins/get_flash_player.gif 868${PYSITELIB}/cms/static/cms/img/icons/plugins/get_flash_player.gif
527${PYSITELIB}/cms/static/cms/img/icons/plugins/image.png 869${PYSITELIB}/cms/static/cms/img/icons/plugins/image.png
528${PYSITELIB}/cms/static/cms/img/icons/plugins/link.png 870${PYSITELIB}/cms/static/cms/img/icons/plugins/link.png
529${PYSITELIB}/cms/static/cms/img/icons/plugins/snippet.png 871${PYSITELIB}/cms/static/cms/img/icons/plugins/snippet.png
530${PYSITELIB}/cms/static/cms/img/loader.gif 872${PYSITELIB}/cms/static/cms/img/loader.gif
531${PYSITELIB}/cms/static/cms/img/loader@2x.gif 873${PYSITELIB}/cms/static/cms/img/loader@2x.gif
532${PYSITELIB}/cms/static/cms/img/pagetree/tree-li-drag.gif 874${PYSITELIB}/cms/static/cms/img/pagetree/tree-li-drag.gif
533${PYSITELIB}/cms/static/cms/img/toolbar/render_model_add.png 875${PYSITELIB}/cms/static/cms/img/toolbar/render_model_add.png
534${PYSITELIB}/cms/static/cms/img/toolbar/render_model_icon.png 876${PYSITELIB}/cms/static/cms/img/toolbar/render_model_icon.png
535${PYSITELIB}/cms/static/cms/img/toolbar/render_model_placeholder.png 877${PYSITELIB}/cms/static/cms/img/toolbar/render_model_placeholder.png
536${PYSITELIB}/cms/static/cms/js/admin.base.js 878${PYSITELIB}/cms/static/cms/js/admin.base.js
537${PYSITELIB}/cms/static/cms/js/admin.changeform.js 879${PYSITELIB}/cms/static/cms/js/admin.changeform.js
538${PYSITELIB}/cms/static/cms/js/admin.pagetree.js 880${PYSITELIB}/cms/static/cms/js/admin.pagetree.js
 881${PYSITELIB}/cms/static/cms/js/admin/actions.js
 882${PYSITELIB}/cms/static/cms/js/admin/language-selector.js
539${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.admin.base.min.js 883${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.admin.base.min.js
540${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.admin.changeform.min.js 884${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.admin.changeform.min.js
541${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.admin.pagetree.min.js 885${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.admin.pagetree.min.js
542${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.admin.widget.min.js 886${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.admin.widget.min.js
543${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.apphookselect.min.js 887${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.apphookselect.min.js
544${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.pageselectwidget.min.js 888${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.pageselectwidget.min.js
545${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.pagesmartlinkwidget.min.js 889${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.pagesmartlinkwidget.min.js
546${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.slugwidget.min.js 890${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.slugwidget.min.js
547${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.toolbar.min.js 891${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.toolbar.min.js
548${PYSITELIB}/cms/static/cms/js/libs/class.min.js 892${PYSITELIB}/cms/static/cms/js/libs/class.min.js
549${PYSITELIB}/cms/static/cms/js/libs/jquery.min.js 893${PYSITELIB}/cms/static/cms/js/libs/jquery.min.js
550${PYSITELIB}/cms/static/cms/js/libs/jstree/jstree.grid.min.js 894${PYSITELIB}/cms/static/cms/js/libs/jstree/jstree.grid.min.js
551${PYSITELIB}/cms/static/cms/js/libs/jstree/jstree.min.js 895${PYSITELIB}/cms/static/cms/js/libs/jstree/jstree.min.js
@@ -641,26 +985,27 @@ ${PYSITELIB}/cms/static/cms/js/select2/s @@ -641,26 +985,27 @@ ${PYSITELIB}/cms/static/cms/js/select2/s
641${PYSITELIB}/cms/static/cms/js/select2/select2_locale_tr.js 985${PYSITELIB}/cms/static/cms/js/select2/select2_locale_tr.js
642${PYSITELIB}/cms/static/cms/js/select2/select2_locale_ug-CN.js 986${PYSITELIB}/cms/static/cms/js/select2/select2_locale_ug-CN.js
643${PYSITELIB}/cms/static/cms/js/select2/select2_locale_uk.js 987${PYSITELIB}/cms/static/cms/js/select2/select2_locale_uk.js
644${PYSITELIB}/cms/static/cms/js/select2/select2_locale_vi.js 988${PYSITELIB}/cms/static/cms/js/select2/select2_locale_vi.js
645${PYSITELIB}/cms/static/cms/js/select2/select2_locale_zh-CN.js 989${PYSITELIB}/cms/static/cms/js/select2/select2_locale_zh-CN.js
646${PYSITELIB}/cms/static/cms/js/select2/select2_locale_zh-TW.js 990${PYSITELIB}/cms/static/cms/js/select2/select2_locale_zh-TW.js
647${PYSITELIB}/cms/static/cms/js/select2/select2x2.png 991${PYSITELIB}/cms/static/cms/js/select2/select2x2.png
648${PYSITELIB}/cms/static/cms/js/toolbar.js 992${PYSITELIB}/cms/static/cms/js/toolbar.js
649${PYSITELIB}/cms/static/cms/js/widgets/forms.apphookselect.js 993${PYSITELIB}/cms/static/cms/js/widgets/forms.apphookselect.js
650${PYSITELIB}/cms/static/cms/js/widgets/forms.pageselectwidget.js 994${PYSITELIB}/cms/static/cms/js/widgets/forms.pageselectwidget.js
651${PYSITELIB}/cms/static/cms/js/widgets/forms.pagesmartlinkwidget.js 995${PYSITELIB}/cms/static/cms/js/widgets/forms.pagesmartlinkwidget.js
652${PYSITELIB}/cms/static/cms/js/widgets/forms.slugwidget.js 996${PYSITELIB}/cms/static/cms/js/widgets/forms.slugwidget.js
653${PYSITELIB}/cms/static/cms/js/widgets/wizard.pagetypeselect.js 997${PYSITELIB}/cms/static/cms/js/widgets/wizard.pagetypeselect.js
 998${PYSITELIB}/cms/static/cms/sass/cms.admin.scss
654${PYSITELIB}/cms/static/cms/sass/cms.base.scss 999${PYSITELIB}/cms/static/cms/sass/cms.base.scss
655${PYSITELIB}/cms/static/cms/sass/cms.pagetree.scss 1000${PYSITELIB}/cms/static/cms/sass/cms.pagetree.scss
656${PYSITELIB}/cms/static/cms/sass/cms.welcome.scss 1001${PYSITELIB}/cms/static/cms/sass/cms.welcome.scss
657${PYSITELIB}/cms/static/cms/sass/cms.wizard.scss 1002${PYSITELIB}/cms/static/cms/sass/cms.wizard.scss
658${PYSITELIB}/cms/static/cms/sass/components/_animation.scss 1003${PYSITELIB}/cms/static/cms/sass/components/_animation.scss
659${PYSITELIB}/cms/static/cms/sass/components/_button.scss 1004${PYSITELIB}/cms/static/cms/sass/components/_button.scss
660${PYSITELIB}/cms/static/cms/sass/components/_clipboard.scss 1005${PYSITELIB}/cms/static/cms/sass/components/_clipboard.scss
661${PYSITELIB}/cms/static/cms/sass/components/_content.scss 1006${PYSITELIB}/cms/static/cms/sass/components/_content.scss
662${PYSITELIB}/cms/static/cms/sass/components/_dark-mode-toggle.scss 1007${PYSITELIB}/cms/static/cms/sass/components/_dark-mode-toggle.scss
663${PYSITELIB}/cms/static/cms/sass/components/_dialog.scss 1008${PYSITELIB}/cms/static/cms/sass/components/_dialog.scss
664${PYSITELIB}/cms/static/cms/sass/components/_dropdown.scss 1009${PYSITELIB}/cms/static/cms/sass/components/_dropdown.scss
665${PYSITELIB}/cms/static/cms/sass/components/_general.scss 1010${PYSITELIB}/cms/static/cms/sass/components/_general.scss
666${PYSITELIB}/cms/static/cms/sass/components/_hovertooltip.scss 1011${PYSITELIB}/cms/static/cms/sass/components/_hovertooltip.scss
@@ -684,73 +1029,81 @@ ${PYSITELIB}/cms/static/cms/sass/compone @@ -684,73 +1029,81 @@ ${PYSITELIB}/cms/static/cms/sass/compone
684${PYSITELIB}/cms/static/cms/sass/libs/_iconfont.scss 1029${PYSITELIB}/cms/static/cms/sass/libs/_iconfont.scss
685${PYSITELIB}/cms/static/cms/sass/mixins/_all.scss 1030${PYSITELIB}/cms/static/cms/sass/mixins/_all.scss
686${PYSITELIB}/cms/static/cms/sass/mixins/_buttons.scss 1031${PYSITELIB}/cms/static/cms/sass/mixins/_buttons.scss
687${PYSITELIB}/cms/static/cms/sass/mixins/_custom.scss 1032${PYSITELIB}/cms/static/cms/sass/mixins/_custom.scss
688${PYSITELIB}/cms/static/cms/sass/mixins/_retina.scss 1033${PYSITELIB}/cms/static/cms/sass/mixins/_retina.scss
689${PYSITELIB}/cms/static/cms/sass/mixins/_zindex.scss 1034${PYSITELIB}/cms/static/cms/sass/mixins/_zindex.scss
690${PYSITELIB}/cms/static/cms/sass/settings/_all.scss 1035${PYSITELIB}/cms/static/cms/sass/settings/_all.scss
691${PYSITELIB}/cms/static/cms/sass/settings/_cms.scss 1036${PYSITELIB}/cms/static/cms/sass/settings/_cms.scss
692${PYSITELIB}/cms/static/cms/sass/settings/_pagetree.scss 1037${PYSITELIB}/cms/static/cms/sass/settings/_pagetree.scss
693${PYSITELIB}/cms/templates.py 1038${PYSITELIB}/cms/templates.py
694${PYSITELIB}/cms/templates.pyc 1039${PYSITELIB}/cms/templates.pyc
695${PYSITELIB}/cms/templates.pyo 1040${PYSITELIB}/cms/templates.pyo
696${PYSITELIB}/cms/templates/admin/cms/extensions/change_form.html 1041${PYSITELIB}/cms/templates/admin/cms/extensions/change_form.html
 1042${PYSITELIB}/cms/templates/admin/cms/grouper/change_form.html
 1043${PYSITELIB}/cms/templates/admin/cms/grouper/change_list.html
 1044${PYSITELIB}/cms/templates/admin/cms/grouper/content_inline.html
 1045${PYSITELIB}/cms/templates/admin/cms/icons/base.html
697${PYSITELIB}/cms/templates/admin/cms/mail/base.html 1046${PYSITELIB}/cms/templates/admin/cms/mail/base.html
698${PYSITELIB}/cms/templates/admin/cms/mail/base.txt 1047${PYSITELIB}/cms/templates/admin/cms/mail/base.txt
699${PYSITELIB}/cms/templates/admin/cms/mail/page_user_change.html 1048${PYSITELIB}/cms/templates/admin/cms/mail/page_user_change.html
700${PYSITELIB}/cms/templates/admin/cms/mail/page_user_change.txt 1049${PYSITELIB}/cms/templates/admin/cms/mail/page_user_change.txt
701${PYSITELIB}/cms/templates/admin/cms/page/change_form.html 1050${PYSITELIB}/cms/templates/admin/cms/page/change_form.html
702${PYSITELIB}/cms/templates/admin/cms/page/close_frame.html 1051${PYSITELIB}/cms/templates/admin/cms/page/close_frame.html
703${PYSITELIB}/cms/templates/admin/cms/page/includes/fieldset.html 1052${PYSITELIB}/cms/templates/admin/cms/page/includes/fieldset.html
704${PYSITELIB}/cms/templates/admin/cms/page/permissions.html 1053${PYSITELIB}/cms/templates/admin/cms/page/permissions.html
705${PYSITELIB}/cms/templates/admin/cms/page/plugin/change_form.html 1054${PYSITELIB}/cms/templates/admin/cms/page/plugin/change_form.html
706${PYSITELIB}/cms/templates/admin/cms/page/plugin/confirm_form.html 1055${PYSITELIB}/cms/templates/admin/cms/page/plugin/confirm_form.html
707${PYSITELIB}/cms/templates/admin/cms/page/plugin/delete_confirmation.html 1056${PYSITELIB}/cms/templates/admin/cms/page/plugin/delete_confirmation.html
708${PYSITELIB}/cms/templates/admin/cms/page/plugin/error_form.html 1057${PYSITELIB}/cms/templates/admin/cms/page/plugin/error_form.html
709${PYSITELIB}/cms/templates/admin/cms/page/plugin/submit_line.html 1058${PYSITELIB}/cms/templates/admin/cms/page/plugin/submit_line.html
710${PYSITELIB}/cms/templates/admin/cms/page/submit_row.html 1059${PYSITELIB}/cms/templates/admin/cms/page/submit_row.html
711${PYSITELIB}/cms/templates/admin/cms/page/tree/actions_dropdown.html 1060${PYSITELIB}/cms/templates/admin/cms/page/tree/actions_dropdown.html
712${PYSITELIB}/cms/templates/admin/cms/page/tree/base.html 1061${PYSITELIB}/cms/templates/admin/cms/page/tree/base.html
713${PYSITELIB}/cms/templates/admin/cms/page/tree/copy_premissions.html 1062${PYSITELIB}/cms/templates/admin/cms/page/tree/copy_premissions.html
714${PYSITELIB}/cms/templates/admin/cms/page/tree/filter.html 1063${PYSITELIB}/cms/templates/admin/cms/page/tree/filter.html
 1064${PYSITELIB}/cms/templates/admin/cms/page/tree/indicator_legend.html
 1065${PYSITELIB}/cms/templates/admin/cms/page/tree/indicator_menu.html
715${PYSITELIB}/cms/templates/admin/cms/page/tree/legend.html 1066${PYSITELIB}/cms/templates/admin/cms/page/tree/legend.html
716${PYSITELIB}/cms/templates/admin/cms/page/tree/menu.html 1067${PYSITELIB}/cms/templates/admin/cms/page/tree/menu.html
717${PYSITELIB}/cms/templates/admin/cms/usersettings/change_form.html 1068${PYSITELIB}/cms/templates/admin/cms/usersettings/change_form.html
718${PYSITELIB}/cms/templates/cms/content.html 1069${PYSITELIB}/cms/templates/cms/content.html
719${PYSITELIB}/cms/templates/cms/dummy.html 1070${PYSITELIB}/cms/templates/cms/dummy.html
 1071${PYSITELIB}/cms/templates/cms/noapphook.html
720${PYSITELIB}/cms/templates/cms/plugins/alias.html 1072${PYSITELIB}/cms/templates/cms/plugins/alias.html
721${PYSITELIB}/cms/templates/cms/toolbar/clipboard.html 1073${PYSITELIB}/cms/templates/cms/toolbar/clipboard.html
722${PYSITELIB}/cms/templates/cms/toolbar/content.html 1074${PYSITELIB}/cms/templates/cms/toolbar/content.html
723${PYSITELIB}/cms/templates/cms/toolbar/dragbar.html 1075${PYSITELIB}/cms/templates/cms/toolbar/dragbar.html
724${PYSITELIB}/cms/templates/cms/toolbar/dragitem.html 1076${PYSITELIB}/cms/templates/cms/toolbar/dragitem.html
725${PYSITELIB}/cms/templates/cms/toolbar/dragitem_extra_menu.html 1077${PYSITELIB}/cms/templates/cms/toolbar/dragitem_extra_menu.html
726${PYSITELIB}/cms/templates/cms/toolbar/dragitem_menu.html 1078${PYSITELIB}/cms/templates/cms/toolbar/dragitem_menu.html
727${PYSITELIB}/cms/templates/cms/toolbar/items/break.html 1079${PYSITELIB}/cms/templates/cms/toolbar/items/break.html
728${PYSITELIB}/cms/templates/cms/toolbar/items/button.html 1080${PYSITELIB}/cms/templates/cms/toolbar/items/button.html
729${PYSITELIB}/cms/templates/cms/toolbar/items/button_list.html 1081${PYSITELIB}/cms/templates/cms/toolbar/items/button_list.html
730${PYSITELIB}/cms/templates/cms/toolbar/items/button_modal.html 1082${PYSITELIB}/cms/templates/cms/toolbar/items/button_modal.html
731${PYSITELIB}/cms/templates/cms/toolbar/items/button_sideframe.html 1083${PYSITELIB}/cms/templates/cms/toolbar/items/button_sideframe.html
732${PYSITELIB}/cms/templates/cms/toolbar/items/dark_mode_toggle.html 1084${PYSITELIB}/cms/templates/cms/toolbar/items/dark_mode_toggle.html
733${PYSITELIB}/cms/templates/cms/toolbar/items/dropdown.html 1085${PYSITELIB}/cms/templates/cms/toolbar/items/dropdown.html
734${PYSITELIB}/cms/templates/cms/toolbar/items/dropdown_button.html 1086${PYSITELIB}/cms/templates/cms/toolbar/items/dropdown_button.html
735${PYSITELIB}/cms/templates/cms/toolbar/items/item_ajax.html 1087${PYSITELIB}/cms/templates/cms/toolbar/items/item_ajax.html
736${PYSITELIB}/cms/templates/cms/toolbar/items/item_link.html 1088${PYSITELIB}/cms/templates/cms/toolbar/items/item_link.html
737${PYSITELIB}/cms/templates/cms/toolbar/items/item_modal.html 1089${PYSITELIB}/cms/templates/cms/toolbar/items/item_modal.html
738${PYSITELIB}/cms/templates/cms/toolbar/items/item_sideframe.html 1090${PYSITELIB}/cms/templates/cms/toolbar/items/item_sideframe.html
739${PYSITELIB}/cms/templates/cms/toolbar/items/live_draft.html 1091${PYSITELIB}/cms/templates/cms/toolbar/items/live_draft.html
740${PYSITELIB}/cms/templates/cms/toolbar/items/login.html 1092${PYSITELIB}/cms/templates/cms/toolbar/items/login.html
741${PYSITELIB}/cms/templates/cms/toolbar/items/logo.html 1093${PYSITELIB}/cms/templates/cms/toolbar/items/logo.html
742${PYSITELIB}/cms/templates/cms/toolbar/items/menu.html 1094${PYSITELIB}/cms/templates/cms/toolbar/items/menu.html
743${PYSITELIB}/cms/templates/cms/toolbar/plugin.html 1095${PYSITELIB}/cms/templates/cms/toolbar/plugin.html
 1096${PYSITELIB}/cms/templates/cms/toolbar/render_plugin_block.html
744${PYSITELIB}/cms/templates/cms/toolbar/structure.html 1097${PYSITELIB}/cms/templates/cms/toolbar/structure.html
745${PYSITELIB}/cms/templates/cms/toolbar/toolbar.html 1098${PYSITELIB}/cms/templates/cms/toolbar/toolbar.html
746${PYSITELIB}/cms/templates/cms/toolbar/toolbar_javascript.html 1099${PYSITELIB}/cms/templates/cms/toolbar/toolbar_javascript.html
747${PYSITELIB}/cms/templates/cms/toolbar/toolbar_with_structure.html 1100${PYSITELIB}/cms/templates/cms/toolbar/toolbar_with_structure.html
748${PYSITELIB}/cms/templates/cms/welcome.html 1101${PYSITELIB}/cms/templates/cms/welcome.html
749${PYSITELIB}/cms/templates/cms/widgets/applicationconfigselect.html 1102${PYSITELIB}/cms/templates/cms/widgets/applicationconfigselect.html
750${PYSITELIB}/cms/templates/cms/widgets/pageselectwidget.html 1103${PYSITELIB}/cms/templates/cms/widgets/pageselectwidget.html
751${PYSITELIB}/cms/templates/cms/widgets/pagesmartlinkwidget.html 1104${PYSITELIB}/cms/templates/cms/widgets/pagesmartlinkwidget.html
752${PYSITELIB}/cms/templates/cms/wizards/base.html 1105${PYSITELIB}/cms/templates/cms/wizards/base.html
753${PYSITELIB}/cms/templates/cms/wizards/create.html 1106${PYSITELIB}/cms/templates/cms/wizards/create.html
754${PYSITELIB}/cms/templates/cms/wizards/done.html 1107${PYSITELIB}/cms/templates/cms/wizards/done.html
755${PYSITELIB}/cms/templates/cms/wizards/includes/form_fields.html 1108${PYSITELIB}/cms/templates/cms/wizards/includes/form_fields.html
756${PYSITELIB}/cms/templates/cms/wizards/start.html 1109${PYSITELIB}/cms/templates/cms/wizards/start.html
@@ -784,26 +1137,212 @@ ${PYSITELIB}/cms/test_utils/fixtures/fak @@ -784,26 +1137,212 @@ ${PYSITELIB}/cms/test_utils/fixtures/fak
784${PYSITELIB}/cms/test_utils/fixtures/fakemlng.pyo 1137${PYSITELIB}/cms/test_utils/fixtures/fakemlng.pyo
785${PYSITELIB}/cms/test_utils/fixtures/menus.py 1138${PYSITELIB}/cms/test_utils/fixtures/menus.py
786${PYSITELIB}/cms/test_utils/fixtures/menus.pyc 1139${PYSITELIB}/cms/test_utils/fixtures/menus.pyc
787${PYSITELIB}/cms/test_utils/fixtures/menus.pyo 1140${PYSITELIB}/cms/test_utils/fixtures/menus.pyo
788${PYSITELIB}/cms/test_utils/fixtures/navextenders.py 1141${PYSITELIB}/cms/test_utils/fixtures/navextenders.py
789${PYSITELIB}/cms/test_utils/fixtures/navextenders.pyc 1142${PYSITELIB}/cms/test_utils/fixtures/navextenders.pyc
790${PYSITELIB}/cms/test_utils/fixtures/navextenders.pyo 1143${PYSITELIB}/cms/test_utils/fixtures/navextenders.pyo
791${PYSITELIB}/cms/test_utils/fixtures/templatetags.py 1144${PYSITELIB}/cms/test_utils/fixtures/templatetags.py
792${PYSITELIB}/cms/test_utils/fixtures/templatetags.pyc 1145${PYSITELIB}/cms/test_utils/fixtures/templatetags.pyc
793${PYSITELIB}/cms/test_utils/fixtures/templatetags.pyo 1146${PYSITELIB}/cms/test_utils/fixtures/templatetags.pyo
794${PYSITELIB}/cms/test_utils/project/__init__.py 1147${PYSITELIB}/cms/test_utils/project/__init__.py
795${PYSITELIB}/cms/test_utils/project/__init__.pyc 1148${PYSITELIB}/cms/test_utils/project/__init__.pyc
796${PYSITELIB}/cms/test_utils/project/__init__.pyo 1149${PYSITELIB}/cms/test_utils/project/__init__.pyo
 1150${PYSITELIB}/cms/test_utils/project/app_using_non_feature/__init__.py
 1151${PYSITELIB}/cms/test_utils/project/app_using_non_feature/__init__.pyc
 1152${PYSITELIB}/cms/test_utils/project/app_using_non_feature/__init__.pyo
 1153${PYSITELIB}/cms/test_utils/project/app_using_non_feature/admin.py
 1154${PYSITELIB}/cms/test_utils/project/app_using_non_feature/admin.pyc
 1155${PYSITELIB}/cms/test_utils/project/app_using_non_feature/admin.pyo
 1156${PYSITELIB}/cms/test_utils/project/app_using_non_feature/apps.py
 1157${PYSITELIB}/cms/test_utils/project/app_using_non_feature/apps.pyc
 1158${PYSITELIB}/cms/test_utils/project/app_using_non_feature/apps.pyo
 1159${PYSITELIB}/cms/test_utils/project/app_using_non_feature/cms_config.py
 1160${PYSITELIB}/cms/test_utils/project/app_using_non_feature/cms_config.pyc
 1161${PYSITELIB}/cms/test_utils/project/app_using_non_feature/cms_config.pyo
 1162${PYSITELIB}/cms/test_utils/project/app_using_non_feature/models.py
 1163${PYSITELIB}/cms/test_utils/project/app_using_non_feature/models.pyc
 1164${PYSITELIB}/cms/test_utils/project/app_using_non_feature/models.pyo
 1165${PYSITELIB}/cms/test_utils/project/app_using_non_feature/views.py
 1166${PYSITELIB}/cms/test_utils/project/app_using_non_feature/views.pyc
 1167${PYSITELIB}/cms/test_utils/project/app_using_non_feature/views.pyo
 1168${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/__init__.py
 1169${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/__init__.pyc
 1170${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/__init__.pyo
 1171${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/admin.py
 1172${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/admin.pyc
 1173${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/admin.pyo
 1174${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/apps.py
 1175${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/apps.pyc
 1176${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/apps.pyo
 1177${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/cms_config.py
 1178${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/cms_config.pyc
 1179${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/cms_config.pyo
 1180${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/models.py
 1181${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/models.pyc
 1182${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/models.pyo
 1183${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/views.py
 1184${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/views.pyc
 1185${PYSITELIB}/cms/test_utils/project/app_with_bad_cms_file/views.pyo
 1186${PYSITELIB}/cms/test_utils/project/app_with_cms_config/__init__.py
 1187${PYSITELIB}/cms/test_utils/project/app_with_cms_config/__init__.pyc
 1188${PYSITELIB}/cms/test_utils/project/app_with_cms_config/__init__.pyo
 1189${PYSITELIB}/cms/test_utils/project/app_with_cms_config/admin.py
 1190${PYSITELIB}/cms/test_utils/project/app_with_cms_config/admin.pyc
 1191${PYSITELIB}/cms/test_utils/project/app_with_cms_config/admin.pyo
 1192${PYSITELIB}/cms/test_utils/project/app_with_cms_config/apps.py
 1193${PYSITELIB}/cms/test_utils/project/app_with_cms_config/apps.pyc
 1194${PYSITELIB}/cms/test_utils/project/app_with_cms_config/apps.pyo
 1195${PYSITELIB}/cms/test_utils/project/app_with_cms_config/cms_config.py
 1196${PYSITELIB}/cms/test_utils/project/app_with_cms_config/cms_config.pyc
 1197${PYSITELIB}/cms/test_utils/project/app_with_cms_config/cms_config.pyo
 1198${PYSITELIB}/cms/test_utils/project/app_with_cms_config/models.py
 1199${PYSITELIB}/cms/test_utils/project/app_with_cms_config/models.pyc
 1200${PYSITELIB}/cms/test_utils/project/app_with_cms_config/models.pyo
 1201${PYSITELIB}/cms/test_utils/project/app_with_cms_config/views.py
 1202${PYSITELIB}/cms/test_utils/project/app_with_cms_config/views.pyc
 1203${PYSITELIB}/cms/test_utils/project/app_with_cms_config/views.pyo
 1204${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/__init__.py
 1205${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/__init__.pyc
 1206${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/__init__.pyo
 1207${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/admin.py
 1208${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/admin.pyc
 1209${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/admin.pyo
 1210${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/apps.py
 1211${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/apps.pyc
 1212${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/apps.pyo
 1213${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/cms_config.py
 1214${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/cms_config.pyc
 1215${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/cms_config.pyo
 1216${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/models.py
 1217${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/models.pyc
 1218${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/models.pyo
 1219${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/views.py
 1220${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/views.pyc
 1221${PYSITELIB}/cms/test_utils/project/app_with_cms_feature/views.pyo
 1222${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/__init__.py
 1223${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/__init__.pyc
 1224${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/__init__.pyo
 1225${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/admin.py
 1226${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/admin.pyc
 1227${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/admin.pyo
 1228${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/apps.py
 1229${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/apps.pyc
 1230${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/apps.pyo
 1231${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/cms_config.py
 1232${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/cms_config.pyc
 1233${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/cms_config.pyo
 1234${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/models.py
 1235${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/models.pyc
 1236${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/models.pyo
 1237${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/views.py
 1238${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/views.pyc
 1239${PYSITELIB}/cms/test_utils/project/app_with_cms_feature_and_config/views.pyo
 1240${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/__init__.py
 1241${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/__init__.pyc
 1242${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/__init__.pyo
 1243${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/admin.py
 1244${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/admin.pyc
 1245${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/admin.pyo
 1246${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/apps.py
 1247${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/apps.pyc
 1248${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/apps.pyo
 1249${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/cms_config.py
 1250${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/cms_config.pyc
 1251${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/cms_config.pyo
 1252${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/models.py
 1253${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/models.pyc
 1254${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/models.pyo
 1255${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/views.py
 1256${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/views.pyc
 1257${PYSITELIB}/cms/test_utils/project/app_with_feature_not_implemented/views.pyo
 1258${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/__init__.py
 1259${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/__init__.pyc
 1260${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/__init__.pyo
 1261${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/admin.py
 1262${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/admin.pyc
 1263${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/admin.pyo
 1264${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/apps.py
 1265${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/apps.pyc
 1266${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/apps.pyo
 1267${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/cms_config.py
 1268${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/cms_config.pyc
 1269${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/cms_config.pyo
 1270${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/models.py
 1271${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/models.pyc
 1272${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/models.pyo
 1273${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/views.py
 1274${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/views.pyc
 1275${PYSITELIB}/cms/test_utils/project/app_with_two_cms_config_classes/views.pyo
 1276${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/__init__.py
 1277${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/__init__.pyc
 1278${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/__init__.pyo
 1279${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/admin.py
 1280${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/admin.pyc
 1281${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/admin.pyo
 1282${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/apps.py
 1283${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/apps.pyc
 1284${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/apps.pyo
 1285${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/cms_config.py
 1286${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/cms_config.pyc
 1287${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/cms_config.pyo
 1288${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/models.py
 1289${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/models.pyc
 1290${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/models.pyo
 1291${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/views.py
 1292${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/views.pyc
 1293${PYSITELIB}/cms/test_utils/project/app_with_two_cms_feature_classes/views.pyo
 1294${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/__init__.py
 1295${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/__init__.pyc
 1296${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/__init__.pyo
 1297${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/admin.py
 1298${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/admin.pyc
 1299${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/admin.pyo
 1300${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/apps.py
 1301${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/apps.pyc
 1302${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/apps.pyo
 1303${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/cms_config.py
 1304${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/cms_config.pyc
 1305${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/cms_config.pyo
 1306${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/models.py
 1307${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/models.pyc
 1308${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/models.pyo
 1309${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/views.py
 1310${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/views.pyc
 1311${PYSITELIB}/cms/test_utils/project/app_without_cms_app_class/views.pyo
 1312${PYSITELIB}/cms/test_utils/project/app_without_cms_file/__init__.py
 1313${PYSITELIB}/cms/test_utils/project/app_without_cms_file/__init__.pyc
 1314${PYSITELIB}/cms/test_utils/project/app_without_cms_file/__init__.pyo
 1315${PYSITELIB}/cms/test_utils/project/app_without_cms_file/admin.py
 1316${PYSITELIB}/cms/test_utils/project/app_without_cms_file/admin.pyc
 1317${PYSITELIB}/cms/test_utils/project/app_without_cms_file/admin.pyo
 1318${PYSITELIB}/cms/test_utils/project/app_without_cms_file/apps.py
 1319${PYSITELIB}/cms/test_utils/project/app_without_cms_file/apps.pyc
 1320${PYSITELIB}/cms/test_utils/project/app_without_cms_file/apps.pyo
 1321${PYSITELIB}/cms/test_utils/project/app_without_cms_file/models.py
 1322${PYSITELIB}/cms/test_utils/project/app_without_cms_file/models.pyc
 1323${PYSITELIB}/cms/test_utils/project/app_without_cms_file/models.pyo
 1324${PYSITELIB}/cms/test_utils/project/app_without_cms_file/views.py
 1325${PYSITELIB}/cms/test_utils/project/app_without_cms_file/views.pyc
 1326${PYSITELIB}/cms/test_utils/project/app_without_cms_file/views.pyo
 1327${PYSITELIB}/cms/test_utils/project/backwards_wizards/__init__.py
 1328${PYSITELIB}/cms/test_utils/project/backwards_wizards/__init__.pyc
 1329${PYSITELIB}/cms/test_utils/project/backwards_wizards/__init__.pyo
 1330${PYSITELIB}/cms/test_utils/project/backwards_wizards/cms_wizards.py
 1331${PYSITELIB}/cms/test_utils/project/backwards_wizards/cms_wizards.pyc
 1332${PYSITELIB}/cms/test_utils/project/backwards_wizards/cms_wizards.pyo
 1333${PYSITELIB}/cms/test_utils/project/backwards_wizards/wizards.py
 1334${PYSITELIB}/cms/test_utils/project/backwards_wizards/wizards.pyc
 1335${PYSITELIB}/cms/test_utils/project/backwards_wizards/wizards.pyo
797${PYSITELIB}/cms/test_utils/project/brokenpluginapp/__init__.py 1336${PYSITELIB}/cms/test_utils/project/brokenpluginapp/__init__.py
798${PYSITELIB}/cms/test_utils/project/brokenpluginapp/__init__.pyc 1337${PYSITELIB}/cms/test_utils/project/brokenpluginapp/__init__.pyc
799${PYSITELIB}/cms/test_utils/project/brokenpluginapp/__init__.pyo 1338${PYSITELIB}/cms/test_utils/project/brokenpluginapp/__init__.pyo
800${PYSITELIB}/cms/test_utils/project/brokenpluginapp/cms_plugins.py 1339${PYSITELIB}/cms/test_utils/project/brokenpluginapp/cms_plugins.py
801${PYSITELIB}/cms/test_utils/project/brokenpluginapp/cms_plugins.pyc 1340${PYSITELIB}/cms/test_utils/project/brokenpluginapp/cms_plugins.pyc
802${PYSITELIB}/cms/test_utils/project/brokenpluginapp/cms_plugins.pyo 1341${PYSITELIB}/cms/test_utils/project/brokenpluginapp/cms_plugins.pyo
803${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/__init__.py 1342${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/__init__.py
804${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/__init__.pyc 1343${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/__init__.pyc
805${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/__init__.pyo 1344${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/__init__.pyo
806${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/models.py 1345${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/models.py
807${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/models.pyc 1346${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/models.pyc
808${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/models.pyo 1347${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/models.pyo
809${PYSITELIB}/cms/test_utils/project/cms_urls_for_apphook_tests.py 1348${PYSITELIB}/cms/test_utils/project/cms_urls_for_apphook_tests.py
@@ -880,83 +1419,89 @@ ${PYSITELIB}/cms/test_utils/project/noad @@ -880,83 +1419,89 @@ ${PYSITELIB}/cms/test_utils/project/noad
880${PYSITELIB}/cms/test_utils/project/noadmin_urls.pyo 1419${PYSITELIB}/cms/test_utils/project/noadmin_urls.pyo
881${PYSITELIB}/cms/test_utils/project/nonroot_urls.py 1420${PYSITELIB}/cms/test_utils/project/nonroot_urls.py
882${PYSITELIB}/cms/test_utils/project/nonroot_urls.pyc 1421${PYSITELIB}/cms/test_utils/project/nonroot_urls.pyc
883${PYSITELIB}/cms/test_utils/project/nonroot_urls.pyo 1422${PYSITELIB}/cms/test_utils/project/nonroot_urls.pyo
884${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/__init__.py 1423${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/__init__.py
885${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/__init__.pyc 1424${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/__init__.pyc
886${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/__init__.pyo 1425${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/__init__.pyo
887${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/backends.py 1426${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/backends.py
888${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/backends.pyc 1427${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/backends.pyc
889${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/backends.pyo 1428${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/backends.pyo
890${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/models.py 1429${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/models.py
891${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/models.pyc 1430${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/models.pyc
892${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/models.pyo 1431${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/models.pyo
 1432${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/__init__.py
 1433${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/__init__.pyc
 1434${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/__init__.pyo
 1435${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/admin.py
 1436${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/admin.pyc
 1437${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/admin.pyo
 1438${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/models.py
 1439${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/models.pyc
 1440${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/models.pyo
 1441${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/urls.py
 1442${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/urls.pyc
 1443${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/urls.pyo
 1444${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/views.py
 1445${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/views.pyc
 1446${PYSITELIB}/cms/test_utils/project/placeholder_relation_field_app/views.pyo
893${PYSITELIB}/cms/test_utils/project/placeholderapp/__init__.py 1447${PYSITELIB}/cms/test_utils/project/placeholderapp/__init__.py
894${PYSITELIB}/cms/test_utils/project/placeholderapp/__init__.pyc 1448${PYSITELIB}/cms/test_utils/project/placeholderapp/__init__.pyc
895${PYSITELIB}/cms/test_utils/project/placeholderapp/__init__.pyo 1449${PYSITELIB}/cms/test_utils/project/placeholderapp/__init__.pyo
896${PYSITELIB}/cms/test_utils/project/placeholderapp/admin.py 1450${PYSITELIB}/cms/test_utils/project/placeholderapp/admin.py
897${PYSITELIB}/cms/test_utils/project/placeholderapp/admin.pyc 1451${PYSITELIB}/cms/test_utils/project/placeholderapp/admin.pyc
898${PYSITELIB}/cms/test_utils/project/placeholderapp/admin.pyo 1452${PYSITELIB}/cms/test_utils/project/placeholderapp/admin.pyo
899${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_apps.py 1453${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_apps.py
900${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_apps.pyc 1454${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_apps.pyc
901${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_apps.pyo 1455${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_apps.pyo
 1456${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_config.py
 1457${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_config.pyc
 1458${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_config.pyo
902${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_plugins.py 1459${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_plugins.py
903${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_plugins.pyc 1460${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_plugins.pyc
904${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_plugins.pyo 1461${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_plugins.pyo
905${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_toolbars.py 1462${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_toolbars.py
906${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_toolbars.pyc 1463${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_toolbars.pyc
907${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_toolbars.pyo 1464${PYSITELIB}/cms/test_utils/project/placeholderapp/cms_toolbars.pyo
908${PYSITELIB}/cms/test_utils/project/placeholderapp/exceptions.py 1465${PYSITELIB}/cms/test_utils/project/placeholderapp/exceptions.py
909${PYSITELIB}/cms/test_utils/project/placeholderapp/exceptions.pyc 1466${PYSITELIB}/cms/test_utils/project/placeholderapp/exceptions.pyc
910${PYSITELIB}/cms/test_utils/project/placeholderapp/exceptions.pyo 1467${PYSITELIB}/cms/test_utils/project/placeholderapp/exceptions.pyo
911${PYSITELIB}/cms/test_utils/project/placeholderapp/models.py 1468${PYSITELIB}/cms/test_utils/project/placeholderapp/models.py
912${PYSITELIB}/cms/test_utils/project/placeholderapp/models.pyc 1469${PYSITELIB}/cms/test_utils/project/placeholderapp/models.pyc
913${PYSITELIB}/cms/test_utils/project/placeholderapp/models.pyo 1470${PYSITELIB}/cms/test_utils/project/placeholderapp/models.pyo
914${PYSITELIB}/cms/test_utils/project/placeholderapp/nested_placeholderapp/__init__.py 
915${PYSITELIB}/cms/test_utils/project/placeholderapp/nested_placeholderapp/__init__.pyc 
916${PYSITELIB}/cms/test_utils/project/placeholderapp/nested_placeholderapp/__init__.pyo 
917${PYSITELIB}/cms/test_utils/project/placeholderapp/urls.py 1471${PYSITELIB}/cms/test_utils/project/placeholderapp/urls.py
918${PYSITELIB}/cms/test_utils/project/placeholderapp/urls.pyc 1472${PYSITELIB}/cms/test_utils/project/placeholderapp/urls.pyc
919${PYSITELIB}/cms/test_utils/project/placeholderapp/urls.pyo 1473${PYSITELIB}/cms/test_utils/project/placeholderapp/urls.pyo
920${PYSITELIB}/cms/test_utils/project/placeholderapp/views.py 1474${PYSITELIB}/cms/test_utils/project/placeholderapp/views.py
921${PYSITELIB}/cms/test_utils/project/placeholderapp/views.pyc 1475${PYSITELIB}/cms/test_utils/project/placeholderapp/views.pyc
922${PYSITELIB}/cms/test_utils/project/placeholderapp/views.pyo 1476${PYSITELIB}/cms/test_utils/project/placeholderapp/views.pyo
923${PYSITELIB}/cms/test_utils/project/placeholderapp_urls.py 1477${PYSITELIB}/cms/test_utils/project/placeholderapp_urls.py
924${PYSITELIB}/cms/test_utils/project/placeholderapp_urls.pyc 1478${PYSITELIB}/cms/test_utils/project/placeholderapp_urls.pyc
925${PYSITELIB}/cms/test_utils/project/placeholderapp_urls.pyo 1479${PYSITELIB}/cms/test_utils/project/placeholderapp_urls.pyo
926${PYSITELIB}/cms/test_utils/project/pluginapp/__init__.py 1480${PYSITELIB}/cms/test_utils/project/pluginapp/__init__.py
927${PYSITELIB}/cms/test_utils/project/pluginapp/__init__.pyc 1481${PYSITELIB}/cms/test_utils/project/pluginapp/__init__.pyc
928${PYSITELIB}/cms/test_utils/project/pluginapp/__init__.pyo 1482${PYSITELIB}/cms/test_utils/project/pluginapp/__init__.pyo
929${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/__init__.py 1483${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/__init__.py
930${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/__init__.pyc 1484${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/__init__.pyc
931${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/__init__.pyo 1485${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/__init__.pyo
932${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/__init__.py 1486${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/__init__.py
933${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/__init__.pyc 1487${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/__init__.pyc
934${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/__init__.pyo 1488${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/__init__.pyo
935${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/cms_plugins.py 1489${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/cms_plugins.py
936${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/cms_plugins.pyc 1490${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/cms_plugins.pyc
937${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/cms_plugins.pyo 1491${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/cms_plugins.pyo
938${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/models.py 1492${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/models.py
939${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/models.pyc 1493${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/models.pyc
940${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/models.pyo 1494${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/caching/models.pyo
941${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/dynamic_js_loading/__init__.py 
942${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/dynamic_js_loading/__init__.pyc 
943${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/dynamic_js_loading/__init__.pyo 
944${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/dynamic_js_loading/cms_plugins.py 
945${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/dynamic_js_loading/cms_plugins.pyc 
946${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/dynamic_js_loading/cms_plugins.pyo 
947${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/dynamic_js_loading/models.py 
948${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/dynamic_js_loading/models.pyc 
949${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/dynamic_js_loading/models.pyo 
950${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/__init__.py 1495${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/__init__.py
951${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/__init__.pyc 1496${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/__init__.pyc
952${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/__init__.pyo 1497${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/__init__.pyo
953${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/cms_plugins.py 1498${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/cms_plugins.py
954${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/cms_plugins.pyc 1499${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/cms_plugins.pyc
955${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/cms_plugins.pyo 1500${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/cms_plugins.pyo
956${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/models.py 1501${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/models.py
957${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/models.pyc 1502${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/models.pyc
958${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/models.pyo 1503${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/extra_context/models.pyo
959${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/link/__init__.py 1504${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/link/__init__.py
960${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/link/__init__.pyc 1505${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/link/__init__.pyc
961${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/link/__init__.pyo 1506${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/link/__init__.pyo
962${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/link/cms_plugins.py 1507${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/link/cms_plugins.py
@@ -1000,26 +1545,35 @@ ${PYSITELIB}/cms/test_utils/project/plug @@ -1000,26 +1545,35 @@ ${PYSITELIB}/cms/test_utils/project/plug
1000${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multicolumn/models.pyo 1545${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multicolumn/models.pyo
1001${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/__init__.py 1546${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/__init__.py
1002${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/__init__.pyc 1547${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/__init__.pyc
1003${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/__init__.pyo 1548${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/__init__.pyo
1004${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/cms_plugins.py 1549${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/cms_plugins.py
1005${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/cms_plugins.pyc 1550${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/cms_plugins.pyc
1006${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/cms_plugins.pyo 1551${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/cms_plugins.pyo
1007${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/forms.py 1552${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/forms.py
1008${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/forms.pyc 1553${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/forms.pyc
1009${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/forms.pyo 1554${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/forms.pyo
1010${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/models.py 1555${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/models.py
1011${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/models.pyc 1556${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/models.pyc
1012${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/models.pyo 1557${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/multiwrap/models.pyo
 1558${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/no_custom_model/__init__.py
 1559${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/no_custom_model/__init__.pyc
 1560${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/no_custom_model/__init__.pyo
 1561${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/no_custom_model/cms_plugins.py
 1562${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/no_custom_model/cms_plugins.pyc
 1563${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/no_custom_model/cms_plugins.pyo
 1564${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/no_custom_model/models.py
 1565${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/no_custom_model/models.pyc
 1566${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/no_custom_model/models.pyo
1013${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/__init__.py 1567${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/__init__.py
1014${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/__init__.pyc 1568${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/__init__.pyc
1015${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/__init__.pyo 1569${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/__init__.pyo
1016${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/models.py 1570${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/models.py
1017${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/models.pyc 1571${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/models.pyc
1018${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/models.pyo 1572${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/one_thing/models.pyo
1019${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/__init__.py 1573${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/__init__.py
1020${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/__init__.pyc 1574${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/__init__.pyc
1021${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/__init__.pyo 1575${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/__init__.pyo
1022${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/cms_plugins.py 1576${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/cms_plugins.py
1023${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/cms_plugins.pyc 1577${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/cms_plugins.pyc
1024${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/cms_plugins.pyo 1578${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/cms_plugins.pyo
1025${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/models.py 1579${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/revdesc/models.py
@@ -1042,32 +1596,38 @@ ${PYSITELIB}/cms/test_utils/project/plug @@ -1042,32 +1596,38 @@ ${PYSITELIB}/cms/test_utils/project/plug
1042${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/validation/cms_plugins.pyo 1596${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/validation/cms_plugins.pyo
1043${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/validation/models.py 1597${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/validation/models.py
1044${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/validation/models.pyc 1598${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/validation/models.pyc
1045${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/validation/models.pyo 1599${PYSITELIB}/cms/test_utils/project/pluginapp/plugins/validation/models.pyo
1046${PYSITELIB}/cms/test_utils/project/sampleapp/__init__.py 1600${PYSITELIB}/cms/test_utils/project/sampleapp/__init__.py
1047${PYSITELIB}/cms/test_utils/project/sampleapp/__init__.pyc 1601${PYSITELIB}/cms/test_utils/project/sampleapp/__init__.pyc
1048${PYSITELIB}/cms/test_utils/project/sampleapp/__init__.pyo 1602${PYSITELIB}/cms/test_utils/project/sampleapp/__init__.pyo
1049${PYSITELIB}/cms/test_utils/project/sampleapp/admin.py 1603${PYSITELIB}/cms/test_utils/project/sampleapp/admin.py
1050${PYSITELIB}/cms/test_utils/project/sampleapp/admin.pyc 1604${PYSITELIB}/cms/test_utils/project/sampleapp/admin.pyc
1051${PYSITELIB}/cms/test_utils/project/sampleapp/admin.pyo 1605${PYSITELIB}/cms/test_utils/project/sampleapp/admin.pyo
1052${PYSITELIB}/cms/test_utils/project/sampleapp/cms_apps.py 1606${PYSITELIB}/cms/test_utils/project/sampleapp/cms_apps.py
1053${PYSITELIB}/cms/test_utils/project/sampleapp/cms_apps.pyc 1607${PYSITELIB}/cms/test_utils/project/sampleapp/cms_apps.pyc
1054${PYSITELIB}/cms/test_utils/project/sampleapp/cms_apps.pyo 1608${PYSITELIB}/cms/test_utils/project/sampleapp/cms_apps.pyo
 1609${PYSITELIB}/cms/test_utils/project/sampleapp/cms_config.py
 1610${PYSITELIB}/cms/test_utils/project/sampleapp/cms_config.pyc
 1611${PYSITELIB}/cms/test_utils/project/sampleapp/cms_config.pyo
1055${PYSITELIB}/cms/test_utils/project/sampleapp/cms_menus.py 1612${PYSITELIB}/cms/test_utils/project/sampleapp/cms_menus.py
1056${PYSITELIB}/cms/test_utils/project/sampleapp/cms_menus.pyc 1613${PYSITELIB}/cms/test_utils/project/sampleapp/cms_menus.pyc
1057${PYSITELIB}/cms/test_utils/project/sampleapp/cms_menus.pyo 1614${PYSITELIB}/cms/test_utils/project/sampleapp/cms_menus.pyo
1058${PYSITELIB}/cms/test_utils/project/sampleapp/cms_toolbars.py 1615${PYSITELIB}/cms/test_utils/project/sampleapp/cms_toolbars.py
1059${PYSITELIB}/cms/test_utils/project/sampleapp/cms_toolbars.pyc 1616${PYSITELIB}/cms/test_utils/project/sampleapp/cms_toolbars.pyc
1060${PYSITELIB}/cms/test_utils/project/sampleapp/cms_toolbars.pyo 1617${PYSITELIB}/cms/test_utils/project/sampleapp/cms_toolbars.pyo
 1618${PYSITELIB}/cms/test_utils/project/sampleapp/cms_wizards.py
 1619${PYSITELIB}/cms/test_utils/project/sampleapp/cms_wizards.pyc
 1620${PYSITELIB}/cms/test_utils/project/sampleapp/cms_wizards.pyo
1061${PYSITELIB}/cms/test_utils/project/sampleapp/forms.py 1621${PYSITELIB}/cms/test_utils/project/sampleapp/forms.py
1062${PYSITELIB}/cms/test_utils/project/sampleapp/forms.pyc 1622${PYSITELIB}/cms/test_utils/project/sampleapp/forms.pyc
1063${PYSITELIB}/cms/test_utils/project/sampleapp/forms.pyo 1623${PYSITELIB}/cms/test_utils/project/sampleapp/forms.pyo
1064${PYSITELIB}/cms/test_utils/project/sampleapp/models.py 1624${PYSITELIB}/cms/test_utils/project/sampleapp/models.py
1065${PYSITELIB}/cms/test_utils/project/sampleapp/models.pyc 1625${PYSITELIB}/cms/test_utils/project/sampleapp/models.pyc
1066${PYSITELIB}/cms/test_utils/project/sampleapp/models.pyo 1626${PYSITELIB}/cms/test_utils/project/sampleapp/models.pyo
1067${PYSITELIB}/cms/test_utils/project/sampleapp/ns_urls.py 1627${PYSITELIB}/cms/test_utils/project/sampleapp/ns_urls.py
1068${PYSITELIB}/cms/test_utils/project/sampleapp/ns_urls.pyc 1628${PYSITELIB}/cms/test_utils/project/sampleapp/ns_urls.pyc
1069${PYSITELIB}/cms/test_utils/project/sampleapp/ns_urls.pyo 1629${PYSITELIB}/cms/test_utils/project/sampleapp/ns_urls.pyo
1070${PYSITELIB}/cms/test_utils/project/sampleapp/urls.py 1630${PYSITELIB}/cms/test_utils/project/sampleapp/urls.py
1071${PYSITELIB}/cms/test_utils/project/sampleapp/urls.pyc 1631${PYSITELIB}/cms/test_utils/project/sampleapp/urls.pyc
1072${PYSITELIB}/cms/test_utils/project/sampleapp/urls.pyo 1632${PYSITELIB}/cms/test_utils/project/sampleapp/urls.pyo
1073${PYSITELIB}/cms/test_utils/project/sampleapp/urls2.py 1633${PYSITELIB}/cms/test_utils/project/sampleapp/urls2.py
@@ -1129,80 +1689,83 @@ ${PYSITELIB}/cms/test_utils/testcases.py @@ -1129,80 +1689,83 @@ ${PYSITELIB}/cms/test_utils/testcases.py
1129${PYSITELIB}/cms/test_utils/testcases.pyo 1689${PYSITELIB}/cms/test_utils/testcases.pyo
1130${PYSITELIB}/cms/test_utils/tmpdir.py 1690${PYSITELIB}/cms/test_utils/tmpdir.py
1131${PYSITELIB}/cms/test_utils/tmpdir.pyc 1691${PYSITELIB}/cms/test_utils/tmpdir.pyc
1132${PYSITELIB}/cms/test_utils/tmpdir.pyo 1692${PYSITELIB}/cms/test_utils/tmpdir.pyo
1133${PYSITELIB}/cms/test_utils/util/__init__.py 1693${PYSITELIB}/cms/test_utils/util/__init__.py
1134${PYSITELIB}/cms/test_utils/util/__init__.pyc 1694${PYSITELIB}/cms/test_utils/util/__init__.pyc
1135${PYSITELIB}/cms/test_utils/util/__init__.pyo 1695${PYSITELIB}/cms/test_utils/util/__init__.pyo
1136${PYSITELIB}/cms/test_utils/util/context_managers.py 1696${PYSITELIB}/cms/test_utils/util/context_managers.py
1137${PYSITELIB}/cms/test_utils/util/context_managers.pyc 1697${PYSITELIB}/cms/test_utils/util/context_managers.pyc
1138${PYSITELIB}/cms/test_utils/util/context_managers.pyo 1698${PYSITELIB}/cms/test_utils/util/context_managers.pyo
1139${PYSITELIB}/cms/test_utils/util/fuzzy_int.py 1699${PYSITELIB}/cms/test_utils/util/fuzzy_int.py
1140${PYSITELIB}/cms/test_utils/util/fuzzy_int.pyc 1700${PYSITELIB}/cms/test_utils/util/fuzzy_int.pyc
1141${PYSITELIB}/cms/test_utils/util/fuzzy_int.pyo 1701${PYSITELIB}/cms/test_utils/util/fuzzy_int.pyo
 1702${PYSITELIB}/cms/test_utils/util/grouper.py
 1703${PYSITELIB}/cms/test_utils/util/grouper.pyc
 1704${PYSITELIB}/cms/test_utils/util/grouper.pyo
1142${PYSITELIB}/cms/test_utils/util/menu_extender.py 1705${PYSITELIB}/cms/test_utils/util/menu_extender.py
1143${PYSITELIB}/cms/test_utils/util/menu_extender.pyc 1706${PYSITELIB}/cms/test_utils/util/menu_extender.pyc
1144${PYSITELIB}/cms/test_utils/util/menu_extender.pyo 1707${PYSITELIB}/cms/test_utils/util/menu_extender.pyo
1145${PYSITELIB}/cms/test_utils/util/mock.py 1708${PYSITELIB}/cms/test_utils/util/mock.py
1146${PYSITELIB}/cms/test_utils/util/mock.pyc 1709${PYSITELIB}/cms/test_utils/util/mock.pyc
1147${PYSITELIB}/cms/test_utils/util/mock.pyo 1710${PYSITELIB}/cms/test_utils/util/mock.pyo
 1711${PYSITELIB}/cms/test_utils/util/static_analysis.py
 1712${PYSITELIB}/cms/test_utils/util/static_analysis.pyc
 1713${PYSITELIB}/cms/test_utils/util/static_analysis.pyo
1148${PYSITELIB}/cms/tests/__init__.py 1714${PYSITELIB}/cms/tests/__init__.py
1149${PYSITELIB}/cms/tests/__init__.pyc 1715${PYSITELIB}/cms/tests/__init__.pyc
1150${PYSITELIB}/cms/tests/__init__.pyo 1716${PYSITELIB}/cms/tests/__init__.pyo
1151${PYSITELIB}/cms/tests/test_add_page.py 
1152${PYSITELIB}/cms/tests/test_add_page.pyc 
1153${PYSITELIB}/cms/tests/test_add_page.pyo 
1154${PYSITELIB}/cms/tests/test_admin.py 1717${PYSITELIB}/cms/tests/test_admin.py
1155${PYSITELIB}/cms/tests/test_admin.pyc 1718${PYSITELIB}/cms/tests/test_admin.pyc
1156${PYSITELIB}/cms/tests/test_admin.pyo 1719${PYSITELIB}/cms/tests/test_admin.pyo
1157${PYSITELIB}/cms/tests/test_alias.py 
1158${PYSITELIB}/cms/tests/test_alias.pyc 
1159${PYSITELIB}/cms/tests/test_alias.pyo 
1160${PYSITELIB}/cms/tests/test_api.py 1720${PYSITELIB}/cms/tests/test_api.py
1161${PYSITELIB}/cms/tests/test_api.pyc 1721${PYSITELIB}/cms/tests/test_api.pyc
1162${PYSITELIB}/cms/tests/test_api.pyo 1722${PYSITELIB}/cms/tests/test_api.pyo
 1723${PYSITELIB}/cms/tests/test_app_registration.py
 1724${PYSITELIB}/cms/tests/test_app_registration.pyc
 1725${PYSITELIB}/cms/tests/test_app_registration.pyo
1163${PYSITELIB}/cms/tests/test_apphooks.py 1726${PYSITELIB}/cms/tests/test_apphooks.py
1164${PYSITELIB}/cms/tests/test_apphooks.pyc 1727${PYSITELIB}/cms/tests/test_apphooks.pyc
1165${PYSITELIB}/cms/tests/test_apphooks.pyo 1728${PYSITELIB}/cms/tests/test_apphooks.pyo
1166${PYSITELIB}/cms/tests/test_assets.py 
1167${PYSITELIB}/cms/tests/test_assets.pyc 
1168${PYSITELIB}/cms/tests/test_assets.pyo 
1169${PYSITELIB}/cms/tests/test_cache.py 1729${PYSITELIB}/cms/tests/test_cache.py
1170${PYSITELIB}/cms/tests/test_cache.pyc 1730${PYSITELIB}/cms/tests/test_cache.pyc
1171${PYSITELIB}/cms/tests/test_cache.pyo 1731${PYSITELIB}/cms/tests/test_cache.pyo
1172${PYSITELIB}/cms/tests/test_check.py 1732${PYSITELIB}/cms/tests/test_check.py
1173${PYSITELIB}/cms/tests/test_check.pyc 1733${PYSITELIB}/cms/tests/test_check.pyc
1174${PYSITELIB}/cms/tests/test_check.pyo 1734${PYSITELIB}/cms/tests/test_check.pyo
1175${PYSITELIB}/cms/tests/test_compatibility_with_4x_branch.py 1735${PYSITELIB}/cms/tests/test_cms_config_wizards.py
1176${PYSITELIB}/cms/tests/test_compatibility_with_4x_branch.pyc 1736${PYSITELIB}/cms/tests/test_cms_config_wizards.pyc
1177${PYSITELIB}/cms/tests/test_compatibility_with_4x_branch.pyo 1737${PYSITELIB}/cms/tests/test_cms_config_wizards.pyo
1178${PYSITELIB}/cms/tests/test_docs.py 
1179${PYSITELIB}/cms/tests/test_docs.pyc 
1180${PYSITELIB}/cms/tests/test_docs.pyo 
1181${PYSITELIB}/cms/tests/test_extensions.py 1738${PYSITELIB}/cms/tests/test_extensions.py
1182${PYSITELIB}/cms/tests/test_extensions.pyc 1739${PYSITELIB}/cms/tests/test_extensions.pyc
1183${PYSITELIB}/cms/tests/test_extensions.pyo 1740${PYSITELIB}/cms/tests/test_extensions.pyo
1184${PYSITELIB}/cms/tests/test_fields.py 
1185${PYSITELIB}/cms/tests/test_fields.pyc 
1186${PYSITELIB}/cms/tests/test_fields.pyo 
1187${PYSITELIB}/cms/tests/test_fixture_loading.py 1741${PYSITELIB}/cms/tests/test_fixture_loading.py
1188${PYSITELIB}/cms/tests/test_fixture_loading.pyc 1742${PYSITELIB}/cms/tests/test_fixture_loading.pyc
1189${PYSITELIB}/cms/tests/test_fixture_loading.pyo 1743${PYSITELIB}/cms/tests/test_fixture_loading.pyo
1190${PYSITELIB}/cms/tests/test_forms.py 1744${PYSITELIB}/cms/tests/test_forms.py
1191${PYSITELIB}/cms/tests/test_forms.pyc 1745${PYSITELIB}/cms/tests/test_forms.pyc
1192${PYSITELIB}/cms/tests/test_forms.pyo 1746${PYSITELIB}/cms/tests/test_forms.pyo
 1747${PYSITELIB}/cms/tests/test_grouper_admin.py
 1748${PYSITELIB}/cms/tests/test_grouper_admin.pyc
 1749${PYSITELIB}/cms/tests/test_grouper_admin.pyo
 1750${PYSITELIB}/cms/tests/test_helpers.py
 1751${PYSITELIB}/cms/tests/test_helpers.pyc
 1752${PYSITELIB}/cms/tests/test_helpers.pyo
1193${PYSITELIB}/cms/tests/test_i18n.py 1753${PYSITELIB}/cms/tests/test_i18n.py
1194${PYSITELIB}/cms/tests/test_i18n.pyc 1754${PYSITELIB}/cms/tests/test_i18n.pyc
1195${PYSITELIB}/cms/tests/test_i18n.pyo 1755${PYSITELIB}/cms/tests/test_i18n.pyo
 1756${PYSITELIB}/cms/tests/test_log_entries.py
 1757${PYSITELIB}/cms/tests/test_log_entries.pyc
 1758${PYSITELIB}/cms/tests/test_log_entries.pyo
1196${PYSITELIB}/cms/tests/test_mail.py 1759${PYSITELIB}/cms/tests/test_mail.py
1197${PYSITELIB}/cms/tests/test_mail.pyc 1760${PYSITELIB}/cms/tests/test_mail.pyc
1198${PYSITELIB}/cms/tests/test_mail.pyo 1761${PYSITELIB}/cms/tests/test_mail.pyo
1199${PYSITELIB}/cms/tests/test_management.py 1762${PYSITELIB}/cms/tests/test_management.py
1200${PYSITELIB}/cms/tests/test_management.pyc 1763${PYSITELIB}/cms/tests/test_management.pyc
1201${PYSITELIB}/cms/tests/test_management.pyo 1764${PYSITELIB}/cms/tests/test_management.pyo
1202${PYSITELIB}/cms/tests/test_menu.py 1765${PYSITELIB}/cms/tests/test_menu.py
1203${PYSITELIB}/cms/tests/test_menu.pyc 1766${PYSITELIB}/cms/tests/test_menu.pyc
1204${PYSITELIB}/cms/tests/test_menu.pyo 1767${PYSITELIB}/cms/tests/test_menu.pyo
1205${PYSITELIB}/cms/tests/test_menu_page_viewperm.py 1768${PYSITELIB}/cms/tests/test_menu_page_viewperm.py
1206${PYSITELIB}/cms/tests/test_menu_page_viewperm.pyc 1769${PYSITELIB}/cms/tests/test_menu_page_viewperm.pyc
1207${PYSITELIB}/cms/tests/test_menu_page_viewperm.pyo 1770${PYSITELIB}/cms/tests/test_menu_page_viewperm.pyo
1208${PYSITELIB}/cms/tests/test_menu_page_viewperm_staff.py 1771${PYSITELIB}/cms/tests/test_menu_page_viewperm_staff.py
@@ -1240,74 +1803,80 @@ ${PYSITELIB}/cms/tests/test_page_user_ad @@ -1240,74 +1803,80 @@ ${PYSITELIB}/cms/tests/test_page_user_ad
1240${PYSITELIB}/cms/tests/test_page_user_admin.pyo 1803${PYSITELIB}/cms/tests/test_page_user_admin.pyo
1241${PYSITELIB}/cms/tests/test_page_user_group_admin.py 1804${PYSITELIB}/cms/tests/test_page_user_group_admin.py
1242${PYSITELIB}/cms/tests/test_page_user_group_admin.pyc 1805${PYSITELIB}/cms/tests/test_page_user_group_admin.pyc
1243${PYSITELIB}/cms/tests/test_page_user_group_admin.pyo 1806${PYSITELIB}/cms/tests/test_page_user_group_admin.pyo
1244${PYSITELIB}/cms/tests/test_permissions.py 1807${PYSITELIB}/cms/tests/test_permissions.py
1245${PYSITELIB}/cms/tests/test_permissions.pyc 1808${PYSITELIB}/cms/tests/test_permissions.pyc
1246${PYSITELIB}/cms/tests/test_permissions.pyo 1809${PYSITELIB}/cms/tests/test_permissions.pyo
1247${PYSITELIB}/cms/tests/test_permmod.py 1810${PYSITELIB}/cms/tests/test_permmod.py
1248${PYSITELIB}/cms/tests/test_permmod.pyc 1811${PYSITELIB}/cms/tests/test_permmod.pyc
1249${PYSITELIB}/cms/tests/test_permmod.pyo 1812${PYSITELIB}/cms/tests/test_permmod.pyo
1250${PYSITELIB}/cms/tests/test_placeholder.py 1813${PYSITELIB}/cms/tests/test_placeholder.py
1251${PYSITELIB}/cms/tests/test_placeholder.pyc 1814${PYSITELIB}/cms/tests/test_placeholder.pyc
1252${PYSITELIB}/cms/tests/test_placeholder.pyo 1815${PYSITELIB}/cms/tests/test_placeholder.pyo
 1816${PYSITELIB}/cms/tests/test_placeholder_admin.py
 1817${PYSITELIB}/cms/tests/test_placeholder_admin.pyc
 1818${PYSITELIB}/cms/tests/test_placeholder_admin.pyo
1253${PYSITELIB}/cms/tests/test_placeholder_app_admin.py 1819${PYSITELIB}/cms/tests/test_placeholder_app_admin.py
1254${PYSITELIB}/cms/tests/test_placeholder_app_admin.pyc 1820${PYSITELIB}/cms/tests/test_placeholder_app_admin.pyc
1255${PYSITELIB}/cms/tests/test_placeholder_app_admin.pyo 1821${PYSITELIB}/cms/tests/test_placeholder_app_admin.pyo
 1822${PYSITELIB}/cms/tests/test_placeholder_checks.py
 1823${PYSITELIB}/cms/tests/test_placeholder_checks.pyc
 1824${PYSITELIB}/cms/tests/test_placeholder_checks.pyo
1256${PYSITELIB}/cms/tests/test_placeholder_operation_signals.py 1825${PYSITELIB}/cms/tests/test_placeholder_operation_signals.py
1257${PYSITELIB}/cms/tests/test_placeholder_operation_signals.pyc 1826${PYSITELIB}/cms/tests/test_placeholder_operation_signals.pyc
1258${PYSITELIB}/cms/tests/test_placeholder_operation_signals.pyo 1827${PYSITELIB}/cms/tests/test_placeholder_operation_signals.pyo
1259${PYSITELIB}/cms/tests/test_plugin_renderers.py 1828${PYSITELIB}/cms/tests/test_plugin_renderers.py
1260${PYSITELIB}/cms/tests/test_plugin_renderers.pyc 1829${PYSITELIB}/cms/tests/test_plugin_renderers.pyc
1261${PYSITELIB}/cms/tests/test_plugin_renderers.pyo 1830${PYSITELIB}/cms/tests/test_plugin_renderers.pyo
1262${PYSITELIB}/cms/tests/test_plugins.py 1831${PYSITELIB}/cms/tests/test_plugins.py
1263${PYSITELIB}/cms/tests/test_plugins.pyc 1832${PYSITELIB}/cms/tests/test_plugins.pyc
1264${PYSITELIB}/cms/tests/test_plugins.pyo 1833${PYSITELIB}/cms/tests/test_plugins.pyo
1265${PYSITELIB}/cms/tests/test_po.py 1834${PYSITELIB}/cms/tests/test_po.py
1266${PYSITELIB}/cms/tests/test_po.pyc 1835${PYSITELIB}/cms/tests/test_po.pyc
1267${PYSITELIB}/cms/tests/test_po.pyo 1836${PYSITELIB}/cms/tests/test_po.pyo
1268${PYSITELIB}/cms/tests/test_publisher.py 
1269${PYSITELIB}/cms/tests/test_publisher.pyc 
1270${PYSITELIB}/cms/tests/test_publisher.pyo 
1271${PYSITELIB}/cms/tests/test_rendering.py 1837${PYSITELIB}/cms/tests/test_rendering.py
1272${PYSITELIB}/cms/tests/test_rendering.pyc 1838${PYSITELIB}/cms/tests/test_rendering.pyc
1273${PYSITELIB}/cms/tests/test_rendering.pyo 1839${PYSITELIB}/cms/tests/test_rendering.pyo
1274${PYSITELIB}/cms/tests/test_security.py 1840${PYSITELIB}/cms/tests/test_security.py
1275${PYSITELIB}/cms/tests/test_security.pyc 1841${PYSITELIB}/cms/tests/test_security.pyc
1276${PYSITELIB}/cms/tests/test_security.pyo 1842${PYSITELIB}/cms/tests/test_security.pyo
1277${PYSITELIB}/cms/tests/test_settings.py 1843${PYSITELIB}/cms/tests/test_settings.py
1278${PYSITELIB}/cms/tests/test_settings.pyc 1844${PYSITELIB}/cms/tests/test_settings.pyc
1279${PYSITELIB}/cms/tests/test_settings.pyo 1845${PYSITELIB}/cms/tests/test_settings.pyo
1280${PYSITELIB}/cms/tests/test_signals.py 1846${PYSITELIB}/cms/tests/test_signals.py
1281${PYSITELIB}/cms/tests/test_signals.pyc 1847${PYSITELIB}/cms/tests/test_signals.pyc
1282${PYSITELIB}/cms/tests/test_signals.pyo 1848${PYSITELIB}/cms/tests/test_signals.pyo
1283${PYSITELIB}/cms/tests/test_site.py 1849${PYSITELIB}/cms/tests/test_site.py
1284${PYSITELIB}/cms/tests/test_site.pyc 1850${PYSITELIB}/cms/tests/test_site.pyc
1285${PYSITELIB}/cms/tests/test_site.pyo 1851${PYSITELIB}/cms/tests/test_site.pyo
1286${PYSITELIB}/cms/tests/test_sitemap.py 1852${PYSITELIB}/cms/tests/test_sitemap.py
1287${PYSITELIB}/cms/tests/test_sitemap.pyc 1853${PYSITELIB}/cms/tests/test_sitemap.pyc
1288${PYSITELIB}/cms/tests/test_sitemap.pyo 1854${PYSITELIB}/cms/tests/test_sitemap.pyo
1289${PYSITELIB}/cms/tests/test_static_placeholder.py 1855${PYSITELIB}/cms/tests/test_static_analysis.py
1290${PYSITELIB}/cms/tests/test_static_placeholder.pyc 1856${PYSITELIB}/cms/tests/test_static_analysis.pyc
1291${PYSITELIB}/cms/tests/test_static_placeholder.pyo 1857${PYSITELIB}/cms/tests/test_static_analysis.pyo
1292${PYSITELIB}/cms/tests/test_templates.py 1858${PYSITELIB}/cms/tests/test_templates.py
1293${PYSITELIB}/cms/tests/test_templates.pyc 1859${PYSITELIB}/cms/tests/test_templates.pyc
1294${PYSITELIB}/cms/tests/test_templates.pyo 1860${PYSITELIB}/cms/tests/test_templates.pyo
1295${PYSITELIB}/cms/tests/test_templatetags.py 1861${PYSITELIB}/cms/tests/test_templatetags.py
1296${PYSITELIB}/cms/tests/test_templatetags.pyc 1862${PYSITELIB}/cms/tests/test_templatetags.pyc
1297${PYSITELIB}/cms/tests/test_templatetags.pyo 1863${PYSITELIB}/cms/tests/test_templatetags.pyo
1298${PYSITELIB}/cms/tests/test_toolbar.py 1864${PYSITELIB}/cms/tests/test_toolbar.py
1299${PYSITELIB}/cms/tests/test_toolbar.pyc 1865${PYSITELIB}/cms/tests/test_toolbar.pyc
1300${PYSITELIB}/cms/tests/test_toolbar.pyo 1866${PYSITELIB}/cms/tests/test_toolbar.pyo
 1867${PYSITELIB}/cms/tests/test_toolbar_enabled_models.py
 1868${PYSITELIB}/cms/tests/test_toolbar_enabled_models.pyc
 1869${PYSITELIB}/cms/tests/test_toolbar_enabled_models.pyo
1301${PYSITELIB}/cms/tests/test_toolbar_pool.py 1870${PYSITELIB}/cms/tests/test_toolbar_pool.py
1302${PYSITELIB}/cms/tests/test_toolbar_pool.pyc 1871${PYSITELIB}/cms/tests/test_toolbar_pool.pyc
1303${PYSITELIB}/cms/tests/test_toolbar_pool.pyo 1872${PYSITELIB}/cms/tests/test_toolbar_pool.pyo
1304${PYSITELIB}/cms/tests/test_urlutils.py 1873${PYSITELIB}/cms/tests/test_urlutils.py
1305${PYSITELIB}/cms/tests/test_urlutils.pyc 1874${PYSITELIB}/cms/tests/test_urlutils.pyc
1306${PYSITELIB}/cms/tests/test_urlutils.pyo 1875${PYSITELIB}/cms/tests/test_urlutils.pyo
1307${PYSITELIB}/cms/tests/test_views.py 1876${PYSITELIB}/cms/tests/test_views.py
1308${PYSITELIB}/cms/tests/test_views.pyc 1877${PYSITELIB}/cms/tests/test_views.pyc
1309${PYSITELIB}/cms/tests/test_views.pyo 1878${PYSITELIB}/cms/tests/test_views.pyo
1310${PYSITELIB}/cms/tests/test_widgets.py 1879${PYSITELIB}/cms/tests/test_widgets.py
1311${PYSITELIB}/cms/tests/test_widgets.pyc 1880${PYSITELIB}/cms/tests/test_widgets.pyc
1312${PYSITELIB}/cms/tests/test_widgets.pyo 1881${PYSITELIB}/cms/tests/test_widgets.pyo
1313${PYSITELIB}/cms/tests/test_wizards.py 1882${PYSITELIB}/cms/tests/test_wizards.py
@@ -1351,47 +1920,41 @@ ${PYSITELIB}/cms/utils/compat/__init__.p @@ -1351,47 +1920,41 @@ ${PYSITELIB}/cms/utils/compat/__init__.p
1351${PYSITELIB}/cms/utils/compat/__init__.pyo 1920${PYSITELIB}/cms/utils/compat/__init__.pyo
1352${PYSITELIB}/cms/utils/compat/dj.py 1921${PYSITELIB}/cms/utils/compat/dj.py
1353${PYSITELIB}/cms/utils/compat/dj.pyc 1922${PYSITELIB}/cms/utils/compat/dj.pyc
1354${PYSITELIB}/cms/utils/compat/dj.pyo 1923${PYSITELIB}/cms/utils/compat/dj.pyo
1355${PYSITELIB}/cms/utils/compat/forms.py 1924${PYSITELIB}/cms/utils/compat/forms.py
1356${PYSITELIB}/cms/utils/compat/forms.pyc 1925${PYSITELIB}/cms/utils/compat/forms.pyc
1357${PYSITELIB}/cms/utils/compat/forms.pyo 1926${PYSITELIB}/cms/utils/compat/forms.pyo
1358${PYSITELIB}/cms/utils/compat/response.py 1927${PYSITELIB}/cms/utils/compat/response.py
1359${PYSITELIB}/cms/utils/compat/response.pyc 1928${PYSITELIB}/cms/utils/compat/response.pyc
1360${PYSITELIB}/cms/utils/compat/response.pyo 1929${PYSITELIB}/cms/utils/compat/response.pyo
1361${PYSITELIB}/cms/utils/conf.py 1930${PYSITELIB}/cms/utils/conf.py
1362${PYSITELIB}/cms/utils/conf.pyc 1931${PYSITELIB}/cms/utils/conf.pyc
1363${PYSITELIB}/cms/utils/conf.pyo 1932${PYSITELIB}/cms/utils/conf.pyo
1364${PYSITELIB}/cms/utils/copy_plugins.py 
1365${PYSITELIB}/cms/utils/copy_plugins.pyc 
1366${PYSITELIB}/cms/utils/copy_plugins.pyo 
1367${PYSITELIB}/cms/utils/decorators.py 1933${PYSITELIB}/cms/utils/decorators.py
1368${PYSITELIB}/cms/utils/decorators.pyc 1934${PYSITELIB}/cms/utils/decorators.pyc
1369${PYSITELIB}/cms/utils/decorators.pyo 1935${PYSITELIB}/cms/utils/decorators.pyo
1370${PYSITELIB}/cms/utils/encoder.py 1936${PYSITELIB}/cms/utils/encoder.py
1371${PYSITELIB}/cms/utils/encoder.pyc 1937${PYSITELIB}/cms/utils/encoder.pyc
1372${PYSITELIB}/cms/utils/encoder.pyo 1938${PYSITELIB}/cms/utils/encoder.pyo
1373${PYSITELIB}/cms/utils/helpers.py 1939${PYSITELIB}/cms/utils/helpers.py
1374${PYSITELIB}/cms/utils/helpers.pyc 1940${PYSITELIB}/cms/utils/helpers.pyc
1375${PYSITELIB}/cms/utils/helpers.pyo 1941${PYSITELIB}/cms/utils/helpers.pyo
1376${PYSITELIB}/cms/utils/i18n.py 1942${PYSITELIB}/cms/utils/i18n.py
1377${PYSITELIB}/cms/utils/i18n.pyc 1943${PYSITELIB}/cms/utils/i18n.pyc
1378${PYSITELIB}/cms/utils/i18n.pyo 1944${PYSITELIB}/cms/utils/i18n.pyo
1379${PYSITELIB}/cms/utils/mail.py 1945${PYSITELIB}/cms/utils/mail.py
1380${PYSITELIB}/cms/utils/mail.pyc 1946${PYSITELIB}/cms/utils/mail.pyc
1381${PYSITELIB}/cms/utils/mail.pyo 1947${PYSITELIB}/cms/utils/mail.pyo
1382${PYSITELIB}/cms/utils/moderator.py 
1383${PYSITELIB}/cms/utils/moderator.pyc 
1384${PYSITELIB}/cms/utils/moderator.pyo 
1385${PYSITELIB}/cms/utils/page.py 1948${PYSITELIB}/cms/utils/page.py
1386${PYSITELIB}/cms/utils/page.pyc 1949${PYSITELIB}/cms/utils/page.pyc
1387${PYSITELIB}/cms/utils/page.pyo 1950${PYSITELIB}/cms/utils/page.pyo
1388${PYSITELIB}/cms/utils/page_permissions.py 1951${PYSITELIB}/cms/utils/page_permissions.py
1389${PYSITELIB}/cms/utils/page_permissions.pyc 1952${PYSITELIB}/cms/utils/page_permissions.pyc
1390${PYSITELIB}/cms/utils/page_permissions.pyo 1953${PYSITELIB}/cms/utils/page_permissions.pyo
1391${PYSITELIB}/cms/utils/permissions.py 1954${PYSITELIB}/cms/utils/permissions.py
1392${PYSITELIB}/cms/utils/permissions.pyc 1955${PYSITELIB}/cms/utils/permissions.pyc
1393${PYSITELIB}/cms/utils/permissions.pyo 1956${PYSITELIB}/cms/utils/permissions.pyo
1394${PYSITELIB}/cms/utils/placeholder.py 1957${PYSITELIB}/cms/utils/placeholder.py
1395${PYSITELIB}/cms/utils/placeholder.pyc 1958${PYSITELIB}/cms/utils/placeholder.pyc
1396${PYSITELIB}/cms/utils/placeholder.pyo 1959${PYSITELIB}/cms/utils/placeholder.pyo
1397${PYSITELIB}/cms/utils/plugins.py 1960${PYSITELIB}/cms/utils/plugins.py
@@ -1405,26 +1968,29 @@ ${PYSITELIB}/cms/utils/setup.pyc @@ -1405,26 +1968,29 @@ ${PYSITELIB}/cms/utils/setup.pyc
1405${PYSITELIB}/cms/utils/setup.pyo 1968${PYSITELIB}/cms/utils/setup.pyo
1406${PYSITELIB}/cms/utils/urlutils.py 1969${PYSITELIB}/cms/utils/urlutils.py
1407${PYSITELIB}/cms/utils/urlutils.pyc 1970${PYSITELIB}/cms/utils/urlutils.pyc
1408${PYSITELIB}/cms/utils/urlutils.pyo 1971${PYSITELIB}/cms/utils/urlutils.pyo
1409${PYSITELIB}/cms/views.py 1972${PYSITELIB}/cms/views.py
1410${PYSITELIB}/cms/views.pyc 1973${PYSITELIB}/cms/views.pyc
1411${PYSITELIB}/cms/views.pyo 1974${PYSITELIB}/cms/views.pyo
1412${PYSITELIB}/cms/wizards/__init__.py 1975${PYSITELIB}/cms/wizards/__init__.py
1413${PYSITELIB}/cms/wizards/__init__.pyc 1976${PYSITELIB}/cms/wizards/__init__.pyc
1414${PYSITELIB}/cms/wizards/__init__.pyo 1977${PYSITELIB}/cms/wizards/__init__.pyo
1415${PYSITELIB}/cms/wizards/forms.py 1978${PYSITELIB}/cms/wizards/forms.py
1416${PYSITELIB}/cms/wizards/forms.pyc 1979${PYSITELIB}/cms/wizards/forms.pyc
1417${PYSITELIB}/cms/wizards/forms.pyo 1980${PYSITELIB}/cms/wizards/forms.pyo
 1981${PYSITELIB}/cms/wizards/helpers.py
 1982${PYSITELIB}/cms/wizards/helpers.pyc
 1983${PYSITELIB}/cms/wizards/helpers.pyo
1418${PYSITELIB}/cms/wizards/urls.py 1984${PYSITELIB}/cms/wizards/urls.py
1419${PYSITELIB}/cms/wizards/urls.pyc 1985${PYSITELIB}/cms/wizards/urls.pyc
1420${PYSITELIB}/cms/wizards/urls.pyo 1986${PYSITELIB}/cms/wizards/urls.pyo
1421${PYSITELIB}/cms/wizards/views.py 1987${PYSITELIB}/cms/wizards/views.py
1422${PYSITELIB}/cms/wizards/views.pyc 1988${PYSITELIB}/cms/wizards/views.pyc
1423${PYSITELIB}/cms/wizards/views.pyo 1989${PYSITELIB}/cms/wizards/views.pyo
1424${PYSITELIB}/cms/wizards/wizard_base.py 1990${PYSITELIB}/cms/wizards/wizard_base.py
1425${PYSITELIB}/cms/wizards/wizard_base.pyc 1991${PYSITELIB}/cms/wizards/wizard_base.pyc
1426${PYSITELIB}/cms/wizards/wizard_base.pyo 1992${PYSITELIB}/cms/wizards/wizard_base.pyo
1427${PYSITELIB}/cms/wizards/wizard_pool.py 1993${PYSITELIB}/cms/wizards/wizard_pool.py
1428${PYSITELIB}/cms/wizards/wizard_pool.pyc 1994${PYSITELIB}/cms/wizards/wizard_pool.pyc
1429${PYSITELIB}/cms/wizards/wizard_pool.pyo 1995${PYSITELIB}/cms/wizards/wizard_pool.pyo
1430${PYSITELIB}/menus/__init__.py 1996${PYSITELIB}/menus/__init__.py

cvs diff -r1.45 -r1.46 pkgsrc/www/py-django-cms/distinfo (expand / switch to unified diff)

--- pkgsrc/www/py-django-cms/distinfo 2023/10/10 16:44:25 1.45
+++ pkgsrc/www/py-django-cms/distinfo 2024/02/09 10:50:34 1.46
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.45 2023/10/10 16:44:25 adam Exp $ 1$NetBSD: distinfo,v 1.46 2024/02/09 10:50:34 adam Exp $
2 2
3BLAKE2s (django-cms-3.11.4.tar.gz) = e489000b718c273e3062793800fdd1d71589355350882adffcb347fbe5a46f04 3BLAKE2s (django-cms-4.1.0.tar.gz) = 15de9418c9ccddcf79fb2fdd003e27cd61fc0e2e6291819c14a14905c9bfbf8e
4SHA512 (django-cms-3.11.4.tar.gz) = ec725018151ff064d6b8d1a72daba2de4594536f574766f70695f6f35dd0cf187be1462f8798ae4bbfbef2c961f35b82731246ce7db235fc559bfebb37d670ae 4SHA512 (django-cms-4.1.0.tar.gz) = 4dea0ad5226762e69e84e439e7be8cd34ebb08e692ecca72a095d340172b33d6c65e92947b2ec84554a4747ddedf5d6fa82e87260ce8acfd92bdd3ce41c254de
5Size (django-cms-3.11.4.tar.gz) = 4626664 bytes 5Size (django-cms-4.1.0.tar.gz) = 5065953 bytes