Hi @EJ Victoria,
On both repository activity stream page (e.g. https://fisheye1.atlassian.com/changelog/firebird) and user activity stream pge (e.g. https://fisheye1.atlassian.com/committer/firebird/alexpotapchenko) click on the "Tools" button in the top right corner. There is a "RSS feed" link which would generate RSS (XML based) document with the recent activity. Just ensure you filter commits only if you are interested in Commit data but not review data, e.g.:
Activity+firebird%2F+2015-01-13+09-57-47.png
Alternatively you can use FishEye's REST API, e.g. https://docs.atlassian.com/fisheye-crucible/latest/wadl/fisheye.html#rest-service-fe:changeset-v1:listChangesets to list changesets matching given criteria - committed by particular committer and/or limited to particular repository only. You can retrieve the data in both XML and JSON format.
Hope that helps,
Piotr
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is a way to retrieve this data, but bear in mind this is not a part of public API, so I can't guarantee it won't change in the future. You can request it using the following links: * https://fisheye1.atlassian.com/fe/commitCalendar.do?context=changelog&repname=jptools&outputtype=html * https://fisheye1.atlassian.com/fe/commitCalendar.do?context=changelog&repname=jptools&outputtype=json in html and json format respectively. Hope that helps, Piotr
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This seems to work for us for checking the commit calendar for a user: [FISHEYE]/fe/commitCalendar.do?context=user&username=user1&outputtype=html [FISHEYE]/fe/commitCalendar.do?context=user&username=user1&outputtype=json Thanks for the help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmmm now experimenting if this can also be applied for groups, like: [FISHEYE]/fe/commitCalendar.do?context=group&groupname=group1&outputtype=html Is there a way for this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am afraid this is not possible directly. You may want to use REST API https://docs.atlassian.com/fisheye-crucible/latest/wadl/fecru.html#rest-service-fecru:admin:groups:name:users to retrieve names of users who belong to particular group though, then iterate and request commit calendar data for each user and add it up.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.