Hi, I have the idea to store information in a table. Some of the info should contain Wiki-Syntax. These Syntax should then be displayed in a Trac-Report.
For example I have these statements (we use PostgreSQL 8.4):
create table CFG_DB_TYPES (
IDENT NUMERIC PRIMARY KEY,
SYMBOL VARCHAR(40),
NAME_0 VARCHAR(80) NOT NULL,
NAME_1 VARCHAR(80),
DESCRIPTION VARCHAR(2000),
DESC_1 VARCHAR(2000)
);
INSERT INTO cfg_db_types (
ident, symbol, name_0, name_1, description, desc_1
) VALUES (
1,
'TEST',
'Test-Type',
NULL,
'= Test
This is a __Wiki__ Test (see also #9169)',
'Another __Wiki__ Test: #9169'
);
When I create a report which source is "select * from CFG_DB_TYPES" it will
display only field "DESCRIPTION" properly interpreted with Wiki-Syntax (see
also trac_report.png).
Is there any way to indicate another column / field as Wiki-Syntax?
Thanks,
Franz
--
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/groups/opt_out.
<<attachment: trac_report.png>>
