Skip to content

Commit 8b770b1

Browse files
author
Richard Jones
committed
various minor bugfixes
1 parent 634ac07 commit 8b770b1

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Fixed:
1010
- fix CGI editCSV action to handle metakit's integer itemids
1111
- apply fix for "remove" links from Klamer Schutte
1212
- added permission check on "remove" link while I was there..
13-
- applied CSV fix for python2.3 (thanks Paul Dubois for the patch)
13+
- applied CSV fix for python2.3 (sf bug 790363)
14+
- fixed form padding in LHS menu (sf bug 790502)
15+
- fixed upgrading docs for timezones (sf bug 790498)
1416

1517

1618
2003-08-08 0.6.0

doc/upgrading.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ appropriate old issues and create new ones with the same content.
7676
From version 0.6.0 roundup supports displaying of Date data in user' local
7777
timezone if he/she has provided timezone information. To make it possible
7878
some modification to tracker's schema and HTML templates are required.
79-
First you should add string property 'timezone' to user class in dbinit.py
79+
First you must add string property 'timezone' to user class in dbinit.py
8080
like this::
8181

8282
user = Class(db, "user",
@@ -102,9 +102,6 @@ After providing timezone, roundup will show all dates values, found in web
102102
and mail interfaces in local time. It will also accept any Date info in
103103
local time, convert and store it in GMT.
104104

105-
However you are not forced to make these modifications. By default roundup
106-
will assume timezone=0 and will work as previous versions did.
107-
108105
0.6.0 Search page structure
109106
---------------------------
110107

templates/classic/html/style.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,19 @@ td.page-header-top {
2727
td.sidebar {
2828
padding: 1 0 0 1;
2929
}
30+
td.sidebar form {
31+
margin: 0 0 0 0;
32+
}
3033

3134
td.sidebar p.classblock {
32-
padding: 0 5 0 5;
35+
padding: 2 5 2 5;
3336
margin: 1 1 1 1;
3437
border: 1px solid #444444;
3538
background-color: #eeeeee;
3639
}
3740

3841
td.sidebar p.userblock {
39-
padding: 0 5 0 5;
42+
padding: 2 5 2 5;
4043
margin: 1 1 1 1;
4144
border: 1px solid #444444;
4245
background-color: #eeeeff;
@@ -354,3 +357,4 @@ table.otherinfo th {
354357
text-align: left;
355358
}
356359
/* SHA: 1c2bdea9d2295da079168403292e5c9039bb5088 */
360+
/* SHA: 35d16ca4398e028f1b19902aadff924ffec27146 */

0 commit comments

Comments
 (0)