-
Notifications
You must be signed in to change notification settings - Fork 90
/
_menu.html
122 lines (109 loc) · 3.91 KB
/
_menu.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
#ifndef __MENU
#define __MENU
#include "setup.t"
#ifndef NOBODY
<body>
#endif
<div class="main">
<div class="menu">
<div class="dropdown">
<a class="dropbtn" href="/download.html">Download</a>
<div class="dropdown-content">
<a href="https://github.com/curl/curl">Browse source</a>
<a href="/ch/">Changelog</a>
<a href="/tiny/">tiny-curl</a>
</div>
</div>
<div class="dropdown">
<a class="dropbtn" href="/docs/">Documentation</a>
<div class="dropdown-content">
<a href="/docs/projdocs.html">Project</a>
<small>
<a href="/docs/bugbounty.html"> Bug Bounty</a>
<a href="/docs/faq.html">FAQ</a>
<a href="/docs/help-us.html"> Help us</a>
<a href="/docs/knownbugs.html"> Known bugs</a>
<a href="/docs/todo.html"> TODO</a>
</small>
<a href="/docs/protdocs.html">Protocols</a>
<small>
<a href="/docs/caextract.html"> CA bundle</a>
<a href="/docs/http-cookies.html"> HTTP Cookies</a>
<a href="/docs/sslcerts.html"> SSL Certs</a>
</small>
<a href="/docs/reldocs.html">Releases</a>
<small>
<a href="/docs/security.html"> Security</a>
<a href="/docs/versions.html"> Version numbers</a>
<a href="/docs/vulnerabilities.html"> Vulnerabilities</a>
</small>
<a href="/docs/tooldocs.html">curl tool</a>
<small>
<a href="/docs/manpage.html"> man page</a>
<a href="/docs/tutorial.html"> Tutorial</a>
<a href="/docs/httpscripting.html"> HTTP scripting</a>
</small>
<a href="/trurl/">trurl</a>
<a href="/wcurl/">wcurl</a>
<a href="/docs/videos/">Videos</a>
<a href="/docs/whodocs.html">Who and Why</a>
</div>
</div>
<div class="dropdown">
<a class="dropbtn" href="/libcurl/">libcurl</a>
<div class="dropdown-content">
<a href="/libcurl/c/">API</a>
<a href="/libcurl/c/example.html">Examples</a>
<a href="/libcurl/features.html">Features</a>
<a href="/mail/list.cgi?list=curl-library">Mailing list</a>
<a href="/libcurl/c/symbols-in-versions.html">Symbols</a>
<a href="/libcurl/using/">Using libcurl</a>
<a href="/libcurl/c/libcurl-tutorial.html">Tutorial</a>
</div>
</div>
<div class="dropdown">
<a class="dropbtn" href="/gethelp.html">Get Help</a>
<div class="dropdown-content">
<a href="https://lists.haxx.se/listinfo/curl-library">curl-library</a>
<a href="https://lists.haxx.se/listinfo/curl-users">curl-users</a>
<a href="/docs/irc.html">IRC / chat</a>
<a href="/mail/">Mailing lists</a>
<a href="/book.html">Everything curl [book]</a>
<a href="/docs/videos/">Video presentations</a>
<a href="https://github.com/curl/curl/issues">Report a bug</a>
<a href="/support.html">Paid support</a>
</div>
</div>
<div class="dropdown">
<a class="dropbtn" href="/dev/">Development</a>
<div class="dropdown-content">
<a href="/dev/builds.html">Autobuilds</a>
<a href="/dev/code-review.html">Code review</a>
<a href="/dev/code-style.html">Code style</a>
<a href="/dev/contribute.html">Contribute</a>
<a href="/dashboard.html">Dashboard</a>
<a href="/dev/deprecate.html">Deprecate</a>
<a href="/dev/internals.html">Internals</a>
<a href="/dev/release-notes.html">Release Notes</a>
<a href="/dev/release-procedure.html">Release Procedure</a>
<a href="/dev/roadmap.html">Roadmap</a>
<a href="/dev/runtests.html">Run Tests</a>
<a href="/rfc/">Specifications</a>
<a href="/dev/testcurl.html">Test curl</a>
<a href="/dev/tests-overview.html">Tests Overview</a>
<a href="/dev/vuln-disclosure.html">Vulnerability Disclosure Policy</a>
</div>
</div>
<div class="dropdown">
<a class="dropbtn" href="/news.html">News</a>
<div class="dropdown-content">
<a href="/ch/">Changelog</a>
<a href="/docs/releases.html">Release table</a>
</div>
</div>
</div>
#ifdef SHOW_ALERT
#include "alert.t"
#endif
START_OF_MAIN
#endif