Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 916B8200C30 for ; Mon, 20 Feb 2017 16:32:56 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 902D0160B79; Mon, 20 Feb 2017 15:32:56 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 9E2AD160B76 for ; Mon, 20 Feb 2017 16:32:55 +0100 (CET) Received: (qmail 20102 invoked by uid 500); 20 Feb 2017 15:32:54 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 20084 invoked by uid 99); 20 Feb 2017 15:32:54 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Feb 2017 15:32:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B3040E0481; Mon, 20 Feb 2017 15:32:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: carlosrovira@apache.org To: commits@flex.apache.org Date: Mon, 20 Feb 2017 15:32:59 -0000 Message-Id: <4f559f07c0dd4ff9b70eb559a711f059@git.apache.org> In-Reply-To: <31f6ed2f936942c5936272299a3592a8@git.apache.org> References: <31f6ed2f936942c5936272299a3592a8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [6/9] git commit: [flex-asjs] [refs/heads/feature/amf] - RemoteObjectAMFTest project initial commit archived-at: Mon, 20 Feb 2017 15:32:56 -0000 RemoteObjectAMFTest project initial commit Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/5b3bb539 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/5b3bb539 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/5b3bb539 Branch: refs/heads/feature/amf Commit: 5b3bb539cb37d1bd90feafd98618a8cc2f5c0ba9 Parents: eebedf8 Author: Carlos Rovira Authored: Sat Feb 18 17:30:26 2017 +0100 Committer: Carlos Rovira Committed: Mon Feb 20 16:32:33 2017 +0100 ---------------------------------------------------------------------- .../RemoteObjectAMFTest/.vscode/tasks.json | 9 ++ .../flexjs/RemoteObjectAMFTest/asconfig.json | 14 +++ examples/flexjs/RemoteObjectAMFTest/build.xml | 61 ++++++++++++ examples/flexjs/RemoteObjectAMFTest/pom.xml | 98 ++++++++++++++++++++ .../RemoteObjectAMFTest/src/main/flex/App.mxml | 75 +++++++++++++++ .../main/resources/mdl-js-index-template.html | 33 +++++++ .../src/main/resources/mdl-styles.css | 24 +++++ 7 files changed, 314 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5b3bb539/examples/flexjs/RemoteObjectAMFTest/.vscode/tasks.json ---------------------------------------------------------------------- diff --git a/examples/flexjs/RemoteObjectAMFTest/.vscode/tasks.json b/examples/flexjs/RemoteObjectAMFTest/.vscode/tasks.json new file mode 100644 index 0000000..e562c32 --- /dev/null +++ b/examples/flexjs/RemoteObjectAMFTest/.vscode/tasks.json @@ -0,0 +1,9 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "0.1.0", + "command": "mvn", + "args": ["clean", "install", "-DskipTests"], + "isShellCommand": true, + "showOutput": "always" +} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5b3bb539/examples/flexjs/RemoteObjectAMFTest/asconfig.json ---------------------------------------------------------------------- diff --git a/examples/flexjs/RemoteObjectAMFTest/asconfig.json b/examples/flexjs/RemoteObjectAMFTest/asconfig.json new file mode 100644 index 0000000..76a3278 --- /dev/null +++ b/examples/flexjs/RemoteObjectAMFTest/asconfig.json @@ -0,0 +1,14 @@ +{ + "config": "flex", + "compilerOptions": { + "debug": true, + "source-map": true, + "js-output-type": "flexjs", + "output": "./target/javascript" + }, + "additionalOptions": "-html-template=src/main/resources/mdl-js-index-template.html -compiler.exclude-defaults-css-files=HTML.swc:defaults.css", + "files": + [ + "src/main/flex/App.mxml" + ] +} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5b3bb539/examples/flexjs/RemoteObjectAMFTest/build.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/RemoteObjectAMFTest/build.xml b/examples/flexjs/RemoteObjectAMFTest/build.xml new file mode 100644 index 0000000..8c8b891 --- /dev/null +++ b/examples/flexjs/RemoteObjectAMFTest/build.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5b3bb539/examples/flexjs/RemoteObjectAMFTest/pom.xml ---------------------------------------------------------------------- diff --git a/examples/flexjs/RemoteObjectAMFTest/pom.xml b/examples/flexjs/RemoteObjectAMFTest/pom.xml new file mode 100644 index 0000000..36bbda6 --- /dev/null +++ b/examples/flexjs/RemoteObjectAMFTest/pom.xml @@ -0,0 +1,98 @@ + + + + 4.0.0 + + + org.apache.flex.flexjs.examples + examples-flexjs + 0.8.0-SNAPSHOT + + + RemoteObjectAMFTest + 0.8.0-SNAPSHOT + swf + + Apache Flex - FlexJS: Examples: FlexJS: RemoteObjectAMFTest + + + + indigo + pink + + + + src/main/flex + + + src/main/resources + true + + + + + org.apache.flex.flexjs.compiler + flexjs-maven-plugin + true + + App.mxml + ${basedir}/target/javascript/bin/js-debug/mdl-js-index-template.html + -compiler.exclude-defaults-css-files=HTML-0.8.0-SNAPSHOT.swc:defaults.css + + + + org.apache.maven.plugins + maven-war-plugin + + + org.codehaus.mojo + build-helper-maven-plugin + + + + + + + org.apache.flex.flexjs.framework + MaterialDesignLite + 0.8.0-SNAPSHOT + swc + + + + org.apache.flex.flexjs.framework + Network + 0.8.0-SNAPSHOT + swc + + + + + com.adobe.flash.framework + playerglobal + 20.0 + swc + provided + + + + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5b3bb539/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml b/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml new file mode 100644 index 0000000..eca7f52 --- /dev/null +++ b/examples/flexjs/RemoteObjectAMFTest/src/main/flex/App.mxml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5b3bb539/examples/flexjs/RemoteObjectAMFTest/src/main/resources/mdl-js-index-template.html ---------------------------------------------------------------------- diff --git a/examples/flexjs/RemoteObjectAMFTest/src/main/resources/mdl-js-index-template.html b/examples/flexjs/RemoteObjectAMFTest/src/main/resources/mdl-js-index-template.html new file mode 100644 index 0000000..308fddf --- /dev/null +++ b/examples/flexjs/RemoteObjectAMFTest/src/main/resources/mdl-js-index-template.html @@ -0,0 +1,33 @@ + + + + + + + + + + + + +${head} + + +${body} + + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/5b3bb539/examples/flexjs/RemoteObjectAMFTest/src/main/resources/mdl-styles.css ---------------------------------------------------------------------- diff --git a/examples/flexjs/RemoteObjectAMFTest/src/main/resources/mdl-styles.css b/examples/flexjs/RemoteObjectAMFTest/src/main/resources/mdl-styles.css new file mode 100644 index 0000000..00cac2b --- /dev/null +++ b/examples/flexjs/RemoteObjectAMFTest/src/main/resources/mdl-styles.css @@ -0,0 +1,24 @@ +/* +//////////////////////////////////////////////////////////////////////////////// +// +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +//////////////////////////////////////////////////////////////////////////////// +*/ + +@namespace "http://www.w3.org/1999/xhtml"; +@namespace js "library://ns.apache.org/flexjs/basic"; +@namespace mdl "library://ns.apache.org/flexjs/mdl";