blob: 51234a20bbbf9c8bca10060fa0251046da2645ab [file] [log] [blame]
<?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"
targetNamespace="http://server"
name="server">
<component name="User">
<implementation.python script="user.py"/>
<property name="user">?</property>
<property name="email">?</property>
<property name="nickname">?</property>
<property name="fullname">?</property>
<property name="firstname">?</property>
<property name="lastname">?</property>
<property name="realm">?</property>
<property name="host">?</property>
</component>
<component name="Editor">
<implementation.widget location="/index.html"/>
<reference name="user" target="User"/>
<reference name="accounts" target="Accounts"/>
<reference name="pictures" target="Pictures"/>
<reference name="dashboards" target="Dashboards"/>
<reference name="apps" target="Apps"/>
<reference name="store" target="AppStore"/>
<reference name="search" target="Search"/>
<reference name="palettes" target="Palettes"/>
<reference name="icons" target="Icons"/>
<reference name="composites" target="Composites"/>
<reference name="pages" target="Pages"/>
<reference name="reviews" target="Reviews"/>
<reference name="ratings" target="Ratings"/>
<reference name="log" target="Log"/>
</component>
<component name="App">
<implementation.widget location="/app/index.html"/>
<reference name="user" target="User"/>
<reference name="pages" target="Pages"/>
<reference name="composites" target="Composites"/>
<reference name="log" target="Log"/>
</component>
<component name="Accounts">
<implementation.python script="accounts.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
</component>
<component name="Pictures">
<implementation.python script="pictures.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
</component>
<component name="Authenticator">
<implementation.python script="authn.py"/>
<reference name="cache" target="Cache"/>
</component>
<component name="Dashboards">
<implementation.python script="dashboards.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
<reference name="apps" target="Apps"/>
<reference name="ratings" target="Ratings"/>
</component>
<component name="AppStore">
<implementation.python script="store.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
<reference name="apps" target="Apps"/>
<reference name="ratings" target="Ratings"/>
</component>
<component name="Search">
<implementation.python script="search.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
<reference name="db" target="Database"/>
<reference name="apps" target="Apps"/>
<reference name="ratings" target="Ratings"/>
</component>
<component name="Apps">
<implementation.python script="apps.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
<reference name="db" target="Database"/>
<reference name="dashboard" target="Dashboards"/>
<reference name="store" target="AppStore"/>
<reference name="composites" target="Composites"/>
<reference name="pages" target="Pages"/>
<reference name="icons" target="Icons"/>
</component>
<component name="Composites">
<implementation.python script="composites.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
<reference name="apps" target="Apps"/>
</component>
<component name="Pages">
<implementation.python script="pages.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
<reference name="apps" target="Apps"/>
</component>
<component name="Icons">
<implementation.python script="icons.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
<reference name="apps" target="Apps"/>
</component>
<component name="Reviews">
<implementation.python script="reviews.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
<reference name="apps" target="Apps"/>
<reference name="ratings" target="Ratings"/>
</component>
<component name="Ratings">
<implementation.python script="ratings.py"/>
<reference name="user" target="User"/>
<reference name="cache" target="Cache"/>
<reference name="db" target="Database"/>
<reference name="apps" target="Apps"/>
</component>
<component name="Palettes">
<implementation.python script="palettes.py"/>
<reference name="cache" target="Cache"/>
</component>
<component name="Cache">
<implementation.cpp path="../../components/cache" library="libdatacache"/>
<reference name="l1reader" target="Memcache"/>
<reference name="l1writer" target="Memcache"/>
<reference name="l2reader" target="Database"/>
<reference name="l2writer" target="Database"/>
</component>
<component name="Memcache">
<implementation.cpp path="../../components/cache" library="libmemcache"/>
<property name="server">localhost:11211</property>
<property name="server">localhost:11212</property>
</component>
<component name="Database">
<implementation.cpp path="../../components/sqldb" library="libsqldb"/>
<property name="conninfo">host=localhost port=6432 dbname=db</property>
<property name="table">data</property>
</component>
<component name="Log">
<implementation.python script="log.py"/>
</component>
</composite>