You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2018/12/14 06:52:19 UTC

[incubator-superset] branch update-gitignore updated (8b2c6cd -> 5d125e8)

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

hugh pushed a change to branch update-gitignore
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from 8b2c6cd  Update .gitignore
     add 23a2ab1  Adding tests for time table, formatting, and annotations (#6498)
     add f366bbe  Google spreadsheets (#5915)
     add 8086224  [SIP-3] Scheduled email reports for Slices / Dashboards (#5294)
     add 56aa7ac  Typo: Fixed link (#6087)
     add 96a0105  Update contributing.md with latest local dev instructions (#6513)
     add d203886  Fix malformed table in docs/visualization.rst (#6409)
     add 852c512  Update requests version (#6510)
     add 1fba6f7  [warm] Enforcing consistent form-data (#6531)
     add 5d125e8  Merge branch 'master' into update-gitignore

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   9 +
 CONTRIBUTING.md                                    | 104 ++---
 docs/faq.rst                                       |   2 +-
 docs/installation.rst                              | 116 +++++-
 docs/visualization.rst                             |   2 +-
 requirements.txt                                   |  20 +-
 setup.py                                           |   6 +-
 .../explore/visualizations/index.test.js           |   2 +
 .../integration/explore/visualizations/line.js     |  65 +++
 .../integration/explore/visualizations/table.js    |  22 +
 .../explore/visualizations/time_table.js           |  88 ++++
 .../src/SqlLab/components/ExploreResultsButton.jsx |   3 +-
 .../assets/src/SqlLab/components/SouthPane.jsx     |   2 +-
 superset/config.py                                 |  91 ++++-
 superset/data/birth_names.py                       |  16 +-
 superset/db_engine_specs.py                        |   7 +
 .../6c7537a6004a_models_for_email_reports.py       |  69 ++++
 superset/models/__init__.py                        |   1 +
 superset/models/schedules.py                       |  93 +++++
 superset/sql_lab.py                                |   9 +-
 superset/tasks/__init__.py                         |   2 +
 superset/tasks/celery_app.py                       |  11 +
 superset/tasks/schedules.py                        | 441 +++++++++++++++++++++
 .../templates/superset/reports/slice_data.html     |  31 ++
 superset/utils/core.py                             |  33 +-
 superset/views/__init__.py                         |   1 +
 superset/views/core.py                             |  15 +-
 superset/views/schedules.py                        | 279 +++++++++++++
 tests/email_tests.py                               |  35 ++
 tests/fixtures/sample.png                          | Bin 0 -> 4481 bytes
 tests/fixtures/trends.csv                          |   3 +
 tests/schedules_test.py                            | 368 +++++++++++++++++
 tests/utils.py                                     |   8 +-
 33 files changed, 1857 insertions(+), 97 deletions(-)
 create mode 100644 superset/assets/cypress/integration/explore/visualizations/time_table.js
 create mode 100644 superset/migrations/versions/6c7537a6004a_models_for_email_reports.py
 create mode 100644 superset/models/schedules.py
 create mode 100644 superset/tasks/__init__.py
 create mode 100644 superset/tasks/celery_app.py
 create mode 100644 superset/tasks/schedules.py
 create mode 100644 superset/templates/superset/reports/slice_data.html
 create mode 100644 superset/views/schedules.py
 create mode 100644 tests/fixtures/sample.png
 create mode 100644 tests/fixtures/trends.csv
 create mode 100644 tests/schedules_test.py