I tried gwt 2.7 with super dev mode today... I do not get it running proper... it seems that no smartgwt skins will be loaded.... my custom images are loaded.

Code:
binding: user.agent=gecko1_8
Compiling module com.uds.webadmin.GBookingAdmin
   Compiling 2 permutations
      Compiling permutation 0...
      Source Maps Enabled
      Compiling permutation 1...
      Source Maps Enabled
   Compile of permutations succeeded
Linking into /tmp/gwt-codeserver-6703683976077409867.tmp/com.uds.webadmin.GBookingAdmin/compile-2/war/com.uds.webadmin.GBookingAdmin; Writing extras to /tmp/gwt-codeserver-6703683976077409867.tmp/com.uds.webadmin.GBookingAdmin/compile-2/extras/com.uds.webadmin.GBookingAdmin
   Invoking Linker Cross-Site-Iframe
      [ERROR] The Cross-Site-Iframe linker does not support <script> tags in the gwt.xml files, but the gwt.xml file (or the gwt.xml files which it includes) contains the following script tags: 
sc/skins/Enterprise/load_skin.js

[WARN] continuing to serve previous version
My gwt.xml is the same as the one in the showcase:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.6.4//EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.6.4/distro-source/core/src/gwt-module.dtd">

<module>
	<inherits name='com.google.gwt.user.User'/>
    <inherits name="com.google.gwt.core.Core"/>
    <inherits name="com.google.gwt.user.History"/>
    <inherits name="com.google.gwt.i18n.I18N"/>

    <inherits name="com.smartgwt.SmartGwtNoScript"/>
    <inherits name="com.smartgwt.DrawingNoScript"/>
    <inherits name="com.smartgwt.tools.SmartGwtTools"/>
    <inherits name="com.smartclient.theme.enterprise.EnterpriseResources"/>
    <inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlueResources"/>
    <inherits name="com.smartclient.theme.graphite.GraphiteResources"/>
    <inherits name="com.smartclient.theme.simplicity.SimplicityResources"/>
    
     <!-- Include GWTUpload library + CSS -->
	<inherits name="gwtupload.GWTUpload" />
	<!-- stylesheet src="Upload.css" /-->

	<entry-point class="com.uds.webadmin.client.GWebAdmin" />

	<extend-property name="locale" values="de"/>

    <!-- Uncomment lines below for GWT Super Dev Mode Support:
       - both lines needed for GWT < 2.6, only the first line needed for GWT < 2.7
       - see http://www.smartclient.com/docs/release/a/b/c/go.html#group..debugging -->
    <!-- <add-linker name="xsiframe" />                                             -->
    <!-- <set-configuration-property name="devModeRedirectEnabled" value="true" />  -->

    <!-- Uncomment lines below for GWT "stack emulation" with file/line number info -->
    <!-- <set-property               name="compiler.stackMode"  value="emulated" /> -->
    <!-- <set-configuration-property name="compiler.emulatedStack.recordFileNames"
                                     value="true" />                                -->
    <!-- <set-configuration-property name="compiler.emulatedStack.recordLineNumbers"
                                     value="true" />                                -->

   
    <!-- Internationalization support. Uncomment to enable i18n to these locales -->
    <!--
        <extend-property name="locale" values="en"/>
        <extend-property name="locale" values="ba"/>
        <extend-property name="locale" values="cr"/>
        <extend-property name="locale" values="cs"/>
        <extend-property name="locale" values="de"/>
        <extend-property name="locale" values="el"/>
        <extend-property name="locale" values="es"/>
        <extend-property name="locale" values="fi"/>
        <extend-property name="locale" values="fr_FR"/>
        <extend-property name="locale" values="it"/>
        <extend-property name="locale" values="nb_NO"/>
        <extend-property name="locale" values="nl"/>
        <extend-property name="locale" values="pl"/>
        <extend-property name="locale" values="pt"/>
        <extend-property name="locale" values="pt_BR"/>
        <extend-property name="locale" values="ro_RO"/>
        <extend-property name="locale" values="ru_RU"/>
        <extend-property name="locale" values="sk"/>
        <extend-property name="locale" values="sr"/>
        <extend-property name="locale" values="sr_Latn"/>
        <extend-property name="locale" values="zh_CN"/>
        <extend-property name="locale" values="ja"/>
        <extend-property name="locale" values="pl_PL"/>
        <extend-property name="locale" values="id"/>
        <extend-property name="locale" values="zh_TW"/>
        <extend-property name="locale" values="hu_HU"/>
        <extend-property name="locale" values="ar"/>
        <extend-property name="locale" values="fr"/>
        <extend-property name="locale" values="uk_AU"/>    
        <extend-property name="locale" values="sv_SE"/>    
    -->
    
</module>

After adding the line "<set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>"... I get the following error:

Code:
WARN] 404 - GET /isomorphic/skins/Enterprise/images/blank.gif (127.0.0.1) 239 bytes
   Request headers
      Host: 127.0.0.1:8888
      User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:33.0) Gecko/20100101 Firefox/33.0
      Accept: image/png,image/*;q=0.8,*/*;q=0.5
      Accept-Language: de,en-US;q=0.7,en;q=0.3
      Accept-Encoding: gzip, deflate
      Referer: http://127.0.0.1:8888/GBookingAdmin.html
      Cookie: GLog=%7B%0D%20%20%20%20trackRPC%3Afalse%0D%7D; JSESSIONID=ppjym2vjts9j1m4li2bqpb6cg
      Connection: keep-alive
   Response headers
      Content-Type: text/html;charset=ISO-8859-1
12:44:38.970 [qtp2017044350-48] DEBUG org.eclipse.jetty.server.Server - RESPONSE /isomorphic/skins/Enterprise/images/blank.gif  404 handled=true
Has anybody any idea?

Thanks
Andy