The Pluggable Authentication Utility
Up to Zope 3
I am sure it is possible in Page Templates, here is how (I think) I am doing it with DTML for this message board to do things like [b]BOLD[/b] and 
Basics (in a python script):
import string
line = body
# Replace smileys with images
line = string.replace(line, '
', '<img src="img/hap.gif" align="absmiddle">')
line = string.replace(line, '
', '<img src="img/sad.gif" align="absmiddle">')
line = string.replace(line, '
', '<img src="img/oh.gif" align="absmiddle">')
Jake

Basics (in a python script):
import string
line = body
# Replace smileys with images
line = string.replace(line, '
', '<img src="img/hap.gif" align="absmiddle">')line = string.replace(line, '
', '<img src="img/sad.gif" align="absmiddle">')line = string.replace(line, '
', '<img src="img/oh.gif" align="absmiddle">')Jake
Hi Everyone,
I started *trying* to learn Zope3 yesterday, so far I have been greeted with a lack of documentation, and a severe lack of help from other users, I'm hoping you guys here can help me...
Basically all I want to do is restrict certain parts of a site with basic authentication. I know I have to use the Pluggable Authentication Utility, and Principal folders. But that is as much as I know.
Can somebody please explain to me how the PAU works, what do I have to do?
Thanks in advance.
Luke.
I started *trying* to learn Zope3 yesterday, so far I have been greeted with a lack of documentation, and a severe lack of help from other users, I'm hoping you guys here can help me...
Basically all I want to do is restrict certain parts of a site with basic authentication. I know I have to use the Pluggable Authentication Utility, and Principal folders. But that is as much as I know.
Can somebody please explain to me how the PAU works, what do I have to do?
Thanks in advance.
Luke.
Powered by
Ploneboard
















