Fri Nov 22 14:34:33 2013 UTC ()
Update to 5.0.13

* Fix MESSAGE for sqlite3

Changelog:
Version 5.0.13 Nov 8th 2013

    SECURITY: Fix a possible security bypass on admin page under certain circumstances and MariaDB
    Correctly update database schema during app update
    Fix automatic login rejecion error message
    Several Oracle fixes
    Fixing serverroot/webroot calculation
    Adding detection for aborted uploads for chunked uploads
    Fixing directory handling that end with a space
    Fixing home storage handling
    Allow to share a file/folder as public link also if one of it parents was already shared as link
    Fix search in shared folders
    Fix check for uploads into Shared folder
    Several Shared folder handling fixes
    Prefere them PNGs over core SVGs
    Fall back to default log file of specified logfile doesn't exist
    Several IE fixes
    Fix LDAP login for certain circumstances
    Fixed chunk size calculation for encrypted files
    Fix recursive delete for smb
    Fix using touch for creating files for smb
    Support OCS Share API
    Fix updating ETAGs
    Don't write user passwords into logfile
    Enable configuration of timezones for logfile timestamps
    Cleanup share database table for files that no longer exist
    Adding privilege check on move and rename operations


(ryoon)
diff -r1.12 -r1.13 pkgsrc/www/php-owncloud/MESSAGE
diff -r1.39 -r1.40 pkgsrc/www/php-owncloud/Makefile
diff -r1.20 -r1.21 pkgsrc/www/php-owncloud/PLIST
diff -r1.22 -r1.23 pkgsrc/www/php-owncloud/distinfo

cvs diff -r1.12 -r1.13 pkgsrc/www/php-owncloud/MESSAGE (expand / switch to unified diff)

--- pkgsrc/www/php-owncloud/MESSAGE 2013/09/28 13:29:51 1.12
+++ pkgsrc/www/php-owncloud/MESSAGE 2013/11/22 14:34:33 1.13
@@ -1,40 +1,40 @@ @@ -1,40 +1,40 @@
1=========================================================================== 1===========================================================================
2$NetBSD: MESSAGE,v 1.12 2013/09/28 13:29:51 ryoon Exp $ 2$NetBSD: MESSAGE,v 1.13 2013/11/22 14:34:33 ryoon Exp $
3 3
4To use ownCloud, you will need to perform the following steps. 4To use ownCloud, you will need to perform the following steps.
5 5
61. If you want to use with MySQL server, install databases/mysql55-* 61. If you want to use with MySQL server, install databases/mysql55-*
7 and enable it, then create database. 7 and enable it, then create database.
8 8
92. Install apache httpd server, for example www/apache24 and www/ap-php. 92. Install apache httpd server, for example www/apache24 and www/ap-php.
10 10
113. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf 113. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
12 12
13 Alias /owncloud ${PREFIX}/share/owncloud 13 Alias /owncloud ${PREFIX}/share/owncloud
14 <Directory "${PREFIX}/share/owncloud"> 14 <Directory "${PREFIX}/share/owncloud">
15 DirectoryIndex index.php 15 DirectoryIndex index.php
16 Options All 16 Options All
17 Allow from All 17 Allow from All
18 AllowOverride All 18 AllowOverride All
19 Require all granted 19 Require all granted
20 </Directory> 20 </Directory>
21 21
224. Be sure to have the following lines in ${PREFIX}/etc/php.ini. 224. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
23 23
24 extension=dom.so 24 extension=dom.so
25 extension=gd.so 25 extension=gd.so
26 extension=iconv.so 26 extension=iconv.so
27 extension=json.so 27 extension=json.so
28 extension=mbstring.so 28 extension=mbstring.so
29 extension=pdo.so 
30 extension=zip.so 29 extension=zip.so
31 extension=zlib.so 30 extension=zlib.so
32 31
 32 extension=pdo.so ;if you select sqlite backend.
33 extension=pdo_sqlite.so ;if you select sqlite backend. 33 extension=pdo_sqlite.so ;if you select sqlite backend.
34 extension=mysql.so ;if you select MySQL backend. 34 extension=mysql.so ;if you select MySQL backend.
35 extension=pgsql.so ;if you select PostgreSQL backend. 35 extension=pgsql.so ;if you select PostgreSQL backend.
36 36
375. Start apache httpd. 375. Start apache httpd.
38 38
396. Access http://localhost/owncloud/ and setup. 396. Access http://localhost/owncloud/ and setup.
40=========================================================================== 40===========================================================================

cvs diff -r1.39 -r1.40 pkgsrc/www/php-owncloud/Makefile (expand / switch to unified diff)

