summaryrefslogtreecommitdiffstats
path: root/lib/public
Commit message (Collapse)AuthorAgeFilesLines
* Add OC_Response::setContentLengthHeader() for Apache PHP SAPI workaround.Andreas Fischer2015-04-041-0/+8
| | | | | | | | | | | Do not send Content-Length headers with a value larger than PHP_INT_MAX (2147483647) on Apache PHP SAPI 32-bit. PHP will eat them and send 2147483647 instead. When X-Sendfile is enabled, Apache will send a correct Content-Length header, even for files larger than 2147483647 bytes. When X-Sendfile is not enabled, ownCloud will not send a Content-Length header. This prevents progress bars from working, but allows the actual transfer to work properly.
* Add \OC\TempManager to handle creating and cleaning temporary filesRobin Appelman2015-01-082-0/+45
| | | | | | Conflicts: lib/private/server.php lib/public/iservercontainer.php
* Backport \OC\Security\Crypto to ownCloud 7Lukas Reschke2014-11-202-0/+71
| | | | | Conflicts: lib/repair/repairconfig.php
* fix typo in content typeBernhard Posselt2014-11-051-1/+1
|
* Support HTML in logo claimLukas Reschke2014-11-051-0/+8
|
* Expose getAppKeys trough \OCP\IConfigRobin Appelman2014-10-091-0/+14
|
* Merge pull request #11299 from owncloud/barkport-10934Lukas Reschke2014-10-021-1/+1
|\ | | | | [stable7] Don't complain about non-writable datadirs before we're installed
| * Inject config into checkserver and cleanup testsRobin Appelman2014-09-301-1/+1
| | | | | | | | | | Conflicts: lib/private/util.php
* | some small fixesBjoern Schiessle2014-10-011-1/+1
| |
* | mark exclude list as deprecated. It neither used by the files app nor by theBjoern Schiessle2014-10-011-1/+1
|/ | | | | calendar or contacts app. It doesn't make sense to build a exclude list by the share API, the apps knows best which are valid targets.
* Expose creatable permissions trough fileinfoRobin Appelman2014-09-261-0/+7
|
* Do only follow HTTP and HTTPS redirectsLukas Reschke2014-09-231-0/+5
| | | | | | | | | | | | | | | We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server) Get final redirect manually using get_headers() Migrate to HTTPHelper class and add unit tests Conflicts: apps/files/ajax/newfile.php lib/private/files/storage/dav.php lib/private/server.php lib/private/util.php lib/public/iservercontainer.php
* update public interface for getUserFolderMorris Jobke2014-08-311-1/+2
|
* Expose setSystemValueLukas Reschke2014-08-251-2/+1
|
* we need the recipient as a additional parameter to know for which share the ↵Bjoern Schiessle2014-08-141-2/+3
| | | | notification was send
* Add group management to the public apiRobin Appelman2014-08-103-0/+171
|
* Add ability to theme iOS and Android client URLs just like desktop URLs.scolebrook2014-08-061-0/+16
| | | | | | * added to personal settings page. * fix uppercase issue * remove escaping because it's unneeded
* don't display share permission if resharing was disabled by the adminBjoern Schiessle2014-08-051-0/+9
|
* Fix template rendering for 'blank' templatesMorris Jobke2014-07-301-1/+3
|
* add OCS api call to set expire date for link sharesBjoern Schiessle2014-07-282-2/+12
|
* - adding default value for $recoveryPasswordThomas Müller2014-07-241-3/+3
| | | | - set password correctly in lost password
* Expose the user manager in the public server containerRobin Appelman2014-07-141-0/+7
|
* Add public interfaces for User, UserManager and UserSessionRobin Appelman2014-07-143-0/+223
|
* Adding new interface \OCP\Activity\IExtentsionThomas Müller2014-07-082-1/+191
| | | | | | | | | | | | Adding method getNotificationTypes() Adding method filterNotificationTypes() Adding method getDefaultTypes() Adding method translate() and getTypeIcon() Adding method getGroupParameter() Adding method getNavigation() Adding method getNavigation() Adding method isFilterValid() and getQueryForFilter() Adding unit tests for \OC\ActivityManager
* introduce and use getCurrentConnection()Jörn Friedrich Dreyer2014-07-041-0/+7
|
* Merge pull request #9329 from owncloud/sharing_check_targetVincent Petry2014-07-021-0/+4
|\ | | | | don't move a share mount point into a different mount point
| * add a explicit interface for the home storageBjoern Schiessle2014-07-011-0/+4
| |
* | Detect removed public sharesRobin Appelman2014-07-012-0/+25
| |
* | Add StorageNotAvailableExceptionRobin Appelman2014-06-301-0/+19
|/
* Merge pull request #8383 from owncloud/object_storageVincent Petry2014-06-271-0/+33
|\ | | | | Object storage
| * move to stream based IObjectStore interface, rearrange & reformat codeJörn Friedrich Dreyer2014-06-201-8/+4
| |
| * fix rebase, use 'object::user:<username>' or 'object::store:<storageid> as ↵Jörn Friedrich Dreyer2014-06-181-2/+7
| | | | | | | | storage id, by default use container/bucket name for storageid, make storageid configurable, store user only for HomeObjectStoreStorage, change updateObject() to writeObject()
| * change architecture from inheritance to compositionJörn Friedrich Dreyer2014-06-181-0/+32
| |
* | Prevent loadApps on upgradeVincent Petry2014-06-181-0/+9
|/ | | | | | Moved OC::needUpgrade() to OCP\Util::needUpgrade() to make it accessible form the router. Moved maintenance + upgrade check to the router.
* also handle lowercase headersBernhard Posselt2014-06-111-22/+22
|
* handle http accept headers more gracefullyBernhard Posselt2014-06-111-0/+24
|
* Merge pull request #4553 from owncloud/update_search_classesVincent Petry2014-06-064-0/+177
|\ | | | | Update search classes
| * make search non-static, add ISearch to server container, make legacy a ↵Jörn Friedrich Dreyer2014-06-064-0/+177
| | | | | | | | static wrapper for it, move provider and result to public api
* | remove controller serializersBernhard Posselt2014-06-052-47/+3
|/
* remove file locking - code will continue to live in it's own appThomas Müller2014-06-041-63/+0
|
* Move Lock to private namespace, add interface. Update PHPDoc.ringmaster2014-06-041-253/+6
|
* Removed unused vars/declarations, update PHPDoc.ringmaster2014-06-041-2/+1
|
* Add actual locking and log changes necessary for debugging.ringmaster2014-06-041-25/+242
|
* Continued flock work.ringmaster2014-06-042-4/+49
|
* flock changes. Work in progress.ringmaster2014-06-043-0/+96
|
* add OCP\Config:deleteSystemValueMorris Jobke2014-06-021-0/+10
|
* Fix PHPDocLukas Reschke2014-06-011-9/+1
| | | | - Remove not anymore existing parameters - Fix typo
* Add $storage->instanceOfStorage to handle instanceof for storage wrappersRobin Appelman2014-05-291-0/+8
|
* Merge pull request #8136 from owncloud/contactsmanager-registerBart Visscher2014-05-272-4/+3
|\ | | | | Implement the register function of OC\ContactsManager
| * no return on register and unregisterThomas Müller2014-05-191-2/+2
| |