Brian Lloyd wrote:
FYI I'd like to have a 2.6.1 beta out next week. Jeremy is still looking at a few ZODB bug reports - as soon as he's done we'll make the beta.
HelpSys DTML Reference node is broken. Please consider at least a two line bugfix for 2.6.1. - if id[:5]=='dtml-': + if id[:5].lower()=='dtml-': dtmltopics.append(topic) - if (id[:5] in ('metal', 'tales') and id[5] in ('.', '-')) or \ + elif (id[:5] in ('metal', 'tales') and id[5] in ('.', '-')) or \ (id[:3]=='tal' and id[3] in ('.', '-')): zpttopics.append(topic) else: topics.append(topic) I uploaded a bigger patch to <http://collector.zope.org/Zope/704>, that also takes care of other nodes. Please let me know if it's ok to checkin the patch or at least the 2 line fix to branch and/or trunk. Cheers, Yuppie