--- pkgsrc/www/php-owncloud/Makefile 2013/10/12 12:45:05 1.39
+++ pkgsrc/www/php-owncloud/Makefile 2013/11/22 14:34:33 1.40
@@ -1,27 +1,29 @@ @@ -1,27 +1,29 @@
1# $NetBSD: Makefile,v 1.39 2013/10/12 12:45:05 ryoon Exp $ 1# $NetBSD: Makefile,v 1.40 2013/11/22 14:34:33 ryoon Exp $
2# 2#
3 3
4DISTNAME= owncloud-5.0.12 4DISTNAME= owncloud-5.0.13
5PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} 5PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME}
6CATEGORIES= www 6CATEGORIES= www
7MASTER_SITES= http://download.owncloud.org/community/ 7MASTER_SITES= http://download.owncloud.org/community/
8EXTRACT_SUFX= .tar.bz2 8EXTRACT_SUFX= .tar.bz2
9 9
10MAINTAINER= ryoon@NetBSD.org 10MAINTAINER= ryoon@NetBSD.org
11HOMEPAGE= http://owncloud.org/ 11HOMEPAGE= http://owncloud.org/
12COMMENT= Web services under your control 12COMMENT= Web services under your control
13LICENSE= gnu-agpl-v3 13LICENSE= gnu-agpl-v3
14 14
 15EXTRACT_USING= bsdtar
 16
15DEPENDS+= ${PHP_PKG_PREFIX}-dom>=5.3.0:../../textproc/php-dom 17DEPENDS+= ${PHP_PKG_PREFIX}-dom>=5.3.0:../../textproc/php-dom
16DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.3.0:../../graphics/php-gd 18DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.3.0:../../graphics/php-gd
17DEPENDS+= ${PHP_PKG_PREFIX}-iconv>=5.3.0:../../converters/php-iconv 19DEPENDS+= ${PHP_PKG_PREFIX}-iconv>=5.3.0:../../converters/php-iconv
18DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.3.0:../../textproc/php-json 20DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.3.0:../../textproc/php-json
19DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.3.0:../../converters/php-mbstring 21DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.3.0:../../converters/php-mbstring
20DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.3.0:../../archivers/php-zip 22DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.3.0:../../archivers/php-zip
21DEPENDS+= ${PHP_PKG_PREFIX}-zlib>=5.3.0:../../archivers/php-zlib 23DEPENDS+= ${PHP_PKG_PREFIX}-zlib>=5.3.0:../../archivers/php-zlib
22DEPENDS+= ${PHP_PKG_PREFIX}-pdo>=5.3.0:../../databases/php-pdo 24DEPENDS+= ${PHP_PKG_PREFIX}-pdo>=5.3.0:../../databases/php-pdo
23 25
24.include "options.mk" 26.include "options.mk"
25 27
26WRKSRC= ${WRKDIR}/owncloud 28WRKSRC= ${WRKDIR}/owncloud
27USE_LANGUAGES= # none 29USE_LANGUAGES= # none

cvs diff -r1.20 -r1.21 pkgsrc/www/php-owncloud/PLIST (expand / switch to unified diff)

