9
by mattgiuca
Added prototypes directory. Added ajax file browser proof-of-concept demo. |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
3 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
|
4 |
<head> |
|
5 |
<title>File Browser</title> |
|
6 |
<meta http-equiv="Content-Type" content="application/xml+xhtml; charset=utf-8" |
|
7 |
/>
|
|
8 |
<script type="text/javascript" src="json2.js"></script> |
|
9 |
<script type="text/javascript" src="browser.js"></script> |
|
10 |
<style type="text/css"> |
|
11 |
th { text-align: left } |
|
12 |
</style> |
|
13 |
</head> |
|
14 |
<body onload="init_browser()"> |
|
15 |
<p id="path"></p> |
|
16 |
<p><input type="button" value="Refresh" onclick="refresh()" /> |
|
11
by mattgiuca
browser prototype: Added sample subversion status, add and commit actions to |
17 |
<input type="button" value="New File" onclick="newfile()" /> |
18 |
<input type="button" value="Commit All" onclick="svncommitall()" /></p> |
|
9
by mattgiuca
Added prototypes directory. Added ajax file browser proof-of-concept demo. |
19 |
<table width="100%"> |
20 |
<thead> |
|
11
by mattgiuca
browser prototype: Added sample subversion status, add and commit actions to |
21 |
<tr><th>Type</th><th>Filename</th><th>Status</th><th>Size</th><th>Time</th><th>Actions</th></tr> |
9
by mattgiuca
Added prototypes directory. Added ajax file browser proof-of-concept demo. |
22 |
</thead> |
23 |
<tbody id="files"></tbody> |
|
24 |
</table> |
|
25 |
</body> |
|
26 |
</html> |