summaryrefslogtreecommitdiffstats
path: root/core/js/core.json
Commit message (Collapse)AuthorAgeFilesLines
* Add es6-shim as polyfill and minify underscore.jsJulius Härtl2018-11-071-2/+2
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Move OC.Share to compiled handlebarsRoeland Jago Douma2018-10-041-0/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move systemtags to compiled handlebarsRoeland Jago Douma2018-10-041-0/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Compile contactmenu handlebars templatesRoeland Jago Douma2018-09-271-0/+1
| | | | | | | | | | Fixes #11029 For https://github.com/orgs/nextcloud/projects/18 Ship the compiled handlebars templates. This makes it possible to have a scricter CSP. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Public fixesJohn Molakvoæ (skjnldsv)2018-07-211-1/+0
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Popovermenu migrationJohn Molakvoæ (skjnldsv)2018-07-211-1/+0
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* UI set share note!John Molakvoæ (skjnldsv)2018-07-211-0/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Backend work to provide NC whats New info to usersArthur Schiwon2018-07-051-0/+1
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* IE11 css vars compatibilityJohn Molakvoæ (skjnldsv)2018-06-201-1/+2
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Add public templateJulius Härtl2018-02-271-0/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* format links in commentsArthur Schiwon2018-01-031-0/+1
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* add contactsmenu popoverGeorg Ehrke2017-04-261-0/+1
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* Contacts menuChristoph Wurst2017-04-251-0/+1
| | | | | | | * load list of contacts from the server * show last message of each contact Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Move to handlebars.min.jsRoeland Jago Douma2017-04-121-1/+1
| | | | | | core.js is now below 1mb! Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Moved to jquery-ui.custom.min.jsRoeland Jago Douma2017-04-121-1/+1
| | | | | | Shaves off about 200kb of the default loaded js libs Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [js] Bump blueimp-md5Roeland Jago Douma2017-04-101-1/+1
| | | | | | | * bumped to latest * moved to min Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move to autosize.min.jsRoeland Jago Douma2017-04-031-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Use minified clipboard.jsRoeland Jago Douma2017-03-291-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* use moments.js min in core.jsRoeland Jago Douma2017-03-261-1/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge vendor jsRoeland Jago Douma2017-03-231-1/+3
| | | | | | | | There is a bunch of javascript we always load from vendors. This combines this into 1 javascript file. Which reduces the number of request by ~10. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Revert "Bundle vendor js"Roeland Jago Douma2017-03-221-3/+1
|
* Bundle more default vendor jsRoeland Jago Douma2017-03-221-1/+3
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #3679 from nextcloud/socialsharingLukas Reschke2017-03-161-0/+1
|\ | | | | Add social sharing
| * Fix testsRoeland Jago Douma2017-03-061-0/+1
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Harden t() with DOMPurifyLukas Reschke2017-03-161-1/+2
|/ | | | | | This mitigates issues where developers pass untrusted user-input through t() which may lead to XSS issues. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Remove from core.jsonRoeland Jago Douma2016-11-021-1/+0
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Make AppConfig part of the public APIJoas Schilling2016-10-211-0/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Remove unneeded compatibility polyfillsMorris Jobke2016-10-201-1/+0
| | | | | | | | | | | | | | - `Object.create` supported with IE9+: https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Object/create#Browser_compatibility - `Object.keys` supported with IE9+: https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Object/keys#Browser_compatibility - `Array.prototype.filter` supported in IE9+: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter#Browser_compatibility - `Array.prototype.indexOf` supported in IE9+: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf#Browser_compatibility - `Array.prototype.map` supported in IE9+: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map#Browser_compatibility - `Function.prototype.bind` supported in IE9+: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind#Browser_compatibility - `String.prototype.trim` supported with IE9+: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim#Browser_compatibility - `outerHTML` supported with Firefox 11+: https://developer.mozilla.org/en-US/docs/Web/API/Element/outerHTML#Browser_compatibility - `window.devicePixelRatio` supported in IE11+: http://caniuse.com/#feat=devicepixelratio Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Add autosizeRoeland Jago Douma2016-10-041-1/+2
|
* Add clipboard button to public share linkThomas Müller2016-07-201-1/+2
|
* extract mail view for sending share invitationsChristoph Wurst2016-04-191-0/+1
| | | | fixes #22947
* update jquery to version 2.2.3Christoph Wurst2016-04-141-1/+1
|
* Move getDescriptiveTag to coreJoas Schilling2016-01-211-0/+1
|
* Added system tags GUI in sidebarVincent Petry2016-01-191-1/+5
| | | | | Added files details sidebar panel to assign/unassign/rename/delete system tags.
* Backbone transport for WebdavVincent Petry2016-01-161-0/+1
|
* Add evert's davclient.js + es6-promise + IE8 workaroundVincent Petry2015-11-221-2/+6
| | | | | | - Add davclient.js lib - Add es6-promise required by that lib - Wrote IE8 workaround lib/shim for davclient.js
* Update JS unit tests for share dialog (WIP)Vincent Petry2015-09-161-0/+7
|
* Load backbone when running unit testsVincent Petry2015-08-111-1/+3
|
* rename sidebar element and use css and js utility functions to coreArthur Schiwon2015-08-071-0/+1
|
* Merge pull request #17075 from owncloud/bootstrap-tooltipBernhard Posselt2015-07-231-2/+2
|\ | | | | Replace jQuery tipsy with bootstrap tooltip
| * moved tooltip.js to vendor scriptsHendrik Leppelsack2015-06-221-2/+2
| |
| * replaced tipsy with bootstrap tooltipHendrik Leppelsack2015-06-221-1/+1
| |
* | Javascript mimetype icon resolverRoeland Jago Douma2015-07-061-1/+3
|/ | | | | | | | | | | | | | | | | This makes it possible to retrieve the icon for mimetypes in javascript. It makes no additional queries to the server to retrieve the mimetype. * config/mimetypealiases.json added * mimetype.js: this is where the logic resides to convert from mimetype to icon url * mimetypelist.js: generated file with a list of mimetype mapping (aliases) and the list of icon files * ./occ maintenance:mimetypesjs : new command for occ to gernerate mimetypes.js * unit tests updated and still work * javascript tests added * theming support * folder of the theme is now present in javascript (OC.theme.folder)
* Upgrade jquery-migrate to 1.2.1Morris Jobke2015-06-091-1/+1
|
* Merge pull request #14582 from rullzer/avatar_fixesMorris Jobke2015-03-041-2/+4
|\ | | | | Avatars in share dialog fixes
| * Avatars in share dialog fixesRoeland Jago Douma2015-03-031-2/+4
| | | | | | | | | | | | | | * Avatar for "xxxx share with you..." to the left * Avatars for groups and remote shares (use default placeholder) * Modified and added unit tests * Use the same css for all the avatars in the dropdown
* | Let users configure security headers in their WebserverLukas Reschke2015-03-021-0/+1
|/ | | | | | | | | | Doing this in the PHP code is not the right approach for multiple reasons: 1. A bug in the PHP code prevents them from being added to the response. 2. They are only added when something is served via PHP and not in other cases (that makes for example the newest IE UXSS which is not yet patched by Microsoft exploitable on ownCloud) 3. Some headers such as the Strict-Transport-Security might require custom modifications by administrators. This was not possible before and lead to buggy situations. This pull request moves those headers out of the PHP code and adds a security check to the admin settings performed via JS.
* Added dependancy for the JS unit testsRoeland Jago Douma2015-02-121-1/+2
| | | | Still not correct but it is a small step
* adjust paths for searchMorris Jobke2015-01-141-1/+1
|
* make OCA.Search.Files available in tests and for other appsJörn Friedrich Dreyer2015-01-021-1/+2
|