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/02/06 04:41:09 UTC

svn commit: r741389 [2/4] - in /incubator/etch/branches/release-1.0.2: ./ binding-csharp/ binding-csharp/compiler/ binding-csharp/compiler/src/main/java/etch/bindings/csharp/compiler/ binding-csharp/runtime/ binding-csharp/runtime/src/main/csharp/ bind...

Modified: incubator/etch/branches/release-1.0.2/examples/distmap/dist-build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/distmap/dist-build.xml?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/distmap/dist-build.xml (original)
+++ incubator/etch/branches/release-1.0.2/examples/distmap/dist-build.xml Fri Feb  6 03:41:04 2009
@@ -1,4 +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.
+ 
+-->
+
 <project name="etch-distmap-example" basedir="." default="build">
     <description>Distributed Map Example</description>
 

Modified: incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapClientProj/DistMapClientProj.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapClientProj/DistMapClientProj.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapClientProj/DistMapClientProj.csproj (original)
+++ incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapClientProj/DistMapClientProj.csproj Fri Feb  6 03:41:04 2009
@@ -1,5 +1,23 @@
 <?xml version="1.0" encoding="utf-8"?>
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+    <!--
+ * 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.                                           *
+    -->
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -94,4 +112,4 @@
     </ProjectReference>
     <Reference Include="System" />
   </ItemGroup>
-</Project>
\ No newline at end of file
+</Project>

Modified: incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapClientProj/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapClientProj/Properties/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapClientProj/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapClientProj/Properties/AssemblyInfo.cs Fri Feb  6 03:41:04 2009
@@ -1,3 +1,19 @@
+// 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.                                           *
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
@@ -8,8 +24,8 @@
 [assembly: AssemblyTitle("DistMap Client")]
 [assembly: AssemblyDescription("DistMap Client Executable")]
 [assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Cisco Systems")]
-[assembly: AssemblyProduct("Etch")]
+[assembly: AssemblyCompany("Apache Software Foundation")]
+[assembly: AssemblyProduct("Apache Etch")]
 [assembly: AssemblyCopyright("Copyright © 2008")]
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]

Modified: incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapListenerProj/DistMapListenerProj.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapListenerProj/DistMapListenerProj.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapListenerProj/DistMapListenerProj.csproj (original)
+++ incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapListenerProj/DistMapListenerProj.csproj Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <?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.                                           *
+-->
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -94,4 +112,4 @@
     </ProjectReference>
     <Reference Include="System" />
   </ItemGroup>
-</Project>
\ No newline at end of file
+</Project>

Modified: incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapListenerProj/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapListenerProj/Properties/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapListenerProj/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/branches/release-1.0.2/examples/distmap/src/main/csharp/DistMapListenerProj/Properties/AssemblyInfo.cs Fri Feb  6 03:41:04 2009
@@ -1,3 +1,19 @@
+// 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.                                           *
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
@@ -8,8 +24,8 @@
 [assembly: AssemblyTitle("DistMap Listener")]
 [assembly: AssemblyDescription("DistMap Listener Executable")]
 [assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Cisco Systems")]
-[assembly: AssemblyProduct("Etch")]
+[assembly: AssemblyCompany("Apache Software Foundation")]
+[assembly: AssemblyProduct("Apache Etch")]
 [assembly: AssemblyCopyright("Copyright © 2008")]
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]

Modified: incubator/etch/branches/release-1.0.2/examples/distmap/src/test/csharp/DistMapTestProj/DistMapTestProj.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/distmap/src/test/csharp/DistMapTestProj/DistMapTestProj.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/distmap/src/test/csharp/DistMapTestProj/DistMapTestProj.csproj (original)
+++ incubator/etch/branches/release-1.0.2/examples/distmap/src/test/csharp/DistMapTestProj/DistMapTestProj.csproj Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+    <!--
+ * 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.                                           *
+    -->
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -107,4 +125,4 @@
   <Target Name="AfterBuild">
   </Target>
   -->
-</Project>
\ No newline at end of file
+</Project>

