Kate Legere wrote at 2005-8-5 15:04 -0400:
>I've installed DocFinder 1.0.3 but I'm getting an error when I try to
>instantiate.
> ...
>Exception Type         AttributeError
>Exception Value        standard_template.pt

"standard_template.pt" is one of the standard objects you should
find in your Zope "Root Folder" (in the ZMI).
Its companions are "standard_error_message", "standard_html_footer"
and "standard_html_header".

Maybe, your Zope instance is very old (from a time when
"standard_template.pt" was not yet created).

"standard_template.pt" is a Page Template with the following
content:

<html metal:define-macro="page">
  <head>
   <metal:block define-slot="head">
   <title tal:content="template/title">The Title</title>
   </metal:block>
  </head>
  <body> 
    <div metal:define-slot="body">
    This is where the page's body text goes. abc
    </div>
  </body>
</html>


-- 
Dieter
_______________________________________________
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )

Reply via email to