summaryrefslogtreecommitdiffstats
path: root/lib/private
Commit message (Collapse)AuthorAgeFilesLines
* - fixing namespaceThomas Müller2013-10-241-2/+4
| | | | - remove property only if present
* handle case where fileid is not setThomas Müller2013-10-232-4/+12
|
* introducing new dav property {xmlns:oc="http://owncloud.org/ns}idThomas Müller2013-10-232-1/+85
|
* Merge pull request #5472 from owncloud/enc_init_status_on_enableBjörn Schießle2013-10-231-0/+1
|\ | | | | Encryption set init status on enable
| * add post_enable hook if a app gets enabledBjoern Schiessle2013-10-221-0/+1
| |
* | Merge pull request #5482 from owncloud/fix_weird_http_namespaceThomas Müller2013-10-235-5/+8
|\ \ | | | | | | Fix namespace for OCP\Appframework\Http
| * | Fix namespace for OCP\Appframework\HttpThomas Tanghus2013-10-235-5/+8
| | | | | | | | | | | | | | | To avoid having to use OCP\Appframework\Http\Http in the public - and stable - API OCP\Appframework\Http is now both a class and a namespace.
* | | Merge pull request #5391 from owncloud/undefined-property-in-schema-masterThomas Müller2013-10-221-3/+4
|\ \ \ | |/ / |/| | removing pointless calls on quoteIdentifier() - reason: name on $tableDi...
| * | Use quoteIdentifier with proper objectsVictor Dubiniuk2013-10-211-0/+5
| | |
| * | removing pointless calls on quoteIdentifier() - reason: name on $tableDiff ↵Thomas Müller2013-10-171-6/+2
| | | | | | | | | | | | | | | | | | doesn't exist and my design the name cannot be changed adding PHPDoc
* | | Merge pull request #5451 from owncloud/reuse-session-ocs-masterThomas Müller2013-10-221-3/+19
|\ \ \ | | | | | | | | Support existing sessions within OCS API calls
| * | | Support existing sessions within OCS API callsThomas Müller2013-10-211-3/+19
| | | |
* | | | - delete properties on node deleteThomas Müller2013-10-223-0/+19
| |_|/ |/| | | | | | | | - move properties on node move
* | | Merge pull request #5455 from owncloud/fixing-2423-masterThomas Müller2013-10-225-10/+27
|\ \ \ | | | | | | | | introduce link_to_docs() and migrate links
| * | | use OC_Helper::linkToDocs() in lib/private/config.phpThomas Müller2013-10-211-1/+1
| | | |
| * | | introduce OC_Helper::linkToDocs()Thomas Müller2013-10-213-6/+18
| | | |
| * | | introduce link_to_docs() and migrate linksThomas Müller2013-10-214-10/+15
| |/ /
* | | Merge pull request #5437 from owncloud/create-custom-logfileThomas Müller2013-10-221-1/+11
|\ \ \ | | | | | | | | Try to create custom log file before falling back to default.
| * | | Try to create custom log file before falling back to default.Andreas Fischer2013-10-201-1/+11
| | | |
* | | | Merge pull request #5249 from owncloud/activities-apiThomas Müller2013-10-212-0/+80
|\ \ \ \ | | | | | | | | | | [OC6] Activities api
| * \ \ \ Merge branch 'master' into activities-apiThomas Müller2013-10-1612-335/+212
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: lib/private/server.php
| * \ \ \ \ Merge branch 'master' into activities-apiThomas Müller2013-10-1618-356/+195
| |\ \ \ \ \
| * | | | | | adding OC6 public API for activitiesThomas Müller2013-10-091-0/+69
| | | | | | |
| * | | | | | Merge branch 'master' into activities-apiThomas Müller2013-10-091-0/+12
| | | | | | |
* | | | | | | New OCS route:Thomas Müller2013-10-211-2/+11
| |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | /ocs/cloud/user Response: <?xml version="1.0"?> <ocs> <meta> <status>ok</status> <statuscode>100</statuscode> <message/> </meta> <data> <id>thomas</id> <display-name>DeepDiver</display-name> <email>no-response@domain.tld</email> </data> </ocs>
* | | | | | dispayNamesInGroup(s) should always return uid as key in the result attr, ↵Arthur Schiwon2013-10-201-1/+1
| |_|_|/ / |/| | | | | | | | | | | | | | fixes #5209
* | | | | the logfile shoudn't be world readable.Frank Karlitschek2013-10-181-0/+1
| | | | |
* | | | | Remove "link" shares right after disabling the "allow_link_share" settingMorris Jobke2013-10-181-0/+6
| | | | |
* | | | | Merge pull request #5395 from owncloud/more_check_optionsVincent Petry2013-10-181-0/+7
|\ \ \ \ \ | | | | | | | | | | | | add options to disable the check for a working .htaccess file in data
| * | | | | add options to disable the check for a working .htaccess file in data and ↵Frank Karlitschek2013-10-171-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | for a working WebDAV server. This are advanced settings that are needed in special situations where our check fail and the user runs into an http timeout.
* | | | | | Merge pull request #5358 from owncloud/postinstall-ocdavclientwithtimeoutVincent Petry2013-10-182-1/+49
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Added timeout for WebDAV post setup check
| * | | | | Fixed spacesVincent Petry2013-10-171-3/+3
| | | | | |
| * | | | | Added timeout value to WebDAV post setup checkVincent Petry2013-10-161-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #5357
| * | | | | Added DAV client wrapper that support timeout valuesVincent Petry2013-10-161-0/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since SabreDAV does not support passing a timeout value to curl, this commit adds a subclass for it that will set the timeout value to curlRequest().
* | | | | | Merge pull request #5394 from owncloud/sabre-server-locationThomas Müller2013-10-171-0/+235
|\ \ \ \ \ \ | | | | | | | | | | | | | | Move OC_Connector_Sabre_Server to expected location.
| * | | | | | Move OC_Connector_Sabre_Server to expected location.Andreas Fischer2013-10-171-0/+235
| | |_|_|_|/ | |/| | | |
* | | | | | fix commentGeorg Ehrke2013-10-171-1/+1
| | | | | |
* | | | | | only call shell_exec if enabledGeorg Ehrke2013-10-172-3/+3
|/ / / / /
* | | | | Merge pull request #5385 from owncloud/generate-sql-migration-masterMorris Jobke2013-10-171-1/+21
|\ \ \ \ \ | | | | | | | | | | | | new console command to generate sql migration scripts
| * | | | | new console command to generate sql migration scriptsThomas Müller2013-10-171-1/+21
| | | | | |
* | | | | | Merge pull request #5379 from owncloud/undefined-shippedFrank Karlitschek2013-10-171-5/+5
|\ \ \ \ \ \ | |/ / / / / |/| | | | | fix undefined "shipped"
| * | | | | fix undefined "shipped"Morris Jobke2013-10-171-5/+5
| | | | | |
* | | | | | Merge pull request #5237 from owncloud/coverage-on-windows-masterThomas Müller2013-10-173-111/+126
|\ \ \ \ \ \ | |/ / / / / |/| | | | | PHP Code Coverage on windows master
| * | | | | any preview requiring the which command will not be used on WindowsThomas Müller2013-10-153-111/+126
| | | | | |
* | | | | | Merge pull request #4949 from owncloud/improve_unknown_preview_backendFrank Karlitschek2013-10-172-5/+33
|\ \ \ \ \ \ | | | | | | | | | | | | | | use svg to generate filetype icon if imagick available
| * | | | | | resize svg without loosing qualityThomas Müller2013-10-111-0/+8
| | | | | | |
| * | | | | | fix indentationMorris Jobke2013-10-071-6/+6
| | | | | | |
| * | | | | | fix wrong variable nameGeorg Ehrke2013-10-071-1/+1
| | | | | | |
| * | | | | | fix doc block of OC\Preview\Provider::getThumbnail()Georg Ehrke2013-10-071-3/+9
| | | | | | |
| * | | | | | check if svg of filetype icon existsGeorg Ehrke2013-10-071-2/+2
| | | | | | |