forked from shancarter/mr-data-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (53 loc) · 3.25 KB
/
index.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Mr. Data Converter</title>
<meta name="author" content="Shan Carter">
<!-- Date: 2010-08-26 -->
<link rel="stylesheet" href="css/converter.css" type="text/css" media="screen" title="no title" charset="utf-8">
<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
<script src="js/CSVParser.js" type="text/javascript" charset="utf-8"></script>
<script src="js/DataGridRenderer.js" type="text/javascript" charset="utf-8"></script>
<script src="js/converter.js" type="text/javascript" charset="utf-8"></script>
<script src="js/Controller.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id='base'>
<div id='header'>
<div id="description">
<h1>Mr. Data Converter</h1>
<p>I will convert your Excel data into one of several web-friendly formats, including HTML, JSON and XML.</p>
<p>Fork me on <a href="http://github.com/shancarter/Mr-Data-Converter">github</a>.</p>
</div>
<div id='settings'>
<h3>Settings</h3>
<form id='settingsForm'>
<p>Delimiter:
<label><input class="settingsElement" type="radio" name="delimiter" id='delimiterAuto' value="auto" checked/> Auto</label>
<label><input class="settingsElement" type="radio" name="delimiter" id='delimiterComma' value="comma" /> Comma</label>
<label><input class="settingsElement" type="radio" name="delimiter" id='delimiterTab' value="tab" /> Tab</label>
</p>
<p>Decimal Sign:
<label><input class="settingsElement" type="radio" name="decimal" id='decimalDot' value="dot" checked/> Dot</label>
<label><input class="settingsElement" type="radio" name="decimal" id='decimalComma' value="comma" /> Comma</label>
</p>
<p><label><input class="settingsElement" type="checkbox" name="" value="" id="headersProvidedCB" checked /> First row is the header</label></p>
<div class="settingsGroup">
<p>Transform: <label><input class="settingsElement" type="radio" name="headerModifications" value="downcase" id='headersDowncase' /> downcase</label>
<label><input class="settingsElement" type="radio" name="headerModifications" id='headersUpcase' value="upcase" /> upcase</label>
<label><input class="settingsElement" type="radio" name="headerModifications" id='headersNoTransform' value="none" checked /> none</label></p>
</div>
<p><label><input class="settingsElement" type="checkbox" name="some_name" value="" id="includeWhiteSpaceCB" checked /> Include white space in output</label></p>
<div class="settingsGroup">
<p>Indent with: <label><input class="settingsElement" type="radio" name="indentType" value="tabs" id='includeWhiteSpaceTabs'/> tabs</label> <label><input class="settingsElement" type="radio" name="indentType" value="spaces" id='includeWhiteSpaceSpaces' checked/> spaces</label></p>
</div>
</form>
</div>
</div>
<div id='converter' class=''>
</div>
</div>
</body>
</html>