Commit 4c39d931 authored by Martijn Faassen's avatar Martijn Faassen

Merge in faassen-breadcrumb-branch. The last breadcrumb in the ZMI path on

top is now is a link as well (underlined).
parent 52a49ec0
......@@ -85,9 +85,9 @@
"""Standard management interface support
$Id: Management.py,v 1.52 2001/10/27 13:02:44 matt Exp $"""
$Id: Management.py,v 1.53 2001/11/09 15:00:00 faassen Exp $"""
__version__='$Revision: 1.52 $'[11:-2]
__version__='$Revision: 1.53 $'[11:-2]
import sys, Globals, ExtensionClass, urllib
from Dialogs import MessageDialog
......@@ -169,7 +169,8 @@ class Tabs(ExtensionClass.Base):
for step in steps:
script = '%s/%s' % (script, step)
out.append(linkpat % (script, unquote(step)))
out.append(unquote(last))
out.append('<a class="strong-link" href="%s/manage_workspace">%s</a>' %
(script, last))
return '%s%s' % (url, join(out,'/'))
def tabs_path_info(self, script, path,
......
......@@ -37,6 +37,12 @@ a {
color: #000099;
}
a.strong-link {
font-family: Verdana, Helvetica, sans-serif;
text-decoration: underline;
color: #000099;
}
p {
font-family: Verdana, Helvetica, sans-serif;
font-size: 10pt;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment