summaryrefslogtreecommitdiffstats
path: root/apps/theming
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-04-074-0/+8
|
* [tx-robot] updated from transifexNextcloud bot2018-04-052-0/+8
|
* [tx-robot] updated from transifexNextcloud bot2018-04-042-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-03-316-0/+10
|
* [tx-robot] updated from transifexNextcloud bot2018-03-302-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-03-2910-4/+42
|
* [tx-robot] updated from transifexNextcloud bot2018-03-28112-112/+114
|
* Merge pull request #8993 from nextcloud/theming-allow-ui-with-themeRoeland Jago Douma2018-03-273-6/+5
|\ | | | | Show UI when using a custom theme
| * Show UI when using a custom themeJulius Härtl2018-03-263-6/+5
| | | | | | | | | | | | Do not hide the theming app UI when using a custom theme besides it, but warn the users about some settings being overwritten by that. Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | [tx-robot] updated from transifexNextcloud bot2018-03-272-0/+2
| |
* | Fix testsJulius Härtl2018-03-261-1/+1
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | Clear any theming prefixed cache on cache buster increaseJulius Härtl2018-03-261-1/+1
|/ | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* [tx-robot] updated from transifexNextcloud bot2018-03-262-0/+6
|
* [tx-robot] updated from transifexNextcloud bot2018-03-254-0/+14
|
* [tx-robot] updated from transifexNextcloud bot2018-03-242-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2018-03-236-0/+14
|
* [tx-robot] updated from transifexNextcloud bot2018-03-228-0/+24
|
* [tx-robot] updated from transifexNextcloud bot2018-03-2192-354/+354
|
* Update ThemingControllerTest.phprakekniven2018-03-191-2/+2
| | | Adjusted test
* Update ThemingController.phprakekniven2018-03-191-1/+1
| | | Changed file according to discussion on PR.
* Update ThemingController.phprakekniven2018-03-161-3/+3
| | | | Changed wording according to discussion at Transifex. See https://www.transifex.com/nextcloud/nextcloud/translate/#de/$/121491259?issue=yes Aligned ending of error messages
* [tx-robot] updated from transifexNextcloud bot2018-03-152-0/+2
|
* [tx-robot] updated from transifexNextcloud bot2018-03-146-0/+6
|
* [tx-robot] updated from transifexNextcloud bot2018-03-1320-0/+20
|
* [tx-robot] updated from transifexNextcloud bot2018-03-1286-172/+172
|
* Merge pull request #8633 from nextcloud/rakekniven-i18n-fixMorris Jobke2018-03-112-2/+2
|\ | | | | Improved translation strings
| * Update ThemingControllerTest.phprakekniven2018-03-101-1/+1
| | | | | | Fixed tests for https://github.com/nextcloud/server/pull/8633
| * Update ThemingController.phprakekniven2018-03-101-1/+1
| | | | | | | | Improved translation string. Reported at Transifex. See https://www.transifex.com/nextcloud/nextcloud/translate/#de/$/121491256?issue=yes
* | [tx-robot] updated from transifexNextcloud bot2018-03-112-0/+2
|/
* Use cache prefix for theming as wellJulius Härtl2018-03-071-1/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix tests to use ICacheFactoryJulius Härtl2018-03-072-3/+3
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Move base url from global cache prefix to frontend related onesJulius Härtl2018-03-071-1/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* [tx-robot] updated from transifexNextcloud bot2018-03-062-2/+2
|
* Merge pull request #8601 from nextcloud/theming-fix-background-colorMorris Jobke2018-03-051-7/+5
|\ | | | | Remove too restrict check for background image/color
| * Remove to restrict check for background image/colorJulius Härtl2018-03-011-7/+5
| | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | [tx-robot] updated from transifexNextcloud bot2018-03-0410-0/+10
| |
* | Use correct input type for the url entryChristian Oliff2018-03-021-1/+1
| | | | | | Change `type="text"` to `type="url"`
* | [tx-robot] updated from transifexNextcloud bot2018-03-0212-2/+12
|/
* [tx-robot] updated from transifexNextcloud bot2018-03-0118-0/+18
|
* [tx-robot] updated from transifexNextcloud bot2018-02-282-2/+2
|
* Empty name not allowedSagorika Das2018-02-271-5/+32
| | | | | | Do not allow empty name in theming app. Signed-off-by: Sagorika Das <sagorika1996@gmail.com>
* Merge pull request #8463 from kyrofa/bugfix/8462/theming_app_outside_rootMorris Jobke2018-02-262-5/+34
|\ | | | | theming: handle not being in the serverroot
| * Remove null checkKyle Fazzari2018-02-251-7/+2
| | | | | | | | Signed-off-by: Kyle Fazzari <kyrofa@ubuntu.com>
| * Add mock to setupKyle Fazzari2018-02-241-16/+4
| | | | | | | | Signed-off-by: Kyle Fazzari <kyrofa@ubuntu.com>
| * theming: handle not being in the serverrootKyle Fazzari2018-02-202-3/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, the theming app assumes it's in the serverroot. However, with Nextcloud's flexibility regarding configurable app paths, this is not a safe assumption to make. If it happens to be an incorrect assumption, the theming app fails to work. Instead of relying on the serverroot, just use the path from the AppManager and utilize relative paths for assets from there. Fix #8462 Signed-off-by: Kyle Fazzari <kyrofa@ubuntu.com>
* | [tx-robot] updated from transifexNextcloud bot2018-02-232-0/+76
|/
* [tx-robot] updated from transifexNextcloud bot2018-02-194-2/+8
|
* [tx-robot] updated from transifexNextcloud bot2018-02-172-0/+4
|
* Fix info.xml files of shipped appsJoas Schilling2018-02-161-9/+11
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* [tx-robot] updated from transifexNextcloud bot2018-02-142-2/+2
|