[Zope] defining counters in zope(newbie)

2000-05-29 Thread Sudhir Kumar
How do I keep track of counter in Zope. For example, if I want to produce the following output: 1.book1Author1 2.book2 3.book3 4.book4Author2 5.book5 6.book6 7.book7Author3 i.e. book1, book2, book3 are by Author1, etc. I need

Re: [Zope] defining counters in zope(newbie)

2000-05-29 Thread Chris McDonough
Sudhir, Hi... It's natural to want to do this in DTML... but probably not the best idea. I know it's a lot to chew to have to use Python to do stuff like this (you don't), but it would make your life probably a lot easier to do this in an external method or a Python method. That said