diff options
author | Jonas Smedegaard <dr@jones.dk> | 2003-08-01 15:10:27 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2003-08-01 15:10:27 +0000 |
commit | d71cca473bd6ce2a734fc8f90cf4fc532e84f9bf (patch) | |
tree | 73f5b24179b7a33e3723f50375cb1458106ce229 /apache | |
parent | 5bf1899b77615717d5442eed4bda0c372e344cf3 (diff) |
Add Makefile to sync symlinked-but-does-not-work-with-CVS files. Add stupid hidden Microsoft workaround to footer.
Diffstat (limited to 'apache')
-rw-r--r-- | apache/ErrorDocument/Makefile | 6 | ||||
-rw-r--r-- | apache/ErrorDocument/foot.shtml | 10 |
2 files changed, 16 insertions, 0 deletions
diff --git a/apache/ErrorDocument/Makefile b/apache/ErrorDocument/Makefile new file mode 100644 index 0000000..f8e665a --- /dev/null +++ b/apache/ErrorDocument/Makefile @@ -0,0 +1,6 @@ +TARGETS = $(addsuffix .shtml,$(basename $(basename $(wildcard *.en.shtml)))) + +all: $(TARGETS) + +$(TARGETS): + cp $(basename $@).en.shtml $@ diff --git a/apache/ErrorDocument/foot.shtml b/apache/ErrorDocument/foot.shtml index 4b75dc1..fda2675 100644 --- a/apache/ErrorDocument/foot.shtml +++ b/apache/ErrorDocument/foot.shtml @@ -18,4 +18,14 @@ SUBJECT="Feedback about Error message [<!--#echo var="REDIRECT_STATUS" </ADDRESS> </UL> </BODY> +<!-- Microsoft Internet Exploder has this stupid "feature" that if an +error message is shorter than 512 bytes then Microsoft decides that the +user is better off with the error message being dropped and instead +replaced with the error message for the same error code internal to the +browser. So to make a short story long, the reason for writing all this +noise in a comment that is not even meant to be shown to the end user is +to make sure what we *want* to show is shown to everybody including the +unfortunate ones using a browser made by Microsoft. Read more here: +http://perl.apache.org/docs/tutorials/client/browserbugs/browserbugs.html +--> </HTML> |