Downloads (PDF, HTML & XML formats)
[FishEye Knowledge Base]
With some command line scripting and a tool like wget, and Live HTTP Headers for firefox you can automate actions. In this example, Fisheye will automatically rescan revision properties of an SVN when the commit message is updated to reference a new JIRA issue.
startRev=0&endRev=58&rep=2&action=rescan
)wget --keep-session-cookies --save-cookies cookie.txt http://erdinger.sydney.atlassian.com/fisheye/admin/login.do --post-data="origUrl=&adminPassword=admin" wget --load-cookies cookie.txt --post-data="startRev=0&endRev=58&rep=2&action=rescan" http://erdinger.sydney.atlassian.com/fisheye/admin/indexMaint.do
With that you could generate a post-revprop-change
hook in svn that will update the repositories automatically.