summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Folder depth needs to be at least 3 for all tests to passRoeland Jago Douma2015-12-101-1/+1
|
* Added shared by multiple channels testSergio Bertolin2015-12-102-0/+32
| | | | | * Small changes plus check of the file using propfind * Restaured line removed accidentally
* [tx-robot] updated from transifexJenkins for ownCloud2015-12-1016-4/+64
|
* Merge pull request #21077 from owncloud/external-index-namesThomas Müller2015-12-092-7/+1
|\ | | | | Let doctrine generate index names for files_external
| * Let doctrine generate index namesRobin Appelman2015-12-092-7/+1
| |
* | Merge pull request #20775 from owncloud/comments-managerThomas Müller2015-12-0915-7/+1756
|\ \ | | | | | | add icommentsmanger and icomment implementation
| * | use expectedException annotation, not via method call, for consistencyArthur Schiwon2015-12-092-13/+29
| | |
| * | use getLastInsertId from query builder for convenienceArthur Schiwon2015-12-092-3/+3
| | |
| * | remove unused use statementArthur Schiwon2015-12-091-1/+0
| | |
| * | php < 5.5 compatibleArthur Schiwon2015-12-091-5/+5
| | |
| * | adjust test's fakemanager to interface changeArthur Schiwon2015-12-091-1/+1
| | |
| * | improve PHP doc and remove superflous by reference indicatorArthur Schiwon2015-12-092-7/+7
| | |
| * | anounce CommentsManager getter in public server interfaceArthur Schiwon2015-12-091-0/+6
| | |
| * | hardening, add some checks for whitespace-only stringsArthur Schiwon2015-12-092-22/+25
| | |
| * | fix phpdocArthur Schiwon2015-12-091-2/+3
| | |
| * | rework test about overwriting default comments managerArthur Schiwon2015-12-093-18/+48
| | |
| * | namespaces for testsArthur Schiwon2015-12-093-9/+15
| | |
| * | fix php docArthur Schiwon2015-12-091-1/+1
| | |
| * | OC not ocArthur Schiwon2015-12-093-10/+10
| | |
| * | parameter checks for setting actor and object to happen only in one placeArthur Schiwon2015-12-092-13/+8
| | |
| * | fix usage of emptyArthur Schiwon2015-12-091-6/+6
| | |
| * | different strategy in cleaning up after user was deletedArthur Schiwon2015-12-096-28/+21
| | | | | | | | | | | | | | | | | | | | | | | | we do not listen to deletion hooks anymore, because there is no guarantee that they will be heard - requires that something fetches the CommentsManager first. Instead, in the user deletion routine the clean up method will be called directly. Same way as it happens for files, group memberships, config values.
| * | add icommentsmanger and icomment implementationArthur Schiwon2015-12-0912-6/+1706
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | register CommentsManager service, allow override, document in config.sample.php don't insert autoincrement ids in tests, because of dislikes from oracle and pgsql specify timezone in null date only accepts strings for ID parameter that can be converted to int replace forgotten hardcoded IDs in tests react on deleted users react on file deletion Postgresql compatibility lastInsertId needs *PREFIX* with the table name do not listen for file deletion, because it is not reliable (trashbin, external storages) add runtime cache for comments
* | | Merge pull request #21076 from ↵Thomas Müller2015-12-091-4/+6
|\ \ \ | |/ / |/| | | | | | | | owncloud/occ-shall-not-fail-hard-in-maintenance-mode Don't load commands of apps when in maintenance mode
| * | Don't load commands of apps when in maintenance mode - fixes #20939Thomas Müller2015-12-091-4/+6
|/ /
* | Merge pull request #21060 from owncloud/support-for-read-only-config-dirThomas Müller2015-12-091-7/+9
|\ \ | | | | | | Add support for read only config dir
| * | Add support for read only config dirLukas Reschke2015-12-091-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We already support the `config_is_read_only` for the config file itself. However not for the whole directory (which is a bug). This unifies the check in the checkServer routine with the one in base.php. Now one can enable a read only config folder so that ownCloud is not allowed to overwrite it's own source code. To test this set the whole config folder to read only, clear your session, refresh, see it fails, add the new code, refresh, see it works. Also verify that setup still works fine. (obviously setup does not work with a read only config Also verify that setup still works fine. (obviously setup does not work with a read only config)) Fixes https://github.com/owncloud/core/issues/14455
* | | Merge pull request #21019 from owncloud/occ-get-apppathThomas Müller2015-12-092-0/+63
|\ \ \ | | | | | | | | Add occ command to get app path
| * | | Add occ command to get app pathVictor Dubiniuk2015-12-092-0/+63
| | | |
* | | | Merge pull request #20989 from owncloud/fix_20769Thomas Müller2015-12-091-0/+41
|\ \ \ \ | | | | | | | | | | Update parent when moving share into recieved share
| * | | | Update parent when moving share into recieved shareRoeland Jago Douma2015-12-071-0/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #20769 When I receive a share and move a share of myself into that share (which is allowed currently) I effectively hand over ownership of the files I move. So we need to update the share I move to have as a parent the share I move it into. Else our mounting system gets confused.
* | | | | Merge pull request #21059 from owncloud/remove-deaed-code-mount-configThomas Müller2015-12-091-52/+6
|\ \ \ \ \ | | | | | | | | | | | | Remove dead code
| * | | | | Remove dead codeLukas Reschke2015-12-091-52/+6
| | | | | | | | | | | | | | | | | | | | | | | | Silences two other security warnings, also I cleaned up the PHPDoc a little bit.
* | | | | | Merge pull request #21068 from owncloud/fix-exit-code-autotest-externalThomas Müller2015-12-093-3/+9
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | Fix exit code autotest external
| * | | | | Use default timeout on connection testThomas Müller2015-12-091-1/+1
| | | | | |
| * | | | | remove deprecated strict settingThomas Müller2015-12-091-1/+0
| | | | | |
| * | | | | script shall exit with error in case the start file has issues - fixes #20798Thomas Müller2015-12-091-1/+8
| | |_|/ / | |/| | |
* | | | | Merge pull request #21061 from owncloud/fix-oracle-last-insert-id-testThomas Müller2015-12-092-11/+39
|\ \ \ \ \ | | | | | | | | | | | | Fix the last insert id test by changing to an autoincremen…
| * | | | | Do not quote the table name for lastInsertId()Joas Schilling2015-12-091-6/+22
| | | | | |
| * | | | | Fix the last insert id test by changing to an autoincrement tableJoas Schilling2015-12-091-5/+17
| | |_|_|/ | |/| | |
* | | | | Merge pull request #21056 from owncloud/check-returnThomas Müller2015-12-092-3/+7
|\ \ \ \ \ | | | | | | | | | | | | Verify return type
| * | | | | Verify return typeLukas Reschke2015-12-092-3/+7
| | |_|/ / | |/| | | | | | | | | | | | | Can also be null. Silences another security warning...
* | | | | Merge pull request #21055 from owncloud/fix-php-docs-for-consoleThomas Müller2015-12-091-1/+10
|\ \ \ \ \ | | | | | | | | | | | | Fix PHPDoc and check if path does exists
| * | | | | Fix PHPDoc and check if path does existsLukas Reschke2015-12-091-1/+10
| |/ / / / | | | | | | | | | | | | | | | Mutes another security warning of some static scanners.
* | | | | Merge pull request #20995 from owncloud/fix-18734Thomas Müller2015-12-091-1/+5
|\ \ \ \ \ | |_|_|/ / |/| | | | ensure multiselect always receives an array when setting its value, f…
| * | | | ensure multiselect always receives an array when setting its value, fixes #18734Arthur Schiwon2015-12-071-1/+5
| | |_|/ | |/| |
* | | | Merge pull request #21064 from owncloud/fix-occ-install-on-os-xThomas Müller2015-12-091-1/+6
|\ \ \ \ | | | | | | | | | | Allow occ install on OS X - same behaviour as web setup
| * | | | Allow occ install on OS X - same behaviour as web setupMorris Jobke2015-12-091-1/+6
|/ / / /
* | | | Merge pull request #21003 from owncloud/personal-mount-mountidThomas Müller2015-12-092-4/+54
|\ \ \ \ | | | | | | | | | | Dont set the string storage id to the numeric storage id for personal mounts
| * | | | Add testsRobin Appelman2015-12-081-0/+50
| | | | |