Skip to content

Commit e19c647

Browse files
committed
Fix the redirects from the old documentation locations
1 parent f12c918 commit e19c647

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

doc/build_antora.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,4 @@ echo "Building docs in custom dir..."
2828
PATH="$(pwd)/node_modules/.bin:${PATH}"
2929
export PATH
3030
npx antora --clean --fetch "$PLAYBOOK" --stacktrace --log-level all
31-
cp -f html/index.html html/dynamic_bitset.html # redirects from pre-Antora docs location
3231
echo "Done"

doc/local-playbook.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
site:
1515
title: Boost.DynamicBitset
16-
url: https://antora.cppalliance.org/develop/lib/doc
1716
start_page: dynamic_bitset::index.adoc
1817
robots: allow
1918
keys:

dynamic_bitset.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="refresh" content="0; url=doc/html/index.html">
6+
<script>location="doc/html/index.html"</script>
7+
<title>Automatic redirection</title>
8+
</head>
9+
<body>
10+
<p>Automatic redirection failed. Please click <a href="doc/html/index.html">here</a>.</p>
11+
<p>© Copyright 2025 Gennaro Prota.</p>
12+
<p>Distributed under the Boost Software License, Version 1.0. (See accompanying
13+
file <a href="../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy
14+
at <a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</p>
15+
</body>
16+
</html>

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
22
<html>
33
<head>
4-
<meta http-equiv=refresh content="0; URL=dynamic_bitset.html">
4+
<meta http-equiv=refresh content="0; URL=doc/html/index.html">
55
<title>Automatic redirection</title>
66
</head>
77
<body>
88
Automatic redirection failed, please go to
9-
<a href="dynamic_bitset.html">dynamic_bitset.html</a>.&nbsp;<hr>
9+
<a href="dynamic_bitset.html">doc/html/index.html</a>.&nbsp;<hr>
1010
<p>© Copyright Beman Dawes, 2001</p>
1111
<p>Distributed under the Boost Software License, Version 1.0. (See accompanying
1212
file <a href="../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy

meta/libraries.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"Chuck Allison"
77
],
88
"description": "The dynamic_bitset template represents a set of bits. It provides access to the value of individual bits via operator[] and provides all of the bitwise operators that one can apply to builtin integers, such as operator& and operator<<. The number of bits in the set can change at runtime.",
9-
"documentation": "dynamic_bitset.html",
109
"category": [
1110
"Data structures"
1211
],

0 commit comments

Comments
 (0)