Modified: incubator/etch/branches/release-1.0.2/examples/distmap/src/test/csharp/DistMapTestProj/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/distmap/src/test/csharp/DistMapTestProj/Properties/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/distmap/src/test/csharp/DistMapTestProj/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/branches/release-1.0.2/examples/distmap/src/test/csharp/DistMapTestProj/Properties/AssemblyInfo.cs Fri Feb  6 03:41:04 2009
@@ -1,3 +1,19 @@
+// 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.                                           *
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
@@ -8,7 +24,7 @@
 [assembly: AssemblyTitle("DistMapTest Project")]
 [assembly: AssemblyDescription("")]
 [assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Cisco Systems, Inc.")]
+[assembly: AssemblyCompany("Apache Software Foundation")]
 [assembly: AssemblyProduct("DistMapTestProj")]
 [assembly: AssemblyCopyright("Copyright ©  2008")]
 [assembly: AssemblyTrademark("")]

Modified: incubator/etch/branches/release-1.0.2/examples/example/README.txt
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/example/README.txt?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/example/README.txt (original)
+++ incubator/etch/branches/release-1.0.2/examples/example/README.txt Fri Feb  6 03:41:04 2009
@@ -1,10 +1,30 @@
+To get started with the example you will need jdk 1.5.0_x,
+where x is pretty recent (>= 15), or any release of jdk 1.6.
+You will also need ant 1.7.0, with ant .net plugin if you
+want to build csharp. You will also need microsoft .net
+sdk 2.0 for csharp builds.
 
 To build:
 
-> ant debug
+> ant
 
-To Run:
+This will run the default target which will build both java
+and csharp programs. You can also use build-java or build-csharp
+targets to build only java or only csharp.
 
-> cd target/bin
-> java -jar example.jar &
-> java -jar example.jar
+To run java example example, open a cmd window and run these
+commands:
+
+> cd target\bin
+> start java -cp example.jar etch.examples.example.MainExmapleListener
+> start java -cp example.jar etch.examples.example.MainExampleClient
+
+To run csharp example:
+
+> cd target\bin
+> start exampleListener.exe
+> start exampleClient.exe
+
+Now modify the example to implement the service however you like.
+
+You can mix and match the various clients and listeners.

Modified: incubator/etch/branches/release-1.0.2/examples/example/build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/example/build.xml?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/example/build.xml (original)
+++ incubator/etch/branches/release-1.0.2/examples/example/build.xml Fri Feb  6 03:41:04 2009
@@ -1,4 +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.
+ 
+-->
+
 <project name="etch-example-example" basedir="." default="help" >
     <description>Example Example</description>
     <property name="Etch.basedir" location="${basedir}/../.." />
@@ -263,7 +284,7 @@
         <copy file="dist-build.xml" tofile="${dist-src}/build.xml" overwrite="true" >
             <filterset refid="Etch.buildTokens" />
         </copy>    
-        <copy file="dist-README.txt" tofile="${dist-src}/README.txt" overwrite="true" />
+        <copy file="README.txt" tofile="${dist-src}/README.txt" overwrite="true" />
         
         <copy todir="${dist-src}/src/main/etch" overwrite="true" >
             <fileset dir="${src}/main/etch" >

Modified: incubator/etch/branches/release-1.0.2/examples/example/dist-build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/example/dist-build.xml?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/example/dist-build.xml (original)
+++ incubator/etch/branches/release-1.0.2/examples/example/dist-build.xml Fri Feb  6 03:41:04 2009
@@ -1,4 +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.
+ 
+-->
+
 <project name="etch-example-example" basedir="." default="build">
     <description>Example Example</description>
 

Modified: incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleClientProj/ExampleClientProj.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleClientProj/ExampleClientProj.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleClientProj/ExampleClientProj.csproj (original)
+++ incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleClientProj/ExampleClientProj.csproj Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+    <!--
+ * 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.                                           *
+    -->
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -95,4 +113,4 @@
   <Target Name="AfterBuild">
   </Target>
   -->
-</Project>
\ No newline at end of file
+</Project>

Modified: incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleClientProj/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleClientProj/Properties/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleClientProj/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleClientProj/Properties/AssemblyInfo.cs Fri Feb  6 03:41:04 2009
@@ -1,3 +1,19 @@
+// 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.                                           *
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
@@ -8,8 +24,8 @@
 [assembly: AssemblyTitle("Example Client")]
 [assembly: AssemblyDescription("Example Client Executable")]
 [assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Cisco Systems Inc")]
-[assembly: AssemblyProduct("Etch")]
+[assembly: AssemblyCompany("Apache Software Foundation")]
+[assembly: AssemblyProduct("Apache Etch")]
 [assembly: AssemblyCopyright("Copyright © 2008")]
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]

Modified: incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleListenerProj/ExampleListenerProj.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleListenerProj/ExampleListenerProj.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleListenerProj/ExampleListenerProj.csproj (original)
+++ incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleListenerProj/ExampleListenerProj.csproj Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+    <!--
+ * 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.                                           *
+    -->
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -95,4 +113,4 @@
   <Target Name="AfterBuild">
   </Target>
   -->
-</Project>
\ No newline at end of file
+</Project>

Modified: incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleListenerProj/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleListenerProj/Properties/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleListenerProj/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/branches/release-1.0.2/examples/example/src/main/csharp/ExampleListenerProj/Properties/AssemblyInfo.cs Fri Feb  6 03:41:04 2009
@@ -1,3 +1,19 @@
+// 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.                                           *
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
@@ -8,8 +24,8 @@
 [assembly: AssemblyTitle("Example Listener")]
 [assembly: AssemblyDescription("Example Listener Executable")]
 [assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Cisco Systems, Inc")]
-[assembly: AssemblyProduct("Etch")]
+[assembly: AssemblyCompany("Apache Software Foundation")]
+[assembly: AssemblyProduct("Apache Etch")]
 [assembly: AssemblyCopyright("Copyright © 2008")]
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]

Modified: incubator/etch/branches/release-1.0.2/examples/example/src/test/csharp/ExampleTestProj/ExampleTestProj.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/example/src/test/csharp/ExampleTestProj/ExampleTestProj.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/example/src/test/csharp/ExampleTestProj/ExampleTestProj.csproj (original)
+++ incubator/etch/branches/release-1.0.2/examples/example/src/test/csharp/ExampleTestProj/ExampleTestProj.csproj Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+    <!--
+ * 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.                                           *
+    -->
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -107,4 +125,4 @@
   <Target Name="AfterBuild">
   </Target>
   -->
-</Project>
\ No newline at end of file
+</Project>

Modified: incubator/etch/branches/release-1.0.2/examples/example/src/test/csharp/ExampleTestProj/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/example/src/test/csharp/ExampleTestProj/Properties/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/example/src/test/csharp/ExampleTestProj/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/branches/release-1.0.2/examples/example/src/test/csharp/ExampleTestProj/Properties/AssemblyInfo.cs Fri Feb  6 03:41:04 2009
@@ -1,3 +1,19 @@
+// 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.                                           *
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;

Modified: incubator/etch/branches/release-1.0.2/examples/perf/README.txt
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/perf/README.txt?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/perf/README.txt (original)
+++ incubator/etch/branches/release-1.0.2/examples/perf/README.txt Fri Feb  6 03:41:04 2009
@@ -1,10 +1,28 @@
+To get started with the example you will need jdk 1.5.0_x,
+where x is pretty recent (>= 15), or any release of jdk 1.6.
+You will also need ant 1.7.0, with ant .net plugin if you
+want to build csharp. You will also need microsoft .net
+sdk 2.0 for csharp builds.
 
 To build:
 
-> ant build-all
+> ant
 
-To Run:
+This will run the default target which will build both java
+and csharp programs. You can also use build-java or build-csharp
+targets to build only java or only csharp.
 
-> cd target/bin
-> java -jar perflistener.jar &
-> java -jar perfclient.jar
+To run java performance example, open a cmd window and run these
+commands:
+
+> cd target\bin
+> start java -cp perf.jar etch.examples.perf.MainPerfListener
+> start java -cp perf.jar etch.examples.perf.MainPerfClient
+
+To run csharp example:
+
+> cd target\bin
+> start perfListener.exe
+> start perfClient.exe
+
+You can mix and match the various clients and listeners.

Modified: incubator/etch/branches/release-1.0.2/examples/perf/build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/perf/build.xml?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/perf/build.xml (original)
+++ incubator/etch/branches/release-1.0.2/examples/perf/build.xml Fri Feb  6 03:41:04 2009
@@ -1,4 +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.
+ 
+-->
+
 <project name="etch-perf-example" basedir="." default="help" >
     <description>Perf Example</description>
     <property name="Etch.basedir" location="${basedir}/../.." />
@@ -261,7 +282,7 @@
        <copy file="dist-build.xml" tofile="${dist-src}/build.xml" overwrite="true" >
            <filterset refid="Etch.buildTokens" />
        </copy>    
-        <copy file="dist-README.txt" tofile="${dist-src}/README.txt" overwrite="true" />
+        <copy file="README.txt" tofile="${dist-src}/README.txt" overwrite="true" />
         
         <copy todir="${dist-src}/src/main/etch" overwrite="true" >
             <fileset dir="${src}/main/etch" >

Modified: incubator/etch/branches/release-1.0.2/examples/perf/dist-build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/perf/dist-build.xml?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/perf/dist-build.xml (original)
+++ incubator/etch/branches/release-1.0.2/examples/perf/dist-build.xml Fri Feb  6 03:41:04 2009
@@ -1,4 +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.
+ 
+-->
+
 <project name="etch-perf-perf" basedir="." default="build">
     <description>Perf Perf</description>
 

Modified: incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfClientProj/PerfClientProj.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfClientProj/PerfClientProj.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfClientProj/PerfClientProj.csproj (original)
+++ incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfClientProj/PerfClientProj.csproj Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+    <!--
+ * 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.                                           *
+    -->
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -95,4 +113,4 @@
   <Target Name="AfterBuild">
   </Target>
   -->
-</Project>
\ No newline at end of file
+</Project>

Modified: incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfClientProj/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfClientProj/Properties/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfClientProj/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfClientProj/Properties/AssemblyInfo.cs Fri Feb  6 03:41:04 2009
@@ -1,3 +1,19 @@
+// 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.                                           *
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
@@ -8,8 +24,8 @@
 [assembly: AssemblyTitle("Perf Client")]
 [assembly: AssemblyDescription("Perf Client Executable")]
 [assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Cisco Systems")]
-[assembly: AssemblyProduct("Etch")]
+[assembly: AssemblyCompany("Apache Software Foundation")]
+[assembly: AssemblyProduct("Apache Etch")]
 [assembly: AssemblyCopyright("Copyright © 2008")]
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]

Modified: incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfListenerProj/PerfListenerProj.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfListenerProj/PerfListenerProj.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfListenerProj/PerfListenerProj.csproj (original)
+++ incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfListenerProj/PerfListenerProj.csproj Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+    <!--
+ * 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.                                           *
+    -->
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -92,4 +110,4 @@
   <Target Name="AfterBuild">
   </Target>
   -->
-</Project>
\ No newline at end of file
+</Project>

Modified: incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfListenerProj/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfListenerProj/Properties/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfListenerProj/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/branches/release-1.0.2/examples/perf/src/main/csharp/PerfListenerProj/Properties/AssemblyInfo.cs Fri Feb  6 03:41:04 2009
@@ -1,3 +1,19 @@
+// 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.                                           *
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
@@ -8,8 +24,8 @@
 [assembly: AssemblyTitle("Perf Listener")]
 [assembly: AssemblyDescription("Perf Listener Executable")]
 [assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Cisco Systems")]
-[assembly: AssemblyProduct("Etch")]
+[assembly: AssemblyCompany("Apache Software Foundation")]
+[assembly: AssemblyProduct("Apache Etch")]
 [assembly: AssemblyCopyright("Copyright © 2008")]
 [assembly: AssemblyTrademark("")]
 [assembly: AssemblyCulture("")]

Modified: incubator/etch/branches/release-1.0.2/examples/perf/src/test/csharp/PerfTestProj/PerfTestProj.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/perf/src/test/csharp/PerfTestProj/PerfTestProj.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/perf/src/test/csharp/PerfTestProj/PerfTestProj.csproj (original)
+++ incubator/etch/branches/release-1.0.2/examples/perf/src/test/csharp/PerfTestProj/PerfTestProj.csproj Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+    <!--
+ * 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.                                           *
+    -->
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -107,4 +125,4 @@
   <Target Name="AfterBuild">
   </Target>
   -->
-</Project>
\ No newline at end of file
+</Project>

Modified: incubator/etch/branches/release-1.0.2/examples/perf/src/test/csharp/PerfTestProj/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/examples/perf/src/test/csharp/PerfTestProj/Properties/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/examples/perf/src/test/csharp/PerfTestProj/Properties/AssemblyInfo.cs (original)
+++ incubator/etch/branches/release-1.0.2/examples/perf/src/test/csharp/PerfTestProj/Properties/AssemblyInfo.cs Fri Feb  6 03:41:04 2009
@@ -1,3 +1,19 @@
+// 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.                                           *
 using System.Reflection;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;

Modified: incubator/etch/branches/release-1.0.2/installers/build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/installers/build.xml?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/installers/build.xml (original)
+++ incubator/etch/branches/release-1.0.2/installers/build.xml Fri Feb  6 03:41:04 2009
@@ -1,4 +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.
+ 
+-->
+
 <project name="installers" basedir="." default="help">
     <description>Installers, .zip and .tar.gz packages</description>
     <property name="Etch.basedir" location="${basedir}/.." />

Modified: incubator/etch/branches/release-1.0.2/installers/etch-full-installer.nsi
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/installers/etch-full-installer.nsi?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/installers/etch-full-installer.nsi (original)
+++ incubator/etch/branches/release-1.0.2/installers/etch-full-installer.nsi Fri Feb  6 03:41:04 2009
@@ -1,16 +1,32 @@
-!define PRODUCT_NAME "Etch"
+# 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.                                           *
+!define PRODUCT_NAME "Apache Etch"
 !ifndef PRODUCT_VERSION
     !define PRODUCT_VERSION "1.0"
 !endif
-!define PRODUCT_PUBLISHER "Etch"
-!define PRODUCT_WEB_SITE "http://developer.cisco.com/web/cuae/etch"
+!define PRODUCT_PUBLISHER "Apache Software Foundation"
+!define PRODUCT_WEB_SITE "http://incubator.apache.org/projects/etch.html"
 !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}-${PRODUCT_VERSION}"
 !define PRODUCT_UNINST_ROOT_KEY "HKLM"
 !ifndef ROOT_DIRECTORY
     !define ROOT_DIRECTORY "..\target\Installers\dist"
 !endif
 !ifndef OUT_FILE
-    !define OUT_FILE "etch-${PRODUCT_VERSION}-win32-setup.exe"
+    !define OUT_FILE "apache-etch-${PRODUCT_VERSION}-win32-setup.exe"
 !endif
 
 !include WinMessages.nsh
@@ -18,7 +34,7 @@
 Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
 OutFile "${OUT_FILE}"
 LoadLanguageFile "${NSISDIR}\Contrib\Language files\English.nlf"
-InstallDir "$PROGRAMFILES\${PRODUCT_PUBLISHER}\etch-${PRODUCT_VERSION}"
+InstallDir "$PROGRAMFILES\${PRODUCT_PUBLISHER}\apache-etch-${PRODUCT_VERSION}"
 Icon "${NSISDIR}\Contrib\Graphics\Icons\pixel-install.ico"
 UninstallIcon "${NSISDIR}\Contrib\Graphics\Icons\pixel-uninstall.ico"
 DirText "Setup will install $(^Name) in the following folder.$\r$\n$\r$\nTo install in a different folder, click Browse and select another folder."
@@ -100,8 +116,8 @@
   SetOutPath $INSTDIR
 #  WriteIniStr "$INSTDIR\etch-homepage.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
   CreateDirectory "$SMPROGRAMS\$(^Name)"
-#  CreateShortCut "$SMPROGRAMS\$(^Name)\Etch Homepage.lnk" "$INSTDIR\etch-homepage.url"
-  CreateShortCut "$SMPROGRAMS\$(^Name)\Uninstall Etch.lnk" "$INSTDIR\uninst.exe"
+#  CreateShortCut "$SMPROGRAMS\$(^Name)\Apache Etch Homepage.lnk" "$INSTDIR\etch-homepage.url"
+  CreateShortCut "$SMPROGRAMS\$(^Name)\Uninstall Apache Etch.lnk" "$INSTDIR\uninst.exe"
 SectionEnd
 
 Section -Post

Modified: incubator/etch/branches/release-1.0.2/installers/etch-maven-install.bat
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/installers/etch-maven-install.bat?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/installers/etch-maven-install.bat (original)
+++ incubator/etch/branches/release-1.0.2/installers/etch-maven-install.bat Fri Feb  6 03:41:04 2009
@@ -1,5 +1,20 @@
 @echo off
-
+:: 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.                                           *
 rem Copyright 2008 (c) Cisco Systems, Inc.
 
 rem This .bat file installs the etch-java-runtime jar file to the local maven

Modified: incubator/etch/branches/release-1.0.2/plugins/ant/build.xml
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/plugins/ant/build.xml?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/plugins/ant/build.xml (original)
+++ incubator/etch/branches/release-1.0.2/plugins/ant/build.xml Fri Feb  6 03:41:04 2009
@@ -1,4 +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.
+ 
+-->
+
 <project name="etch-ant-task" basedir="." default="help">
     <description>Etch-Ant-Task implementation</description>
     <property name="Etch.basedir" location="${basedir}/../.." />
@@ -45,6 +66,8 @@
             </copy>
 
             <!-- Compile Tests -->
+            <!-- TODO: Re-add when unit test are written -->
+            <!--
             <javac  debug="${Etch.javac.debug}"
                     target="1.5"
                     optimize="${Etch.javac.optimize}"
@@ -57,11 +80,14 @@
                     <pathelement location="${Etch.HOME}/lib/${etch-compiler.jar}" />
                 </classpath>
             </javac>
+            -->
 
             <!-- compiler plugin resources -->
+            <!--
             <copy todir="${classesDirectory}/test" >
                 <fileset dir="${src}/test/resources" excludes="**/.svn/**" />
             </copy>
+            -->
 
         </sequential>
     </macrodef>

Modified: incubator/etch/branches/release-1.0.2/plugins/ant/src/main/resources/etch/tools/ant/etch.xml
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/plugins/ant/src/main/resources/etch/tools/ant/etch.xml?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/plugins/ant/src/main/resources/etch/tools/ant/etch.xml (original)
+++ incubator/etch/branches/release-1.0.2/plugins/ant/src/main/resources/etch/tools/ant/etch.xml Fri Feb  6 03:41:04 2009
@@ -1,4 +1,25 @@
 <?xml version="1.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.
+ 
+-->
+
 <antlib>
 	<taskdef name="etch" classname="etch.tools.ant.EtchCompileTask"/>
 </antlib>

Modified: incubator/etch/branches/release-1.0.2/plugins/vim/etch.vim
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/plugins/vim/etch.vim?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/plugins/vim/etch.vim (original)
+++ incubator/etch/branches/release-1.0.2/plugins/vim/etch.vim Fri Feb  6 03:41:04 2009
@@ -1,9 +1,27 @@
 " Vim syntax file
 " Language:     Etch 
-" Maintainer:   James Dixson <ja...@cisco.com>
-" URL:		http://etch.org/vim/syntax/etch.vim
+" Maintainer:   James Dixson <di...@apache.org>
+" URL:		http://incubator.apache.org/projects/etch.html
 " Last Change:  13 Nov 2007
 "
+" 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.                                           *
+"
+"
 "  Based on java.vim by Claudio Fleiner <cl...@fleiner.com>
 "
 " Please check :help etch.vim for comments on some of the options available.

Modified: incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/AssemblyInfo.cs?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/CommandBar.resx
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/CommandBar.resx?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/CommandBar.resx (original)
+++ incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/CommandBar.resx Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <?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.                                           *
+-->
 <root>
   <!-- 
     Microsoft ResX Schema 
@@ -1011,4 +1029,4 @@
   <data name="String1" xml:space="preserve">
     <value>Hello</value>
   </data>
-</root>
\ No newline at end of file
+</root>

Modified: incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/Etch-AddIn.csproj
URL: http://svn.apache.org/viewvc/incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/Etch-AddIn.csproj?rev=741389&r1=741388&r2=741389&view=diff
==============================================================================
--- incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/Etch-AddIn.csproj (original)
+++ incubator/etch/branches/release-1.0.2/plugins/visualstudio-addin/etch-addin/Etch-AddIn.csproj Fri Feb  6 03:41:04 2009
@@ -1,4 +1,22 @@
 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+    <!--
+ * 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.                                           *
+    -->
   <PropertyGroup>
     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -98,4 +116,4 @@
     <VisualStudio>
     </VisualStudio>
   </ProjectExtensions>
-</Project>
\ No newline at end of file
+</Project>