--- pkgsrc/www/php-owncloud/PLIST 2013/10/12 12:45:05 1.20
+++ pkgsrc/www/php-owncloud/PLIST 2013/11/22 14:34:33 1.21
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.20 2013/10/12 12:45:05 ryoon Exp $ 1@comment $NetBSD: PLIST,v 1.21 2013/11/22 14:34:33 ryoon Exp $
2share/owncloud/.htaccess 2share/owncloud/.htaccess
3share/owncloud/3rdparty/Archive/Tar.php 3share/owncloud/3rdparty/Archive/Tar.php
4share/owncloud/3rdparty/Console/Getopt.php 4share/owncloud/3rdparty/Console/Getopt.php
5share/owncloud/3rdparty/Dropbox/API.php 5share/owncloud/3rdparty/Dropbox/API.php
6share/owncloud/3rdparty/Dropbox/Exception.php 6share/owncloud/3rdparty/Dropbox/Exception.php
7share/owncloud/3rdparty/Dropbox/Exception/Forbidden.php 7share/owncloud/3rdparty/Dropbox/Exception/Forbidden.php
8share/owncloud/3rdparty/Dropbox/Exception/NotFound.php 8share/owncloud/3rdparty/Dropbox/Exception/NotFound.php
9share/owncloud/3rdparty/Dropbox/Exception/OverQuota.php 9share/owncloud/3rdparty/Dropbox/Exception/OverQuota.php
10share/owncloud/3rdparty/Dropbox/Exception/RequestToken.php 10share/owncloud/3rdparty/Dropbox/Exception/RequestToken.php
11share/owncloud/3rdparty/Dropbox/LICENSE.txt 11share/owncloud/3rdparty/Dropbox/LICENSE.txt
12share/owncloud/3rdparty/Dropbox/OAuth.php 12share/owncloud/3rdparty/Dropbox/OAuth.php
13share/owncloud/3rdparty/Dropbox/OAuth/Consumer/Dropbox.php 13share/owncloud/3rdparty/Dropbox/OAuth/Consumer/Dropbox.php
14share/owncloud/3rdparty/Dropbox/OAuth/Curl.php 14share/owncloud/3rdparty/Dropbox/OAuth/Curl.php
@@ -2111,26 +2111,27 @@ share/owncloud/apps/files_pdfviewer/3rdp @@ -2111,26 +2111,27 @@ share/owncloud/apps/files_pdfviewer/3rdp
2111share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/pdf.js 2111share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/pdf.js
2112share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/viewer.css 2112share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/viewer.css
2113share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/viewer.js 2113share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/viewer.js
2114share/owncloud/apps/files_pdfviewer/appinfo/app.php 2114share/owncloud/apps/files_pdfviewer/appinfo/app.php
2115share/owncloud/apps/files_pdfviewer/appinfo/info.xml 2115share/owncloud/apps/files_pdfviewer/appinfo/info.xml
2116share/owncloud/apps/files_pdfviewer/appinfo/version 2116share/owncloud/apps/files_pdfviewer/appinfo/version
2117share/owncloud/apps/files_pdfviewer/js/files.php 2117share/owncloud/apps/files_pdfviewer/js/files.php
2118share/owncloud/apps/files_pdfviewer/js/loader.js 2118share/owncloud/apps/files_pdfviewer/js/loader.js
2119share/owncloud/apps/files_pdfviewer/js/on_event.js 2119share/owncloud/apps/files_pdfviewer/js/on_event.js
2120share/owncloud/apps/files_pdfviewer/templates/pdf.php 2120share/owncloud/apps/files_pdfviewer/templates/pdf.php
2121share/owncloud/apps/files_pdfviewer/viewer.php 2121share/owncloud/apps/files_pdfviewer/viewer.php
2122share/owncloud/apps/files_sharing/appinfo/app.php 2122share/owncloud/apps/files_sharing/appinfo/app.php
2123share/owncloud/apps/files_sharing/appinfo/info.xml 2123share/owncloud/apps/files_sharing/appinfo/info.xml
 2124share/owncloud/apps/files_sharing/appinfo/routes.php
2124share/owncloud/apps/files_sharing/appinfo/update.php 2125share/owncloud/apps/files_sharing/appinfo/update.php
2125share/owncloud/apps/files_sharing/appinfo/version 2126share/owncloud/apps/files_sharing/appinfo/version
2126share/owncloud/apps/files_sharing/css/public.css 2127share/owncloud/apps/files_sharing/css/public.css
2127share/owncloud/apps/files_sharing/js/public.js 2128share/owncloud/apps/files_sharing/js/public.js
2128share/owncloud/apps/files_sharing/js/share.js 2129share/owncloud/apps/files_sharing/js/share.js
2129share/owncloud/apps/files_sharing/l10n/af_ZA.php 2130share/owncloud/apps/files_sharing/l10n/af_ZA.php
2130share/owncloud/apps/files_sharing/l10n/ar.php 2131share/owncloud/apps/files_sharing/l10n/ar.php
2131share/owncloud/apps/files_sharing/l10n/bg_BG.php 2132share/owncloud/apps/files_sharing/l10n/bg_BG.php
2132share/owncloud/apps/files_sharing/l10n/bn_BD.php 2133share/owncloud/apps/files_sharing/l10n/bn_BD.php
2133share/owncloud/apps/files_sharing/l10n/ca.php 2134share/owncloud/apps/files_sharing/l10n/ca.php
2134share/owncloud/apps/files_sharing/l10n/cs_CZ.php 2135share/owncloud/apps/files_sharing/l10n/cs_CZ.php
2135share/owncloud/apps/files_sharing/l10n/da.php 2136share/owncloud/apps/files_sharing/l10n/da.php
2136share/owncloud/apps/files_sharing/l10n/de.php 2137share/owncloud/apps/files_sharing/l10n/de.php
@@ -2172,36 +2173,38 @@ share/owncloud/apps/files_sharing/l10n/s @@ -2172,36 +2173,38 @@ share/owncloud/apps/files_sharing/l10n/s
2172share/owncloud/apps/files_sharing/l10n/sk_SK.php 2173share/owncloud/apps/files_sharing/l10n/sk_SK.php
2173share/owncloud/apps/files_sharing/l10n/sl.php 2174share/owncloud/apps/files_sharing/l10n/sl.php
2174share/owncloud/apps/files_sharing/l10n/sr.php 2175share/owncloud/apps/files_sharing/l10n/sr.php
2175share/owncloud/apps/files_sharing/l10n/sv.php 2176share/owncloud/apps/files_sharing/l10n/sv.php
2176share/owncloud/apps/files_sharing/l10n/ta_LK.php 2177share/owncloud/apps/files_sharing/l10n/ta_LK.php
2177share/owncloud/apps/files_sharing/l10n/th_TH.php 2178share/owncloud/apps/files_sharing/l10n/th_TH.php
2178share/owncloud/apps/files_sharing/l10n/tr.php 2179share/owncloud/apps/files_sharing/l10n/tr.php
2179share/owncloud/apps/files_sharing/l10n/uk.php 2180share/owncloud/apps/files_sharing/l10n/uk.php
2180share/owncloud/apps/files_sharing/l10n/ur_PK.php 2181share/owncloud/apps/files_sharing/l10n/ur_PK.php
2181share/owncloud/apps/files_sharing/l10n/vi.php 2182share/owncloud/apps/files_sharing/l10n/vi.php
2182share/owncloud/apps/files_sharing/l10n/zh_CN.GB2312.php 2183share/owncloud/apps/files_sharing/l10n/zh_CN.GB2312.php
2183share/owncloud/apps/files_sharing/l10n/zh_CN.php 2184share/owncloud/apps/files_sharing/l10n/zh_CN.php
2184share/owncloud/apps/files_sharing/l10n/zh_TW.php 2185share/owncloud/apps/files_sharing/l10n/zh_TW.php
 2186share/owncloud/apps/files_sharing/lib/api.php
