summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/palettes/sensor/palette.composite
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/modules/edit/palettes/sensor/palette.composite62
1 files changed, 0 insertions, 62 deletions
diff --git a/sca-cpp/trunk/modules/edit/palettes/sensor/palette.composite b/sca-cpp/trunk/modules/edit/palettes/sensor/palette.composite
deleted file mode 100644
index 755d111ae8..0000000000
--- a/sca-cpp/trunk/modules/edit/palettes/sensor/palette.composite
+++ /dev/null
@@ -1,62 +0,0 @@
-<?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://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1"
- targetNamespace="http://sensor"
- name="palette">
-
- <service name="location" promote="location"/>
- <service name="distance" promote="distance"/>
- <service name="geomap" promote="geomap"/>
- <service name="weather" promote="weather"/>
- <service name="traffic" promote="traffic"/>
-
- <component name="location" t:title="location" t:color="red1">
- <t:implementation.python script="nuvem/location.py"/>
- <service name="location"/>
- <reference name="user"/>
- </component>
-
- <component name="distance" t:title="distance" t:color="red1">
- <t:implementation.python script="nuvem/distance.py"/>
- <service name="distance"/>
- <reference name="location1"/>
- <reference name="location2"/>
- </component>
-
- <component name="geomap" t:title="map" t:color="red1">
- <t:implementation.python script="nuvem/geomap.py"/>
- <service name="geomap"/>
- <reference name="location"/>
- </component>
-
- <component name="weather" t:title="weather" t:color="red1">
- <t:implementation.python script="nuvem/weather.py"/>
- <service name="weather"/>
- <reference name="location"/>
- </component>
-
- <component name="traffic" t:title="traffic" t:color="red1">
- <t:implementation.python script="nuvem/traffic.py"/>
- <service name="traffic"/>
- <reference name="location"/>
- </component>
-
-</composite>