Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-01-08Add \OC\TempManager to handle creating and cleaning temporary filesRobin Appelman
Conflicts: lib/private/server.php lib/public/iservercontainer.php
2014-11-20Backport \OC\Security\Crypto to ownCloud 7Lukas Reschke
Conflicts: lib/repair/repairconfig.php
2014-11-05fix typo in content typeBernhard Posselt
2014-11-05Support HTML in logo claimLukas Reschke
2014-10-09Expose getAppKeys trough \OCP\IConfigRobin Appelman
2014-10-02Merge pull request #11299 from owncloud/barkport-10934Lukas Reschke
[stable7] Don't complain about non-writable datadirs before we're installed
2014-09-30Inject config into checkserver and cleanup testsRobin Appelman
Conflicts: lib/private/util.php
2014-10-01some small fixesBjoern Schiessle
2014-10-01mark exclude list as deprecated. It neither used by the files app nor by theBjoern Schiessle
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.
2014-09-26Expose creatable permissions trough fileinfoRobin Appelman
2014-09-23Do only follow HTTP and HTTPS redirectsLukas Reschke
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
2014-08-31update public interface for getUserFolderMorris Jobke
2014-08-26Expose setSystemValueLukas Reschke
2014-08-14we need the recipient as a additional parameter to know for which share the ↵Bjoern Schiessle
notification was send
2014-08-10Add group management to the public apiRobin Appelman
2014-08-06Add ability to theme iOS and Android client URLs just like desktop URLs.scolebrook
* added to personal settings page. * fix uppercase issue * remove escaping because it's unneeded
2014-08-05don't display share permission if resharing was disabled by the adminBjoern Schiessle
2014-07-30Fix template rendering for 'blank' templatesMorris Jobke
2014-07-28add OCS api call to set expire date for link sharesBjoern Schiessle
2014-07-24- adding default value for $recoveryPasswordThomas Müller
- set password correctly in lost password
2014-07-14Expose the user manager in the public server containerRobin Appelman
2014-07-14Add public interfaces for User, UserManager and UserSessionRobin Appelman
2014-07-08Adding new interface \OCP\Activity\IExtentsionThomas Müller
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
2014-07-04introduce and use getCurrentConnection()Jörn Friedrich Dreyer
2014-07-02Merge pull request #9329 from owncloud/sharing_check_targetVincent Petry
don't move a share mount point into a different mount point
2014-07-01add a explicit interface for the home storageBjoern Schiessle
2014-07-01Detect removed public sharesRobin Appelman
2014-06-30Add StorageNotAvailableExceptionRobin Appelman
2014-06-27Merge pull request #8383 from owncloud/object_storageVincent Petry
Object storage
2014-06-20move to stream based IObjectStore interface, rearrange & reformat codeJörn Friedrich Dreyer
2014-06-18fix rebase, use 'object::user:<username>' or 'object::store:<storageid> as ↵Jörn Friedrich Dreyer
storage id, by default use container/bucket name for storageid, make storageid configurable, store user only for HomeObjectStoreStorage, change updateObject() to writeObject()
2014-06-18change architecture from inheritance to compositionJörn Friedrich Dreyer
2014-06-18Prevent loadApps on upgradeVincent Petry
Moved OC::needUpgrade() to OCP\Util::needUpgrade() to make it accessible form the router. Moved maintenance + upgrade check to the router.
2014-06-11also handle lowercase headersBernhard Posselt
2014-06-11handle http accept headers more gracefullyBernhard Posselt
2014-06-06Merge pull request #4553 from owncloud/update_search_classesVincent Petry
Update search classes
2014-06-06make search non-static, add ISearch to server container, make legacy a ↵Jörn Friedrich Dreyer
static wrapper for it, move provider and result to public api
2014-06-05remove controller serializersBernhard Posselt
2014-06-04remove file locking - code will continue to live in it's own appThomas Müller
2014-06-04Move Lock to private namespace, add interface. Update PHPDoc.ringmaster
2014-06-04Removed unused vars/declarations, update PHPDoc.ringmaster
2014-06-04Add actual locking and log changes necessary for debugging.ringmaster
2014-06-04Continued flock work.ringmaster
2014-06-04flock changes. Work in progress.ringmaster
2014-06-02add OCP\Config:deleteSystemValueMorris Jobke
2014-06-01Fix PHPDocLukas Reschke
- Remove not anymore existing parameters - Fix typo
2014-05-29Add $storage->instanceOfStorage to handle instanceof for storage wrappersRobin Appelman
2014-05-28Merge pull request #8136 from owncloud/contactsmanager-registerBart Visscher
Implement the register function of OC\ContactsManager
2014-05-22allow admin to disable sharing for specific groups of usersBjoern Schiessle
2014-05-19no return on register and unregisterThomas Müller