2185share/owncloud/apps/files_sharing/lib/cache.php 2187share/owncloud/apps/files_sharing/lib/cache.php
2186share/owncloud/apps/files_sharing/lib/permissions.php 2188share/owncloud/apps/files_sharing/lib/permissions.php
2187share/owncloud/apps/files_sharing/lib/share/file.php 2189share/owncloud/apps/files_sharing/lib/share/file.php
2188share/owncloud/apps/files_sharing/lib/share/folder.php 2190share/owncloud/apps/files_sharing/lib/share/folder.php
2189share/owncloud/apps/files_sharing/lib/sharedstorage.php 2191share/owncloud/apps/files_sharing/lib/sharedstorage.php
2190share/owncloud/apps/files_sharing/lib/updater.php 2192share/owncloud/apps/files_sharing/lib/updater.php
2191share/owncloud/apps/files_sharing/lib/watcher.php 2193share/owncloud/apps/files_sharing/lib/watcher.php
2192share/owncloud/apps/files_sharing/public.php 2194share/owncloud/apps/files_sharing/public.php
2193share/owncloud/apps/files_sharing/templates/authenticate.php 2195share/owncloud/apps/files_sharing/templates/authenticate.php
2194share/owncloud/apps/files_sharing/templates/public.php 2196share/owncloud/apps/files_sharing/templates/public.php
 2197share/owncloud/apps/files_sharing/tests/api.php
