-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
121 lines (98 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>YouTube Caption Auditor (YTCA)</title>
<link rel="stylesheet" type="text/css" href="styles/ytca.css">
</head>
<body>
<h1>YouTube Caption Auditor (YTCA)</h1>
<p class="ytca_intro">Use the following form to generate a report regarding the indicated YouTube channel(s).
For YTCA source code and documentation, see <a href="https://github.com/terrill/YTCA">YTCA on GitHub</a>.</p>
<form id="ytca_input" method="get" action="ytca.php">
<fieldset>
<legend>YouTube Channel</legend>
<div>
<label for="channelid">YouTube Channel ID:</label>
<input type="text" id="channelid" name="channelid">
</div>
<div>
<label for="channels">URL to Channel ini File:</label>
<input type="text" id="channels" name="channels">
</div>
</fieldset>
<fieldset>
<legend>Output</legend>
<div>
<label for="report">Report Type:</label>
<select id="report" name="report">
<option value=""></option>
<option value="details">Details</option>
<option value="summary">Summary</option>
</select>
</div>
<div>
<label for="output">Format:</label>
<select id="output" name="output">
<option value=""></option>
<option value="html">HTML</option>
<option value="json">JSON</option>
<option value="xml">XML</option>
</select>
</div>
</fieldset>
<fieldset>
<legend>Filter</legend>
<div>
<label for="filtertype">Filter results by:</label>
<select id="filtertype" name="filtertype">
<option value=""></option>
<option value="count">Top X videos (by views)</option>
<option value="percentile">X% most viewed videos</option>
<option value="views">Videos with X or more views</option>
</select>
</div>
<div>
<label for="filtervalue">Filter value (X):</label>
<input type="text" id="filtervalue" name="filtervalue">
</div>
</fieldset>
<fieldset>
<legend>Dates</legend>
<div>
<label for="date-start">Published after (YYYY-MM-DD):</label>
<input type="text" id="date-start" name="date-start">
</div>
<div>
<label for="date-end">Published before (YYYY-MM-DD):</label>
<input type="text" id="date-end" name="date-end">
</div>
</fieldset>
<fieldset id="options">
<legend>Options</legend>
<div>
<input type="checkbox" id="show-channel-id" name="show-channel-id" value="true">
<label for="show-channel-id">Include a <em>Channel ID</em> column in the report (HTML Summary report only)</label>
</div>
<fieldset id="debug">
<legend>Debug Mode</legend>
<div>
<input type="radio" id="debug0" name="debug" value="0" checked>
<label for="debug0">Off</label>
</div>
<div>
<input type="radio" id="debug1" name="debug" value="1">
<label for="debug1">Include YouTube API data in summary output</label>
</div>
<div>
<input type="radio" id="debug2" name="debug" value="2">
<label for="debug2">Include YouTube API data <em>and</em> show YouTube API query URLs</label>
</div>
</fieldset>
<div class="submit">
<input type="submit" id="submit" name="submit" value="Submit">
<input type="reset" id="reset" name="reset" value="Reset">
</div>
</form>
</body>
</html>