Code

Handles new node display now.
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 30 Jul 2001 01:24:33 +0000 (01:24 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 30 Jul 2001 01:24:33 +0000 (01:24 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@147 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/htmltemplate.py

index c79fdd61aaabcbd6546539a9976e35f4dd6dfd65..59b91cddbbefd0f09fa4c9d6f4ae5fe42c05c547 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: htmltemplate.py,v 1.11 2001-07-29 09:31:35 richard Exp $
+# $Id: htmltemplate.py,v 1.12 2001-07-30 01:24:33 richard Exp $
 
 import os, re, StringIO, urllib, cgi, errno
 
@@ -321,6 +321,9 @@ class History(Base):
     ''' list the history of the item
     '''
     def __call__(self, **args):
+        if self.nodeid is None:
+            return "[History: node doesn't exist]"
+
         l = ['<table width=100% border=0 cellspacing=0 cellpadding=2>',
             '<tr class="list-header">',
             '<td><span class="list-item"><strong>Date</strong></span></td>',
@@ -709,6 +712,9 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.11  2001/07/29 09:31:35  richard
+# oops
+#
 # Revision 1.10  2001/07/29 09:28:23  richard
 # Fixed sorting by clicking on column headings.
 #