Edgewall Software
Modify

Opened 19 years ago

Closed 19 years ago

#1622 closed defect (wontfix)

Superfluous capitalization of table titles in report module

Reported by: ash@… Owned by: daniel
Priority: lowest Milestone:
Component: report system Version: 0.8.1
Severity: trivial Keywords:
Cc: Branch:
Release Notes:
API Changes:
Internal Changes:

Description

When one makes a report for example:

select  'Total' AS "All problems", count(*) AS 'Count of issues'
 from ticket
 where ticket.keywords like '%foobar%';

the synonyms of the fields - "All problems", 'Count of issues' become the titles of the table columns in the report.

However - the first letters of the words become capitalized so what one sees is something like:

All ProblemsCount Of Issues
Total123

While this is a non-issue for English where titles are capitalized like this, it is distracting to me as a Bulgarian speaker.

Can you please stop the capitalization? If needed the users can enter the words that need capitalization themselves.

Attachments (0)

Change History (3)

comment:1 by bingbong, 19 years ago

banana

comment:2 by anonymous, 19 years ago

This is due to the following line:

.tickets thead th { text-transform: capitalize }

in source:trunk/htdocs/css/report.css

You can override it with that line

.tickets thead th { text-transform: none }

added to your <trac env>/templates/site_css.cs file.

comment:3 by Christopher Lenz, 19 years ago

Milestone: 0.8.2
Resolution: wontfix
Status: newclosed
Summary: Superfluous capitalization of table titles in query moduleSuperfluous capitalization of table titles in report module

I think most people want the default capitalization, if you don't like it, you can disable it following the instructions by the previous commenter.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain daniel.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from daniel to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.