stable

Clone or download

Read-only

Create the angular app

This is part of story #9087: see linked artifacts in releases How to test: - create a package and a release - click on the little 'text' icon next to the release's name to display the release notes and changelog. Nothing should have changed - install and activate the 'frs' plugin - run 'npm install && bower install && npm run build' in the 'plugins/frs/www/js/angular' folder - click on the 'text' icon again. You should no longer see the changelog and release note and if the angular app is loaded correctly, you should see 'IT WORKS ! release_id = <the id of your release>' displayed under the header. You should also see the background as light grey. Change-Id: Ib203e4e733d6378ecadd575777f8147a5cb1ed3f

Modified Files

Name
A plugins/frs/.editorconfig +17 −0 Go to diff View file
A plugins/frs/.gitignore +6 −0 Go to diff View file
M plugins/frs/ChangeLog +1 −1 Go to diff View file
A plugins/frs/Gruntfile.js +16 −0 Go to diff View file
A plugins/frs/include/FRS/ReleasePresenter.php +41 −0 Go to diff View file
M plugins/frs/include/autoload.php +4 −3 Go to diff View file
M plugins/frs/include/constants.php +1 −0 Go to diff View file
M plugins/frs/include/frsPlugin.class.php +53 −2 Go to diff View file
A plugins/frs/package.json +15 −0 Go to diff View file
A plugins/frs/templates/release.mustache +7 −0 Go to diff View file
A plugins/frs/www/js/angular/.bowerrc +3 −0 Go to diff View file
A plugins/frs/www/js/angular/.editorconfig +5 −0 Go to diff View file
A plugins/frs/www/js/angular/.eslintrc.json +228 −0 Go to diff View file
A plugins/frs/www/js/angular/.gitignore +10 −0 Go to diff View file
A plugins/frs/www/js/angular/Gruntfile.js +526 −0 Go to diff View file
A plugins/frs/www/js/angular/bower.json +14 −0 Go to diff View file
A plugins/frs/www/js/angular/build.config.js +82 −0 Go to diff View file
A plugins/frs/www/js/angular/karma/karma-unit.tpl.js +68 −0 Go to diff View file
A plugins/frs/www/js/angular/module.prefix +1 −0 Go to diff View file
A plugins/frs/www/js/angular/module.suffix +1 −0 Go to diff View file
A plugins/frs/www/js/angular/package.json +44 −0 Go to diff View file
A plugins/frs/www/js/angular/po/template.pot +5 −0 Go to diff View file
A plugins/frs/www/js/angular/src/app/app-controller.js +25 −0 Go to diff View file
A plugins/frs/www/js/angular/src/app/app-controller.spec.js +22 −0 Go to diff View file
A plugins/frs/www/js/angular/src/app/app.js +6 −0 Go to diff View file
A plugins/frs/www/js/angular/src/less/main.less +4 −0 Go to diff View file
A plugins/frs/www/themes/FlamingParrot/css/style.less +65 −0 Go to diff View file
A plugins/frs/www/themes/default/css/style.less +1 −0 Go to diff View file
M src/www/file/shownotes.php +49 −29 Go to diff View file
M tools/rpm/Makefile +6 −2 Go to diff View file