summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/autoconf-archive.texi5
-rwxr-xr-xfix-website.sh13
2 files changed, 5 insertions, 13 deletions
diff --git a/doc/autoconf-archive.texi b/doc/autoconf-archive.texi
index e859187..6bf0210 100644
--- a/doc/autoconf-archive.texi
+++ b/doc/autoconf-archive.texi
@@ -50,6 +50,8 @@ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
@end ifnottex
@menu
+About the Archive:
+
* Introduction::
The Macros:
@@ -279,7 +281,6 @@ The Macros:
* ax_cxx_header_tr1_unordered_set::
* ax_cxx_header_unordered_map::
* ax_cxx_header_unordered_set::
-* ax_cxx_helpful_terminate_handler::
* ax_cxx_ldflags_std_lang::
* ax_cxx_member_constants::
* ax_cxx_member_templates::
@@ -546,7 +547,7 @@ This official web site of this project is located at
@uref{http://savannah.nongnu.org/projects/autoconf-archive/}. All available
information concerning this project is referenced from there.
-@unnumberedsec Downloading The Archive
+@unnumberedsec Downloading The Macros
The macros distributed by the Archive are maintained in a public Git repository
at @indicateurl{git://git.sv.gnu.org/autoconf-archive.git}. That repository can
diff --git a/fix-website.sh b/fix-website.sh
index 7261ee5..8d552e6 100755
--- a/fix-website.sh
+++ b/fix-website.sh
@@ -11,16 +11,7 @@ mkdir -p "$destdir"
for n in *.html; do
echo fixing "$n"
- case "$n" in
- index.html)
- m="autoconf-archive.html"
- ;;
- *)
- m="${n//_005f/_}"
- ;;
- esac
- sed <"$n" >"$destdir/$m" \
+ sed <"$n" >"$destdir/${n//_005f/_}" \
-e 's|_005f|_|g' \
- -e 's|href="index.html|href="autoconf-archive.html|g' \
- -e 's|href="../index.html|href="index.html|g'
+ -e 's|href="../index.html#dir">(dir)</a>|href="http://savannah.nongnu.org/projects/autoconf-archive/">Home Page at Savannah</a>|g'
done