Announcement

Collapse
No announcement yet.

Fix: New Message and/or GUI loading problems after recent CVS checkout

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Fix: New Message and/or GUI loading problems after recent CVS checkout

    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 ...

    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>
    into ...

    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>
    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.
    Last edited by Stefan Preuss; 07-28-2007, 04:08 PM. Reason: fixed wrong path information.

  • #2
    New_Message_Window

    Sorry, it doesn't work ... see attachment

    But i have a directory "tinymce" under "htdocs".

    frace
    Attached Files

    Comment


    • #3
      It works!

      I forgot to change the line
      Code:
      <fileset dir="." includes="*.html,*.js,ox.css,lang/**/*,js/**/*,css/**/*,img/**/*"/>
      Now it works!

      regards frace

      Comment

      Working...
      X