pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/py-django-cms Update to 3.5.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/024ea10f1760
branches:  trunk
changeset: 377051:024ea10f1760
user:      wen <wen%pkgsrc.org@localhost>
date:      Tue Mar 13 02:39:52 2018 +0000

description:
Update to 3.5.1

Upstream changes:
=== 3.5.1 (2018-03-05) ===

* Fixed a bug where editing pages with primary keys greater than 999 would throw an
  exception.
* Fixed a ``MultipleObjectsReturned`` exception raised on the page types migration
  with multiple page types per site.
* Fixed a bug which prevented toolbar js from working correctly when rendered
  before toolbar.
* Fixed a bug where CMS would incorrectly highlight plugin content when plugin
  contains invisible elements
* Fixed a regression where templates which inherit from a template using an ``{% extends %}``
  tag with a default would raise an exception.


=== 3.5.0 (2018-01-31) ===

* Fixed a bug which prevented users from seeing the welcome screen when debug is
  turned off.
* Introduced improved repr for ``Page``, ``Title``, ``Placeholder`` and ``CMSPlugin`` models.
* Rename publish buttons to no longer reference "page"
* Page rendering will now use the draft page instead of public page for logged in
  users with change permissions, unless the ``preview`` GET parameter is used.
* Fixed "Expand all / Collapse all" not reflecting real state of the placeholder tree
* Fixed a bug where Aliased plugins would render if their host page was unpublished (and user was not on edit mode).
* Fixed a bug where focusing inputs in modal would require 2 clicks in some browsers
* Changed the language chooser to always show all configured languages to staff members
  and public-only languages to anon users.
* Introduced logic to copy pages to different sites from the admin.
* Removed "View on Site" button when adding a page
* Welcome page no longer uses multilingual URLs when not required.
* Prevent users from passing a public page as parent in ``create_page`` api function


=== 3.4.5 (2017-10-12) ===

* Introduced Django 1.11 compatibility
* Fixed a bug where slug wouldn't be generated in the creation wizard
* Fixed a bug where the add page endpoint rendered ``Change page`` as the html title.
* Fixed an issue where non-staff users could request the wizard create endpoint.
* Fixed an issue where the ``Edit page`` toolbar button wouldn't show on non-cms pages
  with placeholders.
* Fixed a bug where placeholder inheritance wouldn't work if the inherited placeholder
  is cached in an ancestor page.
* Fixed a regression where the code following a ``{% placeholder x or %}`` declaration,
  was rendered before attempting to inherit content from parent pages.
* Changed page/placeholder cache keys to use sha1 hash instead of md5 to be FIPS compliant.
* Fixed a bug where the change of a slug would not propagate to all descendant pages
* Fixed a ``ValueError`` raised when using ``ManifestStaticFilesStorage`` or similar for static files.
  This only affects Django >= 1.10

diffstat:

 www/py-django-cms/Makefile |    7 +-
 www/py-django-cms/PLIST    |  247 ++++++++++++++++----------------------------
 www/py-django-cms/distinfo |   10 +-
 3 files changed, 101 insertions(+), 163 deletions(-)

diffs (truncated from 553 to 300 lines):

diff -r 0e85c4a8e5c4 -r 024ea10f1760 www/py-django-cms/Makefile
--- a/www/py-django-cms/Makefile        Tue Mar 13 02:06:12 2018 +0000
+++ b/www/py-django-cms/Makefile        Tue Mar 13 02:39:52 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.45 2017/06/16 15:09:13 adam Exp $
+# $NetBSD: Makefile,v 1.46 2018/03/13 02:39:52 wen Exp $
 
-DISTNAME=      django-cms-3.4.4
+DISTNAME=      django-cms-3.5.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=divio/}
@@ -30,5 +30,8 @@
 
 REPLACE_SH=    cms/static/cms/js/select2/release.sh
 
+pre-configure:
+       find ${WRKSRC} -type f | xargs chmod g-w
+
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 0e85c4a8e5c4 -r 024ea10f1760 www/py-django-cms/PLIST
--- a/www/py-django-cms/PLIST   Tue Mar 13 02:06:12 2018 +0000
+++ b/www/py-django-cms/PLIST   Tue Mar 13 02:39:52 2018 +0000
@@ -1,19 +1,10 @@
-@comment $NetBSD: PLIST,v 1.31 2017/06/16 15:09:13 adam Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.32 2018/03/13 02:39:52 wen Exp $
 ${PYSITELIB}/cms/__init__.py
 ${PYSITELIB}/cms/__init__.pyc
 ${PYSITELIB}/cms/__init__.pyo
 ${PYSITELIB}/cms/admin/__init__.py
 ${PYSITELIB}/cms/admin/__init__.pyc
 ${PYSITELIB}/cms/admin/__init__.pyo
