summaryrefslogtreecommitdiffstats
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1738 from ↵Morris Jobke2016-10-269-179/+307
|\ | | | | | | | | nextcloud/comments-provide-displaynames-with-mentions comment mentions: show displayname not uid
| * fix JS test and introduce tests for rendering mentions to displaynamesArthur Schiwon2016-10-251-8/+62
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * avoid that all avatars are copied to the author row when editing commentsArthur Schiwon2016-10-211-1/+1
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * consolidate error handlingArthur Schiwon2016-10-191-27/+41
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * fix avatar displaying after submit (either edit or new)Arthur Schiwon2016-10-191-3/+7
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * display avatar (if enabled) alongside displaynamesArthur Schiwon2016-10-192-1/+12
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * fix regexArthur Schiwon2016-10-191-1/+1
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * improve regex, fixes replacements of usernames with same trunkArthur Schiwon2016-10-191-1/+12
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * show displayname not uid in commit mentionsArthur Schiwon2016-10-192-17/+76
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * resolve displayname via manager and registerable resolversArthur Schiwon2016-10-193-4/+45
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * move mention extraction to (I)Comment and report mentions via DAVArthur Schiwon2016-10-194-143/+77
| | | | | | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | Merge pull request #1907 from nextcloud/downstream-26164Morris Jobke2016-10-263-5/+15
|\ \ | | | | | | Highlight files and update storage stats at end of upload (#26164)
| * | Highlight files and update storage stats at end of upload (#26164)Vincent Petry2016-10-253-5/+15
| | | | | | | | | | | | | | | Properly trigger the "stop" even from the uploader. Also update storage stats at the end of all uploads instead of for each upload.
* | | [tx-robot] updated from transifexNextcloud bot2016-10-26124-346/+176
| | |
* | | Merge pull request #1911 from nextcloud/downstream-26477Roeland Jago Douma2016-10-251-1/+1
|\ \ \ | | | | | | | | Fix malformed attribute in files app
| * | | Fix malformed attribute in files appVincent Petry2016-10-251-1/+1
| |/ /
* | | Merge pull request #1913 from nextcloud/downstream-26441Roeland Jago Douma2016-10-252-16/+11
|\ \ \ | | | | | | | | Require to use at least desktop client 2.0 by default
| * | | Fix unit tests for BlockLegacyClientPluginThomas Müller2016-10-251-15/+10
| | | |
| * | | Require to use at least desktop client 2.0 by defaultThomas Müller2016-10-251-1/+1
| |/ /
* | | Merge pull request #1906 from nextcloud/downstream-26460Morris Jobke2016-10-252-24/+2
|\ \ \ | |/ / |/| | Remove any detailed information about the exception in the browser er…
| * | Remove any detailed information about the exception in the browser error pluginThomas Müller2016-10-252-24/+2
| | |
* | | Merge pull request #1871 from nextcloud/use-csp-noncesMorris Jobke2016-10-251-0/+1
|\ \ \ | | | | | | | | Use CSP nonces
| * | | Add ContentSecurityPolicyNonceManagerLukas Reschke2016-10-241-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
| * | | Add support for CSP noncesLukas Reschke2016-10-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CSP nonces are a feature available with CSP v2. Basically instead of saying "JS resources from the same domain are ok to be served" we now say "Ressources from everywhere are allowed as long as they add a `nonce` attribute to the script tag with the right nonce. At the moment the nonce is basically just a `<?php p(base64_encode($_['requesttoken'])) ?>`, we have to decode the requesttoken since `:` is not an allowed value in the nonce. So if somebody does on their own include JS files (instead of using the `addScript` public API, they now must also include that attribute.) IE does currently not implement CSP v2, thus there is a whitelist included that delivers the new CSP v2 policy to newer browsers. Check http://caniuse.com/#feat=contentsecuritypolicy2 for the current browser support list. An alternative approach would be to just add `'unsafe-inline'` as well as `'unsafe-inline'` is ignored by CSPv2 when a nonce is set. But this would make this security feature unusable at all in IE. Not worth it at the moment IMO. Implementing this offers the following advantages: 1. **Security:** As we host resources from the same domain by design we don't have to worry about 'self' anymore being in the whitelist 2. **Performance:** We can move oc.js again to inline JS. This makes the loading way quicker as we don't have to load on every load of a new web page a blocking dynamically non-cached JavaScript file. If you want to toy with CSP see also https://csp-evaluator.withgoogle.com/ Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | | | Merge pull request #1876 from nextcloud/shareesAPI_emailMorris Jobke2016-10-252-12/+314
|\ \ \ \ | |_|/ / |/| | | Add ShareesAPI E-mail search
| * | | Add ShareesAPI E-mail searchRoeland Jago Douma2016-10-242-12/+314
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Allow to search for SHARE_TYPE_EMAIL (4) * Added tests Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | Merge pull request #1883 from nextcloud/downstream-26145Morris Jobke2016-10-255-10/+13
|\ \ \ \ | | | | | | | | | | Storage 503 message improvements
| * | | | Storage 503 message improvementsVincent Petry2016-10-245-10/+13
| | | | | | | | | | | | | | | | | | | | | | | | | "Storage not available" is now "Storage temporarily not available". Exceptions are now logged in DEBUG level, not FATAL.
* | | | | [tx-robot] updated from transifexNextcloud bot2016-10-25162-2294/+2342
| | | | |
* | | | | Merge pull request #1897 from nextcloud/fix-public-buttonMorris Jobke2016-10-251-3/+4
|\ \ \ \ \ | | | | | | | | | | | | fix button on public upload page for mobile
| * | | | | fix button on public upload pageJan-Christoph Borchardt2016-10-241-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
* | | | | | Merge pull request #1452 from nextcloud/appconfig-endpointJoas Schilling2016-10-256-13/+553
|\ \ \ \ \ \ | | | | | | | | | | | | | | Appconfig endpoint
| * | | | | | Add unit testsJoas Schilling2016-10-212-5/+386
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | | Switch to public APIJoas Schilling2016-10-213-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | | | | | Make AppConfig part of the public APIJoas Schilling2016-10-212-8/+167
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | | Merge pull request #1283 from nextcloud/us_files-ui-webdav-uploadLukas Reschke2016-10-2516-872/+1437
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Use Webdav PUT for uploads
| * | | | | | | Only enable files_drop plugin when we actuall do files_dropRoeland Jago Douma2016-10-242-4/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | | Fix public files_drop pageRoeland Jago Douma2016-10-241-15/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | | Make files_drop workRoeland Jago Douma2016-10-243-10/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | | Fix permision maskRoeland Jago Douma2016-10-241-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If we move a file from the temp part file to the original file we don't need update permissions. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | | More fixes to file uploadVincent Petry2016-10-243-22/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | | Fix js unit tests for webdav put upload changesVincent Petry2016-10-244-56/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | | Add support for chunked uploadVincent Petry2016-10-242-45/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hacked around Blueimp's jquery.fileupload to make it work with our new chunking API. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | | Goodbye Iframe transport !Vincent Petry2016-10-243-353/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not needed any more in IE >= 11 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | | | | | | Use Webdav PUT for uploads in the web browserVincent Petry2016-10-2416-802/+1516
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - uses PUT method with jquery.fileupload for regular and public file lists - for IE and browsers that don't support it, use POST with iframe transport - implemented Sabre plugin to handle iframe transport and redirect the embedded PUT request to the proper handler - added RFC5995 POST to file collection with "add-member" property to make it possible to auto-rename conflicting file names - remove obsolete ajax/upload.php and obsolete ajax routes Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | | | Merge pull request #1860 from ryanwr/feature-sort-favoriteRoeland Jago Douma2016-10-251-6/+8
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Sort favorite files first
| * | | | | | Sort favorite files first Issue #1802ryanwr2016-10-241-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Ryan Welch <ryantwr@gmail.com>
* | | | | | | Import the used classesJoas Schilling2016-10-241-0/+3
| |_|/ / / / |/| | | | | | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | | | | Fix testsRoeland Jago Douma2016-10-241-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | | | | Move files_sharing Controllers => ControllerRoeland Jago Douma2016-10-246-10/+10
| |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | lib/Controller is the default location for controllers. So lets put them all in there. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>