forked from bicarbon8/todoTxtWebUi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (108 loc) · 4.04 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
<!--
- todoTxtWebUi
-
- This HTML5 web page was created according to the specifications at
- http://todotxt.com/ and is intended to allow users to access their
- todo.txt files in a user-friendly and easy to visualize manner.
-
- Once initially uploaded, the todo.txt file will
- be loaded into an HTML5 localStorage and managed from there.
- The web page then allows downloading changes back to the user
- in a txt format compliant with the todo.txt specifications, but
- having re-sorted the tasks.
-
- @Created: 08/14/2012
- @Author: Jason Holt Smith ([email protected])
- @Version: 0.0.1
- Copyright (c) 2012 Jason Holt Smith. todoTxtWebUi is distributed under
- the terms of the GNU General Public License.
-
- This file is part of todoTxtWebUi.
-
- todoTxtWebUi is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- todoTxtWebUi is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with todoTxtWebUi. If not, see <http://www.gnu.org/licenses/>.
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/todoTxt.css" />
<link rel="stylesheet" type="text/css" href="css/defaultTheme.css" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.22.custom.min.js"></script>
<script type="text/javascript" src="js/todoTxt.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35011839-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="mainContainer-div">
<div id="controlsContainer-div">
<ul>
<li id="controlGridContainerToggle-li" class="topRound">
<div id="controlGridContainerToggle-div" class="stdButton">Close Controls</div>
</li>
<li id="controlGridContainer-li" class="controls">
<table>
<tbody>
<tr>
<td>
<input type="file" id="fileUpload-input" />
<div id="fileDrop-div" class="fileDrop">Drop todo.txt file here</div>
</td>
</tr>
<tr>
<td>
<select id="priority-select" multiple></select>
<select id="project-select" multiple></select>
<select id="context-select" multiple></select>
<input id="showClosed-checkbox" class="hidden" type="checkbox" checked />
</td>
</tr>
<tr>
<td>
<div id="addTaskButton-div" class="stdButton">Add New Task (Alt + t)</div>
<div id="saveFileButton-div" class="stdButton">Save To File (Alt + s)</div>
<div id="clearFilterButton-div" class="stdButton">Clear Filters (Alt + c)</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<div id="listContainer-div">
<ul id="listContainer-ul"></ul>
</div>
<div id="footer-div">
<ul id="footer-ul">
<li class="bottomRound">
<div id="navigateToTop-div" class="stdButton">To Top</div>
</li>
</ul>
</div>
<div id="modalBorder-div" class="hidden modalBorder">
<div id="modalEdit-div" class="modal">
<textarea id="modalEdit-textarea"></textarea>
<div id="updateTaskButton-div" class="stdButton">Update Task</div>
<div id="deleteTaskButton-div" class="stdButton">Delete Task</div>
</div>
</div>
</div>
</body>
</html>