stable

Clone or download

Read-only

Have a welcome message within the application

If you are site administrator or regular user, it's hard to guess what to do next when you get on your personal dashboard. So we display a message to better guide people in their very first steps. This part of request #10421: Better Tuleap defaults for new comers Change-Id: I9cfc65cf5333de0c24fc9a067ba7b69f7d3f49d4

Modified Files

Name
A site-content/en_US/widget/my_welcome_message.mustache +17 −0 Go to diff View file
A site-content/en_US/widget/my_welcome_message_admin.mustache +42 −0 Go to diff View file
M site-content/fr_FR/LC_MESSAGES/tuleap-core.po +7 −1 Go to diff View file
A site-content/fr_FR/widget/my_welcome_message.mustache +15 −0 Go to diff View file
A site-content/fr_FR/widget/my_welcome_message_admin.mustache +23 −0 Go to diff View file
M site-content/tuleap-core.pot +6 −0 Go to diff View file
M src/common/Dashboard/Widget/Add/AddWidgetController.php +2 −0 Go to diff View file
M src/common/autoload.php +6 −2 Go to diff View file
A src/common/language/CustomContentNotFoundException.php +27 −0 Go to diff View file
A src/common/language/CustomizableContentLoader.php +62 −0 Go to diff View file
A src/common/templating/mustache/SiteContentRenderer.php +76 −0 Go to diff View file
A src/common/widget/MyWelcomeMessage.php +86 −0 Go to diff View file
M src/common/widget/WidgetFactory.php +3 −0 Go to diff View file
A tests/simpletest/common/language/CustomizableContentLoaderTest.php +95 −0 Go to diff View file
A tests/simpletest/common/language/_fixtures/customizable_loader/etc/site-content/en_US/foo/bar.mustache +1 −0 Go to diff View file
A tests/simpletest/common/language/_fixtures/customizable_loader/etc/site-content/fr_FR/foo/bar.mustache +1 −0 Go to diff View file
A tests/simpletest/common/language/_fixtures/customizable_loader/tuleap/site-content/en_US/foo/bar.mustache +1 −0 Go to diff View file
A tests/simpletest/common/language/_fixtures/customizable_loader/tuleap/site-content/fr_FR/foo/bar.mustache +1 −0 Go to diff View file
M tests/simpletest/common/user/UserTestBuilder.php +5 −0 Go to diff View file