Code

various minor bugfixes
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 28 Aug 2003 05:09:08 +0000 (05:09 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 28 Aug 2003 05:09:08 +0000 (05:09 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1836 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
doc/upgrading.txt
templates/classic/html/style.css

index ca4cadcd3cfed33273d0076d36b8ec30dd7f8834..95c39cf563ac8b12a2e5d76fadb983ce5455add3 100644 (file)
@@ -10,7 +10,9 @@ Fixed:
 - fix CGI editCSV action to handle metakit's integer itemids
 - apply fix for "remove" links from Klamer Schutte
 - added permission check on "remove" link while I was there..
-- applied CSV fix for python2.3 (thanks Paul Dubois for the patch)
+- applied CSV fix for python2.3 (sf bug 790363)
+- fixed form padding in LHS menu (sf bug 790502)
+- fixed upgrading docs for timezones (sf bug 790498)
 
 
 2003-08-08 0.6.0
index 38e3de8252b3eeca20155ec7d487b928561c2311..6c6e61366684acb0a4fc43515b13accdee6e1b7a 100644 (file)
@@ -76,7 +76,7 @@ appropriate old issues and create new ones with the same content.
 From version 0.6.0 roundup supports displaying of Date data in user' local
 timezone if he/she has provided timezone information. To make it possible
 some modification to tracker's schema and HTML templates are required.
-First you should add string property 'timezone' to user class in dbinit.py
+First you must add string property 'timezone' to user class in dbinit.py
 like this::
   
     user = Class(db, "user", 
@@ -102,9 +102,6 @@ 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.
 
-However you are not forced to make these modifications. By default roundup
-will assume timezone=0 and will work as previous versions did.
-
 0.6.0 Search page structure
 ---------------------------
 
index 6c31365204c0809add9e000f29d80f8520cdc4ad..3a0b055cf27eb94c8d088582e34c756d867a56e6 100644 (file)
@@ -27,16 +27,19 @@ td.page-header-top {
 td.sidebar {
   padding: 1 0 0 1;
 }
+td.sidebar form {
+     margin: 0 0 0 0;
+}
 
 td.sidebar p.classblock {
-  padding: 0 5 0 5;
+  padding: 2 5 2 5;
   margin: 1 1 1 1;
   border: 1px solid #444444;
   background-color: #eeeeee;
 }
 
 td.sidebar p.userblock {
-  padding: 0 5 0 5;
+  padding: 2 5 2 5;
   margin: 1 1 1 1;
   border: 1px solid #444444;
   background-color: #eeeeff;
@@ -354,3 +357,4 @@ table.otherinfo th {
   text-align: left;
 }
 /* SHA: 1c2bdea9d2295da079168403292e5c9039bb5088 */
+/* SHA: 35d16ca4398e028f1b19902aadff924ffec27146 */