Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 164
- Log:
Added "ticket changes" and "ticket creation" RSS feeds, since I was
finding the merged feed containing both creation and change information
less than useful. Most of the time I just want to know about changes to
a ticket in which I have interest, but the combined feed lists changes
after creation - I have to go digging through the list for it.Helps with Ticket #97 and Ticket #103.
- Author:
- rool
- Date:
- Fri Dec 22 15:28:02 +0000 2006
- Size:
- 674 Bytes
1 | <% @page_title = 'Available RSS Feeds' %> |
2 | |
3 | <div id="content"> |
4 | <h1>Available RSS Feeds</h1> |
5 | |
6 | <h2><%= link_to 'Everything', :action => 'all' -%></h2> |
7 | <p>Contains all tickets, ticket changes and changesets combined</p> |
8 | |
9 | <h2><%= link_to 'Changesets', :action => 'changesets' -%></h2> |
10 | <p>Contains all changesets</p> |
11 | |
12 | <h2><%= link_to 'Tickets', :action => 'tickets' -%></h2> |
13 | <p>Contains all tickets and ticket changes</p> |
14 | |
15 | <h2><%= link_to 'Ticket creation', :action => 'ticket_creation' -%></h2> |
16 | <p>All new tickets, but no ticket changes</p> |
17 | |
18 | <h2><%= link_to 'Ticket changes', :action => 'ticket_changes' -%></h2> |
19 | <p>Ticket changes only</p> |
20 | </div> |