RE: [Zope] ANNOUNCE: How-to: Breadcrumbs Navigation Trail
This method creates the text for a type of navigation bar (like you see at Yahoo!) which consists of hyperlinks to each of the parent objects of the current object; for example: Home > Admin > Events > Christmas Party The name "breadcrumbs" is an allusion to the story of Hansel and Gretel who left a trail of breadcrumbs to help them find their way out of the dark forest (or something like that). Unfortunately, a flock of Catalog objects came along and ate all the breadcrumbs. -- Loren
-----Original Message----- From: Jay, Dylan [mailto:djay@lucent.com] Sent: Wednesday, September 15, 1999 21:12 To: 'Loren Stafford' Subject: RE: [Zope] ANNOUNCE: How-to: Breadcrumbs Navigation Trail
what does it do?
-----Original Message----- From: Loren Stafford [mailto:lstafford@icompression.com] Sent: Thursday, September 16, 1999 02:58 To: zope@zope.org Subject: [Zope] ANNOUNCE: How-to: Breadcrumbs Navigation Trail
I've placed the Breadcrumbs Navigation Trail code that you-all helped me develop in a How-To located at:
http://www.zope.org:18200/Members/lstaffor/Breadcrumbs
Hope it works for everyone.
-- Loren
My setup: FreeBSD 3-2Release Roxen 1.3 web server Python 1.5.2 Zope 2.0.0 Roxen is running on port 80 Zope is not running, nor is python. Zope.cgi is in /usr/cgi-bin/ I execute : %python z2.py -p /usr/cgi-bin/ %Traceback (innermost last): File "z2.py", line 463, in ? logger_object=lg) File "/usr/local/share/Zope/ZServer/PCGIServer.py", line 282, in __init__ self.read_info(pcgi_file) File "/usr/local/share/Zope/ZServer/PCGIServer.py", line 319, in read_info k,v=string.split(line,'=',1) ValueError: unpack list of wrong size Ideas anyone? Thanks
At 15:49 19-9-99 , Wayne Spivak wrote:
My setup:
FreeBSD 3-2Release Roxen 1.3 web server Python 1.5.2 Zope 2.0.0
Roxen is running on port 80 Zope is not running, nor is python.
Zope.cgi is in /usr/cgi-bin/ I execute :
%python z2.py -p /usr/cgi-bin/ %Traceback (innermost last): File "z2.py", line 463, in ? logger_object=lg) File "/usr/local/share/Zope/ZServer/PCGIServer.py", line 282, in __init__ self.read_info(pcgi_file) File "/usr/local/share/Zope/ZServer/PCGIServer.py", line 319, in read_info k,v=string.split(line,'=',1) ValueError: unpack list of wrong size
Zope expects a path to the Zope CGI itself, not the directory the CGI is in: python z2.py -p /usr/cgi-bin/Zope.cgi -- Martijn Pieters, Web Developer | Antraciet http://www.antraciet.nl | T: +31 35 7502100 F: +31 35 7502111 | mj@antraciet.nl http://www.antraciet.nl/~mj | PGP: http://wwwkeys.nl.pgp.net:11371/pks/lookup?op=get&search=0xA8A32149 ---------------------------------------------
participants (3)
-
Loren Stafford -
Martijn Pieters -
Wayne Spivak