stable

Clone or download

Read-only

Add a reference

part of story #9770 cross refrences between Tuleap and Bugzilla You should be able to add and see new bugzilla references. For now you can't edit or update it Change-Id: I6cbff12ebe54ae8f3f5ea82dacda2b12c6f26013

Modified Files

Name
A plugins/bugzilla_reference/build-manifest.json +25 −0 Go to diff View file
A plugins/bugzilla_reference/db/install.sql +9 −0 Go to diff View file
A plugins/bugzilla_reference/db/uninstall.sql +1 −0 Go to diff View file
A plugins/bugzilla_reference/db/updates/2017/201704101334_add_bugzilla_reference_table.php +57 −0 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Administration/Controller.php +92 −4 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Administration/Presenter.php +38 −1 Go to diff View file
A plugins/bugzilla_reference/include/Bugzilla/Administration/ReferencePresenter.php +60 −0 Go to diff View file
M plugins/bugzilla_reference/include/Bugzilla/Administration/Router.php +9 −1 Go to diff View file
A plugins/bugzilla_reference/include/Bugzilla/Reference/Dao.php +53 −0 Go to diff View file
A plugins/bugzilla_reference/include/Bugzilla/Reference/KeywordIsAlreadyUsedException.php +25 −0 Go to diff View file
A plugins/bugzilla_reference/include/Bugzilla/Reference/KeywordIsInvalidException.php +25 −0 Go to diff View file
A plugins/bugzilla_reference/include/Bugzilla/Reference/Reference.php +71 −0 Go to diff View file
A plugins/bugzilla_reference/include/Bugzilla/Reference/ReferenceRetriever.php +70 −0 Go to diff View file
A plugins/bugzilla_reference/include/Bugzilla/Reference/ReferenceSaver.php +97 −0 Go to diff View file
A plugins/bugzilla_reference/include/Bugzilla/Reference/RequiredFieldEmptyException.php +25 −0 Go to diff View file
A plugins/bugzilla_reference/include/Bugzilla/Reference/ServerIsInvalidException.php +25 −0 Go to diff View file
M plugins/bugzilla_reference/include/autoload.php +12 −3 Go to diff View file
M plugins/bugzilla_reference/include/bugzilla_referencePlugin.class.php +55 −3 Go to diff View file
M plugins/bugzilla_reference/site-content/fr_FR/LC_MESSAGES/tuleap-bugzilla_reference.po +49 −0 Go to diff View file
M plugins/bugzilla_reference/site-content/tuleap-bugzilla_reference.pot +49 −0 Go to diff View file
A plugins/bugzilla_reference/templates/add-reference.mustache +61 −0 Go to diff View file
M plugins/bugzilla_reference/templates/reference-list.mustache +45 −4 Go to diff View file
A plugins/bugzilla_reference/www/scripts/bugzilla-reference.js +27 −0 Go to diff View file
A plugins/bugzilla_reference/www/themes/BurningParrot/css/_bugzilla_reference.scss +9 −0 Go to diff View file
A plugins/bugzilla_reference/www/themes/BurningParrot/css/style-blue.scss +22 −0 Go to diff View file
A plugins/bugzilla_reference/www/themes/BurningParrot/css/style-green.scss +22 −0 Go to diff View file
A plugins/bugzilla_reference/www/themes/BurningParrot/css/style-grey.scss +22 −0 Go to diff View file
A plugins/bugzilla_reference/www/themes/BurningParrot/css/style-orange.scss +22 −0 Go to diff View file
A plugins/bugzilla_reference/www/themes/BurningParrot/css/style-purple.scss +22 −0 Go to diff View file
A plugins/bugzilla_reference/www/themes/BurningParrot/css/style-red.scss +22 −0 Go to diff View file