aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/legacy
Commit message (Expand)AuthorAgeFilesLines
* fix: make core application bootstrapable by coordinatorchore/refactor-coreFerdinand Thiessen2025-06-021-0/+2
* feat(IUser): add `getQuotaBytes` method to get machine readable quotafeat/user-get-quota-bytesFerdinand Thiessen2025-05-222-2/+2
* chore: deprecate `OC_Helper::isReadOnlyConfigEnabled`chore/depreate-oc-helper-roFerdinand Thiessen2025-05-172-2/+4
* Merge pull request #52890 from nextcloud/chore/move-stream-copy-implementationFerdinand Thiessen2025-05-171-23/+2
|\
| * chore: move streamCopy implementation from `OC_Helper` to `OCP\Files`Ferdinand Thiessen2025-05-161-23/+2
* | chore!: remove legacy functions from `OC_Helper` deprecated before v10Ferdinand Thiessen2025-05-161-101/+4
* | chore: deprecate OC_Helper::copyrchore/deprecate-ochelper-copyrFerdinand Thiessen2025-05-161-1/+2
|/
* chore: move implementation to non-deprecated OCP\Util from OC_Helperchore/move-impl-utilFerdinand Thiessen2025-05-161-48/+14
* chore!(\OCP\Files): remove deprecated static `getStorage` methodchore/remove-get-storageFerdinand Thiessen2025-05-151-22/+0
* Merge pull request #52812 from nextcloud/chore/oc-helper-rmdirrJohn Molakvoæ2025-05-141-29/+2
|\
| * chore: move implementation from OC legacy to OCP\Fileschore/oc-helper-rmdirrFerdinand Thiessen2025-05-141-29/+2
* | Merge pull request #52801 from nextcloud/chore/oc-helper-filesizeFerdinand Thiessen2025-05-142-54/+5
|\ \
| * | chore: replace leagcy OC_Helper calls with OCP\Utilchore/oc-helper-filesizeFerdinand Thiessen2025-05-142-54/+5
| |/
* / chore: deprecate \OC_Helper::canExecutechore/oc-helper-can-execFerdinand Thiessen2025-05-141-0/+1
|/
* fix: Deprecate OC_User methods related to user backendsCôme Chilliet2025-04-101-18/+12
* fix: add more details in documented alternativesfeat/cleanup-oc-util-methodsCôme Chilliet2025-04-081-4/+4
* chore(legacy): Flag methods as deprecated, with appropriate replacementCôme Chilliet2025-04-071-34/+36
* chore(legacy): Remove unused protected method in OC_UtilCôme Chilliet2025-04-071-4/+0
* chore(legacy): Officially deprecate OC_Util and remove non-static methodsCôme Chilliet2025-04-071-84/+3
* chore(legacy): Remove deprecated OC_Util::addScript and functions depending o...feat/cleanup-oc-utilCôme Chilliet2025-04-011-63/+0
* fix: Move getAppInstalledVersions to AppConfig so that it can be used earlierfix/add-getappversions-replacementCôme Chilliet2025-03-251-10/+3
* feat: Add a replacement for OC_App::getAppVersions is IAppManagerCôme Chilliet2025-03-251-2/+2
* chore: Move template functions out of legacy folderCôme Chilliet2025-03-201-320/+0
* fix: Remove multiple require_once calls for template functionsCôme Chilliet2025-03-201-2/+0
* fix: skip caching lastSeenQuotaUsage for remote sharesbug/noid/skip-quote-cache-for-remote-sharesDaniel Kesselberg2025-03-141-2/+9
* fix: Replace all usage of OC_Template by the new APICôme Chilliet2025-03-061-1/+1
* fix: Add missing ITemplate interface and clean code in Template classCôme Chilliet2025-03-061-2/+1
* fix: Deprecate OC_Template, add proper template manager insteadCôme Chilliet2025-03-061-297/+13
* fix: incorrect types detected by updated stubschore/update-stubFerdinand Thiessen2025-02-271-3/+3
* fix: Fix false-positive psalm taint errors when outputting plain textCôme Chilliet2025-02-171-2/+10
* chore: Correctly flag json encoding methods as escaping html and quotesCôme Chilliet2025-02-171-2/+3
* fix: Replace getInstalledApps calls with getEnabledAppsfix/clarify-app-manager-methodsCôme Chilliet2025-02-131-1/+1
* fix(util): Correctly create Reflection of method for PHP 8.3+Joas Schilling2024-11-081-1/+6
* fix(OpenAPI): Adjust array syntax to avoid ambiguitiesfix/openapi/array-syntaxprovokateurin2024-11-051-1/+1
* fix(appmanager): Fix tainted file path when loading appinfosbugfix/noid/fix-tainted-file-appinfoJoas Schilling2024-10-141-2/+3
* fix(Auth): ignore missing token when trying to set password-unconfirmablefwdport/48445/masterArthur Schiwon2024-10-011-6/+14
* chore: Drop unused legacy `OC_Files`Ferdinand Thiessen2024-09-281-428/+0
* chore(legacy): Introduce public version ct plass and drop version methods fro...clean/version-ocpJulius Knorr2024-09-202-86/+7
* chore: Add proper deprecation dates where missingFerdinand Thiessen2024-09-204-13/+13
* chore: Remove old travis related stuffFerdinand Thiessen2024-09-191-2/+1
* chore(deps): Update nextcloud/coding-standard to v1.3.1provokateurin2024-09-199-27/+27
* refactor(OC_Template): Remove deprecated ILoggerFerdinand Thiessen2024-09-191-8/+9
* refactor(OC_Files): Remove deprecated ILoggerFerdinand Thiessen2024-09-191-7/+9
* refactor(OC_Util): Remove deprecated ILoggerFerdinand Thiessen2024-09-191-2/+2
* refactor(OC_Hook): Remove deprecated ILoggerFerdinand Thiessen2024-09-191-1/+4
* refactor(OC_App): Remove ILogger usageFerdinand Thiessen2024-09-191-13/+15
* fix: Remove legacy settings formschore/remove-legacy-settings-forsFerdinand Thiessen2024-09-171-28/+4
* fix(Files): Handle getOwner() returning falsefix/storage/get-owner-falseprovokateurin2024-09-171-2/+1
* chore: Replace DI alias with real classchore/remove-deprecated-aliasesFerdinand Thiessen2024-09-171-3/+4
* fix: Do not try to set HTTP response code on already closed connectionCôme Chilliet2024-09-141-1/+2