Mon Sep 30 10:04:34 2013 UTC ()
Update contao31 to 3.1.3.

Version 3.1.3 (2013-09-24)
--------------------------

### Fixed
Do not redirect to protected pages after logout (see #6210).

### Fixed
Consider the additional arguments in `Frontend::jumpToOrReload()` (see #5734).

### Fixed
Prevent article aliases from using reserved names (see #6066).

### Fixed
Correctly update the RSS feeds if a news item or event changes (see #6102).

### Fixed
Correctly link to news and calendar feeds via insert tag (see #6164).

### Fixed
Make the CSS ID available in the custom navigation module (see #6129).

### Fixed
Do not cache the "toggle_view" insert tag (see #6172).

### Fixed
Unset the primary key if a model is deleted (see #6162).

### Fixed
Support `tel:` and `sms:` upon IDNA conversion (see #6148).

### Fixed
Apply the width and height to the audio player as well (see #6114).

### Fixed
Do not exit after a template has been output (see #5570).

### Changed
Drop the database query cache (see #6070). This renders `executeUncached()` and
`executeCached()` deprecated. Use `execute()` instead.

### Fixed
Handle all possible errors when uploading files (see #5934).


(taca)
diff -r1.42 -r1.43 pkgsrc/www/contao/Makefile.common
diff -r1.7 -r1.8 pkgsrc/www/contao31/Makefile
diff -r1.5 -r1.6 pkgsrc/www/contao31/PLIST
diff -r1.5 -r1.6 pkgsrc/www/contao31/distinfo

cvs diff -r1.42 -r1.43 pkgsrc/www/contao/Makefile.common (expand / switch to unified diff)

--- pkgsrc/www/contao/Makefile.common 2013/09/08 11:11:04 1.42
+++ pkgsrc/www/contao/Makefile.common 2013/09/30 10:04:34 1.43
@@ -1,28 +1,28 @@ @@ -1,28 +1,28 @@
1# $NetBSD: Makefile.common,v 1.42 2013/09/08 11:11:04 taca Exp $ 1# $NetBSD: Makefile.common,v 1.43 2013/09/30 10:04:34 taca Exp $
2# 2#
3# used by www/contao/Makefile.example" 3# used by www/contao/Makefile.example"
4# used by www/contao211/Makefile 4# used by www/contao211/Makefile
5# used by www/contao211-translations/Makefile 5# used by www/contao211-translations/Makefile
6# used by www/contao31/Makefile 6# used by www/contao31/Makefile
7# 7#
8 8
9# Contao master site (on GitHub). 9# Contao master site (on GitHub).
10CT_MASTER_SITE= https://download.contao.org/ \ 10CT_MASTER_SITE= https://download.contao.org/ \
11 https://github.com/contao/core/archive/ \ 11 https://github.com/contao/core/archive/ \
12 12
13# current release 13# current release
14CT211_VERSION= 2.11.12 14CT211_VERSION= 2.11.12
15CT310_VERSION= 3.1.2 15CT310_VERSION= 3.1.3
16 16
17CT_VERS?= 211 17CT_VERS?= 211
18 18
19.if ${CT_VERS} == "211" 19.if ${CT_VERS} == "211"
20CT_VERSION= ${CT211_VERSION} 20CT_VERSION= ${CT211_VERSION}
21.elif ${CT_VERS} == "31" 21.elif ${CT_VERS} == "31"
22CT_VERSION= ${CT310_VERSION} 22CT_VERSION= ${CT310_VERSION}
23.else 23.else
24.error "Illegal version specified: ${CT_VERS}" 24.error "Illegal version specified: ${CT_VERS}"
25.endif 25.endif
26 26
27.if ${CT_VERS} == "211" 27.if ${CT_VERS} == "211"
28CT_FILES= tl_files 28CT_FILES= tl_files

cvs diff -r1.7 -r1.8 pkgsrc/www/contao31/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/www/contao31/Attic/Makefile 2013/09/29 03:40:32 1.7
+++ pkgsrc/www/contao31/Attic/Makefile 2013/09/30 10:04:34 1.8
@@ -1,19 +1,18 @@ @@ -1,19 +1,18 @@
1# $NetBSD: Makefile,v 1.7 2013/09/29 03:40:32 taca Exp $ 1# $NetBSD: Makefile,v 1.8 2013/09/30 10:04:34 taca Exp $
2# 2#
3 3
4DISTNAME= ${CT_VERSION} 4DISTNAME= ${CT_VERSION}
5PKGNAME= contao${CT_VER}-${CT_PKGVER} 5PKGNAME= contao${CT_VER}-${CT_PKGVER}
6PKGREVISION= 1 
7CATEGORIES= www 6CATEGORIES= www
8MASTER_SITES= ${CT_MASTER_SITE} 7MASTER_SITES= ${CT_MASTER_SITE}
9 8
10MAINTAINER= taca@NetBSD.org 9MAINTAINER= taca@NetBSD.org
11HOMEPAGE= http://www.contao.org/ 10HOMEPAGE= http://www.contao.org/
12COMMENT= Contao Open Source CMS ${CT_VERSION} 11COMMENT= Contao Open Source CMS ${CT_VERSION}
13LICENSE= gnu-lgpl-v3 12LICENSE= gnu-lgpl-v3
14 13
15DEPENDS+= ${PHP_PKG_PREFIX}-dom>=5.2.0:../../textproc/php-dom 14DEPENDS+= ${PHP_PKG_PREFIX}-dom>=5.2.0:../../textproc/php-dom
16DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.2.0:../../graphics/php-gd 15DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.2.0:../../graphics/php-gd
17DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.2.0:../../converters/php-mbstring 16DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.2.0:../../converters/php-mbstring
18DEPENDS+= ${PHP_PKG_PREFIX}-{mysql,mysqli}>=5.2.0:../../databases/php-mysqli 17DEPENDS+= ${PHP_PKG_PREFIX}-{mysql,mysqli}>=5.2.0:../../databases/php-mysqli
19DEPENDS+= ${PHP_PKG_PREFIX}-mcrypt>=5.2.0:../../security/php-mcrypt 18DEPENDS+= ${PHP_PKG_PREFIX}-mcrypt>=5.2.0:../../security/php-mcrypt

cvs diff -r1.5 -r1.6 pkgsrc/www/contao31/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/www/contao31/Attic/PLIST 2013/09/29 03:40:32 1.5
+++ pkgsrc/www/contao31/Attic/PLIST 2013/09/30 10:04:34 1.6
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.5 2013/09/29 03:40:32 taca Exp $ 1@comment $NetBSD: PLIST,v 1.6 2013/09/30 10:04:34 taca Exp $
2${CT_WEBDIR}/.gitignore 2${CT_WEBDIR}/.gitignore
3${CT_WEBDIR}/README.md 3${CT_WEBDIR}/README.md
4${CT_WEBDIR}/assets/ace/1.0.01/ace.js 4${CT_WEBDIR}/assets/ace/1.0.01/ace.js
5${CT_WEBDIR}/assets/ace/1.0.01/ext-searchbox.js 5${CT_WEBDIR}/assets/ace/1.0.01/ext-searchbox.js
6${CT_WEBDIR}/assets/ace/1.0.01/ext-spellcheck.js 6${CT_WEBDIR}/assets/ace/1.0.01/ext-spellcheck.js
7${CT_WEBDIR}/assets/ace/1.0.01/ext-static_highlight.js 7${CT_WEBDIR}/assets/ace/1.0.01/ext-static_highlight.js
8${CT_WEBDIR}/assets/ace/1.0.01/ext-textarea.js 8${CT_WEBDIR}/assets/ace/1.0.01/ext-textarea.js
9${CT_WEBDIR}/assets/ace/1.0.01/keybinding-emacs.js 9${CT_WEBDIR}/assets/ace/1.0.01/keybinding-emacs.js
10${CT_WEBDIR}/assets/ace/1.0.01/keybinding-vim.js 10${CT_WEBDIR}/assets/ace/1.0.01/keybinding-vim.js
11${CT_WEBDIR}/assets/ace/1.0.01/mode-asciidoc.js 11${CT_WEBDIR}/assets/ace/1.0.01/mode-asciidoc.js
12${CT_WEBDIR}/assets/ace/1.0.01/mode-css.js 12${CT_WEBDIR}/assets/ace/1.0.01/mode-css.js
13${CT_WEBDIR}/assets/ace/1.0.01/mode-diff.js 13${CT_WEBDIR}/assets/ace/1.0.01/mode-diff.js
14${CT_WEBDIR}/assets/ace/1.0.01/mode-html.js 14${CT_WEBDIR}/assets/ace/1.0.01/mode-html.js
@@ -983,26 +983,27 @@ ${CT_WEBDIR}/contao/popup.php @@ -983,26 +983,27 @@ ${CT_WEBDIR}/contao/popup.php
983${CT_WEBDIR}/contao/preview.php 983${CT_WEBDIR}/contao/preview.php
984${CT_WEBDIR}/contao/switch.php 984${CT_WEBDIR}/contao/switch.php
985${CT_WEBDIR}/index.php 985${CT_WEBDIR}/index.php
986${CT_WEBDIR}/share/index.php 986${CT_WEBDIR}/share/index.php
987${CT_WEBDIR}/system/.htaccess 987${CT_WEBDIR}/system/.htaccess
988${CT_WEBDIR}/system/bin/minify 988${CT_WEBDIR}/system/bin/minify
989${CT_WEBDIR}/system/bin/yuicompressor-2.4.6.jar 989${CT_WEBDIR}/system/bin/yuicompressor-2.4.6.jar
990${CT_WEBDIR}/system/config/default.php 990${CT_WEBDIR}/system/config/default.php
991${CT_WEBDIR}/system/cron/.htaccess 991${CT_WEBDIR}/system/cron/.htaccess
992${CT_WEBDIR}/system/cron/cron.php 992${CT_WEBDIR}/system/cron/cron.php
993${CT_WEBDIR}/system/docs/CHANGELOG.md 993${CT_WEBDIR}/system/docs/CHANGELOG.md
994${CT_WEBDIR}/system/docs/GPL.txt 994${CT_WEBDIR}/system/docs/GPL.txt
995${CT_WEBDIR}/system/docs/LGPL.txt 995${CT_WEBDIR}/system/docs/LGPL.txt
 996${CT_WEBDIR}/system/helper/exception.php
996${CT_WEBDIR}/system/helper/functions.php 997${CT_WEBDIR}/system/helper/functions.php
997${CT_WEBDIR}/system/helper/ide_compat.php 998${CT_WEBDIR}/system/helper/ide_compat.php
998${CT_WEBDIR}/system/helper/interface.php 999${CT_WEBDIR}/system/helper/interface.php
999${CT_WEBDIR}/system/helper/mbstring.php 1000${CT_WEBDIR}/system/helper/mbstring.php
1000${CT_WEBDIR}/system/helper/utf8_lookup.php 1001${CT_WEBDIR}/system/helper/utf8_lookup.php
1001${CT_WEBDIR}/system/initialize.php 1002${CT_WEBDIR}/system/initialize.php
1002${CT_WEBDIR}/system/modules/calendar/assets/.htaccess 1003${CT_WEBDIR}/system/modules/calendar/assets/.htaccess
1003${CT_WEBDIR}/system/modules/calendar/assets/icon.gif 1004${CT_WEBDIR}/system/modules/calendar/assets/icon.gif
1004${CT_WEBDIR}/system/modules/calendar/classes/Calendar.php 1005${CT_WEBDIR}/system/modules/calendar/classes/Calendar.php
1005${CT_WEBDIR}/system/modules/calendar/classes/Events.php 1006${CT_WEBDIR}/system/modules/calendar/classes/Events.php
1006${CT_WEBDIR}/system/modules/calendar/config/autoload.ini 1007${CT_WEBDIR}/system/modules/calendar/config/autoload.ini
1007${CT_WEBDIR}/system/modules/calendar/config/autoload.php 1008${CT_WEBDIR}/system/modules/calendar/config/autoload.php
1008${CT_WEBDIR}/system/modules/calendar/config/config.php 1009${CT_WEBDIR}/system/modules/calendar/config/config.php

cvs diff -r1.5 -r1.6 pkgsrc/www/contao31/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/www/contao31/Attic/distinfo 2013/09/29 03:40:32 1.5
+++ pkgsrc/www/contao31/Attic/distinfo 2013/09/30 10:04:34 1.6
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.5 2013/09/29 03:40:32 taca Exp $ 1$NetBSD: distinfo,v 1.6 2013/09/30 10:04:34 taca Exp $
2 2
3SHA1 (contao/3.1.2.tar.gz) = ed7d155aa780643480ebedc1617a44faa5671694 3SHA1 (contao/3.1.3.tar.gz) = 50e940110485bb12dfe36dd2798128c398e7c9e5
4RMD160 (contao/3.1.2.tar.gz) = 2ea78a3e5212b898d799b770b7638809b4af2b0b 4RMD160 (contao/3.1.3.tar.gz) = d378f3e51d63a26814ff6c8c0c94096c670cd83a
5Size (contao/3.1.2.tar.gz) = 9214376 bytes 5Size (contao/3.1.3.tar.gz) = 9204208 bytes
6SHA1 (patch-system_modules_core_library_Contao_Database_Updater.php) = be4f8eeda2237f6c8f47a405b2bd76428f41144e 6SHA1 (patch-system_modules_core_library_Contao_Database_Updater.php) = be4f8eeda2237f6c8f47a405b2bd76428f41144e