Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-12-16Update all license headers for Nextcloud 21Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-11-30Store scss variables under a different prefix for each theming config versionJulius Härtl
The main issue with using the general theming- prefix is that with APCu caching the cache is not shared between processes, so when trying to reset the cache through the CLI, e.g. when updating the theming config the old cache is never invalidated. Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-11-23Optimize chek if background is themedJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-11-09Shortcut to avoid file system setup when generating the logo URLMorris Jobke
If an SVG is requested and the app config value for logoMime is set then the logo is there. Otherwise we need to check it and maybe also generate a PNG from the SVG (that's done in getImage() which needs to be called then). Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-10-29Remove ISection in favor of IIconSectionMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-10-20Fix theming manifest testsJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-10-05Format code to a single space around binary operatorsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-09-24Fix testsJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-08-24Update the license headers for Nextcloud 20Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-08-12Change PHPDoc type hint from PHPUnit_Framework_MockObject_MockObject to ↵Morris Jobke
\PHPUnit\Framework\MockObject\MockObject Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2020-06-26Fix PHP CSJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-06-26Precalculate the primary element color for dark mode tooJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2020-06-05Move theming js to initial stateRoeland Jago Douma
A bit more elegant. Plus it will allow us to also write a proper @nextcloud/theming package. To make life easier down the line for all. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-05-22compress some images with tinypng.comRuben Barkow-Kuder
Signed-off-by: Ruben Barkow-Kuder <github@r.z11.de> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
2020-04-29Update license headers for 19Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-10Format control structures, classes, methods and functionChristoph Wurst
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Unify function spacing to PSR2 recommendationChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Use exactly one empty line after the namespace declarationChristoph Wurst
For PSR2 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-04-09Fix (array) indent style to always use one tabChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-03-31Update the license headers for Nextcloud 19Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-03-27Merge pull request #20170 from nextcloud/techdebt/remove-unused-importsChristoph Wurst
Remove unused imports
2020-03-26Use the shorter phpunit syntax for mocked return valuesChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-03-26Remove unused importsChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-12-20Update license headers for 18Christoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-12-05Update license headersChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-12-04Fix the theming testsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-11-27Mode to modern phpunitRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-11-27Make phpunit8 compatibleRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-11-26add var for theming images , advanced options (#16815)John Molakvoæ
add var for theming images , advanced options
2019-11-24fix test for new css vars / logoheader and faviconGuillaume COMPAGNON
Signed-off-by: Guillaume COMPAGNON <gcompagnon@outlook.com>
2019-11-24add var for theming images , advanced optionsGuillaume COMPAGNON
Signed-off-by: Guillaume COMPAGNON <gcompagnon@outlook.com>
2019-11-22Some php-cs fixesRoeland Jago Douma
* Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-09-04CapabilitiesTests are not DB testsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-07-31Validate urls in theming settings and properly handle error messagesJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-03-27Fix light primary button stylingJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-03-20Revert "Where is your data?"Roeland Jago Douma
2019-02-18Add guest navigation typeJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2019-01-14Move server info to theming sectionMichael Weimann
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-10-04Adapts the theming util to the new core logo image pathMichael Weimann
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-10-03Fixes the logo testMichael Weimann
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-10-02Updates inverted logo handling to work like the app iconsMichael Weimann
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-10-02Moves the logo files to logoMichael Weimann
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-10-02Switches the default logo color depending on the primary colorMichael Weimann
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-09-05Disables SVG favicon uploads when imagemagick is missing.Michael Weimann
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
2018-08-30Fix capabilities testJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-08-30Make the default element color for bright theming colors lighterJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-08-27Theming: Fix footer testsJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-06-20Fixed theming testsJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-06-20Theming update on urlJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-06-15Merge pull request #9258 from nextcloud/theming-logo-pngMorris Jobke
Convert theming app logo to PNG to show it properly in emails