Due to the major changes we make at the GUI right now, like adding a new HTML editor, we found a build problem in the current CVS version. So, if you have problems loading the GUI (specially the New Message window) after a recent CVS checkout please do the following:
Open the 'build.xml' in the root folder of your GUI CVS checkout.
Change the 'deploy' target from ...
into ...
Then build the GUI again and deploy it. Don't forget to clean your browser cache then!! This is just a quick hack and we'll provide a fixed 'build.xml 'ASAP.
Open the 'build.xml' in the root folder of your GUI CVS checkout.
Change the 'deploy' target from ...
Code:
<target name="deploy" depends="all_with_clean"> <copy todir="${destdir}/${htdoc}"> <fileset dir="." includes="*.html,*.js,ox.css,lang/**/*,js/**/*,css/**/*,img/**/*,rteditor/**/*"/> </copy> </target>
Code:
<target name="deploy" depends="all_with_clean"> <copy todir="${destdir}/${htdoc}"> <fileset dir="." includes="*.html,*.js,ox.css,lang/**/*,js/**/*,css/**/*,img/**/*"/> </copy> <copy todir="${destdir}/${htdoc}/3rdparty"> <fileset dir="3rdparty"/> </copy> </target>
Comment