# HG changeset patch # User Richard Jones # Date 1167343725 0 # Node ID aef19fff38ddaca4c82d7d644cf495e684527044 # Parent 0f79712460ecc3225f8a33765d9f2c44070b471e If-Modified-Since handling was broken Updated documentation for customising hard-coded searches in page.html diff -r 0f79712460ec -r aef19fff38dd CHANGES.txt --- a/CHANGES.txt Tue Dec 19 03:03:37 2006 +0000 +++ b/CHANGES.txt Thu Dec 28 22:08:45 2006 +0000 @@ -1,6 +1,11 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. +2007-??-?? 1.3.3 +Fixed: +- If-Modified-Since handling was broken +- Updated documentation for customising hard-coded searches in page.html + 2006-12-19 1.3.2 Fixed: diff -r 0f79712460ec -r aef19fff38dd doc/customizing.txt --- a/doc/customizing.txt Tue Dec 19 03:03:37 2006 +0000 +++ b/doc/customizing.txt Thu Dec 28 22:08:45 2006 +0000 @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.215 $ +:Version: $Revision: 1.216 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -2925,8 +2925,7 @@ 5. if you wish for the due date to appear in the standard views listed in the sidebar of the web interface then you'll need to add "due_date" - to the list of @columns in the links in the sidebar section of - ``page.html``. + to the columns and columns_showall lists in your ``page.html``. Adding a new constrained field to the classic schema @@ -4067,16 +4066,33 @@ example, the existing "Show All" link in the "page" template (in the tracker's "html" directory) looks like this:: - Show All
+ Show All
modify it to add the "blockers" info to the URL (note, both the "@filter" *and* "blockers" values must be specified):: - Show All
+ Show All
The above examples are line-wrapped on the trailing & and should be unwrapped. diff -r 0f79712460ec -r aef19fff38dd roundup/cgi/client.py --- a/roundup/cgi/client.py Tue Dec 19 03:03:37 2006 +0000 +++ b/roundup/cgi/client.py Thu Dec 28 22:08:45 2006 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.229 2006-11-15 06:27:15 a1s Exp $ +# $Id: client.py,v 1.230 2006-12-28 22:08:45 richard Exp $ """WWW request handler (also used in the stand-alone server). """ @@ -727,7 +727,7 @@ ims = self.env['HTTP_IF_MODIFIED_SINCE'] if ims: ims = rfc822.parsedate(ims)[:6] - lmtt = time.gmtime(lmt)[:6] + lmtt = time.gmtime(ims)[:6] if lmtt <= ims: raise NotModified