Первая копия

This commit is contained in:
2020-02-27 00:28:43 +06:00
commit 925cac4752
1125 changed files with 198979 additions and 0 deletions

29
metadata/tree/index.html Normal file
View File

@ -0,0 +1,29 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Tree</title>
<style type="text/css">
html,body,div
{
height:100%;
margin:0px;
padding:0px;
font-size: 14px;
font-family: Arial;
text-align: left;
}
</style>
<script type="text/javascript" src="../dbms/tools.js"></script>
<script type="text/javascript" src="tree.js"></script>
<script type="text/javascript">//<![CDATA[
function onloadpage()
{
tree=new TTree(document.getElementById("maintree"),"tr_","tree.php","./",24);
tree.Start();
}
//]]></script>
</head>
<body onload="onloadpage()">
<div id="maintree"></div>
</body>
</html>