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 077A010AEE for ; Fri, 27 Sep 2013 00:43:39 +0000 (UTC) Received: (qmail 38903 invoked by uid 500); 27 Sep 2013 00:43:38 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 38885 invoked by uid 500); 27 Sep 2013 00:43:38 -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 38879 invoked by uid 99); 27 Sep 2013 00:43:38 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Sep 2013 00:43:38 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6D5C890BA6E; Fri, 27 Sep 2013 00:43:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jmclean@apache.org To: commits@flex.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-sdk] [refs/heads/mobileexperimental] - Initial draft experimental mobile project structure. Date: Fri, 27 Sep 2013 00:43:38 +0000 (UTC) Updated Branches: refs/heads/mobileexperimental [created] 35c802c5f Initial draft experimental mobile project structure. Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/35c802c5 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/35c802c5 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/35c802c5 Branch: refs/heads/mobileexperimental Commit: 35c802c5fbaf9a25044da8ebe4e7f430519b8860 Parents: 54f51a3 Author: Justin Mclean Authored: Fri Sep 27 10:42:44 2013 +1000 Committer: Justin Mclean Committed: Fri Sep 27 10:42:44 2013 +1000 ---------------------------------------------------------------------- build.xml | 5 +- frameworks/build.xml | 13 +- .../projects/experimental_mobile/build.xml | 232 +++++++++++++++++++ .../experimental_mobile/bundle-config.xml | 52 +++++ .../bundles/da_DK/experimental.properties | 18 ++ .../bundles/de_CH/experimental.properties | 18 ++ .../bundles/de_DE/experimental.properties | 18 ++ .../bundles/el_GR/experimental.properties | 18 ++ .../bundles/en_AU/experimental.properties | 18 ++ .../bundles/en_CA/experimental.properties | 18 ++ .../bundles/en_GB/experimental.properties | 18 ++ .../bundles/en_US/experimental.properties | 18 ++ .../bundles/es_ES/experimental.properties | 18 ++ .../bundles/fi_FI/experimental.properties | 18 ++ .../bundles/fr_CH/experimental.properties | 18 ++ .../bundles/fr_FR/experimental.properties | 18 ++ .../bundles/it_IT/experimental.properties | 18 ++ .../bundles/ja_JP/experimental.properties | 18 ++ .../bundles/ko_KR/experimental.properties | 18 ++ .../bundles/nb_NO/experimental.properties | 18 ++ .../bundles/nl_NL/experimental.properties | 18 ++ .../bundles/pt_BR/experimental.properties | 18 ++ .../bundles/pt_PT/experimental.properties | 18 ++ .../bundles/ru_RU/experimental.properties | 18 ++ .../bundles/sv_SE/experimental.properties | 18 ++ .../bundles/zh_CN/experimental.properties | 18 ++ .../bundles/zh_TW/experimental.properties | 18 ++ .../experimental_mobile/compile-config.xml | 80 +++++++ .../projects/experimental_mobile/defaults.css | 20 ++ .../projects/experimental_mobile/manifest.xml | 29 +++ .../experimental_mobile/spark-manifest.xml | 49 ++++ .../src/ExperimentalMobileClasses.as | 30 +++ 32 files changed, 920 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 99160d8..b4a685d 100644 --- a/build.xml +++ b/build.xml @@ -491,6 +491,8 @@ + + @@ -893,7 +895,8 @@ - + + http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/build.xml ---------------------------------------------------------------------- diff --git a/frameworks/build.xml b/frameworks/build.xml index fc3f96b..ce42555 100644 --- a/frameworks/build.xml +++ b/frameworks/build.xml @@ -130,7 +130,7 @@ - + @@ -216,7 +216,8 @@ - + + @@ -243,6 +244,7 @@ --> + @@ -473,4 +476,8 @@ + + + + http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/build.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/build.xml b/frameworks/projects/experimental_mobile/build.xml new file mode 100644 index 0000000..4796850 --- /dev/null +++ b/frameworks/projects/experimental_mobile/build.xml @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundle-config.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundle-config.xml b/frameworks/projects/experimental_mobile/bundle-config.xml new file mode 100644 index 0000000..0fce3e0 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundle-config.xml @@ -0,0 +1,52 @@ + + + + + + ${env.PLAYERGLOBAL_HOME}/${playerglobal.version}/playerglobal.swc + ../../libs/framework.swc + ../../libs/spark.swc + ../../libs/mobile/mobilecomponents.swc + + + + + + + + ${locale} + + + + src + bundles/${locale} + + + + + + + + + experimental + + + ${playerglobal.version} + http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/da_DK/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/da_DK/experimental.properties b/frameworks/projects/experimental_mobile/bundles/da_DK/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/da_DK/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/de_CH/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/de_CH/experimental.properties b/frameworks/projects/experimental_mobile/bundles/de_CH/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/de_CH/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/de_DE/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/de_DE/experimental.properties b/frameworks/projects/experimental_mobile/bundles/de_DE/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/de_DE/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/el_GR/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/el_GR/experimental.properties b/frameworks/projects/experimental_mobile/bundles/el_GR/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/el_GR/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/en_AU/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/en_AU/experimental.properties b/frameworks/projects/experimental_mobile/bundles/en_AU/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/en_AU/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/en_CA/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/en_CA/experimental.properties b/frameworks/projects/experimental_mobile/bundles/en_CA/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/en_CA/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/en_GB/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/en_GB/experimental.properties b/frameworks/projects/experimental_mobile/bundles/en_GB/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/en_GB/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/en_US/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/en_US/experimental.properties b/frameworks/projects/experimental_mobile/bundles/en_US/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/en_US/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/es_ES/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/es_ES/experimental.properties b/frameworks/projects/experimental_mobile/bundles/es_ES/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/es_ES/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/fi_FI/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/fi_FI/experimental.properties b/frameworks/projects/experimental_mobile/bundles/fi_FI/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/fi_FI/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/fr_CH/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/fr_CH/experimental.properties b/frameworks/projects/experimental_mobile/bundles/fr_CH/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/fr_CH/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/fr_FR/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/fr_FR/experimental.properties b/frameworks/projects/experimental_mobile/bundles/fr_FR/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/fr_FR/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/it_IT/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/it_IT/experimental.properties b/frameworks/projects/experimental_mobile/bundles/it_IT/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/it_IT/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/ja_JP/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/ja_JP/experimental.properties b/frameworks/projects/experimental_mobile/bundles/ja_JP/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/ja_JP/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/ko_KR/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/ko_KR/experimental.properties b/frameworks/projects/experimental_mobile/bundles/ko_KR/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/ko_KR/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/nb_NO/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/nb_NO/experimental.properties b/frameworks/projects/experimental_mobile/bundles/nb_NO/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/nb_NO/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/nl_NL/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/nl_NL/experimental.properties b/frameworks/projects/experimental_mobile/bundles/nl_NL/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/nl_NL/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/pt_BR/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/pt_BR/experimental.properties b/frameworks/projects/experimental_mobile/bundles/pt_BR/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/pt_BR/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/pt_PT/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/pt_PT/experimental.properties b/frameworks/projects/experimental_mobile/bundles/pt_PT/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/pt_PT/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/ru_RU/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/ru_RU/experimental.properties b/frameworks/projects/experimental_mobile/bundles/ru_RU/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/ru_RU/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/sv_SE/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/sv_SE/experimental.properties b/frameworks/projects/experimental_mobile/bundles/sv_SE/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/sv_SE/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/zh_CN/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/zh_CN/experimental.properties b/frameworks/projects/experimental_mobile/bundles/zh_CN/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/zh_CN/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/bundles/zh_TW/experimental.properties ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/bundles/zh_TW/experimental.properties b/frameworks/projects/experimental_mobile/bundles/zh_TW/experimental.properties new file mode 100644 index 0000000..29940f7 --- /dev/null +++ b/frameworks/projects/experimental_mobile/bundles/zh_TW/experimental.properties @@ -0,0 +1,18 @@ +################################################################################ +## +## 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. +## +################################################################################ http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/compile-config.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/compile-config.xml b/frameworks/projects/experimental_mobile/compile-config.xml new file mode 100644 index 0000000..4e0ee97 --- /dev/null +++ b/frameworks/projects/experimental_mobile/compile-config.xml @@ -0,0 +1,80 @@ + + + + + true + + + ${env.PLAYERGLOBAL_HOME}/${playerglobal.version}/playerglobal.swc + ../../libs/framework.swc + ../../libs/spark.swc + ../../libs/textlayout.swc + ../../libs/mobile/mobilecomponents.swc + + + + Bindable + Managed + ChangeEvent + NonCommittingChangeEvent + Transient + SkinPart + + + + + + + + + http://flex.apache.org/experimental/ns + manifest.xml + + + library://ns.adobe.com/flex/spark + spark-manifest.xml + + + + + src + + + false + false + + + + http://flex.apache.org/experimental/ns + + + + ExperimentalMobileClasses + + + + defaults.css + defaults.css + + + bundles.properties + + ${playerglobal.version} + http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/defaults.css ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/defaults.css b/frameworks/projects/experimental_mobile/defaults.css new file mode 100644 index 0000000..66188a1 --- /dev/null +++ b/frameworks/projects/experimental_mobile/defaults.css @@ -0,0 +1,20 @@ +/* +* +* 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://flex.apache.org/experimental/ns"; +@namespace s "library://ns.adobe.com/flex/spark"; http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/manifest.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/manifest.xml b/frameworks/projects/experimental_mobile/manifest.xml new file mode 100644 index 0000000..4864d95 --- /dev/null +++ b/frameworks/projects/experimental_mobile/manifest.xml @@ -0,0 +1,29 @@ + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/spark-manifest.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/spark-manifest.xml b/frameworks/projects/experimental_mobile/spark-manifest.xml new file mode 100644 index 0000000..563a4cc --- /dev/null +++ b/frameworks/projects/experimental_mobile/spark-manifest.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/35c802c5/frameworks/projects/experimental_mobile/src/ExperimentalMobileClasses.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/experimental_mobile/src/ExperimentalMobileClasses.as b/frameworks/projects/experimental_mobile/src/ExperimentalMobileClasses.as new file mode 100644 index 0000000..76e561c --- /dev/null +++ b/frameworks/projects/experimental_mobile/src/ExperimentalMobileClasses.as @@ -0,0 +1,30 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// 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 +{ + internal class ExperimentalMobileClasses + { + /** + * @private + * This class is used to link additional classes into experimental.swc + * beyond those that are found by dependecy analysis starting + * from the classes specified in manifest.xml. + */ + } +}