| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
Makes the details bar show the same icon as in the list.
|
|\
| |
| | |
[stable8.2] Fix share link focus on click
|
| |
| |
| |
| | |
Clicking on the link share must focus and select it
|
|/
|
|
|
| |
Even more code mess :(
All tests pass again. But I'm really not happy with this endpoint.
|
|\
| |
| | |
[stable8.2] Fix DOM element ids in share dialog
|
| |
| |
| |
| |
| |
| |
| |
| | |
- 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.
|
|/ |
|
| |
|
|\
| |
| | |
Use DD-MM-YYYY consistently in share sidebar
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
|/
|
|
|
|
|
|
| |
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
|
|\
| |
| | |
Fix ShareItemModel.hasUserShares to only check shares of current item
|
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
|/ |
|
|
|
|
|
|
|
| |
Sometimes the attributes returned by share.php are integers but packaged
as strings.
This fix makes sure that such attributes are parsed as integers
|
|\
| |
| | |
JS tests for jquery.avatar
|
| |
| |
| |
| | |
* Ceil avatar request size
|
| | |
|
| | |
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Settings admin warning levels
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Display warning in security & setup warnings if php version is EOL
|
| | | |
|
| |/
|/| |
|
| | |
|
|/
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
When empty arguments are given, the leading or trailing slash was not
detected properly.
|
|\
| |
| | |
Add OC.joinPaths for convenient path joining
|
| | |
|
| | |
|
|/
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
* 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.
|
|/
|
|
|
| |
Make sure that password is updated on focusout of the password field or
on pressing enter in the password field.
|
|\
| |
| | |
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
|