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 C18417A266 for ; Fri, 21 Oct 2016 14:31:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 30D1B85EF4; Fri, 21 Oct 2016 14:31:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B190D85EF3 for ; Fri, 21 Oct 2016 14:31:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id XskuAm9NSuZV for ; Fri, 21 Oct 2016 14:31:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C906085EF0 for ; Fri, 21 Oct 2016 14:31:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C05B4FBD2; Fri, 21 Oct 2016 14:31:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1477060290113780" MIME-Version: 1.0 Date: Fri, 21 Oct 2016 14:31:30 +0000 From: "Wen Heping" Subject: CVS commit: pkgsrc/www/drupal7 To: pkgsrc-changes@NetBSD.org Reply-To: wen@netbsd.org X-Mailer: log_accum Message-Id: <20161021143130.C05B4FBD2@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. --_----------=_1477060290113780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wen Date: Fri Oct 21 14:31:30 UTC 2016 Modified Files: pkgsrc/www/drupal7: Makefile PLIST distinfo Log Message: Update to 7.51 Upstream changes: Drupal 7.51, 2016-10-05 ----------------------- - The Update module now also checks for updates to a disabled theme that is used as an admin theme. - Exceptions thrown in dblog_watchdog() are now caught and ignored. - Clarified the warning that appears when modules are missing or have moved. - Log messages are now XSS filtered on display. - Draggable tables now work on touch screen devices. - Added a setting for allowing double underscores in CSS identifiers (https://www.drupal.org/node/2810369). - If a user navigates away from a page while an Ajax request is running they will no longer get an error message saying "An Ajax HTTP request terminated abnormally". - The system_region_list() API function now takes an optional third parameter which allows region name translations to be skipped when they are not needed (API addition: https://www.drupal.org/node/2810365). - Numerous performance improvements. - Numerous bug fixes. - Numerous API documentation improvements. - Additional automated test coverage. Drupal 7.50, 2016-07-07 ----------------------- - Added a new "administer fields" permission for trusted users, which is required in addition to other permissions to use the field UI (https://www.drupal.org/node/2483307). - Added clickjacking protection to Drupal core by setting the X-Frame-Options header to SAMEORIGIN by default (https://www.drupal.org/node/2735873). - Added support for full UTF-8 (emojis, Asian symbols, mathematical symbols) on MySQL and other database drivers when the site and database are configured to allow it (https://www.drupal.org/node/2761183). - Improved performance by avoiding a re-scan of directories when a file is missing; instead, trigger a PHP warning (minor API change: https://www.drupal.org/node/2581445). - Made it possible to use any PHP callable in Ajax form callbacks, form API form-building functions, and form API wrapper callbacks (API addition: https://www.drupal.org/node/2761169). - Fixed that following a password reset link while logged in leaves users unable to change their password (minor user interface change: https://www.drupal.org/node/2759023). - Implemented various fixes for automated test failures on PHP 5.4+ and PHP 7. Drupal core automated tests now pass in these environments. - Improved support for PHP 7 by fixing various problems. - Fixed various bugs with PHP 5.5+ imagerotate(), including when incorrect color indices are passed in. - Fixed a regression introduced in Drupal 7.43 that allowed files uploaded by anonymous users to be lost after form validation errors, and that also caused regressions with certain contributed modules. - Fixed a regression introduced in Drupal 7.36 which caused the default value of hidden textarea fields to be ignored. - Fixed robots.txt to allow search engines to access CSS, JavaScript and image files. - Changed wording on the Update Manager settings page to clarify that the option to check for disabled module updates also applies to uninstalled modules (administrative-facing translatable string change). - Changed the help text when editing menu links and configuring URL redirect actions so that it does not reference "Drupal" or the drupal.org website (administrative-facing translatable string change). - Fixed the locale safety check that is used to ensure that translations are safe to allow for tokens in the href/src attributes of translated strings. - Fixed that URL generation only works on port 80 when using domain based language negotation. - Made method="get" forms work inside the administrative overlay. The fix adds a new hidden field to these forms when they appear inside the overlay (minor data structure change). - Increased maxlength of menu link title input fields in the node form and menu link form from 128 to 255 characters. - Removed meaningless post-check=0 and pre-check=0 cache control headers from Drupal HTTP responses. - Added a .editorconfig file to auto-configure editors that support it. - Added --directory option to run-tests.sh for easier test discovery of all tests within a project. - Made run-tests.sh exit with a failure code when there are test fails or problems running the script. - Fixed that cookies from previous tests are still present when a new test starts in DrupalWebTestCase. - Improved performance of queries on the {authmap} database table. - Fixed handling of missing files and functions inside the registry. - Fixed Ajax handling for tableselect form elements that use checkboxes. - Fixed a bug which caused ip_address() to return nothing when the client IP address and proxy IP address are the same. - Added a new option to format_xml_elements() to allow for already encoded values. - Changed the {history} table's node ID field to be an unsigned integer, to match the same field in the {node} table and to prevent errors with very large node IDs. - Added an explicit page callback to the "admin/people/create" menu item in the User module (minor data structure change). Previously this automatically inherited the page callback from the parent "admin/people" menu item, which broke contributed modules that override the "admin/people" page. - Numerous small bug fixes. - Numerous API documentation improvements. - Additional automated test coverage. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/www/drupal7/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/www/drupal7/PLIST cvs rdiff -u -r1.30 -r1.31 pkgsrc/www/drupal7/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1477060290113780 Content-Disposition: inline Content-Length: 3751 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/drupal7/Makefile diff -u pkgsrc/www/drupal7/Makefile:1.39 pkgsrc/www/drupal7/Makefile:1.40 --- pkgsrc/www/drupal7/Makefile:1.39 Thu Jun 16 23:20:16 2016 +++ pkgsrc/www/drupal7/Makefile Fri Oct 21 14:31:30 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.39 2016/06/16 23:20:16 taca Exp $ +# $NetBSD: Makefile,v 1.40 2016/10/21 14:31:30 wen Exp $ -DISTNAME= drupal-7.44 +DISTNAME= drupal-7.51 PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} CATEGORIES= www MASTER_SITES= http://ftp.drupal.org/files/projects/ Index: pkgsrc/www/drupal7/PLIST diff -u pkgsrc/www/drupal7/PLIST:1.14 pkgsrc/www/drupal7/PLIST:1.15 --- pkgsrc/www/drupal7/PLIST:1.14 Thu Feb 25 15:15:57 2016 +++ pkgsrc/www/drupal7/PLIST Fri Oct 21 14:31:30 2016 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.14 2016/02/25 15:15:57 taca Exp $ +@comment $NetBSD: PLIST,v 1.15 2016/10/21 14:31:30 wen Exp $ share/doc/drupal/CHANGELOG.txt share/doc/drupal/COPYRIGHT.txt share/doc/drupal/INSTALL.mysql.txt @@ -603,6 +603,7 @@ share/drupal/modules/simpletest/files/ht share/drupal/modules/simpletest/files/html-2.html share/drupal/modules/simpletest/files/image-1.png share/drupal/modules/simpletest/files/image-2.jpg +share/drupal/modules/simpletest/files/image-test-no-transparency.gif share/drupal/modules/simpletest/files/image-test-transparent-out-of-range.gif share/drupal/modules/simpletest/files/image-test.gif share/drupal/modules/simpletest/files/image-test.jpg @@ -742,6 +743,7 @@ share/drupal/modules/simpletest/tests/sy share/drupal/modules/simpletest/tests/system_project_namespace_test.info share/drupal/modules/simpletest/tests/system_project_namespace_test.module share/drupal/modules/simpletest/tests/system_test.info +share/drupal/modules/simpletest/tests/system_test.install share/drupal/modules/simpletest/tests/system_test.module share/drupal/modules/simpletest/tests/tablesort.test share/drupal/modules/simpletest/tests/taxonomy_test.info @@ -917,6 +919,7 @@ share/drupal/modules/update/tests/drupal share/drupal/modules/update/tests/drupal.1.xml share/drupal/modules/update/tests/drupal.2-sec.xml share/drupal/modules/update/tests/drupal.dev.xml +share/drupal/modules/update/tests/themes/update_test_admintheme/update_test_admintheme.info share/drupal/modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info share/drupal/modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info share/drupal/modules/update/tests/update_test.info @@ -1092,3 +1095,5 @@ share/drupal/update.php share/drupal/xmlrpc.php share/examples/drupal/default.settings.php share/examples/drupal/drupal.conf +@pkgdir share/drupal/sites +@pkgdir share/drupal/files Index: pkgsrc/www/drupal7/distinfo diff -u pkgsrc/www/drupal7/distinfo:1.30 pkgsrc/www/drupal7/distinfo:1.31 --- pkgsrc/www/drupal7/distinfo:1.30 Thu Jun 16 23:20:16 2016 +++ pkgsrc/www/drupal7/distinfo Fri Oct 21 14:31:30 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.30 2016/06/16 23:20:16 taca Exp $ +$NetBSD: distinfo,v 1.31 2016/10/21 14:31:30 wen Exp $ -SHA1 (drupal-7.44.tar.gz) = efeb199a01b785ec4362b4c9488981ef5fc49b61 -RMD160 (drupal-7.44.tar.gz) = 0e9c095d4c255937293e816a214fbc0cd034bc21 -SHA512 (drupal-7.44.tar.gz) = 67d358c85259b7722824f214be177c40819c7e0c06c8ec7511b7f87ecff1ab6622af62fc5769b62682e0e67f718743afa6b0a9e4c55e2348a1b408eeb566c3e9 -Size (drupal-7.44.tar.gz) = 3265819 bytes +SHA1 (drupal-7.51.tar.gz) = 351d539a070888d9d18e75819823632f691bdb7d +RMD160 (drupal-7.51.tar.gz) = 53fd0546411deb053f38c015362d51d3ddbb1961 +SHA512 (drupal-7.51.tar.gz) = 3e72f2ce8941d9d82358de5376afd6a5a3d2c375fe487a26d0dd5e448a602c4a726877b48a96388180aace1d6f360a6dedf400164d759665657b50102ef9d45c +Size (drupal-7.51.tar.gz) = 3288987 bytes --_----------=_1477060290113780--