Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-06-13Extract toggle visibility of a SystemTagsInfoView to its own viewDaniel Calviño Sánchez
The SystemTagsInfoViewToggleView is a basic view that renders a label that, when clicked, toggles the visibility of an associated SystemTagsInfoView. In order to keep the view parent agnostic its attachment and detachment to/from the MainfFileInfoView is done in the FilesPlugin. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2017-04-25Remove DOMPurify from srcFilesLukas Reschke
It is already included via core.json Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-04-18JS tests for upload only functionArtur Neumann
Signed-off-by: Artur Neumann <info@individual-it.net>
2017-03-24Update karma, use sinon from npmVincent Petry
Update karma library and use sinon JS library provided by karma-jasmine-sinon instead of local file. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-01-13Apply DOMPurify over HTMLLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2017-01-13Fix JSUnit testsMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-01-13fix image warningsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2017-01-13allow/fix loading of fontsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2017-01-10show fewer warnings in karma test runsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2017-01-06Fix js testsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2016-11-09Generate js codecov coverageRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2016-11-07refactor share permission logic into own method to reuse it for the share tabChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2016-02-09Add system tags filter section for files appVincent Petry
2016-02-03Reset comments read marker after loading commentsVincent Petry
2016-02-03Add file row indicator for unread commentsVincent Petry
2016-02-02Added JS unit tests for commentsVincent Petry
2016-01-19Added system tags GUI in sidebarVincent Petry
Added files details sidebar panel to assign/unassign/rename/delete system tags.
2015-12-03Merge branch 'master' into issue_20427Jesus Macias Portela
2015-11-22Added OC.Files.Client Webdav-based files clientVincent Petry
2015-11-20Added some unit tests for the status managerVincent Petry
2015-09-16Update JS unit tests for share dialog (WIP)Vincent Petry
2015-09-03Add versions tab to files sidebarVincent Petry
- move versions to a tab in the files sidebar - added mechanism to auto-update the row in the FileList whenever values are set to the FileInfoModel given to the sidebar - updated tags/favorite action to make use of that new mechanism
2015-07-10Update JS unit test libsVincent Petry
Update sinon to 1.15.4. Update karma-jasmine to 0.3.0 Update jasmine to 2.3.4 This brings a bunch of new useful functions for unit testing.
2015-05-19Added unit tests for download URL in public sharing pageVincent Petry
2015-03-12Use storage id + appframework for ext storage CRUDVincent Petry
- Added StorageConfig class to replace ugly arrays - Implemented StorageService and StorageController for Global and User storages - Async status checking for storages (from Xenopathic) - Auto-generate id for external storage configs (not the same as storage_id) - Refactor JS classes for external storage settings, this mostly moves/encapsulated existing global event handlers into the MountConfigListView class. - Added some JS unit tests for the external storage UI
2015-02-23Added unit test for app filterVincent Petry
2015-01-21Add unit test for external share JS dialogVincent Petry
Moved external share JS code into a small plugin to make it testable. Added unit test for the external share dialog logic + ajax calls.
2014-11-04migrate jQuery to bowerMorris Jobke
2014-11-03replace moment.js with bower versionMorris Jobke
* fix JS unit tests
2014-09-15Add timeout to user and group deletion notificationVincent Petry
Added timeout in DeleteHandler to auto-delete after a delay. Fixed issue where OC.Notification.hide() was called twice in a row when deleting multiple entries, causing the second notification to disappear. Fixed issue where "undo" click event handler was registered multiple times when calling setNotifications() twice. Added JS unit tests for the DeleteHandler class. Refix undo users, groups feature Timeout is now cleared in cancel(). Fixed click handler name for "undo" to be able to work with multiple DeleteHandler instances (in our case one for users and one for groups) so that there is no conflict.
2014-06-24Test runner now loads CSS and hides testAreaVincent Petry
- serve CSS and font files properly to make sure that measurements are correct for the tests that need them (breadcrumb) - added opacity to testArea to make sure nothing is visible during testing
2014-06-17Added JS unit tests for ext storageVincent Petry
Added JS unit tests for the external storage file list extension.
2014-06-02Added unit tests for share.js and share iconVincent Petry
2014-05-30Sharing overview fixes and unit testsVincent Petry
- Fixed renaming and fileActionsReady event - Added unit tests for shares list - Fixed public page with defer - Fixed file actions in sharing overview - Fixed sharing counterpart list (10 entries max) - Fixed file path attribute to be used in download action - Fix sharing list headers - OC.Share icons now operate on fileList instance - Fix OC.Share.updateIcon when more than one list in DOM
2014-05-15Namespacing for FileList, FileActions and trashbin appVincent Petry
- 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
2014-04-11Remove annoying karma 404 warnings for imagesVincent Petry
Karma now serves images from core to avoid polluting the logs with a lot of 404 warnings. This also makes it easier to read the test errors during development.
2014-04-08Enable autowatch for karmaVincent Petry
This way unit tests can be run in multiple browsers with the command line and tests will re-run automatically when files are changed.
2014-01-30Fixed unit test scripts + coverageVincent Petry
Tried to add more apps (others break). "preprocessors" is now populated automatically based on the tested apps.
2014-01-21adding code coverage supportThomas Müller
2014-01-16Added Javascript unit testsVincent Petry
- 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