]> git.decadent.org.uk Git - maypole.git/commitdiff
Be a bit friendlier on returning "not found" errors.
authorSimon Cozens <simon@simon-cozens.org>
Sat, 19 Jun 2004 14:49:42 +0000 (14:49 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Sat, 19 Jun 2004 14:49:42 +0000 (14:49 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@148 48953598-375a-da11-a14b-00016c27c3ee

lib/Maypole/View/Base.pm

index 58eda6a82b7eca73928c99a42de2e9d80a7edfc8..8229d2193387f1c7b8c0f9862d882f35d75f05ba 100644 (file)
@@ -64,7 +64,33 @@ sub process {
 sub error {
     my ($self, $r) = @_;
     warn $r->{error};
-    if ($r->{error} =~ /not found$/) { return -1 }
+    if ($r->{error} =~ /not found$/) { 
+        # This is a rough test to see whether or not we're a template or
+        # a static page
+        return -1 unless @{$r->{objects}||[]}; 
+
+        $r->{error} = <<EOF;
+
+<H1> Template not found </H1>
+
+This template was not found while processing the following request:
+
+<B>@{[$r->{action}]}</B> on table <B>@{[ $r->{table} ]}</B> with objects:
+
+<PRE>
+@{[join "\n", @{$r->{objects}}]}
+</PRE>
+
+Looking for template <B>@{[$r->{template}]}</B> in paths:
+
+<PRE>
+@{[ join "\n", $self->paths($r) ]}
+</PRE>
+EOF
+        $r->{content_type} = "text/html";
+        $r->{output} = $r->{error};
+        return OK;
+    }
     $r->{content_type} = "text/plain";
     $r->{output} = $r->{error};
     $r->send_output;