How to browse all items I added/commented on in a particular timeframe in Jira?
I need to go back and look at some events in August-October 2010. We use JIRA for issue t开发者_Python百科racking.
Is there a way in JIRA to look at my "activity stream" for this timeframe?
assignee = currentUser() and updated > "2010/08/01" and updated < "2010/10/31"
Should work.
EDIT: This is to be placed in the "Custom Filter" query box.
The Activity Stream gadget can be configured with a filter by username. Since activity includes comments, this generally yields a list of comments by that user. Note that this requires a case-sensitive username, not the friendly Display Name.
Click the filter icon on the gadget:
Resulting filtered Activity Stream:
Use Issue Navigator and search your name for issues between the dates, check the comments flag
The HP/Palm Jira Search Plugin has this:
- JQL function that searches comments by author and date in addition to comment content.
- JQL function that searches all issues touched by a certain user or during a relative or absolute period. Touched means the user created the issue, edited a field on the issue or commented on the issue.
Also has nice Complex Search UI:
精彩评论