--- ECHO_content/ECHO_helpers.py 2008/08/21 07:44:56 1.88 +++ ECHO_content/ECHO_helpers.py 2008/09/08 19:02:30 1.90 @@ -420,19 +420,26 @@ class ECHO_basis: bt = BrowserCheck(self) id = ob.getFullId() link = ob.getLinkId() + if target is None: + targetattr = "" + else: + targetattr = 'target="%s"'%target + if text is None: text = ob.getLabel() + if text is None: text = "link" + tiptext = ob.getTip() tag = "" if bt.isN4: # N4 needs layer for highlighting - tag += '" else: # a-element - tag = '" @@ -633,10 +640,10 @@ def getSubCols(self, sortfield=None, return cmp(x[0],y[0]) else: if type(x[0])==types.StringType: - tmpX=unicode(x[0]) + tmpX=unicodify(x[0]) tmpY=y[0] else: - tmpY=unicode(y[0]) + tmpY=unicodify(y[0]) tmpX=x[0] return cmp(tmpX,tmpY)