Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Keep update page when there are warnings | Vincent Petry | 2015-07-07 | 1 | -8/+20 |
| | | | | | Whenever there were warnings during an update, the page will not be redirected any more. | ||||
* | Javascript mimetype icon resolver | Roeland Jago Douma | 2015-07-06 | 5 | -2/+376 |
| | | | | | | | | | | | | | | | | | 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) | ||||
* | Merge pull request #16973 from owncloud/button-close-sidebar | Lukas Reschke | 2015-06-17 | 1 | -1/+1 |
|\ | | | | | Let buttons hide the sidebar | ||||
| * | let buttons hide the sidebar | Hendrik Leppelsack | 2015-06-16 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #16893 from owncloud/fixSlideToggle | Morris Jobke | 2015-06-17 | 1 | -1/+1 |
|\ \ | |/ |/| | Fix childs of slideToggle not sliding the target | ||||
| * | fix childs of slideToggle not sliding the target | Hendrik Leppelsack | 2015-06-11 | 1 | -1/+1 |
| | | |||||
* | | Align recommended settings | Lukas Reschke | 2015-06-15 | 2 | -15/+34 |
|/ | | | | | | 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 | ||||
* | Upgrade jquery-migrate to 1.2.1 | Morris Jobke | 2015-06-09 | 1 | -1/+1 |
| | |||||
* | Merge pull request #16623 from owncloud/oparoz-fix-file-conflict-preview | Morris Jobke | 2015-06-02 | 1 | -3/+11 |
|\ | | | | | Get a 96x96 preview for file conflict resolution | ||||
| * | Escape single quotes | Olivier Paroz | 2015-05-29 | 1 | -0/+2 |
| | | |||||
| * | Fix for parenthesis | Olivier Paroz | 2015-05-29 | 1 | -1/+1 |
| | | |||||
| * | Get a 96x96 preview for file conflict resolution | Olivier Paroz | 2015-05-29 | 1 | -3/+9 |
| | | |||||
* | | Merge pull request #16650 from owncloud/fix-sqlite-only-setup | Thomas Müller | 2015-06-01 | 1 | -1/+4 |
|\ \ | |/ |/| | [setup] Disable buttons only in the case they are present | ||||
| * | [setup] Disable buttons only in the case they are present | Morris Jobke | 2015-06-01 | 1 | -1/+4 |
| | | | | | | | | * fixes #16648 | ||||
* | | Properly format remote recipients | Roeland Jago Douma | 2015-05-27 | 2 | -15/+117 |
| | | | | | | | | | | | | | | * 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-check | Thomas Müller | 2015-05-26 | 2 | -3/+24 |
|\ \ | | | | | | | Add check for availability of /dev/urandom | ||||
| * | | Add check for availability of /dev/urandom | Lukas Reschke | 2015-05-26 | 2 | -3/+24 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | Merge pull request #16521 from owncloud/unbold-placeholder-image | Vincent Petry | 2015-05-26 | 1 | -1/+1 |
|\ \ | | | | | | | use normal font weight instead of bold for image placeholders | ||||
| * | | use normal font weight instead of bold for image placeholders | Jan-Christoph Borchardt | 2015-05-22 | 1 | -1/+1 |
| |/ | |||||
* / | Unit tests for #16511 | Roeland Jago Douma | 2015-05-22 | 1 | -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 #12401 from owncloud/add-limit-parameter-to-getSharewith | Thomas Müller | 2015-05-19 | 1 | -1/+1 |
|\ | | | | | Remove hard coded limit of 15 from getShareWith | ||||
| * | add support for limit request parameter to getShareWith | Craig Morrissey | 2015-05-15 | 1 | -1/+1 |
| | | |||||
* | | Add hint about additional PHP database modules | Morris Jobke | 2015-05-18 | 1 | -0/+2 |
| | | | | | | | | * fixes #16391 | ||||
* | | Merge pull request #15738 from rullzer/fix_15611 | Vincent Petry | 2015-05-18 | 2 | -10/+53 |
|\ \ | | | | | | | Fix to make sure expiration date is properly set | ||||
| * | | Fix to make sure expiration date is properly set | Roeland Jago Douma | 2015-05-18 | 2 | -10/+53 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | | | Reset share dialog values so we start out clean | Roeland Jago Douma | 2015-05-18 | 2 | -0/+111 |
|/ / | | | | | | | * Unit test | ||||
* | | Merge pull request #16242 from owncloud/use-oc-webroot | Thomas Müller | 2015-05-15 | 1 | -4/+1 |
|\ \ | |/ |/| | Use OC.webroot instead of calculating the URL | ||||
| * | Use OC.webroot instead of calculating the URL | Lukas Reschke | 2015-05-11 | 1 | -4/+1 |
| | | | | | | | | | | | | 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. | ||||
* | | add max-width of 600px to filepicker | Morris Jobke | 2015-05-06 | 1 | -1/+2 |
| | | |||||
* | | Resize filepicker on window size change | Morris Jobke | 2015-05-06 | 1 | -1/+5 |
|/ | | | | | * add 20 px space to each direction -> 10px padding to left, right, top and bottom * fixes #16100 | ||||
* | Merge pull request #16017 from owncloud/proper-update-notification | Morris Jobke | 2015-05-06 | 1 | -0/+30 |
|\ | | | | | Use OC.Notification for update notifications | ||||
| * | Use OC.Notification for update notifications | Morris Jobke | 2015-05-03 | 1 | -0/+30 |
| | | | | | | | | | | | | | | * instead of a static rendering inside PHP use the JS OC.Notification.showTemporary to hide the notification after 7 seconds automatically * fixes #14811 | ||||
* | | Merge pull request #15772 from ↵ | Joas Schilling | 2015-05-04 | 2 | -1/+26 |
|\ \ | |/ |/| | | | | | owncloud/issue-15771-dont-restrict-permissions-for-share-owner Do not restrict permissions for the original owner | ||||
| * | Added unit test for reshare by share owner | Vincent Petry | 2015-04-29 | 1 | -0/+25 |
| | | |||||
| * | Do not restrict permissions for the original owner | Joas Schilling | 2015-04-29 | 1 | -1/+1 |
| | | |||||
* | | also add title to multiselect create new element, fix #15954 | Jan-Christoph Borchardt | 2015-05-01 | 1 | -1/+2 |
| | | |||||
* | | add title to multiselect list items so longer group names are visible, fix ↵ | Jan-Christoph Borchardt | 2015-04-29 | 1 | -5/+6 |
|/ | | | | #15819 | ||||
* | Added unit tests | Roeland Jago Douma | 2015-04-17 | 1 | -0/+94 |
| | |||||
* | moved from html to $('html') to fix unit tests | Roeland Jago Douma | 2015-04-17 | 1 | -2/+1 |
| | |||||
* | Reset sharedialog values | Roeland Jago Douma | 2015-04-17 | 1 | -0/+4 |
| | |||||
* | remove slow fade animation for remaining tipsy tooltips | Jan-Christoph Borchardt | 2015-04-15 | 1 | -1/+1 |
| | |||||
* | remove slow fade animation for tipsy tooltip | Jan-Christoph Borchardt | 2015-04-15 | 1 | -10/+10 |
| | |||||
* | fix filepicker | Morris Jobke | 2015-04-13 | 1 | -1/+1 |
| | | | | | | * add ability to filter for mimetype * fixes #15526 * fixes #11563 | ||||
* | more robust share dialog | Morris Jobke | 2015-04-10 | 1 | -0/+4 |
| | |||||
* | Merge pull request #15512 from owncloud/autoclose-settings-menu | Vincent Petry | 2015-04-09 | 1 | -2/+4 |
|\ | | | | | Don't stop event execution for menu item click | ||||
| * | Don't stop event execution for menu item click | Morris Jobke | 2015-04-09 | 1 | -2/+4 |
| | | | | | | | | * fixes #12326 - the settings menu is closed now, because the event is executed | ||||
* | | Merge pull request #15235 from owncloud/remote-share-hint | Morris Jobke | 2015-04-09 | 2 | -4/+23 |
|\ \ | |/ |/| | Hint for remote sharing syntax | ||||
| * | Correctly generate the doc link via go.php | Joas Schilling | 2015-04-09 | 2 | -4/+5 |
| | | |||||
| * | Fix config usage | Joas Schilling | 2015-04-09 | 1 | -6/+5 |
| | | |||||
| * | fix remote share info icon for IE8 | Jan-Christoph Borchardt | 2015-04-09 | 1 | -1/+1 |
| | |