summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #16517 from owncloud/remove-logo-wideThomas Müller2015-05-296-20/+8
|\ | | | | replace logo-wide on share page as well with better icon + text
| * also replace logo-mail with new lookJan-Christoph Borchardt2015-05-221-0/+0
| |
| * replace logo-wide on share page as well with better icon + textJan-Christoph Borchardt2015-05-225-20/+8
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-05-294-4/+8
| |
* | Merge pull request #16380 from rullzer/fix_16281Morris Jobke2015-05-282-15/+117
|\ \ | | | | | | Properly format recipients
| * | 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
* | | [tx-robot] updated from transifexJenkins for ownCloud2015-05-2828-74/+144
| | |
* | | Merge pull request #16417 from owncloud/master-16415Morris Jobke2015-05-271-5/+0
|\ \ \ | |/ / |/| | fix theme in IE8 and IE9
| * | fix theme in IE8 and IE9Morris Jobke2015-05-181-5/+0
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2015-05-272-4/+4
| | |
* | | Merge pull request #15985 from owncloud/hotfix/fix-encryption-referencesBjörn Schießle2015-05-261-1/+1
|\ \ \ | | | | | | | | [enc2] fix references to legacy encryption app name
| * | | fix references to legacy encryption app nameClark Tomlinson2015-05-181-1/+1
| |/ /
* | | 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
| |/ / /
* | | | Merge pull request #16520 from owncloud/fix-float-spinner-positionVincent Petry2015-05-261-1/+4
|\ \ \ \ | | | | | | | | | | fix float spinner position
| * | | | fix float spinner positionJan-Christoph Borchardt2015-05-221-1/+4
| | |_|/ | |/| |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-05-262-0/+4
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-05-252-2/+2
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-05-244-0/+30
| | | |
* | | | 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 #16473 from owncloud/occ_16221Joas Schilling2015-05-211-2/+12
|\ \ \ | | | | | | | | occ option to update all third party apps without disable
| * | | Skip disable3rdParty AppsSteffen Lindner2015-05-201-2/+12
| |/ /
* / / [tx-robot] updated from transifexJenkins for ownCloud2015-05-2122-0/+46
|/ /
* | [tx-robot] updated from transifexJenkins for ownCloud2015-05-202-2/+2
| |
* | Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-05-191-1/+0
| | | | | | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* | Merge pull request #12401 from owncloud/add-limit-parameter-to-getSharewithThomas Müller2015-05-192-4/+6
|\ \ | | | | | | Remove hard coded limit of 15 from getShareWith
| * | add support for limit request parameter to getShareWithCraig Morrissey2015-05-152-4/+6
| | |
* | | Add hint about additional PHP database modulesMorris Jobke2015-05-183-1/+11
| |/ |/| | | | | * 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.
* | [tx-robot] updated from transifexJenkins for ownCloud2015-05-154-0/+4
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-05-142-0/+2
| |
* | Merge pull request #16290 from owncloud/upgrade-info-for-3rdparty-appsLukas Reschke2015-05-131-0/+3
|\ \ | | | | | | Add info message for upgrade of an 3rdparty app
| * | Add info message for upgrade of an 3rdparty appMorris Jobke2015-05-121-0/+3
| | |
* | | [tx-robot] updated from transifexJenkins for ownCloud2015-05-136-2/+64
|/ /
* | Merge pull request #16282 from owncloud/fix-multiselect-ellipsizeMorris Jobke2015-05-121-0/+1
|\ \ | | | | | | ellipsize first item in multiselect, fix #16174
| * | ellipsize first item in multiselect, fix #16174Jan-Christoph Borchardt2015-05-121-0/+1
| |/
* | Merge pull request #16104 from owncloud/resize-filepickerJan-Christoph Borchardt2015-05-122-2/+7
|\ \ | |/ |/| Resize filepicker on window size change
| * 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
* | [tx-robot] updated from transifexJenkins for ownCloud2015-05-114-2/+14
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-05-106-2/+6
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-05-092-0/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-05-0818-22/+132
| |
* | Merge pull request #16035 from ↵Thomas Müller2015-05-073-5/+25
|\ \ | | | | | | | | | | | | owncloud/issue-15975-occ-encryption-enable-warning-no-module Display a message when there is a problem with the default module