> What is the correct value?

Not sure I understand your question, but I'll expand: This is taken from
the example from EO's doxpage:

/foo/base.htm:

           <html>
           <head>
           <title>('*')</title>
           </head>
           <body>
           [- Execute ('head.htm') -]
           [- Execute ('*') -]
           [- Execute ('foot.htm') -]
           </body>
           </html>

          /foo/head.htm:

           <h1>head from foo</h1>

          /foo/sub/head.htm:

           <h1>another head from sub</h1>

          /foo/foot.htm:

           <hr> Footer <hr>

          /foo/page1.htm:

           <TITLE>Title for Page 1</TITLE>
           PAGE 1

          /foo/sub/page2.htm:

           <TITLE>Title for Page 2</TITLE>
           PAGE 2

          /foo/sub/index.htm:

           Index of /foo/sub

          If you now request http://host/foo/page1.htm you will get the
following page


           <html>
           <head>
           <TITLE>Title for Page 1</TITLE>
           </head>
           <body>
           <h1>head from foo</h1>
           PAGE 1
           <hr> Footer <hr>
           </body>
           </html>

          If you now request http://host/foo/sub/page2.htm you will get
the following page


           <html>
           <head>
           <TITLE>Title for Page 2</TITLE>
           </head>
           <body>
           <h1>another head from sub</h1>
           PAGE 2
           <hr> Footer <hr>
           </body>
           </html>


The idea should of course be expanded to all <HEAD> tags, not only
<TITLE>.

Hope this is more clear.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to