[Zope] Hyperlinks and acquisition...

Chui Tey teyc@bigfoot.com
Sat, 6 Nov 1999 22:50:59 +1000


My site structure looks like this:
+WELCOME
+QUERY
      QUERY_INPUT
      QUERY_RESULTS

Normally the user would go to the search folder, and do their searches
there.
Results are shown on

query/query_results

If I embed the query screen in the welcome page, using
 <dtml-with QUERY>
     <dtml-var QUERY_INPUT>
 </dtml-with>

This breaks the hyperlink, since it takes the user to
 welcome/query_results

I tried this
 <dtml-call "RESPONSE.setBase(URL2 + '/QUERY')>
 <dtml-with QUERY>
     <dtml-var QUERY_INPUT>
 </dtml-with>

But then it breaks my other links on the page.

What should I do here?

TIA.
Chui