Mercurial > p > roundup > code
diff roundup/htmltemplate.py @ 535:78711b29c746
reverted the change that had plain() hyperlinking the link displays
that's what link() is for!
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 14 Jan 2002 23:31:21 +0000 |
| parents | 32c1dd156605 |
| children | 67379bcc5da4 |
line wrap: on
line diff
--- a/roundup/htmltemplate.py Mon Jan 14 22:21:38 2002 +0000 +++ b/roundup/htmltemplate.py Mon Jan 14 23:31:21 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: htmltemplate.py,v 1.56 2002-01-14 07:04:36 richard Exp $ +# $Id: htmltemplate.py,v 1.57 2002-01-14 23:31:21 richard Exp $ __doc__ = """ Template engine. @@ -86,15 +86,13 @@ linkcl = self.db.classes[propclass.classname] k = linkcl.labelprop() if value: - value = '<a href="%s%s">%s</a>'%(propclass.classname, value, - linkcl.get(value, k)) + value = linkcl.get(value, k) else: value = _('[unselected]') elif isinstance(propclass, hyperdb.Multilink): linkcl = self.db.classes[propclass.classname] k = linkcl.labelprop() - value = ', '.join(['<a href="%s%s">%s</a>'%(propclass.classname, - i, linkcl.get(i, k)) for i in value]) + value = ', '.join(value) else: s = _('Plain: bad propclass "%(propclass)s"')%locals() if escape: @@ -886,6 +884,12 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.56 2002/01/14 07:04:36 richard +# . plain rendering of links in the htmltemplate now generate a hyperlink to +# the linked node's page. +# ... this allows a display very similar to bugzilla's where you can actually +# find out information about the linked node. +# # Revision 1.55 2002/01/14 06:45:03 richard # . #502953 ] nosy-like treatment of other multilinks # ... had to revert most of the previous change to the multilink field