-${PYSITELIB}/cms/admin/change_list.py
-${PYSITELIB}/cms/admin/change_list.pyc
-${PYSITELIB}/cms/admin/change_list.pyo
 ${PYSITELIB}/cms/admin/forms.py
 ${PYSITELIB}/cms/admin/forms.pyc
 ${PYSITELIB}/cms/admin/forms.pyo
@@ -107,6 +98,9 @@
 ${PYSITELIB}/cms/forms/fields.py
 ${PYSITELIB}/cms/forms/fields.pyc
 ${PYSITELIB}/cms/forms/fields.pyo
+${PYSITELIB}/cms/forms/login.py
+${PYSITELIB}/cms/forms/login.pyc
+${PYSITELIB}/cms/forms/login.pyo
 ${PYSITELIB}/cms/forms/utils.py
 ${PYSITELIB}/cms/forms/utils.pyc
 ${PYSITELIB}/cms/forms/utils.pyo
@@ -554,6 +548,12 @@
 ${PYSITELIB}/cms/migrations/0016_auto_20160608_1535.py
 ${PYSITELIB}/cms/migrations/0016_auto_20160608_1535.pyc
 ${PYSITELIB}/cms/migrations/0016_auto_20160608_1535.pyo
+${PYSITELIB}/cms/migrations/0017_pagetype.py
+${PYSITELIB}/cms/migrations/0017_pagetype.pyc
+${PYSITELIB}/cms/migrations/0017_pagetype.pyo
+${PYSITELIB}/cms/migrations/0018_pagenode.py
+${PYSITELIB}/cms/migrations/0018_pagenode.pyc
+${PYSITELIB}/cms/migrations/0018_pagenode.pyo
 ${PYSITELIB}/cms/migrations/__init__.py
 ${PYSITELIB}/cms/migrations/__init__.pyc
 ${PYSITELIB}/cms/migrations/__init__.pyo
@@ -656,6 +656,9 @@
 ${PYSITELIB}/cms/signals/title.py
 ${PYSITELIB}/cms/signals/title.pyc
 ${PYSITELIB}/cms/signals/title.pyo
+${PYSITELIB}/cms/signals/utils.py
+${PYSITELIB}/cms/signals/utils.pyc
+${PYSITELIB}/cms/signals/utils.pyo
 ${PYSITELIB}/cms/sitemaps/__init__.py
 ${PYSITELIB}/cms/sitemaps/__init__.pyc
 ${PYSITELIB}/cms/sitemaps/__init__.pyo
@@ -686,6 +689,7 @@
 ${PYSITELIB}/cms/static/cms/fonts/src/eye.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/forbidden.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/handler.svg
+${PYSITELIB}/cms/static/cms/fonts/src/highlight.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/home.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/info.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/loader.svg
@@ -699,6 +703,7 @@
 ${PYSITELIB}/cms/static/cms/fonts/src/paste.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/pencil.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/pin.svg
+${PYSITELIB}/cms/static/cms/fonts/src/plugins.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/plus-square-o.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/plus.svg
 ${PYSITELIB}/cms/static/cms/fonts/src/puzzle.svg
