You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@etch.apache.org by di...@apache.org on 2009/03/10 19:52:04 UTC

svn commit: r752214 - in /incubator/etch/trunk: DISCLAIMER.txt README.txt installers/build.xml

Author: dixson
Date: Tue Mar 10 18:52:04 2009
New Revision: 752214

URL: http://svn.apache.org/viewvc?rev=752214&view=rev
Log:
Add DISCLAIMER.txt

Added:
    incubator/etch/trunk/DISCLAIMER.txt   (with props)
Modified:
    incubator/etch/trunk/README.txt
    incubator/etch/trunk/installers/build.xml

Added: incubator/etch/trunk/DISCLAIMER.txt
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/DISCLAIMER.txt?rev=752214&view=auto
==============================================================================
--- incubator/etch/trunk/DISCLAIMER.txt (added)
+++ incubator/etch/trunk/DISCLAIMER.txt Tue Mar 10 18:52:04 2009
@@ -0,0 +1,5 @@
+Apache Etch is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC.
+
+Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects.
+
+While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.

Propchange: incubator/etch/trunk/DISCLAIMER.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/etch/trunk/DISCLAIMER.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Modified: incubator/etch/trunk/README.txt
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/README.txt?rev=752214&r1=752213&r2=752214&view=diff
==============================================================================
--- incubator/etch/trunk/README.txt (original)
+++ incubator/etch/trunk/README.txt Tue Mar 10 18:52:04 2009
@@ -1,21 +1,36 @@
 Welcome to the 1.0.2-incubating release of Apache Etch.
 
+= What is Etch? =
+
+Etch is a cross-platform, language- and transport-independent framework for building
+and consuming network services. The Etch toolset includes a network service description
+language, a compiler, and binding libraries for a variety of programming languages. Etch
+is also transport-independent, allowing for a variety of different transports to used
+based on need and circumstance. The goal of Etch is to make it simple to define small,
+focused services that can be easily accessed, combined, and deployed in a similar
+manner. With Etch, service development and consumption becomes no more difficult than
+library development and consumption.
+
+= Online Help =
+
 The jumping off point for Etch information and help is here:
 
 http://cwiki.apache.org/ETCH
 
+= Binary Distribution =
+
 The top-level structure of the install image is:
 
-	ChangeLog.txt
-	LICENSE.txt
-	README.txt
-    NOTICE.txt
-    RELEASE_NOTES.txt
-	bin/
-	lib/
-    examples/
-	maven/
-    uninst.exe (windows only)
+  ChangeLog.txt
+  LICENSE.txt
+  NOTICE.txt
+  README.txt
+  RELEASE_NOTES.txt
+  bin/
+  examples/
+  lib/
+  maven/
+  uninst.exe (windows only)
 
 Please take a moment to review the RELEASE_NOTES.txt, ChangeLog.txt and
 LICENSE.txt files.
@@ -27,10 +42,10 @@
 variable yourself:
 
 windows:
-	set ETCH_HOME=C:\Program Files\Apache Software Foundation\apache-etch-1.0.2-incubating
+	set ETCH_HOME=C:\Program Files\Apache Software Foundation\apache-etch-1.0.2
 
 *nix:
-	export ETCH_HOME=/path/to/apache-etch-1.0.2-incubating
+	export ETCH_HOME=/path/to/apache-etch-1.0.2
 
 The bin directory has also been put on your path by the Windows installer. If
 you are using the archives, you will need to do this yourself:

Modified: incubator/etch/trunk/installers/build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/installers/build.xml?rev=752214&r1=752213&r2=752214&view=diff
==============================================================================
--- incubator/etch/trunk/installers/build.xml (original)
+++ incubator/etch/trunk/installers/build.xml Tue Mar 10 18:52:04 2009
@@ -1,22 +1,25 @@
 <?xml version="1.0" encoding="utf-8" ?>
- <!--
- * 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.                                           *
- -->
+<!--
+ 
+ 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.
+ 
+-->
+
 <project name="installers" basedir="." default="help">
     <description>Installers, .zip and .tar.gz packages</description>
     <property name="Etch.basedir" location="${basedir}/.." />
@@ -46,6 +49,7 @@
         <copy file="${Etch.basedir}/LICENSE.txt" todir="${Etch.dist}" />
         <copy file="${Etch.basedir}/ChangeLog.txt" todir="${Etch.dist}" />
         <copy file="${Etch.basedir}/README.txt" tofile="${Etch.dist}/README.txt" />
+        <copy file="${Etch.basedir}/DISCLAIMER.txt" tofile="${Etch.dist}/DISCLAIMER.txt" />
         <copy file="${Etch.basedir}/RELEASE_NOTES.txt" tofile="${Etch.dist}/RELEASE_NOTES.txt" />
         <copy file="${Etch.basedir}/NOTICE.txt" tofile="${Etch.dist}/NOTICE.txt" />
         <copy file="${proj}/etch-maven-install.bat" todir="${Etch.dist}/maven" >