open-hpi / openhpi

Other
7 stars 10 forks source link

Fixed #2719, Added Mapping file but some more work to be done on it. #2720

Closed HemanthBeecherla closed 6 years ago

HemanthBeecherla commented 6 years ago

Added Mapping_file_for_Bug-number_vs_commit-number.xlsx. This file contains source forge bug number and git commit number and the url link to both.

There is some more work is still pending. I am planning complete the work after checking this version of document and then update the remaining changes as part of the another bug. Please take a look at the unmatched bug numbers in below file attachemnt. unmatched_bugs_in_excell.log

mohandev2 commented 6 years ago

Hi Hemantha,

Thank you for the pull request. Looks like few more changes need to be done. When we click on the file, it does not show it on the web as it is xlsx format. May be you can store it in csv format and post process it to show the links in html format. The following command shows two links (checkin). cat Mapping_file_for_Bug-number_vs_commit-number.csv | awk -F"," ' { print $1 " " $2 " " $3 " " $4 " " $5 " " "<a href=\"https://sourceforge.net/p/openhpi/code/"$6"\">"$6"" " " $7 " " $8 " " "<a href=\"https://github.com/open-hpi/openhpi/commit/"$9"\">"$9"" "
" }' > New_map7.csv.html

Also we need links for bugs also, both on SF and GitHub. Looks like there are none now. First 2000 bugs will match, but after that it is hpi-snmp and feature-requests and they need to be matched separately. For now these files can stay on your personal branch.