Mercurial > p > roundup > code
diff roundup/templates/extended/interfaces.py @ 167:a49c8a2ddd26
Added time logging and file uploading to the templates.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 30 Jul 2001 08:12:17 +0000 |
| parents | b0c4ac63c6ed |
| children | 9cfab7f55df0 |
line wrap: on
line diff
--- a/roundup/templates/extended/interfaces.py Mon Jul 30 08:04:26 2001 +0000 +++ b/roundup/templates/extended/interfaces.py Mon Jul 30 08:12:17 2001 +0000 @@ -1,4 +1,4 @@ -# $Id: interfaces.py,v 1.3 2001-07-30 01:26:59 richard Exp $ +# $Id: interfaces.py,v 1.4 2001-07-30 08:12:17 richard Exp $ import instance_config, urlparse, os from roundup import cgi_client, mailgw @@ -8,8 +8,10 @@ with any specific extensions ''' TEMPLATES = instance_config.TEMPLATES - showsupport = cgi_client.Client.showitem - newsupport = cgi_client.Client.newissue + showsupport = cgi_client.Client.shownode + showtimelog = cgi_client.Client.shownode + newsupport = cgi_client.Client.newnode + newtimelog = cgi_client.Client.newnode default_index_sort = ['-activity'] default_index_group = ['priority'] @@ -65,6 +67,12 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.3 2001/07/30 01:26:59 richard +# Big changes: +# . split off the support priority into its own class +# . added "new support, new user" to the page head +# . fixed the display options for the heading links +# # Revision 1.2 2001/07/29 07:01:39 richard # Added vim command to all source so that we don't get no steenkin' tabs :) #
