~azzar1/unity/add-show-desktop-key

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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>File Browser</title>
<meta http-equiv="Content-Type" content="application/xml+xhtml; charset=utf-8"
    />
<script type="text/javascript" src="json2.js"></script>
<script type="text/javascript" src="browser.js"></script>
<style type="text/css">
th { text-align: left }
</style>
</head>
<body onload="init_browser()">
<p id="path"></p>
<p><input type="button" value="Refresh" onclick="refresh()" />
<input type="button" value="New File" onclick="newfile()" />
<input type="button" value="Commit All" onclick="svncommitall()" /></p>
<table width="100%">
<thead>
<tr><th>Type</th><th>Filename</th><th>Status</th><th>Size</th><th>Time</th><th>Actions</th></tr>
</thead>
<tbody id="files"></tbody>
</table>
</body>
</html>