When blocking a client from an item detail, link to the original
web page.
INSERTED DELETED
13 3 src/cgi.awk
1 1 src/details/index.dcgi.m4
14 4 TOTAL over 2 changed files
Index: src/cgi.awk
==================================================================
--- src/cgi.awk
+++ src/cgi.awk
@@ -1,6 +1,6 @@
-function block_msg(ip) {
+function block_msg(ip, extra) {
print "Access Denied"
print "============="
print ""
print "This service only allows access from vetted client IP addresses."
print "The intent is to thwart abusive bots and crawlers."
@@ -11,14 +11,15 @@
print " " contact
print ""
print "* Include the word \"friendly\" in your message."
print ""
print "Service admin will reply when granted."
+ print extra
return
}