[Zope] Multithreading in zope and python

2000-06-09 Thread sudhir

I am using Zope-2.1.6.
I have python 1.5.2 with multithreading on.

But my zope still runs in single thread.
I have changed the start script, to have PYTHONHOME="/usr:$reldir" and
taken out the -D flag.

Any suggestions on how to turn on multithreading will be appreciated.

Thank you,
-- sudhir




___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[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 something like the following
...
count = 0   ---intended
dtml-in   "AuthorList()"
dtml-let   author="sequence-item"
dtml-in  "BookList(author)"
  dtml-if "sequence-index==0"
 dtml-var count sequence-item dtml-var
author
  dtml-else
 dtml-var count sequence-item
  count=count+1   -- intended
  /dtml-if
 /dtml-in/dtml-let
/dtml-in

I do not know how to set count=0, count=count+1 in dtml.
Any help will be greatly appreciated.

Thank you,
-- sudhir




___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )