-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy path_index.html
More file actions
140 lines (110 loc) · 4.17 KB
/
Copy path_index.html
File metadata and controls
140 lines (110 loc) · 4.17 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#include "_doctype.html"
<html>
<head> <title>curl - Development</title>
#include "css.t"
</head>
#define DEVEL_INDEX
#define CURL_URL devel.html
#include "_menu.html"
#include "setup.t"
#include "../release.t"
#include "featurewindow.t"
WHERE1(Development)
TITLE(Developing curl)
<div class="featurewindow">
The <b>Feature window</b> is now<br>
<a href="feature-window.html">
#if FEATUREWINDOW
<img src="../pix/open-sign.svg" alt="Featurewindow open"
#else
<br><img src="../pix/closed-sign.svg" alt="Featurewindow closed"
#endif
class="featurewindowsign">
</a>
</div>
<p>
This is the section of the website devoted to the development of curl and
libcurl. If you are a "user" of curl or libcurl, this may not be where you
want to hang out.
<p>
There is always development going on in the curl project. To help out the
development team, we provide these services:
SUBTITLE(Generated contents)
<p>
Build and source information that is updated all the time:
<ul>
<li>
<a href="builds.html">Automatic Builds</a> - We
build curl automatically non-stop to verify that it builds and works. Learn <a href="howto.html">how to autobuild</a> and read the <a href="summary.html">autobuild stats</a>.
<li> <a href="https://testclutch.curl.se/">Test Clutch</a> - the curl test run
aggregation and analysis system.
<li> <a href="/snapshots/">Daily Snapshot</a> - The latest
version of curl, packaged and provided daily.
<li> <a href="/gitstats/">git stats</a>, updated daily
<li> <a href="/dashboard.html">dashboard</a> - daily updated graphs showing current project status
</ul>
SUBTITLE(Broadcasted commit info)
<p>
Each push to the git repository is announced over various systems.
<ul>
<li> Mail is sent to
the <a href="https://lists.haxx.se/listinfo/curl-commits">curl-commits</a>
mailing list
<li> Via an <a href="https://github.com/curl/curl/commits/master.atom">RSS feed</a>
</ul>
SUBTITLE(Work in progress)
<p>
Stuff being worked on for the next release.
<ul>
<li> Next release is scheduled to ship on <b>__NEXTDATE</b>.
<li> <a href="release-notes.html">RELEASE-NOTES</a> is the current work in
progress document for the next release.
<li> <a href="deprecate.html">Deprecate</a> - the plan for upcoming
removals of features.
<li> <a href="experimental.html">Experimental</a> - new features that are on their way in.
<li>
<a href="source.html">Source code</a> - check out the latest code
directly from git
<li>
Release calendar, pick your format: <a href="https://www.google.com/calendar/ical/c9u5d64odop9js55oltfarjk6g%40group.calendar.google.com/public/basic.ics">ICAL</a>, <a href="https://www.google.com/calendar/embed?src=c9u5d64odop9js55oltfarjk6g%40group.calendar.google.com&ctz=Europe/Stockholm">HTML</a>
</ul>
SUBTITLE(Bugs and discussions)
<ul>
<li>
<a href="https://github.com/curl/curl/issues">Bug tracker</a>
[github] - submit problems there. See also the <a
href="/docs/knownbugs.html">KNOWN_BUGS</a> document.
<li>
<a href="https://curl.se/mail/">libcurl mailing list</a> - Development
talk and thoughts about how the future may become is discussed there.
<li> A few devs and users hang out
on <a href="https://curl.se/docs/irc.html">IRC</a>, in the #curl channel on
irc.libera.chat - or on Matrix.
<li>
We also get <a href="https://github.com/curl/curl/pulls">pull requests</a>
filed at github.
</ul>
SUBTITLE(Developer Documentation)
<p>
Most of these are documents from the source archive converted to webpages
here for your convenience.
<ul>
<li> <a href="dependencies.html">Dependency versions</a> - minimum supported
versions for curl's dependencies
<li> <a href="/docs/todo.html">TODO</a> - we try to maintain lists of what
things you could <a href="/help.html">help us with</a> and features a future
curl release might get.
<li>
<a href="contribute.html">Contribute</a> explains about a few things
to consider when you contribute with patches and source code to the curl
project.
<li>
Learn how to write a <a href="advisory.html">Security Advisory</a> for curl.
<li> The <a href="/docs/knownbugs.html">KNOWN_BUGS</a> list.
<li>
<a href="/docs/thanks.html">Thanks to these people</a>, curl exists as it is
today!
</ul>
#include "_footer.html"
</body>
</html>