-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynalist_flatten.html
38 lines (33 loc) · 1.3 KB
/
dynalist_flatten.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
<html>
<head>
<title>Dynalist Flat List</title>
<link rel="stylesheet" type="text/css" href="dynalist_flatten.css" />
<script src="dynalist_flatten.js"></script>
</head>
<body onload="onBodyLoad();">
<h1>Dynalist Flattener</h1>
This utility allows you to search a Dynalist outline and then see the
matching items as a flat sorted list.
<div id="controlPanel" class="panel">
API Key <span class="fieldLabelExtra">(never stored)</span>
<input id="apiKeyInput" class="controlPanelTextField" type="text"><br/>
Document URL<br/>
<input id="docUrlInput" class="controlPanelTextField" type="text"><br/>
Filter <span class="fieldLabelExtra">(regular expression)</span>
<input id="filterInput" class="controlPanelTextField" type="text" value=".*"><br/>
Sort by<br/>
<select id="sortResultsSelect" class="controlPanelSelect">
<option value="none">Don't Sort</option>
<option value="title" selected="true">Title</option>
<option value="note">Note</option>
<option value="regex">Filter</option>
</select><br/>
<br/>
<button id="goButton" type="button" onclick="onGoButtonClick();">Go!</button>
</div>
<div id="resultsPanel" class="panel">
<span class="holdingText">Results will appear here after you click
"Go".</span>
</div>
</body>
</html>