[Zope] Help documents broken boundary="------------4F1A12744651A5FFB3D22FAE"

Dieter Maurer dieter@handshake.de
Wed, 13 Dec 2000 00:14:53 +0100 (CET)


Olaf Zanger writes:
 > Dies ist eine mehrteilige Nachricht im MIME-Format.
 > --------------4F1A12744651A5FFB3D22FAE
 > Content-Type: text/plain; charset=us-ascii
 > Content-Transfer-Encoding: 7bit
Please do not post MIME messages!

 > i have quite some products imported, they also work properly, but the
 > help document is broken.
The products must register help during their initialization

def initialize(context):
    ....
    context.registerHelp()
    context.registerHelpTitle('Zope Help')

and they must have a "help" subfolder.


Look at "Products/ZCatalog" for an example.


Dieter