I am trying to get the data for the total lines of code, lines added, lines removed from a repository in svn.
This what I do for the GET request using fisheye rest api
According to the documentation in https://docs.atlassian.com/fisheye-crucible/3.10.3/wadl/fisheye.html#, it should return something like this
<fileRevisionList> <fileRevision totalLines="30" fileRevisionState="ADDED" rev="1" path="trunk/readme.txt" linesRemoved="0" linesAdded="30" date="2016-01-13T12:15:52.754+01:00" csid="MAIN:peter:2010000" contentLink="" author="peter"> <comment>added readme</comment> </fileRevisionList>
but the numbers of total line, lines added, and lines removed always show zero on my end.
I tried to follow this https://confluence.atlassian.com/fisheye/cannot-view-lines-of-code-information-in-fisheye-298977102.html and https://confluence.atlassian.com/fishkb/calculate-lines-of-code-metric-for-svn-branches-290751257.html
but it still gives me zero for the lines of code.
Any help is appreciated. Thank you