mx4j/src/etc Apache-LICENSE.txt,NONE,1.1 BUILD-HOWTO.txt,NONE,1.1 Jetty-LICENSE.txt,NONE,1.1 Jython-LICENSE.txt,NONE,1.1 LICENSE.txt,NONE,1.1 README.txt,NONE,1.1 Apache-LICENSE,1.1,NONE BUILD-HOWTO,1.2,NONE Jetty-LICENSE,1.1,NONE Jython-LICENSE,1.1,NONE LICENSE,1.4,NONE README,1.15,NONE
Simone Bordet <[email protected]> Wed, 23 Feb 2005 13:04:45 +0000
| Newsgroups | gmane.comp.java.mx4j.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/mx4j/mx4j/src/etc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16669/src/etc Added Files: Apache-LICENSE.txt BUILD-HOWTO.txt Jetty-LICENSE.txt Jython-LICENSE.txt LICENSE.txt README.txt Removed Files: Apache-LICENSE BUILD-HOWTO Jetty-LICENSE Jython-LICENSE LICENSE README Log Message: Renamed appeding .txt, and updated licenses --- BUILD-HOWTO DELETED --- --- NEW FILE: Apache-LICENSE.txt --- /* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2001 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. 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. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Apache" and "Apache Software Foundation" and * "Apache BCEL" must not be used to endorse or promote products * derived from this software without prior written permission. For * written permission, please contact [email protected]. * * 5. Products derived from this software may not be called "Apache", * "Apache BCEL", nor may "Apache" appear in their name, without * prior written permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR * ITS 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 Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */ --- LICENSE DELETED --- --- NEW FILE: BUILD-HOWTO.txt --- Welcome to MX4J, an open source implementation of the Java(TM) Management Extensions (JMX) (JSR 3) and of the Java(TM) Management Extensions (JMX) remote API (JSR 160). For further information about JMX and JSR 3, see http://java.sun.com/jmx and http://jcp.org/en/jsr/detail?id=3 For further information about JMX remote and JSR 160, see http://java.sun.com/jmx and http://jcp.org/en/jsr/detail?id=160 Refer to the MX4J home page (http://mx4j.sourceforge.net) for new releases and further information about the MX4J project. For up-to-date documentation see http://mx4j.sourceforge.net/docs. Building MX4J from the sources ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To build an MX4J binary distribution from an MX4J source distribution, you must have a J2SE(TM) version 1.3 or later installed (see http://java.sun.com/j2se). Unpack the MX4J source distribution into a directory that will be referred to as $MX4J, and follow the instructions below. Building JSR 3 (Java Management Extensions) classes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * Download and install Ant version 1.5 or later from http://ant.apache.org The directory where Ant is installed will be referred to as $ANT_HOME * Download BCEL version 5.0 or later from http://jakarta.apache.org/bcel Put bcel.jar into $MX4J/lib * Download Commons-Logging version 1.0 or later from http://jakarta.apache.org/commons Put commons-logging.jar into $MX4J/lib * Download Log4J version 1.2 or later from http://jakarta.apache.org/log4j Put log4j-*.jar into $MX4J/lib + Issue the command $ANT_HOME/bin/ant compile.jmx from the $MX4J/build directory Building JSR 160 (Java Management Extensions Remote API) classes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Follow the instruction given for building the JSR 3 classes, and do the following: * [J2SE 1.3 only] Download JAAS version 1.0 or later from http://java.sun.com/products/jaas Unpack jaas.jar into $MX4J/lib. This step is needed to workaround a bug in the rmic compiler that is unable to load classes from jars when compiling with the -iiop flag. After this operation, there should be the directories $MX4J/lib/javax/security/auth and subdirectories, and $MX4J/lib/com/sun/security/auth and subdirectories, containing the JAAS classes. + Issue the command $ANT_HOME/bin/ant compile.rjmx from the $MX4J/build directory Building MX4J Tools classes ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Warning: some MX4J tools depend on JDK 1.4, since they depend on 3rd party libraries that depend on JDK 1.4. Follow the instruction given for building the JSR 160 classes, and do the following: * Download Axis version 1.1 or later from http://ws.apache.org/axis Put axis.jar, commons-discovery.jar, jaxrpc.jar, saaj.jar and wsdl4j.jar into $MX4J/lib * Download the servlet API classes version 2.3 or later from http://java.sun.com/products/servlet/reference/api/index.html Most likely, you have to rename the downloaded file from servlet-2_3-fcs-classfiles.zip to servlet.jar and put it under $MX4J/lib * Download Jetty version 4.2 or later from http://jetty.mortbay.org Put org.mortbay.jetty.jar into $MX4J/lib * [Optional] Download JavaMail and the JavaBean Activation Framework from http://java.sun.com/products/javamail http://java.sun.com/beans/glasgow Put mail.jar and activation.jar into $MX4J/lib * [Optional] Download Jython from http://www.jython.org Put jython.jar into $MX4J/lib * [Requires J2SE 1.4] Download Hessian from http://www.caucho.com Put hessian-*.jar into $MX4J/lib * [J2SE 1.3 only] Download JSSE version 1.0 or later from http://java.sun.com/products/jsse Put jcert.jar, jnet.jar and jsse.jar into $MX4J/lib + Issue the command $ANT_HOME/bin/ant compile.tools from the $MX4J/build directory --- README DELETED --- --- Apache-LICENSE DELETED --- --- NEW FILE: README.txt --- Welcome to MX4J, an open source implementation of the Java(TM) Management Extensions (JMX) (JSR 3) and of the Java(TM) Management Extensions (JMX) remote API (JSR 160). For further information about JMX and JSR 3, see http://java.sun.com/jmx and http://jcp.org/en/jsr/detail?id=3 For further information about JMX remote and JSR 160, see http://java.sun.com/jmx and http://jcp.org/en/jsr/detail?id=160 Refer to the MX4J home page (http://mx4j.sourceforge.net) for new releases and further information about the MX4J project. For up-to-date documentation see http://mx4j.sourceforge.net/docs. The MX4J distribution ~~~~~~~~~~~~~~~~~~~~~ MX4J's binary distribution is bundled in a compressed file, that contains documentation, examples, libraries. The structure of binary distribution is as follows, where ${release} indicates the MX4J release of the distribution: /mx4j-${release}/ docs/ contains the documentation examples/ contains examples on how to use JMX lib/ contains the MX4J implementation, tools and examples jars MX4J's source distribution is bundled in a compressed file, that contains the source code and an Ant build file, but no libraries. Refer to the BUILD-HOWTO file for further information on how to build MX4J from sources. The structure of source distribution is as follows, where ${release} indicates the MX4J release of the distribution: /mx4j-${release}/ build/ contains the Ant build file lib/ put here the libraries needed to build MX4J src/ contains the source files Installing MX4J ~~~~~~~~~~~~~~~ MX4J does not need to be installed. It simply provides libraries in form of jars that can be used to develop JMX applications. Running MX4J examples ~~~~~~~~~~~~~~~~~~~~~ MX4J examples source files are present in the /examples/ directory, while compiled example classes are packaged in the /lib/mx4j-examples.jar file of the binary distribution (see below). MX4J examples include JSR 160 examples, under the mx4j.examples.remote package. To run JSR 160 examples with J2SE 1.3, you need to download JAAS from http://java.sun.com/products/jaas and put jaas.jar in the classpath. MX4J examples run out of the box when using J2SE 1.4, since JAAS classes are already included in standard Java Runtime. Since J2SE 5.0 (JDK 1.5), JMX and JSR 160 classes are included in the standard Java Runtime, so running the examples will pick up JDK classes, not MX4J's. To pick up MX4J classes, you should put relevant MX4J jars in the boot classpath with the /p option (normally this is done using: java -Xbootclasspath/p:<MX4J jars>). MX4J jars ~~~~~~~~~ Under the /lib/ directory of the binary distribution there are the following jars: + mx4j-jmx.jar --> contains the JSR 3 javax.management.* classes + mx4j-impl.jar --> contains the mx4j.* classes that implements JSR 3 functionalities + mx4j.jar --> The mx4j-jmx.jar and mx4j-impl.jar packed together + mx4j-rjmx.jar --> contains the JSR 160 javax.management.remote.* classes + mx4j-rimpl.jar --> contains the mx4j.* classes that implements JSR 160 functionalities + mx4j-remote.jar --> The mx4j-rjmx.jar and mx4j-rimpl.jar packed together + mx4j-tools.jar --> contains the MX4J tools + mx4j-soap.war --> contains a sample web application that deploys a JSR 160 connector server over the soap protocol + mx4j-examples.jar --> contains the MX4J examples MX4J's Tools ~~~~~~~~~~~~ + HTTP adaptor, shows the MBeanServer's status in XML. By transforming with XSLT the XML, can be used to see the HTML view of an MBeanServer in a browser + Configuration loader, an XML file format and loader to startup and shutdown a JMX application + Naming MBeans, wrapping the rmiregistry and tnameserv + Statistics MBeans, to gather and show statistics about MBean's attributes + Mail MBean, to send email via the JavaMail API + Jython MBean, to run Python scripts + I18N StandardMBean, to show MBean metadata description in several languages + JSR 160 utilities such as: * PasswordAuthenticator, to authenticate users over JSR 160 connectors * A 'local' JSR 160 connector and connector server * A 'soap' JSR 160 connector and connector server * A 'hessian' JSR 160 connector and connector server * A 'burlap' JSR 160 connector and connector server * RemoteMBeanProxy, to proxy MBeans that reside on a remote MBeanServer * RMI [Client|Server] SocketFactories over SSL * Base classes to develop custom JSR 160 protocol connector and connector servers MX4J's Deprecated Tools ~~~~~~~~~~~~~~~~~~~~~~~ + The JRMPAdaptor and the IIOPAdaptor were tools that allowed connection with a remote MBeanServer via plain RMI and via CORBA's IIOP protocol. Since MX4J 2.x now implements the standard JMX Remote API (JSR 160), these tools are not mantained anymore and they're not shipped with the binary distribution, to protote use of the standard JMX Remote API. They're still present in the source distribution and can be compiled using the provided build file if needed. Their usage is strongly discouraged, though, and they will not be supported any longer. + The HeartBeat tool, which was dependent on the above JRMPAdaptor, is also deprecated and not mantained nor supported anymore. MX4J's Documentation ~~~~~~~~~~~~~~~~~~~~ Refer to the included documentation under the /docs/ directory of the binary distribution for further details on how to use MX4J, and to the online, nightly updated, documentation for the latest changes. MX4J Development ~~~~~~~~~~~~~~~~ MX4J includes software that has been developed using libraries from the following projects: + The Apache Software Foundation (http://www.apache.org) * The Commons Logging project (http://jakarta.apache.org/commons) * The Log4J project (http://jakarta.apache.org/log4j) * The Byte Code Engineering Library project (http://jakarta.apache.org/bcel) * The Axis project (http://ws.apache.org/axis) + The Jetty project (http://jetty.mortbay.org) + The Jython project (http://www.jython.org) + The Caucho project (http://www.caucho.com) --- Jython-LICENSE DELETED --- --- NEW FILE: Jetty-LICENSE.txt --- Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] 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. --- NEW FILE: LICENSE.txt --- /* ==================================================================== * The MX4J License, Version 1.0 * * Copyright (c) 2001-2004 by the MX4J contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. 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. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * MX4J project (http://mx4j.sourceforge.net)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The name "MX4J" must not be used to endorse or promote * products derived from this software without prior written * permission. * For written permission, please contact [email protected] * * 5. Products derived from this software may not be called "MX4J", * nor may "MX4J" appear in their name, without prior written * permission of Simone Bordet. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 MX4J 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 MX4J project. For more information on * MX4J, please see * <http://mx4j.sourceforge.net>. */ --- NEW FILE: Jython-LICENSE.txt --- HISTORY OF THE SOFTWARE ======================= JPython was created in late 1997 by Jim Hugunin. Jim was also the primary developer while he was at CNRI. In February 1999 Barry Warsaw took over as primary developer and released JPython version 1.1. In October 2000 Barry helped move the software to SourceForge where it was renamed to Jython. Jython 2.0 is developed by a group of volunteers. The standard library is covered by the BeOpen / CNRI license. See the Lib/LICENSE file for details. The oro regular expresion matcher is covered by the apache license. See the org/apache/LICENSE file for details. The zxJDBC package was written by Brian Zimmer and originally licensed under the GNU Public License. The package is now covered by the Jython Software License. Jython changes Software License. ================================ Copyright (c) 2000, Jython Developers 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 Jython Developers 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 REGENTS 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. JPython Software License. ========================= ______________________________________________________________________ IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. BY CLICKING ON THE "ACCEPT" BUTTON WHERE INDICATED, OR BY INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. ______________________________________________________________________ JPython version 1.1.x 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and using JPython version 1.1.x in source or binary form and its associated documentation as provided herein ("Software"). 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, non-transferable, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that CNRI's License Agreement and CNRI's notice of copyright, i.e., "Copyright ©1996-1999 Corporation for National Research Initiatives; All Rights Reserved" are both retained in the Software, alone or in any derivative version prepared by Licensee. Alternatively, in lieu of CNRI's License Agreement, Licensee may substitute the following text (omitting the quotes), provided, however, that such text is displayed prominently in the Software alone or in any derivative version prepared by Licensee: "JPython (Version 1.1.x) is made available subject to the terms and conditions in CNRI's License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1006. The License may also be obtained from a proxy server on the Web using the following URL: http://hdl.handle.net/1895.22/1006." 3. In the event Licensee prepares a derivative work that is based on or incorporates the Software or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work, in a prominently visible way, the nature of the modifications made to CNRI's Software. 4. Licensee may not use CNRI trademarks or trade name, including JPython or CNRI, in a trademark sense to endorse or promote products or services of Licensee, or any third party. Licensee may use the mark JPython in connection with Licensee's derivative versions that are based on or incorporate the Software, but only in the form "JPython-based ___________________," or equivalent. 5. CNRI is making the Software available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. 6. CNRI SHALL NOT BE LIABLE TO LICENSEE OR OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. SOME STATES DO NOT ALLOW THE LIMITATION OR EXCLUSION OF LIABILITY SO THE ABOVE DISCLAIMER MAY NOT APPLY TO LICENSEE. 7. This License Agreement may be terminated by CNRI (i) immediately upon written notice from CNRI of any material breach by the Licensee, if the nature of the breach is such that it cannot be promptly remedied; or (ii) sixty (60) days following notice from CNRI to Licensee of a material remediable breach, if Licensee has not remedied such breach within that sixty-day period. 8. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. 9. By clicking on the "ACCEPT" button where indicated, or by installing, copying or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. --- Jetty-LICENSE DELETED --- ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click