You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2007/05/18 10:51:16 UTC

svn commit: r539323 - in /incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp: META-INF/ META-INF/sca-contribution.xml META-INF/sca-deployables/ META-INF/sca-deployables/chat.composite chat.html

Author: antelder
Date: Fri May 18 01:51:14 2007
New Revision: 539323

URL: http://svn.apache.org/viewvc?view=rev&rev=539323
Log:
Update for contrabution service changes

Added:
    incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/
    incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-contribution.xml   (with props)
    incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-deployables/
    incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-deployables/chat.composite
Modified:
    incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/chat.html

Added: incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-contribution.xml?view=auto&rev=539323
==============================================================================
--- incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-contribution.xml (added)
+++ incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-contribution.xml Fri May 18 01:51:14 2007
@@ -0,0 +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.    
+-->
+<contribution xmlns="http://www.osoa.org/xmlns/sca/1.0">
+   <deployable composite="chat"/>
+</contribution>
\ No newline at end of file

Propchange: incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-contribution.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-contribution.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-contribution.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-deployables/chat.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-deployables/chat.composite?view=auto&rev=539323
==============================================================================
--- incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-deployables/chat.composite (added)
+++ incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/META-INF/sca-deployables/chat.composite Fri May 18 01:51:14 2007
@@ -0,0 +1,37 @@
+<?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.    
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+           name="Chat">
+
+    <service name="ChatService" promote="ChatComponent">
+        <interface.java interface="sample.ChatService"/>
+        <binding.ajax/>
+    </service>
+
+    <component name="ChatComponent">
+        <implementation.java class="sample.ChatServiceImpl"/>
+    </component>
+
+    <reference name="ChatReference" promote="ChatComponent/chatters">
+        <interface.java interface="sample.ChatService" />
+        <binding.ajax/>
+    </reference>
+
+</composite>

Modified: incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/chat.html
URL: http://svn.apache.org/viewvc/incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/chat.html?view=diff&rev=539323&r1=539322&r2=539323
==============================================================================
--- incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/chat.html (original)
+++ incubator/tuscany/sandbox/ant/ajax/ajaxchat/src/main/webapp/chat.html Fri May 18 01:51:14 2007
@@ -24,7 +24,9 @@
   </head>
   <body onLoad="scaDomain.open()">
 
-    <h2>Tuscany AJAX Chat Sample</h2><br>
+    <h2>Tuscany AJAX Chat Sample</h2>
+     
+      A simple client to chat between multiple web browsers:<br><br>
      
       Nickname: <input type="text" id="nickName" size="10"/>
       <br><br>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org