aboutsummaryrefslogtreecommitdiffstats
path: root/lib/composer
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1338 from nextcloud/fix-trashbin-errorsRoeland Jago Douma2016-09-132-0/+2
|\ | | | | Opening the trashbin causes errors in log for files without preview
| * Opening the trashbin causes errors in log for files without previewMorris Jobke2016-09-092-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * put a file without a generated preview in the trashbin (e.g. a *.docx file) * open the trashbin * following errors will show up in the nextcloud.log: - filesize(): stat failed for ... - fopen(...): failed to open stream: No such file or directory at ... - fread() expects parameter 1 to be resource, boolean given at ... - fclose() expects parameter 1 to be resource, boolean given at ... - imagecreatefromstring(): Empty string or invalid image at ... This is because the preview code tries to load an SVG image, which is obviously only text. The fix simply handles this before the loading happens and the web UI keeps showing the default mimetype icon.
* | add updated composer autoloader codeMorris Jobke2016-09-121-5/+7
|/
* more efficient querying of numeric storage idsRobin Appelman2016-09-072-0/+2
|
* Fix autoloaderRoeland Jago Douma2016-09-062-0/+6
|
* Update autoloaderRoeland Jago Douma2016-09-052-0/+2
|
* Autoloader updateRoeland Jago Douma2016-09-042-0/+2
|
* Autoloader updateRoeland Jago Douma2016-08-262-2/+0
|
* Merge pull request #969 from nextcloud/allow-to-validate-operationsLukas Reschke2016-08-212-0/+2
|\ | | | | Allow to validate operations
| * update composer listJoas Schilling2016-08-192-0/+2
| |
* | Update autoloaderRoeland Jago Douma2016-08-182-2/+0
|/
* Add ChangePasswordController to autoloaderRoeland Jago Douma2016-08-172-2/+2
|
* Update autoloaderRoeland Jago Douma2016-08-177-150/+78
|
* Update with robinJoas Schilling2016-07-216-0/+6
|
* Fix othersJoas Schilling2016-07-217-6/+138
|
* Use classmap to load core filesRoeland Jago Douma2016-07-187-125/+1496
| | | | | | We can't use an authoritive classmap in the current state as it would kill app loading. However we can use a proper classmap for the normal core stuff.
* Update license headersLukas Reschke2016-05-266-12/+112
|
* Move OC\Core and OC\Settings to composer autoloaderLukas Reschke2016-04-052-1/+3
|
* Allos OCP classes to be PSR-4 as wellRoeland Jago Douma2016-03-221-0/+1
| | | | | This adds the OCP namespace to the composer autoloader as well. This means that now we can use proper PSR-4 filenames in OCP.
* Add composers default autoloader to coreRoeland Jago Douma2016-03-098-0/+515
This introduces the defacto standard PSR-4 autoloader from composer into core. This will allow proper PSR-4 naming of our classes. Since our original autoloader is still available we can slowly switch over classes to PSR-4.