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
path: root/lib
AgeCommit message (Collapse)Author
2015-04-12Add "Reply-To" support for sharing notificationsLukas Reschke
Very hacky backport of https://github.com/owncloud/core/pull/15541 - I changed the code path to use OC_Mail instead the OCP pendant since I didn't want to modify the public API. (OCP\Util::sendMail() is anyways deprecated with 8.1)
2015-04-10fixes #15326Jörn Friedrich Dreyer
2015-04-07When guessing the timezone, the offset might only be valid on a given timestampJoas Schilling
2015-04-07Fix the exception messagesJoas Schilling
2015-03-27Merge pull request #15246 from owncloud/stable8-share-partfilepermissionsMorris Jobke
[stable8] Fix share permission checks
2015-03-27Merge pull request #15249 from owncloud/fix_group_share_oc8_backportMorris Jobke
also call generateTarget for group shares
2015-03-27Merge pull request #14497 from owncloud/kill-substr-mssql-stable8Lukas Reschke
[stable8] Remove hacky Substring support for MSSQL
2015-03-27also call generateTarget for group share to add the correct prefix if ↵Bjoern Schiessle
share_folder is defined in config.php
2015-03-27Fix permission checks in Sabre connectorVincent Petry
This fixes moving files in and out of shared folders with some exotic permission combinations.
2015-03-26SQLite autoincrement fix backportVincent Petry
Add custom sqlite platform to set auto increment Add repair step to fix SQLite autoincrement Force Doctrine to generate alter table SQL statements for SQLite to make sure the code from OCSqlitePlatform is triggered.
2015-03-26Merge pull request #15193 from owncloud/stable8-15145Vincent Petry
Stable8: 15145
2015-03-26Merge pull request #14914 from ↵Vincent Petry
owncloud/backport-14766-compare-array-insertifnotexists [Stable8] Backport 14766 compare array insertifnotexists
2015-03-26Merge pull request #15192 from owncloud/stable8-15153Lukas Reschke
Stable8: Add `getNonExistingName()` to the node api
2015-03-26Merge pull request #15208 from owncloud/fix-15146-stable8Thomas Müller
Do not use APCu when apc.enabled is Off.
2015-03-26Merge pull request #15052 from rullzer/backport-15025Vincent Petry
[stable8] Backport of #15025: OCS Respect enforced date
2015-03-26Do not use APCu when apc.enabled is Off.Andreas Fischer
2015-03-25Properly catch whether a share is `null`Lukas Reschke
Despite it's PHPDoc the function might return `null` which was not properly catched and thus in some situations the share was resolved to the sharing users root directory. To test this perform the following steps: * Share file in owncloud 7 (7.0.4.2) * Delete the parent folder of the shared file * The share stays is in the DB and the share via the sharelink is inaccessible. (which is good) * Upgrade to owncloud 8 (8.0.2) (This step is crucial. The bug is not reproduceable without upgrading from 7 to 8. It seems like the old tokens are handled different than the newer ones) * Optional Step: Logout, Reset Browser Session, etc. * Access the share via the old share url: almost empty page, but there is a dowload button which adds a "/download" to the URL. * Upon clicking, a download.zip is downloaded which contains EVERYTHING from the owncloud directory (of the user who shared the file) * No exception is thrown and no error is logged. This will add a check whether the share is a valid one and also adds unit tests to prevent further regressions in the future. Needs to be backported to ownCloud 8. Adding a proper clean-up of the orphaned shares is out-of-scope and would probably require some kind of FK or so. Fixes https://github.com/owncloud/core/issues/15097
2015-03-25Add `getNonExistingName()` to the node apiRobin Appelman
2015-03-23Remove hard dependency on cURL for 8.0Lukas Reschke
This removes the recently introduced hard dependency on cURL for 8.0, for 8.1 it will still stay there. Instead a warning will now be shown to the user asking to install the PHP cURL extension within the administrative interface of ownCloud.
2015-03-20Add unit tests for gc() for \OC\Cache\FileGlobalGCRobin McCorkell
2015-03-20Fix fileglobalgc unlink parameter warningsRobin McCorkell
2015-03-20Backport of #15025Roeland Jago Douma
When the expiration date is enforced respect this - Make sure that we do not allow removing of the expiration date when this is enforced in the settings. - Added unit test
2015-03-18add timeout to curl requestBjoern Schiessle
2015-03-16Also add a note that clob does not work in the compare arrayJoas Schilling
Conflicts: lib/private/appframework/db/db.php
2015-03-16The key is over configkey, user and app, not the valueJoas Schilling
stupid me :(
2015-03-16Properly forward repair errors and warningsVincent Petry
This makes repair errors and warnings visible for the user when upgrading on the command line or in the web UI.
2015-03-16Do not abort when meeting unfixable legacy storagesVincent Petry
2015-03-16validate resource's integrity before using itGeorg Ehrke
2015-03-16Also use all keys for an empty array, just in caseJoas Schilling
2015-03-16Throw a RuntimeException in the cache aswellJoas Schilling
2015-03-16Fix doc blocks of insertIfNotExists() methodJoas Schilling
Conflicts: lib/private/appframework/db/db.php
2015-03-16let insertIfNotExist() throw the native DBALException - no need to hide the ↵Thomas Müller
real exception
2015-03-16Get the id before using itJoas Schilling
2015-03-16Better save then sorryJoas Schilling
2015-03-16insertIfNotExists() for storage insertionJoas Schilling
2015-03-16Only check unique keys for the comparison on filecache insert & update otherwiseJoas Schilling
2015-03-16Allow specifying the compare-array for insertIfNotExists()Joas Schilling
Conflicts: lib/private/appframework/db/db.php
2015-03-12Add cURL as hard-dependencyLukas Reschke
It is required by other functionalities such as S2S anyways and ownCloud will fail hard at a lot of places without it.
2015-03-11Merge pull request #14763 from owncloud/backport-14429Morris Jobke
Etc timezones don't exist for .5 and .75 offsets
2015-03-11Merge pull request #14514 from owncloud/stable8-tagmanager-nouserMorris Jobke
[stable8] Return null when requesting tags for null user
2015-03-11Merge pull request #14801 from owncloud/backport-13839Morris Jobke
[stable8] Extract the remote host from user input in share dropdown
2015-03-11Merge pull request #14632 from owncloud/backport/14593Morris Jobke
Backport/14593
2015-03-11Merge pull request #14669 from owncloud/enc-migrate-disable-updater-stable8Morris Jobke
[stable8] Disable the cache updater when doing the encryption migration
2015-03-11Merge pull request #14686 from owncloud/backport-14682Morris Jobke
Backport 14682
2015-03-11Merge pull request #14698 from owncloud/backport-14550Morris Jobke
[stable8] fix warning in gc
2015-03-11Merge pull request #14760 from owncloud/backport-14713Morris Jobke
Check whether the file id is valid, before using it to delete the previe...
2015-03-11Merge pull request #14756 from owncloud/backport-14750Morris Jobke
[stable8] proper filename for "require version.php"
2015-03-11Extract the remote host from user input in share dropdownJoas Schilling
Fix #13678
2015-03-09Etc timezones don't exist for .5 and .75 offsetsJoas Schilling
2015-03-09Check whether the file id is valid, before using it to delete the previewsJoas Schilling