Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id BD1E47A168 for ; Thu, 2 Feb 2017 07:54:13 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 2D911855E1; Thu, 2 Feb 2017 07:54:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B10048558A for ; Thu, 2 Feb 2017 07:54:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id a726033s8IoY for ; Thu, 2 Feb 2017 07:54:12 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E4D0984D04 for ; Thu, 2 Feb 2017 07:54:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DBE4EFBA6; Thu, 2 Feb 2017 07:54:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1486022051236520" MIME-Version: 1.0 Date: Thu, 2 Feb 2017 07:54:11 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-django-cms To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170202075411.DBE4EFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1486022051236520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Thu Feb 2 07:54:11 UTC 2017 Modified Files: pkgsrc/www/py-django-cms: Makefile PLIST distinfo Log Message: What's new in 3.4.2 Bug Fixes --------- Escaped strings in close_frame JS template. Fixed a bug with text-transform styles on inputs affecting CMS login Fixed a typo in the confirmation message for copying plugins from a different language Fixed a bug which prevented certain migrations from running in a multi-db setup. Fixed a regression which prevented the Page model from rendering correctly when used in a raw_id_field. Fixed a regression which caused the CMS to cache the toolbar when CMS_PAGE_CACHE was set to True and an anonymous user had cms_edit set to True on their session. Fixed a regression which prevented users from overriding content in an inherited placeholder. Fixed a bug affecting Firefox for Macintosh users, in which use of the Command key later followed by Return would trigger a plugin save. Fixed a bug where template inheritance setting creates spurious migration Fixed a bug which prevented the page from being marked as dirty (pending changes) when changing the value of the overwrite url field. Fixed a bug where the page tree would not update correctly when a sibling page was moved from left to right or right to left. Improvements and new features ----------------------------- Added official support for Django 1.10. Rewrote manual installation how-to documentation Re-introduced the “Revert to live” menu option. Added support for django-reversion >= 2 Improved the fix-tree command so that it also fixes non-root nodes (pages). Introduced placeholder operation signals. Deprecations ------------ Removed the deprecated add_url(), edit_url(), move_url(), delete_url(), copy_url() properties of CMSPlugin model. Added a deprecation warning to method render_plugin() in class CMSPlugin. Deprecated frontend_edit_template attribute of CMSPluginBase. The post_ methods in `PlaceholderAdminMixin have been deprecated in favor of placeholder operation signals. Other changes ------------- Adjusted Ajax calls triggered when performing a placeholder operation (add plugin, etc..) to include a GET query called cms_path. This query points to the path where the operation originates from. Changed CMSPlugin.get_parent_classes() from method to classmethod. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/www/py-django-cms/Makefile cvs rdiff -u -r1.28 -r1.29 pkgsrc/www/py-django-cms/PLIST cvs rdiff -u -r1.33 -r1.34 pkgsrc/www/py-django-cms/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1486022051236520 Content-Disposition: inline Content-Length: 3138 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-django-cms/Makefile diff -u pkgsrc/www/py-django-cms/Makefile:1.42 pkgsrc/www/py-django-cms/Makefile:1.43 --- pkgsrc/www/py-django-cms/Makefile:1.42 Sun Dec 25 09:20:24 2016 +++ pkgsrc/www/py-django-cms/Makefile Thu Feb 2 07:54:11 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2016/12/25 09:20:24 adam Exp $ +# $NetBSD: Makefile,v 1.43 2017/02/02 07:54:11 adam Exp $ -DISTNAME= django-cms-3.4.1 +DISTNAME= django-cms-3.4.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_GITHUB:=divio/} Index: pkgsrc/www/py-django-cms/PLIST diff -u pkgsrc/www/py-django-cms/PLIST:1.28 pkgsrc/www/py-django-cms/PLIST:1.29 --- pkgsrc/www/py-django-cms/PLIST:1.28 Fri Dec 2 12:28:08 2016 +++ pkgsrc/www/py-django-cms/PLIST Thu Feb 2 07:54:11 2017 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.28 2016/12/02 12:28:08 adam Exp $ +@comment $NetBSD: PLIST,v 1.29 2017/02/02 07:54:11 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -599,6 +599,9 @@ ${PYSITELIB}/cms/models/static_placehold ${PYSITELIB}/cms/models/titlemodels.py ${PYSITELIB}/cms/models/titlemodels.pyc ${PYSITELIB}/cms/models/titlemodels.pyo +${PYSITELIB}/cms/operations.py +${PYSITELIB}/cms/operations.pyc +${PYSITELIB}/cms/operations.pyo ${PYSITELIB}/cms/page_rendering.py ${PYSITELIB}/cms/page_rendering.pyc ${PYSITELIB}/cms/page_rendering.pyo @@ -1492,6 +1495,9 @@ ${PYSITELIB}/cms/tests/test_placeholder. ${PYSITELIB}/cms/tests/test_placeholder_app_admin.py ${PYSITELIB}/cms/tests/test_placeholder_app_admin.pyc ${PYSITELIB}/cms/tests/test_placeholder_app_admin.pyo +${PYSITELIB}/cms/tests/test_placeholder_operation_signals.py +${PYSITELIB}/cms/tests/test_placeholder_operation_signals.pyc +${PYSITELIB}/cms/tests/test_placeholder_operation_signals.pyo ${PYSITELIB}/cms/tests/test_plugins.py ${PYSITELIB}/cms/tests/test_plugins.pyc ${PYSITELIB}/cms/tests/test_plugins.pyo Index: pkgsrc/www/py-django-cms/distinfo diff -u pkgsrc/www/py-django-cms/distinfo:1.33 pkgsrc/www/py-django-cms/distinfo:1.34 --- pkgsrc/www/py-django-cms/distinfo:1.33 Fri Dec 2 12:28:08 2016 +++ pkgsrc/www/py-django-cms/distinfo Thu Feb 2 07:54:11 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.33 2016/12/02 12:28:08 adam Exp $ +$NetBSD: distinfo,v 1.34 2017/02/02 07:54:11 adam Exp $ -SHA1 (django-cms-3.4.1.tar.gz) = 0a6e8fa795b9558e082c35ba07bea762f1ea30e9 -RMD160 (django-cms-3.4.1.tar.gz) = 6dfdbb57b9c983fdc9f5bf37a2a0d391dc316b54 -SHA512 (django-cms-3.4.1.tar.gz) = ff767d8f644602a65d9427390d315b33872e6dcd94d06f7abe7778a5f893cc41d7574681f7558b0d4bfa56784d1eb7e4b0e4e570eb24b921c754083f946b99d0 -Size (django-cms-3.4.1.tar.gz) = 5071816 bytes +SHA1 (django-cms-3.4.2.tar.gz) = f5fcbc7f27f20d3ef84a557e5fb33e52eb7f1f8c +RMD160 (django-cms-3.4.2.tar.gz) = 0b2ce4431a665979c4a274ae83b4039e8ed8551e +SHA512 (django-cms-3.4.2.tar.gz) = 5265f50edd2d84d361bdc98e03f20bb7da3a379efa1eada633eb6ccd04ed5a1facb45d8f04c2545c373ede2dd731ef2abdea1ab944e0d656640e508e537ff330 +Size (django-cms-3.4.2.tar.gz) = 5236544 bytes --_----------=_1486022051236520--