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 041F0200BDE for ; Thu, 10 Nov 2016 10:23:16 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 02DCF160B10; Thu, 10 Nov 2016 09:23:16 +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 3FEE8160B1A for ; Thu, 10 Nov 2016 10:23:15 +0100 (CET) Received: (qmail 272 invoked by uid 500); 10 Nov 2016 09:23:11 -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 97922 invoked by uid 99); 10 Nov 2016 09:23:09 -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; Thu, 10 Nov 2016 09:23:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A1CB8EF9A0; Thu, 10 Nov 2016 09:23:09 +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: Thu, 10 Nov 2016 09:23:42 -0000 Message-Id: <5529206fb8864e7ead49ba043ffa57ff@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [35/53] git commit: [flex-asjs] [refs/heads/feature/mdl] - Merge branches 'feature-autobuild/example-maven-dirs' and 'feature/mdl' of https://git-wip-us.apache.org/repos/asf/flex-asjs into feature-autobuild/example-maven-dirs archived-at: Thu, 10 Nov 2016 09:23:16 -0000 Merge branches 'feature-autobuild/example-maven-dirs' and 'feature/mdl' of https://git-wip-us.apache.org/repos/asf/flex-asjs into feature-autobuild/example-maven-dirs Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/a54a76e2 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/a54a76e2 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/a54a76e2 Branch: refs/heads/feature/mdl Commit: a54a76e2130384b01bab17152374e2c3c4f2f446 Parents: 52d4f35 dd64210 Author: Christofer Dutz Authored: Tue Nov 8 16:13:28 2016 +0100 Committer: Christofer Dutz Committed: Tue Nov 8 16:13:28 2016 +0100 ---------------------------------------------------------------------- distribution/pom.xml | 6 + examples/flexjs/MDLExample/.vscode/launch.json | 21 ++ examples/flexjs/MDLExample/.vscode/tasks.json | 10 + examples/flexjs/MDLExample/asconfig.json | 14 + examples/flexjs/MDLExample/pom.xml | 118 ++++++++ .../flexjs/MDLExample/src/main/flex/App.mxml | 140 ++++++++++ .../MDLExample/src/main/resources/Unknown.jpg | Bin 0 -> 50531 bytes .../main/resources/mdl-js-index-template.html | 33 +++ .../src/main/resources/mdl-styles.css | 43 +++ examples/flexjs/pom.xml | 1 + examples/pom.xml | 6 +- .../MaterialDesignLite/.vscode/tasks.json | 10 + .../projects/MaterialDesignLite/build.xml | 116 ++++++++ frameworks/projects/MaterialDesignLite/pom.xml | 117 ++++++++ .../src/main/config/compile-as-config.xml | 87 ++++++ .../src/main/flex/MDLClasses.as | 37 +++ .../src/main/flex/org/apache/flex/mdl/Button.as | 230 ++++++++++++++++ .../src/main/flex/org/apache/flex/mdl/Card.as | 105 ++++++++ .../flex/org/apache/flex/mdl/CardActions.as | 80 ++++++ .../main/flex/org/apache/flex/mdl/CardMedia.as | 80 ++++++ .../main/flex/org/apache/flex/mdl/CardMenu.as | 80 ++++++ .../org/apache/flex/mdl/CardSupportingText.as | 80 ++++++ .../main/flex/org/apache/flex/mdl/CardTitle.as | 80 ++++++ .../main/flex/org/apache/flex/mdl/CheckBox.as | 161 +++++++++++ .../flex/org/apache/flex/mdl/RadioButton.as | 266 +++++++++++++++++++ .../src/main/flex/org/apache/flex/mdl/Slider.as | 262 ++++++++++++++++++ .../src/main/flex/org/apache/flex/mdl/Spacer.as | 65 +++++ .../main/flex/org/apache/flex/mdl/TextInput.as | 156 +++++++++++ .../flex/org/apache/flex/mdl/beads/Badge.as | 157 +++++++++++ .../flex/org/apache/flex/mdl/beads/Disabled.as | 98 +++++++ .../org/apache/flex/mdl/beads/TextPrompt.as | 151 +++++++++++ .../apache/flex/mdl/supportClasses/CardInner.as | 102 +++++++ .../src/main/resources/defaults.css | 33 +++ .../src/main/resources/mdl-as-manifest.xml | 26 ++ .../src/main/resources/mdl-manifest.xml | 41 +++ frameworks/projects/pom.xml | 1 + 36 files changed, 3010 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a54a76e2/examples/pom.xml ---------------------------------------------------------------------- diff --cc examples/pom.xml index 3c5398a,e0c8976..8d8751a --- a/examples/pom.xml +++ b/examples/pom.xml @@@ -97,13 -97,13 +97,13 @@@ - ${basedir}/target/javascript/bin/js-debug + ${compiler.output-dir} false - +