Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Calculate the share statuses in js from the OCS Response | Roeland Jago Douma | 2016-02-11 | 1 | -6/+12 |
| | | | | | Right now this is only done on page load. We should do it on each directory traversal. | ||||
* | Only show link shares for the current user | Roeland Jago Douma | 2016-02-10 | 2 | -3/+14 |
| | | | | | | | Currently we have no way to display multiple links in the UI. So just display the link share for the current user. Fixes #22275 | ||||
* | Only show link spinner if the share exists | Roeland Jago Douma | 2016-02-10 | 1 | -1/+1 |
| | | | | | If there is no share to delete do not set the spinner. Fixes #21726 | ||||
* | Move update notification code into app | Lukas Reschke | 2016-02-09 | 1 | -30/+0 |
| | | | | | | Moves the update notification code in a single app. This is required since we want to use SSO for the new updater and for this have some code running in ownCloud as well (and we don't want that in core neccessarily). This app can provide that in the future, right now it's only the update notification itself. Will continue working on the SSO right away but wanted to keep the PR small. Furthermore also makes some more code unit-testable... | ||||
* | Add system tags filter section for files app | Vincent Petry | 2016-02-09 | 3 | -1/+230 |
| | |||||
* | Merge pull request #22186 from ↵ | Thomas Müller | 2016-02-08 | 1 | -6/+10 |
|\ | | | | | | | | | owncloud/show-different-unsupported-failure-message Don't show "report this to the community" when the upgrade is unsuppo… | ||||
| * | Add message with reference to forum post | Lukas Reschke | 2016-02-08 | 1 | -1/+1 |
| | | |||||
| * | Don't show "report this to the community" when the upgrade is unsupported | Morris Jobke | 2016-02-08 | 1 | -6/+10 |
| | | | | | | | | * fixes #21367 | ||||
* | | Make JS Webdav work again with IE9-IE10 | Vincent Petry | 2016-02-05 | 1 | -55/+41 |
|/ | |||||
* | Merge pull request #22133 from owncloud/add-check-for-content | Thomas Müller | 2016-02-04 | 1 | -1/+1 |
|\ | | | | | Add check for content | ||||
| * | Add check for content | Lukas Reschke | 2016-02-04 | 1 | -1/+1 |
| | | | | | | | | | | | | The response may be a redirect which is always followed by jQuery. Thus leading to false positives depending on the server configuration (e.g. when it issues a 302) To prevent that there is also a check performed on the response content. | ||||
* | | Merge pull request #22130 from owncloud/fix-jsunit-filesclient | Thomas Müller | 2016-02-04 | 2 | -148/+142 |
|\ \ | | | | | | | Fix jsunit filesclient | ||||
| * | | Fix JS DAV files client unit tests | Vincent Petry | 2016-02-04 | 1 | -146/+140 |
| | | | | | | | | | | | | | | | Instead of trying to mock the promise, just stub davclient.js' request object. | ||||
| * | | Small fixes in Dav files client | Vincent Petry | 2016-02-04 | 1 | -2/+2 |
| |/ | | | | | | | | | Remove double leading slash in path. Add utf-8 in default content type. | ||||
* / | Introduce some mimetypes for richdocuments | Faruk Uzun | 2016-02-04 | 1 | -0/+4 |
|/ | | | | | | | * application/vnd.lotus-wordpro * application/vnd.visio * application/vnd.wordperfect * application/msonenote | ||||
* | host and hostname are different things | Roeland Jago Douma | 2016-02-03 | 1 | -2/+19 |
| | | | | | | | | | | host can contain the port (host of http://example.com:1234 is example.com:1234) while hostname never contains a port. They can however be similar. If you navigate to http://example.com then both host and hostname will be example.com. * Fixed docs * added getHostName function | ||||
* | Fix parsing empty Webdav property nodes | Vincent Petry | 2016-02-02 | 1 | -1/+1 |
| | | | | Return empty string instead of undefined | ||||
* | Expose display name in JS side | Vincent Petry | 2016-02-02 | 1 | -0/+32 |
| | | | | | Adds a new method `OC.getCurrentUser` to get both the user id and display name Could be used for a future Js | ||||
* | Add pagination support for comments GUI | Vincent Petry | 2016-02-02 | 1 | -8/+14 |
| | |||||
* | changed variables to lowercase | Vincent Chan | 2016-02-02 | 1 | -5/+5 |
| | |||||
* | Move data protection check to javascript | Vincent Chan | 2016-02-01 | 3 | -27/+79 |
| | | | | fixes #20199 | ||||
* | Merge pull request #21953 from owncloud/make-enable_avatars-more-robust | Thomas Müller | 2016-02-01 | 1 | -1/+1 |
|\ | | | | | Make enable_avatars setting more robust | ||||
| * | Make enable_avatars setting more robust | Morris Jobke | 2016-01-27 | 1 | -1/+1 |
| | | | | | | | | | | * handles the setting in the same way everywhere * fixes #21949 | ||||
* | | Update explanation of how to enable debug mode | matthias-g | 2016-01-30 | 1 | -2/+2 |
| | | |||||
* | | Merge pull request #21992 from owncloud/share-dialog-error-handling | Thomas Müller | 2016-01-29 | 2 | -7/+158 |
|\ \ | | | | | | | Properly forward error messages in share dialog | ||||
| * | | Properly forward error messages in share dialog | Vincent Petry | 2016-01-28 | 2 | -7/+158 |
| | | | |||||
* | | | Trim tag names to avoid problems | Joas Schilling | 2016-01-28 | 1 | -5/+6 |
|/ / | |||||
* | | Fix share default expiration date calculation | Vincent Petry | 2016-01-28 | 2 | -9/+8 |
| | | | | | | | | Now using UTC dates with moment js to accurately add the number of days | ||||
* | | Share dialog use OCS API | Vincent Petry | 2016-01-28 | 8 | -537/+611 |
| | | |||||
* | | Merge pull request #21958 from owncloud/systemtags-style | Thomas Müller | 2016-01-28 | 4 | -16/+43 |
|\ \ | | | | | | | Use boxes for system tags, shorten permission text | ||||
| * | | Use boxes for system tags, shorten permission text | Vincent Petry | 2016-01-28 | 4 | -16/+43 |
| |/ | | | | | | | | | | | | | | | Permission text now doesn't appear when all permissions are there, or shows as "invisible" or "not assignable", which should better cover all use cases. Changed select2 style to use boxes in the input field. | ||||
* / | Fix system tags conflict situations | Vincent Petry | 2016-01-27 | 2 | -3/+85 |
|/ | | | | | | Does not disrupt the UX whenever a tag or association was created concurrently. The input field will adjust itself as if the tag was already there in the first place. | ||||
* | Fix system tags proppatch with booleans | Vincent Petry | 2016-01-27 | 3 | -10/+53 |
| | | | | | | | Backbone webdav adapter now converts booleans and ints to strings. Fixed system tags to use "true" / "false" strings for booleans instead of 1 / 0. | ||||
* | Deprecate getFirstWeekDay() and getDateFormat() in favor of l() | Joas Schilling | 2016-01-26 | 1 | -2/+2 |
| | |||||
* | System tags sidebar selector now respects permissions | Vincent Petry | 2016-01-25 | 4 | -244/+400 |
| | | | | | | | For admins: display the namespace behind the tag name. For users: no namespace, don't display non-assignable tags in the dropdown, display already assigned non-assignable tags with a different style | ||||
* | Expose whether user is an admin through a method | Vincent Petry | 2016-01-25 | 1 | -1/+13 |
| | | | | Which is nicer than an obscure global variable | ||||
* | Merge pull request #21811 from owncloud/fix-unauthenticated-avatar | Thomas Müller | 2016-01-25 | 1 | -2/+5 |
|\ | | | | | Show default placeholder if avatar image can't be fetched | ||||
| * | Show default placeholder if avatar image can't be fetched | Morris Jobke | 2016-01-20 | 1 | -2/+5 |
| | | | | | | | | | | * fixes owncloud/documents#601 * ref #14564 | ||||
* | | Move getDescriptiveTag to core | Joas Schilling | 2016-01-21 | 4 | -3/+99 |
| | | |||||
* | | Added system tags GUI in sidebar | Vincent Petry | 2016-01-19 | 10 | -22/+1013 |
| | | | | | | | | | | Added files details sidebar panel to assign/unassign/rename/delete system tags. | ||||
* | | Implement toggleselect extension for select2 | Vincent Petry | 2016-01-19 | 1 | -0/+59 |
|/ | | | | To make it possible to toggle selected values inside the dropdown | ||||
* | update JS humanFileSize to use KB instead of kB | Morris Jobke | 2016-01-19 | 2 | -7/+7 |
| | |||||
* | Run the command once again | Joas Schilling | 2016-01-18 | 1 | -13/+13 |
| | |||||
* | Backbone transport for Webdav | Vincent Petry | 2016-01-16 | 4 | -0/+671 |
| | |||||
* | Merge pull request #21630 from owncloud/add-some-security-headers-as-hardening | Thomas Müller | 2016-01-13 | 2 | -12/+41 |
|\ | | | | | Add X-Download-Options and X-Permitted-Cross-Domain-Policies | ||||
| * | Add X-Download-Options and X-Permitted-Cross-Domain-Policies | Lukas Reschke | 2016-01-12 | 2 | -12/+41 |
| | | | | | | | | Two small security hardenings for our IE users and those with Adobe products. Aligns it more with https://github.com/twitter/secureheaders#secureheaders--- | ||||
* | | Merge pull request #21653 from owncloud/update-license-headers-2016 | Thomas Müller | 2016-01-13 | 1 | -2/+2 |
|\ \ | | | | | | | Update license headers 2016 | ||||
| * | | Happy new year! | Thomas Müller | 2016-01-12 | 1 | -2/+2 |
| | | | |||||
* | | | Merge pull request #21640 from owncloud/add-config-to-disable-wellknown-check | Thomas Müller | 2016-01-12 | 2 | -3/+18 |
|\ \ \ | |/ / |/| | | Add config switch to disable the .well-known URL check | ||||
| * | | Add config switch to disable the .well-known URL check | Morris Jobke | 2016-01-12 | 2 | -3/+18 |
| |/ |