Hi Richard,
On Wed, Dec 02, 2015 at 11:13:43AM -0800, Richard Aronson wrote:
>
> I need to make changes to build.js file and then recompile.
>
> I do not know the command to do this on a Windows server.
Judging by the comment at the top of testopia.all.js, the "build"
process they speak of is an Eclipse plugin called "Rockstartapps",
The original
www.rockstartapps.com no longer exists, but this does:
http://blog.avirtualhome.com/rockstarapps-for-eclipse/
The file testopia.all.js is just a concatenation of the individual
javascript files. For example, the contents of build.js appear at
line 8658 of testopia.all.js. So you could just go and edit the
testopia.all.js directly, around line 8658 + 226 = 8884.
There's one more hurdle: the testopia.all.js is compressed to make
it smaller, which produces the file testopia.all.ycomp.js. This is
done using the YUI compressor (
https://yui.github.io/yuicompressor/)
If you don't want to be bothered with all those steps, you could try
the following. I have not tried this, and I do not speak for the
developers of Testopia... this is just a quick idea:
- make backups of testopia.all.js and testopia.all.ycomp.js
- make the change in testopia.all.js around line 8884.
- copy modified testopia.all.js to testopia.all.ycomp.js
- restart your web server, clear your browser cache.
You will be using an un-compressed version, which means larger download
and longer parsing in the browser. But if you are using this on a LAN
or other fast network, the difference is probably minor.
Regards
-Ralph