Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 92D5911519 for ; Wed, 2 Jul 2014 14:17:48 +0000 (UTC) Received: (qmail 90781 invoked by uid 500); 2 Jul 2014 14:17:47 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 90718 invoked by uid 500); 2 Jul 2014 14:17:47 -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 89932 invoked by uid 99); 2 Jul 2014 14:17:46 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Jul 2014 14:17:46 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 9CFA69936A4; Wed, 2 Jul 2014 14:17:46 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: erikdebruin@apache.org To: commits@flex.apache.org Date: Wed, 02 Jul 2014 14:17:59 -0000 Message-Id: In-Reply-To: <2c573e95b1a64bd48e6a696f3c5f22ca@git.apache.org> References: <2c573e95b1a64bd48e6a696f3c5f22ca@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [14/18] git commit: [flex-sdk] [refs/heads/VF2JS] - Rename namespace. Rename namespace. Signed-off-by: Erik de Bruin Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/8798e2da Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/8798e2da Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/8798e2da Branch: refs/heads/VF2JS Commit: 8798e2da8b5de32a9fc241bb3b30e72033ed91a8 Parents: a4cce64 Author: Erik de Bruin Authored: Tue Jul 1 09:48:25 2014 +0200 Committer: Erik de Bruin Committed: Tue Jul 1 09:48:25 2014 +0200 ---------------------------------------------------------------------- .../src/vf2js_mx/components/Application.as | 35 ++++++++++++++++++++ .../vf2js_mx/src/vf2js_mx/components/Button.as | 33 ++++++++++++++++++ .../src/vf2js_s/components/Application.as | 35 -------------------- .../vf2js_mx/src/vf2js_s/components/Button.as | 33 ------------------ 4 files changed, 68 insertions(+), 68 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/8798e2da/frameworks/projects/vf2js_mx/src/vf2js_mx/components/Application.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/vf2js_mx/src/vf2js_mx/components/Application.as b/frameworks/projects/vf2js_mx/src/vf2js_mx/components/Application.as new file mode 100644 index 0000000..51e3fd9 --- /dev/null +++ b/frameworks/projects/vf2js_mx/src/vf2js_mx/components/Application.as @@ -0,0 +1,35 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// 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. +// +//////////////////////////////////////////////////////////////////////////////// + +package vf2js_s.components +{ + +public class Application +{ + //-------------------------------------------------------------------------- + // + // Constructor + // + //-------------------------------------------------------------------------- + + public function Application() {} + +} + +} http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/8798e2da/frameworks/projects/vf2js_mx/src/vf2js_mx/components/Button.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/vf2js_mx/src/vf2js_mx/components/Button.as b/frameworks/projects/vf2js_mx/src/vf2js_mx/components/Button.as new file mode 100644 index 0000000..1b66982 --- /dev/null +++ b/frameworks/projects/vf2js_mx/src/vf2js_mx/components/Button.as @@ -0,0 +1,33 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// 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. +// +//////////////////////////////////////////////////////////////////////////////// + +package vf2js_s.components +{ + +public class Button +{ + + public function Button() {} + + public var label:String; + + public var x:Number; + +} +} http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/8798e2da/frameworks/projects/vf2js_mx/src/vf2js_s/components/Application.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/vf2js_mx/src/vf2js_s/components/Application.as b/frameworks/projects/vf2js_mx/src/vf2js_s/components/Application.as deleted file mode 100644 index 51e3fd9..0000000 --- a/frameworks/projects/vf2js_mx/src/vf2js_s/components/Application.as +++ /dev/null @@ -1,35 +0,0 @@ -//////////////////////////////////////////////////////////////////////////////// -// -// 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. -// -//////////////////////////////////////////////////////////////////////////////// - -package vf2js_s.components -{ - -public class Application -{ - //-------------------------------------------------------------------------- - // - // Constructor - // - //-------------------------------------------------------------------------- - - public function Application() {} - -} - -} http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/8798e2da/frameworks/projects/vf2js_mx/src/vf2js_s/components/Button.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/vf2js_mx/src/vf2js_s/components/Button.as b/frameworks/projects/vf2js_mx/src/vf2js_s/components/Button.as deleted file mode 100644 index 1b66982..0000000 --- a/frameworks/projects/vf2js_mx/src/vf2js_s/components/Button.as +++ /dev/null @@ -1,33 +0,0 @@ -//////////////////////////////////////////////////////////////////////////////// -// -// 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. -// -//////////////////////////////////////////////////////////////////////////////// - -package vf2js_s.components -{ - -public class Button -{ - - public function Button() {} - - public var label:String; - - public var x:Number; - -} -}