If you get code from our subversion repository: PAY ATTENTION.
The subversion paths to openlaszlo branches has just changed. DON'T
svn up unless you really understand what you're doing.
"trunk" used to be where 3.x work happened. Now "trunk" is where main
development happens. Trunk right now is almost identical to the
upcoming 4.0.5 release, and was in fact created from branches/legals.
(Trunk includes a few bugfixes that were made in legals but not in
branches/wafflecone; trunk should be a little better than branches/
4.0.5)
The "old" trunk can now be found in branches/3.x.
"legals" is not used anymore.
A new branch, "devildog", has been created for experimental swf9
compiler work.
Another new branch, "paperpie", has been created for work on the
documentation tools.
This information has not yet been updated *anywhere*.The branches
themselves do not yet even have the right build.properties set; I'll
do that now. Nightly builds may be weird for a few days until we get
this shaken out.
These operations could take a while, so I suggest doing them before
bed. I also recommend *not* doing svn switch to accomplish this; take
the hit and get a clean tree.
Be careful with your working copies right around now.
Move your trunk to somewhere else:
$ mv trunk trunk-old
Get the new trunk:
$ svn co http://svn.openlaszlo.org/openlaszlo/trunk
[...wait...]
Verify that you've got a good happy build:
$ cd trunk
$ export LPS_HOME=`pwd`
$ ant clean build webapp.deploy
Hit http://localhost:8080/trunk/test/hello.lzx?debug=true
and do Debug.versionInfo()
and it should report a version 4.1.x.0.
*poof* that's your new trunk.
Get the devildog branch, if you want it:
$ cd /path/to/branches/
$ svn co http://svn.openlaszlo.org/openlaszlo/branches/devildog
[...wait...]
$ cd devildog
$ export LPS_HOME=`pwd`
$ ant clean build webapp.deploy
http://localhost:8080/devildog/test/hello.lzx?debug=true
and do Debug.versionInfo()
and it should report a version 4.1.x.0.
And nobody but me probably wants paperpie, but if you do:
$ svn co http://svn.openlaszlo.org/openlaszlo/branches/paperpie
Let me know if there are problems -- I'm sure you will.
-ben