Fossil SCM
Show ticket history on ticket edit page
3bcacd36ff9e882…
· opened 15 years, 6 months ago
- Type
- Feature_Request
- Priority
- Immediate
- Severity
- Minor
- Resolution
- Open
- Subsystem
- —
- Created
- Oct. 4, 2010 9:49 a.m.
It's harder than necessary to reply to a ticket if you don't see what you are replying to while writing. The easiest approach would be to just duplication the comment field + email for anonymous on the start page. Preview could be done inline after the existing comments.
anonymous added on 2010-12-20 13:58:15: +1. It is much more natural to comment on a ticket with all previous comments visible than having to click to go toe a special edit page.
anonymous added on 2011-04-08 16:33:45 UTC: +1. Hard to add a comment when I don't see what I'm replying to
anonymous claiming to be Feral added on 2011-04-10 22:38:36 UTC: Perhaps in the mean time edit in a separate page (middle click the edit button for instance); Regardless, such an enhancement OPTION is worth a +1 for certain. -- Simply seeing the comments below the field would cure this. Hrm, easy enough to add... (A very quick hack)
From Admin|Tickets|Edit Ticket Page(/tktsetup_editpage):
```
wiki $comment
```
Above:
```
``` At the bottom.
HTH
Comments (2)
Showing previous comments on editing tickets with checkin on branch tkt-improvements.
The branch is merged and therefore I close this ticket.
As a note: this change shows the comments added in the new table ticketchng. At the time the ticket was created all comments were merged in a field. I decided to leave these old style comments out, as over time the newer edits will dominate. If you want to include them, add this to the <th1>-block in configuration for edit ticket page:
if {[info exists comment]} {
if {[string length $comment]>10} {
html {
<tr><td class="tktDspLabel">Description:</td></tr>
<tr><td colspan="5" class="tktDspValue">
}
if {[info exists plaintext]} {
set r [randhex]
wiki "<verbatim-$r links>\n$comment\n</verbatim-$r>"
} else {
wiki $comment
}
}
}