stable

Clone or download

Read-only

Move language in a dedicated page

This is a first step for "Appearance & language" section. To not plump out too much the review, the other sections (themes, …) will be done later. Part of story #14552: User preferences goes Burning Parrot Change-Id: Iae1350ed58a544e6857910f4a4bbf7af47e94a7d

Modified Files

Name
M site-content/en_US/account/account.tab +0 −1 Go to diff View file
M site-content/fr_FR/LC_MESSAGES/tuleap-core.po +9 −0 Go to diff View file
M site-content/fr_FR/account/account.tab +0 −1 Go to diff View file
M src/common/Request/RouteCollector.php +28 −0 Go to diff View file
M src/common/User/Account/AccountTabPresenterCollection.php +1 −0 Go to diff View file
A src/common/User/Account/Appearance/AppareancePresenterBuilder.php +52 −0 Go to diff View file
A src/common/User/Account/Appearance/AppearancePresenter.php +56 −0 Go to diff View file
A src/common/User/Account/Appearance/LanguagePresenter.php +50 −0 Go to diff View file
A src/common/User/Account/Appearance/LanguagePresenterBuilder.php +61 −0 Go to diff View file
A src/common/User/Account/DisplayAppearanceController.php +102 −0 Go to diff View file
M src/common/User/Account/DisplayExperimentalController.php +0 −2 Go to diff View file
A src/common/User/Account/UpdateAppearancePreferences.php +99 −0 Go to diff View file
A src/common/User/Account/templates/appearance.mustache +41 −0 Go to diff View file
M src/common/User/Account/templates/experimental.mustache +1 −1 Go to diff View file
M src/common/User/PreferencesPresenter.class.php +0 −10 Go to diff View file
M src/common/User/User.class.php +2 −4 Go to diff View file
M src/templates/user/preferences.mustache +0 −13 Go to diff View file
M src/www/account/index.php +0 −11 Go to diff View file
M src/www/account/updateprefs.php +2 −11 Go to diff View file
M src/www/themes/common/tlp/doc/resources/forms/checkboxes/example.html +10 −0 Go to diff View file
M src/www/themes/common/tlp/doc/resources/forms/radios/example.html +10 −0 Go to diff View file
M src/www/themes/common/tlp/src/scss/components/_forms.scss +6 −0 Go to diff View file
A tests/phpunit/common/User/Account/Appearance/LanguagePresenterBuilderTest.php +61 −0 Go to diff View file
A tests/phpunit/common/User/Account/DisplayAppearanceControllerTest.php +111 −0 Go to diff View file
A tests/phpunit/common/User/Account/UpdateAppearancePreferencesTest.php +217 −0 Go to diff View file