stable

Clone or download

Read-only

Merge 'gerrit #5484' into stable/master

* commit '09f4c0a': request #9025: Plugin tracker encryption

Modified Files

Name
M plugins/tracker/include/Tracker/Tracker.class.php +6 −3 Go to diff View file
M plugins/tracker/include/constants.php +17 −0 Go to diff View file
A plugins/tracker_encryption/README.mkd +11 −0 Go to diff View file
A plugins/tracker_encryption/VERSION +1 −0 Go to diff View file
A plugins/tracker_encryption/db/install.sql +10 −0 Go to diff View file
A plugins/tracker_encryption/db/uninstall.sql +5 −0 Go to diff View file
A plugins/tracker_encryption/include/EncryptionKeySettings_Presenter.class.php +64 −0 Go to diff View file
A plugins/tracker_encryption/include/Encryption_Manager.class.php +57 −0 Go to diff View file
A plugins/tracker_encryption/include/TrackerEncryption/Plugin/PluginDescriptor.php +35 −0 Go to diff View file
A plugins/tracker_encryption/include/TrackerEncryption/Plugin/PluginInfo.php +32 −0 Go to diff View file
A plugins/tracker_encryption/include/TrackerEncryption/Tracker_EncryptionException.class.php +24 −0 Go to diff View file
A plugins/tracker_encryption/include/Tracker_FormElement_Field_Encrypted.class.php +128 −0 Go to diff View file
A plugins/tracker_encryption/include/Tracker_Key.class.php +88 −0 Go to diff View file
A plugins/tracker_encryption/include/autoload.php +26 −0 Go to diff View file
A plugins/tracker_encryption/include/constants.php +22 −0 Go to diff View file
A plugins/tracker_encryption/include/dao/Tracker_Public_KeyDao.class.php +68 −0 Go to diff View file
A plugins/tracker_encryption/include/tracker_encryptionPlugin.class.php +148 −0 Go to diff View file
A plugins/tracker_encryption/site-content/en_US/tracker_encryption.tab +12 −0 Go to diff View file
A plugins/tracker_encryption/site-content/fr_FR/tracker_encryption.tab +12 −0 Go to diff View file
A plugins/tracker_encryption/templates/tracker-key-settings.mustache +37 −0 Go to diff View file
A plugins/tracker_encryption/www/index.php +31 −0 Go to diff View file
M tools/rpm/Makefile +2 −0 Go to diff View file
M tools/rpm/tuleap.rhel6.spec +14 −0 Go to diff View file