Code: Select all
https://streamsets.com/documentation/datacollector/latest/help/#Getting_Started/What_is_DataCollector.html#concept_sjz_rmx_3q
Code: Select all
https://streamsets.com/documentation/datacollector/latest/help/#Getting_Started%2FWhat_is_DataCollector.html%23concept_sjz_rmx_3q
Looking at toc-driver.js, the loadiframe function replaces %23 with #, but does not replace %2F with /. I did a quick local test, and replacing line 152
Code: Select all
dynamicURL = dynamicURL.replace(/%23/g,'#');
Code: Select all
dynamicURL = dynamicURL.replace(/%23/g,'#').replace(/%2F/ig,'/');