diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-10 17:46:50 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-10 17:46:50 +0000 |
commit | 46e1287ec60f6f184d580282bc931cb3164d47da (patch) | |
tree | 65c01a2def8e9b0febe80314402f86ba4a50d197 /sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html | |
parent | 1ec6782608ae0402055e26bcf5a4b3713f899926 (diff) |
Turn the module into a webapp
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@834562 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html b/sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html new file mode 100644 index 0000000000..fcd25979a5 --- /dev/null +++ b/sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html @@ -0,0 +1,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>
\ No newline at end of file |