Code

Final commit of Grande Splite
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 22 Jul 2001 12:09:32 +0000 (12:09 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 22 Jul 2001 12:09:32 +0000 (12:09 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@30 57a73879-2fb5-44c3-a270-3262357dd7e2

22 files changed:
roundup/__init__.py
roundup/cgi_client.py
roundup/cgitb.py
roundup/date.py
roundup/htmltemplate.py
roundup/hyper_bsddb.py
roundup/hyperdb.py
roundup/init.py
roundup/mailgw.py
roundup/roundupdb.py
templates/__init__.py
templates/detectors/__init__.py [new file with mode: 0644]
templates/detectors/nosyreaction.py [new file with mode: 0644]
templates/templates/file.index [new file with mode: 0644]
templates/templates/issue.filter [new file with mode: 0644]
templates/templates/issue.index [new file with mode: 0644]
templates/templates/issue.item [new file with mode: 0644]
templates/templates/msg.index [new file with mode: 0644]
templates/templates/msg.item [new file with mode: 0644]
templates/templates/style.css [new file with mode: 0644]
templates/templates/user.index [new file with mode: 0644]
templates/templates/user.item [new file with mode: 0644]

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..49e3802789ede0b8d235457d3e528006e66ec4bc 100644 (file)
@@ -0,0 +1,6 @@
+# $Id: __init__.py,v 1.2 2001-07-22 12:09:32 richard Exp $
+
+
+#
+# $Log: not supported by cvs2svn $
+#
index 8af92a21083b0b56d0ca2bd275a7186686b153fd..c182509278c70ff0735f9c3b921ad5aac07add19 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: cgi_client.py,v 1.1 2001-07-22 11:58:35 richard Exp $
+# $Id: cgi_client.py,v 1.2 2001-07-22 12:09:32 richard Exp $
 
 import os, cgi, pprint, StringIO, urlparse, re, traceback
 
@@ -489,25 +489,6 @@ class Client:
 
 #
 # $Log: not supported by cvs2svn $
-# Revision 1.7  2001/07/20 07:35:55  richard
-# largish changes as a start of splitting off bits and pieces to allow more
-# flexible installation / database back-ends
+# Revision 1.1  2001/07/22 11:58:35  richard
+# More Grande Splite
 #
-# Revision 1.6  2001/07/20 00:53:20  richard
-# Default index now filters out the resolved issues ;)
-#
-# Revision 1.5  2001/07/20 00:17:16  richard
-# Fixed adding a new issue when there is no __note
-#
-# Revision 1.4  2001/07/19 06:27:07  anthonybaxter
-# fixing (manually) the (dollarsign)Log(dollarsign) entries caused by
-# my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign)
-# strings in a commit message. I'm a twonk.
-#
-# Also broke the help string in two.
-#
-# Revision 1.3  2001/07/19 05:52:22  anthonybaxter
-# Added CVS keywords Id and Log to all python files.
-#
-#
-
index 60ef5285e6250ec4e2f61e4388f8c75553ddc17a..9d9fd9f64708e0994f3d9b419ff679e37b986ec5 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: cgitb.py,v 1.1 2001-07-22 11:58:35 richard Exp $
+# $Id: cgitb.py,v 1.2 2001-07-22 12:09:32 richard Exp $
 
 import sys, os, types, string, keyword, linecache, tokenize, inspect, pydoc
 
@@ -115,14 +115,6 @@ def handler():
 
 #
 # $Log: not supported by cvs2svn $
-# Revision 1.3  2001/07/19 06:27:07  anthonybaxter
-# fixing (manually) the (dollarsign)Log(dollarsign) entries caused by
-# my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign)
-# strings in a commit message. I'm a twonk.
-#
-# Also broke the help string in two.
-#
-# Revision 1.2  2001/07/19 05:52:22  anthonybaxter
-# Added CVS keywords Id and Log to all python files.
-#
+# Revision 1.1  2001/07/22 11:58:35  richard
+# More Grande Splite
 #
index e516de2db95c43c8691611dcbd3094e5e0bad728..e7002aec0bec76fa258f4ef83c2263ee54b46996 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: date.py,v 1.1 2001-07-22 11:58:35 richard Exp $
+# $Id: date.py,v 1.2 2001-07-22 12:09:32 richard Exp $
 
 import time, re, calendar
 
@@ -344,15 +344,6 @@ if __name__ == '__main__':
 
 #
 # $Log: not supported by cvs2svn $
-# Revision 1.3  2001/07/19 06:27:07  anthonybaxter
-# fixing (manually) the (dollarsign)Log(dollarsign) entries caused by
-# my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign)
-# strings in a commit message. I'm a twonk.
+# Revision 1.1  2001/07/22 11:58:35  richard
+# More Grande Splite
 #
-# Also broke the help string in two.
-#
-# Revision 1.2  2001/07/19 05:52:22  anthonybaxter
-# Added CVS keywords Id and Log to all python files.
-#
-#
-
index dd17ac2792e65e460e3fb7022031f248e33f860b..b4087fdaf2f0903aba4588c7e9aa97e50b35f29e 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: htmltemplate.py,v 1.1 2001-07-22 11:58:35 richard Exp $
+# $Id: htmltemplate.py,v 1.2 2001-07-22 12:09:32 richard Exp $
 
 import os, re, StringIO, urllib, cgi
 
@@ -702,18 +702,6 @@ def newitem(client, templates, db, classname, form, replace=re.compile(
 
 #
 # $Log: not supported by cvs2svn $
-# Revision 1.5  2001/07/20 07:34:43  richard
-# Quote the value put in the text input value attribute.
+# Revision 1.1  2001/07/22 11:58:35  richard
+# More Grande Splite
 #
-# Revision 1.4  2001/07/19 06:27:07  anthonybaxter
-# fixing (manually) the (dollarsign)Log(dollarsign) entries caused by
-# my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign)
-# strings in a commit message. I'm a twonk.
-#
-# Also broke the help string in two.
-#
-# Revision 1.3  2001/07/19 05:52:22  anthonybaxter
-# Added CVS keywords Id and Log to all python files.
-#
-#
-
index 996319e386ad0a5e0c6cf807b702dbeb30975cd4..3a2a4c64d87edcce106c6e4f9f53b407dc08bf24 100644 (file)
@@ -1,4 +1,4 @@
-#$Id: hyper_bsddb.py,v 1.1 2001-07-22 11:58:35 richard Exp $
+#$Id: hyper_bsddb.py,v 1.2 2001-07-22 12:09:32 richard Exp $
 
 import bsddb, os, cPickle
 import hyperdb, date
@@ -162,8 +162,6 @@ class Database(hyperdb.Database):
 
 #
 #$Log: not supported by cvs2svn $
-#Revision 1.1  2001/07/20 07:35:55  richard
-#largish changes as a start of splitting off bits and pieces to allow more
-#flexible installation / database back-ends
+#Revision 1.1  2001/07/22 11:58:35  richard
+#More Grande Splite
 #
-
index 5dfb4163539e01bb757f95b5f3cfd5d8235cac1b..f9f3a2651f5dca7bb257480298963fbdf324a73a 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: hyperdb.py,v 1.1 2001-07-22 11:58:35 richard Exp $
+# $Id: hyperdb.py,v 1.2 2001-07-22 12:09:32 richard Exp $
 
 # standard python modules
 import cPickle, re, string
@@ -735,13 +735,6 @@ def Choice(name, *options):
 
 #
 # $Log: not supported by cvs2svn $
-# Revision 1.6  2001/07/20 08:20:24  richard
-# Fixed a bug in the filter - wrong variable names in the error message.
-# Recognised that the filter has an outstanding bug. Hrm. we need a bug tracker
-# for this project :)
+# Revision 1.1  2001/07/22 11:58:35  richard
+# More Grande Splite
 #
-# Revision 1.5  2001/07/20 07:35:55  richard
-# largish changes as a start of splitting off bits and pieces to allow more
-# flexible installation / database back-ends
-#
-
index 4174afc8a0167ad99aa33159b1006d5dc66f493d..5e2d31ca5ab5e56daa5a2b64b0b2e7d103378a6b 100644 (file)
@@ -1,3 +1,5 @@
+# $Id: init.py,v 1.2 2001-07-22 12:09:32 richard Exp $
+
 import os, shutil, sys
 
 def copytree(src, dst, symlinks=0):
@@ -43,3 +45,6 @@ def init(instance, template, adminpw):
     instance = __import__(instance)
     instance.init(adminpw)
 
+#
+# $Log: not supported by cvs2svn $
+#
index 52e4057e39d9e13c879672ebaa6705ba3ec709c7..0324aab99bd351f62e1f2d211466a215d39ffa18 100644 (file)
@@ -44,7 +44,7 @@ are calling the create() method to create a new node). If an auditor raises
 an exception, the original message is bounced back to the sender with the
 explanatory message given in the exception. 
 
-$Id: mailgw.py,v 1.1 2001-07-22 11:58:35 richard Exp $
+$Id: mailgw.py,v 1.2 2001-07-22 12:09:32 richard Exp $
 '''
 
 
@@ -265,3 +265,6 @@ class MailGW:
             props['nosy'].sort()
             nodeid = cl.create(**props)
 
+#
+# $Log: not supported by cvs2svn $
+#
index b27493a34a8026347c5d6f423fb49182ef4e6727..57023bcefe2bb8ea2b22712dcc09f6eed9c95d99 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: roundupdb.py,v 1.1 2001-07-22 11:58:35 richard Exp $
+# $Id: roundupdb.py,v 1.2 2001-07-22 12:09:32 richard Exp $
 
 import re, os, smtplib, socket
 
@@ -227,23 +227,6 @@ class IssueClass(Class):
 
 #
 # $Log: not supported by cvs2svn $
-# Revision 1.6  2001/07/20 07:35:55  richard
-# largish changes as a start of splitting off bits and pieces to allow more
-# flexible installation / database back-ends
+# Revision 1.1  2001/07/22 11:58:35  richard
+# More Grande Splite
 #
-# Revision 1.5  2001/07/20 00:22:50  richard
-# Priority list changes - removed the redundant TODO and added support. See
-# roundup-devel for details.
-#
-# Revision 1.4  2001/07/19 06:27:07  anthonybaxter
-# fixing (manually) the (dollarsign)Log(dollarsign) entries caused by
-# my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign)
-# strings in a commit message. I'm a twonk.
-#
-# Also broke the help string in two.
-#
-# Revision 1.3  2001/07/19 05:52:22  anthonybaxter
-# Added CVS keywords Id and Log to all python files.
-#
-#
-
index e04751e73bc83e201f6d9ae9a8df56d15109029e..b1f9ff67391a316c5c210eef476b5ee87b875822 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: __init__.py,v 1.1 2001-07-22 12:01:27 richard Exp $
+# $Id: __init__.py,v 1.2 2001-07-22 12:09:32 richard Exp $
 
 MAIL_DOMAIN=MAILHOST=HTTP_HOST=None
 HTTP_PORT=0
@@ -179,19 +179,6 @@ def init(adminpw):
 
 #
 # $Log: not supported by cvs2svn $
-# Revision 1.6  2001/07/19 10:43:01  anthonybaxter
-# HTTP_HOST and HTTP_PORT config options.
-#
-# Revision 1.5  2001/07/19 06:27:07  anthonybaxter
-# fixing (manually) the (dollarsign)Log(dollarsign) entries caused by
-# my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign)
-# strings in a commit message. I'm a twonk.
-#
-# Also broke the help string in two.
-#
-# Revision 1.4  2001/07/19 05:52:22  anthonybaxter
-# Added CVS keywords Id and Log to all python files.
-#
 #
 
 
diff --git a/templates/detectors/__init__.py b/templates/detectors/__init__.py
new file mode 100644 (file)
index 0000000..6c04133
--- /dev/null
@@ -0,0 +1,21 @@
+#$Id: __init__.py,v 1.1 2001-07-22 12:09:32 richard Exp $
+
+def init(db):
+    ''' execute the init functions of all the modules in this directory
+    '''
+    import os, sys
+    this_dir = os.path.split(__file__)[0]
+    try:
+        sys.path.insert(0, this_dir)
+        for file in os.listdir(this_dir):
+            file, ext = os.path.splitext(file)
+            if file == '__init__': continue
+            if ext in ('.py', '.pyc'):
+                module = __import__(file)
+                module.init(db)
+    finally:
+        del sys.path[0]
+
+#
+#$Log: not supported by cvs2svn $
+#
diff --git a/templates/detectors/nosyreaction.py b/templates/detectors/nosyreaction.py
new file mode 100644 (file)
index 0000000..a946fee
--- /dev/null
@@ -0,0 +1,64 @@
+#$Id: nosyreaction.py,v 1.1 2001-07-22 12:09:32 richard Exp $
+
+def nosyreaction(db, cl, nodeid, oldvalues):
+    ''' A standard detector is provided that watches for additions to the
+        "messages" property.
+        
+        When a new message is added, the detector sends it to all the users on
+        the "nosy" list for the issue that are not already on the "recipients"
+        list of the message.
+        
+        Those users are then appended to the "recipients" property on the
+        message, so multiple copies of a message are never sent to the same
+        user.
+        
+        The journal recorded by the hyperdatabase on the "recipients" property
+        then provides a log of when the message was sent to whom. 
+    '''
+    messages = []
+    if oldvalues is None:
+        # the action was a create, so use all the messages in the create
+        messages = cl.get(nodeid, 'messages')
+    elif oldvalues.has_key('messages'):
+        # the action was a set (so adding new messages to an existing issue)
+        m = {}
+        for msgid in oldvalues['messages']:
+            m[msgid] = 1
+        messages = []
+        # figure which of the messages now on the issue weren't there before
+        for msgid in cl.get(nodeid, 'messages'):
+            if not m.has_key(msgid):
+                messages.append(msgid)
+    if not messages:
+        return
+
+    # send a copy to the nosy list
+    for msgid in messages:
+        cl.sendmessage(nodeid, msgid)
+
+    # update the nosy list with the recipients from the new messages
+    nosy = cl.get(nodeid, 'nosy')
+    n = {}
+    for nosyid in nosy: n[nosyid] = 1
+    change = 0
+    # but don't add admin to the nosy list
+    for msgid in messages:
+        for recipid in db.msg.get(msgid, 'recipients'):
+            if recipid != '1' and not n.has_key(recipid):
+                change = 1
+                nosy.append(recipid)
+        authid = db.msg.get(msgid, 'author')
+        if authid != '1' and not n.has_key(authid):
+            change = 1
+            nosy.append(authid)
+    if change:
+        cl.set(nodeid, nosy=nosy)
+
+
+def init(db):
+    db.issue.react('create', nosyreaction)
+    db.issue.react('set', nosyreaction)
+
+#
+#$Log: not supported by cvs2svn $
+#
diff --git a/templates/templates/file.index b/templates/templates/file.index
new file mode 100644 (file)
index 0000000..2f60125
--- /dev/null
@@ -0,0 +1,9 @@
+<!-- $Id: file.index,v 1.1 2001-07-22 12:09:32 richard Exp $-->
+<tr>
+    <property name="name">
+        <td><display call="link('name')"></td>
+    </property>
+    <property name="type">
+        <td><display call="plain('type')"></td>
+    </property>
+</tr>
diff --git a/templates/templates/issue.filter b/templates/templates/issue.filter
new file mode 100644 (file)
index 0000000..3cc86f7
--- /dev/null
@@ -0,0 +1,37 @@
+<!-- $Id: issue.filter,v 1.1 2001-07-22 12:09:32 richard Exp $-->
+<property name="title">
+ <tr><th width="1%" align="right" class="location-bar">Title</th>
+ <td><display call="field('title')"></td></tr>
+</property>
+<property name="status">
+ <tr><th width="1%" align="right" class="location-bar">Status</th>
+ <td><display call="checklist('status')"></td></tr>
+</property>
+<property name="priority">
+ <tr><th width="1%" align="right" class="location-bar">Priority</th>
+ <td><display call="checklist('priority')"></td></tr>
+</property>
+<property name="platform">
+ <tr><th width="1%" align="right" class="location-bar">Platform</th>
+ <td><display call="checklist('platform')"></td></tr>
+</property>
+<property name="product">
+ <tr><th width="1%" align="right" class="location-bar">Product</th>
+ <td><display call="checklist('product')"></td></tr>
+</property>
+<property name="version">
+ <tr><th width="1%" align="right" class="location-bar">Version</th>
+ <td><display call="field('version')"></td></tr>
+</property>
+<property name="source">
+ <tr><th width="1%" align="right" class="location-bar">Source</th>
+ <td><display call="checklist('source')"></td></tr>
+</property>
+<property name="assignedto">
+ <tr><th width="1%" align="right" class="location-bar">Assigned&nbsp;to</th>
+ <td><display call="checklist('assignedto')"></td></tr>
+</property>
+<property name="customername">
+ <tr><th width="1%" align="right" class="location-bar">Customer&nbsp;name</th>
+ <td><display call="field('customername')"></td></tr>
+</property>
diff --git a/templates/templates/issue.index b/templates/templates/issue.index
new file mode 100644 (file)
index 0000000..f7b7113
--- /dev/null
@@ -0,0 +1,33 @@
+<!-- $Id: issue.index,v 1.1 2001-07-22 12:09:32 richard Exp $-->
+<tr>
+    <property name="activity">
+        <td valign="top"><display call="reldate('activity', pretty=1)"></td>
+    </property>
+    <property name="priority">
+        <td valign="top"><display call="plain('priority')"></td>
+    </property>
+    <property name="status">
+        <td valign="top"><display call="plain('status')"></td>
+    </property>
+    <property name="title">
+        <td valign="top"><display call="link('title')"></td>
+    </property>
+    <property name="platform">
+        <td valign="top"><display call="plain('platform')"></td>
+    </property>
+    <property name="product">
+        <td valign="top"><display call="plain('product')"></td>
+    </property>
+    <property name="version">
+        <td valign="top"><display call="plain('version')"></td>
+    </property>
+    <property name="source">
+        <td valign="top"><display call="plain('source')"></td>
+    </property>
+    <property name="assignedto">
+        <td valign="top"><display call="plain('assignedto')"></td>
+    </property>
+    <property name="customername">
+        <td valign="top"><display call="plain('customername')"></td>
+    </property>
+</tr>
diff --git a/templates/templates/issue.item b/templates/templates/issue.item
new file mode 100644 (file)
index 0000000..d3c277b
--- /dev/null
@@ -0,0 +1,86 @@
+<!-- $Id: issue.item,v 1.1 2001-07-22 12:09:32 richard Exp $-->
+<table border=0 cellspacing=0 cellpadding=2>
+
+<tr class="strong-header">
+  <td colspan=4>Item Information</td>
+</td>
+
+<tr  bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Title</span></td>
+    <td colspan=3 class="form-text"><display call="field('title', size=80)"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Product</span></td>
+    <td class="form-text" valign=middle><display call="menu('product')">
+    version:<display call="field('version', 5)"></td>
+    <td width=1% nowrap align=right><span class="form-label">Platform</span></td>
+    <td class="form-text" valign=middle><display call="checklist('platform')"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Created</span></td>
+    <td class="form-text"><display call="reldate('creation', pretty=1)">
+        (<display call="plain('creator')">)</td>
+    <td width=1% nowrap align=right><span class="form-label">Last activity</span></td>
+    <td class="form-text"><display call="reldate('activity', pretty=1)"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Priority</span></td>
+    <td class="form-text"><display call="field('priority')"></td>
+    <td width=1% nowrap align=right><span class="form-label">Source</span></td>
+    <td class="form-text"><display call="field('source')"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Status</span></td>
+    <td class="form-text"><display call="menu('status')"></td>
+    <td width=1% nowrap align=right><span class="form-label">Rate</span></td>
+    <td class="form-text"><display call="field('rate')"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Assigned To</span></td>
+    <td class="form-text"><display call="field('assignedto')"></td>
+    <td width=1% nowrap align=right><span class="form-label">Customer Name</span></td>
+    <td class="form-text"><display call="field('customername')"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Superseder</span></td>
+    <td class="form-text"><display call="field('superseder', size=40, showid=1)"></td>
+    <td width=1% nowrap align=right><span class="form-label">Nosy List</span></td>
+    <td class="form-text"><display call="field('nosy')"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Change Note</span></td>
+    <td colspan=3 class="form-text"><display call="note()"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td>&nbsp;</td>
+    <td colspan=3 class="form-text"><display call="submit()"></td>
+</tr>
+
+<property name="messages">
+<tr class="strong-header">
+    <td colspan=4><b>Messages</b></td>
+</tr>
+<tr>            
+    <td colspan=4><display call="list('messages')"></td>
+</tr>
+</property>
+
+<property name="files">
+ <tr class="strong-header">
+     <td colspan=4><b>Files</b></td>
+ </tr>
+ <tr>            
+     <td colspan=4><display call="list('files')"></td>
+ </tr>
+</property>
+
+</table>
+
diff --git a/templates/templates/msg.index b/templates/templates/msg.index
new file mode 100644 (file)
index 0000000..123c4dc
--- /dev/null
@@ -0,0 +1,12 @@
+<!-- $Id: msg.index,v 1.1 2001-07-22 12:09:32 richard Exp $-->
+<tr>
+    <property name="date">
+        <td><display call="link('date')"></td>
+    </property>
+    <property name="author">
+        <td><display call="plain('author')"></td>
+    </property>
+    <property name="summary">
+        <td><display call="plain('summary')"></td>
+    </property>
+</tr>
diff --git a/templates/templates/msg.item b/templates/templates/msg.item
new file mode 100644 (file)
index 0000000..50cbf9b
--- /dev/null
@@ -0,0 +1,37 @@
+<!-- $Id: msg.item,v 1.1 2001-07-22 12:09:32 richard Exp $-->
+<table border=0 cellspacing=0 cellpadding=2>
+
+<tr class="strong-header">
+  <td colspan=2>Message Information</td>
+</td>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Author</span></td>
+    <td class="form-text"><display call="plain('author')"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Recipients</span></td>
+    <td class="form-text"><display call="plain('recipients')"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Date</span></td>
+    <td class="form-text"><display call="plain('date')"></td>
+</tr>
+
+<tr bgcolor="ffeaff">
+ <td colspan=2 class="form-text">
+  <pre><display call="plain('content')"></pre>
+ </td>
+</tr>
+
+<property name="files">
+<tr class="strong-header"><td colspan=2><b>Files</b></td></tr>
+<tr><td colspan=2><display call="list('files')"></td></tr>
+</property>
+
+<tr class="strong-header"><td colspan=2><b>History</b></td><tr>
+<tr><td colspan=2><display call="history()"></td></tr>
+
+</table>
diff --git a/templates/templates/style.css b/templates/templates/style.css
new file mode 100644 (file)
index 0000000..2316c7c
--- /dev/null
@@ -0,0 +1,163 @@
+h1 {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-size: 18pt; 
+  font-weight: bold; 
+}
+
+h2 {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-size: 16pt; 
+  font-weight: bold; 
+}
+
+h3 {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-size: 12pt; 
+  font-weight: bold; 
+}
+
+a:hover {  
+  font-family: Verdana, Helvetica, sans-serif; 
+  text-decoration: underline;
+  color: #333333; 
+}
+
+a:link {
+  font-family: Verdana, Helvetica, sans-serif; 
+  text-decoration: none;
+  color: #000099;
+}
+
+a {
+  font-family: Verdana, Helvetica, sans-serif; 
+  text-decoration: none;
+  color: #000099;
+}
+
+p {
+  font-family: Verdana, Helvetica, sans-serif;
+  font-size: 10pt;
+  color: #333333;
+}
+
+th {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-weight: bold;
+  font-size: 10pt; 
+  color: #333333;
+}
+
+.form-help {
+  font-family: Verdana, Helvetica, sans-serif;
+  font-size: 10pt;
+  color: #333333;
+}
+
+.std-text {
+  font-family: Verdana, Helvetica, sans-serif;
+  font-size: 10pt;
+  color: #333333;
+}
+
+.tab-small {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-size: 8pt; 
+  color: #333333;
+}
+
+.location-bar {
+  background-color: #efefef;
+  border: none;
+}
+
+.strong-header {
+  font-family: Verdana, Helvetica, sans-serif;
+  font-size: 12pt;
+  font-weight: bold;
+  background-color: #000000;
+  color: #ffffff;
+}
+
+.list-header {
+  background-color: #c0c0c0;
+  border: none;
+}
+
+.list-item {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-size: 10pt; 
+}
+
+.list-nav {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-size: 10pt; 
+  font-weight: bold;
+}
+
+.row-normal {
+  background-color: #ffffff;
+  border: none;
+
+}
+
+.row-hilite {
+  background-color: #efefef;
+  border: none;
+}
+
+.section-bar {
+  background-color: #c0c0c0;
+  border: none;
+}
+
+.system-msg {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-size: 10pt; 
+  background-color: #ffffff;
+  border:  1px solid #000000;
+  margin-bottom: 6px;
+  margin-top: 6px;
+  padding: 4px;
+  width: 100%;
+  color: #660033;
+}
+
+.form-title {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-weight: bold;
+  font-size: 12pt; 
+  color: #333333;
+}
+
+.form-label {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-weight: bold;
+  font-size: 10pt; 
+  color: #333333;
+}
+
+.form-optional {
+  font-family: Verdana, Helvetica, sans-serif; 
+  font-weight: bold;
+  font-style: italic;
+  font-size: 10pt; 
+  color: #333333;
+}
+
+.form-element {
+  font-family: Verdana, Helvetica, aans-serif;
+  font-size: 10pt;
+  color: #000000;
+}
+
+.form-text {
+  font-family: Verdana, Helvetica, sans-serif;
+  font-size: 10pt;
+  color: #333333;
+}
+
+.form-mono {
+  font-family: monospace;
+  font-size: 12px;
+  text-decoration: none;
+}
diff --git a/templates/templates/user.index b/templates/templates/user.index
new file mode 100644 (file)
index 0000000..4e30b5a
--- /dev/null
@@ -0,0 +1,18 @@
+<!-- $Id: user.index,v 1.1 2001-07-22 12:09:32 richard Exp $-->
+<tr>
+    <property name="username">
+        <td><display call="link('username')"></td>
+    </property>
+    <property name="realname">
+        <td><display call="plain('realname')"></td>
+    </property>
+    <property name="organisation">
+        <td><display call="plain('organisation')"></td>
+    </property>
+    <property name="address">
+        <td><display call="plain('address')"></td>
+    </property>
+    <property name="phone">
+        <td><display call="plain('phone')"></td>
+    </property>
+</tr>
diff --git a/templates/templates/user.item b/templates/templates/user.item
new file mode 100644 (file)
index 0000000..281fd5d
--- /dev/null
@@ -0,0 +1,46 @@
+<!-- $Id: user.item,v 1.1 2001-07-22 12:09:32 richard Exp $-->
+<table border=0 cellspacing=0 cellpadding=2>
+
+<tr class="strong-header">
+  <td colspan=2>Your Details</td>
+</td>
+
+<tr  bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Name</span></td>
+    <td class="form-text"><display call="field('realname', size=40)"></td>
+</tr>
+<tr  bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Login Name</span></td>
+    <td class="form-text"><display call="field('username', size=40)"></td>
+</tr>
+<tr  bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Login Password</span></td>
+    <td class="form-text"><display call="field('password', size=10)"></td>
+</tr>
+<tr  bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Phone</span></td>
+    <td class="form-text"><display call="field('phone', size=40)"></td>
+</tr>
+<tr  bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">Organisation</span></td>
+    <td class="form-text"><display call="field('organisation', size=40)"></td>
+</tr>
+<tr  bgcolor="ffffea">
+    <td width=1% nowrap align=right><span class="form-label">E-mail address</span></td>
+    <td class="form-text"><display call="field('address', size=40)"></td>
+</tr>
+
+<tr bgcolor="ffffea">
+    <td>&nbsp;</td>
+    <td class="form-text"><display call="submit()"></td>
+</tr>
+
+<tr class="strong-header">
+    <td colspan=2><b>History</b></td>
+</tr>
+<tr>
+    <td colspan=2><display call="history()"></td>
+</tr>
+
+</table>
+