[Zope] Re: Printable Page Question

Juan Garcia Garcia juangar@dei.inf.uc3m.es
Tue, 18 Dec 2001 15:17:18 +0100 (CET)


Hi,

  i have solved (more or less) this problem a few weeks ago.
Due to the content of the page is dynamic, what i do is to put a link
that calls again the page with the same parameters as the first time,
and another more to not show the navigations. To get the parameters
there are two ways:

  if they appear in the URL, you can catch them with the QUERY_STRING
  object.
  
  if they don't appear in the URL (cookies, REQUEST.set, ...), you must
  iterate over the REQUEST object to get them.

Bye.
Juan

>Hi,

>How to get content of the page you are on (DTML
>Document)?

>I want to make a printer friendly page without
>navigations and images.  The page contains dynamic
>text generated from the database so it is different
>every time.  Something like Printable page on zope.org
> (I tried to view_source of zope.org printable page
> but couldn't)