2011-07-17 15:50:55 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2013-06-11 09:50:56 +00:00
|
|
|
<title>Filetree</title>
|
|
|
|
<script src="closure/goog/base.js"></script>
|
|
|
|
<script src="./deps.js"></script>
|
|
|
|
<script src="?camli.mode=config&var=CAMLISTORE_CONFIG"></script>
|
|
|
|
<script>
|
|
|
|
goog.require('camlistore.FiletreePage');
|
|
|
|
</script>
|
|
|
|
<link rel="stylesheet" href="filetree.css">
|
2011-07-17 15:50:55 +00:00
|
|
|
</head>
|
2013-06-11 09:50:56 +00:00
|
|
|
<body class="cam-filetree-page">
|
|
|
|
<div class="cam-filetree-nav"><a href="./">Home</a></div>
|
|
|
|
<h1>FileTree for <span id="curDir" class="cam-filetree-nav"></span> </h1>
|
2011-07-17 15:50:55 +00:00
|
|
|
|
2013-06-11 09:50:56 +00:00
|
|
|
<div id="children"></div>
|
|
|
|
<script>
|
|
|
|
var page = new camlistore.FiletreePage(CAMLISTORE_CONFIG);
|
|
|
|
page.decorate(document.body);
|
|
|
|
</script>
|
2011-07-17 15:50:55 +00:00
|
|
|
</body>
|
|
|
|
</html>
|