summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7585df8)
raw | patch | inline | side by side (parent: 7585df8)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 30 Jul 2001 01:25:57 +0000 (01:25 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 30 Jul 2001 01:25:57 +0000 (01:25 +0000) |
and not "extended".
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@149 57a73879-2fb5-44c3-a270-3262357dd7e2
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@149 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/templates/classic/htmlbase.py | patch | blob | history | |
roundup/templates/classic/interfaces.py | patch | blob | history |
index f88ae71037daed5feea79c2be2342abfa38b218e..061d62dbe9fe0af89685c2819788a146be00c344 100644 (file)
# Do Not Edit (Unless You Want To)
# This file automagically generated by roundup.htmldata.makeHtmlBase
#
-fileDOTindex = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-->
+fileDOTindex = """<!-- $Id: htmlbase.py,v 1.3 2001-07-30 01:25:57 richard Exp $-->
<tr>
<property name="name">
<td><display call="link('name')"></td>
</tr>
"""
-issueDOTfilter = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-->
+issueDOTfilter = """<!-- $Id: htmlbase.py,v 1.3 2001-07-30 01:25:57 richard Exp $-->
<property name="title">
<tr><th width="1%" align="right" class="location-bar">Title</th>
<td><display call="field('title')"></td></tr>
</property>
"""
-issueDOTindex = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-->
+issueDOTindex = """<!-- $Id: htmlbase.py,v 1.3 2001-07-30 01:25:57 richard Exp $-->
<tr class="row-<display call="plain('status')">">
<property name="id">
<td valign="top"><display call="plain('id')"></td>
</tr>
"""
-issueDOTitem = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-->
+issueDOTitem = """<!-- $Id: htmlbase.py,v 1.3 2001-07-30 01:25:57 richard Exp $-->
<table border=0 cellspacing=0 cellpadding=2>
<tr class="strong-header">
@@ -117,7 +117,7 @@ issueDOTitem = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-
"""
-msgDOTindex = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-->
+msgDOTindex = """<!-- $Id: htmlbase.py,v 1.3 2001-07-30 01:25:57 richard Exp $-->
<tr>
<property name="date">
<td><display call="link('date')"></td>
@@ -131,7 +131,7 @@ msgDOTindex = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $--
</tr>
"""
-msgDOTitem = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-->
+msgDOTitem = """<!-- $Id: htmlbase.py,v 1.3 2001-07-30 01:25:57 richard Exp $-->
<table border=0 cellspacing=0 cellpadding=2>
<tr class="strong-header">
}
"""
-userDOTindex = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-->
+userDOTindex = """<!-- $Id: htmlbase.py,v 1.3 2001-07-30 01:25:57 richard Exp $-->
<tr>
<property name="username">
<td><display call="link('username')"></td>
@@ -398,7 +398,7 @@ userDOTindex = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-
</tr>
"""
-userDOTitem = """<!-- $Id: htmlbase.py,v 1.2 2001-07-29 23:34:37 richard Exp $-->
+userDOTitem = """<!-- $Id: htmlbase.py,v 1.3 2001-07-30 01:25:57 richard Exp $-->
<table border=0 cellspacing=0 cellpadding=2>
<tr class="strong-header">
index 9e54e419f5cbdbca644bc2f31ad4c7351ae121c0..d30a66d321f3b4b7ae1f3b59b4937cf35fcb2cd4 100644 (file)
-# $Id: interfaces.py,v 1.3 2001-07-29 07:01:39 richard Exp $
+# $Id: interfaces.py,v 1.4 2001-07-30 01:25:57 richard Exp $
import urlparse, os
'''
TEMPLATES = instance_config.TEMPLATES
- default_index_sort = ['-activity']
- default_index_group = ['priority']
- default_index_filter = []
- default_index_columns = ['id','activity','title','status','assignedto']
- default_index_filterspec = {'status': ['1', '2', '3', '4', '5', '6', '7']}
-
- def pagehead(self, title, message=None):
- url = self.env['SCRIPT_NAME'] + '/' #self.env.get('PATH_INFO', '/')
- machine = self.env['SERVER_NAME']
- port = self.env['SERVER_PORT']
- if port != '80': machine = machine + ':' + port
- base = urlparse.urlunparse(('http', machine, url, None, None, None))
- if message is not None:
- message = '<div class="system-msg">%s</div>'%message
- else:
- message = ''
- style = open(os.path.join(self.TEMPLATES, 'style.css')).read()
- userid = self.db.user.lookup(self.user)
- self.write('''<html><head>
-<title>%s</title>
-<style type="text/css">%s</style>
-</head>
-<body bgcolor=#ffffff>
-%s
-<table width=100%% border=0 cellspacing=0 cellpadding=2>
-<tr class="location-bar"><td><big><strong>%s</strong></big>
-(login: <a href="user%s">%s</a>)</td></tr>
-</table>
-'''%(title, style, message, title, userid, self.user))
-
class MailGW(mailgw.MailGW):
''' derives basic mail gateway implementation from the standard module,
with any specific extensions
#
# $Log: not supported by cvs2svn $
+# Revision 1.3 2001/07/29 07:01:39 richard
+# Added vim command to all source so that we don't get no steenkin' tabs :)
+#
# Revision 1.2 2001/07/29 04:07:37 richard
# Fixed the classic template so it's more like the "advertised" Roundup
# template.