summaryrefslogtreecommitdiffstats
path: root/core/js
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #16650 from owncloud/fix-sqlite-only-setupThomas Müller2015-06-011-1/+4
|\ | | | | [setup] Disable buttons only in the case they are present
| * [setup] Disable buttons only in the case they are presentMorris Jobke2015-06-011-1/+4
| | | | | | | | * fixes #16648
* | Properly format remote recipientsRoeland Jago Douma2015-05-272-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-checkThomas Müller2015-05-262-3/+24
|\ \ | | | | | | Add check for availability of /dev/urandom
| * | Add check for availability of /dev/urandomLukas Reschke2015-05-262-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-imageVincent Petry2015-05-261-1/+1
|\ \ | | | | | | use normal font weight instead of bold for image placeholders
| * | use normal font weight instead of bold for image placeholdersJan-Christoph Borchardt2015-05-221-1/+1
| |/
* / 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 #12401 from owncloud/add-limit-parameter-to-getSharewithThomas Müller2015-05-191-1/+1
|\ | | | | Remove hard coded limit of 15 from getShareWith
| * add support for limit request parameter to getShareWithCraig Morrissey2015-05-151-1/+1
| |
* | Add hint about additional PHP database modulesMorris Jobke2015-05-181-0/+2
| | | | | | | | * fixes #16391
* | Merge pull request #15738 from rullzer/fix_15611Vincent Petry2015-05-182-10/+53
|\ \ | | | | | | Fix to make sure expiration date is properly set
| * | Fix to make sure expiration date is properly setRoeland Jago Douma2015-05-182-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 cleanRoeland Jago Douma2015-05-182-0/+111
|/ / | | | | | | * Unit test
* | Merge pull request #16242 from owncloud/use-oc-webrootThomas Müller2015-05-151-4/+1
|\ \ | |/ |/| Use OC.webroot instead of calculating the URL
| * Use OC.webroot instead of calculating the URLLukas Reschke2015-05-111-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 filepickerMorris Jobke2015-05-061-1/+2
| |
* | Resize filepicker on window size changeMorris Jobke2015-05-061-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-notificationMorris Jobke2015-05-061-0/+30
|\ | | | | Use OC.Notification for update notifications
| * Use OC.Notification for update notificationsMorris Jobke2015-05-031-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 Schilling2015-05-042-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 ownerVincent Petry2015-04-291-0/+25
| |
| * Do not restrict permissions for the original ownerJoas Schilling2015-04-291-1/+1
| |
* | also add title to multiselect create new element, fix #15954Jan-Christoph Borchardt2015-05-011-1/+2
| |
* | add title to multiselect list items so longer group names are visible, fix ↵Jan-Christoph Borchardt2015-04-291-5/+6
|/ | | | #15819
* Added unit testsRoeland Jago Douma2015-04-171-0/+94
|
* moved from html to $('html') to fix unit testsRoeland Jago Douma2015-04-171-2/+1
|
* Reset sharedialog valuesRoeland Jago Douma2015-04-171-0/+4
|
* remove slow fade animation for remaining tipsy tooltipsJan-Christoph Borchardt2015-04-151-1/+1
|
* remove slow fade animation for tipsy tooltipJan-Christoph Borchardt2015-04-151-10/+10
|
* fix filepickerMorris Jobke2015-04-131-1/+1
| | | | | | * add ability to filter for mimetype * fixes #15526 * fixes #11563
* more robust share dialogMorris Jobke2015-04-101-0/+4
|
* Merge pull request #15512 from owncloud/autoclose-settings-menuVincent Petry2015-04-091-2/+4
|\ | | | | Don't stop event execution for menu item click
| * Don't stop event execution for menu item clickMorris Jobke2015-04-091-2/+4
| | | | | | | | * fixes #12326 - the settings menu is closed now, because the event is executed
* | Merge pull request #15235 from owncloud/remote-share-hintMorris Jobke2015-04-092-4/+23
|\ \ | |/ |/| Hint for remote sharing syntax
| * Correctly generate the doc link via go.phpJoas Schilling2015-04-092-4/+5
| |
| * Fix config usageJoas Schilling2015-04-091-6/+5
| |
| * fix remote share info icon for IE8Jan-Christoph Borchardt2015-04-091-1/+1
| |
| * add more present info about remote shares, fix layout of inputsJan-Christoph Borchardt2015-04-091-0/+10
| |
| * correct remote share hintJan-Christoph Borchardt2015-03-261-1/+1
| |
| * add remote share status to the configBjoern Schiessle2015-03-261-0/+4
| |
| * add hint in Share placeholder on remote share syntaxJan-Christoph Borchardt2015-03-261-1/+6
| |
* | add admin documentation hints to Federated Cloud Sharing and cronJan-Christoph Borchardt2015-04-091-0/+2
| |
* | Fix maintenance refresh intervalMorris Jobke2015-04-081-2/+2
| | | | | | | | | | | | * fix XMLHttpRequest - send after callback is registered * check for correct type of value - it's a boolean * return correct content-type in status.php
* | Remove hardcoded link to performance docsJoas Schilling2015-04-072-5/+5
| |
* | Merge pull request #15269 from owncloud/migrate-checksetup-and-add-memcacheRobin McCorkell2015-03-302-3/+26
|\ \ | | | | | | Add check for activated local memcache
| * | Add check for activated local memcacheLukas Reschke2015-03-282-3/+26
| | | | | | | | | | | | | | | | | | Also used the opportunity to refactor it into an AppFramework controller so that we can unit test it. Fixes https://github.com/owncloud/core/issues/14956
* | | Add more spacing to the file picker dialogLukas Reschke2015-03-281-1/+1
|/ / | | | | | | Without this the first `>` looked somewhat off, to test this change go to the personal settings and choose a profile picture in a subfolder.
* | Merge pull request #15260 from owncloud/adjust-controls-bar-widthMorris Jobke2015-03-271-0/+55
|\ \ | | | | | | adjust controls bar width to not overlay scrollbar
| * | fix scrutinizer issuesJan-Christoph Borchardt2015-03-271-6/+9
| | |