summaryrefslogtreecommitdiffstats
path: root/lib/private
Commit message (Collapse)AuthorAgeFilesLines
* Update phpseclib to 2.0Andreas Fischer2015-08-031-5/+5
|
* Merge pull request #17981 from owncloud/correct-regexThomas Müller2015-07-301-2/+2
|\ | | | | Correct regular expressions
| * Correct regular expressionsLukas Reschke2015-07-301-2/+2
| | | | | | | | Previously the regex was only matching on single characters. Meaning that file names such as ":+1:.txt" where possible while ":+1:" alone never was. This check apparently never worked as expected.
* | Check for PDO instead of removed function for PHP 7 compatibilityLukas Reschke2015-07-301-8/+22
| |
* | - more injectionThomas Müller2015-07-304-65/+112
| | | | | | | | | | | | - less static calls - use params on sql queries - handle sql exception on database and user creation gracefully
* | Moving mysql setup code over to DoctrineThomas Müller2015-07-295-95/+109
| |
* | Remove remainings of mssqlThomas Müller2015-07-297-258/+2
| |
* | Merge pull request #17950 from ↵Robin McCorkell2015-07-291-1/+1
|\ \ | |/ |/| | | | | owncloud/config-dontdetectfschangesinrootbydefault Disable filesystem_check_changes by default
| * Disable filesystem_check_changes by defaultVincent Petry2015-07-291-1/+1
| | | | | | | | | | | | | | | | | | | | This will prevent detecting remote changes done in the data folder / root storage by default. In the rare cases where the data folder is shared with other apps/users outside ownCloud and change detection is needed, the admin will have to set the option explicitly from now on. Note that this doesn't affect external storages which have their own setting in the mount options.
* | Merge pull request #15543 from rullzer/mimetypedetectorMorris Jobke2015-07-283-90/+151
|\ \ | | | | | | Mimetypedetector
| * | Pass config dir as parameter to detection classRoeland Jago Douma2015-07-272-8/+15
| | | | | | | | | | | | | | | | | | | | | In order to properly test the mimetype function: * constructor takes path to configdir * Added unit tests for mimetype (only if vfsStream is available)
| * | Proper deprecate methodsRoeland Jago Douma2015-07-272-14/+5
| | |
| * | Loading of mapping/aliases is done in classRoeland Jago Douma2015-07-272-25/+48
| | |
| * | Move mimetypedetection to files/type/detectionRoeland Jago Douma2015-07-273-168/+60
| | |
| * | Added mimetype detectorRoeland Jago Douma2015-07-273-1/+149
| | | | | | | | | | | | * Copied unit tests from old functions
* | | Merge pull request #17195 from rullzer/no_multiple_remote_shares_of_same_fileRoeland Douma2015-07-281-0/+13
|\ \ \ | |_|/ |/| | Remote shares should be uique
| * | Cannot share the same file multiple times with remote userRoeland Jago Douma2015-07-151-0/+13
| | | | | | | | | | | | | | | | | | Fix for #17183 It should not be possible to create multiple remote shares from user A to user B of the same file/folder.
* | | Merge pull request #17902 from owncloud/fix_17898Vincent Petry2015-07-271-1/+2
|\ \ \ | | | | | | | | get header size before we open the file to avoid locking exception
| * | | get header size before we open the file to avoid locking exceptionBjoern Schiessle2015-07-271-1/+2
| | | |
* | | | Merge pull request #17840 from owncloud/fix-enc-wrapper-without-encryptionThomas Müller2015-07-271-1/+1
|\ \ \ \ | |/ / / |/| | | Only set is encrypted when encryption is enabled
| * | | Only set is encrypted when encryption is enabledJoas Schilling2015-07-231-1/+1
| | | |
* | | | check if the user is trying to scan a valid pathRobin Appelman2015-07-271-0/+3
| |_|/ |/| |
* | | Merge pull request #17838 from owncloud/sharing-password-policy-masterThomas Müller2015-07-241-1/+23
|\ \ \ | | | | | | | | Use a hook to integrate sharing password verification
| * | | Fix PHPDoc on setPasswordThomas Müller2015-07-231-1/+1
| | | |
| * | | Use a hook to integrate sharing password verificationThomas Müller2015-07-231-0/+22
| |/ /
* | | Merge pull request #17755 from owncloud/alias-container-aliveThomas Müller2015-07-242-50/+41
|\ \ \ | |/ / |/| | Add registerAlias method to shortcut interface registration #17714
| * | add registerAlias method to shorcut interface registrationBernhard Posselt2015-07-182-50/+41
| | | | | | | | | | | | | | | | | | | | | | | | remove unused import add since tag fix typo
* | | Add a log message when the Doctrine Query Builder is retrievedJoas Schilling2015-07-213-16/+39
| | |
* | | Comment out LIMIT 0 case because of the mixed resultsJoas Schilling2015-07-211-0/+4
| | |
* | | Fix tests for setFirstResult and setMaxResults on oracleJoas Schilling2015-07-211-2/+2
| | |
* | | Fix existing usages by removing the quotesJoas Schilling2015-07-211-6/+6
| | |
* | | Add unit tests and automatic quotingJoas Schilling2015-07-219-95/+440
| | |
* | | Use the public interface and our method instead of the doctrine thingJoas Schilling2015-07-212-13/+13
| | |
* | | Add QueryBuilder, ExpressionBuilder and CompositeExpression wrappersJoas Schilling2015-07-215-0/+1275
| | |
* | | Merge pull request #17381 from owncloud/fix_sharing_add_to_groupMorris Jobke2015-07-211-28/+87
|\ \ \ | | | | | | | | [sharing] fix addToGroup hook
| * | | intproduce pre_addToGroup hook. we need to calculate the possible uniqueBjoern Schiessle2015-07-061-28/+87
| | | | | | | | | | | | | | | | | | | | targets before the user was added to the group otherwise we will always detect a name collision
* | | | Escape ampersand in logout URLMorris Jobke2015-07-211-1/+1
| | | | | | | | | | | | | | | | * fixes #17757
* | | | Merge pull request #17743 from owncloud/return-proper-statuscodesBernhard Posselt2015-07-202-11/+40
|\ \ \ \ | | | | | | | | | | Return proper status code in case of a CORS exception
| * | | | Return proper status code in case of a CORS exceptionLukas Reschke2015-07-202-11/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When returning a 500 statuscode external applications may interpret this as an error instead of handling this more gracefully. This will now make return a 401 thus. Fixes https://github.com/owncloud/core/issues/17742
* | | | | Merge pull request #16935 from ↵Joas Schilling2015-07-209-166/+889
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | owncloud/allow-app-check-code-for-deprecated-classes Allow app check code for deprecated classes
| * | | | PR #17046 deprecated OCP\Util::mb_(sub)str_replace()Joas Schilling2015-07-171-0/+2
| | | | |
| * | | | Only decorate the type when it was matchedJoas Schilling2015-07-178-78/+191
| | | | |
| * | | | Use the decorator patternJoas Schilling2015-07-177-62/+215
| | | | |
| * | | | Restructor the code into different classes instead of extendingJoas Schilling2015-07-176-186/+327
| | | | |
| * | | | Check for methods as good as possibleJoas Schilling2015-07-173-5/+119
| | | | |
| * | | | Allow checking for functionsJoas Schilling2015-07-173-10/+54
| | | | |
| * | | | Add support for deprecated constantsJoas Schilling2015-07-173-8/+54
| | | | |
| * | | | Add deprecation version to the listJoas Schilling2015-07-172-9/+14
| | | | |
| * | | | Correctly handle use statementsJoas Schilling2015-07-172-3/+42
| | | | |
| * | | | Allow app:check-code to check for deprecated methodsJoas Schilling2015-07-173-43/+109
| | | | |