mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-21 19:08:30 +01:00
git-svn-id: https://andors-trail.googlecode.com/svn/trunk@22 08aca716-68be-ccc6-4d58-36f5abd142ac
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<!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>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
|
|
<link href="styles.css" rel="stylesheet" type="text/css"/>
|
|
<script type="text/javascript" src="editor.js"></script>
|
|
<title>Quest Editor</title>
|
|
<script type="text/javascript">
|
|
var imagepath = "../AndorsTrail/res/drawable/";
|
|
var tileimages = [];
|
|
var fields = [
|
|
{ name: "ID", type: "text" }
|
|
, { name: "Name", type: "longtext" }
|
|
, { name: "DisplayText", type: "multiline" }
|
|
, { name: "ShowInLog", type: "select", values: [ "Yes:1", "No:0" ]}
|
|
];
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="editarea">
|
|
Items:<br />
|
|
<div id="inputarea">
|
|
<table id="datatable" cellspacing="0">
|
|
<thead>
|
|
<tr id="headerrow"> </tr>
|
|
</thead>
|
|
<tbody id="datarows">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div id="buttons"> </div>
|
|
</div>
|
|
<br />
|
|
<div id="output">
|
|
<textarea id="result" cols="80" rows="10">serialized output goes here</textarea>
|
|
</div>
|
|
<div id="invisible"></div>
|
|
<div id="selecticon_dialog" title="Select image">
|
|
<div id="selecticon_dialog_tileset"> </div>
|
|
</div>
|
|
</body>
|
|
</html>
|