Hi Jim,
I got around to trying this change and I am able to build again. When you
have a new patch to test, let me know.
Thanks!
Phil
We're seeing an issue with building Legals tip-of-branch on Windows
where one of the regexs in the new js2doc tool is going off into the
weeds and causing a stack overflow.
I'm investigating the issue and will try to have a solution as soon
as possible. In the mean time, if you run into this problem while
doing 'ant build' from the top level of the sources, you can work
around it by turning off generation of Docbook documentation for the
LFC. Here's the patch, which should be applied to WEB-INF/lps/lfc/
build.xml:
svn diff build.xml
Index: build.xml
===================================================================
--- build.xml (revision 2922)
+++ build.xml (working copy)
@@ -264,7 +264,7 @@
<target name="doc.clean" depends="lfc.dbk.clean"/>
<target name="build" description="Build all the lfc versions
requested in build.properties, unless they're already up to date"
- depends="init,preloader,lfcs,doc">
+ depends="init,preloader,lfcs">
</target>
<target name="clean" depends="init,doc.clean">
Note that there was an earlier Windows-centric issue with js2doc,
having to do with String.replaceAll. That has been fixed, so if you
see an issue there, make sure you update to the tip of Legals.
jim