Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make path absolute | Jörn Friedrich Dreyer | 2014-12-10 | 1 | -2/+4 |
| | |||||
* | Don't keep the full info of all children in memory | Robin Appelman | 2014-09-24 | 1 | -7/+12 |
| | |||||
* | Fix typo | Lukas Reschke | 2014-09-08 | 1 | -1/+1 |
| | |||||
* | Use bigger transactions when doing explicit file system scans | Robin Appelman | 2014-09-08 | 1 | -2/+21 |
| | |||||
* | Improved scanner error message | Martin | 2014-07-31 | 1 | -1/+1 |
| | |||||
* | remove unused argument | Robin Appelman | 2014-06-10 | 1 | -3/+2 |
| | |||||
* | add some comments | Robin Appelman | 2014-06-10 | 1 | -0/+2 |
| | |||||
* | Repair broken parent link in the scanner | Robin Appelman | 2014-06-10 | 1 | -34/+36 |
| | |||||
* | Merge pull request #8889 from owncloud/mtime-reuse | Thomas Müller | 2014-06-05 | 1 | -0/+1 |
|\ | | | | | Don't update the mtime if the storage mtime hasn't changed | ||||
| * | Don't update the mtime if the storage mtime hasn't changed | Robin Appelman | 2014-06-05 | 1 | -0/+1 |
| | | |||||
* | | Merge pull request #8852 from owncloud/kill-permissions-master | Thomas Müller | 2014-06-05 | 1 | -9/+1 |
|\ \ | |/ |/| | Kill permissions table | ||||
| * | - drop permissions table and related code | Thomas Müller | 2014-06-05 | 1 | -9/+1 |
| | | | | | | | | | | | | - the file/folder's permission is now stored in the file cache - BackGroundWatcher has been removed - this has meanwhile be replaced by occ files:scan which can be executed in a cron jobs - increase version to trigger database migration | ||||
* | | Fix size calculation during recursive scan | Robin Appelman | 2014-06-03 | 1 | -7/+3 |
| | | |||||
* | | Fix recursive scanning | Robin Appelman | 2014-06-02 | 1 | -3/+5 |
| | | |||||
* | | propagate changes in the scanner | Robin Appelman | 2014-06-02 | 1 | -0/+1 |
| | | |||||
* | | Split of cache writes in the scanner to their own methods | Robin Appelman | 2014-06-02 | 1 | -39/+43 |
|/ | |||||
* | Merge pull request #8607 from owncloud/filescan_app_hook | Owen Winkler | 2014-05-30 | 1 | -8/+42 |
|\ | | | | | Allow apps to control via a hook skipping add/remove a file during filescan | ||||
| * | Missed one. | ringmaster | 2014-05-30 | 1 | -1/+1 |
| | | |||||
| * | Updates per comments on PR: | ringmaster | 2014-05-30 | 1 | -6/+20 |
| | | | | | | | | | | | | * Use "filesystem_cache_readonly" config setting, update comment in config.sample * Use $this->cacheActive to cache config setting * Add public Scanner::setCacheActive() to set $cacheActive programmatically | ||||
| * | Prevent apps from affecting the scanner via hook. | ringmaster | 2014-05-28 | 1 | -16/+18 |
| | | |||||
| * | Use 'filesystem_check_enable' as a config option. | ringmaster | 2014-05-27 | 1 | -4/+4 |
| | | |||||
| * | Allow the default behavior to come from the config. | ringmaster | 2014-05-27 | 1 | -6/+12 |
| | | |||||
| * | Rename variable to something more appropriate. | ringmaster | 2014-05-27 | 1 | -3/+3 |
| | | |||||
| * | Allow apps to control via a hook to skip adding/removing a file during filescan | ringmaster | 2014-05-27 | 1 | -3/+15 |
| | | |||||
* | | Change visibility of scanner internals | ringmaster | 2014-05-28 | 1 | -4/+4 |
|/ | | | | so that descendant classes can access them. | ||||
* | Remove all occurences of @brief and @returns from PHPDoc | Morris Jobke | 2014-05-19 | 1 | -1/+1 |
| | | | | * test case added to avoid adding them later | ||||
* | Fix all PHPDoc types and variable names, in /lib | Robin McCorkell | 2014-05-13 | 1 | -1/+1 |
| | |||||
* | Fix @return array PHPDocs, in /lib | Robin McCorkell | 2014-05-13 | 1 | -3/+3 |
| | |||||
* | Prevent error if previously cached data doesn't have an etag | Robin Appelman | 2014-04-22 | 1 | -3/+4 |
| | |||||
* | Check if fields we need are actually set to prevent errors | Robin Appelman | 2014-03-03 | 1 | -1/+1 |
| | |||||
* | Allow re-using already known fileinfo when calculating folder sizes | Robin Appelman | 2014-02-28 | 1 | -3/+5 |
| | |||||
* | Use storage_mtime when determining if we can reuse cached data while scanning | Robin Appelman | 2014-01-14 | 1 | -1/+1 |
| | |||||
* | reuse etags when doing a background scan | Robin Appelman | 2013-12-05 | 1 | -1/+1 |
| | |||||
* | Add post hooks for filesystem scanner | Robin Appelman | 2013-11-07 | 1 | -0/+5 |
| | |||||
* | set log level to DEBUG | Thomas Müller | 2013-11-04 | 1 | -2/+4 |
| | |||||
* | using array_diff_assoc to detect diffs in values as well | Thomas Müller | 2013-10-25 | 1 | -1/+1 |
| | |||||
* | log the data arrays | Thomas Müller | 2013-10-24 | 1 | -1/+3 |
| | |||||
* | some logging added .... | Thomas Müller | 2013-10-24 | 1 | -2/+11 |
| | |||||
* | Catch duplicate insertion errors while scanning files | Vincent Petry | 2013-10-23 | 1 | -9/+27 |
| | | | | | | | | | | | | | | | | When two scanning processed run at the same time, for example when scan.php and list.php were called at the same time on an external storage mountpoint, duplicate insertion errors can occurs. These errors are now logged and ignored. Since both scans are running in parallel transactions, they don't see each other's changes directly in the DB which can cause duplicate insertion errors for mime types as well, but those mime types can't be selected yet. The solution to this is to force-reload the mimetypes list after the transaction is finished. Fixes #5199 | ||||
* | move the private namespace OC into lib/private - OCP will stay in lib/public | Thomas Müller | 2013-09-30 | 1 | -0/+258 |
Conflicts: lib/private/vcategories.php |