You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2020/08/09 11:58:34 UTC

[incubator-streampipes] branch STREAMPIPES-145 updated (a49b053 -> d27265d)

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

riemer pushed a change to branch STREAMPIPES-145
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git.


    from a49b053  [STREAMPIPES-79] Automatically resize data explorer widgets
     add 8478a5f  [STREAMPIPES-185] add consul service and config registration in python wrapper
     add 1fa62ca  [STREAMPIPES-185] some minor changes to consul registration and refactoring
     add c76570e  [STREAMPIPES-187] initial work on rest endpoints
     add 86a7c35  updates to python wrapper README
     add bcfbfdb  [STREAMPIPES-187] defined api endpoint stubs
     add 67ca8d0  [STREAMPIPES-185][hotfix] remove print command
     add b2ac9a0  [STREAMPIPES-187] add template for welcome page
     add cf0423b  [hotfix] consolidated consul config and service registration
     add 8d0a842  Add apache headers to python wrapper
     new d27265d  Merge branch 'dev' into STREAMPIPES-145

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:
 streampipes-wrapper-python/README.md               |  31 ++++-
 streampipes-wrapper-python/requirements.txt        |  11 +-
 streampipes-wrapper-python/setup.py                |  10 +-
 streampipes-wrapper-python/streampipes/api.py      |  70 -----------
 .../streampipes/api/__init__.py                    |   6 +-
 .../streampipes/api/resources/__init__.py          |   6 +-
 .../streampipes/api/resources/base.py              | 128 +++++++++++++++++++++
 .../{helper.py => api/resources/dummy.py}          |  22 ++--
 .../{helper.py => api/resources/processor.py}      |  24 ++--
 .../streampipes/api/resources/welcome.py           |  45 ++++++++
 streampipes-wrapper-python/streampipes/api/rest.py |  49 ++++++++
 .../streampipes/api/templates/index.html           |  50 ++++++++
 .../streampipes/base/__init__.py                   |   6 +-
 .../{configuration.py => base/banner.py}           |   9 +-
 streampipes-wrapper-python/streampipes/core.py     |  34 ++----
 streampipes-wrapper-python/streampipes/declarer.py |  60 ++++++++++
 streampipes-wrapper-python/streampipes/manager.py  |  29 +----
 .../streampipes/model/__init__.py                  |   6 +-
 .../{helper.py => model/config_item.py}            |  25 ++--
 .../streampipes/model/pipeline_element_config.py   |  96 ++++++++++++++++
 .../streampipes/submitter.py                       |  40 +++++++
 .../streampipes/utils/__init__.py                  |   6 +-
 .../streampipes/utils/register.py                  |  71 ++++++++++++
 23 files changed, 657 insertions(+), 177 deletions(-)
 delete mode 100644 streampipes-wrapper-python/streampipes/api.py
 copy ui/.dockerignore => streampipes-wrapper-python/streampipes/api/__init__.py (96%)
 copy ui/.dockerignore => streampipes-wrapper-python/streampipes/api/resources/__init__.py (96%)
 create mode 100644 streampipes-wrapper-python/streampipes/api/resources/base.py
 copy streampipes-wrapper-python/streampipes/{helper.py => api/resources/dummy.py} (59%)
 copy streampipes-wrapper-python/streampipes/{helper.py => api/resources/processor.py} (68%)
 create mode 100644 streampipes-wrapper-python/streampipes/api/resources/welcome.py
 create mode 100644 streampipes-wrapper-python/streampipes/api/rest.py
 create mode 100644 streampipes-wrapper-python/streampipes/api/templates/index.html
 copy ui/.dockerignore => streampipes-wrapper-python/streampipes/base/__init__.py (96%)
 rename streampipes-wrapper-python/streampipes/{configuration.py => base/banner.py} (87%)
 create mode 100644 streampipes-wrapper-python/streampipes/declarer.py
 copy ui/.dockerignore => streampipes-wrapper-python/streampipes/model/__init__.py (96%)
 rename streampipes-wrapper-python/streampipes/{helper.py => model/config_item.py} (62%)
 create mode 100644 streampipes-wrapper-python/streampipes/model/pipeline_element_config.py
 create mode 100644 streampipes-wrapper-python/streampipes/submitter.py
 copy ui/.dockerignore => streampipes-wrapper-python/streampipes/utils/__init__.py (96%)
 create mode 100644 streampipes-wrapper-python/streampipes/utils/register.py


[incubator-streampipes] 01/01: Merge branch 'dev' into STREAMPIPES-145

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

riemer pushed a commit to branch STREAMPIPES-145
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit d27265d727d70fff74192c647ccc995699445e90
Merge: a49b053 8d0a842
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Sun Aug 9 13:58:12 2020 +0200

    Merge branch 'dev' into STREAMPIPES-145

 streampipes-wrapper-python/README.md               |  31 ++++-
 streampipes-wrapper-python/requirements.txt        |  11 +-
 streampipes-wrapper-python/setup.py                |  10 +-
 streampipes-wrapper-python/streampipes/api.py      |  70 -----------
 .../streampipes/{helper.py => api/__init__.py}     |  14 +--
 .../{helper.py => api/resources/__init__.py}       |  12 --
 .../streampipes/api/resources/base.py              | 128 +++++++++++++++++++++
 .../{helper.py => api/resources/dummy.py}          |  22 ++--
 .../{helper.py => api/resources/processor.py}      |  24 ++--
 .../streampipes/api/resources/welcome.py           |  45 ++++++++
 streampipes-wrapper-python/streampipes/api/rest.py |  49 ++++++++
 .../streampipes/api/templates/index.html           |  50 ++++++++
 .../streampipes/{helper.py => base/__init__.py}    |  12 --
 .../{configuration.py => base/banner.py}           |   9 +-
 streampipes-wrapper-python/streampipes/core.py     |  34 ++----
 streampipes-wrapper-python/streampipes/declarer.py |  60 ++++++++++
 streampipes-wrapper-python/streampipes/manager.py  |  29 +----
 .../streampipes/{helper.py => model/__init__.py}   |  12 --
 .../{helper.py => model/config_item.py}            |  25 ++--
 .../streampipes/model/pipeline_element_config.py   |  96 ++++++++++++++++
 .../streampipes/submitter.py                       |  40 +++++++
 .../streampipes/{helper.py => utils/__init__.py}   |  12 --
 .../streampipes/utils/register.py                  |  71 ++++++++++++
 23 files changed, 648 insertions(+), 218 deletions(-)