2195share/owncloud/apps/files_texteditor/ajax/loadfile.php 2198share/owncloud/apps/files_texteditor/ajax/loadfile.php
2196share/owncloud/apps/files_texteditor/ajax/savefile.php 2199share/owncloud/apps/files_texteditor/ajax/savefile.php
2197share/owncloud/apps/files_texteditor/appinfo/app.php 2200share/owncloud/apps/files_texteditor/appinfo/app.php
2198share/owncloud/apps/files_texteditor/appinfo/info.xml 2201share/owncloud/apps/files_texteditor/appinfo/info.xml
2199share/owncloud/apps/files_texteditor/appinfo/version 2202share/owncloud/apps/files_texteditor/appinfo/version
2200share/owncloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot 2203share/owncloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.eot
2201share/owncloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg 2204share/owncloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.svg
2202share/owncloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf 2205share/owncloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.ttf
2203share/owncloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.woff 2206share/owncloud/apps/files_texteditor/css/DroidSansMono/DroidSansMono-webfont.woff
2204share/owncloud/apps/files_texteditor/css/DroidSansMono/Google Android License.txt 2207share/owncloud/apps/files_texteditor/css/DroidSansMono/Google Android License.txt
2205share/owncloud/apps/files_texteditor/css/DroidSansMono/demo.html 2208share/owncloud/apps/files_texteditor/css/DroidSansMono/demo.html
2206share/owncloud/apps/files_texteditor/css/DroidSansMono/stylesheet.css 2209share/owncloud/apps/files_texteditor/css/DroidSansMono/stylesheet.css
2207share/owncloud/apps/files_texteditor/css/style.css 2210share/owncloud/apps/files_texteditor/css/style.css
@@ -3826,46 +3829,55 @@ share/owncloud/core/doc/admin/_sources/i @@ -3826,46 +3829,55 @@ share/owncloud/core/doc/admin/_sources/i
3826share/owncloud/core/doc/admin/_sources/installation/index.txt 3829share/owncloud/core/doc/admin/_sources/installation/index.txt
3827share/owncloud/core/doc/admin/_sources/installation/installation_appliance.txt 3830share/owncloud/core/doc/admin/_sources/installation/installation_appliance.txt
3828share/owncloud/core/doc/admin/_sources/installation/installation_linux.txt 3831share/owncloud/core/doc/admin/_sources/installation/installation_linux.txt
3829share/owncloud/core/doc/admin/_sources/installation/installation_macos.txt 3832share/owncloud/core/doc/admin/_sources/installation/installation_macos.txt
3830share/owncloud/core/doc/admin/_sources/installation/installation_others.txt 3833share/owncloud/core/doc/admin/_sources/installation/installation_others.txt
3831share/owncloud/core/doc/admin/_sources/installation/installation_source.txt 3834share/owncloud/core/doc/admin/_sources/installation/installation_source.txt
3832share/owncloud/core/doc/admin/_sources/installation/installation_ucs.txt 3835share/owncloud/core/doc/admin/_sources/installation/installation_ucs.txt
3833share/owncloud/core/doc/admin/_sources/installation/installation_windows.txt 3836share/owncloud/core/doc/admin/_sources/installation/installation_windows.txt
3834share/owncloud/core/doc/admin/_sources/issues/index.txt 3837share/owncloud/core/doc/admin/_sources/issues/index.txt
3835share/owncloud/core/doc/admin/_sources/maintenance/backup.txt 3838share/owncloud/core/doc/admin/_sources/maintenance/backup.txt
3836share/owncloud/core/doc/admin/_sources/maintenance/index.txt 3839share/owncloud/core/doc/admin/_sources/maintenance/index.txt
3837share/owncloud/core/doc/admin/_sources/maintenance/migrating.txt 3840share/owncloud/core/doc/admin/_sources/maintenance/migrating.txt
3838share/owncloud/core/doc/admin/_sources/maintenance/update.txt 3841share/owncloud/core/doc/admin/_sources/maintenance/update.txt
 3842share/owncloud/core/doc/admin/_static/ajax-loader.gif
3839share/owncloud/core/doc/admin/_static/basic.css 3843share/owncloud/core/doc/admin/_static/basic.css
3840share/owncloud/core/doc/admin/_static/bootstrap-responsive.css 3844share/owncloud/core/doc/admin/_static/bootstrap-responsive.css
3841share/owncloud/core/doc/admin/_static/bootstrap-sphinx.css 3845share/owncloud/core/doc/admin/_static/bootstrap-sphinx.css
3842share/owncloud/core/doc/admin/_static/bootstrap.css 3846share/owncloud/core/doc/admin/_static/bootstrap.css
3843share/owncloud/core/doc/admin/_static/bootstrap.js 3847share/owncloud/core/doc/admin/_static/bootstrap.js
 3848share/owncloud/core/doc/admin/_static/comment-bright.png
 3849share/owncloud/core/doc/admin/_static/comment-close.png
 3850share/owncloud/core/doc/admin/_static/comment.png
3844share/owncloud/core/doc/admin/_static/doctools.js 3851share/owncloud/core/doc/admin/_static/doctools.js
 3852share/owncloud/core/doc/admin/_static/down-pressed.png
 3853share/owncloud/core/doc/admin/_static/down.png
3845share/owncloud/core/doc/admin/_static/file.png 3854share/owncloud/core/doc/admin/_static/file.png
3846share/owncloud/core/doc/admin/_static/img/glyphicons-halflings-white.png 3855share/owncloud/core/doc/admin/_static/img/glyphicons-halflings-white.png
3847share/owncloud/core/doc/admin/_static/img/glyphicons-halflings.png 3856share/owncloud/core/doc/admin/_static/img/glyphicons-halflings.png
3848share/owncloud/core/doc/admin/_static/img/note.svg 3857share/owncloud/core/doc/admin/_static/img/note.svg
3849share/owncloud/core/doc/admin/_static/img/todo.svg 3858share/owncloud/core/doc/admin/_static/img/todo.svg
3850share/owncloud/core/doc/admin/_static/jquery.js 3859share/owncloud/core/doc/admin/_static/jquery.js
3851share/owncloud/core/doc/admin/_static/logo-blue.pdf 3860share/owncloud/core/doc/admin/_static/logo-blue.pdf
3852share/owncloud/core/doc/admin/_static/logo-blue.png 3861share/owncloud/core/doc/admin/_static/logo-blue.png
3853share/owncloud/core/doc/admin/_static/minus.png 3862share/owncloud/core/doc/admin/_static/minus.png
3854share/owncloud/core/doc/admin/_static/plus.png 3863share/owncloud/core/doc/admin/_static/plus.png
3855share/owncloud/core/doc/admin/_static/pygments.css 3864share/owncloud/core/doc/admin/_static/pygments.css
3856share/owncloud/core/doc/admin/_static/searchtools.js 3865share/owncloud/core/doc/admin/_static/searchtools.js
3857share/owncloud/core/doc/admin/_static/style.css 3866share/owncloud/core/doc/admin/_static/style.css
3858share/owncloud/core/doc/admin/_static/underscore.js 3867share/owncloud/core/doc/admin/_static/underscore.js
 3868share/owncloud/core/doc/admin/_static/up-pressed.png
 3869share/owncloud/core/doc/admin/_static/up.png
 3870share/owncloud/core/doc/admin/_static/websupport.js
