From commits-return-8245-archive-asf-public=cust-asf.ponee.io@openwhisk.apache.org Fri Nov 1 14:06:55 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 0CD4B180626 for ; Fri, 1 Nov 2019 15:06:54 +0100 (CET) Received: (qmail 48096 invoked by uid 500); 1 Nov 2019 14:06:54 -0000 Mailing-List: contact commits-help@openwhisk.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwhisk.apache.org Delivered-To: mailing list commits@openwhisk.apache.org Received: (qmail 48082 invoked by uid 99); 1 Nov 2019 14:06:54 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Nov 2019 14:06:54 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 5157A805E6; Fri, 1 Nov 2019 14:06:54 +0000 (UTC) Date: Fri, 01 Nov 2019 14:06:53 +0000 To: "commits@openwhisk.apache.org" Subject: [openwhisk] branch master updated (528c53f -> 7062549) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157261721285.4479.8007346683717461175@gitbox.apache.org> From: rabbah@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: openwhisk X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 528c53fcbdc5d3058d093225d298a50059ce468a X-Git-Newrev: 7062549035eb45f376653ce2433fcbe70e6fd806 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. rabbah pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/openwhisk.git. from 528c53f Update to Scala 2.12.10 (#4694) new 81d6b4d A UI providing playground functionality for authoring functions and running them in the browser. new 7062549 Install and launch the Playground UI at startup. The 2 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: core/standalone/README.md | 69 +- .../playground/actions/playground-delete.js | 28 +- .../playground/actions/playground-fetch.js | 35 +- .../resources/playground/actions/playground-run.js | 72 ++ .../playground/actions/playground-userpackage.js | 60 ++ .../src/main/resources/playground/ui/index.html | 139 ++++ .../main/resources/playground/ui/playground.css | 228 ++++++ .../resources/playground/ui/playgroundFunctions.js | 799 +++++++++++++++++++++ .../openwhisk/core/ExecManifestSupport.scala | 14 +- .../openwhisk/standalone/PlaygroundLauncher.scala | 128 ++++ .../standalone/StandaloneDockerSupport.scala | 12 + .../openwhisk/standalone/StandaloneOpenWhisk.scala | 76 +- .../org/apache/openwhisk/standalone/Wsk.scala | 81 +++ docs/images/playground-ui.png | Bin 0 -> 62459 bytes .../standalone/StandaloneServerFixture.scala | 4 + 15 files changed, 1670 insertions(+), 75 deletions(-) copy common/scala/src/main/scala/org/apache/openwhisk/common/RingBuffer.scala => core/standalone/src/main/resources/playground/actions/playground-delete.js (53%) copy tests/dat/actions/helloDeadline.js => core/standalone/src/main/resources/playground/actions/playground-fetch.js (53%) create mode 100644 core/standalone/src/main/resources/playground/actions/playground-run.js create mode 100644 core/standalone/src/main/resources/playground/actions/playground-userpackage.js create mode 100644 core/standalone/src/main/resources/playground/ui/index.html create mode 100644 core/standalone/src/main/resources/playground/ui/playground.css create mode 100644 core/standalone/src/main/resources/playground/ui/playgroundFunctions.js copy common/scala/src/main/scala/org/apache/openwhisk/core/FeatureFlags.scala => core/standalone/src/main/scala/org/apache/openwhisk/core/ExecManifestSupport.scala (68%) create mode 100644 core/standalone/src/main/scala/org/apache/openwhisk/standalone/PlaygroundLauncher.scala create mode 100644 core/standalone/src/main/scala/org/apache/openwhisk/standalone/Wsk.scala create mode 100644 docs/images/playground-ui.png