Skip to content

Commit cad41c0

Browse files
authored
Merge pull request #2178 from wilzbach/fix-18379
Fix Issue 18379 - [404 Not Found] Foundation Donate page not found merged-on-behalf-of: Vladimir Panteleev <github@thecybershadow.net>
2 parents 88cda4f + 566a89e commit cad41c0

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.htaccess

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ Redirect 301 /foundation.html https://dlang.org/foundation/about.html
6565
Redirect 301 /contributors.html https://dlang.org/foundation/contributors.html
6666
Redirect 301 /sponsors.html https://dlang.org/foundation/sponsors.html
6767
Redirect 301 /dlangupb-scholarship.html https://dlang.org/foundation/updscholarship.html
68+
Redirect 301 /donate.html https://dlang.org/foundation/donate.html
6869

6970
# Error pages
7071
ErrorDocument 404 /404.html

foundation/about.dd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $(H4 The D Language Foundation is a
88
)
99

1010
<p class="center">
11-
<a href="$(ROOT_DIR)donate.html" class="btn donate-large">Donate</a>
11+
<a href="$(ROOT_DIR)foundation/donate.html" class="btn donate-large">Donate</a>
1212
</p>
1313

1414
$(H3 History)
@@ -56,7 +56,7 @@ $(P There are many ways to help the D programming language to grow further and
5656
$(LINK2 https://wiki.dlang.org/Get_involved, get involved).)
5757

5858
$(P If you don't have the time to work on the source code,
59-
you can also $(LINK2 $(ROOT_DIR)donate.html, donate) to the D Language Foundation.)
59+
you can also $(LINK2 $(ROOT_DIR)foundation/donate.html, donate) to the D Language Foundation.)
6060

6161
$(H3 The D Language Foundation is a non-profit organization)
6262

File renamed without changes.

foundation/sponsors.dd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ members of the community keep the wheels rolling through their generous contribu
1616
)
1717

1818
$(P On this page, we recognize some of those who have made monetary donations to the D Language Foundation.
19-
Each $(LINK2 donate.html, donation), big and small, enables us to keep working toward our goals. The
19+
Each $(LINK2 $(ROOT_DIR)foundation/donate.html, donation), big and small, enables us to keep working toward our goals. The
2020
list is ordered by total donation amount, descending, and is far from exhaustive. If you have donated to
2121
the D Language Foundation and want to see your name in the list, please let us know at
2222
$(LINK2 mailto:social@dlang.org, social@dlang.org).

posix.mak

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ MAN_PAGE=docs/man/man1/dmd.1
354354
PAGES_ROOT=$(SPEC_ROOT) 404 acknowledgements areas-of-d-usage \
355355
articles ascii-table bugstats builtin \
356356
$(CHANGELOG_FILES) code_coverage community comparison concepts \
357-
const-faq cppcontracts cpptod ctarguments ctod donate \
357+
const-faq cppcontracts cpptod ctarguments ctod \
358358
D1toD2 d-array-article d-floating-point deprecate dll-linux dmd \
359359
dmd-freebsd dmd-linux dmd-osx dmd-windows documentation download dstyle \
360360
exception-safe faq forum-template gpg_keys glossary \
@@ -363,7 +363,7 @@ PAGES_ROOT=$(SPEC_ROOT) 404 acknowledgements areas-of-d-usage \
363363
orgs-using-d overview pretod rationale rdmd regular-expression resources safed \
364364
search template-comparison templates-revisited tuple \
365365
variadic-function-templates warnings wc windbg \
366-
$(addprefix foundation/, index about sponsors upb-scholarship)
366+
$(addprefix foundation/, index about donate sponsors upb-scholarship)
367367

368368
# The contributors listing is dynamically generated
369369
ifneq (1,$(DIFFABLE))

0 commit comments

Comments
 (0)