You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by sh...@apache.org on 2019/10/09 08:11:00 UTC

[unomi] branch master updated (2cfef87 -> b6f6fa4)

This is an automated email from the ASF dual-hosted git repository.

shuber pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git.


    from 2cfef87  Merge pull request #102 from apache/UNOMI-250-refactor-services-impl
     add 2f877b5  UNOMI-249 New shell commands to make plugin development easier The following shell dev commands have been added: - List events - Search for events by profile Id and type - Remove a profile - Remove a rule - Remove a segment - View a segment - Undeploy definitions provided by a plugin - Added the possibility to deploy all the definitions contained in a plugin with the deploy-definition command.
     add 0f8e769  UNOMI-249 New shell commands to make plugin development easier Updated documentation for the new commands.
     add 9d32116  UNOMI-249 New shell commands to make plugin development easier Updated documentation for the new commands.
     new b6f6fa4  Merge pull request #101 from apache/UNOMI-249-new-shell-commands

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 manual/src/main/asciidoc/shell-commands.adoc       |  37 +++-
 .../unomi/shell/commands/DeployDefinition.java     | 245 +++------------------
 .../shell/commands/DeploymentCommandSupport.java   | 232 +++++++++++++++++++
 .../commands/{SessionList.java => EventList.java}  |  55 +++--
 .../apache/unomi/shell/commands/EventSearch.java   |  99 +++++++++
 .../{RuleResetStats.java => ProfileRemove.java}    |  16 +-
 .../{RuleResetStats.java => RuleRemove.java}       |  12 +-
 .../{SegmentView.java => SegmentRemove.java}       |  28 ++-
 .../apache/unomi/shell/commands/SegmentView.java   |   2 +-
 .../unomi/shell/commands/UndeployDefinition.java   | 111 ++++++++++
 10 files changed, 571 insertions(+), 266 deletions(-)
 create mode 100644 tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/DeploymentCommandSupport.java
 copy tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/{SessionList.java => EventList.java} (61%)
 create mode 100644 tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/EventSearch.java
 copy tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/{RuleResetStats.java => ProfileRemove.java} (69%)
 copy tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/{RuleResetStats.java => RuleRemove.java} (74%)
 copy tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/{SegmentView.java => SegmentRemove.java} (55%)
 create mode 100644 tools/shell-dev-commands/src/main/java/org/apache/unomi/shell/commands/UndeployDefinition.java


[unomi] 01/01: Merge pull request #101 from apache/UNOMI-249-new-shell-commands

Posted by sh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

shuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git

commit b6f6fa4fe0c2c19283f4ad3547cbbab895f592d9
Merge: 2cfef87 9d32116
Author: Serge Huber <sh...@jahia.com>
AuthorDate: Wed Oct 9 10:10:55 2019 +0200

    Merge pull request #101 from apache/UNOMI-249-new-shell-commands
    
    UNOMI-249 New shell commands to make plugin development easier

 manual/src/main/asciidoc/shell-commands.adoc       |  37 +++-
 .../unomi/shell/commands/DeployDefinition.java     | 245 +++------------------
 .../shell/commands/DeploymentCommandSupport.java   | 232 +++++++++++++++++++
 .../org/apache/unomi/shell/commands/EventList.java |  78 +++++++
 .../apache/unomi/shell/commands/EventSearch.java   |  99 +++++++++
 .../{SegmentView.java => ProfileRemove.java}       |  22 +-
 .../commands/{SegmentView.java => RuleRemove.java} |  22 +-
 .../{SegmentView.java => SegmentRemove.java}       |  28 ++-
 .../apache/unomi/shell/commands/SegmentView.java   |   2 +-
 .../unomi/shell/commands/UndeployDefinition.java   | 111 ++++++++++
 10 files changed, 620 insertions(+), 256 deletions(-)