3859share/owncloud/core/doc/admin/configuration/auth_ldap.html 3871share/owncloud/core/doc/admin/configuration/auth_ldap.html
3860share/owncloud/core/doc/admin/configuration/background_jobs.html 3872share/owncloud/core/doc/admin/configuration/background_jobs.html
3861share/owncloud/core/doc/admin/configuration/configuration_3rdparty.html 3873share/owncloud/core/doc/admin/configuration/configuration_3rdparty.html
3862share/owncloud/core/doc/admin/configuration/configuration_apps.html 3874share/owncloud/core/doc/admin/configuration/configuration_apps.html
3863share/owncloud/core/doc/admin/configuration/configuration_automation.html 3875share/owncloud/core/doc/admin/configuration/configuration_automation.html
3864share/owncloud/core/doc/admin/configuration/configuration_custom_clients.html 3876share/owncloud/core/doc/admin/configuration/configuration_custom_clients.html
3865share/owncloud/core/doc/admin/configuration/configuration_database.html 3877share/owncloud/core/doc/admin/configuration/configuration_database.html
3866share/owncloud/core/doc/admin/configuration/configuration_encryption.html 3878share/owncloud/core/doc/admin/configuration/configuration_encryption.html
3867share/owncloud/core/doc/admin/configuration/configuration_knowledgebase.html 3879share/owncloud/core/doc/admin/configuration/configuration_knowledgebase.html
3868share/owncloud/core/doc/admin/configuration/configuration_language.html 3880share/owncloud/core/doc/admin/configuration/configuration_language.html
3869share/owncloud/core/doc/admin/configuration/configuration_logging.html 3881share/owncloud/core/doc/admin/configuration/configuration_logging.html
3870share/owncloud/core/doc/admin/configuration/configuration_mail.html 3882share/owncloud/core/doc/admin/configuration/configuration_mail.html
3871share/owncloud/core/doc/admin/configuration/configuration_maintenance.html 3883share/owncloud/core/doc/admin/configuration/configuration_maintenance.html
@@ -3941,46 +3953,55 @@ share/owncloud/core/doc/user/_sources/fi @@ -3941,46 +3953,55 @@ share/owncloud/core/doc/user/_sources/fi
3941share/owncloud/core/doc/user/_sources/files/versioncontrol.txt 3953share/owncloud/core/doc/user/_sources/files/versioncontrol.txt
3942share/owncloud/core/doc/user/_sources/index.txt 3954share/owncloud/core/doc/user/_sources/index.txt
3943share/owncloud/core/doc/user/_sources/mediaplayer.txt 3955share/owncloud/core/doc/user/_sources/mediaplayer.txt
3944share/owncloud/core/doc/user/_sources/migration.txt 3956share/owncloud/core/doc/user/_sources/migration.txt
3945share/owncloud/core/doc/user/_sources/pim/calendar.txt 3957share/owncloud/core/doc/user/_sources/pim/calendar.txt
3946share/owncloud/core/doc/user/_sources/pim/contacts.txt 3958share/owncloud/core/doc/user/_sources/pim/contacts.txt
3947share/owncloud/core/doc/user/_sources/pim/index.txt 3959share/owncloud/core/doc/user/_sources/pim/index.txt
3948share/owncloud/core/doc/user/_sources/pim/sync_ios.txt 3960share/owncloud/core/doc/user/_sources/pim/sync_ios.txt
3949share/owncloud/core/doc/user/_sources/pim/sync_kde.txt 3961share/owncloud/core/doc/user/_sources/pim/sync_kde.txt
3950share/owncloud/core/doc/user/_sources/pim/sync_osx.txt 3962share/owncloud/core/doc/user/_sources/pim/sync_osx.txt
3951share/owncloud/core/doc/user/_sources/pim/sync_thunderbird.txt 3963share/owncloud/core/doc/user/_sources/pim/sync_thunderbird.txt
3952share/owncloud/core/doc/user/_sources/pim/troubleshooting.txt 3964share/owncloud/core/doc/user/_sources/pim/troubleshooting.txt
3953share/owncloud/core/doc/user/_sources/webinterface.txt 3965share/owncloud/core/doc/user/_sources/webinterface.txt
 3966share/owncloud/core/doc/user/_static/ajax-loader.gif
