From: richard Date: Wed, 17 Sep 2003 22:30:30 +0000 (+0000) Subject: added note about hidden :template var in user.item (bug 799842) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b75c67a826c6ad4344ffac2f3a4603c1d6676552;p=roundup.git added note about hidden :template var in user.item (bug 799842) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1880 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index 4e7f1b2..bad5409 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,12 +5,14 @@ are given with the most recent entry first. Feature: - support confirming registration by replying to the email (sf bug 763668) + 2003-09-?? 0.6.2 Fixed: - cleaned up, clarified internal caching API in *dbm backends - stopped pyc writing to current directory! yay! (patch 800718 with changes) - fixed file leak in detector initialisation (patch 800715) - commented out example tracker homes (patch 800720) +- added note about hidden :template var in user.item (bug 799842) 2003-08-31 0.6.1 diff --git a/doc/upgrading.txt b/doc/upgrading.txt index e77d41d..cf69f1b 100644 --- a/doc/upgrading.txt +++ b/doc/upgrading.txt @@ -17,9 +17,11 @@ Removed Database.curuserid attribute. Any code referencing this attribute should be replaced with a call to Database.getuid(). + Migrating from 0.5 to 0.6 ========================= + 0.6.0 Configuration ------------------- @@ -40,6 +42,15 @@ __init__.py from roundup/templates/classic/detectors/__init__.py to your /detectors/__init__.py. Don't worry, the "classic" __init__ is a one-size-fits-all, so it'll work even if you've added/removed detectors. +0.6.0 Templating changes +------------------------ + +The ``user.item`` template (in the tracker home "templates" directory) +needs to have the following hidden variable added to its form (between the +```` and ```` tags:: + + + 0.6.0 Form handling changes --------------------------- @@ -80,6 +91,7 @@ user names, keywords, etc) can be edited by administrator, the others is no tool for converting such data, the only solution is to close appropriate old issues and create new ones with the same content. + 0.6.0 User timezone support --------------------------- @@ -112,6 +124,7 @@ After providing timezone, roundup will show all dates values, found in web and mail interfaces in local time. It will also accept any Date info in local time, convert and store it in GMT. + 0.6.0 Search page structure ---------------------------