| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|/ / |
|
| |
| |
| |
| |
| |
| | |
Tipsy also supported the `fallback` element which will now not work anymore. To enhance compatibility we shall also implement it in the shim.
Fixes https://github.com/owncloud/core/issues/17870
|
|\ \
| | |
| | | |
Replace jQuery tipsy with bootstrap tooltip
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix browser compatibility issue for element.closest()
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix OC.joinPaths with empty arguments
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
When empty arguments are given, the leading or trailing slash was not
detected properly.
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | | |
These should be used in the future instead of location.*.
It will make it possible to stub these methods for writing unit tests
and simulating different URL schemes.
|
|\ \ \ \
| | | | |
| | | | | |
Add OC.joinPaths for convenient path joining
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Update JS unit test libs
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
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.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Since we both use dir and httpd/unix-directory in OC they should map to
the same icon.
Fixes #17527
|
|/ / / / |
|
| |_|/
|/| |
| | |
| | |
| | | |
Whenever there were warnings during an update, the page will not be
redirected any more.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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)
|
|\ \
| |/
|/| |
Let buttons hide the sidebar
|
| | |
|
|\ \
| |/
|/| |
Fix childs of slideToggle not sliding the target
|
| | |
|
|/
|
|
|
|
| |
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
|
| |
|
|\
| |
| | |
Get a 96x96 preview for file conflict resolution
|
| | |
|
| | |
|
| | |
|
|\ \
| |/
|/| |
[setup] Disable buttons only in the case they are present
|
| |
| |
| |
| | |
* fixes #16648
|
| |
| |
| |
| |
| |
| |
| | |
* 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
|
|\ \
| | |
| | | |
Add check for availability of /dev/urandom
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
|\ \
| | |
| | | |
use normal font weight instead of bold for image placeholders
|
| |/ |
|
|/
|
|
|
| |
Make sure that password is updated on focusout of the password field or
on pressing enter in the password field.
|
|\
| |
| | |
Remove hard coded limit of 15 from getShareWith
|
| | |
|
| |
| |
| |
| | |
* fixes #16391
|
|\ \
| | |
| | | |
Fix to make sure expiration date is properly set
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
|/ /
| |
| |
| | |
* Unit test
|
|\ \
| |/
|/| |
Use OC.webroot instead of calculating the URL
|
| |
| |
| |
| |
| |
| | |
Calculating the URL is error-prone as it doesn't work when for example `public.php` is requested and might even be harmful as it could leak sensitive information.
Since `oc.js` is even available when maintenance mode is available it is better to use the global `OC.webroot` that is not controlled by any user.
|
| | |
|