| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
|
| |
|
|
|
|
|
|
| |
This enforces proper types on POST and GET arguments where I considered it sensible. I didn't update some as I don't know what kind of values they would support :see_no_evil:
Fixes https://github.com/owncloud/core/issues/14196 for core
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
maintain deprecated \OC::$session when getting or setting the session via the server container or UserSession
restore order os OC::$session and OC::$CLI
remove unneded initialization of dummy session
write back session when $useCustomSession is true
log warning when deprecated app is used
|
|\
| |
| |
| |
| |
| |
| | |
Conflicts:
apps/files/ajax/rawlist.php
cron.php
ocs/v1.php
|
| | |
|
|/ |
|
|
|
|
|
|
|
|
| |
Previously, the storage statistics were always for the root dir.
This means that the upload button would always show the limit for the
root dir, even when uploading to a shared dir or external storage.
This fix adds a "dir" argument to getstoragestats.php.
|
| |
|
|
|
|
|
| |
when _ is left in namespace and files are named after their classes the autoloader will also find classes in the lib folder of an app
its magic!
|
|
|
|
|
|
|
| |
with storage stats
DRYing the code by using \OCA\files\lib\Helper::buildFileStorageStatistics()
now returning used space percent on each ajax call
|
|
logic to call it every 5 minutes
make use of visibility API/jquery-visibility to perform the ajax call only if the browser is visible/in use
|