From: richard Date: Mon, 14 Jan 2002 23:31:21 +0000 (+0000) Subject: reverted the change that had plain() hyperlinking the link displays - X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d419fd17c93597accda15e2dc950b2b9cc4583bd;p=roundup.git reverted the change that had plain() hyperlinking the link displays - that's what link() is for! git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@547 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/htmltemplate.py b/roundup/htmltemplate.py index 3b98e92..ae83b6b 100644 --- a/roundup/htmltemplate.py +++ b/roundup/htmltemplate.py @@ -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 @@ class TemplateFunctions: linkcl = self.db.classes[propclass.classname] k = linkcl.labelprop() if value: - value = '%s'%(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(['%s'%(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 @@ class NewItemTemplate(TemplateFunctions): # # $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