summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html
blob: fcd25979a5943511a7131af76540e0349d1540d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Tuscany Extensions</title>


<link rel="stylesheet" type="text/css"
	href="http://ajax.googleapis.com/ajax/libs/dojo/1.3.2/dijit/themes/tundra/tundra.css">
<style type="text/css">
body,html {
	font-family: helvetica, arial, sans-serif;
	font-size: 90%;
}
</style>
</head>

<body class="tundra">

<h1>Tuscany Extensions</h1>

<div dojoType="dojo.data.ItemFileReadStore" jsId="extensionStore"
	url="extensions">
</div>
<div dojoType="dijit.tree.ForestStoreModel" jsId="extensionModel"
	store="extensionStore" childrenAttrs="types, artifacts"
	rootId="extensionRoot" rootLabel="Extensions">
</div>
<div dojoType="dijit.Tree" id="extensionTree" model="extensionModel"
	showRoot="true">
</div>
</body>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.3.2/dojo/dojo.xd.js"
	djConfig="parseOnLoad: true"></script>
<script type="text/javascript">
        dojo.require("dojo.data.ItemFileReadStore");
        dojo.require("dijit.tree.ForestStoreModel");
        dojo.require("dijit.Tree");
</script>
</html>