Mercurial > p > roundup > code
view roundup/templates/classic/html/issue.item @ 431:a28a80b714f9
Eliminate database close method by using weakrefs.
. We now use weakrefs in the Classes to keep the database reference, so
the close() method on the database is no longer needed.
I bumped the minimum python requirement up to 2.1 accordingly.
. [SF#487480] roundup-server
. [SF#487476] INSTALL.txt
I also cleaned up the change message / post-edit stuff in the cgi client.
There's now a clearly marked "TODO: append the change note" where I believe
the change note should be added there. The "changes" list will obviously
have to be modified to be a dict of the changes, or somesuch.
More testing needed.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 02 Dec 2001 05:06:16 +0000 |
| parents | a74ea8489896 |
| children | 23e7ca59eb4b |
line wrap: on
line source
<!-- dollarId: issue.item,v 1.4 2001/08/03 01:19:43 richard Exp dollar--> <table border=0 cellspacing=0 cellpadding=2> <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">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">Status</span></td> <td class="form-text"><display call="menu('status')"></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">Assigned To</span></td> <td class="form-text"><display call="field('assignedto')"></td> <td> </td> <td> </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 width=1% nowrap align=right><span class="form-label">File</span></td> <td colspan=3 class="form-text"><input type="file" name="__file" size="80"></td> </tr> <tr bgcolor="ffffea"> <td> </td> <td colspan=3 class="form-text"><display call="submit()"></td> </tr> <tr class="msg-header"> <td colspan=4><b>Messages</b></td> </tr> <property name="messages"> <tr> <td colspan=4><display call="list('messages')"></td> </tr> </property> <tr class="file-header"> <td colspan=4><b>Files</b></td> </tr> <tr class="form-help"> <td colspan=4> <a href="newfile?:multilink=issue<display call="plain('id')">:files">Attach a file to this issue</a> </td> </tr> <property name="files"> <tr> <td colspan=4><display call="list('files')"></td> </tr> </property> <tr class="history-header"> <td colspan=4><b>History</b></td> </tr> <tr> <td colspan=4><display call="history()"></td> </tr> </table>
