Skip to content

Commit f147403

Browse files
committed
dev/experimental: add
The docs/EXPERIMENTAL.md document from the git repository Closes #615
1 parent 2f6615e commit f147403

4 files changed

Lines changed: 37 additions & 1 deletion

File tree

dev/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ PAGES = \
2121
code-style.html \
2222
contribute.html \
2323
deprecate.html \
24+
experimental.html \
2425
feature-window.html \
2526
foot.html \
2627
head.html \
@@ -107,6 +108,11 @@ deprecate.html: _deprecate.html $(MAINPARTS) deprecate.gen
107108
deprecate.gen: $(DOCROOT)/DEPRECATE.md
108109
$(MARKDOWN) < $< > $@
109110

111+
experimental.html: _experimental.html $(MAINPARTS) experimental.gen
112+
$(ACTION)
113+
experimental.gen: $(DOCROOT)/EXPERIMENTAL.md
114+
$(MARKDOWN) < $< > $@
115+
110116
internals.html: _internals.html $(MAINPARTS) internals.gen
111117
$(ACTION)
112118
internals.gen: $(DOCROOT)/INTERNALS.md

dev/_experimental.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#include "_doctype.html"
2+
<html>
3+
<head> <title>Experimental features</title>
4+
#include "css.t"
5+
</head>
6+
7+
#define DEVEL_EXPERIMENTAL
8+
#define CURL_URL dev/experimental.html
9+
10+
#include "_menu.html"
11+
#include "setup.t"
12+
13+
WHERE2(Development, "/dev/", Experimental)
14+
15+
<div class="relatedbox">
16+
<b>Related:</b>
17+
<br><a href="internals.html">Internals</a>
18+
<br><a href="/mail/">Mailing Lists</a>
19+
<br><a href="/docs/knownbugs.html">Known Bugs</a>
20+
<br><a href="/docs/bugs.html">Report Bugs</a>
21+
<br><a href="/docs/todo.html">TODO</a>
22+
</div>
23+
24+
#include "experimental.gen"
25+
#include "_footer.html"
26+
27+
</body>
28+
</html>

dev/_index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@
7373
<li> Next release is scheduled to ship on <b>__NEXTDATE</b>.
7474
<li> <a href="release-notes.html">RELEASE-NOTES</a> is the current work in
7575
progress document for the next release.
76-
<li> <a href="deprecate.html">DEPRECATE</a> - the plan for upcoming
76+
<li> <a href="deprecate.html">Deprecate</a> - the plan for upcoming
7777
removals of features.
78+
<li> <a href="experimental.html">Experimental</a> - new features that are on their way in.
7879
<li>
7980
<a href="source.html">Source code</a> - check out the latest code
8081
directly from git

dev/_menu.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
<a href="/dev/code-style.html">Code Style</a>
2626
<a href="/dev/contribute.html">Contribute</a>
2727
<a href="/dev/deprecate.html">Deprecate</a>
28+
<a href="/dev/experimental.html">Experimental</a>
2829
<a href="/dev/internals.html">Internals</a>
2930
<a href="/dev/new-protocol.html">New protocol</a>
3031
<a href="/dev/release-procedure.html">Release procedure</a>

0 commit comments

Comments
 (0)