aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/legacy/util.php
Commit message (Collapse)AuthorAgeFilesLines
* Move away from OC_L10NRoeland Jago Douma2016-10-281-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Remove checks whether OC is running on Windows pt. 2RealRancor2016-10-241-18/+0
|
* Move OC\Files\Storage\Shared to the right namespaceJoas Schilling2016-10-201-3/+2
|
* Kill users with the reserved name on loginRoeland Jago Douma2016-10-051-1/+11
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Graceful error handling and loggingLukas Reschke2016-09-251-1/+16
| | | | | | | | Right now a failed "copyr" will result in the error log being spammed with not really helpful error messages. Also situations such as `$dir` returning `false` are not really caught. This adds more error handling and logging to make debugging such situations easier. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Deprecate getEditionString()Joas Schilling2016-09-061-9/+2
|
* Merge pull request #1054 from nextcloud/less-cache-hitsLukas Reschke2016-08-271-0/+1
|\ | | | | Reduce the number of cache operations for dav operations
| * cache user foldersRobin Appelman2016-08-251-0/+1
| |
* | prevent infinite redirect loops if the there is no 2fa provider to passChristoph Wurst2016-08-241-1/+1
|/ | | | | | | This fixes infinite loops that are caused whenever a user is about to solve a 2FA challenge, but the provider app is disabled at the same time. Since the session value usually indicates that the challenge needs to be solved before we grant access we have to remove that value instead in this special case.
* Merge pull request #899 from nextcloud/nfd-defaultRobin Appelman2016-08-171-1/+1
|\ | | | | [us] Disable NFD encoding wrapper by default
| * Disable NFD encoding wrapper by defaultVincent Petry2016-08-171-1/+1
| | | | | | | | | | Seems I forgot to set it back to false after testing. Will give a performance boost for all storages.
* | use $userId instead of $userJörn Friedrich Dreyer2016-08-141-3/+3
| |
* | Ensure the user exists before calling a method on it - fixes #24751Thomas Müller2016-08-141-3/+7
|/
* libxml - compare against loaded versionMorris Jobke2016-07-281-2/+8
| | | | | | | * if the compiled in version is older than the loaded version Nextcloud doesn't work * uses the loaded libxml version to check against fixes #205
* Update with robinJoas Schilling2016-07-211-1/+1
|
* Fix othersJoas Schilling2016-07-211-4/+5
|
* Use the themed Defaults everywhereJoas Schilling2016-07-151-1/+1
|
* Remove unneeded checks if it runs on a Windows machineMorris Jobke2016-07-081-21/+12
| | | | * the setup check is still there
* Merge remote-tracking branch 'upstream/master' into master-upstream-syncLukas Reschke2016-06-261-5/+6
|\
| * redirect to new login route (#25099)Christoph Wurst2016-06-211-5/+6
| | | | | | | | | | | | * redirect to new login route * encode anchor in url and restore it client-side
* | fix more stringsMorris Jobke2016-06-201-8/+4
|/
* Check 2FA state for raw php files tooChristoph Wurst2016-06-101-0/+5
|
* Use temporary htaccesstest.txt for data dir security checkVincent Petry2016-06-071-13/+24
|
* Properly check for mbstring extensionLukas Reschke2016-05-311-1/+1
| | | | mb_detect_encoding is in the fallback we ship in the polyfill library, mb_strcut is not. Thus this lead to a false positive and ownCloud would just break.
* Update license headersLukas Reschke2016-05-261-8/+6
|
* Add encoding wrapper as opt-in mount optionVincent Petry2016-05-201-4/+2
| | | | | The encoding wrapper is now only applied when the mount option is set, disabled by default.
* Add wrapper for NFD encoding workaroundVincent Petry2016-05-201-0/+9
|
* token based authChristoph Wurst2016-05-111-2/+1
| | | | | | | | * Add InvalidTokenException * add DefaultTokenMapper and use it to check if a auth token exists * create new token for the browser session if none exists hash stored token; save user agent * encrypt login password when creating the token
* Move non PSR-4 files from lib/private root to legacyRoeland Jago Douma2016-04-301-0/+1450
As discussed we move all old style classes (OC_FOO_BAR) to legacy. Then from there we can evaluate the need to convert them back or if they can be fully deprecated/deleted.