summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfix-website.sh2
-rwxr-xr-xmacro2m4.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/fix-website.sh b/fix-website.sh
index 8de202e..3a2b4af 100755
--- a/fix-website.sh
+++ b/fix-website.sh
@@ -17,6 +17,6 @@ for n in *.html; do
-e 's|<html lang="en">|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" "http://www.w3.org/TR/html4/strict.dtd"><html lang="en">|' \
-e "s|<a name=\"${name}\"></a>||" \
-e 's|_005f|_|g' \
- -e 's|href="../index.html#dir">(dir)</a>|href="http://savannah.nongnu.org/projects/autoconf-archive/">Home Page at Savannah</a>|g' \
+ -e 's|href="../index.html#dir">(dir)</a>|href="http://savannah.gnu.org/projects/autoconf-archive/">Home Page at Savannah</a>|g' \
| tidy >"$destdir/${out}" -q --indent yes --indent-spaces 1 -wrap 80 --tidy-mark no --hide-comments yes
done
diff --git a/macro2m4.py b/macro2m4.py
index cfbd40b..c1709ba 100755
--- a/macro2m4.py
+++ b/macro2m4.py
@@ -57,7 +57,7 @@ for i in range(len(m.description)):
spaces = min(map(countSpaces, para))
if spaces > 1:
m.description[i] = map(lambda l: ' ' + l[spaces:], para)
-url = "http://www.nongnu.org/autoconf-archive/%s.html" % m.name
+url = "http://www.gnu.org/software/autoconf-archive/%s.html" % m.name
lineLen = max(len(url) + 2, 75)
m.url = "# %s\n# %s\n# %s" % ('=' * lineLen, (' ' * ((lineLen - len(url)) / 2)) + url, '=' * lineLen)
if m.__dict__.get("obsolete"):