Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs.org-dev/www/bboard/direct.patch'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs.org-dev/www/bboard/index.vuh =================================================================== RCS file: /usr/local/cvsroot/openacs.org-dev/www/bboard/index.vuh,v diff -u -r1.3 -r1.4 --- openacs.org-dev/www/bboard/index.vuh 1 Aug 2002 14:20:40 -0000 1.3 +++ openacs.org-dev/www/bboard/index.vuh 13 Sep 2002 12:56:06 -0000 1.4 @@ -47,6 +47,25 @@ regsub {\.tcl$} $target {} target + +# Check if this request seems to point at the old location directly, +# without a specific message or forum, (e.g. /bboard/), if so redirect +# to the new mountpoint directly. +if { $target == "bboard" || $target == "index" } { + set new_link "$new_mount_point/" + ns_set put [ns_conn outputheaders] Location $new_link + ns_return 301 text/html " +Redirection + +

Redirection

+The requested URL has moved here permanently. + + +" + return +} + + switch $target { q-and-a-fetch-msg { # a simple message @@ -87,6 +106,7 @@ } } + default { ns_log notice "A request for [ad_conn url]?[ad_conn query] occured - you might want to add it to /bboard/index.vuh" }