You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by di...@apache.org on 2022/06/26 16:22:51 UTC

[airavata-sandbox] branch master updated (2971402f -> afdc0f19)

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

dimuthuupe pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-sandbox.git


    from 2971402f adding a placeholder for 2022 gsoc projects
     new 1313430c First phase of development
     new d2c47deb Updated README and requirements.txt
     new 0ad0a706 Updated README
     new afdc0f19 Merge pull request #59 from Mrsterius/jupyter

The 407 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:
 gsoc2022/jupyter-platform-dashboard/README.md      |    37 +
 .../backend/__pycache__/__init__.cpython-310.pyc   |   Bin 0 -> 640 bytes
 .../backend/__pycache__/app.cpython-310.pyc        |   Bin 0 -> 586 bytes
 .../backend/__pycache__/app.cpython-38.pyc         |   Bin 0 -> 3972 bytes
 .../backend/__pycache__/models.cpython-310.pyc     |   Bin 0 -> 785 bytes
 gsoc2022/jupyter-platform-dashboard/backend/app.py |   111 +
 .../backend/requirements.txt                       |     4 +
 .../jupyter-platform-dashboard/package-lock.json   | 17058 +++++++++++++++++++
 gsoc2022/jupyter-platform-dashboard/package.json   |    42 +
 .../jupyter-platform-dashboard/public/favicon.ico  |   Bin 0 -> 3870 bytes
 .../jupyter-platform-dashboard/public/index.html   |    43 +
 .../jupyter-platform-dashboard/public/logo192.png  |   Bin 0 -> 5347 bytes
 .../jupyter-platform-dashboard/public/logo512.png  |   Bin 0 -> 9664 bytes
 .../public/manifest.json                           |    25 +
 .../jupyter-platform-dashboard/public/robots.txt   |     3 +
 gsoc2022/jupyter-platform-dashboard/src/App.css    |    38 +
 gsoc2022/jupyter-platform-dashboard/src/App.js     |    13 +
 .../jupyter-platform-dashboard/src/App.test.js     |     8 +
 .../src/MainComponent/MainComponent.js             |   219 +
 .../src/MainComponent/index.js                     |     3 +
 gsoc2022/jupyter-platform-dashboard/src/index.css  |    13 +
 gsoc2022/jupyter-platform-dashboard/src/index.js   |    17 +
 gsoc2022/jupyter-platform-dashboard/src/logo.svg   |     1 +
 .../src/reportWebVitals.js                         |    13 +
 .../jupyter-platform-dashboard/src/setupTests.js   |     5 +
 25 files changed, 17653 insertions(+)
 create mode 100644 gsoc2022/jupyter-platform-dashboard/README.md
 create mode 100644 gsoc2022/jupyter-platform-dashboard/backend/__pycache__/__init__.cpython-310.pyc
 create mode 100644 gsoc2022/jupyter-platform-dashboard/backend/__pycache__/app.cpython-310.pyc
 create mode 100644 gsoc2022/jupyter-platform-dashboard/backend/__pycache__/app.cpython-38.pyc
 create mode 100644 gsoc2022/jupyter-platform-dashboard/backend/__pycache__/models.cpython-310.pyc
 create mode 100644 gsoc2022/jupyter-platform-dashboard/backend/app.py
 create mode 100644 gsoc2022/jupyter-platform-dashboard/backend/requirements.txt
 create mode 100644 gsoc2022/jupyter-platform-dashboard/package-lock.json
 create mode 100644 gsoc2022/jupyter-platform-dashboard/package.json
 create mode 100644 gsoc2022/jupyter-platform-dashboard/public/favicon.ico
 create mode 100644 gsoc2022/jupyter-platform-dashboard/public/index.html
 create mode 100644 gsoc2022/jupyter-platform-dashboard/public/logo192.png
 create mode 100644 gsoc2022/jupyter-platform-dashboard/public/logo512.png
 create mode 100644 gsoc2022/jupyter-platform-dashboard/public/manifest.json
 create mode 100644 gsoc2022/jupyter-platform-dashboard/public/robots.txt
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/App.css
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/App.js
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/App.test.js
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/MainComponent/MainComponent.js
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/MainComponent/index.js
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/index.css
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/index.js
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/logo.svg
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/reportWebVitals.js
 create mode 100644 gsoc2022/jupyter-platform-dashboard/src/setupTests.js