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 Editor</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 |
</head> |
|
11 |
<body onload="init_edit()"> |
|
12 |
<p><a href="browser.html">Back to browser</a></p> |
|
13 |
<p>Filename: <input id="filename" type="text" /></p> |
|
14 |
<p><input type="button" value="Save" onclick="savefile()" /> |
|
12
by mattgiuca
browser prototype: Added "Save and Commit" button to editor. |
15 |
<input type="button" value="Save and Commit" onclick="saveandcommit()" /> |
9
by mattgiuca
Added prototypes directory. Added ajax file browser proof-of-concept demo. |
16 |
<input type="button" value="Reload" onclick="loadfile()" /></p> |
17 |
<p> |
|
18 |
<textarea id="data" cols="80" rows="25"></textarea> |
|
19 |
</p> |
|
20 |
</body> |
|
21 |
</html> |