summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/samples/relay-python
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-05-23 02:29:02 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2011-05-23 02:29:02 +0000
commit874620b24eaf0862fb28194099e951e57363ca29 (patch)
tree76413f39d2ef9e79456af15e99648754a17fff4e /sca-cpp/trunk/samples/relay-python
parent49f4223605b4946a2bf6831262dd442375a4a929 (diff)
Refactor some of the extensions and remove unnecessary namespace prefixes.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1126298 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/samples/relay-python')
-rw-r--r--sca-cpp/trunk/samples/relay-python/relay.composite31
1 files changed, 15 insertions, 16 deletions
diff --git a/sca-cpp/trunk/samples/relay-python/relay.composite b/sca-cpp/trunk/samples/relay-python/relay.composite
index 7f7302955e..470ac88da1 100644
--- a/sca-cpp/trunk/samples/relay-python/relay.composite
+++ b/sca-cpp/trunk/samples/relay-python/relay.composite
@@ -18,57 +18,56 @@
* under the License.
-->
<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1"
targetNamespace="http://relay"
name="relay">
<component name="JSONTwit">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="jsontwit"/>
+ <binding.http uri="jsontwit"/>
</service>
<reference name="target">
- <t:binding.http uri="http://api.twitter.com/1/statuses/user_timeline.json?screen_name=jsdelfino"/>
+ <binding.http uri="http://api.twitter.com/1/statuses/user_timeline.json?screen_name=jsdelfino"/>
</reference>
</component>
<component name="XMLTwit">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="xmltwit"/>
+ <binding.http uri="xmltwit"/>
</service>
<reference name="target">
- <t:binding.http uri="http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=jsdelfino"/>
+ <binding.http uri="http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=jsdelfino"/>
</reference>
</component>
<component name="RSSTwit">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="rsstwit"/>
+ <binding.http uri="rsstwit"/>
</service>
<reference name="target">
- <t:binding.http uri="http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=jsdelfino"/>
+ <binding.http uri="http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=jsdelfino"/>
</reference>
</component>
<component name="HTML">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="html"/>
+ <binding.http uri="html"/>
</service>
<reference name="target">
- <t:binding.http uri="http://people.apache.org/~jsdelfino/"/>
+ <binding.http uri="http://people.apache.org/~jsdelfino/"/>
</reference>
</component>
<component name="JSONFB">
- <t:implementation.python script="relay.py"/>
+ <implementation.python script="relay.py"/>
<service name="Relay">
- <t:binding.http uri="jsonfb"/>
+ <binding.http uri="jsonfb"/>
</service>
<reference name="target">
- <t:binding.http uri="https://graph.facebook.com/100001053301307"/>
+ <binding.http uri="https://graph.facebook.com/100001053301307"/>
</reference>
</component>