Russ Brown wrote:
> Hi,
> 
> Is it possible to put custom links in report fields (other than a ticket
> link)?
> 
> I'm trying to write some reports that deal with revision information and
> links to the changesets returned would be nice. I've tried outputting
> the revno in square brackets, prepending 'r', outputting a raw <a> tag
> and each time I just get the text verbatim with no link.
> 
> Is it possible, and if not would it be possible to make it possible (if
> you know what I mean!) ;)
> 
> Thanks.
> 

If you need only one such column, naming it 'description' should do the 
trick. E.g. the last 10 revs:

select rev, time, author, message as description
from revision order by time desc limit 10;


-- Christian


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/trac-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to