From fbf40d1e6af31ee29ede191c38a36fff3a37124b Mon Sep 17 00:00:00 2001 From: jlgijsbers Date: Fri, 3 Oct 2003 16:57:28 +0000 Subject: [PATCH] Replaced all uses of the 'nowrap' attribute with its CSS equivalent: 'white-space: nowrap;'. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1892 57a73879-2fb5-44c3-a270-3262357dd7e2 --- doc/customizing.txt | 42 ++++++++++++------------ templates/classic/html/issue.index.html | 4 +-- templates/classic/html/issue.item.html | 32 +++++++++--------- templates/classic/html/keyword.item.html | 2 +- templates/classic/html/msg.item.html | 6 ++-- templates/classic/html/style.css | 5 +++ templates/minimal/html/page.html | 2 +- templates/minimal/html/style.css | 1 + 8 files changed, 50 insertions(+), 44 deletions(-) diff --git a/doc/customizing.txt b/doc/customizing.txt index 2662f62..951a881 100644 --- a/doc/customizing.txt +++ b/doc/customizing.txt @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.100 $ +:Version: $Revision: 1.101 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -1866,19 +1866,19 @@ template):: - + - + - + - + - + - + @@ -1903,14 +1903,14 @@ template):: - + - + @@ -2341,7 +2341,7 @@ will be the "name" variable of the current context (which is to the form, a new category will be created with that name:: - + @@ -2379,7 +2379,7 @@ So putting it all together, and closing the table and form we get:: - + @@ -2414,7 +2414,7 @@ Just like ``category.issue.html`` this file defines a form which has a table to lay things out. It doesn't matter where in the table we add new stuff, it is entirely up to your sense of aesthetics:: - + @@ -2578,12 +2578,12 @@ issues to. You can do this by following these steps: 4. in the ``issue.item.html`` template, change the status editing bit from:: - + to:: - + - + - + - + @@ -2931,7 +2931,7 @@ be able to give a summary of the total time spent on a particular issue. field to capture a new timelog item's perdiod:: - + @@ -3189,7 +3189,7 @@ that shows either one or the other. We'll use a new form variable, - + - + @@ -3242,7 +3242,7 @@ resolved. To achieve this: 2. Add the new "blockers" property to the issue.item edit page, using something like:: - + - - diff --git a/templates/classic/html/issue.item.html b/templates/classic/html/issue.item.html index 6d86142..6e3b8f2 100644 --- a/templates/classic/html/issue.item.html +++ b/templates/classic/html/issue.item.html @@ -28,19 +28,19 @@ You are not allowed to view this page.
TitleTitle title
PriorityPriority priorityStatusStatus status
SupersederSuperseder @@ -1886,7 +1886,7 @@ template)::
View:
Nosy ListNosy List @@ -1894,7 +1894,7 @@ template)::
Assigned ToAssigned To assignedto menu
Change NoteChange Note
FileFile
NameName name
Category
NameName name
CategoryCategory StatusStatus statusStatusStatus authordatedate summary @@ -2720,11 +2720,11 @@ Setting up a "wizard" (or "druid") for controlled adding of issues
Operating SystemOperating System
Web BrowserWeb Browser
Time LogTime Log
(enter as '3y 1m 4d 2:40:02' or parts thereof)
authordatedate summary remove @@ -3206,7 +3206,7 @@ that shows either one or the other. We'll use a new form variable,
authordatedate (remove) Waiting OnWaiting On diff --git a/templates/classic/html/issue.index.html b/templates/classic/html/issue.index.html index dfd666e..0a26b59 100644 --- a/templates/classic/html/issue.index.html +++ b/templates/classic/html/issue.index.html @@ -37,9 +37,9 @@ You are not allowed to view this page.        
- + - + - + - + - + - + - + - + @@ -99,28 +99,28 @@ python:db.user.classhelp('username,realname,address', property='nosy', width='60
TitleTitle title
PriorityPriority priorityStatusStatus status
SupersederSuperseder @@ -49,7 +49,7 @@ You are not allowed to view this page. tal:content="sup/id"> Nosy ListNosy List assignedto menuTopicsTopics @@ -68,7 +68,7 @@ python:db.user.classhelp('username,realname,address', property='nosy', width='60
Change NoteChange Note @@ -76,7 +76,7 @@ python:db.user.classhelp('username,realname,address', property='nosy', width='60
FileFile
- + - - + + - + - + - - + +
TitletitleTitletitle
PrioritypriorityStatusstatusPrioritypriorityStatusstatus
SupersederSuperseder
View:
Nosy ListNosy List
Assigned ToTopicsAssigned ToTopics
diff --git a/templates/classic/html/keyword.item.html b/templates/classic/html/keyword.item.html index 4572370..47f9223 100644 --- a/templates/classic/html/keyword.item.html +++ b/templates/classic/html/keyword.item.html @@ -36,7 +36,7 @@ - + diff --git a/templates/classic/html/msg.item.html b/templates/classic/html/msg.item.html index 49e203a..4242aae 100644 --- a/templates/classic/html/msg.item.html +++ b/templates/classic/html/msg.item.html @@ -15,17 +15,17 @@
KeywordKeyword name
- + - + - +
AuthorAuthor
RecipientsRecipients
DateDate
diff --git a/templates/classic/html/style.css b/templates/classic/html/style.css index a5f3680..9d06dfc 100644 --- a/templates/classic/html/style.css +++ b/templates/classic/html/style.css @@ -53,6 +53,10 @@ td.content { width: 100%; } +td.date, th.date { + white-space: nowrap; +} + p.ok-message { background-color: #22bb22; padding: 5 5 5 5; @@ -79,6 +83,7 @@ table.form th { text-align: right; vertical-align: top; font-weight: normal; + white-space: nowrap; } table.form th.header { diff --git a/templates/minimal/html/page.html b/templates/minimal/html/page.html index aefee18..10834fd 100644 --- a/templates/minimal/html/page.html +++ b/templates/minimal/html/page.html @@ -22,7 +22,7 @@ - +


diff --git a/templates/minimal/html/style.css b/templates/minimal/html/style.css index 8aad458..1637243 100644 --- a/templates/minimal/html/style.css +++ b/templates/minimal/html/style.css @@ -26,6 +26,7 @@ td.page-header-top { td.sidebar { padding: 1 0 0 1; + white-space: nowrap; } td.sidebar p.classblock { -- 2.30.2