[Zope] Use variable value by other file
Dieter Maurer
dieter@handshake.de
Sat, 30 Sep 2000 22:10:17 +0200 (CEST)
Rafael =?ISO-8859-1?Q?Sep=FAlveda?= writes:
> How can I make a value of a variable be seen by another file that lies
> on tha same folder than the first one?
>
> I need this because I need a variable in each file describing who did
> that page, but the display of that variable is on the
> standard_html_footer file.
<dtml-let
author='Dieter Maurer'
>
.......
<dtml-var standard_html_footer>
</dtml-let>
"standard_html_footer" uses "<dtml-var author>" to access
the author.
It is not necessary for "standard_html_footer" to be
in the same folder than your file.
Dieter