summaryrefslogtreecommitdiffstats
path: root/apps/files/tests/js/filesSpec.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix usage of deprecated OC.webrootChristoph Wurst2018-10-091-3/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add ignore_files to config,Felix Heidecke2017-03-201-1/+3
| | | | | | | | | | | | | | | | test files against ignore_files list on upload fix typo and indentation Move blacklist declaration to lib/public/Files/FileInfo.php, Rename *ignored to *blacklisted Mocked blacklist_files for testing Mocked blacklist_files for testing Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Make files app use Webdav for most operationsVincent Petry2015-11-221-3/+3
|
* Fix file action download spinnerVincent Petry2015-10-301-0/+52
|
* fixing js unit testsThomas Müller2015-03-091-10/+0
|
* Namespacing for FileList, FileActions and trashbin appVincent Petry2014-05-151-14/+3
| | | | | | | | | | | | | | | | | - FileList is now an instantiable class - FileActions is now in namespace - added App class for trashbin app - moved trashbin overrides into classes extending FileList - replaced many static calls with "this." or "self." to make the classes reusable/extendable - new URL parameter "view" to specify which view is shown, for example "files" or "trashbin" - added OC.Util.History utility class in core for handling history - moved URL handling/routing to OCA.Files.App - popstate will correctly update the current view and notify the view of the URL change so it can update the current dir - added JS unitt tests for the trashbin app - fixed public app to work with the new namespaces
* Fix file selection for infinite scrollingVincent Petry2014-04-281-1/+27
| | | | | | | - moved file selection code to FileList - fix selection summary when all files are selected - nextPage now auto-selects files if "select all" checkbox is checked - fixed trashbin to use the same selection logic as FileList
* we no longer need to handle the Shared folder different from any other folderBjoern Schiessle2014-04-231-35/+0
|
* don't allow to create a file or folder named 'Shared' in the root folder, ↵Bjoern Schiessle2014-03-051-0/+35
| | | | also exclude all combinations of lower and upper case letters
* Fixed file name validation unit test + added newlineVincent Petry2014-01-301-0/+1
| | | | | - fixed file name validation unit test - added "\n" as forbidden character in isFileNameValid()
* Added .jshintrcVincent Petry2014-01-301-2/+5
| | | | | | - Also fixes a few JSHint warnings in files app - Added "global" comment on top of files app to suppress warning and also inform devs about what globals are use
* Added Javascript unit testsVincent Petry2014-01-161-0/+81
- added karma utility to run jasmine unit tests - added Sinon library (for stubs/mocks/fakeserver) - added a few unit tests for core and files - added autotest-js.sh script