summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/palettes/url/palette.composite
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/edit/palettes/url/palette.composite')
-rw-r--r--sca-cpp/trunk/modules/edit/palettes/url/palette.composite74
1 files changed, 74 insertions, 0 deletions
diff --git a/sca-cpp/trunk/modules/edit/palettes/url/palette.composite b/sca-cpp/trunk/modules/edit/palettes/url/palette.composite
new file mode 100644
index 0000000000..8325a905e6
--- /dev/null
+++ b/sca-cpp/trunk/modules/edit/palettes/url/palette.composite
@@ -0,0 +1,74 @@
+<?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://url"
+ name="palette">
+
+ <service name="host" promote="host"/>
+ <service name="path" promote="path"/>
+ <service name="params" promote="params"/>
+ <service name="user" promote="user"/>
+ <service name="realm" promote="realm"/>
+ <service name="email" promote="email"/>
+
+ <component name="host" t:color="orange1">
+ <documentation>host</documentation>
+ <t:implementation.python script="host.py"/>
+ <service name="host"/>
+ <property name="host" t:visible="false"></property>
+ </component>
+
+ <component name="path" t:color="orange1">
+ <documentation>path</documentation>
+ <t:implementation.python script="path.py"/>
+ <service name="path"/>
+ <property name="path" t:visible="false"></property>
+ </component>
+
+ <component name="params" t:color="orange1">
+ <documentation>?params</documentation>
+ <t:implementation.python script="params.py"/>
+ <service name="params"/>
+ <property name="params" t:visible="false"></property>
+ </component>
+
+ <component name="user" t:color="orange1">
+ <documentation>user</documentation>
+ <t:implementation.python script="user.py"/>
+ <service name="user"/>
+ <property name="user" t:visible="false"></property>
+ </component>
+
+ <component name="realm" t:color="orange1">
+ <documentation>realm</documentation>
+ <t:implementation.python script="realm.py"/>
+ <service name="realm"/>
+ <property name="realm" t:visible="false"></property>
+ </component>
+
+ <component name="email" t:color="orange1">
+ <documentation>email</documentation>
+ <t:implementation.python script="email.py"/>
+ <service name="email"/>
+ <property name="email" t:visible="false"></property>
+ </component>
+
+</composite>