summaryrefslogtreecommitdiffstats
path: root/core/js
Commit message (Collapse)AuthorAgeFilesLines
...
* | Introduce some mimetypes for richdocumentsFaruk Uzun2016-02-041-0/+4
|/ | | | | | | * application/vnd.lotus-wordpro * application/vnd.visio * application/vnd.wordperfect * application/msonenote
* host and hostname are different thingsRoeland Jago Douma2016-02-031-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 nodesVincent Petry2016-02-021-1/+1
| | | | Return empty string instead of undefined
* Expose display name in JS sideVincent Petry2016-02-021-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 GUIVincent Petry2016-02-021-8/+14
|
* changed variables to lowercaseVincent Chan2016-02-021-5/+5
|
* Move data protection check to javascriptVincent Chan2016-02-013-27/+79
| | | | fixes #20199
* Merge pull request #21953 from owncloud/make-enable_avatars-more-robustThomas Müller2016-02-011-1/+1
|\ | | | | Make enable_avatars setting more robust
| * Make enable_avatars setting more robustMorris Jobke2016-01-271-1/+1
| | | | | | | | | | * handles the setting in the same way everywhere * fixes #21949
* | Update explanation of how to enable debug modematthias-g2016-01-301-2/+2
| |
* | Merge pull request #21992 from owncloud/share-dialog-error-handlingThomas Müller2016-01-292-7/+158
|\ \ | | | | | | Properly forward error messages in share dialog
| * | Properly forward error messages in share dialogVincent Petry2016-01-282-7/+158
| | |
* | | Trim tag names to avoid problemsJoas Schilling2016-01-281-5/+6
|/ /
* | Fix share default expiration date calculationVincent Petry2016-01-282-9/+8
| | | | | | | | Now using UTC dates with moment js to accurately add the number of days
* | Share dialog use OCS APIVincent Petry2016-01-288-537/+611
| |
* | Merge pull request #21958 from owncloud/systemtags-styleThomas Müller2016-01-284-16/+43
|\ \ | | | | | | Use boxes for system tags, shorten permission text
| * | Use boxes for system tags, shorten permission textVincent Petry2016-01-284-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 situationsVincent Petry2016-01-272-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 booleansVincent Petry2016-01-273-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 Schilling2016-01-261-2/+2
|
* System tags sidebar selector now respects permissionsVincent Petry2016-01-254-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 methodVincent Petry2016-01-251-1/+13
| | | | Which is nicer than an obscure global variable
* Merge pull request #21811 from owncloud/fix-unauthenticated-avatarThomas Müller2016-01-251-2/+5
|\ | | | | Show default placeholder if avatar image can't be fetched
| * Show default placeholder if avatar image can't be fetchedMorris Jobke2016-01-201-2/+5
| | | | | | | | | | * fixes owncloud/documents#601 * ref #14564
* | Move getDescriptiveTag to coreJoas Schilling2016-01-214-3/+99
| |
* | Added system tags GUI in sidebarVincent Petry2016-01-1910-22/+1013
| | | | | | | | | | Added files details sidebar panel to assign/unassign/rename/delete system tags.
* | Implement toggleselect extension for select2Vincent Petry2016-01-191-0/+59
|/ | | | To make it possible to toggle selected values inside the dropdown
* update JS humanFileSize to use KB instead of kBMorris Jobke2016-01-192-7/+7
|
* Run the command once againJoas Schilling2016-01-181-13/+13
|
* Backbone transport for WebdavVincent Petry2016-01-164-0/+671
|
* Merge pull request #21630 from owncloud/add-some-security-headers-as-hardeningThomas Müller2016-01-132-12/+41
|\ | | | | Add X-Download-Options and X-Permitted-Cross-Domain-Policies
| * Add X-Download-Options and X-Permitted-Cross-Domain-PoliciesLukas Reschke2016-01-122-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-2016Thomas Müller2016-01-131-2/+2
|\ \ | | | | | | Update license headers 2016
| * | Happy new year!Thomas Müller2016-01-121-2/+2
| | |
* | | Merge pull request #21640 from owncloud/add-config-to-disable-wellknown-checkThomas Müller2016-01-122-3/+18
|\ \ \ | |/ / |/| | Add config switch to disable the .well-known URL check
| * | Add config switch to disable the .well-known URL checkMorris Jobke2016-01-122-3/+18
| |/
* / Show the well-known URL check as info instead of errorMorris Jobke2016-01-122-2/+2
|/ | | | * ref https://github.com/owncloud/core/pull/21562#issuecomment-170344549
* Add check for .well-known URL in the root of the webservers URLMorris Jobke2016-01-083-0/+57
| | | | * fixes #20012
* Check the correct config for displaying the "notify by email" optionJoas Schilling2016-01-083-3/+10
|
* Added js tests for the Sharee API usageRoeland Jago Douma2015-12-301-0/+292
|
* Fix unit testsRoeland Jago Douma2015-12-302-7/+33
|
* Filter out share owner in sharee suggestion listRoeland Jago Douma2015-12-301-0/+9
|
* Web sharing uses sharee endpointRoeland Jago Douma2015-12-301-15/+75
|
* Merge pull request #21364 from owncloud/bring_back_icons_filepickerThomas Müller2015-12-281-0/+1
|\ | | | | Get the icon in javascript for the filepicker
| * Since the server no longer calculates the iconRoeland Jago Douma2015-12-241-0/+1
| | | | | | | | | | The server no longer calculates the icon. So we have the js side do it for us.
* | [Avatars] Calculate 'sane' hue precissionsRoeland Jago Douma2015-12-241-2/+2
|/ | | | | | | | | | We used to get the numeric value of the entrire md5 string which is a 128bit integer. We would then devide this by the maxval of a 128bit int. There is no need for such huge computations. As we just require a value between 0 and 255. Thus using two 16 bit values is more than enough to get the precision we need. By just taking the MSB we get nearly identical results.
* Fix unit testsLukas Reschke2015-12-231-6/+6
| | | | Fixes https://github.com/owncloud/core/issues/21345
* add _blank to hrefRenaud Fortier2015-12-211-6/+6
|
* Use OCP\Util::getVersion instead of the internal private implementationMorris Jobke2015-12-181-1/+1
|
* Since avatar.js is now essentially empty remove itRoeland Jago Douma2015-12-171-5/+0
|