Mercurial > p > roundup > code
annotate 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 |
| rev | line source |
|---|---|
|
167
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
1 # $Id: interfaces.py,v 1.4 2001-07-30 08:12:17 richard Exp $ |
|
55
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
2 |
| 144 | 3 import instance_config, urlparse, os |
|
55
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
4 from roundup import cgi_client, mailgw |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
5 |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
6 class Client(cgi_client.Client): |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
7 ''' derives basic mail gateway implementation from the standard module, |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
8 with any specific extensions |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
9 ''' |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
10 TEMPLATES = instance_config.TEMPLATES |
|
167
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
11 showsupport = cgi_client.Client.shownode |
|
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
12 showtimelog = cgi_client.Client.shownode |
|
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
13 newsupport = cgi_client.Client.newnode |
|
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
14 newtimelog = cgi_client.Client.newnode |
| 144 | 15 |
| 16 default_index_sort = ['-activity'] | |
| 17 default_index_group = ['priority'] | |
| 18 default_index_filter = [] | |
| 19 default_index_columns = ['activity','status','title','assignedto'] | |
| 20 default_index_filterspec = {'status': ['1', '2', '3', '4', '5', '6', '7']} | |
| 21 | |
| 22 def pagehead(self, title, message=None): | |
| 23 url = self.env['SCRIPT_NAME'] + '/' #self.env.get('PATH_INFO', '/') | |
| 24 machine = self.env['SERVER_NAME'] | |
| 25 port = self.env['SERVER_PORT'] | |
| 26 if port != '80': machine = machine + ':' + port | |
| 27 base = urlparse.urlunparse(('http', machine, url, None, None, None)) | |
| 28 if message is not None: | |
| 29 message = '<div class="system-msg">%s</div>'%message | |
| 30 else: | |
| 31 message = '' | |
| 32 style = open(os.path.join(self.TEMPLATES, 'style.css')).read() | |
| 33 userid = self.db.user.lookup(self.user) | |
| 34 if self.user == 'admin': | |
| 35 extras = ' | <a href="list_classes">Class List</a>' | |
| 36 else: | |
| 37 extras = '' | |
| 38 self.write('''<html><head> | |
| 39 <title>%s</title> | |
| 40 <style type="text/css">%s</style> | |
| 41 </head> | |
| 42 <body bgcolor=#ffffff> | |
| 43 %s | |
| 44 <table width=100%% border=0 cellspacing=0 cellpadding=2> | |
| 45 <tr class="location-bar"><td><big><strong>%s</strong></big></td> | |
| 46 <td align=right valign=bottom>%s</td></tr> | |
| 47 <tr class="location-bar"> | |
| 48 <td align=left><a href="issue?status=unread,deferred,chatting,need-eg,in-progress,testing,done-cbb&:sort=activity&:columns=activity,status,title,assignedto&:group=priority">All issues</a> | | |
| 49 <a href="issue?status=unread,deferred,chatting,need-eg,in-progress,testing,done-cbb&:sort=activity&:columns=activity,status,title,assignedto&priority=fatal-bug,bug">Bugs</a> | | |
| 50 <a href="issue?status=unread,deferred,chatting,need-eg,in-progress,testing,done-cbb&:sort=activity&:columns=activity,status,title,assignedto&priority=usability,feature">Wishlist</a> | | |
| 51 <a href="support?status=unread,deferred,chatting,need-eg,in-progress,testing,done-cbb&:sort=activity&:columns=activity,status,title,assignedto&:group=customername">Support</a> | | |
| 52 <a href="newissue">New Issue</a> | | |
| 53 <a href="newsupport">New Support</a> | | |
| 54 <a href="newuser">New User</a> | |
| 55 %s</td> | |
| 56 <td align=right><a href="user%s">Your Details</a></td> | |
| 57 </table> | |
| 58 '''%(title, style, message, title, self.user, extras, userid)) | |
|
55
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
59 |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
60 class MailGW(mailgw.MailGW): |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
61 ''' derives basic mail gateway implementation from the standard module, |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
62 with any specific extensions |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
63 ''' |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
64 ISSUE_TRACKER_EMAIL = instance_config.ISSUE_TRACKER_EMAIL |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
65 ADMIN_EMAIL = instance_config.ADMIN_EMAIL |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
66 MAILHOST = instance_config.MAILHOST |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
67 |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
68 # |
|
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
69 # $Log: not supported by cvs2svn $ |
|
167
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
70 # Revision 1.3 2001/07/30 01:26:59 richard |
|
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
71 # Big changes: |
|
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
72 # . split off the support priority into its own class |
|
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
73 # . added "new support, new user" to the page head |
|
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
74 # . fixed the display options for the heading links |
|
a49c8a2ddd26
Added time logging and file uploading to the templates.
Richard Jones <richard@users.sourceforge.net>
parents:
144
diff
changeset
|
75 # |
| 144 | 76 # Revision 1.2 2001/07/29 07:01:39 richard |
| 77 # Added vim command to all source so that we don't get no steenkin' tabs :) | |
| 78 # | |
|
127
0791d13baea7
Added vim command to all source so that we don't get no steenkin' tabs :)
Richard Jones <richard@users.sourceforge.net>
parents:
55
diff
changeset
|
79 # Revision 1.1 2001/07/23 23:16:01 richard |
|
0791d13baea7
Added vim command to all source so that we don't get no steenkin' tabs :)
Richard Jones <richard@users.sourceforge.net>
parents:
55
diff
changeset
|
80 # Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff. |
|
55
bd7be96eb56d
Split off the interfaces (CGI, mailgw) into a separate file from the DB stuff.
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
81 # |
|
127
0791d13baea7
Added vim command to all source so that we don't get no steenkin' tabs :)
Richard Jones <richard@users.sourceforge.net>
parents:
55
diff
changeset
|
82 # |
|
0791d13baea7
Added vim command to all source so that we don't get no steenkin' tabs :)
Richard Jones <richard@users.sourceforge.net>
parents:
55
diff
changeset
|
83 # vim: set filetype=python ts=4 sw=4 et si |
