summaryrefslogtreecommitdiffstats
path: root/lib/private/legacy
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #5857 from nextcloud/database-exception-cleanupMorris Jobke2017-07-241-2/+2
|\ | | | | Remove unneeded parameter in DatabaseException
| * Remove unneeded parameter in DatabaseExceptionMorris Jobke2017-07-241-2/+2
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Merge pull request #5855 from nextcloud/cleanup-legacy-user-classMorris Jobke2017-07-241-67/+1
|\ \ | | | | | | Cleanup legacy user class from unused methods
| * | Cleanup legacy user class from unused methodsMorris Jobke2017-07-241-67/+1
| |/ | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Merge pull request #5854 from nextcloud/improve-personal-page-codeMorris Jobke2017-07-241-51/+0
|\ \ | | | | | | Cleanup code of personal page to use public interfaces
| * | Cleanup code of personal page to use public interfacesMorris Jobke2017-07-241-51/+0
| |/ | | | | | | | | | | | | * public interfaces instead of static code calls * drop static private namespace methods Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* / More phpstorm inspection fixesRoeland Jago Douma2017-07-241-1/+1
|/ | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Redesign jQuery UI datepickerMarin Treselj2017-07-231-1/+1
| | | | Signed-off-by: Marin Treselj <marin@pixelipo.com>
* PrivateData to appRoeland Jago Douma2017-07-211-28/+0
| | | | | | | * PrivateData is an app now: https://github.com/nextcloud/privatedata * No need to load the OCS routes.php (as there is none!) Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #5529 from michaelletzgus/optimize_js_orderMorris Jobke2017-07-071-3/+3
|\ | | | | Optimize performance / Load CSS and JS in parallel on firefox
| * Optimize performance / Load CSS and JS in parallel on firefoxMichael Letzgus2017-06-241-3/+3
| | | | | | | | | | | | | | Move the inline <script> after the external <script> because the internal JS between CSS <link> and external JS makes firefox loading CSS and JS not in parallel. The internal js is now parsed last but will still be executed first since everything else is deferred js. Signed-off-by: Michael Letzgus <michaelletzgus@users.noreply.github.com>
* | Register autoloading before running migrationsJoas Schilling2017-07-051-1/+2
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Use migrations when there is no database.xmlJoas Schilling2017-07-051-3/+3
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Start migrationsJoas Schilling2017-07-051-1/+8
|/ | | | | | | | | | Fixme: - Install and update of apps - No revert on live systems (debug only) - Service adjustment to our interface - Loading via autoloader Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #4993 from michaelletzgus/emit_css-tagsMorris Jobke2017-06-141-1/+31
|\ | | | | Emit css tags
| * Streamline templates, more DRYMichael Letzgus2017-05-251-1/+31
| | | | | | | | | | | | | | | | Use Unified function to emit <link> tags for css loading, obey "Don't Repeat Yourself" ;-) (Next step might by to combine this with the emit <script> function (even more DRY?) AND move all this to a better place?) Signed-off-by: Michael Letzgus <michaelletzgus@users.noreply.github.com>
* | Update setupchecks.jsrakekniven2017-05-311-2/+2
| | | | | | | | | | | | | | | | | | | | | | Fixed typo and removed doclink symbol. Reported at transifex Update util.php Another l10n improvement from transifex. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Register the autoloading earlier so we can load the background jobsJoas Schilling2017-05-241-2/+1
|/ | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #4854 from michaelletzgus/deferred-script-loading-v2Morris Jobke2017-05-202-0/+41
|\ | | | | Make page loading faster, deferred script loading, now switchable:
| * Make page loading faster by deferred script loading:Michael Letzgus2017-05-202-0/+41
| | | | | | | | | | | | | | | | * 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>
* | Remove OC_App:installAppMorris Jobke2017-05-151-27/+2
|/ | | | | | | | | * uses Installer->installApp now * removes unused code * fixes #4453 * added some additional checks Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Correctly calculate used space for quota with external storageArdinis2017-05-121-1/+1
| | | | | | issue #4348 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Setup root FS for multibucket object storageMorris Jobke2017-05-101-1/+46
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Fix missing placeholder for doc linkJoas Schilling2017-05-101-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix escaped HTML on error pagesMorris Jobke2017-05-081-12/+8
| | | | | | * fixes #4655 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Add function to request SVG or regular fallback imageLukas Reschke2017-05-081-7/+10
| | | | | | Fixes https://github.com/nextcloud/server/issues/4647 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* ensure theming app is loaded when showing an error pageRobin Appelman2017-05-061-0/+5
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Merge pull request #4620 from nextcloud/preview-error-handlingRoeland Jago Douma2017-05-021-4/+4
|\ | | | | better handling of preview generation errors
| * better handling of preview generation errorsRobin Appelman2017-05-021-4/+4
| | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Update documentation go.php URL to 12Lukas Reschke2017-05-021-1/+1
|/ | | | | | Fixes https://github.com/nextcloud/server/issues/4646 Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Merge pull request #4515 from nextcloud/downstream-27643Morris Jobke2017-04-261-8/+1
|\ | | | | Adjust query/event logging code in favour of more complex owncloud/di…
| * Adjust query/event logging code in favour of more complex ↵Piotr Mrówczyński2017-04-261-8/+1
| | | | | | | | | | | | | | owncloud/diagnostics (#27643) * Adjust query/event logging code in favour of more complex owncloud/diagnostics * Add descriptions to IQueryLogger and IEventLogger interfaces
* | Merge pull request #4526 from nextcloud/downstream-27269Morris Jobke2017-04-261-0/+6
|\ \ | | | | | | Don`t allow upload of files with extension .part
| * | Use regex to detect part filesVincent Petry2017-04-261-2/+2
| | |
| * | #7496 Don`t allow upload of files with extension .partIlja Neumann2017-04-261-0/+6
| |/
* / Add app bundlesLukas Reschke2017-04-261-2/+4
|/ | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Refactor auth methodsJörn Friedrich Dreyer2017-04-262-14/+10
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* 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>
* Responsive app menuJulius Härtl2017-04-251-68/+0
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Implement scss variable injection by OC_DefaultsJulius Haertl2017-04-251-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Julius Haertl <jus@bitgrid.net> Add Scss variables to example theme and theming app Signed-off-by: Julius Haertl <jus@bitgrid.net> Use SCSSCacher to build theming css Signed-off-by: Julius Härtl <jus@bitgrid.net> Update theming.scss Signed-off-by: Julius Härtl <jus@bitgrid.net> Code cleanup Signed-off-by: Julius Härtl <jus@bitgrid.net> Fix tests Signed-off-by: Julius Härtl <jus@bitgrid.net> Inject SCSSCacher for easier testing Signed-off-by: Julius Härtl <jus@bitgrid.net> Fix typehint Signed-off-by: Lukas Reschke <lukas@statuscode.ch> Generate absolute URLs Signed-off-by: Lukas Reschke <lukas@statuscode.ch> Fix tests to always use absolute urls for theming images Signed-off-by: Julius Härtl <jus@bitgrid.net> MailheaderColor -> ColorPrimary Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #4443 from nextcloud/cleanup-unused-importsJoas Schilling2017-04-241-1/+0
|\ | | | | Remove unused use statements
| * Remove unused use statementsMorris Jobke2017-04-221-1/+0
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Remove unused variablesMorris Jobke2017-04-221-1/+0
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Fix translationsJoas Schilling2017-04-181-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix casing of same origin frame optionJoas Schilling2017-04-121-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #4256 from nextcloud/themingLukas Reschke2017-04-113-2/+21
|\ | | | | Move OC_Defaults to OCP\Defaults
| * Move OC_Defaults to OCP\DefaultsMorris Jobke2017-04-093-2/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
* | Lowercase "data" correctlyJoas Schilling2017-04-101-6/+6
| | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | removed path to datadirKawohl2017-04-041-13/+13
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Redirect to 2FA selection screenChristoph Wurst2017-04-031-2/+2
| | | | | | | | | | | | Apps like 'rainloop' use \OCP\Util::isLoggedIn() to check whether the current request is authenticated. Since we redirected to the index page before, it resulted in an infinite redirection loop. This change sets the redirection URL to the 2FA selection page, which is the only allowed page in that authentication state. Fixes https://github.com/nextcloud/server/issues/3702 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>