@@ -747,6 +752,7 @@
 ${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.apphookselect.min.js
 ${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.pageselectwidget.min.js
 ${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.pagesmartlinkwidget.min.js
+${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.forms.slugwidget.min.js
 ${PYSITELIB}/cms/static/cms/js/dist/${PKGVERSION}/bundle.toolbar.min.js
 ${PYSITELIB}/cms/static/cms/js/libs/class.min.js
 ${PYSITELIB}/cms/static/cms/js/libs/jquery.min.js
@@ -779,16 +785,20 @@
 ${PYSITELIB}/cms/static/cms/js/modules/jquery.ui.nestedsortable.js
 ${PYSITELIB}/cms/static/cms/js/modules/jquery.ui.touchpunch.js
 ${PYSITELIB}/cms/static/cms/js/modules/keyboard.js
+${PYSITELIB}/cms/static/cms/js/modules/loader.js
 ${PYSITELIB}/cms/static/cms/js/modules/nextuntil.js
+${PYSITELIB}/cms/static/cms/js/modules/preload-images.js
+${PYSITELIB}/cms/static/cms/js/modules/scrollbar.js
 ${PYSITELIB}/cms/static/cms/js/modules/shortcuts/create-modal.js
 ${PYSITELIB}/cms/static/cms/js/modules/shortcuts/help.html
 ${PYSITELIB}/cms/static/cms/js/modules/shortcuts/help.js
 ${PYSITELIB}/cms/static/cms/js/modules/shortcuts/index.js
 ${PYSITELIB}/cms/static/cms/js/modules/shortcuts/placeholders.js
 ${PYSITELIB}/cms/static/cms/js/modules/shortcuts/toolbar.js
-${PYSITELIB}/cms/static/cms/js/modules/simplemap.js
+${PYSITELIB}/cms/static/cms/js/modules/slug.js
 ${PYSITELIB}/cms/static/cms/js/modules/tmpl.js
 ${PYSITELIB}/cms/static/cms/js/polyfills/array.prototype.findindex.js
+${PYSITELIB}/cms/static/cms/js/polyfills/domparser.js
 ${PYSITELIB}/cms/static/cms/js/polyfills/function.prototype.bind.js
 ${PYSITELIB}/cms/static/cms/js/select2/LICENSE
 ${PYSITELIB}/cms/static/cms/js/select2/README.md
@@ -848,6 +858,7 @@
 ${PYSITELIB}/cms/static/cms/js/widgets/forms.apphookselect.js
 ${PYSITELIB}/cms/static/cms/js/widgets/forms.pageselectwidget.js
 ${PYSITELIB}/cms/static/cms/js/widgets/forms.pagesmartlinkwidget.js
+${PYSITELIB}/cms/static/cms/js/widgets/forms.slugwidget.js
 ${PYSITELIB}/cms/static/cms/js/widgets/wizard.pagetypeselect.js
 ${PYSITELIB}/cms/static/cms/sass/cms.base.scss
 ${PYSITELIB}/cms/static/cms/sass/cms.pagetree.scss
@@ -887,6 +898,9 @@
 ${PYSITELIB}/cms/static/cms/sass/settings/_all.scss
 ${PYSITELIB}/cms/static/cms/sass/settings/_cms.scss
 ${PYSITELIB}/cms/static/cms/sass/settings/_pagetree.scss
+${PYSITELIB}/cms/templates.py
+${PYSITELIB}/cms/templates.pyc
+${PYSITELIB}/cms/templates.pyo
 ${PYSITELIB}/cms/templates/admin/cms/extensions/change_form.html
 ${PYSITELIB}/cms/templates/admin/cms/mail/base.html
 ${PYSITELIB}/cms/templates/admin/cms/mail/base.txt
@@ -933,23 +947,31 @@
 ${PYSITELIB}/cms/templates/cms/toolbar/items/login.html
 ${PYSITELIB}/cms/templates/cms/toolbar/items/logo.html
 ${PYSITELIB}/cms/templates/cms/toolbar/items/menu.html
-${PYSITELIB}/cms/templates/cms/toolbar/placeholder.html
 ${PYSITELIB}/cms/templates/cms/toolbar/plugin.html
 ${PYSITELIB}/cms/templates/cms/toolbar/render_plugin_block.html
+${PYSITELIB}/cms/templates/cms/toolbar/structure.html
 ${PYSITELIB}/cms/templates/cms/toolbar/toolbar.html
 ${PYSITELIB}/cms/templates/cms/toolbar/toolbar_javascript.html
+${PYSITELIB}/cms/templates/cms/toolbar/toolbar_with_structure.html
 ${PYSITELIB}/cms/templates/cms/welcome.html
+${PYSITELIB}/cms/templates/cms/widgets/applicationconfigselect.html
+${PYSITELIB}/cms/templates/cms/widgets/pageselectwidget.html
+${PYSITELIB}/cms/templates/cms/widgets/pagesmartlinkwidget.html
 ${PYSITELIB}/cms/templates/cms/wizards/base.html
 ${PYSITELIB}/cms/templates/cms/wizards/create.html
 ${PYSITELIB}/cms/templates/cms/wizards/done.html
 ${PYSITELIB}/cms/templates/cms/wizards/includes/form_fields.html
 ${PYSITELIB}/cms/templates/cms/wizards/start.html
+${PYSITELIB}/cms/templates/cms/wizards/wizardoptionwidget.html
 ${PYSITELIB}/cms/templatetags/__init__.py
 ${PYSITELIB}/cms/templatetags/__init__.pyc
 ${PYSITELIB}/cms/templatetags/__init__.pyo
 ${PYSITELIB}/cms/templatetags/cms_admin.py
 ${PYSITELIB}/cms/templatetags/cms_admin.pyc
 ${PYSITELIB}/cms/templatetags/cms_admin.pyo
+${PYSITELIB}/cms/templatetags/cms_alias_tags.py
+${PYSITELIB}/cms/templatetags/cms_alias_tags.pyc
+${PYSITELIB}/cms/templatetags/cms_alias_tags.pyo
 ${PYSITELIB}/cms/templatetags/cms_js_tags.py
 ${PYSITELIB}/cms/templatetags/cms_js_tags.pyc
 ${PYSITELIB}/cms/templatetags/cms_js_tags.pyo
@@ -959,9 +981,6 @@
 ${PYSITELIB}/cms/templatetags/cms_tags.py
 ${PYSITELIB}/cms/templatetags/cms_tags.pyc
 ${PYSITELIB}/cms/templatetags/cms_tags.pyo
-${PYSITELIB}/cms/templatetags/cms_wizard_tags.py
-${PYSITELIB}/cms/templatetags/cms_wizard_tags.pyc
-${PYSITELIB}/cms/templatetags/cms_wizard_tags.pyo
 ${PYSITELIB}/cms/test_utils/__init__.py
 ${PYSITELIB}/cms/test_utils/__init__.pyc
 ${PYSITELIB}/cms/test_utils/__init__.pyo
@@ -992,15 +1011,6 @@
 ${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/__init__.py
 ${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/__init__.pyc
 ${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/__init__.pyo
-${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/migrations/0001_initial.py
-${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/migrations/0001_initial.pyc
-${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/migrations/0001_initial.pyo
-${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/migrations/0002_auto_20160816_1216.py
-${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/migrations/0002_auto_20160816_1216.pyc
-${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/migrations/0002_auto_20160816_1216.pyo
-${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/migrations/__init__.py
-${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/migrations/__init__.pyc
-${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/migrations/__init__.pyo
 ${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/models.py
 ${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/models.pyc
 ${PYSITELIB}/cms/test_utils/project/bunch_of_plugins/models.pyo
@@ -1016,12 +1026,6 @@
 ${PYSITELIB}/cms/test_utils/project/customuserapp/admin.py
 ${PYSITELIB}/cms/test_utils/project/customuserapp/admin.pyc
 ${PYSITELIB}/cms/test_utils/project/customuserapp/admin.pyo
-${PYSITELIB}/cms/test_utils/project/customuserapp/migrations/0001_initial.py
-${PYSITELIB}/cms/test_utils/project/customuserapp/migrations/0001_initial.pyc
-${PYSITELIB}/cms/test_utils/project/customuserapp/migrations/0001_initial.pyo
-${PYSITELIB}/cms/test_utils/project/customuserapp/migrations/__init__.py
-${PYSITELIB}/cms/test_utils/project/customuserapp/migrations/__init__.pyc
-${PYSITELIB}/cms/test_utils/project/customuserapp/migrations/__init__.pyo
 ${PYSITELIB}/cms/test_utils/project/customuserapp/models.py
 ${PYSITELIB}/cms/test_utils/project/customuserapp/models.pyc
 ${PYSITELIB}/cms/test_utils/project/customuserapp/models.pyo
@@ -1034,15 +1038,6 @@
 ${PYSITELIB}/cms/test_utils/project/emailuserapp/forms.py
 ${PYSITELIB}/cms/test_utils/project/emailuserapp/forms.pyc
 ${PYSITELIB}/cms/test_utils/project/emailuserapp/forms.pyo
-${PYSITELIB}/cms/test_utils/project/emailuserapp/migrations/0001_initial.py
-${PYSITELIB}/cms/test_utils/project/emailuserapp/migrations/0001_initial.pyc
-${PYSITELIB}/cms/test_utils/project/emailuserapp/migrations/0001_initial.pyo
-${PYSITELIB}/cms/test_utils/project/emailuserapp/migrations/0002_auto_20150419_1745.py
-${PYSITELIB}/cms/test_utils/project/emailuserapp/migrations/0002_auto_20150419_1745.pyc
-${PYSITELIB}/cms/test_utils/project/emailuserapp/migrations/0002_auto_20150419_1745.pyo
-${PYSITELIB}/cms/test_utils/project/emailuserapp/migrations/__init__.py
-${PYSITELIB}/cms/test_utils/project/emailuserapp/migrations/__init__.pyc
-${PYSITELIB}/cms/test_utils/project/emailuserapp/migrations/__init__.pyo
 ${PYSITELIB}/cms/test_utils/project/emailuserapp/models.py
 ${PYSITELIB}/cms/test_utils/project/emailuserapp/models.pyc
 ${PYSITELIB}/cms/test_utils/project/emailuserapp/models.pyo
@@ -1055,30 +1050,12 @@
 ${PYSITELIB}/cms/test_utils/project/extensionapp/cms_toolbars.py
 ${PYSITELIB}/cms/test_utils/project/extensionapp/cms_toolbars.pyc
 ${PYSITELIB}/cms/test_utils/project/extensionapp/cms_toolbars.pyo
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/0001_initial.py
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/0001_initial.pyc
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/0001_initial.pyo
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/0002_auto_20150607_2207.py
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/0002_auto_20150607_2207.pyc
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/0002_auto_20150607_2207.pyo
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/0003_multitablepageextension_multitablepageextensionparent_multitabletitleextension_multitabletitleextens.py
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/0003_multitablepageextension_multitablepageextensionparent_multitabletitleextension_multitabletitleextens.pyc
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/0003_multitablepageextension_multitablepageextensionparent_multitabletitleextension_multitabletitleextens.pyo
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/__init__.py
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/__init__.pyc
-${PYSITELIB}/cms/test_utils/project/extensionapp/migrations/__init__.pyo
 ${PYSITELIB}/cms/test_utils/project/extensionapp/models.py
 ${PYSITELIB}/cms/test_utils/project/extensionapp/models.pyc
 ${PYSITELIB}/cms/test_utils/project/extensionapp/models.pyo
 ${PYSITELIB}/cms/test_utils/project/fakemlng/__init__.py
 ${PYSITELIB}/cms/test_utils/project/fakemlng/__init__.pyc
 ${PYSITELIB}/cms/test_utils/project/fakemlng/__init__.pyo
-${PYSITELIB}/cms/test_utils/project/fakemlng/migrations/0001_initial.py
-${PYSITELIB}/cms/test_utils/project/fakemlng/migrations/0001_initial.pyc
-${PYSITELIB}/cms/test_utils/project/fakemlng/migrations/0001_initial.pyo
-${PYSITELIB}/cms/test_utils/project/fakemlng/migrations/__init__.py
-${PYSITELIB}/cms/test_utils/project/fakemlng/migrations/__init__.pyc
-${PYSITELIB}/cms/test_utils/project/fakemlng/migrations/__init__.pyo
 ${PYSITELIB}/cms/test_utils/project/fakemlng/models.py
 ${PYSITELIB}/cms/test_utils/project/fakemlng/models.pyc
 ${PYSITELIB}/cms/test_utils/project/fakemlng/models.pyo
@@ -1097,18 +1074,6 @@
 ${PYSITELIB}/cms/test_utils/project/mti_pluginapp/cms_plugins.py
 ${PYSITELIB}/cms/test_utils/project/mti_pluginapp/cms_plugins.pyc
 ${PYSITELIB}/cms/test_utils/project/mti_pluginapp/cms_plugins.pyo
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/0001_initial.py
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/0001_initial.pyc
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/0001_initial.pyo
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/0002_auto_20150112_2250.py
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/0002_auto_20150112_2250.pyc
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/0002_auto_20150112_2250.pyo
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/0003_auto_20160818_2218.py
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/0003_auto_20160818_2218.pyc
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/0003_auto_20160818_2218.pyo
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/__init__.py
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/__init__.pyc
-${PYSITELIB}/cms/test_utils/project/mti_pluginapp/migrations/__init__.pyo
 ${PYSITELIB}/cms/test_utils/project/mti_pluginapp/models.py
 ${PYSITELIB}/cms/test_utils/project/mti_pluginapp/models.pyc
 ${PYSITELIB}/cms/test_utils/project/mti_pluginapp/models.pyo
@@ -1130,12 +1095,6 @@
 ${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/backends.py
 ${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/backends.pyc
 ${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/backends.pyo
-${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/migrations/0001_initial.py
-${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/migrations/0001_initial.pyc
-${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/migrations/0001_initial.pyo
-${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/migrations/__init__.py
-${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/migrations/__init__.pyc
-${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/migrations/__init__.pyo
 ${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/models.py
 ${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/models.pyc
 ${PYSITELIB}/cms/test_utils/project/objectpermissionsapp/models.pyo
@@ -1157,27 +1116,6 @@
 ${PYSITELIB}/cms/test_utils/project/placeholderapp/exceptions.py
 ${PYSITELIB}/cms/test_utils/project/placeholderapp/exceptions.pyc
 ${PYSITELIB}/cms/test_utils/project/placeholderapp/exceptions.pyo
-${PYSITELIB}/cms/test_utils/project/placeholderapp/migrations/0001_initial.py
-${PYSITELIB}/cms/test_utils/project/placeholderapp/migrations/0001_initial.pyc
-${PYSITELIB}/cms/test_utils/project/placeholderapp/migrations/0001_initial.pyo



Home | Main Index | Thread Index | Old Index