I have been using Hudson CI and am posting to it using curl as mentioned here-- http://wiki.hudson-ci.org/display/HUDSON/Monitoring+external+jobs
But as they say I have to convert my raw text to hexbin format and then send.
I have been able to do that and it works fine except for one place: when I have a string that is a link, say http://<something>
, and then convert it to hexbin and then post it, it works like a charm and the text appears as a link in the resulting page of Hudson.
But if i have a local or a network directory and if I want it to behave as a link I am not able to make it so..the string is like file://<something>
and when Hudson interprets it, it simply reads it as plain text..when I made the string as <a href='file://<something>'><something></a>
it shows up exactly like this in the resulting page without it being in link form..and when I check the page source it shows as-- <a href='file://<something>'><something></a>