summaryrefslogtreecommitdiffstats
path: root/lib/private/legacy/template.php
Commit message (Collapse)AuthorAgeFilesLines
* Update license headersMorris Jobke2017-11-061-3/+4
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Use appmanager instead of OC_App for check for enabled appMorris Jobke2017-10-231-1/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Replace wrong PHPDocsLukas Reschke2017-08-011-4/+6
| | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Add proper PHPDocLukas Reschke2017-08-011-1/+3
| | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Redesign jQuery UI datepickerMarin Treselj2017-07-231-1/+1
| | | | Signed-off-by: Marin Treselj <marin@pixelipo.com>
* Make page loading faster by deferred script loading:Michael Letzgus2017-05-201-0/+4
| | | | | | | | * Create generalized function for emmitting <script defer src=""> tags to templates * Remove type attribute from inline_js * Add defer attribute to external <script> tags Signed-off-by: Michael Letzgus <michaelletzgus@users.noreply.github.com>
* ensure theming app is loaded when showing an error pageRobin Appelman2017-05-061-0/+5
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* 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 OC_Defaults to OCP\DefaultsMorris Jobke2017-04-091-1/+2
| | | | | | | | | | | | | * currently there are two ways to access default values: OCP\Defaults or OC_Defaults (which is extended by OCA\Theming\ThemingDefaults) * our code used a mixture of both of them, which made it hard to work on theme values * this extended the public interface with the missing methods and uses them everywhere to only rely on the public interface Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge JS for template prependLukas Reschke2017-03-241-23/+4
| | | | | | Shaves off 14 requests. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Merge vendor jsRoeland Jago Douma2017-03-231-12/+15
| | | | | | | | 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>
* Only initialize backbone onceRoeland Jago Douma2017-03-221-1/+0
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Revert "Bundle vendor js"Roeland Jago Douma2017-03-221-15/+13
|
* When debug don't load the bundled fileRoeland Jago Douma2017-03-221-2/+19
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Bundle more default vendor jsRoeland Jago Douma2017-03-221-3/+0
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge vendor jsRoeland Jago Douma2017-03-221-14/+2
| | | | | | | | 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>
* Add more styles to the server.scssMorris Jobke2017-03-091-9/+0
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [PoC] combine 2 scss files!Roeland Jago Douma2017-03-091-2/+1
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Always enable avatarsMorris Jobke2017-02-131-4/+2
| | | | | | | | | * we introduced this setting in the begining because our avatar support caused some performance issues, but we fixed them and should only provide one way how Nextcloud looks Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Add jquery ui fixes js fileJohn Molakvoæ (skjnldsv)2016-11-251-0/+1
| | | | | | + fix autocomplete width (fix #2324) Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Merge pull request #1452 from nextcloud/appconfig-endpointJoas Schilling2016-10-251-0/+1
|\ | | | | Appconfig endpoint
| * Make AppConfig part of the public APIJoas Schilling2016-10-211-0/+1
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Template css orderJohn Molakvoæ2016-10-211-1/+5
|/ | | | | | | | Select2 systemtags removal Settings again Fix Script Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.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>
* Remove unneeded placeholder polyfillMorris Jobke2016-10-201-1/+0
| | | | | | | * placeholders are supported in IE11+ * http://caniuse.com/#feat=input-placeholder Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update with robinJoas Schilling2016-07-211-1/+1
|
* Fix othersJoas Schilling2016-07-211-5/+4
|
* Remove asset pipelinRoeland Jago Douma2016-07-151-42/+0
| | | | | | | | Fixes #215 The asset pipeline has shown to do more harm than good. Some apps fail hard with it. Also it makes sure that you download a huge file on each unvisited page.
* Migrate logic to dynamic controllerLukas Reschke2016-06-271-1/+1
| | | | Also adds support for having custom login backgrounds
* Do not show the hint when it's the same as the messageJoas Schilling2016-06-011-0/+5
|
* Update license headersLukas Reschke2016-05-261-3/+5
|
* Move functions.php to legacyRoeland Jago Douma2016-05-131-1/+1
| | | | This file should really be properly namespaced etc!
* Move non PSR-4 files from lib/private root to legacyRoeland Jago Douma2016-04-301-0/+433
As discussed we move all old style classes (OC_FOO_BAR) to legacy. Then from there we can evaluate the need to convert them back or if they can be fully deprecated/deleted.