diff options
author | ryoon <ryoon@pkgsrc.org> | 2014-06-29 13:59:22 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2014-06-29 13:59:22 +0000 |
commit | fe527a6637648a57760d81eed9325dd483f4f54f (patch) | |
tree | a1829e6704c5f5926a97c3936671a418a45d6631 /www | |
parent | 2bbb92bc7b3e4b58a60e5474ce0540c8b378e23f (diff) | |
download | pkgsrc-fe527a6637648a57760d81eed9325dd483f4f54f.tar.gz |
Update to 6.0.4
* I gave up subdirectory installation with nginx... (MESSAGES)
Changelog:
Version 6.0.4 June 23rd 2014
Fixed a security issue (Will be disclosed two weeks after this release)
Several LDAP fixes and improvements
Add deprecated warning to load function
File scanner fixes
Heart beat fixes
Encryption fixes for some corner cases
Fix conflict dialog translations
Fix button text overflow
Fix search with Oracle
Php upload errors are written to log
OCS status code fixes
Add PostgreSQL version warning
Version 6.0.3 April 29rd 2014
Several security fixes. (Will be disclosed 2 weeks after the release)
Appframework extensions to improve the compatibility with 3rdparty apps
LDAP performance improvements
Fix updating of email adresses from LDAP
Fix WebDAV timestamp format handling
Disable internet connection check if a proxy is configured
Fix a potential file chunking problem on a server that is running out of storage
Do not expire file chunks while checking their existence
Fix loading of authentication apps in any case
Performance improvements by reducing the number of chmod operations.
Make the trusted domain upgrade feature more robust.
Don't allow creating a "Shared" folder.
Fixed "select all" + download on public page
Fix share as link with email multiple users
Reset time of last update feed polling to fix the updater
Share API fixes
Admin option for public upload with encryption enabled
Fix CIFS with home shares
Detect a missing "data" directory mount
Fix the filesize calculation of encrypted files
Fixes in the OpenStack support
Fixes in the SWIFT support
Don't block PHP sessions during download
Fix sharing oc addressbooks
Several ownCloud Documents improvements and fixes
Several smaller bugfixes
Diffstat (limited to 'www')
-rw-r--r-- | www/php-owncloud/MESSAGE | 93 | ||||
-rw-r--r-- | www/php-owncloud/Makefile | 5 | ||||
-rw-r--r-- | www/php-owncloud/PLIST | 1405 | ||||
-rw-r--r-- | www/php-owncloud/distinfo | 8 |
4 files changed, 206 insertions, 1305 deletions
diff --git a/www/php-owncloud/MESSAGE b/www/php-owncloud/MESSAGE index 5471eb6a9af..8beca2cf456 100644 --- a/www/php-owncloud/MESSAGE +++ b/www/php-owncloud/MESSAGE @@ -1,5 +1,5 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.14 2014/03/23 01:19:17 ryoon Exp $ +$NetBSD: MESSAGE,v 1.15 2014/06/29 13:59:22 ryoon Exp $ To use ownCloud, you will need to perform the following steps. @@ -11,33 +11,74 @@ To use ownCloud, you will need to perform the following steps. 3. Install PHP-FPM, PHP FastCGI Process Magager from www/php-fpm. 4. Be sure to have the following lines in ${PREFIX}/etc/nginx/nginx.conf - to enable PHP script in http://YOUR_SERVER_NAME/owncloud/ . - - http { - server { - listen 80; - server_name YOUR_SERVER_NAME; - root ${PREFIX}/share/owncloud/; - - client_max_body_size 10G; # set max upload size - fastcgi_buffers 64 4K; - - location /owncloud { - index index.php; - error_page 403 /owncloud/core/templates/403.php; - error_page 404 /owncloud/core/templates/404.php; - alias ${PREFIX}/share/owncloud; - } - - location ~ ^(.+?\.php)(/.*)?$ { - include fastcgi_params; - fastcgi_param SCRIPT_FILENAME ${PREFIX}/share/$1; - fastcgi_param PATH_INFO $2; - fastcgi_pass 127.0.0.1:9000; - } + to enable PHP script in http://YOUR_SERVER_NAME/ . + From http://doc.owncloud.org/server/6.0/admin_manual/installation/installation_source.html . + +http { + upstream php-handler { + server 127.0.0.1:9000; + } + +server { + listen 80; + server_name YOUR_SERVER_NAME; + + root ${PREFIX}/share/owncloud; + + client_max_body_size 10G; # set max upload size + fastcgi_buffers 64 4K; + + rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect; + rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect; + rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect; + + index index.php; + error_page 403 /core/templates/403.php; + error_page 404 /core/templates/404.php; + + location = /robots.txt { + allow all; + log_not_found off; + access_log off; + } + + location ~ ^/(data|config|\.ht|db_structure\.xml|README) { + deny all; } + + location / { + # The following 2 rules are only needed with webfinger + rewrite ^/.well-known/host-meta /public.php?service=host-meta last; + rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last; + + rewrite ^/.well-known/carddav /remote.php/carddav/ redirect; + rewrite ^/.well-known/caldav /remote.php/caldav/ redirect; + + rewrite ^(/core/doc/[^\/]+/)$ $1/index.html; + + try_files $uri $uri/ index.php; + } + + location ~ ^(.+?\.php)(/.*)?$ { + try_files $1 =404; + + include fastcgi_params; + fastcgi_param SCRIPT_FILENAME $document_root$1; + fastcgi_param PATH_INFO $2; + fastcgi_param HTTPS on; + fastcgi_pass php-handler; } + # Optional: set long EXPIRES header on static assets + location ~* ^.+\.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ { + expires 30d; + # Optional: Don't log access to assets + access_log off; + } + +} +} + 5. Be sure to have the following lines in ${PREFIX}/etc/php-fam.conf to restrict access from localhost only. @@ -66,5 +107,5 @@ To use ownCloud, you will need to perform the following steps. ${RCD_SCRIPTS_DIR}/nginx start -6. Access http://YOUR_SERVER_NAME/owncloud/ and setup. +6. Access http://YOUR_SERVER_NAME/ and setup. =========================================================================== diff --git a/www/php-owncloud/Makefile b/www/php-owncloud/Makefile index f6a03b561c0..6ff78522bf9 100644 --- a/www/php-owncloud/Makefile +++ b/www/php-owncloud/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.44 2014/05/29 23:38:17 wiz Exp $ +# $NetBSD: Makefile,v 1.45 2014/06/29 13:59:22 ryoon Exp $ # -DISTNAME= owncloud-6.0.2 +DISTNAME= owncloud-6.0.4 PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= www MASTER_SITES= http://download.owncloud.org/community/ EXTRACT_SUFX= .tar.bz2 diff --git a/www/php-owncloud/PLIST b/www/php-owncloud/PLIST index 5768e469825..7fc92c3f712 100644 --- a/www/php-owncloud/PLIST +++ b/www/php-owncloud/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.24 2014/03/23 01:19:17 ryoon Exp $ +@comment $NetBSD: PLIST,v 1.25 2014/06/29 13:59:22 ryoon Exp $ share/owncloud/.htaccess share/owncloud/3rdparty/Archive/Tar.php share/owncloud/3rdparty/Console/Getopt.php @@ -105,232 +105,6 @@ share/owncloud/3rdparty/PEAR/Validate.php share/owncloud/3rdparty/PEAR/Validator/PECL.php share/owncloud/3rdparty/PEAR/XMLParser.php share/owncloud/3rdparty/PEAR5.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Autoloader.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/APC.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/ICache.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/Igbinary.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/Memory.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorage/Wincache.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CachedObjectStorageFactory.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CalcEngine/CyclicReferenceStack.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/CalcEngine/Logger.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/Database.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/DateTime.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/Engineering.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/Exception.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/ExceptionHandler.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/Financial.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/FormulaParser.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/FormulaToken.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/Function.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/Functions.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/Logical.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/LookupRef.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/MathTrig.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/Statistical.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/TextData.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/Token/Stack.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Calculation/functionlist.txt -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Cell.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Cell/AdvancedValueBinder.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Cell/DataType.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Cell/DataValidation.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Cell/DefaultValueBinder.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Cell/Hyperlink.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Cell/IValueBinder.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart/DataSeries.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart/DataSeriesValues.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart/Exception.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart/Layout.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart/Legend.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart/PlotArea.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart/Renderer/jpgraph.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Chart/Title.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Comment.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/DocumentProperties.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/DocumentSecurity.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Exception.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/HashTable.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/IComparable.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/IOFactory.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/NamedRange.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/Abstract.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/CSV.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/DefaultReadFilter.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/Excel2003XML.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/Excel2007.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/Excel2007/Chart.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/Excel2007/Theme.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/Excel5.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/Excel5/Escher.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/Exception.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/Gnumeric.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/HTML.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/IReadFilter.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/IReader.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/OOCalc.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Reader/SYLK.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/ReferenceHelper.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/RichText.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/RichText/ITextElement.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/RichText/Run.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/RichText/TextElement.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Settings.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/CodePage.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Date.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Drawing.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Escher.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Escher/DgContainer.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Escher/DggContainer.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Excel5.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/File.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/Font.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/JAMA/Matrix.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/JAMA/utils/Error.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/JAMA/utils/Maths.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/OLE.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/OLE/PPS.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/OLE/PPS/File.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/OLERead.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/PCLZip/gnu-lgpl.txt -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/PCLZip/readme.txt -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/PasswordHasher.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/String.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/TimeZone.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/XMLWriter.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/ZipArchive.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/trend/bestFitClass.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/trend/linearBestFitClass.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/trend/powerBestFitClass.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Shared/trend/trendClass.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/Alignment.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/Border.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/Borders.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/Color.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/Conditional.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/Fill.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/Font.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/NumberFormat.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/Protection.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Style/Supervisor.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/AutoFilter.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/AutoFilter/Column/Rule.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/BaseDrawing.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/CellIterator.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/ColumnDimension.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/Drawing.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/HeaderFooter.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/MemoryDrawing.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/PageMargins.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/PageSetup.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/Protection.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/Row.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/RowDimension.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/RowIterator.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Worksheet/SheetView.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/WorksheetIterator.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Abstract.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/CSV.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/Chart.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/Comments.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/DocProps.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/Drawing.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/Rels.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/StringTable.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/Style.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/Theme.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/Workbook.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/Worksheet.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel2007/WriterPart.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel5.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel5/Escher.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel5/Font.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel5/Parser.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel5/Workbook.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Excel5/Xf.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/Exception.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/HTML.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/IWriter.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/PDF.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/PDF/Core.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/PDF/DomPDF.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/PDF/mPDF.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/Writer/PDF/tcPDF.php -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/cs/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/cs/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/da/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/da/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/de/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/de/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/en/uk/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/es/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/es/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/fi/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/fi/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/fr/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/fr/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/hu/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/hu/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/it/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/it/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/nl/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/nl/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/no/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/no/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/pl/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/pl/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/pt/br/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/pt/br/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/pt/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/pt/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/ru/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/ru/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/sv/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/sv/functions -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/tr/config -share/owncloud/3rdparty/PHPExcel/Classes/PHPExcel/locale/tr/functions -share/owncloud/3rdparty/PHPExcel/changelog.txt -share/owncloud/3rdparty/PHPExcel/install.txt -share/owncloud/3rdparty/PHPExcel/license.txt share/owncloud/3rdparty/Patchwork/PHP/Shim/Iconv.php share/owncloud/3rdparty/Patchwork/PHP/Shim/Intl.php share/owncloud/3rdparty/Patchwork/PHP/Shim/Mbstring.php @@ -641,14 +415,11 @@ share/owncloud/3rdparty/css/chosen.css share/owncloud/3rdparty/css/chosen/chosen-sprite.png share/owncloud/3rdparty/css/chosen/chosen.css share/owncloud/3rdparty/doctrine/common/.gitmodules -share/owncloud/3rdparty/doctrine/common/.travis.yml share/owncloud/3rdparty/doctrine/common/LICENSE share/owncloud/3rdparty/doctrine/common/README.md share/owncloud/3rdparty/doctrine/common/UPGRADE_TO_2_1 share/owncloud/3rdparty/doctrine/common/UPGRADE_TO_2_2 -share/owncloud/3rdparty/doctrine/common/bin/travis-setup.php share/owncloud/3rdparty/doctrine/common/build.properties -share/owncloud/3rdparty/doctrine/common/build.xml share/owncloud/3rdparty/doctrine/common/composer.json share/owncloud/3rdparty/doctrine/common/lib/Doctrine/Common/Annotations/Annotation.php share/owncloud/3rdparty/doctrine/common/lib/Doctrine/Common/Annotations/Annotation/Attribute.php @@ -851,7 +622,6 @@ share/owncloud/3rdparty/doctrine/common/tests/Doctrine/Tests/TestInit.php share/owncloud/3rdparty/doctrine/common/tests/NativePhpunitTask.php share/owncloud/3rdparty/doctrine/common/tests/README.markdown share/owncloud/3rdparty/doctrine/dbal/.gitmodules -share/owncloud/3rdparty/doctrine/dbal/.travis.yml share/owncloud/3rdparty/doctrine/dbal/LICENSE share/owncloud/3rdparty/doctrine/dbal/README.md share/owncloud/3rdparty/doctrine/dbal/UPGRADE @@ -859,7 +629,6 @@ share/owncloud/3rdparty/doctrine/dbal/bin/doctrine-dbal share/owncloud/3rdparty/doctrine/dbal/bin/doctrine-dbal.php share/owncloud/3rdparty/doctrine/dbal/bin/doctrine.php share/owncloud/3rdparty/doctrine/dbal/build.properties -share/owncloud/3rdparty/doctrine/dbal/build.xml share/owncloud/3rdparty/doctrine/dbal/composer.json share/owncloud/3rdparty/doctrine/dbal/docs/design/AZURE_FEDERATIONS.md share/owncloud/3rdparty/doctrine/dbal/docs/design/SHARDING.md @@ -1134,203 +903,6 @@ share/owncloud/3rdparty/doctrine/dbal/tests/travis/mysql.travis.xml share/owncloud/3rdparty/doctrine/dbal/tests/travis/mysqli.travis.xml share/owncloud/3rdparty/doctrine/dbal/tests/travis/pgsql.travis.xml share/owncloud/3rdparty/doctrine/dbal/tests/travis/sqlite.travis.xml -share/owncloud/3rdparty/dompdf/LICENSE.LGPL -share/owncloud/3rdparty/dompdf/changelog.txt -share/owncloud/3rdparty/dompdf/docblox.dist.xml -share/owncloud/3rdparty/dompdf/dompdf.php -share/owncloud/3rdparty/dompdf/dompdf_config.custom.inc.php -share/owncloud/3rdparty/dompdf/dompdf_config.inc.php -share/owncloud/3rdparty/dompdf/include/absolute_positioner.cls.php -share/owncloud/3rdparty/dompdf/include/abstract_renderer.cls.php -share/owncloud/3rdparty/dompdf/include/attribute_translator.cls.php -share/owncloud/3rdparty/dompdf/include/autoload.inc.php -share/owncloud/3rdparty/dompdf/include/block_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/block_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/block_positioner.cls.php -share/owncloud/3rdparty/dompdf/include/block_renderer.cls.php -share/owncloud/3rdparty/dompdf/include/cached_pdf_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/canvas.cls.php -share/owncloud/3rdparty/dompdf/include/canvas_factory.cls.php -share/owncloud/3rdparty/dompdf/include/cellmap.cls.php -share/owncloud/3rdparty/dompdf/include/cpdf_adapter.cls.php -share/owncloud/3rdparty/dompdf/include/css_color.cls.php -share/owncloud/3rdparty/dompdf/include/dompdf.cls.php -share/owncloud/3rdparty/dompdf/include/dompdf_exception.cls.php -share/owncloud/3rdparty/dompdf/include/dompdf_image_exception.cls.php -share/owncloud/3rdparty/dompdf/include/file.skel -share/owncloud/3rdparty/dompdf/include/fixed_positioner.cls.php -share/owncloud/3rdparty/dompdf/include/font_metrics.cls.php -share/owncloud/3rdparty/dompdf/include/frame.cls.php -share/owncloud/3rdparty/dompdf/include/frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/frame_factory.cls.php -share/owncloud/3rdparty/dompdf/include/frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/frame_tree.cls.php -share/owncloud/3rdparty/dompdf/include/functions.inc.php -share/owncloud/3rdparty/dompdf/include/gd_adapter.cls.php -share/owncloud/3rdparty/dompdf/include/image_cache.cls.php -share/owncloud/3rdparty/dompdf/include/image_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/image_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/image_renderer.cls.php -share/owncloud/3rdparty/dompdf/include/inline_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/inline_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/inline_positioner.cls.php -share/owncloud/3rdparty/dompdf/include/inline_renderer.cls.php -share/owncloud/3rdparty/dompdf/include/javascript_embedder.cls.php -share/owncloud/3rdparty/dompdf/include/line_box.cls.php -share/owncloud/3rdparty/dompdf/include/list_bullet_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/list_bullet_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/list_bullet_image_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/list_bullet_positioner.cls.php -share/owncloud/3rdparty/dompdf/include/list_bullet_renderer.cls.php -share/owncloud/3rdparty/dompdf/include/null_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/null_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/null_positioner.cls.php -share/owncloud/3rdparty/dompdf/include/page_cache.cls.php -share/owncloud/3rdparty/dompdf/include/page_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/page_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/pdflib_adapter.cls.php -share/owncloud/3rdparty/dompdf/include/php_evaluator.cls.php -share/owncloud/3rdparty/dompdf/include/positioner.cls.php -share/owncloud/3rdparty/dompdf/include/renderer.cls.php -share/owncloud/3rdparty/dompdf/include/style.cls.php -share/owncloud/3rdparty/dompdf/include/stylesheet.cls.php -share/owncloud/3rdparty/dompdf/include/table_cell_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/table_cell_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/table_cell_positioner.cls.php -share/owncloud/3rdparty/dompdf/include/table_cell_renderer.cls.php -share/owncloud/3rdparty/dompdf/include/table_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/table_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/table_row_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/table_row_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/table_row_group_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/table_row_group_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/table_row_group_renderer.cls.php -share/owncloud/3rdparty/dompdf/include/table_row_positioner.cls.php -share/owncloud/3rdparty/dompdf/include/tcpdf_adapter.cls.php -share/owncloud/3rdparty/dompdf/include/text_frame_decorator.cls.php -share/owncloud/3rdparty/dompdf/include/text_frame_reflower.cls.php -share/owncloud/3rdparty/dompdf/include/text_renderer.cls.php -share/owncloud/3rdparty/dompdf/index.php -share/owncloud/3rdparty/dompdf/lib/class.pdf.php -share/owncloud/3rdparty/dompdf/lib/fonts/Courier-Bold.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Courier-BoldOblique.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Courier-Oblique.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Courier.afm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans-Bold.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans-Bold.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans-BoldOblique.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans-BoldOblique.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans-ExtraLight.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans-ExtraLight.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans-Oblique.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans-Oblique.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSans.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansCondensed-Bold.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansCondensed-Bold.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansCondensed-BoldOblique.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansCondensed-BoldOblique.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansCondensed-Oblique.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansCondensed-Oblique.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansCondensed.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansCondensed.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansMono-Bold.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansMono-Bold.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansMono-BoldOblique.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansMono-Oblique.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansMono-Oblique.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansMono.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSansMono.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerif-Bold.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerif-Bold.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerif-BoldItalic.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerif-Italic.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerif-Italic.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerif.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerif.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerifCondensed-Bold.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerifCondensed-Bold.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerifCondensed-BoldItalic.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerifCondensed-BoldItalic.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerifCondensed-Italic.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerifCondensed-Italic.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerifCondensed.ttf -share/owncloud/3rdparty/dompdf/lib/fonts/DejaVuSerifCondensed.ufm -share/owncloud/3rdparty/dompdf/lib/fonts/Helvetica-Bold.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Helvetica-BoldOblique.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Helvetica-Oblique.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Helvetica.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Symbol.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Times-Bold.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Times-BoldItalic.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Times-Italic.afm -share/owncloud/3rdparty/dompdf/lib/fonts/Times-Roman.afm -share/owncloud/3rdparty/dompdf/lib/fonts/ZapfDingbats.afm -share/owncloud/3rdparty/dompdf/lib/fonts/dompdf_font_family_cache.dist.php -share/owncloud/3rdparty/dompdf/lib/fonts/mustRead.html -share/owncloud/3rdparty/dompdf/lib/html5lib/Data.php -share/owncloud/3rdparty/dompdf/lib/html5lib/InputStream.php -share/owncloud/3rdparty/dompdf/lib/html5lib/Parser.php -share/owncloud/3rdparty/dompdf/lib/html5lib/Tokenizer.php -share/owncloud/3rdparty/dompdf/lib/html5lib/TreeBuilder.php -share/owncloud/3rdparty/dompdf/lib/html5lib/named-character-references.ser -share/owncloud/3rdparty/dompdf/lib/php-font-lib/.htaccess -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/adobe_font_metrics.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/encoding_map.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_binary_stream.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_eot.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_header.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_opentype.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_opentype_table_directory_entry.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_cmap.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_directory_entry.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_glyf.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_head.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_hhea.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_hmtx.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_kern.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_loca.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_maxp.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_name.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_name_record.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_os2.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_table_post.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_truetype.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_truetype_collection.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_truetype_header.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_truetype_table_directory_entry.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_woff.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_woff_header.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/classes/font_woff_table_directory_entry.cls.php -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/adobe-standard-encoding.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/cp1250.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/cp1251.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/cp1252.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/cp1253.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/cp1254.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/cp1255.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/cp1257.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/cp1258.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/cp874.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/iso-8859-1.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/iso-8859-11.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/iso-8859-15.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/iso-8859-16.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/iso-8859-2.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/iso-8859-4.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/iso-8859-5.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/iso-8859-7.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/iso-8859-9.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/koi8-r.map -share/owncloud/3rdparty/dompdf/lib/php-font-lib/maps/koi8-u.map -share/owncloud/3rdparty/dompdf/lib/res/broken_image.png -share/owncloud/3rdparty/dompdf/lib/res/html.css -share/owncloud/3rdparty/dompdf/load_font.php -share/owncloud/3rdparty/dompdf/readme.html share/owncloud/3rdparty/fontawesome/README.md share/owncloud/3rdparty/fontawesome/css/font-awesome-ie7.min.css share/owncloud/3rdparty/fontawesome/css/font-awesome.css @@ -1525,617 +1097,6 @@ share/owncloud/3rdparty/phpass/PasswordHash.php share/owncloud/3rdparty/phpass/c/Makefile share/owncloud/3rdparty/phpass/c/crypt_private.c share/owncloud/3rdparty/phpass/test.php -share/owncloud/3rdparty/phpdocx/Faq and Docs.txt -share/owncloud/3rdparty/phpdocx/How to install.txt -share/owncloud/3rdparty/phpdocx/LICENSE -share/owncloud/3rdparty/phpdocx/Readme.txt -share/owncloud/3rdparty/phpdocx/classes/AutoLoader.inc -share/owncloud/3rdparty/phpdocx/classes/CreateBarChart.inc -share/owncloud/3rdparty/phpdocx/classes/CreateChartFactory.inc -share/owncloud/3rdparty/phpdocx/classes/CreateChartRels.inc -share/owncloud/3rdparty/phpdocx/classes/CreateCompletedXlsx.inc -share/owncloud/3rdparty/phpdocx/classes/CreateDocument.inc -share/owncloud/3rdparty/phpdocx/classes/CreateDocx.inc -share/owncloud/3rdparty/phpdocx/classes/CreateElement.inc -share/owncloud/3rdparty/phpdocx/classes/CreateEmbeddedElement.inc -share/owncloud/3rdparty/phpdocx/classes/CreateFactory.inc -share/owncloud/3rdparty/phpdocx/classes/CreateFontTable.inc -share/owncloud/3rdparty/phpdocx/classes/CreateFooter.inc -share/owncloud/3rdparty/phpdocx/classes/CreateGraphic.inc -share/owncloud/3rdparty/phpdocx/classes/CreateHeader.inc -share/owncloud/3rdparty/phpdocx/classes/CreateImage.inc -share/owncloud/3rdparty/phpdocx/classes/CreateLink.inc -share/owncloud/3rdparty/phpdocx/classes/CreateList.inc -share/owncloud/3rdparty/phpdocx/classes/CreateMath.inc -share/owncloud/3rdparty/phpdocx/classes/CreatePage.inc -share/owncloud/3rdparty/phpdocx/classes/CreatePieChart.inc -share/owncloud/3rdparty/phpdocx/classes/CreateSettings.inc -share/owncloud/3rdparty/phpdocx/classes/CreateSimpleXlsx.inc -share/owncloud/3rdparty/phpdocx/classes/CreateStyle.inc -share/owncloud/3rdparty/phpdocx/classes/CreateStyleTable.inc -share/owncloud/3rdparty/phpdocx/classes/CreateTable.inc -share/owncloud/3rdparty/phpdocx/classes/CreateText.inc -share/owncloud/3rdparty/phpdocx/classes/CreateTheme1.inc -share/owncloud/3rdparty/phpdocx/classes/CreateWebSettings.inc -share/owncloud/3rdparty/phpdocx/classes/CreateXlsx.inc -share/owncloud/3rdparty/phpdocx/classes/Debug.inc -share/owncloud/3rdparty/phpdocx/classes/Docx2Text.inc -share/owncloud/3rdparty/phpdocx/classes/InterfaceGraphic.inc -share/owncloud/3rdparty/phpdocx/classes/InterfaceXlsx.inc -share/owncloud/3rdparty/phpdocx/classes/Parser.inc -share/owncloud/3rdparty/phpdocx/classes/PhpdocxLogger.inc -share/owncloud/3rdparty/phpdocx/classes/PhpdocxUtilities.inc -share/owncloud/3rdparty/phpdocx/classes/Phpdocx_config.inc -share/owncloud/3rdparty/phpdocx/classes/TransformDoc.inc -share/owncloud/3rdparty/phpdocx/classes/WordML.inc -share/owncloud/3rdparty/phpdocx/config/log4php.xml -share/owncloud/3rdparty/phpdocx/config/phpdocxconfig.ini -share/owncloud/3rdparty/phpdocx/excel/[Content_Types].xml -share/owncloud/3rdparty/phpdocx/excel/_rels/.rels -share/owncloud/3rdparty/phpdocx/excel/docProps/app.xml -share/owncloud/3rdparty/phpdocx/excel/docProps/core.xml -share/owncloud/3rdparty/phpdocx/excel/excel.xlsx -share/owncloud/3rdparty/phpdocx/excel/xl/_rels/workbook.xml.rels -share/owncloud/3rdparty/phpdocx/excel/xl/printerSettings/printerSettings1.bin -share/owncloud/3rdparty/phpdocx/excel/xl/sharedStrings.xml -share/owncloud/3rdparty/phpdocx/excel/xl/styles.xml -share/owncloud/3rdparty/phpdocx/excel/xl/tables/table1.xml -share/owncloud/3rdparty/phpdocx/excel/xl/theme/theme1.xml -share/owncloud/3rdparty/phpdocx/excel/xl/workbook.xml -share/owncloud/3rdparty/phpdocx/excel/xl/worksheets/_rels/sheet1.xml.rels -share/owncloud/3rdparty/phpdocx/excel/xl/worksheets/sheet1.xml -share/owncloud/3rdparty/phpdocx/lib/log4php/Logger.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerAppender.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerAppenderPool.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerAutoloader.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerConfigurable.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerConfigurator.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerException.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerFilter.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerHierarchy.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerLayout.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerLevel.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerLocationInfo.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerLoggingEvent.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerMDC.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerNDC.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerReflectionUtils.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerRoot.php -share/owncloud/3rdparty/phpdocx/lib/log4php/LoggerThrowableInformation.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderConsole.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderDailyFile.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderEcho.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderFile.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderFirePHP.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderMail.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderMailEvent.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderMongoDB.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderNull.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderPDO.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderPhp.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderRollingFile.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderSocket.php -share/owncloud/3rdparty/phpdocx/lib/log4php/appenders/LoggerAppenderSyslog.php -share/owncloud/3rdparty/phpdocx/lib/log4php/configurators/LoggerConfigurationAdapter.php -share/owncloud/3rdparty/phpdocx/lib/log4php/configurators/LoggerConfigurationAdapterINI.php -share/owncloud/3rdparty/phpdocx/lib/log4php/configurators/LoggerConfigurationAdapterPHP.php -share/owncloud/3rdparty/phpdocx/lib/log4php/configurators/LoggerConfigurationAdapterXML.php -share/owncloud/3rdparty/phpdocx/lib/log4php/configurators/LoggerConfiguratorDefault.php -share/owncloud/3rdparty/phpdocx/lib/log4php/filters/LoggerFilterDenyAll.php -share/owncloud/3rdparty/phpdocx/lib/log4php/filters/LoggerFilterLevelMatch.php -share/owncloud/3rdparty/phpdocx/lib/log4php/filters/LoggerFilterLevelRange.php -share/owncloud/3rdparty/phpdocx/lib/log4php/filters/LoggerFilterStringMatch.php -share/owncloud/3rdparty/phpdocx/lib/log4php/helpers/LoggerFormattingInfo.php -share/owncloud/3rdparty/phpdocx/lib/log4php/helpers/LoggerOptionConverter.php -share/owncloud/3rdparty/phpdocx/lib/log4php/helpers/LoggerPatternParser.php -share/owncloud/3rdparty/phpdocx/lib/log4php/helpers/LoggerUtils.php -share/owncloud/3rdparty/phpdocx/lib/log4php/layouts/LoggerLayoutHtml.php -share/owncloud/3rdparty/phpdocx/lib/log4php/layouts/LoggerLayoutPattern.php -share/owncloud/3rdparty/phpdocx/lib/log4php/layouts/LoggerLayoutSerialized.php -share/owncloud/3rdparty/phpdocx/lib/log4php/layouts/LoggerLayoutSimple.php -share/owncloud/3rdparty/phpdocx/lib/log4php/layouts/LoggerLayoutTTCC.php -share/owncloud/3rdparty/phpdocx/lib/log4php/layouts/LoggerLayoutXml.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverter.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterClass.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterCookie.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterDate.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterEnvironment.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterFile.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterLevel.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterLine.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterLiteral.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterLocation.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterLogger.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterMDC.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterMessage.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterMethod.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterNDC.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterNewLine.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterProcess.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterRelative.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterRequest.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterServer.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterSession.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterSessionID.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterSuperglobal.php -share/owncloud/3rdparty/phpdocx/lib/log4php/pattern/LoggerPatternConverterThrowable.php -share/owncloud/3rdparty/phpdocx/lib/log4php/renderers/LoggerRenderer.php -share/owncloud/3rdparty/phpdocx/lib/log4php/renderers/LoggerRendererDefault.php -share/owncloud/3rdparty/phpdocx/lib/log4php/renderers/LoggerRendererException.php -share/owncloud/3rdparty/phpdocx/lib/log4php/renderers/LoggerRendererMap.php -share/owncloud/3rdparty/phpdocx/lib/log4php/xml/log4php.dtd -share/owncloud/3rdparty/phpdocx/pdf/LICENSE.LGPL -share/owncloud/3rdparty/phpdocx/pdf/lib/class.pdf.php -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Courier-Bold.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Courier-BoldOblique.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Courier-Oblique.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Courier.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Helvetica-Bold.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Helvetica-BoldOblique.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Helvetica-Oblique.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Helvetica.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Symbol.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Times-Bold.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Times-Bold.afm.php -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Times-BoldItalic.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Times-Italic.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Times-Roman.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/Times-Roman.afm.php -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/ZapfDingbats.afm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/dompdf_font_family_cache.dist.php -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/log.htm -share/owncloud/3rdparty/phpdocx/pdf/lib/fonts/mustRead.html -share/owncloud/3rdparty/phpdocx/pdf/lib/res/broken_image.png -share/owncloud/3rdparty/phpdocx/pdf/lib/res/html.css -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/README.TXT -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/bin/ttf2ufm.exe -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/CHANGES -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/CHANGES.html -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/COPYRIGHT -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/FONTS -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/FONTS.hpux -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/FONTS.hpux.html -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/FONTS.html -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/Makefile -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/README -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/README.FIRST -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/README.html -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/RPM/Makefile -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/RPM/ttf2pt1.spec -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/RPM/ttf2pt1.spec.src -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/TeX/README -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/TeX/README.html -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/TeX/cjk-latex-config -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/TeX/cjk-latex-t1mapgen -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/TeX/sfd2map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/X11/README -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/X11/README.html -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/X11/t1-xf86.334.patch -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/X11/t1-xf86.39.patch -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/Makefile -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/README -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/README.html -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/fontsz.cf -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/notscape -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/nsfilter -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/nsfix.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/nspr -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/nsprint -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/app/netscape/psfonts.cf -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/bdf.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/bitmap.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/byteorder.h -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/cygbuild.sh -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/README -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/README.html -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/adobestd/adobe-std.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/bulgarian/README -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/bulgarian/encodings.alias -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/bulgarian/ibm-1251.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/bulgarian/ibm-866.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/bulgarian/iso8859-5.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/bulgarian/koi8-r.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/cyrillic/encodings.alias -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/cyrillic/ibm-1251.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/cyrillic/ibm-866.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/cyrillic/iso8859-5.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/cyrillic/koi8-r.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/latin1/iso8859-1.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/latin2/iso8859-2.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/latin4/iso8859-4 -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/latin4/iso8859-4.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/latin5/iso8859-9 -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/russian/README -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/russian/encodings.alias -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/russian/ibm-1251.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/russian/ibm-866.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/russian/iso8859-5.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/encodings/russian/koi8-r.tbl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/ft.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/global.h -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/CP1250.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/CP1251.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/T2A_compact.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/adobe-standard-encoding.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/cubg5plus.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/cubig5.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/cugb.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/cugbk.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/ubig5.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/ugb.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/ugbk.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/maps/unicode-sample.map -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/Makefile -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/README -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/README.html -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/bmpfont.h -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/bz.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/bzscreen.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/bzscreen.h -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/cmpf.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/cntstems.pl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/dmpf.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/lst.pl -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/showdf -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/other/showg -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/pt1.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/pt1.h -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/runt1asm.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/convert -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/convert.cfg.sample -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/forceiso -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/frommap -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/html2man -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/inst_dir -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/inst_file -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/mkrel -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/t1fdir -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/trans -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/unhtml -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/scripts/x2gs -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/t1asm.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/ttf.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/ttf.h -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/ttf2pt1.1 -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/ttf2pt1.c -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/ttf2pt1_convert.1 -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/ttf2pt1_x2gs.1 -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/ttf2ufm -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/version.h -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/winbuild.bat -share/owncloud/3rdparty/phpdocx/pdf/lib/ttf2ufm/src/windows.h -share/owncloud/3rdparty/phpdocx/pdf/load_font.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/2dbarcodes.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/CHANGELOG.TXT -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/LICENSE.TXT -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/README.TXT -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/barcodes.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/cache/chapter_demo_1.txt -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/cache/chapter_demo_2.txt -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/cache/table_data_demo.txt -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/cache/utf8test.txt -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/afr.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/ara.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/aze.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/bel.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/bra.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/cat.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/ces.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/chi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/cym.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/dan.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/eng.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/est.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/eus.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/fra.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/ger.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/gle.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/glg.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/hat.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/heb.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/hrv.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/hun.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/hye.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/ind.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/ita.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/kat.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/kor.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/mkd.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/mlt.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/msa.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/nld.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/nob.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/pol.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/por.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/ron.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/rus.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/slv.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/spa.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/sqi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/srp.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/swa.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/swe.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/urd.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/yid.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/lang/zho.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/tcpdf_config.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/config/tcpdf_config_alt.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/doc/index.html -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_001.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_002.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_003.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_004.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_005.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_006.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_007.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_008.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_009.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_010.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_011.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_012.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_013.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_014.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_015.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_016.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_017.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_018.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_019.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_020.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_021.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_022.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_023.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_024.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_025.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_026.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_027.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_028.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_029.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_030.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_031.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_032.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_033.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_034.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_035.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_036.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_037.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_038.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_039.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_040.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_041.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_042.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_043.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_044.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_045.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_046.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_047.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_048.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_049.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_050.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_051.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_052.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_053.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_054.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_055.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_056.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_057.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_058.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_059.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_060.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_061.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_062.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_063.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/example_064.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/examples/index.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/README.TXT -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/almohanad.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/almohanad.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/almohanad.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/arialunicid0.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/chinese.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/courier.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavu-fonts-ttf-2.32/AUTHORS -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavu-fonts-ttf-2.32/BUGS -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavu-fonts-ttf-2.32/LICENSE -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavu-fonts-ttf-2.32/NEWS -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavu-fonts-ttf-2.32/README -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavu-fonts-ttf-2.32/langcover.txt -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavu-fonts-ttf-2.32/status.txt -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavu-fonts-ttf-2.32/unicover.txt -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusans.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusans.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusans.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansb.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansb.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansb.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansbi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansbi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansbi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensed.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensed.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensed.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensedb.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensedb.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensedb.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensedbi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensedbi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensedbi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensedi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensedi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusanscondensedi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansextralight.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansextralight.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansextralight.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmono.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmono.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmono.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmonob.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmonob.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmonob.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmonobi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmonobi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmonobi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmonoi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmonoi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavusansmonoi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserif.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserif.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserif.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifb.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifb.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifb.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifbi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifbi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifbi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensed.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensed.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensed.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensedb.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensedb.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensedb.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensedbi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensedbi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensedbi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensedi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensedi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifcondensedi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/dejavuserifi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freefont-20100919/AUTHORS -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freefont-20100919/COPYING -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freefont-20100919/CREDITS -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freefont-20100919/ChangeLog -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freefont-20100919/INSTALL -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freefont-20100919/README -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemono.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemono.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemono.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemonob.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemonob.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemonob.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemonobi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemonobi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemonobi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemonoi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemonoi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freemonoi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesans.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesans.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesans.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesansb.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesansb.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesansb.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesansbi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesansbi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesansbi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesansi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesansi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freesansi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserif.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserif.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserif.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserifb.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserifb.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserifb.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserifbi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserifbi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserifbi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserifi.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserifi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/freeserifi.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/helvetica.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/helveticab.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/helveticabi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/helveticai.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/hysmyeongjostdmedium.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/kozgopromedium.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/kozminproregular.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/msungstdlight.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/stsongstdlight.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/symbol.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/times.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/timesb.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/timesbi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/timesi.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/uni2cid_ac15.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/uni2cid_ag15.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/uni2cid_aj16.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/uni2cid_ak12.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/README.TXT -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/cp1250.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/cp1251.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/cp1252.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/cp1253.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/cp1254.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/cp1255.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/cp1257.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/cp1258.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/cp874.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/iso-8859-1.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/iso-8859-11.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/iso-8859-15.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/iso-8859-16.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/iso-8859-2.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/iso-8859-4.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/iso-8859-5.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/iso-8859-7.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/iso-8859-9.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/koi8-r.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/enc/koi8-u.map -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/freetype6.dll -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/makeallttffonts.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/makefont.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/pfm2afm -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/pfm2afm.exe -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/src/pfm2afm-src.tar.gz -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/src/readme.txt -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/src/ttf2ufm-src.tar.gz -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/ttf2ufm -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/ttf2ufm.exe -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/utils/zlib1.dll -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/zapfdingbats.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/zarbold.ctg.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/zarbold.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/fonts/zarbold.z -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/htmlcolors.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/_blank.png -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/alpha.png -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/bug.eps -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/image_demo.jpg -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/image_with_alpha.png -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/img.png -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/logo_example.gif -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/logo_example.jpg -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/logo_example.png -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/pelican.ai -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/tcpdf_cell.png -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/tcpdf_logo.jpg -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/tcpdf_signature.png -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/testsvg.svg -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/tiger.ai -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/images/tux.svg -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/pdf417.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/qrcode.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/spotcolors.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/tcpdf.crt -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/tcpdf.fdf -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/tcpdf.p12 -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/tcpdf.php -share/owncloud/3rdparty/phpdocx/pdf/tcpdf/unicode_data.php -share/owncloud/3rdparty/phpdocx/templates/README.txt -share/owncloud/3rdparty/phpdocx/templates/phpdocxBaseTemplate.docx -share/owncloud/3rdparty/phpdocx/templates/xmls/app.xml -share/owncloud/3rdparty/phpdocx/templates/xmls/core.xml -share/owncloud/3rdparty/phpdocx/templates/xmls/document.xml -share/owncloud/3rdparty/phpdocx/templates/xmls/endnotes.xml -share/owncloud/3rdparty/phpdocx/templates/xmls/footnotes.xml -share/owncloud/3rdparty/phpdocx/templates/xmls/numbering.xml -share/owncloud/3rdparty/phpdocx/templates/xmls/settings.xml -share/owncloud/3rdparty/phpdocx/templates/xmls/styles.xml -share/owncloud/3rdparty/phpdocx/xsl/docx2html.xsl share/owncloud/3rdparty/symfony/console/Symfony/Component/Console/Application.php share/owncloud/3rdparty/symfony/console/Symfony/Component/Console/CHANGELOG.md share/owncloud/3rdparty/symfony/console/Symfony/Component/Console/Command/Command.php @@ -3031,7 +1992,6 @@ share/owncloud/apps/calendar/templates/part.share.php share/owncloud/apps/calendar/templates/part.showevent.php share/owncloud/apps/calendar/templates/settings.php share/owncloud/apps/calendar/tests/calendar.php -share/owncloud/apps/contacts/.travis.yml share/owncloud/apps/contacts/COPYING-README share/owncloud/apps/contacts/Changelog share/owncloud/apps/contacts/README.md @@ -3331,6 +2291,7 @@ share/owncloud/apps/contacts/tests/phpunit.xml share/owncloud/apps/contacts/tests/preseed-config.php share/owncloud/apps/contacts/tests/setup_owncloud.sh share/owncloud/apps/documents/README.md +share/owncloud/apps/documents/ajax/admin.php share/owncloud/apps/documents/ajax/controller.php share/owncloud/apps/documents/ajax/documentController.php share/owncloud/apps/documents/ajax/download.php @@ -3931,7 +2892,6 @@ share/owncloud/apps/documents/js/3rdparty/webodf/editor/nls/dojobundle.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/nls/myResources.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/nls/ru/myResources.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/server/ServerFactory.js -share/owncloud/apps/documents/js/3rdparty/webodf/editor/server/owncloud/ServerFactory.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/server/pullbox/OperationRouter.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/server/pullbox/Server.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/server/pullbox/ServerFactory.js @@ -3939,8 +2899,11 @@ share/owncloud/apps/documents/js/3rdparty/webodf/editor/server/pullbox/SessionLi share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/annotation.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/dialogWidgets/alignmentPane.html share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/dialogWidgets/alignmentPane.js +share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/dialogWidgets/editHyperlinkPane.html +share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/dialogWidgets/editHyperlinkPane.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/dialogWidgets/fontEffectsPane.html share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/dialogWidgets/fontEffectsPane.js +share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/editHyperlinks.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/fontPicker.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/imageInserter.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/paragraphAlignment.js @@ -3952,6 +2915,7 @@ share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/undoRedoMenu.js share/owncloud/apps/documents/js/3rdparty/webodf/editor/widgets/zoomSlider.js share/owncloud/apps/documents/js/3rdparty/webodf/webodf-debug.js share/owncloud/apps/documents/js/3rdparty/webodf/webodf.js +share/owncloud/apps/documents/js/ServerFactory.js share/owncloud/apps/documents/js/documents.js share/owncloud/apps/documents/js/locale.js share/owncloud/apps/documents/js/personal.js @@ -4123,6 +3087,7 @@ share/owncloud/apps/documents/l10n/zh_HK.php share/owncloud/apps/documents/l10n/zh_HK/documents.po share/owncloud/apps/documents/l10n/zh_TW.php share/owncloud/apps/documents/l10n/zh_TW/documents.po +share/owncloud/apps/documents/lib/config.php share/owncloud/apps/documents/lib/db.php share/owncloud/apps/documents/lib/db/member.php share/owncloud/apps/documents/lib/db/op.php @@ -4132,6 +3097,7 @@ share/owncloud/apps/documents/lib/download/range.php share/owncloud/apps/documents/lib/download/simple.php share/owncloud/apps/documents/lib/file.php share/owncloud/apps/documents/lib/filter.php +share/owncloud/apps/documents/lib/filter/office.php share/owncloud/apps/documents/lib/genesis.php share/owncloud/apps/documents/lib/helper.php share/owncloud/apps/documents/lib/request.php @@ -4142,6 +3108,7 @@ share/owncloud/apps/documents/public.php share/owncloud/apps/documents/settings.php share/owncloud/apps/documents/src/locale.sh share/owncloud/apps/documents/src/patches/MemberListView-OCavatar.patch +share/owncloud/apps/documents/src/patches/MemberListView-OCnick.patch share/owncloud/apps/documents/src/patches/dojoStylesPill.patch share/owncloud/apps/documents/src/patches/fontsCssPath.patch share/owncloud/apps/documents/src/patches/hideCaretAvatar.patch @@ -4334,7 +3301,6 @@ share/owncloud/apps/files/l10n/nqo.php share/owncloud/apps/files/l10n/oc.php share/owncloud/apps/files/l10n/pa.php share/owncloud/apps/files/l10n/pl.php -share/owncloud/apps/files/l10n/pl_PL.php share/owncloud/apps/files/l10n/pt_BR.php share/owncloud/apps/files/l10n/pt_PT.php share/owncloud/apps/files/l10n/ro.php @@ -5513,59 +4479,109 @@ share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/annotation-help.svg share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/annotation-insert.svg share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/annotation-key.svg share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/annotation-newparagraph.svg +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/annotation-noicon.svg share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/annotation-note.svg share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/annotation-paragraph.svg share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/findbarButton-next-rtl.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/findbarButton-next-rtl@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/findbarButton-next.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/findbarButton-next@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/findbarButton-previous-rtl.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/findbarButton-previous-rtl@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/findbarButton-previous.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/findbarButton-previous@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/grab.cur +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/grabbing.cur share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/loading-icon.gif share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/loading-small.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-documentProperties.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-documentProperties@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-firstPage.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-firstPage@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-handTool.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-handTool@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-lastPage.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-lastPage@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-rotateCcw.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-rotateCcw@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-rotateCw.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/secondaryToolbarButton-rotateCw@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/shadow.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/texture.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-bookmark.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-bookmark@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-download.png -share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-fullscreen.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-download@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-menuArrows.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-menuArrows@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-openFile.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-openFile@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-pageDown-rtl.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-pageDown-rtl@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-pageDown.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-pageDown@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-pageUp-rtl.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-pageUp-rtl@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-pageUp.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-pageUp@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-presentationMode.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-presentationMode@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-print.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-print@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-search.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-search@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-secondaryToolbarToggle-rtl.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-secondaryToolbarToggle.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-secondaryToolbarToggle@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-sidebarToggle-rtl.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-sidebarToggle-rtl@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-sidebarToggle.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-sidebarToggle@2x.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-viewOutline-rtl.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-viewOutline-rtl@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-viewOutline.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-viewOutline@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-viewThumbnail.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-viewThumbnail@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-zoomIn.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-zoomIn@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-zoomOut.png +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/images/toolbarButton-zoomOut@2x.png share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/l10n.js share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/ar/viewer.properties +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/bn-BD/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/ca/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/cs/viewer.properties +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/cy/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/da/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/de/viewer.properties +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/el/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/en-US/viewer.properties -share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/es-MX/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/es/viewer.properties +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/fa/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/fi/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/fr/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/he/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/it/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/ja/viewer.properties +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/ko/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/locale.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/lt/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/nl/viewer.properties +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/no/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/pl/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/pt-BR/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/ro/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/ru/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/sr/viewer.properties -share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/sv/viewer.properties +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/sv-SE/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/tr/viewer.properties +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/vi/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/zh-CN/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/locale/zh-TW/viewer.properties share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/pdf.js +share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/pdf.worker.js share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/viewer.css share/owncloud/apps/files_pdfviewer/3rdparty/pdfjs/viewer.js share/owncloud/apps/files_pdfviewer/appinfo/app.php @@ -6835,6 +5851,7 @@ share/owncloud/apps/user_ldap/appinfo/version share/owncloud/apps/user_ldap/css/settings.css share/owncloud/apps/user_ldap/group_ldap.php share/owncloud/apps/user_ldap/group_proxy.php +share/owncloud/apps/user_ldap/js/ldapFilter.js share/owncloud/apps/user_ldap/js/settings.js share/owncloud/apps/user_ldap/l10n/ach.php share/owncloud/apps/user_ldap/l10n/ady.php @@ -6946,7 +5963,9 @@ share/owncloud/apps/user_ldap/templates/part.wizard-userfilter.php share/owncloud/apps/user_ldap/templates/part.wizardcontrols.php share/owncloud/apps/user_ldap/templates/settings.php share/owncloud/apps/user_ldap/tests/access.php +share/owncloud/apps/user_ldap/tests/connection.php share/owncloud/apps/user_ldap/tests/user_ldap.php +share/owncloud/apps/user_ldap/tests/wizard.php share/owncloud/apps/user_ldap/user_ldap.php share/owncloud/apps/user_ldap/user_proxy.php share/owncloud/apps/user_webdavauth/appinfo/app.php @@ -7050,17 +6069,14 @@ share/owncloud/core/css/jquery.ocdialog.css share/owncloud/core/css/multiselect.css share/owncloud/core/css/share.css share/owncloud/core/css/styles.css -share/owncloud/core/doc/admin/_images/100000000000001D0000001E5C455170.png share/owncloud/core/doc/admin/_images/100000000000003800000018D49F1CE7.png share/owncloud/core/doc/admin/_images/1000000000000050000000DB83B8FA5B.png share/owncloud/core/doc/admin/_images/10000000000000950000004412998BE7.png share/owncloud/core/doc/admin/_images/10000000000000A800000073F49785A6.png share/owncloud/core/doc/admin/_images/10000000000000B600000120706C3C75.png share/owncloud/core/doc/admin/_images/10000000000000CD000000ECA8DE7780.png -share/owncloud/core/doc/admin/_images/10000000000000D2000000F553818155.png share/owncloud/core/doc/admin/_images/10000000000000F1000000F56125BDBA.png share/owncloud/core/doc/admin/_images/10000000000000F1000000F6704F46D3.png -share/owncloud/core/doc/admin/_images/10000000000000F20000003BAA849B42.png share/owncloud/core/doc/admin/_images/10000000000000F300000068AF0ECD53.png share/owncloud/core/doc/admin/_images/10000000000000F40000019A110DD159.png share/owncloud/core/doc/admin/_images/10000000000000F5000000675DC5F68C.png @@ -7072,10 +6088,8 @@ share/owncloud/core/doc/admin/_images/100000000000013C0000017D4FC6CEF5.png share/owncloud/core/doc/admin/_images/10000000000001400000008A557EF7E3.png share/owncloud/core/doc/admin/_images/10000000000001440000005A2989832F.png share/owncloud/core/doc/admin/_images/1000000000000160000000DBB2FB0223.png -share/owncloud/core/doc/admin/_images/1000000000000163000000E9CDA84C92.png share/owncloud/core/doc/admin/_images/1000000000000165000000D3FF2168AB.png share/owncloud/core/doc/admin/_images/1000000000000167000000B43E4BF478.png -share/owncloud/core/doc/admin/_images/1000000000000175000000FAB2A2B294.png share/owncloud/core/doc/admin/_images/10000000000001800000009A9494E037.png share/owncloud/core/doc/admin/_images/10000000000001880000007EA4444400.png share/owncloud/core/doc/admin/_images/100000000000018B000000A090F31164.png @@ -7083,22 +6097,16 @@ share/owncloud/core/doc/admin/_images/100000000000018E000000C4BA62B2A3.png share/owncloud/core/doc/admin/_images/1000000000000193000001AE9AB8B0A2.png share/owncloud/core/doc/admin/_images/1000000000000194000000498325A766.png share/owncloud/core/doc/admin/_images/1000000000000194000000FAD39BC0D8.png -share/owncloud/core/doc/admin/_images/1000000000000195000000EF7E44082C.png share/owncloud/core/doc/admin/_images/10000000000001980000009271BE0D26.png share/owncloud/core/doc/admin/_images/100000000000019E0000004CD2A0F407.png share/owncloud/core/doc/admin/_images/10000000000001A3000000AAFE82893A.png -share/owncloud/core/doc/admin/_images/10000000000001A40000006C954442CE.png share/owncloud/core/doc/admin/_images/10000000000001AC000000477C76808F.png share/owncloud/core/doc/admin/_images/10000000000001BF00000012349EAE2F.png share/owncloud/core/doc/admin/_images/10000000000001C1000000FE663748B2.png share/owncloud/core/doc/admin/_images/10000000000001C9000000AF9C1CE57F.png -share/owncloud/core/doc/admin/_images/10000000000001CE000000F2E2084BA1.png share/owncloud/core/doc/admin/_images/10000000000001CF00000176B0BE1EBC.png share/owncloud/core/doc/admin/_images/10000000000001D30000014DC251C948.png share/owncloud/core/doc/admin/_images/10000000000001E50000006E3ECDC427.png -share/owncloud/core/doc/admin/_images/10000000000001E50000018C3AD09A21.png -share/owncloud/core/doc/admin/_images/10000000000001EE00000164642CCA08.png -share/owncloud/core/doc/admin/_images/10000000000001F40000016609A0CFCC.png share/owncloud/core/doc/admin/_images/10000000000001FD000000DF8D2D7546.png share/owncloud/core/doc/admin/_images/1000000000000200000000BCCCC35DEB.png share/owncloud/core/doc/admin/_images/10000000000002170000004A27056037.png @@ -7106,13 +6114,7 @@ share/owncloud/core/doc/admin/_images/100000000000021C0000004CACBF786C.png share/owncloud/core/doc/admin/_images/10000000000002210000002DE3BE7515.png share/owncloud/core/doc/admin/_images/1000000000000227000000935D9B1EF6.png share/owncloud/core/doc/admin/_images/100000000000023B000000125381F51B.png -share/owncloud/core/doc/admin/_images/100000000000024400000027BEE1E4A9.png share/owncloud/core/doc/admin/_images/1000000000000247000000A77440E4D3.png -share/owncloud/core/doc/admin/_images/10000000000002650000018CA6A1BE66.png -share/owncloud/core/doc/admin/_images/10000000000002650000018E4285E964.png -share/owncloud/core/doc/admin/_images/10000000000002690000018D3A8C9F17.png -share/owncloud/core/doc/admin/_images/100000000000026A000001DCAF8778F2.png -share/owncloud/core/doc/admin/_images/100000000000026E0000003672ADCB6E.png share/owncloud/core/doc/admin/_images/10000000000002720000013FB6EDA793.png share/owncloud/core/doc/admin/_images/100000000000027B0000011D10F70F88.png share/owncloud/core/doc/admin/_images/10000000000002840000016729388B7F.png @@ -7125,17 +6127,10 @@ share/owncloud/core/doc/admin/_images/10000000000002950000021E245F6883.png share/owncloud/core/doc/admin/_images/1000000000000298000001870B0581FA.png share/owncloud/core/doc/admin/_images/1000000000000298000001874D3CA506.png share/owncloud/core/doc/admin/_images/100000000000029B0000018885B5282E.png -share/owncloud/core/doc/admin/_images/100000000000029F000000B8A83D0275.png share/owncloud/core/doc/admin/_images/10000000000002A6000000BFBE298238.png share/owncloud/core/doc/admin/_images/10000000000002B1000002258C08D304.png share/owncloud/core/doc/admin/_images/10000000000002B3000000365E1CD00D.png -share/owncloud/core/doc/admin/_images/10000000000002B30000003A5B960711.png share/owncloud/core/doc/admin/_images/10000000000002BB000000266DB6AD1A.png -share/owncloud/core/doc/admin/_images/10000000000002BB000001EABD7E6DF0.png -share/owncloud/core/doc/admin/_images/10000000000002BF000001E5B544E7E7.png -share/owncloud/core/doc/admin/_images/10000000000002C1000001ED5CECCC6D.png -share/owncloud/core/doc/admin/_images/10000000000002C3000001EBBD39E47A.png -share/owncloud/core/doc/admin/_images/10000000000002C700000048F3729BAA.png share/owncloud/core/doc/admin/_images/10000000000002F3000000926CA65D02.png share/owncloud/core/doc/admin/_images/1000000000000304000001B964698779.png share/owncloud/core/doc/admin/_images/1000000000000336000000F38C3FAF84.png @@ -7155,7 +6150,6 @@ share/owncloud/core/doc/admin/_images/1000000000000403000001632F0B76F6.png share/owncloud/core/doc/admin/_images/1000000000000404000000FCFC13E732.png share/owncloud/core/doc/admin/_images/10000000000004100000005657010336.png share/owncloud/core/doc/admin/_images/10000000000004170000016ACB5E15AE.png -share/owncloud/core/doc/admin/_images/100000000000041D0000003D52225C0D.png share/owncloud/core/doc/admin/_images/100000000000041D0000017D8D1BC4D9.png share/owncloud/core/doc/admin/_images/100000000000042500000163D2B339D5.png share/owncloud/core/doc/admin/_images/1000000000000427000000324F58266D.png @@ -7165,24 +6159,10 @@ share/owncloud/core/doc/admin/_images/1000000000000430000000AF9D6E724E.png share/owncloud/core/doc/admin/_images/100000000000043000000164DA0CE8C9.png share/owncloud/core/doc/admin/_images/100000000000043200000169BCD20493.png share/owncloud/core/doc/admin/_images/100000000000044C000002B0B421E27E.png -share/owncloud/core/doc/admin/_images/1000000000000453000001BFFCF48776.png share/owncloud/core/doc/admin/_images/100000000000045800000197FE462F2B.png share/owncloud/core/doc/admin/_images/1000000000000462000000D44541CF9A.png -share/owncloud/core/doc/admin/_images/1000000000000467000002B63162E59B.png -share/owncloud/core/doc/admin/_images/10000000000004690000026615360BEB.png share/owncloud/core/doc/admin/_images/100000000000046C000000C2D3E5CF30.png -share/owncloud/core/doc/admin/_images/100000000000046D0000015F4B5494A9.png -share/owncloud/core/doc/admin/_images/100000000000046F000000DEA2BFCD9B.png -share/owncloud/core/doc/admin/_images/1000000000000470000001B68AE60DD3.png -share/owncloud/core/doc/admin/_images/10000000000004710000014BBC34499D.png -share/owncloud/core/doc/admin/_images/100000000000047200000129CB014025.png share/owncloud/core/doc/admin/_images/10000000000004770000008AAF3CFFDB.png -share/owncloud/core/doc/admin/_images/100000000000047700000219A3013A92.png -share/owncloud/core/doc/admin/_images/1000000000000479000002887E7F48EA.png -share/owncloud/core/doc/admin/_images/100000000000047A000000B727198874.png -share/owncloud/core/doc/admin/_images/100000000000047A000000FB86FF2A9A.png -share/owncloud/core/doc/admin/_images/100000000000047A0000011C6682A254.png -share/owncloud/core/doc/admin/_images/100000000000048100000245268CDB7A.png share/owncloud/core/doc/admin/_images/10000000000004920000028D9C8DC2CB.png share/owncloud/core/doc/admin/_images/10000000000004C0000000795BB2C146.png share/owncloud/core/doc/admin/_images/10000000000004CA000002B52116BE0C.png @@ -7232,6 +6212,9 @@ share/owncloud/core/doc/admin/_images/custom_mount_config_gui-1.png share/owncloud/core/doc/admin/_images/custom_mount_config_gui-2.png share/owncloud/core/doc/admin/_images/custom_mount_config_gui-3.png share/owncloud/core/doc/admin/_images/custom_mount_config_gui-4.png +share/owncloud/core/doc/admin/_images/edit_encrypted_file.png +share/owncloud/core/doc/admin/_images/install-wizard-advanced.png +share/owncloud/core/doc/admin/_images/install-wizard.png share/owncloud/core/doc/admin/_images/ldap-advanced-1-connection.png share/owncloud/core/doc/admin/_images/ldap-advanced-2-directory.png share/owncloud/core/doc/admin/_images/ldap-advanced-3-attributes.png @@ -7250,77 +6233,35 @@ share/owncloud/core/doc/admin/_images/ucs-app-center-module.png share/owncloud/core/doc/admin/_images/ucsint.png share/owncloud/core/doc/admin/_images/ucsint1.png share/owncloud/core/doc/admin/_images/ucsint2.png +share/owncloud/core/doc/admin/_images/untrusted-domain.png share/owncloud/core/doc/admin/_images/win7features.jpg share/owncloud/core/doc/admin/_images/winserverroles.jpg -share/owncloud/core/doc/admin/_sources/apps/activity/Configuration.txt -share/owncloud/core/doc/admin/_sources/apps/activity/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/activity/RSS_Feed.txt -share/owncloud/core/doc/admin/_sources/apps/activity/Table_of_Contents.txt -share/owncloud/core/doc/admin/_sources/apps/activity/Utilization.txt share/owncloud/core/doc/admin/_sources/apps/activity/index.txt -share/owncloud/core/doc/admin/_sources/apps/admin_dependencies_chk/Configuration.txt -share/owncloud/core/doc/admin/_sources/apps/admin_dependencies_chk/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/admin_dependencies_chk/Table_of_Contents.txt -share/owncloud/core/doc/admin/_sources/apps/admin_dependencies_chk/Utilization.txt share/owncloud/core/doc/admin/_sources/apps/admin_dependencies_chk/index.txt -share/owncloud/core/doc/admin/_sources/apps/files_antivirus/Configuration.txt -share/owncloud/core/doc/admin/_sources/apps/files_antivirus/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/files_antivirus/Table_of_Contents.txt share/owncloud/core/doc/admin/_sources/apps/files_antivirus/index.txt -share/owncloud/core/doc/admin/_sources/apps/files_encryption/Configuration.txt -share/owncloud/core/doc/admin/_sources/apps/files_encryption/File_Systems.txt -share/owncloud/core/doc/admin/_sources/apps/files_encryption/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/files_encryption/Table_of_Contents.txt share/owncloud/core/doc/admin/_sources/apps/files_encryption/index.txt -share/owncloud/core/doc/admin/_sources/apps/files_external/Configuration.txt -share/owncloud/core/doc/admin/_sources/apps/files_external/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/files_external/Table_of_Contents.txt share/owncloud/core/doc/admin/_sources/apps/files_external/index.txt -share/owncloud/core/doc/admin/_sources/apps/files_sharing/Configuration.txt -share/owncloud/core/doc/admin/_sources/apps/files_sharing/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/files_sharing/Retrieving_shared_data.txt -share/owncloud/core/doc/admin/_sources/apps/files_sharing/Table_of_Contents.txt -share/owncloud/core/doc/admin/_sources/apps/files_sharing/Utilization.txt share/owncloud/core/doc/admin/_sources/apps/files_sharing/index.txt -share/owncloud/core/doc/admin/_sources/apps/files_trashbin/Configuration_and_storage_.txt -share/owncloud/core/doc/admin/_sources/apps/files_trashbin/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/files_trashbin/Table_of_Contents.txt -share/owncloud/core/doc/admin/_sources/apps/files_trashbin/Utilization.txt share/owncloud/core/doc/admin/_sources/apps/files_trashbin/index.txt -share/owncloud/core/doc/admin/_sources/apps/files_versions/Configuration_and_storage.txt -share/owncloud/core/doc/admin/_sources/apps/files_versions/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/files_versions/Utilization.txt share/owncloud/core/doc/admin/_sources/apps/files_versions/index.txt -share/owncloud/core/doc/admin/_sources/apps/firstrunwizard/Configuration.txt -share/owncloud/core/doc/admin/_sources/apps/firstrunwizard/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/firstrunwizard/Links.txt -share/owncloud/core/doc/admin/_sources/apps/firstrunwizard/Table_of_Contents.txt -share/owncloud/core/doc/admin/_sources/apps/firstrunwizard/Usage.txt share/owncloud/core/doc/admin/_sources/apps/firstrunwizard/index.txt -share/owncloud/core/doc/admin/_sources/apps/user_ldap/CONFIGURATION.txt -share/owncloud/core/doc/admin/_sources/apps/user_ldap/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/user_ldap/Table_of_Contents.txt +share/owncloud/core/doc/admin/_sources/apps/index.txt share/owncloud/core/doc/admin/_sources/apps/user_ldap/index.txt -share/owncloud/core/doc/admin/_sources/apps/viewers/Configuration.txt -share/owncloud/core/doc/admin/_sources/apps/viewers/Introduction.txt -share/owncloud/core/doc/admin/_sources/apps/viewers/Utilization.txt share/owncloud/core/doc/admin/_sources/apps/viewers/index.txt -share/owncloud/core/doc/admin/_sources/config/APPS.txt -share/owncloud/core/doc/admin/_sources/config/Code_Locations.txt -share/owncloud/core/doc/admin/_sources/config/Default_Parameters.txt -share/owncloud/core/doc/admin/_sources/config/Deleted_Items.txt -share/owncloud/core/doc/admin/_sources/config/Introduction.txt -share/owncloud/core/doc/admin/_sources/config/Logging.txt -share/owncloud/core/doc/admin/_sources/config/Mail_Parameters.txt -share/owncloud/core/doc/admin/_sources/config/Maintenance.txt -share/owncloud/core/doc/admin/_sources/config/Miscellaneous.txt -share/owncloud/core/doc/admin/_sources/config/Previews.txt -share/owncloud/core/doc/admin/_sources/config/Reverse_Proxy_Configurations.txt -share/owncloud/core/doc/admin/_sources/config/Session_Info.txt -share/owncloud/core/doc/admin/_sources/config/Table_of_Contents.txt -share/owncloud/core/doc/admin/_sources/config/User_Experience.txt -share/owncloud/core/doc/admin/_sources/config/Verification.txt +share/owncloud/core/doc/admin/_sources/config/apps.txt +share/owncloud/core/doc/admin/_sources/config/code_locations.txt +share/owncloud/core/doc/admin/_sources/config/default_parameters.txt +share/owncloud/core/doc/admin/_sources/config/deleted_items.txt share/owncloud/core/doc/admin/_sources/config/index.txt +share/owncloud/core/doc/admin/_sources/config/logging.txt +share/owncloud/core/doc/admin/_sources/config/mail_parameters.txt +share/owncloud/core/doc/admin/_sources/config/maintenance.txt +share/owncloud/core/doc/admin/_sources/config/miscellaneous.txt +share/owncloud/core/doc/admin/_sources/config/previews.txt +share/owncloud/core/doc/admin/_sources/config/reverse_proxy_configurations.txt +share/owncloud/core/doc/admin/_sources/config/session_info.txt +share/owncloud/core/doc/admin/_sources/config/user_experience.txt +share/owncloud/core/doc/admin/_sources/config/verification.txt share/owncloud/core/doc/admin/_sources/configuration/auth_ldap.txt share/owncloud/core/doc/admin/_sources/configuration/background_jobs.txt share/owncloud/core/doc/admin/_sources/configuration/configuration_3rdparty.txt @@ -7344,8 +6285,6 @@ share/owncloud/core/doc/admin/_sources/configuration/custom_user_backend.txt share/owncloud/core/doc/admin/_sources/configuration/index.txt share/owncloud/core/doc/admin/_sources/configuration/xsendfile.txt share/owncloud/core/doc/admin/_sources/contents.txt -share/owncloud/core/doc/admin/_sources/cron/Introduction.txt -share/owncloud/core/doc/admin/_sources/cron/Usage.txt share/owncloud/core/doc/admin/_sources/cron/index.txt share/owncloud/core/doc/admin/_sources/index.txt share/owncloud/core/doc/admin/_sources/installation/index.txt @@ -7356,41 +6295,20 @@ share/owncloud/core/doc/admin/_sources/installation/installation_others.txt share/owncloud/core/doc/admin/_sources/installation/installation_source.txt share/owncloud/core/doc/admin/_sources/installation/installation_ucs.txt share/owncloud/core/doc/admin/_sources/installation/installation_windows.txt +share/owncloud/core/doc/admin/_sources/installation/installation_wizard.txt share/owncloud/core/doc/admin/_sources/issues/index.txt share/owncloud/core/doc/admin/_sources/maintenance/backup.txt share/owncloud/core/doc/admin/_sources/maintenance/index.txt share/owncloud/core/doc/admin/_sources/maintenance/migrating.txt share/owncloud/core/doc/admin/_sources/maintenance/restore.txt share/owncloud/core/doc/admin/_sources/maintenance/update.txt -share/owncloud/core/doc/admin/_sources/quota/Checking_available_space.txt -share/owncloud/core/doc/admin/_sources/quota/Excluded_from_quota.txt -share/owncloud/core/doc/admin/_sources/quota/Introduction.txt -share/owncloud/core/doc/admin/_sources/quota/Sharing.txt -share/owncloud/core/doc/admin/_sources/quota/Table_of_Contents.txt share/owncloud/core/doc/admin/_sources/quota/index.txt -share/owncloud/core/doc/admin/_sources/sharing_api/Contents.txt -share/owncloud/core/doc/admin/_sources/sharing_api/Create_a_new_Share.txt -share/owncloud/core/doc/admin/_sources/sharing_api/Delete_Share.txt -share/owncloud/core/doc/admin/_sources/sharing_api/Get_All_Shares.txt -share/owncloud/core/doc/admin/_sources/sharing_api/Get_Information_about_a_known_share.txt -share/owncloud/core/doc/admin/_sources/sharing_api/Get_Shares_from_a_Specific_File_or_Folder.txt -share/owncloud/core/doc/admin/_sources/sharing_api/Introduction.txt +share/owncloud/core/doc/admin/_sources/sharing_api/create_a_new_share.txt +share/owncloud/core/doc/admin/_sources/sharing_api/delete_share.txt +share/owncloud/core/doc/admin/_sources/sharing_api/get_all_shares.txt +share/owncloud/core/doc/admin/_sources/sharing_api/get_information_about_a_known_share.txt +share/owncloud/core/doc/admin/_sources/sharing_api/get_shares_from_a_specific_file_or_folder.txt share/owncloud/core/doc/admin/_sources/sharing_api/index.txt -share/owncloud/core/doc/admin/_sources/sync_client/Advanced_Usage.txt -share/owncloud/core/doc/admin/_sources/sync_client/Introduction.txt -share/owncloud/core/doc/admin/_sources/sync_client/Obtaining_the_Client.txt -share/owncloud/core/doc/admin/_sources/sync_client/Setting_up_an_Account.txt -share/owncloud/core/doc/admin/_sources/sync_client/Table_of_Contents.txt -share/owncloud/core/doc/admin/_sources/sync_client/Visual_Tour.txt -share/owncloud/core/doc/admin/_sources/sync_client/index.txt -share/owncloud/core/doc/admin/_sources/web_guide/Adding_Data.txt -share/owncloud/core/doc/admin/_sources/web_guide/Initial_Log_In.txt -share/owncloud/core/doc/admin/_sources/web_guide/Introduction.txt -share/owncloud/core/doc/admin/_sources/web_guide/Main_ownCloud_screen.txt -share/owncloud/core/doc/admin/_sources/web_guide/Navigation.txt -share/owncloud/core/doc/admin/_sources/web_guide/Personal_Configurations.txt -share/owncloud/core/doc/admin/_sources/web_guide/Table_of_Contents.txt -share/owncloud/core/doc/admin/_sources/web_guide/index.txt share/owncloud/core/doc/admin/_static/ajax-loader.gif share/owncloud/core/doc/admin/_static/basic.css share/owncloud/core/doc/admin/_static/bootstrap-responsive.css @@ -7420,75 +6338,32 @@ share/owncloud/core/doc/admin/_static/underscore.js share/owncloud/core/doc/admin/_static/up-pressed.png share/owncloud/core/doc/admin/_static/up.png share/owncloud/core/doc/admin/_static/websupport.js -share/owncloud/core/doc/admin/apps/activity/Configuration.html -share/owncloud/core/doc/admin/apps/activity/Introduction.html -share/owncloud/core/doc/admin/apps/activity/RSS_Feed.html -share/owncloud/core/doc/admin/apps/activity/Table_of_Contents.html -share/owncloud/core/doc/admin/apps/activity/Utilization.html share/owncloud/core/doc/admin/apps/activity/index.html -share/owncloud/core/doc/admin/apps/admin_dependencies_chk/Configuration.html -share/owncloud/core/doc/admin/apps/admin_dependencies_chk/Introduction.html -share/owncloud/core/doc/admin/apps/admin_dependencies_chk/Table_of_Contents.html -share/owncloud/core/doc/admin/apps/admin_dependencies_chk/Utilization.html share/owncloud/core/doc/admin/apps/admin_dependencies_chk/index.html -share/owncloud/core/doc/admin/apps/files_antivirus/Configuration.html -share/owncloud/core/doc/admin/apps/files_antivirus/Introduction.html -share/owncloud/core/doc/admin/apps/files_antivirus/Table_of_Contents.html share/owncloud/core/doc/admin/apps/files_antivirus/index.html -share/owncloud/core/doc/admin/apps/files_encryption/Configuration.html -share/owncloud/core/doc/admin/apps/files_encryption/File_Systems.html -share/owncloud/core/doc/admin/apps/files_encryption/Introduction.html -share/owncloud/core/doc/admin/apps/files_encryption/Table_of_Contents.html share/owncloud/core/doc/admin/apps/files_encryption/index.html -share/owncloud/core/doc/admin/apps/files_external/Configuration.html -share/owncloud/core/doc/admin/apps/files_external/Introduction.html -share/owncloud/core/doc/admin/apps/files_external/Table_of_Contents.html share/owncloud/core/doc/admin/apps/files_external/index.html -share/owncloud/core/doc/admin/apps/files_sharing/Configuration.html -share/owncloud/core/doc/admin/apps/files_sharing/Introduction.html -share/owncloud/core/doc/admin/apps/files_sharing/Retrieving_shared_data.html -share/owncloud/core/doc/admin/apps/files_sharing/Table_of_Contents.html -share/owncloud/core/doc/admin/apps/files_sharing/Utilization.html share/owncloud/core/doc/admin/apps/files_sharing/index.html -share/owncloud/core/doc/admin/apps/files_trashbin/Configuration_and_storage_.html -share/owncloud/core/doc/admin/apps/files_trashbin/Introduction.html -share/owncloud/core/doc/admin/apps/files_trashbin/Table_of_Contents.html -share/owncloud/core/doc/admin/apps/files_trashbin/Utilization.html share/owncloud/core/doc/admin/apps/files_trashbin/index.html -share/owncloud/core/doc/admin/apps/files_versions/Configuration_and_storage.html -share/owncloud/core/doc/admin/apps/files_versions/Introduction.html -share/owncloud/core/doc/admin/apps/files_versions/Utilization.html share/owncloud/core/doc/admin/apps/files_versions/index.html -share/owncloud/core/doc/admin/apps/firstrunwizard/Configuration.html -share/owncloud/core/doc/admin/apps/firstrunwizard/Introduction.html -share/owncloud/core/doc/admin/apps/firstrunwizard/Links.html -share/owncloud/core/doc/admin/apps/firstrunwizard/Table_of_Contents.html -share/owncloud/core/doc/admin/apps/firstrunwizard/Usage.html share/owncloud/core/doc/admin/apps/firstrunwizard/index.html -share/owncloud/core/doc/admin/apps/user_ldap/CONFIGURATION.html -share/owncloud/core/doc/admin/apps/user_ldap/Introduction.html -share/owncloud/core/doc/admin/apps/user_ldap/Table_of_Contents.html +share/owncloud/core/doc/admin/apps/index.html share/owncloud/core/doc/admin/apps/user_ldap/index.html -share/owncloud/core/doc/admin/apps/viewers/Configuration.html -share/owncloud/core/doc/admin/apps/viewers/Introduction.html -share/owncloud/core/doc/admin/apps/viewers/Utilization.html share/owncloud/core/doc/admin/apps/viewers/index.html -share/owncloud/core/doc/admin/config/APPS.html -share/owncloud/core/doc/admin/config/Code_Locations.html -share/owncloud/core/doc/admin/config/Default_Parameters.html -share/owncloud/core/doc/admin/config/Deleted_Items.html -share/owncloud/core/doc/admin/config/Introduction.html -share/owncloud/core/doc/admin/config/Logging.html -share/owncloud/core/doc/admin/config/Mail_Parameters.html -share/owncloud/core/doc/admin/config/Maintenance.html -share/owncloud/core/doc/admin/config/Miscellaneous.html -share/owncloud/core/doc/admin/config/Previews.html -share/owncloud/core/doc/admin/config/Reverse_Proxy_Configurations.html -share/owncloud/core/doc/admin/config/Session_Info.html -share/owncloud/core/doc/admin/config/Table_of_Contents.html -share/owncloud/core/doc/admin/config/User_Experience.html -share/owncloud/core/doc/admin/config/Verification.html +share/owncloud/core/doc/admin/config/apps.html +share/owncloud/core/doc/admin/config/code_locations.html +share/owncloud/core/doc/admin/config/default_parameters.html +share/owncloud/core/doc/admin/config/deleted_items.html share/owncloud/core/doc/admin/config/index.html +share/owncloud/core/doc/admin/config/logging.html +share/owncloud/core/doc/admin/config/mail_parameters.html +share/owncloud/core/doc/admin/config/maintenance.html +share/owncloud/core/doc/admin/config/miscellaneous.html +share/owncloud/core/doc/admin/config/previews.html +share/owncloud/core/doc/admin/config/reverse_proxy_configurations.html +share/owncloud/core/doc/admin/config/session_info.html +share/owncloud/core/doc/admin/config/user_experience.html +share/owncloud/core/doc/admin/config/verification.html share/owncloud/core/doc/admin/configuration/auth_ldap.html share/owncloud/core/doc/admin/configuration/background_jobs.html share/owncloud/core/doc/admin/configuration/configuration_3rdparty.html @@ -7512,8 +6387,6 @@ share/owncloud/core/doc/admin/configuration/custom_user_backend.html share/owncloud/core/doc/admin/configuration/index.html share/owncloud/core/doc/admin/configuration/xsendfile.html share/owncloud/core/doc/admin/contents.html -share/owncloud/core/doc/admin/cron/Introduction.html -share/owncloud/core/doc/admin/cron/Usage.html share/owncloud/core/doc/admin/cron/index.html share/owncloud/core/doc/admin/genindex.html share/owncloud/core/doc/admin/index.html @@ -7525,6 +6398,7 @@ share/owncloud/core/doc/admin/installation/installation_others.html share/owncloud/core/doc/admin/installation/installation_source.html share/owncloud/core/doc/admin/installation/installation_ucs.html share/owncloud/core/doc/admin/installation/installation_windows.html +share/owncloud/core/doc/admin/installation/installation_wizard.html share/owncloud/core/doc/admin/issues/index.html share/owncloud/core/doc/admin/maintenance/backup.html share/owncloud/core/doc/admin/maintenance/index.html @@ -7532,37 +6406,34 @@ share/owncloud/core/doc/admin/maintenance/migrating.html share/owncloud/core/doc/admin/maintenance/restore.html share/owncloud/core/doc/admin/maintenance/update.html share/owncloud/core/doc/admin/objects.inv -share/owncloud/core/doc/admin/quota/Checking_available_space.html -share/owncloud/core/doc/admin/quota/Excluded_from_quota.html -share/owncloud/core/doc/admin/quota/Introduction.html -share/owncloud/core/doc/admin/quota/Sharing.html -share/owncloud/core/doc/admin/quota/Table_of_Contents.html share/owncloud/core/doc/admin/quota/index.html share/owncloud/core/doc/admin/search.html share/owncloud/core/doc/admin/searchindex.js -share/owncloud/core/doc/admin/sharing_api/Contents.html -share/owncloud/core/doc/admin/sharing_api/Create_a_new_Share.html -share/owncloud/core/doc/admin/sharing_api/Delete_Share.html -share/owncloud/core/doc/admin/sharing_api/Get_All_Shares.html -share/owncloud/core/doc/admin/sharing_api/Get_Information_about_a_known_share.html -share/owncloud/core/doc/admin/sharing_api/Get_Shares_from_a_Specific_File_or_Folder.html -share/owncloud/core/doc/admin/sharing_api/Introduction.html +share/owncloud/core/doc/admin/sharing_api/create_a_new_share.html +share/owncloud/core/doc/admin/sharing_api/delete_share.html +share/owncloud/core/doc/admin/sharing_api/get_all_shares.html +share/owncloud/core/doc/admin/sharing_api/get_information_about_a_known_share.html +share/owncloud/core/doc/admin/sharing_api/get_shares_from_a_specific_file_or_folder.html share/owncloud/core/doc/admin/sharing_api/index.html -share/owncloud/core/doc/admin/sync_client/Advanced_Usage.html -share/owncloud/core/doc/admin/sync_client/Introduction.html -share/owncloud/core/doc/admin/sync_client/Obtaining_the_Client.html -share/owncloud/core/doc/admin/sync_client/Setting_up_an_Account.html -share/owncloud/core/doc/admin/sync_client/Table_of_Contents.html -share/owncloud/core/doc/admin/sync_client/Visual_Tour.html -share/owncloud/core/doc/admin/sync_client/index.html -share/owncloud/core/doc/admin/web_guide/Adding_Data.html -share/owncloud/core/doc/admin/web_guide/Initial_Log_In.html -share/owncloud/core/doc/admin/web_guide/Introduction.html -share/owncloud/core/doc/admin/web_guide/Main_ownCloud_screen.html -share/owncloud/core/doc/admin/web_guide/Navigation.html -share/owncloud/core/doc/admin/web_guide/Personal_Configurations.html -share/owncloud/core/doc/admin/web_guide/Table_of_Contents.html -share/owncloud/core/doc/admin/web_guide/index.html +share/owncloud/core/doc/user/_images/1000000000000163000000E9CDA84C92.png +share/owncloud/core/doc/user/_images/1000000000000175000000FAB2A2B294.png +share/owncloud/core/doc/user/_images/1000000000000195000000EF7E44082C.png +share/owncloud/core/doc/user/_images/10000000000001CE000000F2E2084BA1.png +share/owncloud/core/doc/user/_images/100000000000041D0000003D52225C0D.png +share/owncloud/core/doc/user/_images/1000000000000453000001BFFCF48776.png +share/owncloud/core/doc/user/_images/1000000000000467000002B63162E59B.png +share/owncloud/core/doc/user/_images/10000000000004690000026615360BEB.png +share/owncloud/core/doc/user/_images/100000000000046D0000015F4B5494A9.png +share/owncloud/core/doc/user/_images/100000000000046F000000DEA2BFCD9B.png +share/owncloud/core/doc/user/_images/1000000000000470000001B68AE60DD3.png +share/owncloud/core/doc/user/_images/10000000000004710000014BBC34499D.png +share/owncloud/core/doc/user/_images/100000000000047200000129CB014025.png +share/owncloud/core/doc/user/_images/100000000000047700000219A3013A92.png +share/owncloud/core/doc/user/_images/1000000000000479000002887E7F48EA.png +share/owncloud/core/doc/user/_images/100000000000047A000000B727198874.png +share/owncloud/core/doc/user/_images/100000000000047A000000FB86FF2A9A.png +share/owncloud/core/doc/user/_images/100000000000047A0000011C6682A254.png +share/owncloud/core/doc/user/_images/100000000000048100000245268CDB7A.png share/owncloud/core/doc/user/_images/bookmark_addurl.png share/owncloud/core/doc/user/_images/bookmark_setting.png share/owncloud/core/doc/user/_images/calendar_createevent.png @@ -7637,6 +6508,7 @@ share/owncloud/core/doc/user/_sources/pim/sync_osx.txt share/owncloud/core/doc/user/_sources/pim/sync_thunderbird.txt share/owncloud/core/doc/user/_sources/pim/troubleshooting.txt share/owncloud/core/doc/user/_sources/userpreferences.txt +share/owncloud/core/doc/user/_sources/web_guide/index.txt share/owncloud/core/doc/user/_sources/webinterface.txt share/owncloud/core/doc/user/_static/ajax-loader.gif share/owncloud/core/doc/user/_static/basic.css @@ -7695,6 +6567,7 @@ share/owncloud/core/doc/user/pim/troubleshooting.html share/owncloud/core/doc/user/search.html share/owncloud/core/doc/user/searchindex.js share/owncloud/core/doc/user/userpreferences.html +share/owncloud/core/doc/user/web_guide/index.html share/owncloud/core/doc/user/webinterface.html share/owncloud/core/img/actions/add.png share/owncloud/core/img/actions/add.svg @@ -8006,7 +6879,6 @@ share/owncloud/core/l10n/nqo.php share/owncloud/core/l10n/oc.php share/owncloud/core/l10n/pa.php share/owncloud/core/l10n/pl.php -share/owncloud/core/l10n/pl_PL.php share/owncloud/core/l10n/pt_BR.php share/owncloud/core/l10n/pt_PT.php share/owncloud/core/l10n/ro.php @@ -8818,17 +7690,6 @@ share/owncloud/l10n/pl/lib.po share/owncloud/l10n/pl/settings.po share/owncloud/l10n/pl/user_ldap.po share/owncloud/l10n/pl/user_webdavauth.po -share/owncloud/l10n/pl_PL/core.po -share/owncloud/l10n/pl_PL/files.po -share/owncloud/l10n/pl_PL/files_encryption.po -share/owncloud/l10n/pl_PL/files_external.po -share/owncloud/l10n/pl_PL/files_sharing.po -share/owncloud/l10n/pl_PL/files_trashbin.po -share/owncloud/l10n/pl_PL/files_versions.po -share/owncloud/l10n/pl_PL/lib.po -share/owncloud/l10n/pl_PL/settings.po -share/owncloud/l10n/pl_PL/user_ldap.po -share/owncloud/l10n/pl_PL/user_webdavauth.po share/owncloud/l10n/pt_BR/core.po share/owncloud/l10n/pt_BR/files.po share/owncloud/l10n/pt_BR/files_encryption.po @@ -9212,7 +8073,6 @@ share/owncloud/lib/l10n/nqo.php share/owncloud/lib/l10n/oc.php share/owncloud/lib/l10n/pa.php share/owncloud/lib/l10n/pl.php -share/owncloud/lib/l10n/pl_PL.php share/owncloud/lib/l10n/pt_BR.php share/owncloud/lib/l10n/pt_PT.php share/owncloud/lib/l10n/ro.php @@ -9286,6 +8146,7 @@ share/owncloud/lib/private/connector/sabre/aborteduploaddetectionplugin.php share/owncloud/lib/private/connector/sabre/auth.php share/owncloud/lib/private/connector/sabre/directory.php share/owncloud/lib/private/connector/sabre/exception/entitytoolarge.php +share/owncloud/lib/private/connector/sabre/exception/filelocked.php share/owncloud/lib/private/connector/sabre/exception/unsupportedmediatype.php share/owncloud/lib/private/connector/sabre/exceptionloggerplugin.php share/owncloud/lib/private/connector/sabre/file.php @@ -9321,6 +8182,7 @@ share/owncloud/lib/private/fileproxy/fileoperations.php share/owncloud/lib/private/files.php share/owncloud/lib/private/files/cache/backgroundwatcher.php share/owncloud/lib/private/files/cache/cache.php +share/owncloud/lib/private/files/cache/changepropagator.php share/owncloud/lib/private/files/cache/homecache.php share/owncloud/lib/private/files/cache/legacy.php share/owncloud/lib/private/files/cache/permissions.php @@ -9423,7 +8285,6 @@ share/owncloud/lib/private/preview/image.php share/owncloud/lib/private/preview/movies.php share/owncloud/lib/private/preview/mp3.php share/owncloud/lib/private/preview/office-cl.php -share/owncloud/lib/private/preview/office-fallback.php share/owncloud/lib/private/preview/office.php share/owncloud/lib/private/preview/pdf.php share/owncloud/lib/private/preview/provider.php @@ -9507,6 +8368,7 @@ share/owncloud/lib/public/files/file.php share/owncloud/lib/public/files/folder.php share/owncloud/lib/public/files/invalidcontentexception.php share/owncloud/lib/public/files/invalidpathexception.php +share/owncloud/lib/public/files/locknotacquiredexception.php share/owncloud/lib/public/files/node.php share/owncloud/lib/public/files/notenoughspaceexception.php share/owncloud/lib/public/files/notfoundexception.php @@ -9649,7 +8511,6 @@ share/owncloud/settings/l10n/nn_NO.php share/owncloud/settings/l10n/oc.php share/owncloud/settings/l10n/pa.php share/owncloud/settings/l10n/pl.php -share/owncloud/settings/l10n/pl_PL.php share/owncloud/settings/l10n/pt_BR.php share/owncloud/settings/l10n/pt_PT.php share/owncloud/settings/l10n/ro.php diff --git a/www/php-owncloud/distinfo b/www/php-owncloud/distinfo index b8eafceb42f..94d4daba861 100644 --- a/www/php-owncloud/distinfo +++ b/www/php-owncloud/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.26 2014/03/23 01:19:17 ryoon Exp $ +$NetBSD: distinfo,v 1.27 2014/06/29 13:59:22 ryoon Exp $ -SHA1 (owncloud-6.0.2.tar.bz2) = 0ea1fc4b63723a5d5a9d952368b77ff515851bb2 -RMD160 (owncloud-6.0.2.tar.bz2) = cda8c73737f7c1baf71434b50bc37bc56bda9a4e -Size (owncloud-6.0.2.tar.bz2) = 51422893 bytes +SHA1 (owncloud-6.0.4.tar.bz2) = 6e341aeba2cf99416de009c7862bf03d90d1b058 +RMD160 (owncloud-6.0.4.tar.bz2) = a2239ca0023644b53a2593e39d20824f8ac1adcb +Size (owncloud-6.0.4.tar.bz2) = 31510035 bytes SHA1 (patch-apps_user_ldap_lib_access.php) = 82996f105c16018729596049a060756ad364cbb1 |