How to concatenate two strings
hi all, 1. How to concatenate two strings ? e.g <dtml-var name1 = "Hello"> and <dtml-var name2 = "world"> 2. How to manipulate dtml-var (mathematical operations like +,*,- etc on a dtml-var. 3.Also what to know, what do you mean by zope running behind Apache ? 4.Can Zope and IIS be integrated. One of my friends said inorder to run zope, they have to stop the IIS. Why is this ? --Rajani __________________________________________________ Do You Yahoo!? Send instant messages & get email alerts with Yahoo! Messenger. http://im.yahoo.com/
hi all, yodel
1. How to concatenate two strings ? e.g <dtml-var name1 = "Hello"> and <dtml-var name2 = "world">
<dtml-var "name1+name2">
2. How to manipulate dtml-var (mathematical operations like +,*,- etc on a dtml-var.
<dtml-var "3*4"> I believe the <dtml-var " "> is processed (beacuse its in """s) as an python expression, thus name1+name2 is concatenating two variables.
3.Also what to know, what do you mean by zope running behind Apache ? not following thread, but basically apache hands off requests via pcgi or fastcgi to ZServer/Zope.
4.Can Zope and IIS be integrated. One of my friends said inorder to run zope, they have to stop the IIS. Why is this ?
ZOPE's interface to *any* webserver is CGI. I'm not quite sure what 'stop the IIS' means - do you mean you cant RUN IIS AND ZOPE simultaneously? to set it up, yes you probably have to stop IIS, and you may even have to reboot NT :p anyone thought of an ISAPI filter for handling ZOPE requests? would this provide any extra functionality/speed? HTH, ~runyaga
participants (2)
-
alan runyan -
Rajani Iyer