Zope Zone Navigation
 
Document Actions
  • Print this page
  • Add Bookmarklet

The Pluggable Authentication Utility

Up to Zope 3

Syntax highlighting code tags

Posted by Jake at January 20. 2005
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, ':o', '<img src="img/oh.gif" align="absmiddle">')

Jake

The Pluggable Authentication Utility

Posted by Luke Benstead at July 20. 2006
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.

The Pluggable Authentication Utility

Posted by Jake at August 22. 2006
Try looking at the Security tab in the ZMI. That is where it is hidden in Zope 2+.

Jake
Powered by Ploneboard
 

Home Discussions Zope 3 The Pluggable Authentication Utility