stable
Clone or download
Read-only
Merge commit 'refs/changes/96/4596/18' of ssh://gerrit.tuleap.net:29418/tuleap into stable
* ssh://gerrit.tuleap.net:29418/tuleap: story #6256: Create an artifact by email
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/tracker/README.emailgateway.mkd | +3 | −3 | Go to diff View file |
M | plugins/tracker/README.mkd | +0 | −7 | Go to diff View file |
M | plugins/tracker/bin/emailgateway-wrapper.sh | +1 | −1 | Go to diff View file |
M | plugins/tracker/bin/emailgateway.php | +25 | −6 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/IncomingMessage.class.php | +68 | −11 | Go to diff View file |
A | plugins/tracker/include/Tracker/Artifact/MailGateway/IncomingMessageFactory.php | +66 | −0 | Go to diff View file |
A | plugins/tracker/include/Tracker/Artifact/MailGateway/IncomingMessageInsecureBuilder.class.php | +100 | −0 | Go to diff View file |
A | plugins/tracker/include/Tracker/Artifact/MailGateway/IncomingMessageTokenBuilder.class.php | +61 | −0 | Go to diff View file |
A | plugins/tracker/include/Tracker/Artifact/MailGateway/InvalidMailHeadersException.class.php | +25 | −0 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/MailGateway.class.php | +101 | −9 | Go to diff View file |
A | plugins/tracker/include/Tracker/Artifact/MailGateway/MultipleUsersExistException.php | +26 | −0 | Go to diff View file |
A | plugins/tracker/include/Tracker/Artifact/MailGateway/Notifier.class.php | +88 | −0 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/MailGateway/Parser.class.php | +5 | −24 | Go to diff View file |
A | plugins/tracker/include/Tracker/Artifact/MailGateway/TrackerDoesNotExistException.class.php | +24 | −0 | Go to diff View file |
A | plugins/tracker/include/Tracker/Artifact/MailGateway/TrackerIdMissingException.class.php | +25 | −0 | Go to diff View file |
A | plugins/tracker/include/Tracker/Artifact/MailGateway/TrackerMissingSemanticException.class.php | +25 | −0 | Go to diff View file |
M | plugins/tracker/include/Tracker/Artifact/Tracker_Artifact.class.php | +1 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Semantic/Tracker_SemanticManager.class.php | +3 | −1 | Go to diff View file |
M | plugins/tracker/include/Tracker/Tracker.class.php | +79 | −18 | Go to diff View file |
A | plugins/tracker/include/Tracker/Tracker_ArtifactByEmailStatus.class.php | +107 | −0 | Go to diff View file |
M | plugins/tracker/include/TrackerPluginConfigController.php | +11 | −2 | Go to diff View file |
M | plugins/tracker/include/autoload.php | +12 | −2 | Go to diff View file |
M | plugins/tracker/include/trackerPlugin.class.php | +12 | −8 | Go to diff View file |
M | plugins/tracker/site-content/en_US/tracker.tab | +12 | −0 | Go to diff View file |
M | plugins/tracker/site-content/fr_FR/tracker.tab | +12 | −0 | Go to diff View file |
A | plugins/tracker/tests/Tracker/Artifact/MailGateway/IncomingMessageInsecureBuilderTest.php | +179 | −0 | Go to diff View file |
M | plugins/tracker/tests/Tracker/Artifact/MailGateway/MailGatewayTest.php | +34 | −13 | Go to diff View file |
R | plugins/tracker/tests/Tracker/Artifact/MailGateway/ParserTest.php | Go to diff View file | ||
M | plugins/tracker/tests/TrackerTest.php | +16 | −9 | Go to diff View file |
A | plugins/tracker/tests/Tracker_ArtifactByEmailStatusTest.php | +125 | −0 | Go to diff View file |
M | plugins/tracker/www/config.php | +2 | −1 | Go to diff View file |
M | src/common/autoload.php | +3 | −2 | Go to diff View file |
M | src/common/event/Event.class.php | +8 | −0 | Go to diff View file |
M | src/common/system_event/SystemEvent.class.php | +1 | −0 | Go to diff View file |
M | src/common/system_event/SystemEventManager.class.php | +4 | −0 | Go to diff View file |
A | src/common/system_event/include/SystemEvent_UPDATE_ALIASES.class.php | +33 | −0 | Go to diff View file |
M | tools/rpm/tuleap.rhel6.spec | +3 | −1 | Go to diff View file |
M | tools/rpm/tuleap.spec | +1 | −1 | Go to diff View file |