Modify ↓
#13299 closed enhancement (fixed)
Highlight ticket references in the timeline view
| Reported by: | Ryan J Ollos | Owned by: | matobaa |
|---|---|---|---|
| Priority: | normal | Component: | ContextChromePlugin |
| Severity: | normal | Keywords: | |
| Cc: | Trac Release: |
Description
The change will require monkey-patching the ITimelineEventProvider. render_timeline_event method in trac.ticket.web_ui.
Example of timeline event with ticket reference highlighted:
Attachments (0)
Change History (7)
comment:1 Changed 8 years ago by
| Status: | new → accepted |
|---|
comment:2 Changed 8 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | accepted → closed |
comment:4 Changed 8 years ago by
| Resolution: | fixed |
|---|---|
| Status: | closed → reopened |
Following error occurs on batchmodify event:
AttributeError: 'list' object has no attribute 'id'
comment:6 follow-up: 7 Changed 8 years ago by
In [16906#file1], looks like a set can't be used in the author field. See discussion in trac:#12935. Set literal also is only supported for Python 2.7, so users on Python 2.5 or 2.6 would have trouble using the plugin. You could use a comma-separated string, but probably better to just have one author.
comment:7 Changed 8 years ago by
Replying to Ryan J Ollos:
You could use a comma-separated string, but probably better to just have one author.
fixed in r16928 :-(
Note: See
TracTickets for help on using
tickets.




In 16906: