-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
132 lines (129 loc) · 4.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" ng-app="myApp" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" ng-app="myApp" class="no-js"> <!--<![endif]-->
<head>
<title>TABLEizer</title>
<meta charset="UTF-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<link href="resources/css/screen.css" rel="stylesheet" type="text/css" media="screen, projection">
<link href="resources/css/css-classes.css" rel="stylesheet" type="text/css" media="screen, projection">
<link href="resources/css/screen2.css" rel="stylesheet" type="text/css" media="screen, projection">
<link href="resources/css/dragndrop.css" rel="stylesheet">
<link href='resources/css/loading-bar.css' rel='stylesheet' />
<script src="resources/js/dragndrop.js"></script>
</head>
<body>
<div class="container" ng-controller="MainCtrl">
<div class="banner clear">
<div class="left">
<h1 id="headerText">
TABLEizer
</h1>
<h3>
Converts tabular data into formatted HTML
</h3>
<p>Want more from TABLEizer? Let me know at [email protected].</p>
</div>
<div class="right span-12 unimportant" style="text-align: right;">
<div>
<a href="http://devotis.nl"><img src="http://devotis.nl/img/logo.png"></a>
</div>
<div>
A tool from Devotis. <a href="https://www.github.com/devotis/tableizer" id="sourceLink" onclick="javascript: pageTracker._trackPageview('/sourceLink');" name="sourceLink">Source is on GitHub.</a><br>
More info in the demo
</div>
</div>
</div>
<hr>
<!-- Start copy here to gh-pages version of index.html -->
<div style="padding-right: 10px;">
<textarea
ng-model="source"
ng-change="transform()"
rows="30" cols="100"
spellcheck="false"
placeholder="Paste tabular data here."
wrap="off"
style="resize: both; width: 100%;"></textarea>
<input
ng-model="array"
json-text
disabled
style="width: 100%; margin: 0.4em 0em;">
<input
type="button"
value="transpose"
ng-click="transpose()"
>
<input
type="text"
ng-model="findValue"
placeholder="find what"
style="width: 80px;"
>
<input
type="text"
ng-model="replaceValue"
placeholder="replace with"
style="width: 80px;"
>
<input
type="button"
value="replace"
ng-click="findReplace()"
style="width: 80px;"
>
<input
type="button"
value="remove empty lines"
ng-click="removeEmptyLines()"
>
format:
<input
type="radio"
ng-model="format"
name="format"
value="html"
> html
<input
type="radio"
ng-model="format"
name="format"
value="text"
> text
<input
type="button"
value="select all"
ng-click="selectAll()"
style="width: 80px;"
>
<a ng-click="isFaqOpen = !isFaqOpen">faq</a>
</div>
<span
ng-bind-html="message | unsafe"
class="unimportant"></span>
<div
ng-bind-html="target | unsafe"
id="target"
style="width: 100%; height: 250px; overflow: auto;"></div>
<!-- End copy here to gh-pages version of index.html -->
<div id="faq" ng-show="isFaqOpen">Not maintained here. Go to the demo to read the faq</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular-route.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular-sanitize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.compat.min.js"></script>
<script src="resources/js/angular-loadscript.js"></script>
<script src="resources/js/loading-bar.js"></script>
<script src="resources/js/app.js"></script>
<script src="resources/js/services.js"></script>
<script src="resources/js/controllers.js"></script>
<script src="resources/js/filters.js"></script>
<script src="resources/js/directives.js"></script>
</body>
</html>