3954share/owncloud/core/doc/user/_static/basic.css 3967share/owncloud/core/doc/user/_static/basic.css
3955share/owncloud/core/doc/user/_static/bootstrap-responsive.css 3968share/owncloud/core/doc/user/_static/bootstrap-responsive.css
3956share/owncloud/core/doc/user/_static/bootstrap-sphinx.css 3969share/owncloud/core/doc/user/_static/bootstrap-sphinx.css
3957share/owncloud/core/doc/user/_static/bootstrap.css 3970share/owncloud/core/doc/user/_static/bootstrap.css
3958share/owncloud/core/doc/user/_static/bootstrap.js 3971share/owncloud/core/doc/user/_static/bootstrap.js
 3972share/owncloud/core/doc/user/_static/comment-bright.png
 3973share/owncloud/core/doc/user/_static/comment-close.png
 3974share/owncloud/core/doc/user/_static/comment.png
3959share/owncloud/core/doc/user/_static/doctools.js 3975share/owncloud/core/doc/user/_static/doctools.js
 3976share/owncloud/core/doc/user/_static/down-pressed.png
 3977share/owncloud/core/doc/user/_static/down.png
3960share/owncloud/core/doc/user/_static/file.png 3978share/owncloud/core/doc/user/_static/file.png
3961share/owncloud/core/doc/user/_static/img/glyphicons-halflings-white.png 3979share/owncloud/core/doc/user/_static/img/glyphicons-halflings-white.png
3962share/owncloud/core/doc/user/_static/img/glyphicons-halflings.png 3980share/owncloud/core/doc/user/_static/img/glyphicons-halflings.png
3963share/owncloud/core/doc/user/_static/img/note.svg 3981share/owncloud/core/doc/user/_static/img/note.svg
3964share/owncloud/core/doc/user/_static/img/todo.svg 3982share/owncloud/core/doc/user/_static/img/todo.svg
3965share/owncloud/core/doc/user/_static/jquery.js 3983share/owncloud/core/doc/user/_static/jquery.js
3966share/owncloud/core/doc/user/_static/logo-blue.pdf 3984share/owncloud/core/doc/user/_static/logo-blue.pdf
3967share/owncloud/core/doc/user/_static/logo-blue.png 3985share/owncloud/core/doc/user/_static/logo-blue.png
3968share/owncloud/core/doc/user/_static/minus.png 3986share/owncloud/core/doc/user/_static/minus.png
3969share/owncloud/core/doc/user/_static/plus.png 3987share/owncloud/core/doc/user/_static/plus.png
3970share/owncloud/core/doc/user/_static/pygments.css 3988share/owncloud/core/doc/user/_static/pygments.css
3971share/owncloud/core/doc/user/_static/searchtools.js 3989share/owncloud/core/doc/user/_static/searchtools.js
3972share/owncloud/core/doc/user/_static/style.css 3990share/owncloud/core/doc/user/_static/style.css
3973share/owncloud/core/doc/user/_static/underscore.js 3991share/owncloud/core/doc/user/_static/underscore.js
 3992share/owncloud/core/doc/user/_static/up-pressed.png
 3993share/owncloud/core/doc/user/_static/up.png
 3994share/owncloud/core/doc/user/_static/websupport.js
