stable

Clone or download

Read-only

story #7290: be able to add custom tours on my forge

This is a rebase of all the commits for this story into a single commit Change-Id: I1531201ee01d54131ea88aec2887e83e63dcfd41

Modified Files

Name
M plugins/agiledashboard/include/agiledashboardPlugin.class.php +8 −0 Go to diff View file
M plugins/git/include/Git/URL.class.php +8 −1 Go to diff View file
M plugins/mediawiki/include/mediawikiPlugin.class.php +20 −0 Go to diff View file
M plugins/tracker/include/trackerPlugin.class.php +15 −0 Go to diff View file
M src/common/autoload.php +5 −2 Go to diff View file
M src/common/include/URL.class.php +11 −21 Go to diff View file
A src/common/tour/CustomToursFactory.class.php +235 −0 Go to diff View file
A src/common/tour/InvalidTourException.class.php +21 −0 Go to diff View file
M src/common/tour/TourFactory.class.php +23 −43 Go to diff View file
A src/common/tour/UnknownTourException.class.php +21 −0 Go to diff View file
M src/www/themes/FlamingParrot/FlamingParrot_Theme.class.php +7 −5 Go to diff View file
M src/www/tour/end-tour.php +1 −1 Go to diff View file
M src/www/tour/step-shown.php +1 −1 Go to diff View file
M tests/simpletest/common/include/URLTest.php +2 −2 Go to diff View file
M tests/simpletest/common/include/URLVerificationTest.php +27 −3 Go to diff View file
A tests/simpletest/common/tour/CustomToursFactoryTest.php +382 −0 Go to diff View file
M tests/simpletest/common/tour/TourFactoryTest.php +23 −32 Go to diff View file
A tests/simpletest/common/tour/_fixtures/es_CU/tour/my_invalid_tour.json +3 −0 Go to diff View file
A tests/simpletest/common/tour/_fixtures/es_CU/tour/my_second_invalid_tour.json +1 −0 Go to diff View file
A tests/simpletest/common/tour/_fixtures/es_CU/tour/my_second_valid_tour.json +20 −0 Go to diff View file
A tests/simpletest/common/tour/_fixtures/es_CU/tour/my_valid_tour.json +3 −0 Go to diff View file