Hi, all.
I'm developing a VXML IVR application in Eclipse, and it's chock full of messy JSPs. Some of my (inherited!) source looks like this:
<%if (useLegacy) {%>
<form id="getLegacy">
<block>
<if cond="gblFirstRunThroughFlag=='true'">
<%--Use special "extra info" menu to retrieve the legacy ID--%>
<goto next="getLegacyInfoFirst.jsp"/>
<else>
<goto next="getLegacyInfo.jsp"/>
</if>
</block>
</form>
<%}%>
I would love to find a tool that will fix the indentation, so that the scriptlets and the markup are a bit easier to read:
<%if (useLegacy) {%>
<form id="getLegacy">
<block>
<if cond="gblFirstRunThroughFlag=='true'">
<%--Use special "extra info" menu to retrieve the legacy ID--%>
<goto next="getLegacyInfoFirst.jsp"/>
<else/>
<goto next="getLegacyInfo.jsp"/>
</if>
</block>
</form>
<%}%>
Does such a tool exist in the Windows world, gratis?
Thanks!
IVR Avenger