[Zope] Site navigation
Michael Long
mlong at datalong.com
Fri Sep 19 11:10:28 EDT 2003
Hi,
I have a product where I am using the following method to display a page:
def index_html(self, REQUEST=None):
"Method to show my web page"
Content_Main = PageTemplateFile('showMyPage.pt', _wwwdir)
setattr(myClass, 'Content_Main', Content_Main)
if REQUEST is not None:
return self.Template_index_html(self, REQUEST)
I would like to modify this to have it duplicate the behavior of the
following url:
http://www.mysite.com/myClass/index_html#myID
Where myID is defined in showMyPage.pt by
<p id="myID"> some text </p>
How would I accomplish this?
Thanks,
Mike
More information about the Zope
mailing list