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 F301B18C6F for ; Sun, 20 Dec 2015 13:13:45 +0000 (UTC) Received: (qmail 22250 invoked by uid 500); 20 Dec 2015 13:13:43 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 22182 invoked by uid 500); 20 Dec 2015 13:13:43 -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 21421 invoked by uid 99); 20 Dec 2015 13:13:42 -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; Sun, 20 Dec 2015 13:13:42 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 68A93DF97F; Sun, 20 Dec 2015 13:13:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: cdutz@apache.org To: commits@flex.apache.org Date: Sun, 20 Dec 2015 13:14:03 -0000 Message-Id: In-Reply-To: <330292c867d14437a9b25816c3fc936e@git.apache.org> References: <330292c867d14437a9b25816c3fc936e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [23/51] [partial] flex-blazeds git commit: Removed legacy directories and made the content of the modules directory the new root - Please use the maven build for now as the Ant build will no longer work untill it is adjusted to the new directory structur http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/bf2e1dc9/apps/team/features/withoutui/messaging_withoutUI.as ---------------------------------------------------------------------- diff --git a/apps/team/features/withoutui/messaging_withoutUI.as b/apps/team/features/withoutui/messaging_withoutUI.as deleted file mode 100755 index d226c70..0000000 --- a/apps/team/features/withoutui/messaging_withoutUI.as +++ /dev/null @@ -1,145 +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 -{ - import flash.display.Sprite; - import flash.events.Event; - import flash.text.TextField; - - import mx.collections.ArrayCollection; - import mx.collections.ArrayList; - import mx.core.mx_internal; - import mx.events.PropertyChangeEvent; - import mx.messaging.ChannelSet; - import mx.messaging.Consumer; - import mx.messaging.Producer; - import mx.messaging.channels.AMFChannel; - import mx.messaging.config.ConfigMap; - import mx.messaging.config.LoaderConfig; - import mx.messaging.events.ChannelFaultEvent; - import mx.messaging.events.MessageAckEvent; - import mx.messaging.events.MessageEvent; - import mx.messaging.events.MessageFaultEvent; - import mx.messaging.messages.AcknowledgeMessage; - import mx.messaging.messages.AcknowledgeMessageExt; - import mx.messaging.messages.AsyncMessage; - import mx.messaging.messages.AsyncMessageExt; - import mx.messaging.messages.CommandMessage; - import mx.messaging.messages.CommandMessageExt; - import mx.messaging.messages.ErrorMessage; - import mx.messaging.messages.HTTPRequestMessage; - import mx.messaging.messages.MessagePerformanceInfo; - import mx.utils.ObjectProxy; - import mx.utils.ObjectUtil; - import mx.utils.RpcClassAliasInitializer; - - use namespace mx_internal; - - /** - * A messaging sample that does not use any Flex UI classes. To get this working, - * first the url of LoaderConfig needs to be set due to BLZ-522 bug. Then, some - * classes need to be registered with Flash, see the registerClassAliases method. - */ - public class messaging_withoutUI extends Sprite - { - private static const CHANNEL_ID:String = "my-amf-poll"; - private static const CHANNEL_URL:String = "http://localhost:8400/team/messagebroker/myamfpoll"; - private static const DESTINATION_ID:String = "messaging_AMF_Poll"; - - private var channelSet:ChannelSet; - private var producer:Producer; - private var consumer:Consumer; - private var text:TextField; - - public function messaging_withoutUI() - { - RpcClassAliasInitializer.registerClassAliases(); - - setupChannelSet(); - setupProducer(); - setupConsumer(); - consumer.subscribe(); - - text = new TextField(); - text.border = true; - text.width = 300; - text.text = "initializing. . ."; - addChild(text); - - } - - private function consumerMsgHandler(event:Event):void - { - trace("Consumer received msg: " + ObjectUtil.toString(event)); - text.text = "Consumer received message: " + (event as MessageEvent).message.body; - } - - private function consumerPropChangeHandler(event:PropertyChangeEvent):void - { - // Make sure the ack is for a subscribe operation. - if(event.property == "subscribed" && consumer.subscribed) - { - // Send the message. - var msg:AsyncMessage = new AsyncMessage(); - msg.body = "hello"; - producer.send(msg); - } - } - - private function setupChannelSet():void - { - channelSet = new ChannelSet(); - var channel:AMFChannel = new AMFChannel(CHANNEL_ID, CHANNEL_URL); - channel.pollingEnabled = true; - channel.pollingInterval = 2000; - channelSet.addChannel(channel); - } - - private function setupConsumer():void - { - consumer = new Consumer(); - consumer.channelSet = channelSet; - consumer.destination = DESTINATION_ID; - consumer.addEventListener(MessageEvent.MESSAGE, consumerMsgHandler); - consumer.addEventListener(ChannelFaultEvent.FAULT, faultHandler); - consumer.addEventListener(MessageFaultEvent.FAULT, faultHandler); - consumer.addEventListener(PropertyChangeEvent.PROPERTY_CHANGE, consumerPropChangeHandler); - } - - private function setupProducer():void - { - producer = new Producer(); - producer.channelSet = channelSet; - producer.destination = DESTINATION_ID; - producer.addEventListener(MessageAckEvent.ACKNOWLEDGE, producerAckHandler); - producer.addEventListener(MessageFaultEvent.FAULT, faultHandler); - } - - private function producerAckHandler(event:Event):void - { - trace("Producer received ack: " + ObjectUtil.toString(event)); - } - - private function faultHandler(event:Event):void - { - trace("Server fault: " + ObjectUtil.toString(event)); - } - - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/bf2e1dc9/apps/team/features/withoutui/remoting_withoutUI.as ---------------------------------------------------------------------- diff --git a/apps/team/features/withoutui/remoting_withoutUI.as b/apps/team/features/withoutui/remoting_withoutUI.as deleted file mode 100755 index a6f3d51..0000000 --- a/apps/team/features/withoutui/remoting_withoutUI.as +++ /dev/null @@ -1,116 +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 -{ - import flash.display.Sprite; - import flash.events.Event; - import flash.text.TextField; - - import mx.collections.ArrayCollection; - import mx.collections.ArrayList; - import mx.core.mx_internal; - import mx.events.PropertyChangeEvent; - import mx.messaging.ChannelSet; - import mx.messaging.Consumer; - import mx.messaging.Producer; - import mx.messaging.channels.AMFChannel; - import mx.messaging.config.ConfigMap; - import mx.messaging.config.LoaderConfig; - import mx.messaging.events.ChannelFaultEvent; - import mx.messaging.events.MessageAckEvent; - import mx.messaging.events.MessageEvent; - import mx.messaging.events.MessageFaultEvent; - import mx.messaging.messages.AcknowledgeMessage; - import mx.messaging.messages.AcknowledgeMessageExt; - import mx.messaging.messages.AsyncMessage; - import mx.messaging.messages.AsyncMessageExt; - import mx.messaging.messages.CommandMessage; - import mx.messaging.messages.CommandMessageExt; - import mx.messaging.messages.ErrorMessage; - import mx.messaging.messages.HTTPRequestMessage; - import mx.messaging.messages.MessagePerformanceInfo; - import mx.rpc.events.FaultEvent; - import mx.rpc.events.ResultEvent; - import mx.rpc.remoting.RemoteObject; - import mx.utils.ObjectProxy; - import mx.utils.ObjectUtil; - import mx.utils.RpcClassAliasInitializer; - - use namespace mx_internal; - - /** - * A messaging sample that does not use any Flex UI classes. To get this working, - * first the url of LoaderConfig needs to be set due to BLZ-522 bug. Then, some - * classes need to be registered with Flash, see the registerClassAliases method. - */ - public class remoting_withoutUI extends Sprite - { - private static const CHANNEL_ID:String = "my-amf"; - private static const CHANNEL_URL:String = "http://localhost:8400/team/messagebroker/amf"; - private static const DESTINATION_ID:String = "remoting_AMF"; - - private var channelSet:ChannelSet; - private var ro:RemoteObject; - private var text:TextField; - - public function remoting_withoutUI() - { - RpcClassAliasInitializer.registerClassAliases(); - - setupChannelSet(); - setupRO(); - - text = new TextField(); - text.border = true; - text.width = 300; - text.text = "initializing. . ."; - addChild(text); - - ro.echo("hello"); - } - - private function resultHandler(event:Event):void - { - trace("RemoteObject received result: " + ObjectUtil.toString(event)); - text.text = "RemoteObject receives result: " + (event as ResultEvent).message.body; - } - - private function setupChannelSet():void - { - channelSet = new ChannelSet(); - var channel:AMFChannel = new AMFChannel(CHANNEL_ID, CHANNEL_URL); - channelSet.addChannel(channel); - } - - private function setupRO():void - { - ro = new RemoteObject(); - ro.channelSet = channelSet; - ro.destination = DESTINATION_ID; - ro.addEventListener(ResultEvent.RESULT, resultHandler); - ro.addEventListener(ChannelFaultEvent.FAULT, faultHandler); - ro.addEventListener(FaultEvent.FAULT, faultHandler); - } - - private function faultHandler(event:Event):void - { - trace("Server fault: " + ObjectUtil.toString(event)); - } - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/bf2e1dc9/collateral/blazeds-bin-readme.htm ---------------------------------------------------------------------- diff --git a/collateral/blazeds-bin-readme.htm b/collateral/blazeds-bin-readme.htm deleted file mode 100755 index bc556c1..0000000 --- a/collateral/blazeds-bin-readme.htm +++ /dev/null @@ -1,270 +0,0 @@ - - - - - -BlazeDS Binary Readme - - - - - - -
- -

 

- -

BlazeDS Binary Distribution

- -

 

- -

This BlazeDS Binary distribution includes -the Adobe BlazeDS web application whose licenses are described below:

- -

 

- -

 

- -

Adobe BlazeDS License -Information:

- -

 

- -

� -2004-2008 Adobe Systems Incorporated. All rights reserved.

- -

 

- -

This -program is free software: you can redistribute it and/or modify it under the -terms of the GNU Lesser General Public License, Version 3, as published by the -Free Software Foundation.

- -

 

- -

This -program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE.� See the GNU Lesser General Public License for more -details.

- -

 

- -

You -should have received a copy of the GNU Lesser General Public License along with -this program.� If not, see http://www.gnu.org/licenses/.

- -

 

- -

You -shall not disclaim warranty or limit liability differently from the terms of -Sections 15 and 16 of the GNU General Public License, Version 3, which is -incorporated into the GNU Lesser General Public License.

- -

 

- -

You -shall preserve all legal notices or author attributions in the program.

- -

 

- -

You -shall not misrepresent the original version of the program, and you shall mark -all modified versions of the program in reasonable ways to show the differences -from the original version of the program.

- -

- -

In -accordance with Section 7(f) of the GNU General Public License, Version 3, -which is incorporated into the GNU Lesser General Public License, certain -portions of this program are licensed under Apache 2.0 which requires the -indemnification of the author or licensors of the software licensed under -Apache 2.0 license by those who convey the program.

- -

If -you have any questions regarding this agreement or if you wish to request any -information from Adobe please use the address and contact information included -with this program to contact the Adobe office serving your jurisdiction.

- -

 

- -

By -downloading, using, modifying, distributing and/or accessing the program, you -agree to the GNU Lesser General Public License, Version 3.

- -

 

- -

The name “BlazeDS” and the BlazeDS logo must not be used to endorse or promote products derived from this software without prior written permission from Adobe.  Similarly, products derived from this open source software may not be called "BlazeDS", nor may "BlazeDS" appear in their name or the BlazeDS logo appear with such products, without prior written permission of Adobe.

- -

 

- -

NOTICES -RELATED TO CERTAIN THIRD PARTY MATERIALS:

- -

 

- -

Apache -1.1 Licensed Products:�

- -

 

- -

This -product includes software listed below that were developed by the Apache -Software Foundation (http://www.apache.org/).� Such software is licensed under -the Apache Software License, Version 1.1; you may obtain a copy of such license -at� http://apache.org/licenses/LICENSE-1.1.

- -

 

- -

- -Apache Commons

- -

�� --- commons-codec-1.3.jar

- -

�� --- commons-fileupload-1.1.jar

- -

�� --- commons-httpclient-3.0.1.jar

- -

�� --- commons-io-1.1.jar

- -

 

- -

- Apache -Velocity

- -

�� --- mm-velocity-1.4.jar

- -

 

- -

- -Apache XML

- -

�� --- xalan.jar (version 2.5.2)

- -

 

- -

 

- -

Creative -Commons Licensed Products:

- -

 

- -

This -software uses the java.util.concurrent (concurrent.jar version 1.3.3) API and -the backport of java.util.concurrent API. Both packages are public-domain -sources from the JSR 166 CVS repository, the dl.util.concurrent package, and -the Doug Lea's collections package.backport-util-concurrent.jar (version 2.2) -The license terms of these packages can be found here -(http://creativecommons.org:81/licenses/publicdomain/).

- -

 

- -

 

- -

GNU -LGPLv.2.1 Licensed Products:

- -

 

- -

This -software uses the JGroups toolkit library for reliable multicast communication -(jgroups.jar).� Such JGroups library is licensed under� the GNU Lesser General -Public License, Version 2.1, a copy of which is included with such library.� -You may also obtain a copy of such license at http://www.gnu.org/licenses/.��

- - -
- - - - http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/bf2e1dc9/collateral/blazeds-src-readme.htm ---------------------------------------------------------------------- diff --git a/collateral/blazeds-src-readme.htm b/collateral/blazeds-src-readme.htm deleted file mode 100755 index 5b25237..0000000 --- a/collateral/blazeds-src-readme.htm +++ /dev/null @@ -1,558 +0,0 @@ - - - - - -BlazeDS Source Readme - - - - - - -
- -

 

- -

BlazeDS Source Distribution

- -

 

- -

This BlazeDS Source Distribution includes -the Adobe BlazeDS and Adobe Flex SDK, which are each licensed under separate -licenses as described below:

- -

 

- -

 

- -

Adobe BlazeDS License -Information:

- -

 

- -

� -2004-2008 Adobe Systems Incorporated. All rights reserved.

- -

 

- -

This -program is free software: you can redistribute it and/or modify it under the -terms of the GNU Lesser General Public License, Version 3, as published by the -Free Software Foundation.

- -

 

- -

This -program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE.� See the GNU Lesser General Public License for more -details.

- -

 

- -

You -should have received a copy of the GNU Lesser General Public License along with -this program.� If not, see http://www.gnu.org/licenses/.

- -

 

- -

You -shall not disclaim warranty or limit liability differently from the terms of -Sections 15 and 16 of the GNU General Public License, Version 3, which is -incorporated into the GNU Lesser General Public License.

- -

 

- -

You -shall preserve all legal notices or author attributions in the program.

- -

 

- -

You -shall not misrepresent the original version of the program, and you shall mark -all modified versions of the program in reasonable ways to show the differences -from the original version of the program.

- -

- -

In -accordance with Section 7(f) of the GNU General Public License, Version 3, -which is incorporated into the GNU Lesser General Public License, certain -portions of this program are licensed under Apache 2.0 which requires the -indemnification of the author or licensors of the software licensed under -Apache 2.0 license by those who convey the program.

- -

If -you have any questions regarding this agreement or if you wish to request any -information from Adobe please use the address and contact information included -with this program to contact the Adobe office serving your jurisdiction.

- -

 

- -

By -downloading, using, modifying, distributing and/or accessing the program, you -agree to the GNU Lesser General Public License, Version 3.

- -

 

- -

The name “BlazeDS” and the BlazeDS logo must not be used to endorse or promote products derived from this software without prior written permission from Adobe.  Similarly, products derived from this open source software may not be called "BlazeDS", nor may "BlazeDS" appear in their name or the BlazeDS logo appear with such products, without prior written permission of Adobe.

- -

 

- -

NOTICES -RELATED TO CERTAIN THIRD PARTY MATERIALS:

- -

 

- -

Apache -1.1 Licensed Products:�

- -

 

- -

This -product includes software listed below that were developed by the Apache -Software Foundation (http://www.apache.org/).� Such software is licensed under -the Apache Software License, Version 1.1; you may obtain a copy of such license -at� http://apache.org/licenses/LICENSE-1.1.

- -

 

- -

- -Apache Commons

- -

�� --- commons-codec-1.3.jar

- -

�� --- commons-fileupload-1.1.jar

- -

�� --- commons-httpclient-3.0.1.jar

- -

�� --- commons-io-1.1.jar

- -

 

- -

- Apache -Velocity

- -

�� --- mm-velocity-1.4.jar

- -

 

- -

- -Apache XML

- -

�� --- xalan.jar (version 2.5.2)

- -

 

- -

 

- -

Apache -2.0 Licensed Products:�

- -

 

- -

This -product includes software listed below that were licensed 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.

- -

 

- -

- -Apache Tomcat

- -

�� --- Apache Tomcat 6.0.29

- -

 

- -

 

- -

Creative -Commons Licensed Products:

- -

 

- -

This -software uses the java.util.concurrent (concurrent.jar version 1.3.3) API and -the backport of java.util.concurrent API. Both packages are public-domain -sources from the JSR 166 CVS repository, the dl.util.concurrent package, and -the Doug Lea's collections package.backport-util-concurrent.jar (version 2.2) -The license terms of these packages can be found here -(http://creativecommons.org:81/licenses/publicdomain/).

- -

 

- -

 

- -

GNU -LGPLv.2.1 Licensed Products:

- -

 

- -

This -software uses the JGroups toolkit library for reliable multicast communication -(jgroups.jar).� Such JGroups library is licensed under� the GNU Lesser General -Public License, Version 2.1, a copy of which is included with such library.� -You may also obtain a copy of such license at http://www.gnu.org/licenses/.��

- -

 

- -

 

- -

Hypersonic -Licensed Products:�

- -

 

- -

This -software uses the Hypersonic Java SQL database engine (hsqldb.jar version -1.8.0) which is licensed under the Hypersonic license (http://hsqldb.org/web/hsqlLicense.html), -the text of which is provided below:

- -

For -content, code, and products originally developed by Thomas Mueller and the -Hypersonic SQL Group:
-
-Copyright (c) 1995-2000 by the Hypersonic SQL Group.
-All rights reserved.

- -

Redistribution -and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this
-list of conditions and the following disclaimer.
-
-Redistributions in binary form must reproduce the above copyright notice,
-this list of conditions and the following disclaimer in the documentation
-and/or other materials provided with the distribution.
-
-Neither the name of the Hypersonic SQL Group nor the names of its
-contributors may be used to endorse or promote products derived from this
-software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS"AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THEIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL GROUP,� OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE -GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT -OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

- -

This -software consists of voluntary contributions made by many individuals on behalf -of the
-Hypersonic SQL Group.

- -

For work added by -the HSQL Development Group (a.k.a. hsqldb_lic.txt):

- -

Copyright -(c) 2001-2005, The HSQL Development Group
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this
-list of conditions and the following disclaimer.
-
-Redistributions in binary form must reproduce the above copyright notice,
-this list of conditions and the following disclaimer in the documentation
-and/or other materials provided with the distribution.
-
-Neither the name of the HSQL Development Group nor the names of its
-contributors may be used to endorse or promote products derived from this
-software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,� OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY -OF SUCH DAMAGE.

- -

- -

 

- -

 

- -

 

- -

 

- -

Adobe Flex SDK License -Information:

- -

 

- -

Adobe -Flex SDK License Agreement:

- -

 

- -

All -files contained in the Adobe Flex SDK are subject to and governed by the Adobe -Flex SDK License Agreement specified here: Adobe -Flex SDK License Agreement, EXCEPT those files specifically -identified below as �Mozilla Public License Files�.�

- -

 

- -

By downloading, -modifying, distributing, using and/or accessing any files in this directory, -you agree to the terms and conditions of the applicable end user license -agreement.

- -

 

- -

In -addition to the Adobe license terms, you also agree to be bound by the third-party -terms specified here: Third Party -Software Notices. Adobe recommends that you review these third-party terms.

- -

 

- -

Mozilla -Public License Files:

- -

 

- -

The -files located in the following directory locations of the Adobe Flex SDK are -governed by the �Mozilla Public License Version 1.1� found below.�

- -

 

- -

ant
-asdoc
-frameworks/javascript
-frameworks/locale
-frameworks/projects
-frameworks/themes

- -

 

- -

The -contents of such above files are subject to the Mozilla Public License Version -1.1 (the "License"); you may not use these files except in compliance -with the License. You may obtain a copy of the License here: Mozilla Public License Version 1.1 or http://www.mozilla.org/MPL/.

- -
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
 
The Original Code consists of the files listed above.
 
- -

The -Initial Developer of the Original Code is Adobe Systems Incorporated.

- -

By -downloading, modifying, distributing, using and/or accessing any files in this -directory, you agree to the terms and conditions of the applicable end user -license agreement.

- -

NOTICES -RELATED TO CERTAIN THIRD PARTY MATERIALS:

- -

Apache -1.1 Licensed Products:�

- -

 

- -

This -product includes software listed below that were developed by the Apache -Software Foundation (http://www.apache.org/).� -Such software is licensed under the Apache Software License, Version 1.1; you -may obtain a copy of such license at http://apache.org/licenses/LICENSE-1.1.

- -

Apache -Commons Collections 2.1
-Apache Commons Discovery 0.2
-Apache Xerces 2.4

- -

Apache 2.0 Licensed Products:�

- -

This -product includes software listed below that were licensed 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.

- -

Apache -Axis 1.1, � 2001-2004, Apache Software Foundation
-Apache Batik SVG Toolkit 1.6, � 2005, Apache Software Foundation
-Apache Commons Logging 1.0.4, � 2004, Apache Software Foundation
-Apache Velocity 1.4, � 2004, Apache Software Foundation
-Apache Xalan 2.6.0, � 2004, Apache Software Foundation

- -

BSD -Licensed Products:

- -

Easing -Equations Copyright (c) 2001-2003, Robert Penner

- -

All -rights reserved.

- -

Redistribution -and use in source and binary forms, with or without modification, are permitted -provided that the following conditions are met:

- -

         -Redistributions of source code -must retain the above copyright notice, this list of conditions and the -following disclaimer.

- -

         -Redistributions in binary form -must reproduce the above copyright notice, this list of conditions and the -following disclaimer in the documentation and/or other materials provided with -the distribution.

- -

         -Neither the name of the -<ORGANIZATION> nor the names of its contributors may be used to endorse -or promote products derived from this software without specific prior written -permission.

- -

THIS -SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

- -

 

- -
- - - - http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/bf2e1dc9/collateral/blazeds-turnkey-readme.htm ---------------------------------------------------------------------- diff --git a/collateral/blazeds-turnkey-readme.htm b/collateral/blazeds-turnkey-readme.htm deleted file mode 100755 index 638b85f..0000000 --- a/collateral/blazeds-turnkey-readme.htm +++ /dev/null @@ -1,557 +0,0 @@ - - - - - -BlazeDS Turnkey Readme - - - - - - -
- -

 

- -

BlazeDS Turnkey

- -

 

- -

This BlazeDS Turnkey includes -the Adobe BlazeDS and Adobe Flex SDK, which are each licensed under separate -licenses as described below:

- -

 

- -

 

- -

Adobe BlazeDS License -Information:

- -

 

- -

� -2004-2008 Adobe Systems Incorporated. All rights reserved.

- -

 

- -

This -program is free software: you can redistribute it and/or modify it under the -terms of the GNU Lesser General Public License, Version 3, as published by the -Free Software Foundation.

- -

 

- -

This -program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE.� See the GNU Lesser General Public License for more -details.

- -

 

- -

You -should have received a copy of the GNU Lesser General Public License along with -this program.� If not, see http://www.gnu.org/licenses/.

- -

 

- -

You -shall not disclaim warranty or limit liability differently from the terms of -Sections 15 and 16 of the GNU General Public License, Version 3, which is -incorporated into the GNU Lesser General Public License.

- -

 

- -

You -shall preserve all legal notices or author attributions in the program.

- -

 

- -

You -shall not misrepresent the original version of the program, and you shall mark -all modified versions of the program in reasonable ways to show the differences -from the original version of the program.

- -

- -

In -accordance with Section 7(f) of the GNU General Public License, Version 3, -which is incorporated into the GNU Lesser General Public License, certain -portions of this program are licensed under Apache 2.0 which requires the -indemnification of the author or licensors of the software licensed under -Apache 2.0 license by those who convey the program.

- -

If -you have any questions regarding this agreement or if you wish to request any -information from Adobe please use the address and contact information included -with this program to contact the Adobe office serving your jurisdiction.

- -

 

- -

By -downloading, using, modifying, distributing and/or accessing the program, you -agree to the GNU Lesser General Public License, Version 3.

-

 

-

The name “BlazeDS” and the BlazeDS logo must not be used to endorse or promote products derived from this software without prior written permission from Adobe.  Similarly, products derived from this open source software may not be called "BlazeDS", nor may "BlazeDS" appear in their name or the BlazeDS logo appear with such products, without prior written permission of Adobe.

-

 

- -

 

- -

NOTICES -RELATED TO CERTAIN THIRD PARTY MATERIALS:

- -

 

- -

Apache -1.1 Licensed Products:�

- -

 

- -

This -product includes software listed below that were developed by the Apache -Software Foundation (http://www.apache.org/).� Such software is licensed under -the Apache Software License, Version 1.1; you may obtain a copy of such license -at� http://apache.org/licenses/LICENSE-1.1.

- -

 

- -

- -Apache Commons

- -

�� --- commons-codec-1.3.jar

- -

�� --- commons-fileupload-1.1.jar

- -

�� --- commons-httpclient-3.0.1.jar

- -

�� --- commons-io-1.1.jar

- -

 

- -

- Apache -Velocity

- -

�� --- mm-velocity-1.4.jar

- -

 

- -

- -Apache XML

- -

�� --- xalan.jar (version 2.5.2)

- -

 

- -

 

- -

Apache -2.0 Licensed Products:�

- -

 

- -

This -product includes software listed below that were licensed 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.

- -

 

- -

- -Apache Tomcat

- -

�� --- Apache Tomcat 6.0.29

- -

 

- -

 

- -

Creative -Commons Licensed Products:

- -

 

- -

This -software uses the java.util.concurrent (concurrent.jar version 1.3.3) API and -the backport of java.util.concurrent API. Both packages are public-domain -sources from the JSR 166 CVS repository, the dl.util.concurrent package, and -the Doug Lea's collections package.backport-util-concurrent.jar (version 2.2) -The license terms of these packages can be found here -(http://creativecommons.org:81/licenses/publicdomain/).

- -

 

- -

 

- -

GNU -LGPLv.2.1 Licensed Products:

- -

 

- -

This -software uses the JGroups toolkit library for reliable multicast communication -(jgroups.jar).� Such JGroups library is licensed under� the GNU Lesser General -Public License, Version 2.1, a copy of which is included with such library.� -You may also obtain a copy of such license at http://www.gnu.org/licenses/.��

- -

 

- -

 

- -

Hypersonic -Licensed Products:�

- -

 

- -

This -software uses the Hypersonic Java SQL database engine (hsqldb.jar version -1.8.0) which is licensed under the Hypersonic license (http://hsqldb.org/web/hsqlLicense.html), -the text of which is provided below:

- -

For -content, code, and products originally developed by Thomas Mueller and the -Hypersonic SQL Group:
-
-Copyright (c) 1995-2000 by the Hypersonic SQL Group.
-All rights reserved.

- -

Redistribution -and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this
-list of conditions and the following disclaimer.
-
-Redistributions in binary form must reproduce the above copyright notice,
-this list of conditions and the following disclaimer in the documentation
-and/or other materials provided with the distribution.
-
-Neither the name of the Hypersonic SQL Group nor the names of its
-contributors may be used to endorse or promote products derived from this
-software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS"AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THEIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL GROUP,� OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE -GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT -OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

- -

This -software consists of voluntary contributions made by many individuals on behalf -of the
-Hypersonic SQL Group.

- -

For work added by -the HSQL Development Group (a.k.a. hsqldb_lic.txt):

- -

Copyright -(c) 2001-2005, The HSQL Development Group
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-Redistributions of source code must retain the above copyright notice, this
-list of conditions and the following disclaimer.
-
-Redistributions in binary form must reproduce the above copyright notice,
-this list of conditions and the following disclaimer in the documentation
-and/or other materials provided with the distribution.
-
-Neither the name of the HSQL Development Group nor the names of its
-contributors may be used to endorse or promote products derived from this
-software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,� OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT -OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY -OF SUCH DAMAGE.

- -

- -

 

- -

 

- -

 

- -

 

- -

Adobe Flex SDK License -Information:

- -

 

- -

Adobe -Flex SDK License Agreement:

- -

 

- -

All -files contained in the Adobe Flex SDK are subject to and governed by the Adobe -Flex SDK License Agreement specified here: Adobe -Flex SDK License Agreement, EXCEPT those files specifically -identified below as �Mozilla Public License Files�.�

- -

 

- -

By downloading, -modifying, distributing, using and/or accessing any files in this directory, -you agree to the terms and conditions of the applicable end user license -agreement.

- -

 

- -

In -addition to the Adobe license terms, you also agree to be bound by the third-party -terms specified here: Third Party -Software Notices. Adobe recommends that you review these third-party terms.

- -

 

- -

Mozilla -Public License Files:

- -

 

- -

The -files located in the following directory locations of the Adobe Flex SDK are -governed by the �Mozilla Public License Version 1.1� found below.�

- -

 

- -

ant
-asdoc
-frameworks/javascript
-frameworks/locale
-frameworks/projects
-frameworks/themes

- -

 

- -

The -contents of such above files are subject to the Mozilla Public License Version -1.1 (the "License"); you may not use these files except in compliance -with the License. You may obtain a copy of the License here: Mozilla Public License Version 1.1 or http://www.mozilla.org/MPL/.

- -
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
 
The Original Code consists of the files listed above.
 
- -

The -Initial Developer of the Original Code is Adobe Systems Incorporated.

- -

By -downloading, modifying, distributing, using and/or accessing any files in this -directory, you agree to the terms and conditions of the applicable end user -license agreement.

- -

NOTICES -RELATED TO CERTAIN THIRD PARTY MATERIALS:

- -

Apache -1.1 Licensed Products:�

- -

 

- -

This -product includes software listed below that were developed by the Apache -Software Foundation (http://www.apache.org/).� -Such software is licensed under the Apache Software License, Version 1.1; you -may obtain a copy of such license at http://apache.org/licenses/LICENSE-1.1.

- -

Apache -Commons Collections 2.1
-Apache Commons Discovery 0.2
-Apache Xerces 2.4

- -

Apache 2.0 Licensed Products:�

- -

This -product includes software listed below that were licensed 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.

- -

Apache -Axis 1.1, � 2001-2004, Apache Software Foundation
-Apache Batik SVG Toolkit 1.6, � 2005, Apache Software Foundation
-Apache Commons Logging 1.0.4, � 2004, Apache Software Foundation
-Apache Velocity 1.4, � 2004, Apache Software Foundation
-Apache Xalan 2.6.0, � 2004, Apache Software Foundation

- -

BSD -Licensed Products:

- -

Easing -Equations Copyright (c) 2001-2003, Robert Penner

- -

All -rights reserved.

- -

Redistribution -and use in source and binary forms, with or without modification, are permitted -provided that the following conditions are met:

- -

         -Redistributions of source code -must retain the above copyright notice, this list of conditions and the -following disclaimer.

- -

         -Redistributions in binary form -must reproduce the above copyright notice, this list of conditions and the -following disclaimer in the documentation and/or other materials provided with -the distribution.

- -

         -Neither the name of the -<ORGANIZATION> nor the names of its contributors may be used to endorse -or promote products derived from this software without specific prior written -permission.

- -

THIS -SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

- -

 

- -
- - - - http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/bf2e1dc9/common/build.xml ---------------------------------------------------------------------- diff --git a/common/build.xml b/common/build.xml new file mode 100755 index 0000000..a3a520d --- /dev/null +++ b/common/build.xml @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + ${ant.file} + + + + + + + + + + + + build=${build.number} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/bf2e1dc9/common/pom.xml ---------------------------------------------------------------------- diff --git a/common/pom.xml b/common/pom.xml new file mode 100755 index 0000000..8ee3926 --- /dev/null +++ b/common/pom.xml @@ -0,0 +1,59 @@ + + + 4.0.0 + + + org.apache.flex.blazeds + blazeds + 4.7.3-SNAPSHOT + ../pom.xml + + + flex-messaging-common + + + + xalan + xalan + 2.6.0 + + + + junit + junit + 3.8.2 + test + + + + + flex-messaging-common + src + + + src + + **/*.properties + + + + + +