summaryrefslogtreecommitdiffstats
path: root/core/js/tests
Commit message (Collapse)AuthorAgeFilesLines
* Improved JS L10N bundle merging + testsVincent Petry2016-03-011-0/+8
|
* Fix duplicate bogus share field when link sharing is not allowedVincent Petry2015-12-071-0/+1
| | | | | | | | | Whenever link share is not allowed, it was outputting a bogus sharing field which name would conflict with the regular sharing field. This fix makes sure that the bogus sharing field with "Resharing not allowed" message only appears when triggered by removed share permissions.
* Close the user menu when clicking it againJoas Schilling2015-11-061-2/+1
|
* Fix icon update to be more consistentVincent Petry2015-10-291-0/+7
| | | | Makes the details bar show the same icon as in the list.
* Merge pull request #20052 from owncloud/stable8.2-share-clicklinkfocusThomas Müller2015-10-261-0/+23
|\ | | | | [stable8.2] Fix share link focus on click
| * Fix share link focus on clickVincent Petry2015-10-261-0/+23
| | | | | | | | Clicking on the link share must focus and select it
* | Fix for broken ajax/share.php endpointRoeland Jago Douma2015-10-261-2/+4
|/ | | | | Even more code mess :( All tests pass again. But I'm really not happy with this endpoint.
* Merge pull request #19835 from owncloud/stable8.2-share-checkboxuniqueidsThomas Müller2015-10-201-33/+37
|\ | | | | [stable8.2] Fix DOM element ids in share dialog
| * Fix DOM element ids in share dialogVincent Petry2015-10-161-33/+37
| | | | | | | | | | | | | | | | - Rely on class names instead of global ids - When global ids are needed for label+checkbox, append the view id (cid) to the element's id This fixes the checkboxes when multiple sidebars exist in the DOM.
* | Add unit tests for sending e-mail for link sharesRoeland Jago Douma2015-10-142-10/+170
|/
* [admin] check for correct PHP memcached moduleMorris Jobke2015-10-061-6/+40
|
* Merge pull request #19553 from owncloud/properly_format_date_shareviewThomas Müller2015-10-051-8/+5
|\ | | | | Use DD-MM-YYYY consistently in share sidebar
| * Use DD-MM-YYYY consistently in share sidebarRoeland Jago Douma2015-10-041-8/+5
| | | | | | | | | | | | | | | | | | | | We used to display the response from the server. Which is in non ISO8601 format. Now this is weird since the datepickers shows us 'DD-MM-YYYY' once a date is chosen. Now use momentJS to properly format the date. * Unit tests updated
* | Do not remove linkshare if there is noneRoeland Jago Douma2015-10-051-0/+37
|/ | | | | | | | If the password is enforced we can't create a link share right away but just show the password field. Untoggling the link sharing should not try to remove the share. * Added unit test
* Merge pull request #19305 from owncloud/share-hasusersharesThomas Müller2015-09-241-0/+57
|\ | | | | Fix ShareItemModel.hasUserShares to only check shares of current item
| * Fix ShareItemModel.hasUserShares to only check shares of current itemVincent Petry2015-09-231-0/+57
| | | | | | | | | | | | | | | | The shares array is based on what the server returns and can contain share info for parent folders. hasUserShares is now fixed to ignore parent folders and only checks for shares on the current item.
* | Expiration date was always a stringVincent Petry2015-09-241-4/+4
|/
* Fix parsing int attributes from share.php responseVincent Petry2015-09-231-4/+46
| | | | | | | Sometimes the attributes returned by share.php are integers but packaged as strings. This fix makes sure that such attributes are parsed as integers
* Merge pull request #19008 from owncloud/jquery_avatar_testsThomas Müller2015-09-181-0/+240
|\ | | | | JS tests for jquery.avatar
| * Added js tests for jquery.avatarRoeland Jago Douma2015-09-141-0/+240
| | | | | | | | * Ceil avatar request size
* | Removed obsolete testsVincent Petry2015-09-161-76/+2
| |
* | Fix allow reshare for owner when sharing with self through groupVincent Petry2015-09-161-1/+1
| |
* | More unit tests for share dialogVincent Petry2015-09-162-373/+167
| |
* | Update JS unit tests for share dialog (WIP)Vincent Petry2015-09-163-1100/+1145
|/
* Add apps unit testVincent Petry2015-08-301-0/+48
|
* fix unit testsMorris Jobke2015-08-261-2/+2
|
* Make short versions of weekday/month names translatableHasso Tepper2015-08-211-0/+32
|
* Move remaining setupchecks to new fomatRoeland Jago Douma2015-08-181-2/+8
|
* Merge pull request #17975 from owncloud/settings_admin_warning_levelsJan-Christoph Borchardt2015-08-181-14/+97
|\ | | | | Settings admin warning levels
| * All setup messages are now properly typesRoeland Jago Douma2015-07-301-17/+88
| |
| * Allow setupchecks to specify a warning levelRoeland Jago Douma2015-07-301-2/+14
| |
* | Add setup check for reverse proxy header configurationRobin McCorkell2015-08-101-5/+61
| |
* | Merge pull request #17919 from rullzer/php_supported_checkThomas Müller2015-08-101-0/+17
|\ \ | | | | | | Display warning in security & setup warnings if php version is EOL
| * | Display warning in security & setup warnings if php version is EOLRoeland Jago Douma2015-07-291-0/+17
| | |
* | | Set momentJS locale to en during unit test runsVincent Petry2015-08-071-0/+2
| |/ |/|
* | tests for _parseTime with hex and empty stringsMorris Jobke2015-07-281-0/+2
| |
* | Fix parsing of sharetime as stringMorris Jobke2015-07-281-0/+14
|/ | | | | | | In some cases the ajax/share.php will return the share time as string. If this is the case it would get parsed completely wrong and cause the share dropdown to not work anymore. This change will properly cast the string to an interger and also fallback if this is not possible.
* Fix OC.joinPaths with empty argumentsVincent Petry2015-07-131-0/+4
| | | | | When empty arguments are given, the leading or trailing slash was not detected properly.
* Merge pull request #17559 from owncloud/js-joinpathsutilityMorris Jobke2015-07-101-0/+41
|\ | | | | Add OC.joinPaths for convenient path joining
| * More tests for joinPathsVincent Petry2015-07-101-0/+3
| |
| * Add OC.joinPaths for convenient path joiningVincent Petry2015-07-101-0/+38
| |
* | Update JS unit test libsVincent Petry2015-07-102-4290/+5949
|/ | | | | | | | 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.
* Javascript mimetype icon resolverRoeland Jago Douma2015-07-061-0/+151
| | | | | | | | | | | | | | | | | This makes it possible to retrieve the icon for mimetypes in javascript. It makes no additional queries to the server to retrieve the mimetype. * config/mimetypealiases.json added * mimetype.js: this is where the logic resides to convert from mimetype to icon url * mimetypelist.js: generated file with a list of mimetype mapping (aliases) and the list of icon files * ./occ maintenance:mimetypesjs : new command for occ to gernerate mimetypes.js * unit tests updated and still work * javascript tests added * theming support * folder of the theme is now present in javascript (OC.theme.folder)
* Align recommended settingsLukas Reschke2015-06-151-11/+29
| | | | | | This aligns the recommended setting with the max-age of `15768000` as described in our documentation. Furthermore it fixes some logical problems with the code, unit tests has been added as well. Fixes https://github.com/owncloud/core/issues/16673
* Properly format remote recipientsRoeland Jago Douma2015-05-271-3/+90
| | | | | | | * A list of recipients can now be properly formatted with remote shares. Before the shares where simply shown in full in the "Shared with others" section. * Unit tests updated and added
* Merge pull request #16565 from owncloud/add-urandom-checkThomas Müller2015-05-261-3/+19
|\ | | | | Add check for availability of /dev/urandom
| * Add check for availability of /dev/urandomLukas Reschke2015-05-261-3/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without /dev/urandom being available to read the medium RNG will rely only on the following components on a Linux system: 1. MicroTime: microtime() . memory_get_usage() as seed and then a garbage collected microtime for loop 2. MTRand: chr((mt_rand() ^ mt_rand()) % 256) 3. Rand: chr((rand() ^ rand()) % 256) 4. UniqId: Plain uniqid() An adversary with the possibility to predict the seed used by the PHP process may thus be able to predict future tokens which is an unwanted behaviour. One should note that this behaviour is documented in our documentation to ensure that users get aware of this even without reading our documentation this will add a post setup check to the administrative interface. Thanks to David Black from d1b.org for bringing this again to our attention.
* | Unit tests for #16511Roeland Jago Douma2015-05-221-0/+80
|/ | | | | Make sure that password is updated on focusout of the password field or on pressing enter in the password field.
* Merge pull request #15738 from rullzer/fix_15611Vincent Petry2015-05-181-0/+27
|\ | | | | Fix to make sure expiration date is properly set
| * Fix to make sure expiration date is properly setRoeland Jago Douma2015-05-181-0/+27
| | | | | | | | | | | | | | | | This did not happen correctly when the password was enforced since a different code path was taken. * moved generation of the default date string to separate function * added unit test