how to convert binary to text
Accepted answer
Norman Dignard,
When I imported from ClearCase into RTC I had a few files that had both their MIME encoding set incorrectly as well as their line-ending type (line-ending type is dictated by the interop mode of the dynamic view you pulled the files from, the MIME encoding I believe gets set by the Eclipse File Properties in your Jazz Source Control preferences.)
To fix them I had to load a sandbox of the latest code I imported then make 2 script runs through the code to set both:
"scm.exe property set jazz.line-delimiter None <file>"
"scm.exe property set jazz.mime text/plain <file>"
Once you are done you then need to check them in and deliver, RTC version-controls changes to the Jazz metadata properties of a file.
This is from the documentation for 'get property' and 'set property', in RTC 4.x this may be the old format, 'property get' and 'property set', respectively:
https://jazz.net/help-dev/clm/index.jsp?re=1&topic=/com.ibm.team.scm.doc/topics/get_property_ex.html&scope=null
When I imported from ClearCase into RTC I had a few files that had both their MIME encoding set incorrectly as well as their line-ending type (line-ending type is dictated by the interop mode of the dynamic view you pulled the files from, the MIME encoding I believe gets set by the Eclipse File Properties in your Jazz Source Control preferences.)
To fix them I had to load a sandbox of the latest code I imported then make 2 script runs through the code to set both:
"scm.exe property set jazz.line-delimiter None <file>"
"scm.exe property set jazz.mime text/plain <file>"
Once you are done you then need to check them in and deliver, RTC version-controls changes to the Jazz metadata properties of a file.
This is from the documentation for 'get property' and 'set property', in RTC 4.x this may be the old format, 'property get' and 'property set', respectively:
https://jazz.net/help-dev/clm/index.jsp?re=1&topic=/com.ibm.team.scm.doc/topics/get_property_ex.html&scope=null