3974share/owncloud/core/doc/user/bookmarks.html 3995share/owncloud/core/doc/user/bookmarks.html
3975share/owncloud/core/doc/user/contents.html 3996share/owncloud/core/doc/user/contents.html
3976share/owncloud/core/doc/user/files/configuring_big_file_upload.html 3997share/owncloud/core/doc/user/files/configuring_big_file_upload.html
3977share/owncloud/core/doc/user/files/deletedfiles.html 3998share/owncloud/core/doc/user/files/deletedfiles.html
3978share/owncloud/core/doc/user/files/encryption.html 3999share/owncloud/core/doc/user/files/encryption.html
3979share/owncloud/core/doc/user/files/files.html 4000share/owncloud/core/doc/user/files/files.html
3980share/owncloud/core/doc/user/files/index.html 4001share/owncloud/core/doc/user/files/index.html
3981share/owncloud/core/doc/user/files/sync.html 4002share/owncloud/core/doc/user/files/sync.html
3982share/owncloud/core/doc/user/files/versioncontrol.html 4003share/owncloud/core/doc/user/files/versioncontrol.html
3983share/owncloud/core/doc/user/genindex.html 4004share/owncloud/core/doc/user/genindex.html
3984share/owncloud/core/doc/user/index.html 4005share/owncloud/core/doc/user/index.html
3985share/owncloud/core/doc/user/mediaplayer.html 4006share/owncloud/core/doc/user/mediaplayer.html
3986share/owncloud/core/doc/user/migration.html 4007share/owncloud/core/doc/user/migration.html
@@ -5204,26 +5225,27 @@ share/owncloud/lib/fileproxy/quota.php @@ -5204,26 +5225,27 @@ share/owncloud/lib/fileproxy/quota.php
5204share/owncloud/lib/files.php 5225share/owncloud/lib/files.php
5205share/owncloud/lib/files/cache/cache.php 5226share/owncloud/lib/files/cache/cache.php
5206share/owncloud/lib/files/cache/legacy.php 5227share/owncloud/lib/files/cache/legacy.php
5207share/owncloud/lib/files/cache/permissions.php 5228share/owncloud/lib/files/cache/permissions.php
5208share/owncloud/lib/files/cache/scanner.php 5229share/owncloud/lib/files/cache/scanner.php
5209share/owncloud/lib/files/cache/updater.php 5230share/owncloud/lib/files/cache/updater.php
5210share/owncloud/lib/files/cache/upgrade.php 5231share/owncloud/lib/files/cache/upgrade.php
5211share/owncloud/lib/files/cache/watcher.php 5232share/owncloud/lib/files/cache/watcher.php
5212share/owncloud/lib/files/filesystem.php 5233share/owncloud/lib/files/filesystem.php
5213share/owncloud/lib/files/mapper.php 5234share/owncloud/lib/files/mapper.php
5214share/owncloud/lib/files/mount.php 5235share/owncloud/lib/files/mount.php
5215share/owncloud/lib/files/storage/common.php 5236share/owncloud/lib/files/storage/common.php
5216share/owncloud/lib/files/storage/commontest.php 5237share/owncloud/lib/files/storage/commontest.php
 5238share/owncloud/lib/files/storage/home.php
5217share/owncloud/lib/files/storage/local.php 5239share/owncloud/lib/files/storage/local.php
5218share/owncloud/lib/files/storage/mappedlocal.php 5240share/owncloud/lib/files/storage/mappedlocal.php
5219share/owncloud/lib/files/storage/storage.php 5241share/owncloud/lib/files/storage/storage.php
5220share/owncloud/lib/files/storage/temporary.php 5242share/owncloud/lib/files/storage/temporary.php
5221share/owncloud/lib/files/stream/close.php 5243share/owncloud/lib/files/stream/close.php
5222share/owncloud/lib/files/stream/dir.php 5244share/owncloud/lib/files/stream/dir.php
5223share/owncloud/lib/files/stream/oc.php 5245share/owncloud/lib/files/stream/oc.php
5224share/owncloud/lib/files/stream/staticstream.php 5246share/owncloud/lib/files/stream/staticstream.php
5225share/owncloud/lib/files/utils/scanner.php 5247share/owncloud/lib/files/utils/scanner.php
5226share/owncloud/lib/files/view.php 5248share/owncloud/lib/files/view.php
5227share/owncloud/lib/filesystem.php 5249share/owncloud/lib/filesystem.php
5228share/owncloud/lib/filesystemview.php 5250share/owncloud/lib/filesystemview.php
5229share/owncloud/lib/geo.php 5251share/owncloud/lib/geo.php

cvs diff -r1.22 -r1.23 pkgsrc/www/php-owncloud/distinfo (expand / switch to unified diff)

--- pkgsrc/www/php-owncloud/distinfo 2013/10/12 12:45:05 1.22
+++ pkgsrc/www/php-owncloud/distinfo 2013/11/22 14:34:33 1.23
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.22 2013/10/12 12:45:05 ryoon Exp $ 1$NetBSD: distinfo,v 1.23 2013/11/22 14:34:33 ryoon Exp $
2 2
3SHA1 (owncloud-5.0.12.tar.bz2) = e4ff949c31e31712390272f5b56c5d6212c62574 3SHA1 (owncloud-5.0.13.tar.bz2) = 375d950422718897b57759db81c176b8a14f070b
4RMD160 (owncloud-5.0.12.tar.bz2) = c9a33bbca023bdeaa930597f91a6631b23400199 4RMD160 (owncloud-5.0.13.tar.bz2) = 2a178affc7e74ed159d8a0715c07dbd1dce72340
5Size (owncloud-5.0.12.tar.bz2) = 15147476 bytes 5Size (owncloud-5.0.13.tar.bz2) = 15436770 bytes
6SHA1 (patch-apps_user_ldap_lib_access.php) = 82996f105c16018729596049a060756ad364cbb1 6SHA1 (patch-apps_user_ldap_lib_access.php) = 82996f105c16018729596049a060756ad364cbb1