[Zope] RE: [Zope-dev] Background

Rob Page rob.page@digicool.com
Tue, 10 Aug 1999 09:10:41 -0400


> <BODY BACKGROUND="<!--@var FILEOBJECT-->">
> 
> This line is correct ? It not work !!

No.. :^)

Coupla things...  as someone seems to already have pointed out the var
tag has the following syntax:

<!--#var dc_logo-->

which for file objects renders to (example):

<img src="http://localhost/Zope/dc_logo" alt="dc_logo">

whiiich, when substituted makes something invalid:

<body background="<img src="http://localhost/Zope/dc_logo" alt="Digital
Creations Logo">">

Instead try:

<body backround="dc_logo">

--Rob