-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathsearch.html
37 lines (31 loc) · 1.18 KB
/
search.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
<!DOCTYPE html>
<html>
<head>
<title>GitHub Code Search</title>
</head>
<body>
<h1>GitHub Search <button id="view-source">View the Source</button></h1>
<div>Repo: <input type=text size=40 id=repo value=SpinlockLabs/github.dart /> </div>
<div>Language: <input type=text size=40 id=language /></div>
<div>Filename: <input type=text size=40 id=filename /></div>
<div>Extension: <input type=text size=40 id=ext /></div>
<div>Username: <input type=text size=40 id=user /></div>
<div>Org: <input type=text size=40 id=org /></div>
<div>Fork: <input type=text size=40 id=fork /> (true, only)</div>
<div>Path: <input type=text size=40 id=path /></div>
<div>Size: <input type=text size=40 id=size /></div>
<div>Query: <input type=text size=40 id=query value=github /></div>
<div>
<input type=checkbox id=infile checked /> In File Contents<br>
<input type=checkbox id=inpath /> In Path
</div>
<div>
Per Page: <input type=number size=3 id=perpage />
Pages: <input type=number size=3 id=pages />
</div>
<div><button id=submit>Search</button></div>
<div id=nresults></div>
<div id=results></div>
<script defer src="search.dart.js"></script>
</body>
</html>