summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | allow an attribute to return more than one valueArthur Schiwon2015-10-222-29/+14
| | |
| * | lowercase configured displayname attribute so isset works - all attribute ↵Arthur Schiwon2015-10-222-5/+17
| | | | | | | | | | | | names coming from ldap are lowercased for easy comparison
| * | fix update quota with known valueArthur Schiwon2015-10-222-3/+42
| | |
| * | stable8.1 related adjustments to #18469 backportArthur Schiwon2015-10-222-7/+33
| | |
| * | Backport #18469 (read all relevant user attributes on login and user search, ↵Arthur Schiwon2015-10-2210-93/+514
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in one query) read all relevant user attributes on login and user search, in one query. saves us some. Conflicts: apps/user_ldap/user_ldap.php adjust to nested group fix do not throw exception when no attribute is specified
* | | Merge pull request #20064 from owncloud/stable8.1-add-warning-for-php7Thomas Müller2015-10-261-0/+8
|\ \ \ | | | | | | | | [stable8.1] Stop processing if PHP 7 is used
| * | | Stop processing if PHP 7 is usedLukas Reschke2015-10-261-0/+8
|/ / / | | | | | | | | | PHP 7 is only compatible with ownCloud 8.2.0
* | | Merge pull request #19998 from ↵Thomas Müller2015-10-231-1/+7
|\ \ \ | | | | | | | | | | | | | | | | owncloud/backport-fix-deleted-ldap-user-sharing-stable8.1 [8.1] handle NoUserException in sharing code
| * | | handle NoUserException in sharing codeMorris Jobke2015-10-231-1/+7
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | * setup LDAP users * share from an LDAP user * delete that LDAP user * log in as share recipient * before: unhandled NoUserException * after: NoUserEception is logged and share is not shown anymore
* | | Merge pull request #20007 from owncloud/stable8.1-backport-19957Thomas Müller2015-10-232-1/+9
|\ \ \ | | | | | | | | [8.1] Expose syslog tag in the configuration
| * | | Add syslog_tag docu to sample configSteffen Lindner2015-10-231-0/+8
| | | |
| * | | Expose syslog tag in the configurationVolker Fröhlich2015-10-231-1/+1
| |/ /
* | | Merge pull request #20002 from owncloud/backport-19970-8.1Thomas Müller2015-10-231-4/+4
|\ \ \ | |/ / |/| | [8.1] Fix "Call to a member function getUID() on boolean" in Crypt
| * | Fix "Call to a member function getUID() on boolean" in CryptJoas Schilling2015-10-231-4/+4
|/ /
* | 8.1.4 RC1v8.1.4RC1C Montero-Luque2015-10-212-3/+3
| |
* | Merge pull request #19832 from owncloud/stable8.1-public-recognizeauthsessionThomas Müller2015-10-201-1/+4
|\ \ | | | | | | [stable8.1] Allow public auth to recognize sesssion
| * | Allow public auth to recognize sesssionVincent Petry2015-10-161-1/+4
| | | | | | | | | | | | | | | | | | | | | When a public link password has been input, its auth is stored in the session. This fix makes it possible to recognize the session when using public webdav from the files UI.
* | | Merge pull request #19830 from owncloud/fix-expiration-format-stable8.1Thomas Müller2015-10-161-2/+4
|\ \ \ | |/ / |/| | Use proper format when setting the expiration date
| * | Use proper format when setting the expiration dateThomas Müller2015-10-161-2/+4
|/ /
* | Merge pull request #19809 from ↵Thomas Müller2015-10-162-3/+12
|\ \ | | | | | | | | | | | | owncloud/show-serverside-share-link-expiration-stable8.1 Update expiration date on link sharing
| * | Set expiration date on password changeThomas Müller2015-10-152-1/+5
| | |
| * | Only show expiration date in the web ui if it has been setThomas Müller2015-10-151-1/+3
| | |
| * | Update expiration date on link sharingThomas Müller2015-10-152-3/+6
| | |
* | | Merge pull request #19638 from ↵Roeland Douma2015-10-169-48/+407
|\ \ \ | | | | | | | | | | | | | | | | owncloud/stable8.1_backport_sharingcheckmiddleware_fixes Stable8.1 backport sharingcheckmiddleware fixes
| * | | sharingcheckmiddleware now handles externalshares as wellRoeland Jago Douma2015-10-088-34/+279
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added new annotations for the externalsharescontroller class * @NoOutgoingFederatedSharingRequired * @NoIncomingFederatedSharingRequired By default both are required for all functions in the externalSharesController. A proper exception is thrown and then a 405 is returned instead of the default error page. Since it is only an API endpoint this makes more sense. Unit tests added and updated
| * | | Split files_sharing middelwareRoeland Jago Douma2015-10-082-29/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since for external shares there is no need for link shares to be enabled we should check which controller is actually being called. This makes sure that in all cases we verify that the files_sharing app is enabled. But only for the share controller (public shares) we check if the API is enabled and if links are enabled. TODO: add checks for federated sharing as well
| * | | Only intercept exceptions of type "NotFoundException" instead of any ExceptionLukas Reschke2015-10-083-10/+76
| | | | | | | | | | | | | | | | | | | | | | | | The sharing backend may throw another exception for example when the activity app encounters a problem. Previously this just triggered a 404 error page and the exception got not logged at all. With this change such exceptions get not intercepted and regularly handled as exceptions so that we have meaningful log data. Also the user will be shown a window informing him that an error happened. Helps to debug cases such as https://github.com/owncloud/core/issues/19465
| * | | Respect disabled sharing API settingsRoeland Jago Douma2015-10-082-3/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the sharing API setting is disabled that sharing check middle ware should block the request. Thus making link shares unavailable. Fixes #18970 * Unit test added * Unit tests updated
* | | | Merge pull request #19784 from owncloud/stable8.1_backport_19727Thomas Müller2015-10-151-2/+2
|\ \ \ \ | |_|/ / |/| | | [Stable8.1] Return path instead of itemsource
| * | | Return path instead of itemsourceRoeland Jago Douma2015-10-141-2/+2
| |/ / | | | | | | | | | | | | | | | Fixes #19678 Errors should contain paths and not internal ids
* | | Merge pull request #19786 from owncloud/backport-stable8.1-setup-transportLukas Reschke2015-10-152-2/+5
|\ \ \ | |_|/ |/| | [stable8.1] Setup sendmail transport
| * | Setup sendmail transportLukas Reschke2015-10-142-2/+5
|/ / | | | | | | Replaces https://github.com/owncloud/core/pull/19047 and fixes https://github.com/owncloud/enterprise/issues/854 and https://github.com/owncloud/core/issues/19110
* | Merge pull request #19740 from owncloud/stable8.1-do-not-leak-exception-dataMorris Jobke2015-10-133-11/+68
|\ \ | | | | | | [stable8.1] Do not print exception message
| * | Do not print exception messageLukas Reschke2015-10-133-11/+68
| | | | | | | | | | | | | | | | | | In case of an error the error message often contains sensitive data such as the full path which potentially leads to a full path disclosure. Thus the error message should not directly get displayed to the user and instead be logged.
* | | Merge pull request #19287 from RealRancor/restruct_config_sampleMorris Jobke2015-10-131-21/+21
|\ \ \ | |/ / |/| | Restructure config.sample.php of stable8.1
| * | Restructure config.sample.php of stable8.1RealRancor2015-09-231-21/+21
| | |
* | | Merge pull request #19715 from ↵Morris Jobke2015-10-132-2/+27
|\ \ \ | | | | | | | | | | | | | | | | owncloud/stable8.1-repair-donotrepairfoldermimetypes [stable8.1] Do not update mime types for folders with extension
| * | | Do not update mime types for folders with extensionVincent Petry2015-10-122-2/+27
|/ / / | | | | | | | | | | | | | | | Some folders might have an extension like "test.conf". This fix prevents to overwrite the folder's mime type with another mime type while running the mimetype repair step.
* | | Merge pull request #19466 from owncloud/tarstreamer-stable8.1Thomas Müller2015-10-123-37/+158
|\ \ \ | | | | | | | | [stable8.1] backport Tarstreamer
| * | | Updating 3rdparty dependencyThomas Müller2015-10-091-0/+0
| | | |
| * | | Only use zip64 when we have 64 bit phpJoas Schilling2015-10-081-1/+1
| | | |
| * | | Adding TarStreamer and updating ZipStreamerThomas Müller2015-09-303-4/+1
| | | |
| * | | Uniform behavour for tar and zipVictor Dubiniuk2015-09-301-1/+6
| | | |
| * | | More correctionsVictor Dubiniuk2015-09-302-11/+7
| | | |
| * | | Add namespace. Fix broken zipVictor Dubiniuk2015-09-302-5/+8
| | | |
| * | | Add PHpdocVictor Dubiniuk2015-09-301-6/+40
| | | |
| * | | Introduce streamerVictor Dubiniuk2015-09-302-34/+120
| | | |
* | | | Merge pull request #18855 from owncloud/memcached-fix-stable8.1Morris Jobke2015-10-092-0/+28
|\ \ \ \ | | | | | | | | | | [stable8.1] Fallback to complete Memcached flush if getAllKeys fails
| * | | | Fallback to complete Memcached flush if getAllKeys failsRobin McCorkell2015-09-062-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Newer Memcached's do not support the underlying protocol commands that getAllKeys() is implemented with. We should fallback to clearing everything in that case, as causing (temporary) performance problems for other applications on the server is better than having stale cached data.
* | | | | Merge pull request #19658 from owncloud/stable8.1-backport-19546Morris Jobke2015-10-092-1/+43
|\ \ \ \ \ | | | | | | | | | | | | Stable8.1 backport 19546