Code

*gak* ... xmp is Old Skool apparently. Am using pre again by have the option
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 27 Sep 2001 06:45:58 +0000 (06:45 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 27 Sep 2001 06:45:58 +0000 (06:45 +0000)
on the plain() template function to escape the text for HTML.

git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@258 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/htmltemplate.py
roundup/templates/extended/html/msg.index
roundup/templates/extended/htmlbase.py

index de6f10de8c200c229f2ea923cc81fef7c62bd9eb..c073a75e9ea357d6fe95227a98a775cc47dc9dcc 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: htmltemplate.py,v 1.23 2001-09-10 09:47:18 richard Exp $
+# $Id: htmltemplate.py,v 1.24 2001-09-27 06:45:58 richard Exp $
 
 import os, re, StringIO, urllib, cgi, errno
 
@@ -40,7 +40,7 @@ class Plain(Base):
         for a Link or Multilink property, display the key strings of the
         linked nodes (or the ids if the linked class has no key property)
     '''
-    def __call__(self, property):
+    def __call__(self, property, escape=0):
         if not self.nodeid and self.form is None:
             return '[Field: not called from item]'
         propclass = self.properties[property]
@@ -68,6 +68,8 @@ class Plain(Base):
             value = ', '.join([linkcl.get(i, k) for i in value])
         else:
             s = 'Plain: bad propclass "%s"'%propclass
+        if escape:
+            return cgi.escape(value)
         return value
 
 class Field(Base):
@@ -745,6 +747,11 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.23  2001/09/10 09:47:18  richard
+# Fixed bug in the generation of links to Link/Multilink in indexes.
+#   (thanks Hubert Hoegl)
+# Added AssignedTo to the "classic" schema's item page.
+#
 # Revision 1.22  2001/08/30 06:01:17  richard
 # Fixed missing import in mailgw :(
 #
index b7bdfa709e87b485d1227d363ffb8d788729e766..4331e270a388f01eac8051afa418afc815541025 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $Id: msg.index,v 1.2 2001-09-27 06:36:42 richard Exp $-->
+<!-- $Id: msg.index,v 1.3 2001-09-27 06:45:58 richard Exp $-->
 <tr class="row-hilite">
     <property name="date">
         <td><display call="link('date')"></td>
@@ -8,5 +8,5 @@
     </property>
 </tr>
 <tr bgcolor="ffeaff">
-    <td colspan=2><xmp><display call="plain('content')"></xmp></td>
+    <td colspan=2><pre><display call="plain('content', escape=1)"></pre></td>
 </tr>
index 45bb7bac6ad78193b734e8d8d0b27dfca734b569..bee173eb01d0925a32fb2f4e7c6c10611dfe6c9f 100644 (file)
@@ -192,7 +192,7 @@ msgDOTindex = """<!-- dollarId: msg.index,v 1.1 2001/07/23 04:21:20 richard Exp
     </property>
 </tr>
 <tr bgcolor="ffeaff">
-    <td colspan=2><xmp><display call="plain('content')"></xmp></td>
+    <td colspan=2><pre><display call="plain('content', escape=1)"></pre></td>
 </tr>
 """